Skip to content

Commit

Permalink
add size limitations
Browse files Browse the repository at this point in the history
  • Loading branch information
shannamurry committed Aug 18, 2023
1 parent f44851f commit 991513b
Show file tree
Hide file tree
Showing 9 changed files with 466 additions and 436 deletions.
42 changes: 30 additions & 12 deletions dist/lob-api-bundled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8143,12 +8143,6 @@ components:
- operational
- null
nullable: true
fsc:
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact to
learn more.
default: false
letter_generated_base:
allOf:
- $ref: '#/components/schemas/generated'
Expand Down Expand Up @@ -8183,7 +8177,11 @@ components:
use_type:
$ref: '#/components/schemas/ltr_use_type'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `A4` letter size.
default: false
status:
title: The status of the letter.
enum:
Expand Down Expand Up @@ -8798,7 +8796,11 @@ components:
use_type:
$ref: '#/components/schemas/ltr_use_type'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `A4` letter size.
default: false
psc_id:
type: string
description: Unique identifier prefixed with `psc_`.
Expand Down Expand Up @@ -8888,7 +8890,11 @@ components:
use_type:
$ref: '#/components/schemas/psc_use_type'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `4x6` or `A5` postcard sizes.
default: false
status:
title: The status of the postcard.
enum:
Expand Down Expand Up @@ -8999,7 +9005,11 @@ components:
use_type:
$ref: '#/components/schemas/psc_use_type'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `4x6` or `A5` postcard sizes.
default: false
scans:
type: object
properties:
Expand Down Expand Up @@ -9225,7 +9235,11 @@ components:
url:
$ref: '#/components/schemas/signed_link'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `11x9_bifold` self-mailer size.
default: false
status:
title: The status of the self mailer.
enum:
Expand Down Expand Up @@ -9310,7 +9324,11 @@ components:
use_type:
$ref: '#/components/schemas/sfm_use_type'
fsc:
$ref: '#/components/schemas/fsc'
type: boolean
description: >-
This is in beta. Contact [email protected] or your account contact
to learn more. Not available for `11x9_bifold` self-mailer size.
default: false
template_html:
type: string
description: >
Expand Down
816 changes: 408 additions & 408 deletions dist/lob-api-postman.json

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions docs/index.html

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion resources/letters/models/letter_editable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,6 @@ allOf:
$ref: "../attributes/ltr_use_type.yml"

fsc:
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `A4` letter size.
default: false
4 changes: 3 additions & 1 deletion resources/letters/models/letter_generated_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ allOf:
$ref: "../attributes/ltr_use_type.yml"

fsc: # Forest Stewardship Council
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `A4` letter size.
default: false

status:
title: The status of the letter.
Expand Down
4 changes: 3 additions & 1 deletion resources/postcards/models/postcard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ allOf:
$ref: "../attributes/psc_use_type.yml"

fsc: # Forest Stewardship Council
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `4x6` or `A5` postcard sizes.
default: false

status:
title: The status of the postcard.
Expand Down
4 changes: 3 additions & 1 deletion resources/postcards/models/postcard_editable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,6 @@ allOf:
$ref: "../attributes/psc_use_type.yml"

fsc: # Forest Stewardship Council
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `4x6` or `A5` postcard sizes.
default: false
4 changes: 3 additions & 1 deletion resources/self_mailers/models/self_mailer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ allOf:
$ref: "../../../shared/attributes/signed_link.yml"

fsc:
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `11x9_bifold` self-mailer size.
default: false

status:
title: The status of the self mailer.
Expand Down
4 changes: 3 additions & 1 deletion resources/self_mailers/models/self_mailer_editable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,6 @@ allOf:
$ref: "../attributes/sfm_use_type.yml"

fsc:
$ref: "../../../shared/models/fsc.yml"
type: boolean
description: This is in beta. Contact [email protected] or your account contact to learn more. Not available for `11x9_bifold` self-mailer size.
default: false

0 comments on commit 991513b

Please sign in to comment.