@seamapi/types 1.751.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.
@@ -12286,6 +12286,13 @@ export type Routes = {
12286
12286
  message: string;
12287
12287
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
12288
12288
  mutation_code: 'deleting';
12289
+ } | {
12290
+ /** Date and time at which the mutation was created. */
12291
+ created_at: string;
12292
+ /** Detailed description of the mutation. */
12293
+ message: string;
12294
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
12295
+ mutation_code: 'deferring_deletion';
12289
12296
  } | {
12290
12297
  /** Date and time at which the mutation was created. */
12291
12298
  created_at: string;
@@ -12369,13 +12376,6 @@ export type Routes = {
12369
12376
  acs_user_id: string;
12370
12377
  /** Whether the user is scheduled to be added to or removed from this access group. */
12371
12378
  variant: 'adding' | 'removing';
12372
- } | {
12373
- /** Date and time at which the mutation was created. */
12374
- created_at: string;
12375
- /** Detailed description of the mutation. */
12376
- message: string;
12377
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
12378
- mutation_code: 'deferring_deletion';
12379
12379
  })[];
12380
12380
  is_managed: true;
12381
12381
  }[] | undefined;
@@ -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). */
@@ -17063,6 +17075,13 @@ export type Routes = {
17063
17075
  message: string;
17064
17076
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17065
17077
  mutation_code: 'deleting';
17078
+ } | {
17079
+ /** Date and time at which the mutation was created. */
17080
+ created_at: string;
17081
+ /** Detailed description of the mutation. */
17082
+ message: string;
17083
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
17084
+ mutation_code: 'deferring_deletion';
17066
17085
  } | {
17067
17086
  /** Date and time at which the mutation was created. */
17068
17087
  created_at: string;
@@ -17146,13 +17165,6 @@ export type Routes = {
17146
17165
  acs_user_id: string;
17147
17166
  /** Whether the user is scheduled to be added to or removed from this access group. */
17148
17167
  variant: 'adding' | 'removing';
17149
- } | {
17150
- /** Date and time at which the mutation was created. */
17151
- created_at: string;
17152
- /** Detailed description of the mutation. */
17153
- message: string;
17154
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
17155
- mutation_code: 'deferring_deletion';
17156
17168
  })[];
17157
17169
  is_managed: true;
17158
17170
  };
@@ -17238,6 +17250,13 @@ export type Routes = {
17238
17250
  message: string;
17239
17251
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17240
17252
  mutation_code: 'deleting';
17253
+ } | {
17254
+ /** Date and time at which the mutation was created. */
17255
+ created_at: string;
17256
+ /** Detailed description of the mutation. */
17257
+ message: string;
17258
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
17259
+ mutation_code: 'deferring_deletion';
17241
17260
  } | {
17242
17261
  /** Date and time at which the mutation was created. */
17243
17262
  created_at: string;
@@ -17321,13 +17340,6 @@ export type Routes = {
17321
17340
  acs_user_id: string;
17322
17341
  /** Whether the user is scheduled to be added to or removed from this access group. */
17323
17342
  variant: 'adding' | 'removing';
17324
- } | {
17325
- /** Date and time at which the mutation was created. */
17326
- created_at: string;
17327
- /** Detailed description of the mutation. */
17328
- message: string;
17329
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
17330
- mutation_code: 'deferring_deletion';
17331
17343
  })[];
17332
17344
  is_managed: true;
17333
17345
  }[];
@@ -17819,6 +17831,13 @@ export type Routes = {
17819
17831
  message: string;
17820
17832
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17821
17833
  mutation_code: 'deleting';
17834
+ } | {
17835
+ /** Date and time at which the mutation was created. */
17836
+ created_at: string;
17837
+ /** Detailed description of the mutation. */
17838
+ message: string;
17839
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
17840
+ mutation_code: 'deferring_deletion';
17822
17841
  } | {
17823
17842
  /** Date and time at which the mutation was created. */
17824
17843
  created_at: string;
@@ -17902,13 +17921,6 @@ export type Routes = {
17902
17921
  acs_user_id: string;
17903
17922
  /** Whether the user is scheduled to be added to or removed from this access group. */
17904
17923
  variant: 'adding' | 'removing';
17905
- } | {
17906
- /** Date and time at which the mutation was created. */
17907
- created_at: string;
17908
- /** Detailed description of the mutation. */
17909
- message: string;
17910
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
17911
- mutation_code: 'deferring_deletion';
17912
17924
  })[];
17913
17925
  is_managed: false;
17914
17926
  };
@@ -17992,6 +18004,13 @@ export type Routes = {
17992
18004
  message: string;
17993
18005
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
17994
18006
  mutation_code: 'deleting';
18007
+ } | {
18008
+ /** Date and time at which the mutation was created. */
18009
+ created_at: string;
18010
+ /** Detailed description of the mutation. */
18011
+ message: string;
18012
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
18013
+ mutation_code: 'deferring_deletion';
17995
18014
  } | {
17996
18015
  /** Date and time at which the mutation was created. */
17997
18016
  created_at: string;
@@ -18075,13 +18094,6 @@ export type Routes = {
18075
18094
  acs_user_id: string;
18076
18095
  /** Whether the user is scheduled to be added to or removed from this access group. */
18077
18096
  variant: 'adding' | 'removing';
18078
- } | {
18079
- /** Date and time at which the mutation was created. */
18080
- created_at: string;
18081
- /** Detailed description of the mutation. */
18082
- message: string;
18083
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
18084
- mutation_code: 'deferring_deletion';
18085
18097
  })[];
18086
18098
  is_managed: false;
18087
18099
  }[];
@@ -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). */
@@ -88543,6 +88557,13 @@ export type Routes = {
88543
88557
  message: string;
88544
88558
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
88545
88559
  mutation_code: 'deleting';
88560
+ } | {
88561
+ /** Date and time at which the mutation was created. */
88562
+ created_at: string;
88563
+ /** Detailed description of the mutation. */
88564
+ message: string;
88565
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
88566
+ mutation_code: 'deferring_deletion';
88546
88567
  } | {
88547
88568
  /** Date and time at which the mutation was created. */
88548
88569
  created_at: string;
@@ -88626,13 +88647,6 @@ export type Routes = {
88626
88647
  acs_user_id: string;
88627
88648
  /** Whether the user is scheduled to be added to or removed from this access group. */
88628
88649
  variant: 'adding' | 'removing';
88629
- } | {
88630
- /** Date and time at which the mutation was created. */
88631
- created_at: string;
88632
- /** Detailed description of the mutation. */
88633
- message: string;
88634
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
88635
- mutation_code: 'deferring_deletion';
88636
88650
  })[];
88637
88651
  is_managed: true;
88638
88652
  }[] | undefined;
@@ -90239,6 +90253,13 @@ export type Routes = {
90239
90253
  message: string;
90240
90254
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
90241
90255
  mutation_code: 'deleting';
90256
+ } | {
90257
+ /** Date and time at which the mutation was created. */
90258
+ created_at: string;
90259
+ /** Detailed description of the mutation. */
90260
+ message: string;
90261
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
90262
+ mutation_code: 'deferring_deletion';
90242
90263
  } | {
90243
90264
  /** Date and time at which the mutation was created. */
90244
90265
  created_at: string;
@@ -90322,13 +90343,6 @@ export type Routes = {
90322
90343
  acs_user_id: string;
90323
90344
  /** Whether the user is scheduled to be added to or removed from this access group. */
90324
90345
  variant: 'adding' | 'removing';
90325
- } | {
90326
- /** Date and time at which the mutation was created. */
90327
- created_at: string;
90328
- /** Detailed description of the mutation. */
90329
- message: string;
90330
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
90331
- mutation_code: 'deferring_deletion';
90332
90346
  })[];
90333
90347
  is_managed: false;
90334
90348
  }[] | undefined;
@@ -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.751.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()
@@ -135,6 +135,18 @@ const updating_entrance_membership = common_pending_mutation
135
135
  'Seam is in the process of pushing an entrance membership update to the integrated access system.',
136
136
  )
137
137
 
138
+ const deferring_deletion = common_pending_mutation
139
+ .extend({
140
+ mutation_code: z
141
+ .literal('deferring_deletion')
142
+ .describe(
143
+ 'Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires.',
144
+ ),
145
+ })
146
+ .describe(
147
+ 'This access group is scheduled for automatic deletion when its access window expires.',
148
+ )
149
+
138
150
  const deferring_user_membership_update = common_pending_mutation
139
151
  .extend({
140
152
  mutation_code: z
@@ -156,29 +168,17 @@ const deferring_user_membership_update = common_pending_mutation
156
168
  'A scheduled user membership change is pending for this access group.',
157
169
  )
158
170
 
159
- const deferring_deletion = common_pending_mutation
160
- .extend({
161
- mutation_code: z
162
- .literal('deferring_deletion')
163
- .describe(
164
- 'Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes.',
165
- ),
166
- })
167
- .describe(
168
- 'This access group is scheduled for automatic deletion when its access window expires.',
169
- )
170
-
171
171
  export const acs_access_group_pending_mutations = z.discriminatedUnion(
172
172
  'mutation_code',
173
173
  [
174
174
  creating,
175
175
  deleting,
176
+ deferring_deletion,
176
177
  updating_group_information,
177
178
  updating_access_schedule,
178
179
  updating_user_membership,
179
180
  updating_entrance_membership,
180
181
  deferring_user_membership_update,
181
- deferring_deletion,
182
182
  ],
183
183
  )
184
184
 
@@ -189,6 +189,7 @@ export type AcsAccessGroupPendingMutation = z.infer<
189
189
  const _acs_access_group_pending_mutations_map = z.object({
190
190
  creating: creating.optional().nullable(),
191
191
  deleting: deleting.optional().nullable(),
192
+ deferring_deletion: deferring_deletion.optional().nullable(),
192
193
  updating_name: updating_group_information.optional().nullable(),
193
194
  updating_access_schedule: updating_access_schedule.optional().nullable(),
194
195
  updating_user_membership: z
@@ -203,7 +204,6 @@ const _acs_access_group_pending_mutations_map = z.object({
203
204
  .record(z.string().uuid(), deferring_user_membership_update)
204
205
  .optional()
205
206
  .nullable(),
206
- deferring_deletion: deferring_deletion.optional().nullable(),
207
207
  })
208
208
 
209
209
  export type AcsAccessGroupPendingMutationsMap = z.infer<
@@ -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',
@@ -2853,6 +2858,30 @@ export default {
2853
2858
  required: ['created_at', 'message', 'mutation_code'],
2854
2859
  type: 'object',
2855
2860
  },
2861
+ {
2862
+ description:
2863
+ 'This access group is scheduled for automatic deletion when its access window expires.',
2864
+ properties: {
2865
+ created_at: {
2866
+ description:
2867
+ 'Date and time at which the mutation was created.',
2868
+ format: 'date-time',
2869
+ type: 'string',
2870
+ },
2871
+ message: {
2872
+ description: 'Detailed description of the mutation.',
2873
+ type: 'string',
2874
+ },
2875
+ mutation_code: {
2876
+ description:
2877
+ 'Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires.',
2878
+ enum: ['deferring_deletion'],
2879
+ type: 'string',
2880
+ },
2881
+ },
2882
+ required: ['created_at', 'message', 'mutation_code'],
2883
+ type: 'object',
2884
+ },
2856
2885
  {
2857
2886
  description:
2858
2887
  'Seam is in the process of pushing an access group information update to the integrated access system.',
@@ -3127,30 +3156,6 @@ export default {
3127
3156
  ],
3128
3157
  type: 'object',
3129
3158
  },
3130
- {
3131
- description:
3132
- 'This access group is scheduled for automatic deletion when its access window expires.',
3133
- properties: {
3134
- created_at: {
3135
- description:
3136
- 'Date and time at which the mutation was created.',
3137
- format: 'date-time',
3138
- type: 'string',
3139
- },
3140
- message: {
3141
- description: 'Detailed description of the mutation.',
3142
- type: 'string',
3143
- },
3144
- mutation_code: {
3145
- description:
3146
- 'Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes.',
3147
- enum: ['deferring_deletion'],
3148
- type: 'string',
3149
- },
3150
- },
3151
- required: ['created_at', 'message', 'mutation_code'],
3152
- type: 'object',
3153
- },
3154
3159
  ],
3155
3160
  },
3156
3161
  type: 'array',
@@ -27251,6 +27256,30 @@ export default {
27251
27256
  required: ['created_at', 'message', 'mutation_code'],
27252
27257
  type: 'object',
27253
27258
  },
27259
+ {
27260
+ description:
27261
+ 'This access group is scheduled for automatic deletion when its access window expires.',
27262
+ properties: {
27263
+ created_at: {
27264
+ description:
27265
+ 'Date and time at which the mutation was created.',
27266
+ format: 'date-time',
27267
+ type: 'string',
27268
+ },
27269
+ message: {
27270
+ description: 'Detailed description of the mutation.',
27271
+ type: 'string',
27272
+ },
27273
+ mutation_code: {
27274
+ description:
27275
+ 'Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires.',
27276
+ enum: ['deferring_deletion'],
27277
+ type: 'string',
27278
+ },
27279
+ },
27280
+ required: ['created_at', 'message', 'mutation_code'],
27281
+ type: 'object',
27282
+ },
27254
27283
  {
27255
27284
  description:
27256
27285
  'Seam is in the process of pushing an access group information update to the integrated access system.',
@@ -27525,30 +27554,6 @@ export default {
27525
27554
  ],
27526
27555
  type: 'object',
27527
27556
  },
27528
- {
27529
- description:
27530
- 'This access group is scheduled for automatic deletion when its access window expires.',
27531
- properties: {
27532
- created_at: {
27533
- description:
27534
- 'Date and time at which the mutation was created.',
27535
- format: 'date-time',
27536
- type: 'string',
27537
- },
27538
- message: {
27539
- description: 'Detailed description of the mutation.',
27540
- type: 'string',
27541
- },
27542
- mutation_code: {
27543
- description:
27544
- 'Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes.',
27545
- enum: ['deferring_deletion'],
27546
- type: 'string',
27547
- },
27548
- },
27549
- required: ['created_at', 'message', 'mutation_code'],
27550
- type: 'object',
27551
- },
27552
27557
  ],
27553
27558
  },
27554
27559
  type: 'array',
@@ -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.',