@seamapi/types 1.877.1 → 1.878.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +46 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +42 -0
- package/dist/index.cjs +46 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +12 -0
- package/lib/seam/connect/models/access-grants/access-method.js +8 -0
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/openapi.js +40 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +50 -0
- package/src/lib/seam/connect/route-types.ts +36 -0
|
@@ -14545,6 +14545,10 @@ export type Routes = {
|
|
|
14545
14545
|
is_encoding_required?: boolean | undefined;
|
|
14546
14546
|
/** 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. */
|
|
14547
14547
|
is_ready_for_encoding?: boolean | undefined;
|
|
14548
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
14549
|
+
is_assignment_required?: boolean | undefined;
|
|
14550
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
14551
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
14548
14552
|
/** The actual PIN code for code access methods. */
|
|
14549
14553
|
code?: (string | null) | undefined;
|
|
14550
14554
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -15529,6 +15533,10 @@ export type Routes = {
|
|
|
15529
15533
|
is_encoding_required?: boolean | undefined;
|
|
15530
15534
|
/** 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. */
|
|
15531
15535
|
is_ready_for_encoding?: boolean | undefined;
|
|
15536
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
15537
|
+
is_assignment_required?: boolean | undefined;
|
|
15538
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
15539
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
15532
15540
|
/** The actual PIN code for code access methods. */
|
|
15533
15541
|
code?: (string | null) | undefined;
|
|
15534
15542
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -17189,6 +17197,10 @@ export type Routes = {
|
|
|
17189
17197
|
is_encoding_required?: boolean | undefined;
|
|
17190
17198
|
/** 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. */
|
|
17191
17199
|
is_ready_for_encoding?: boolean | undefined;
|
|
17200
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
17201
|
+
is_assignment_required?: boolean | undefined;
|
|
17202
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
17203
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
17192
17204
|
/** The actual PIN code for code access methods. */
|
|
17193
17205
|
code?: (string | null) | undefined;
|
|
17194
17206
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -19062,6 +19074,10 @@ export type Routes = {
|
|
|
19062
19074
|
is_encoding_required?: boolean | undefined;
|
|
19063
19075
|
/** 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. */
|
|
19064
19076
|
is_ready_for_encoding?: boolean | undefined;
|
|
19077
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
19078
|
+
is_assignment_required?: boolean | undefined;
|
|
19079
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
19080
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
19065
19081
|
/** The actual PIN code for code access methods. */
|
|
19066
19082
|
code?: (string | null) | undefined;
|
|
19067
19083
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -19382,6 +19398,10 @@ export type Routes = {
|
|
|
19382
19398
|
is_encoding_required?: boolean | undefined;
|
|
19383
19399
|
/** 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. */
|
|
19384
19400
|
is_ready_for_encoding?: boolean | undefined;
|
|
19401
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
19402
|
+
is_assignment_required?: boolean | undefined;
|
|
19403
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
19404
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
19385
19405
|
/** The actual PIN code for code access methods. */
|
|
19386
19406
|
code?: (string | null) | undefined;
|
|
19387
19407
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -21019,6 +21039,10 @@ export type Routes = {
|
|
|
21019
21039
|
is_encoding_required?: boolean | undefined;
|
|
21020
21040
|
/** 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. */
|
|
21021
21041
|
is_ready_for_encoding?: boolean | undefined;
|
|
21042
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
21043
|
+
is_assignment_required?: boolean | undefined;
|
|
21044
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
21045
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
21022
21046
|
/** The actual PIN code for code access methods. */
|
|
21023
21047
|
code?: (string | null) | undefined;
|
|
21024
21048
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -21143,6 +21167,10 @@ export type Routes = {
|
|
|
21143
21167
|
is_encoding_required?: boolean | undefined;
|
|
21144
21168
|
/** 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. */
|
|
21145
21169
|
is_ready_for_encoding?: boolean | undefined;
|
|
21170
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
21171
|
+
is_assignment_required?: boolean | undefined;
|
|
21172
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
21173
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
21146
21174
|
/** The actual PIN code for code access methods. */
|
|
21147
21175
|
code?: (string | null) | undefined;
|
|
21148
21176
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -78573,6 +78601,10 @@ export type Routes = {
|
|
|
78573
78601
|
is_encoding_required?: boolean | undefined;
|
|
78574
78602
|
/** 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. */
|
|
78575
78603
|
is_ready_for_encoding?: boolean | undefined;
|
|
78604
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
78605
|
+
is_assignment_required?: boolean | undefined;
|
|
78606
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
78607
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
78576
78608
|
/** The actual PIN code for code access methods. */
|
|
78577
78609
|
code?: (string | null) | undefined;
|
|
78578
78610
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -106188,6 +106220,10 @@ export type Routes = {
|
|
|
106188
106220
|
is_encoding_required?: boolean | undefined;
|
|
106189
106221
|
/** 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. */
|
|
106190
106222
|
is_ready_for_encoding?: boolean | undefined;
|
|
106223
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
106224
|
+
is_assignment_required?: boolean | undefined;
|
|
106225
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
106226
|
+
is_ready_for_assignment?: boolean | undefined;
|
|
106191
106227
|
/** The actual PIN code for code access methods. */
|
|
106192
106228
|
code?: (string | null) | undefined;
|
|
106193
106229
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
package/package.json
CHANGED
|
@@ -257,6 +257,18 @@ export const access_method = z.object({
|
|
|
257
257
|
.describe(
|
|
258
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
259
|
),
|
|
260
|
+
is_assignment_required: z
|
|
261
|
+
.boolean()
|
|
262
|
+
.optional()
|
|
263
|
+
.describe(
|
|
264
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
265
|
+
),
|
|
266
|
+
is_ready_for_assignment: z
|
|
267
|
+
.boolean()
|
|
268
|
+
.optional()
|
|
269
|
+
.describe(
|
|
270
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
271
|
+
),
|
|
260
272
|
code: z
|
|
261
273
|
.string()
|
|
262
274
|
.nullable()
|
|
@@ -2969,6 +2969,11 @@ const openapi: OpenAPISpec = {
|
|
|
2969
2969
|
format: 'uri',
|
|
2970
2970
|
type: 'string',
|
|
2971
2971
|
},
|
|
2972
|
+
is_assignment_required: {
|
|
2973
|
+
description:
|
|
2974
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
2975
|
+
type: 'boolean',
|
|
2976
|
+
},
|
|
2972
2977
|
is_encoding_required: {
|
|
2973
2978
|
description:
|
|
2974
2979
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
@@ -2978,6 +2983,11 @@ const openapi: OpenAPISpec = {
|
|
|
2978
2983
|
description: 'Indicates whether the access method has been issued.',
|
|
2979
2984
|
type: 'boolean',
|
|
2980
2985
|
},
|
|
2986
|
+
is_ready_for_assignment: {
|
|
2987
|
+
description:
|
|
2988
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
2989
|
+
type: 'boolean',
|
|
2990
|
+
},
|
|
2981
2991
|
is_ready_for_encoding: {
|
|
2982
2992
|
description:
|
|
2983
2993
|
'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.',
|
|
@@ -41623,6 +41633,11 @@ const openapi: OpenAPISpec = {
|
|
|
41623
41633
|
description: 'Display name of the access method.',
|
|
41624
41634
|
type: 'string',
|
|
41625
41635
|
},
|
|
41636
|
+
is_assignment_required: {
|
|
41637
|
+
description:
|
|
41638
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
41639
|
+
type: 'boolean',
|
|
41640
|
+
},
|
|
41626
41641
|
is_encoding_required: {
|
|
41627
41642
|
description:
|
|
41628
41643
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
@@ -41633,6 +41648,11 @@ const openapi: OpenAPISpec = {
|
|
|
41633
41648
|
'Indicates whether the access method has been issued.',
|
|
41634
41649
|
type: 'boolean',
|
|
41635
41650
|
},
|
|
41651
|
+
is_ready_for_assignment: {
|
|
41652
|
+
description:
|
|
41653
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
41654
|
+
type: 'boolean',
|
|
41655
|
+
},
|
|
41636
41656
|
is_ready_for_encoding: {
|
|
41637
41657
|
description:
|
|
41638
41658
|
'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.',
|
|
@@ -42067,6 +42087,11 @@ const openapi: OpenAPISpec = {
|
|
|
42067
42087
|
description: 'Display name of the access method.',
|
|
42068
42088
|
type: 'string',
|
|
42069
42089
|
},
|
|
42090
|
+
is_assignment_required: {
|
|
42091
|
+
description:
|
|
42092
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
42093
|
+
type: 'boolean',
|
|
42094
|
+
},
|
|
42070
42095
|
is_encoding_required: {
|
|
42071
42096
|
description:
|
|
42072
42097
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
@@ -42077,6 +42102,11 @@ const openapi: OpenAPISpec = {
|
|
|
42077
42102
|
'Indicates whether the access method has been issued.',
|
|
42078
42103
|
type: 'boolean',
|
|
42079
42104
|
},
|
|
42105
|
+
is_ready_for_assignment: {
|
|
42106
|
+
description:
|
|
42107
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
42108
|
+
type: 'boolean',
|
|
42109
|
+
},
|
|
42080
42110
|
is_ready_for_encoding: {
|
|
42081
42111
|
description:
|
|
42082
42112
|
'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.',
|
|
@@ -42543,6 +42573,11 @@ const openapi: OpenAPISpec = {
|
|
|
42543
42573
|
description: 'Display name of the access method.',
|
|
42544
42574
|
type: 'string',
|
|
42545
42575
|
},
|
|
42576
|
+
is_assignment_required: {
|
|
42577
|
+
description:
|
|
42578
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
42579
|
+
type: 'boolean',
|
|
42580
|
+
},
|
|
42546
42581
|
is_encoding_required: {
|
|
42547
42582
|
description:
|
|
42548
42583
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
@@ -42553,6 +42588,11 @@ const openapi: OpenAPISpec = {
|
|
|
42553
42588
|
'Indicates whether the access method has been issued.',
|
|
42554
42589
|
type: 'boolean',
|
|
42555
42590
|
},
|
|
42591
|
+
is_ready_for_assignment: {
|
|
42592
|
+
description:
|
|
42593
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
42594
|
+
type: 'boolean',
|
|
42595
|
+
},
|
|
42556
42596
|
is_ready_for_encoding: {
|
|
42557
42597
|
description:
|
|
42558
42598
|
'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.',
|
|
@@ -43011,6 +43051,11 @@ const openapi: OpenAPISpec = {
|
|
|
43011
43051
|
description: 'Display name of the access method.',
|
|
43012
43052
|
type: 'string',
|
|
43013
43053
|
},
|
|
43054
|
+
is_assignment_required: {
|
|
43055
|
+
description:
|
|
43056
|
+
'Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment.',
|
|
43057
|
+
type: 'boolean',
|
|
43058
|
+
},
|
|
43014
43059
|
is_encoding_required: {
|
|
43015
43060
|
description:
|
|
43016
43061
|
'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
|
|
@@ -43021,6 +43066,11 @@ const openapi: OpenAPISpec = {
|
|
|
43021
43066
|
'Indicates whether the access method has been issued.',
|
|
43022
43067
|
type: 'boolean',
|
|
43023
43068
|
},
|
|
43069
|
+
is_ready_for_assignment: {
|
|
43070
|
+
description:
|
|
43071
|
+
'Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment.',
|
|
43072
|
+
type: 'boolean',
|
|
43073
|
+
},
|
|
43024
43074
|
is_ready_for_encoding: {
|
|
43025
43075
|
description:
|
|
43026
43076
|
'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.',
|
|
@@ -16780,6 +16780,10 @@ export type Routes = {
|
|
|
16780
16780
|
is_encoding_required?: boolean | undefined
|
|
16781
16781
|
/** 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. */
|
|
16782
16782
|
is_ready_for_encoding?: boolean | undefined
|
|
16783
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
16784
|
+
is_assignment_required?: boolean | undefined
|
|
16785
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
16786
|
+
is_ready_for_assignment?: boolean | undefined
|
|
16783
16787
|
/** The actual PIN code for code access methods. */
|
|
16784
16788
|
code?: (string | null) | undefined
|
|
16785
16789
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -17837,6 +17841,10 @@ export type Routes = {
|
|
|
17837
17841
|
is_encoding_required?: boolean | undefined
|
|
17838
17842
|
/** 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. */
|
|
17839
17843
|
is_ready_for_encoding?: boolean | undefined
|
|
17844
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
17845
|
+
is_assignment_required?: boolean | undefined
|
|
17846
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
17847
|
+
is_ready_for_assignment?: boolean | undefined
|
|
17840
17848
|
/** The actual PIN code for code access methods. */
|
|
17841
17849
|
code?: (string | null) | undefined
|
|
17842
17850
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -19760,6 +19768,10 @@ export type Routes = {
|
|
|
19760
19768
|
is_encoding_required?: boolean | undefined
|
|
19761
19769
|
/** 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. */
|
|
19762
19770
|
is_ready_for_encoding?: boolean | undefined
|
|
19771
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
19772
|
+
is_assignment_required?: boolean | undefined
|
|
19773
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
19774
|
+
is_ready_for_assignment?: boolean | undefined
|
|
19763
19775
|
/** The actual PIN code for code access methods. */
|
|
19764
19776
|
code?: (string | null) | undefined
|
|
19765
19777
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -22085,6 +22097,10 @@ export type Routes = {
|
|
|
22085
22097
|
is_encoding_required?: boolean | undefined
|
|
22086
22098
|
/** 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. */
|
|
22087
22099
|
is_ready_for_encoding?: boolean | undefined
|
|
22100
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
22101
|
+
is_assignment_required?: boolean | undefined
|
|
22102
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
22103
|
+
is_ready_for_assignment?: boolean | undefined
|
|
22088
22104
|
/** The actual PIN code for code access methods. */
|
|
22089
22105
|
code?: (string | null) | undefined
|
|
22090
22106
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -22452,6 +22468,10 @@ export type Routes = {
|
|
|
22452
22468
|
is_encoding_required?: boolean | undefined
|
|
22453
22469
|
/** 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. */
|
|
22454
22470
|
is_ready_for_encoding?: boolean | undefined
|
|
22471
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
22472
|
+
is_assignment_required?: boolean | undefined
|
|
22473
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
22474
|
+
is_ready_for_assignment?: boolean | undefined
|
|
22455
22475
|
/** The actual PIN code for code access methods. */
|
|
22456
22476
|
code?: (string | null) | undefined
|
|
22457
22477
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -24349,6 +24369,10 @@ export type Routes = {
|
|
|
24349
24369
|
is_encoding_required?: boolean | undefined
|
|
24350
24370
|
/** 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. */
|
|
24351
24371
|
is_ready_for_encoding?: boolean | undefined
|
|
24372
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
24373
|
+
is_assignment_required?: boolean | undefined
|
|
24374
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
24375
|
+
is_ready_for_assignment?: boolean | undefined
|
|
24352
24376
|
/** The actual PIN code for code access methods. */
|
|
24353
24377
|
code?: (string | null) | undefined
|
|
24354
24378
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -24481,6 +24505,10 @@ export type Routes = {
|
|
|
24481
24505
|
is_encoding_required?: boolean | undefined
|
|
24482
24506
|
/** 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. */
|
|
24483
24507
|
is_ready_for_encoding?: boolean | undefined
|
|
24508
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
24509
|
+
is_assignment_required?: boolean | undefined
|
|
24510
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
24511
|
+
is_ready_for_assignment?: boolean | undefined
|
|
24484
24512
|
/** The actual PIN code for code access methods. */
|
|
24485
24513
|
code?: (string | null) | undefined
|
|
24486
24514
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -94295,6 +94323,10 @@ export type Routes = {
|
|
|
94295
94323
|
is_encoding_required?: boolean | undefined
|
|
94296
94324
|
/** 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. */
|
|
94297
94325
|
is_ready_for_encoding?: boolean | undefined
|
|
94326
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
94327
|
+
is_assignment_required?: boolean | undefined
|
|
94328
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
94329
|
+
is_ready_for_assignment?: boolean | undefined
|
|
94298
94330
|
/** The actual PIN code for code access methods. */
|
|
94299
94331
|
code?: (string | null) | undefined
|
|
94300
94332
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|
|
@@ -127127,6 +127159,10 @@ export type Routes = {
|
|
|
127127
127159
|
is_encoding_required?: boolean | undefined
|
|
127128
127160
|
/** 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. */
|
|
127129
127161
|
is_ready_for_encoding?: boolean | undefined
|
|
127162
|
+
/** Indicates whether an existing card credential must be assigned to this access method before it can be issued. Only applies to card-mode access methods on systems that support credential assignment. */
|
|
127163
|
+
is_assignment_required?: boolean | undefined
|
|
127164
|
+
/** Indicates whether the access method is ready for card assignment. This is true when the access method is in card mode, has not yet been issued, and the system supports credential assignment. */
|
|
127165
|
+
is_ready_for_assignment?: boolean | undefined
|
|
127130
127166
|
/** The actual PIN code for code access methods. */
|
|
127131
127167
|
code?: (string | null) | undefined
|
|
127132
127168
|
/** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
|