@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.
@@ -14162,6 +14162,14 @@ export type Routes = {
14162
14162
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
14163
14163
  mutation_code: 'deleting'
14164
14164
  }
14165
+ | {
14166
+ /** Date and time at which the mutation was created. */
14167
+ created_at: string
14168
+ /** Detailed description of the mutation. */
14169
+ message: string
14170
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
14171
+ mutation_code: 'deferring_deletion'
14172
+ }
14165
14173
  | {
14166
14174
  /** Date and time at which the mutation was created. */
14167
14175
  created_at: string
@@ -14250,14 +14258,6 @@ export type Routes = {
14250
14258
  /** Whether the user is scheduled to be added to or removed from this access group. */
14251
14259
  variant: 'adding' | 'removing'
14252
14260
  }
14253
- | {
14254
- /** Date and time at which the mutation was created. */
14255
- created_at: string
14256
- /** Detailed description of the mutation. */
14257
- message: string
14258
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
14259
- mutation_code: 'deferring_deletion'
14260
- }
14261
14261
  )[]
14262
14262
  is_managed: true
14263
14263
  }[]
@@ -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). */
@@ -19721,6 +19733,14 @@ export type Routes = {
19721
19733
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
19722
19734
  mutation_code: 'deleting'
19723
19735
  }
19736
+ | {
19737
+ /** Date and time at which the mutation was created. */
19738
+ created_at: string
19739
+ /** Detailed description of the mutation. */
19740
+ message: string
19741
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
19742
+ mutation_code: 'deferring_deletion'
19743
+ }
19724
19744
  | {
19725
19745
  /** Date and time at which the mutation was created. */
19726
19746
  created_at: string
@@ -19809,14 +19829,6 @@ export type Routes = {
19809
19829
  /** Whether the user is scheduled to be added to or removed from this access group. */
19810
19830
  variant: 'adding' | 'removing'
19811
19831
  }
19812
- | {
19813
- /** Date and time at which the mutation was created. */
19814
- created_at: string
19815
- /** Detailed description of the mutation. */
19816
- message: string
19817
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
19818
- mutation_code: 'deferring_deletion'
19819
- }
19820
19832
  )[]
19821
19833
  is_managed: true
19822
19834
  }
@@ -19924,6 +19936,14 @@ export type Routes = {
19924
19936
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
19925
19937
  mutation_code: 'deleting'
19926
19938
  }
19939
+ | {
19940
+ /** Date and time at which the mutation was created. */
19941
+ created_at: string
19942
+ /** Detailed description of the mutation. */
19943
+ message: string
19944
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
19945
+ mutation_code: 'deferring_deletion'
19946
+ }
19927
19947
  | {
19928
19948
  /** Date and time at which the mutation was created. */
19929
19949
  created_at: string
@@ -20012,14 +20032,6 @@ export type Routes = {
20012
20032
  /** Whether the user is scheduled to be added to or removed from this access group. */
20013
20033
  variant: 'adding' | 'removing'
20014
20034
  }
20015
- | {
20016
- /** Date and time at which the mutation was created. */
20017
- created_at: string
20018
- /** Detailed description of the mutation. */
20019
- message: string
20020
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
20021
- mutation_code: 'deferring_deletion'
20022
- }
20023
20035
  )[]
20024
20036
  is_managed: true
20025
20037
  }[]
@@ -20599,6 +20611,14 @@ export type Routes = {
20599
20611
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
20600
20612
  mutation_code: 'deleting'
20601
20613
  }
20614
+ | {
20615
+ /** Date and time at which the mutation was created. */
20616
+ created_at: string
20617
+ /** Detailed description of the mutation. */
20618
+ message: string
20619
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
20620
+ mutation_code: 'deferring_deletion'
20621
+ }
20602
20622
  | {
20603
20623
  /** Date and time at which the mutation was created. */
20604
20624
  created_at: string
@@ -20687,14 +20707,6 @@ export type Routes = {
20687
20707
  /** Whether the user is scheduled to be added to or removed from this access group. */
20688
20708
  variant: 'adding' | 'removing'
20689
20709
  }
20690
- | {
20691
- /** Date and time at which the mutation was created. */
20692
- created_at: string
20693
- /** Detailed description of the mutation. */
20694
- message: string
20695
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
20696
- mutation_code: 'deferring_deletion'
20697
- }
20698
20710
  )[]
20699
20711
  is_managed: false
20700
20712
  }
@@ -20800,6 +20812,14 @@ export type Routes = {
20800
20812
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
20801
20813
  mutation_code: 'deleting'
20802
20814
  }
20815
+ | {
20816
+ /** Date and time at which the mutation was created. */
20817
+ created_at: string
20818
+ /** Detailed description of the mutation. */
20819
+ message: string
20820
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
20821
+ mutation_code: 'deferring_deletion'
20822
+ }
20803
20823
  | {
20804
20824
  /** Date and time at which the mutation was created. */
20805
20825
  created_at: string
@@ -20888,14 +20908,6 @@ export type Routes = {
20888
20908
  /** Whether the user is scheduled to be added to or removed from this access group. */
20889
20909
  variant: 'adding' | 'removing'
20890
20910
  }
20891
- | {
20892
- /** Date and time at which the mutation was created. */
20893
- created_at: string
20894
- /** Detailed description of the mutation. */
20895
- message: string
20896
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
20897
- mutation_code: 'deferring_deletion'
20898
- }
20899
20911
  )[]
20900
20912
  is_managed: false
20901
20913
  }[]
@@ -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). */
@@ -105389,6 +105403,14 @@ export type Routes = {
105389
105403
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
105390
105404
  mutation_code: 'deleting'
105391
105405
  }
105406
+ | {
105407
+ /** Date and time at which the mutation was created. */
105408
+ created_at: string
105409
+ /** Detailed description of the mutation. */
105410
+ message: string
105411
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
105412
+ mutation_code: 'deferring_deletion'
105413
+ }
105392
105414
  | {
105393
105415
  /** Date and time at which the mutation was created. */
105394
105416
  created_at: string
@@ -105477,14 +105499,6 @@ export type Routes = {
105477
105499
  /** Whether the user is scheduled to be added to or removed from this access group. */
105478
105500
  variant: 'adding' | 'removing'
105479
105501
  }
105480
- | {
105481
- /** Date and time at which the mutation was created. */
105482
- created_at: string
105483
- /** Detailed description of the mutation. */
105484
- message: string
105485
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
105486
- mutation_code: 'deferring_deletion'
105487
- }
105488
105502
  )[]
105489
105503
  is_managed: true
105490
105504
  }[]
@@ -107396,6 +107410,14 @@ export type Routes = {
107396
107410
  /** Mutation code to indicate that Seam is in the process of pushing an access group deletion to the integrated access system. */
107397
107411
  mutation_code: 'deleting'
107398
107412
  }
107413
+ | {
107414
+ /** Date and time at which the mutation was created. */
107415
+ created_at: string
107416
+ /** Detailed description of the mutation. */
107417
+ message: string
107418
+ /** Mutation code to indicate that this access group is scheduled for automatic deletion when its access window expires. */
107419
+ mutation_code: 'deferring_deletion'
107420
+ }
107399
107421
  | {
107400
107422
  /** Date and time at which the mutation was created. */
107401
107423
  created_at: string
@@ -107484,14 +107506,6 @@ export type Routes = {
107484
107506
  /** Whether the user is scheduled to be added to or removed from this access group. */
107485
107507
  variant: 'adding' | 'removing'
107486
107508
  }
107487
- | {
107488
- /** Date and time at which the mutation was created. */
107489
- created_at: string
107490
- /** Detailed description of the mutation. */
107491
- message: string
107492
- /** Mutation code to indicate that this access group is scheduled for deletion when its ends_at time passes. */
107493
- mutation_code: 'deferring_deletion'
107494
- }
107495
107509
  )[]
107496
107510
  is_managed: false
107497
107511
  }[]
@@ -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). */