Skip to content

Commit 4d79780

Browse files
authored
feat: Sync with Seam API via 2427a15f54d624f2f72266a11a24abdf7e6aafc1 (#2719)
1 parent d9c5080 commit 4d79780

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

src/lib/seam/connect/models/access-grants/access-method.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,12 @@ export const access_method = z.object({
251251
.describe(
252252
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
253253
),
254+
is_ready_for_encoding: z
255+
.boolean()
256+
.optional()
257+
.describe(
258+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
259+
),
254260
code: z
255261
.string()
256262
.nullable()

src/lib/seam/connect/openapi.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2394,6 +2394,11 @@ export default {
23942394
description: 'Indicates whether the access method has been issued.',
23952395
type: 'boolean',
23962396
},
2397+
is_ready_for_encoding: {
2398+
description:
2399+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
2400+
type: 'boolean',
2401+
},
23972402
issued_at: {
23982403
description: 'Date and time at which the access method was issued.',
23992404
format: 'date-time',
@@ -38395,6 +38400,11 @@ export default {
3839538400
'Indicates whether the access method has been issued.',
3839638401
type: 'boolean',
3839738402
},
38403+
is_ready_for_encoding: {
38404+
description:
38405+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
38406+
type: 'boolean',
38407+
},
3839838408
issued_at: {
3839938409
description:
3840038410
'Date and time at which the access method was issued.',
@@ -38835,6 +38845,11 @@ export default {
3883538845
'Indicates whether the access method has been issued.',
3883638846
type: 'boolean',
3883738847
},
38848+
is_ready_for_encoding: {
38849+
description:
38850+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
38851+
type: 'boolean',
38852+
},
3883838853
issued_at: {
3883938854
description:
3884038855
'Date and time at which the access method was issued.',
@@ -39307,6 +39322,11 @@ export default {
3930739322
'Indicates whether the access method has been issued.',
3930839323
type: 'boolean',
3930939324
},
39325+
is_ready_for_encoding: {
39326+
description:
39327+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
39328+
type: 'boolean',
39329+
},
3931039330
issued_at: {
3931139331
description:
3931239332
'Date and time at which the access method was issued.',
@@ -39770,6 +39790,11 @@ export default {
3977039790
'Indicates whether the access method has been issued.',
3977139791
type: 'boolean',
3977239792
},
39793+
is_ready_for_encoding: {
39794+
description:
39795+
'Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued.',
39796+
type: 'boolean',
39797+
},
3977339798
issued_at: {
3977439799
description:
3977539800
'Date and time at which the access method was issued.',

src/lib/seam/connect/route-types.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14284,6 +14284,8 @@ export type Routes = {
1428414284
client_session_token?: string | undefined
1428514285
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1428614286
is_encoding_required?: boolean | undefined
14287+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
14288+
is_ready_for_encoding?: boolean | undefined
1428714289
/** The actual PIN code for code access methods. */
1428814290
code?: (string | null) | undefined
1428914291
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -16710,6 +16712,8 @@ export type Routes = {
1671016712
client_session_token?: string | undefined
1671116713
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1671216714
is_encoding_required?: boolean | undefined
16715+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
16716+
is_ready_for_encoding?: boolean | undefined
1671316717
/** The actual PIN code for code access methods. */
1671416718
code?: (string | null) | undefined
1671516719
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -18878,6 +18882,8 @@ export type Routes = {
1887818882
client_session_token?: string | undefined
1887918883
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1888018884
is_encoding_required?: boolean | undefined
18885+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
18886+
is_ready_for_encoding?: boolean | undefined
1888118887
/** The actual PIN code for code access methods. */
1888218888
code?: (string | null) | undefined
1888318889
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -19238,6 +19244,8 @@ export type Routes = {
1923819244
client_session_token?: string | undefined
1923919245
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1924019246
is_encoding_required?: boolean | undefined
19247+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
19248+
is_ready_for_encoding?: boolean | undefined
1924119249
/** The actual PIN code for code access methods. */
1924219250
code?: (string | null) | undefined
1924319251
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -19365,6 +19373,8 @@ export type Routes = {
1936519373
is_issued: boolean
1936619374
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1936719375
is_encoding_required?: boolean | undefined
19376+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
19377+
is_ready_for_encoding?: boolean | undefined
1936819378
/** The actual PIN code for code access methods. */
1936919379
code?: (string | null) | undefined
1937019380
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -19495,6 +19505,8 @@ export type Routes = {
1949519505
is_issued: boolean
1949619506
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
1949719507
is_encoding_required?: boolean | undefined
19508+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
19509+
is_ready_for_encoding?: boolean | undefined
1949819510
/** The actual PIN code for code access methods. */
1949919511
code?: (string | null) | undefined
1950019512
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -79008,6 +79020,8 @@ export type Routes = {
7900879020
client_session_token?: string | undefined
7900979021
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
7901079022
is_encoding_required?: boolean | undefined
79023+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
79024+
is_ready_for_encoding?: boolean | undefined
7901179025
/** The actual PIN code for code access methods. */
7901279026
code?: (string | null) | undefined
7901379027
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -108120,6 +108134,8 @@ export type Routes = {
108120108134
client_session_token?: string | undefined
108121108135
/** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
108122108136
is_encoding_required?: boolean | undefined
108137+
/** Indicates whether the access method is ready to be encoded. This is true when the credential has been created and the card has not yet been issued. */
108138+
is_ready_for_encoding?: boolean | undefined
108123108139
/** The actual PIN code for code access methods. */
108124108140
code?: (string | null) | undefined
108125108141
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */

0 commit comments

Comments
 (0)