@seamapi/types 1.752.0 → 1.753.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.
@@ -12400,6 +12400,8 @@ export type Routes = {
12400
12400
  client_session_token?: string | undefined;
12401
12401
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
12402
12402
  is_encoding_required?: boolean | undefined;
12403
+ /** 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. */
12404
+ is_ready_for_encoding?: boolean | undefined;
12403
12405
  /** The actual PIN code for code access methods. */
12404
12406
  code?: (string | null) | undefined;
12405
12407
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -14571,6 +14573,8 @@ export type Routes = {
14571
14573
  client_session_token?: string | undefined;
14572
14574
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
14573
14575
  is_encoding_required?: boolean | undefined;
14576
+ /** 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. */
14577
+ is_ready_for_encoding?: boolean | undefined;
14574
14578
  /** The actual PIN code for code access methods. */
14575
14579
  code?: (string | null) | undefined;
14576
14580
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -16312,6 +16316,8 @@ export type Routes = {
16312
16316
  client_session_token?: string | undefined;
16313
16317
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
16314
16318
  is_encoding_required?: boolean | undefined;
16319
+ /** 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. */
16320
+ is_ready_for_encoding?: boolean | undefined;
16315
16321
  /** The actual PIN code for code access methods. */
16316
16322
  code?: (string | null) | undefined;
16317
16323
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -16626,6 +16632,8 @@ export type Routes = {
16626
16632
  client_session_token?: string | undefined;
16627
16633
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
16628
16634
  is_encoding_required?: boolean | undefined;
16635
+ /** 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. */
16636
+ is_ready_for_encoding?: boolean | undefined;
16629
16637
  /** The actual PIN code for code access methods. */
16630
16638
  code?: (string | null) | undefined;
16631
16639
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -16745,6 +16753,8 @@ export type Routes = {
16745
16753
  is_issued: boolean;
16746
16754
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
16747
16755
  is_encoding_required?: boolean | undefined;
16756
+ /** 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. */
16757
+ is_ready_for_encoding?: boolean | undefined;
16748
16758
  /** The actual PIN code for code access methods. */
16749
16759
  code?: (string | null) | undefined;
16750
16760
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -16867,6 +16877,8 @@ export type Routes = {
16867
16877
  is_issued: boolean;
16868
16878
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
16869
16879
  is_encoding_required?: boolean | undefined;
16880
+ /** 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. */
16881
+ is_ready_for_encoding?: boolean | undefined;
16870
16882
  /** The actual PIN code for code access methods. */
16871
16883
  code?: (string | null) | undefined;
16872
16884
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -66338,6 +66350,8 @@ export type Routes = {
66338
66350
  client_session_token?: string | undefined;
66339
66351
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
66340
66352
  is_encoding_required?: boolean | undefined;
66353
+ /** 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. */
66354
+ is_ready_for_encoding?: boolean | undefined;
66341
66355
  /** The actual PIN code for code access methods. */
66342
66356
  code?: (string | null) | undefined;
66343
66357
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
@@ -90844,6 +90858,8 @@ export type Routes = {
90844
90858
  client_session_token?: string | undefined;
90845
90859
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
90846
90860
  is_encoding_required?: boolean | undefined;
90861
+ /** 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. */
90862
+ is_ready_for_encoding?: boolean | undefined;
90847
90863
  /** The actual PIN code for code access methods. */
90848
90864
  code?: (string | null) | undefined;
90849
90865
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.752.0",
3
+ "version": "1.753.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -251,6 +251,12 @@ export const access_method = z.object({
251
251
  .describe(
252
252
  'Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method.',
253
253
  ),
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
+ ),
254
260
  code: z
255
261
  .string()
256
262
  .nullable()
@@ -2394,6 +2394,11 @@ export default {
2394
2394
  description: 'Indicates whether the access method has been issued.',
2395
2395
  type: 'boolean',
2396
2396
  },
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
+ },
2397
2402
  issued_at: {
2398
2403
  description: 'Date and time at which the access method was issued.',
2399
2404
  format: 'date-time',
@@ -38395,6 +38400,11 @@ export default {
38395
38400
  'Indicates whether the access method has been issued.',
38396
38401
  type: 'boolean',
38397
38402
  },
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
+ },
38398
38408
  issued_at: {
38399
38409
  description:
38400
38410
  'Date and time at which the access method was issued.',
@@ -38835,6 +38845,11 @@ export default {
38835
38845
  'Indicates whether the access method has been issued.',
38836
38846
  type: 'boolean',
38837
38847
  },
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
+ },
38838
38853
  issued_at: {
38839
38854
  description:
38840
38855
  'Date and time at which the access method was issued.',
@@ -39307,6 +39322,11 @@ export default {
39307
39322
  'Indicates whether the access method has been issued.',
39308
39323
  type: 'boolean',
39309
39324
  },
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
+ },
39310
39330
  issued_at: {
39311
39331
  description:
39312
39332
  'Date and time at which the access method was issued.',
@@ -39770,6 +39790,11 @@ export default {
39770
39790
  'Indicates whether the access method has been issued.',
39771
39791
  type: 'boolean',
39772
39792
  },
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
+ },
39773
39798
  issued_at: {
39774
39799
  description:
39775
39800
  'Date and time at which the access method was issued.',
@@ -14284,6 +14284,8 @@ export type Routes = {
14284
14284
  client_session_token?: string | undefined
14285
14285
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
14286
14286
  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
14287
14289
  /** The actual PIN code for code access methods. */
14288
14290
  code?: (string | null) | undefined
14289
14291
  /** 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 = {
16710
16712
  client_session_token?: string | undefined
16711
16713
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
16712
16714
  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
16713
16717
  /** The actual PIN code for code access methods. */
16714
16718
  code?: (string | null) | undefined
16715
16719
  /** 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 = {
18878
18882
  client_session_token?: string | undefined
18879
18883
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
18880
18884
  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
18881
18887
  /** The actual PIN code for code access methods. */
18882
18888
  code?: (string | null) | undefined
18883
18889
  /** 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 = {
19238
19244
  client_session_token?: string | undefined
19239
19245
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
19240
19246
  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
19241
19249
  /** The actual PIN code for code access methods. */
19242
19250
  code?: (string | null) | undefined
19243
19251
  /** 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 = {
19365
19373
  is_issued: boolean
19366
19374
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
19367
19375
  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
19368
19378
  /** The actual PIN code for code access methods. */
19369
19379
  code?: (string | null) | undefined
19370
19380
  /** 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 = {
19495
19505
  is_issued: boolean
19496
19506
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
19497
19507
  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
19498
19510
  /** The actual PIN code for code access methods. */
19499
19511
  code?: (string | null) | undefined
19500
19512
  /** 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 = {
79008
79020
  client_session_token?: string | undefined
79009
79021
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
79010
79022
  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
79011
79025
  /** The actual PIN code for code access methods. */
79012
79026
  code?: (string | null) | undefined
79013
79027
  /** 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 = {
108120
108134
  client_session_token?: string | undefined
108121
108135
  /** Indicates whether encoding with an card encoder is required to issue or reissue the plastic card associated with the access method. */
108122
108136
  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
108123
108139
  /** The actual PIN code for code access methods. */
108124
108140
  code?: (string | null) | undefined
108125
108141
  /** Warnings associated with the [access method](https://docs.seam.co/latest/capability-guides/access-grants/delivering-access-methods). */