@seamapi/types 1.769.0 → 1.771.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.
Files changed (32) hide show
  1. package/dist/connect.cjs +777 -35
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1530 -269
  4. package/dist/index.cjs +777 -35
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
  7. package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
  8. package/lib/seam/connect/models/access-grants/access-method.js +2 -2
  9. package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
  10. package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
  11. package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
  12. package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
  13. package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
  14. package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
  15. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  16. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +15 -0
  17. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
  18. package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
  19. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
  20. package/lib/seam/connect/models/batch.d.ts +38 -17
  21. package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
  22. package/lib/seam/connect/openapi.d.ts +952 -0
  23. package/lib/seam/connect/openapi.js +758 -27
  24. package/lib/seam/connect/openapi.js.map +1 -1
  25. package/lib/seam/connect/route-types.d.ts +336 -63
  26. package/package.json +1 -1
  27. package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
  28. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
  29. package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
  30. package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +18 -0
  31. package/src/lib/seam/connect/openapi.ts +825 -27
  32. package/src/lib/seam/connect/route-types.ts +407 -63
@@ -991,6 +991,12 @@ export type Routes = {
991
991
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
992
992
  message: string
993
993
  }
994
+ | {
995
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
996
+ type: 'encoding_interrupted'
997
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
998
+ message: string
999
+ }
994
1000
  }
995
1001
  | {
996
1002
  /** ID of the action attempt. */
@@ -3711,6 +3717,12 @@ export type Routes = {
3711
3717
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3712
3718
  message: string
3713
3719
  }
3720
+ | {
3721
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
3722
+ type: 'encoding_interrupted'
3723
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3724
+ message: string
3725
+ }
3714
3726
  }
3715
3727
  | {
3716
3728
  /** ID of the action attempt. */
@@ -8335,6 +8347,12 @@ export type Routes = {
8335
8347
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8336
8348
  message: string
8337
8349
  }
8350
+ | {
8351
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
8352
+ type: 'encoding_interrupted'
8353
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8354
+ message: string
8355
+ }
8338
8356
  }
8339
8357
  | {
8340
8358
  /** ID of the action attempt. */
@@ -11091,6 +11109,12 @@ export type Routes = {
11091
11109
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
11092
11110
  message: string
11093
11111
  }
11112
+ | {
11113
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
11114
+ type: 'encoding_interrupted'
11115
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
11116
+ message: string
11117
+ }
11094
11118
  }
11095
11119
  | {
11096
11120
  /** ID of the action attempt. */
@@ -11756,8 +11780,8 @@ export type Routes = {
11756
11780
  /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
11757
11781
  device_ids?: string[]
11758
11782
  requested_access_methods: {
11759
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11760
- mode: 'code' | 'card' | 'mobile_key'
11783
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
11784
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11761
11785
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11762
11786
  code?: string | undefined
11763
11787
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -11793,8 +11817,8 @@ export type Routes = {
11793
11817
  requested_access_methods: {
11794
11818
  /** Display name of the access method. */
11795
11819
  display_name: string
11796
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11797
- mode: 'code' | 'card' | 'mobile_key'
11820
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
11821
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11798
11822
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11799
11823
  code?: string | undefined
11800
11824
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -11993,8 +12017,8 @@ export type Routes = {
11993
12017
  requested_access_methods: {
11994
12018
  /** Display name of the access method. */
11995
12019
  display_name: string
11996
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11997
- mode: 'code' | 'card' | 'mobile_key'
12020
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
12021
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11998
12022
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11999
12023
  code?: string | undefined
12000
12024
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14033,10 +14057,10 @@ export type Routes = {
14033
14057
  can_unlock_with_card?: boolean | undefined
14034
14058
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
14035
14059
  can_unlock_with_code?: boolean | undefined
14060
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
14061
+ can_unlock_with_cloud_key?: boolean | undefined
14036
14062
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
14037
14063
  can_belong_to_reservation?: boolean | undefined
14038
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
14039
- can_unlock_with_cloud_key?: boolean | undefined
14040
14064
  }[]
14041
14065
  | undefined
14042
14066
  connected_accounts?:
@@ -14613,8 +14637,8 @@ export type Routes = {
14613
14637
  access_method_id: string
14614
14638
  /** Display name of the access method. */
14615
14639
  display_name: string
14616
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14617
- mode: 'code' | 'card' | 'mobile_key'
14640
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14641
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14618
14642
  /** Date and time at which the access method was created. */
14619
14643
  created_at: string
14620
14644
  /** Date and time at which the access method was issued. */
@@ -14781,8 +14805,8 @@ export type Routes = {
14781
14805
  requested_access_methods: {
14782
14806
  /** Display name of the access method. */
14783
14807
  display_name: string
14784
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14785
- mode: 'code' | 'card' | 'mobile_key'
14808
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14809
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14786
14810
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14787
14811
  code?: string | undefined
14788
14812
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14950,8 +14974,8 @@ export type Routes = {
14950
14974
  access_grant_id: string
14951
14975
  /** Array of requested access methods to add to the access grant. */
14952
14976
  requested_access_methods: {
14953
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14954
- mode: 'code' | 'card' | 'mobile_key'
14977
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14978
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14955
14979
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14956
14980
  code?: string | undefined
14957
14981
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14981,8 +15005,8 @@ export type Routes = {
14981
15005
  requested_access_methods: {
14982
15006
  /** Display name of the access method. */
14983
15007
  display_name: string
14984
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14985
- mode: 'code' | 'card' | 'mobile_key'
15008
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
15009
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14986
15010
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14987
15011
  code?: string | undefined
14988
15012
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -15159,8 +15183,8 @@ export type Routes = {
15159
15183
  requested_access_methods: {
15160
15184
  /** Display name of the access method. */
15161
15185
  display_name: string
15162
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
15163
- mode: 'code' | 'card' | 'mobile_key'
15186
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
15187
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
15164
15188
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
15165
15189
  code?: string | undefined
15166
15190
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -15342,8 +15366,8 @@ export type Routes = {
15342
15366
  requested_access_methods: {
15343
15367
  /** Display name of the access method. */
15344
15368
  display_name: string
15345
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
15346
- mode: 'code' | 'card' | 'mobile_key'
15369
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
15370
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
15347
15371
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
15348
15372
  code?: string | undefined
15349
15373
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -16511,6 +16535,12 @@ export type Routes = {
16511
16535
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16512
16536
  message: string
16513
16537
  }
16538
+ | {
16539
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
16540
+ type: 'encoding_interrupted'
16541
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16542
+ message: string
16543
+ }
16514
16544
  }
16515
16545
  | {
16516
16546
  /** ID of the action attempt. */
@@ -17116,8 +17146,8 @@ export type Routes = {
17116
17146
  access_method_id: string
17117
17147
  /** Display name of the access method. */
17118
17148
  display_name: string
17119
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
17120
- mode: 'code' | 'card' | 'mobile_key'
17149
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
17150
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
17121
17151
  /** Date and time at which the access method was created. */
17122
17152
  created_at: string
17123
17153
  /** Date and time at which the access method was issued. */
@@ -19118,10 +19148,10 @@ export type Routes = {
19118
19148
  can_unlock_with_card?: boolean | undefined
19119
19149
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
19120
19150
  can_unlock_with_code?: boolean | undefined
19151
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
19152
+ can_unlock_with_cloud_key?: boolean | undefined
19121
19153
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
19122
19154
  can_belong_to_reservation?: boolean | undefined
19123
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
19124
- can_unlock_with_cloud_key?: boolean | undefined
19125
19155
  }[]
19126
19156
  | undefined
19127
19157
  access_grants?:
@@ -19145,8 +19175,8 @@ export type Routes = {
19145
19175
  requested_access_methods: {
19146
19176
  /** Display name of the access method. */
19147
19177
  display_name: string
19148
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19149
- mode: 'code' | 'card' | 'mobile_key'
19178
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19179
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19150
19180
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
19151
19181
  code?: string | undefined
19152
19182
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -19301,8 +19331,8 @@ export type Routes = {
19301
19331
  access_method_id: string
19302
19332
  /** Display name of the access method. */
19303
19333
  display_name: string
19304
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19305
- mode: 'code' | 'card' | 'mobile_key'
19334
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19335
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19306
19336
  /** Date and time at which the access method was created. */
19307
19337
  created_at: string
19308
19338
  /** Date and time at which the access method was issued. */
@@ -19665,8 +19695,8 @@ export type Routes = {
19665
19695
  access_method_id: string
19666
19696
  /** Display name of the access method. */
19667
19697
  display_name: string
19668
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19669
- mode: 'code' | 'card' | 'mobile_key'
19698
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19699
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19670
19700
  /** Date and time at which the access method was created. */
19671
19701
  created_at: string
19672
19702
  /** Date and time at which the access method was issued. */
@@ -19798,8 +19828,8 @@ export type Routes = {
19798
19828
  access_method_id: string
19799
19829
  /** Display name of the access method. */
19800
19830
  display_name: string
19801
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19802
- mode: 'code' | 'card' | 'mobile_key'
19831
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19832
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19803
19833
  /** Date and time at which the access method was created. */
19804
19834
  created_at: string
19805
19835
  /** Date and time at which the access method was issued. */
@@ -19930,8 +19960,8 @@ export type Routes = {
19930
19960
  access_method_id: string
19931
19961
  /** Display name of the access method. */
19932
19962
  display_name: string
19933
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19934
- mode: 'code' | 'card' | 'mobile_key'
19963
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19964
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19935
19965
  /** Date and time at which the access method was created. */
19936
19966
  created_at: string
19937
19967
  /** Date and time at which the access method was issued. */
@@ -20639,10 +20669,10 @@ export type Routes = {
20639
20669
  can_unlock_with_card?: boolean | undefined
20640
20670
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
20641
20671
  can_unlock_with_code?: boolean | undefined
20672
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
20673
+ can_unlock_with_cloud_key?: boolean | undefined
20642
20674
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
20643
20675
  can_belong_to_reservation?: boolean | undefined
20644
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
20645
- can_unlock_with_cloud_key?: boolean | undefined
20646
20676
  }[]
20647
20677
  }
20648
20678
  maxDuration: undefined
@@ -22582,10 +22612,10 @@ export type Routes = {
22582
22612
  can_unlock_with_card?: boolean | undefined
22583
22613
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
22584
22614
  can_unlock_with_code?: boolean | undefined
22615
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
22616
+ can_unlock_with_cloud_key?: boolean | undefined
22585
22617
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
22586
22618
  can_belong_to_reservation?: boolean | undefined
22587
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
22588
- can_unlock_with_cloud_key?: boolean | undefined
22589
22619
  }[]
22590
22620
  }
22591
22621
  maxDuration: undefined
@@ -24282,6 +24312,12 @@ export type Routes = {
24282
24312
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24283
24313
  message: string
24284
24314
  }
24315
+ | {
24316
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
24317
+ type: 'encoding_interrupted'
24318
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24319
+ message: string
24320
+ }
24285
24321
  }
24286
24322
  | {
24287
24323
  /** ID of the action attempt. */
@@ -25934,6 +25970,12 @@ export type Routes = {
25934
25970
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25935
25971
  message: string
25936
25972
  }
25973
+ | {
25974
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
25975
+ type: 'encoding_interrupted'
25976
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25977
+ message: string
25978
+ }
25937
25979
  }
25938
25980
  | {
25939
25981
  /** ID of the action attempt. */
@@ -26529,7 +26571,7 @@ export type Routes = {
26529
26571
  /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
26530
26572
  acs_encoder_id: string
26531
26573
  /** Code of the error to simulate. */
26532
- error_code?: 'no_credential_on_encoder'
26574
+ error_code?: 'no_credential_on_encoder' | 'encoding_interrupted'
26533
26575
  }
26534
26576
  | {
26535
26577
  /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
@@ -26781,10 +26823,10 @@ export type Routes = {
26781
26823
  can_unlock_with_card?: boolean | undefined
26782
26824
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
26783
26825
  can_unlock_with_code?: boolean | undefined
26826
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
26827
+ can_unlock_with_cloud_key?: boolean | undefined
26784
26828
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
26785
26829
  can_belong_to_reservation?: boolean | undefined
26786
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
26787
- can_unlock_with_cloud_key?: boolean | undefined
26788
26830
  }
26789
26831
  }
26790
26832
  maxDuration: undefined
@@ -26991,10 +27033,10 @@ export type Routes = {
26991
27033
  can_unlock_with_card?: boolean | undefined
26992
27034
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
26993
27035
  can_unlock_with_code?: boolean | undefined
27036
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
27037
+ can_unlock_with_cloud_key?: boolean | undefined
26994
27038
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
26995
27039
  can_belong_to_reservation?: boolean | undefined
26996
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
26997
- can_unlock_with_cloud_key?: boolean | undefined
26998
27040
  }[]
26999
27041
  /** Information about the current page of results. */
27000
27042
  pagination: {
@@ -28140,6 +28182,12 @@ export type Routes = {
28140
28182
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28141
28183
  message: string
28142
28184
  }
28185
+ | {
28186
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
28187
+ type: 'encoding_interrupted'
28188
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28189
+ message: string
28190
+ }
28143
28191
  }
28144
28192
  | {
28145
28193
  /** ID of the action attempt. */
@@ -30437,10 +30485,10 @@ export type Routes = {
30437
30485
  can_unlock_with_card?: boolean | undefined
30438
30486
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
30439
30487
  can_unlock_with_code?: boolean | undefined
30488
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
30489
+ can_unlock_with_cloud_key?: boolean | undefined
30440
30490
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
30441
30491
  can_belong_to_reservation?: boolean | undefined
30442
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
30443
- can_unlock_with_cloud_key?: boolean | undefined
30444
30492
  }[]
30445
30493
  }
30446
30494
  maxDuration: undefined
@@ -32086,6 +32134,12 @@ export type Routes = {
32086
32134
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32087
32135
  message: string
32088
32136
  }
32137
+ | {
32138
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
32139
+ type: 'encoding_interrupted'
32140
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32141
+ message: string
32142
+ }
32089
32143
  }
32090
32144
  | {
32091
32145
  /** ID of the action attempt. */
@@ -33627,6 +33681,12 @@ export type Routes = {
33627
33681
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33628
33682
  message: string
33629
33683
  }
33684
+ | {
33685
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
33686
+ type: 'encoding_interrupted'
33687
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33688
+ message: string
33689
+ }
33630
33690
  }
33631
33691
  | {
33632
33692
  /** ID of the action attempt. */
@@ -49601,6 +49661,12 @@ export type Routes = {
49601
49661
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49602
49662
  message: string
49603
49663
  }
49664
+ | {
49665
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
49666
+ type: 'encoding_interrupted'
49667
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49668
+ message: string
49669
+ }
49604
49670
  }
49605
49671
  | {
49606
49672
  /** ID of the action attempt. */
@@ -57920,6 +57986,12 @@ export type Routes = {
57920
57986
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57921
57987
  message: string
57922
57988
  }
57989
+ | {
57990
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
57991
+ type: 'encoding_interrupted'
57992
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57993
+ message: string
57994
+ }
57923
57995
  }
57924
57996
  | {
57925
57997
  /** ID of the action attempt. */
@@ -59462,6 +59534,12 @@ export type Routes = {
59462
59534
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59463
59535
  message: string
59464
59536
  }
59537
+ | {
59538
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
59539
+ type: 'encoding_interrupted'
59540
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59541
+ message: string
59542
+ }
59465
59543
  }
59466
59544
  | {
59467
59545
  /** ID of the action attempt. */
@@ -61002,6 +61080,12 @@ export type Routes = {
61002
61080
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61003
61081
  message: string
61004
61082
  }
61083
+ | {
61084
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
61085
+ type: 'encoding_interrupted'
61086
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61087
+ message: string
61088
+ }
61005
61089
  }
61006
61090
  | {
61007
61091
  /** ID of the action attempt. */
@@ -62544,6 +62628,12 @@ export type Routes = {
62544
62628
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62545
62629
  message: string
62546
62630
  }
62631
+ | {
62632
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
62633
+ type: 'encoding_interrupted'
62634
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62635
+ message: string
62636
+ }
62547
62637
  }
62548
62638
  | {
62549
62639
  /** ID of the action attempt. */
@@ -67479,6 +67569,12 @@ export type Routes = {
67479
67569
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67480
67570
  message: string
67481
67571
  }
67572
+ | {
67573
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
67574
+ type: 'encoding_interrupted'
67575
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67576
+ message: string
67577
+ }
67482
67578
  }
67483
67579
  | {
67484
67580
  /** ID of the action attempt. */
@@ -69040,6 +69136,12 @@ export type Routes = {
69040
69136
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
69041
69137
  message: string
69042
69138
  }
69139
+ | {
69140
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
69141
+ type: 'encoding_interrupted'
69142
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
69143
+ message: string
69144
+ }
69043
69145
  }
69044
69146
  | {
69045
69147
  /** ID of the action attempt. */
@@ -70657,6 +70759,12 @@ export type Routes = {
70657
70759
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70658
70760
  message: string
70659
70761
  }
70762
+ | {
70763
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
70764
+ type: 'encoding_interrupted'
70765
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70766
+ message: string
70767
+ }
70660
70768
  }
70661
70769
  | {
70662
70770
  /** ID of the action attempt. */
@@ -72113,8 +72221,8 @@ export type Routes = {
72113
72221
  requested_access_methods: {
72114
72222
  /** Display name of the access method. */
72115
72223
  display_name: string
72116
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
72117
- mode: 'code' | 'card' | 'mobile_key'
72224
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
72225
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
72118
72226
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
72119
72227
  code?: string | undefined
72120
72228
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -73234,6 +73342,12 @@ export type Routes = {
73234
73342
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73235
73343
  message: string
73236
73344
  }
73345
+ | {
73346
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
73347
+ type: 'encoding_interrupted'
73348
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73349
+ message: string
73350
+ }
73237
73351
  }
73238
73352
  | {
73239
73353
  /** ID of the action attempt. */
@@ -78196,6 +78310,170 @@ export type Routes = {
78196
78310
  }
78197
78311
  maxDuration: undefined
78198
78312
  }
78313
+ '/seam/customer/v1/portals/update': {
78314
+ route: '/seam/customer/v1/portals/update'
78315
+ method: 'PATCH' | 'POST'
78316
+ queryParams: {}
78317
+ jsonBody: {
78318
+ /** ID of the customer portal to update. */
78319
+ customer_portal_id: string
78320
+ /** Partial portal configuration to merge with the existing configuration. */
78321
+ portal_configuration: {
78322
+ features?:
78323
+ | {
78324
+ /** Configuration for the connect accounts feature. */
78325
+ connect?: {
78326
+ /** Whether to exclude this feature from the portal. */
78327
+ exclude?: boolean
78328
+ /** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
78329
+ accepted_providers?: string[] | undefined
78330
+ /** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
78331
+ excluded_providers?: string[] | undefined
78332
+ }
78333
+ /** Configuration for the manage feature. */
78334
+ manage?: {
78335
+ /** Whether to exclude this feature from the portal. */
78336
+ exclude?: boolean
78337
+ /** Indicates whether the customer can manage reservations for their properties. */
78338
+ exclude_reservation_management?: boolean
78339
+ /** Indicates whether to exclude technical details from reservation views. */
78340
+ exclude_reservation_technical_details?: boolean
78341
+ /** Indicates whether the customer can manage staff for their properties. */
78342
+ exclude_staff_management?: boolean
78343
+ /** Configuration for event type filtering in the manage feature. */
78344
+ events?:
78345
+ | {
78346
+ /** List of event types to show in the events filter. When set, only these event types will be available. Leave empty to show all events. */
78347
+ allowed_events?: string[] | undefined
78348
+ /** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
78349
+ default_events?: string[] | undefined
78350
+ }
78351
+ | undefined
78352
+ }
78353
+ /** Configuration for the manage devices feature.
78354
+ ---
78355
+ deprecated: Use `manage` instead.
78356
+ --- */
78357
+ manage_devices?: {
78358
+ /** Whether to exclude this feature from the portal. */
78359
+ exclude?: boolean
78360
+ }
78361
+ /** Configuration for the organize feature. */
78362
+ organize?: {
78363
+ /** Whether to exclude this feature from the portal. */
78364
+ exclude?: boolean
78365
+ }
78366
+ /** Configuration for the configure feature. */
78367
+ configure?: {
78368
+ /** Whether to exclude this feature from the portal. */
78369
+ exclude?: boolean
78370
+ /** Indicates whether the customer can customize the access automation rules for their properties. */
78371
+ allow_access_automation_rule_customization?: boolean
78372
+ /** Indicates whether the customer can customize the climate automation rules for their properties. */
78373
+ allow_climate_automation_rule_customization?: boolean
78374
+ /** Indicates whether the customer can customize the Instant Key profile for their properties. */
78375
+ allow_instant_key_customization?: boolean
78376
+ }
78377
+ }
78378
+ | undefined
78379
+ /** Whether the portal is embedded in another application. */
78380
+ is_embedded?: boolean | undefined
78381
+ /** Configuration for the landing page when the portal loads. */
78382
+ landing_page?:
78383
+ | (
78384
+ | {
78385
+ manage?:
78386
+ | (
78387
+ | (
78388
+ | {
78389
+ space_key: string
78390
+ }
78391
+ | {
78392
+ property_key: string
78393
+ }
78394
+ | {
78395
+ room_key: string
78396
+ }
78397
+ | {
78398
+ common_area_key: string
78399
+ }
78400
+ | {
78401
+ unit_key: string
78402
+ }
78403
+ | {
78404
+ facility_key: string
78405
+ }
78406
+ | {
78407
+ building_key: string
78408
+ }
78409
+ | {
78410
+ listing_key: string
78411
+ }
78412
+ | {
78413
+ property_listing_key: string
78414
+ }
78415
+ | {
78416
+ site_key: string
78417
+ }
78418
+ )
78419
+ | (
78420
+ | {
78421
+ reservation_key: string
78422
+ }
78423
+ | {
78424
+ booking_key: string
78425
+ }
78426
+ | {
78427
+ access_grant_key: string
78428
+ }
78429
+ )
78430
+ )
78431
+ | undefined
78432
+ }
78433
+ | undefined
78434
+ )
78435
+ | undefined
78436
+ /** The locale to use for the portal. */
78437
+ locale?:
78438
+ | (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined)
78439
+ | undefined
78440
+ /** Whether to exclude the option to select a locale within the portal UI. */
78441
+ exclude_locale_picker?: boolean | undefined
78442
+ /** The ID of the customization profile to use for the portal. */
78443
+ customization_profile_id?: (string | undefined) | undefined
78444
+ /** Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata. */
78445
+ customer_resources_filters?:
78446
+ | (
78447
+ | {
78448
+ /** The custom_metadata field name to filter on. */
78449
+ field: string
78450
+ /** The comparison operation. Currently only '=' is supported. */
78451
+ operation: '='
78452
+ /** The value to compare against. */
78453
+ value: string | boolean
78454
+ }[]
78455
+ | undefined
78456
+ )
78457
+ | undefined
78458
+ /** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
78459
+ navigation_mode?: ('full' | 'restricted') | undefined
78460
+ /** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
78461
+ deep_link?:
78462
+ | (
78463
+ | {
78464
+ resource_type: 'reservation' | 'space'
78465
+ resource_key: string
78466
+ }
78467
+ | undefined
78468
+ )
78469
+ | undefined
78470
+ }
78471
+ }
78472
+ commonParams: {}
78473
+ formData: {}
78474
+ jsonResponse: {}
78475
+ maxDuration: undefined
78476
+ }
78199
78477
  '/seam/customer/v1/reservations/get': {
78200
78478
  route: '/seam/customer/v1/reservations/get'
78201
78479
  method: 'GET' | 'POST'
@@ -78383,8 +78661,8 @@ export type Routes = {
78383
78661
  requested_access_methods: {
78384
78662
  /** Display name of the access method. */
78385
78663
  display_name: string
78386
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
78387
- mode: 'code' | 'card' | 'mobile_key'
78664
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
78665
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
78388
78666
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
78389
78667
  code?: string | undefined
78390
78668
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -78844,8 +79122,8 @@ export type Routes = {
78844
79122
  requested_access_methods: {
78845
79123
  /** Display name of the access method. */
78846
79124
  display_name: string
78847
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
78848
- mode: 'code' | 'card' | 'mobile_key'
79125
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
79126
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
78849
79127
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
78850
79128
  code?: string | undefined
78851
79129
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -79682,10 +79960,10 @@ export type Routes = {
79682
79960
  can_unlock_with_card?: boolean | undefined
79683
79961
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
79684
79962
  can_unlock_with_code?: boolean | undefined
79963
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
79964
+ can_unlock_with_cloud_key?: boolean | undefined
79685
79965
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
79686
79966
  can_belong_to_reservation?: boolean | undefined
79687
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
79688
- can_unlock_with_cloud_key?: boolean | undefined
79689
79967
  }[]
79690
79968
  }[]
79691
79969
  }[]
@@ -81814,10 +82092,10 @@ export type Routes = {
81814
82092
  can_unlock_with_card?: boolean | undefined
81815
82093
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
81816
82094
  can_unlock_with_code?: boolean | undefined
82095
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
82096
+ can_unlock_with_cloud_key?: boolean | undefined
81817
82097
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
81818
82098
  can_belong_to_reservation?: boolean | undefined
81819
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
81820
- can_unlock_with_cloud_key?: boolean | undefined
81821
82099
  }[]
81822
82100
  | undefined
81823
82101
  connected_accounts?:
@@ -82157,8 +82435,8 @@ export type Routes = {
82157
82435
  access_method_id: string
82158
82436
  /** Display name of the access method. */
82159
82437
  display_name: string
82160
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
82161
- mode: 'code' | 'card' | 'mobile_key'
82438
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
82439
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
82162
82440
  /** Date and time at which the access method was created. */
82163
82441
  created_at: string
82164
82442
  /** Date and time at which the access method was issued. */
@@ -83348,6 +83626,12 @@ export type Routes = {
83348
83626
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83349
83627
  message: string
83350
83628
  }
83629
+ | {
83630
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
83631
+ type: 'encoding_interrupted'
83632
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83633
+ message: string
83634
+ }
83351
83635
  }
83352
83636
  | {
83353
83637
  /** ID of the action attempt. */
@@ -84894,6 +85178,12 @@ export type Routes = {
84894
85178
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84895
85179
  message: string
84896
85180
  }
85181
+ | {
85182
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
85183
+ type: 'encoding_interrupted'
85184
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85185
+ message: string
85186
+ }
84897
85187
  }
84898
85188
  | {
84899
85189
  /** ID of the action attempt. */
@@ -86552,6 +86842,12 @@ export type Routes = {
86552
86842
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86553
86843
  message: string
86554
86844
  }
86845
+ | {
86846
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
86847
+ type: 'encoding_interrupted'
86848
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86849
+ message: string
86850
+ }
86555
86851
  }
86556
86852
  | {
86557
86853
  /** ID of the action attempt. */
@@ -89772,6 +90068,12 @@ export type Routes = {
89772
90068
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89773
90069
  message: string
89774
90070
  }
90071
+ | {
90072
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
90073
+ type: 'encoding_interrupted'
90074
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90075
+ message: string
90076
+ }
89775
90077
  }
89776
90078
  | {
89777
90079
  /** ID of the action attempt. */
@@ -91322,6 +91624,12 @@ export type Routes = {
91322
91624
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
91323
91625
  message: string
91324
91626
  }
91627
+ | {
91628
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
91629
+ type: 'encoding_interrupted'
91630
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
91631
+ message: string
91632
+ }
91325
91633
  }
91326
91634
  | {
91327
91635
  /** ID of the action attempt. */
@@ -96274,6 +96582,12 @@ export type Routes = {
96274
96582
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96275
96583
  message: string
96276
96584
  }
96585
+ | {
96586
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
96587
+ type: 'encoding_interrupted'
96588
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96589
+ message: string
96590
+ }
96277
96591
  }
96278
96592
  | {
96279
96593
  /** ID of the action attempt. */
@@ -98019,6 +98333,12 @@ export type Routes = {
98019
98333
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98020
98334
  message: string
98021
98335
  }
98336
+ | {
98337
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
98338
+ type: 'encoding_interrupted'
98339
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98340
+ message: string
98341
+ }
98022
98342
  }
98023
98343
  | {
98024
98344
  /** ID of the action attempt. */
@@ -99597,6 +99917,12 @@ export type Routes = {
99597
99917
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99598
99918
  message: string
99599
99919
  }
99920
+ | {
99921
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
99922
+ type: 'encoding_interrupted'
99923
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99924
+ message: string
99925
+ }
99600
99926
  }
99601
99927
  | {
99602
99928
  /** ID of the action attempt. */
@@ -101292,6 +101618,12 @@ export type Routes = {
101292
101618
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101293
101619
  message: string
101294
101620
  }
101621
+ | {
101622
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
101623
+ type: 'encoding_interrupted'
101624
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101625
+ message: string
101626
+ }
101295
101627
  }
101296
101628
  | {
101297
101629
  /** ID of the action attempt. */
@@ -108664,10 +108996,10 @@ export type Routes = {
108664
108996
  can_unlock_with_card?: boolean | undefined
108665
108997
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
108666
108998
  can_unlock_with_code?: boolean | undefined
108999
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
109000
+ can_unlock_with_cloud_key?: boolean | undefined
108667
109001
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
108668
109002
  can_belong_to_reservation?: boolean | undefined
108669
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
108670
- can_unlock_with_cloud_key?: boolean | undefined
108671
109003
  }[]
108672
109004
  | undefined
108673
109005
  acs_systems?:
@@ -110296,6 +110628,12 @@ export type Routes = {
110296
110628
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110297
110629
  message: string
110298
110630
  }
110631
+ | {
110632
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
110633
+ type: 'encoding_interrupted'
110634
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110635
+ message: string
110636
+ }
110299
110637
  }
110300
110638
  | {
110301
110639
  /** ID of the action attempt. */
@@ -111992,8 +112330,8 @@ export type Routes = {
111992
112330
  access_method_id: string
111993
112331
  /** Display name of the access method. */
111994
112332
  display_name: string
111995
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
111996
- mode: 'code' | 'card' | 'mobile_key'
112333
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
112334
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
111997
112335
  /** Date and time at which the access method was created. */
111998
112336
  created_at: string
111999
112337
  /** Date and time at which the access method was issued. */
@@ -112125,8 +112463,8 @@ export type Routes = {
112125
112463
  requested_access_methods: {
112126
112464
  /** Display name of the access method. */
112127
112465
  display_name: string
112128
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
112129
- mode: 'code' | 'card' | 'mobile_key'
112466
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
112467
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
112130
112468
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
112131
112469
  code?: string | undefined
112132
112470
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -118157,6 +118495,12 @@ export type Routes = {
118157
118495
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118158
118496
  message: string
118159
118497
  }
118498
+ | {
118499
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
118500
+ type: 'encoding_interrupted'
118501
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118502
+ message: string
118503
+ }
118160
118504
  }
118161
118505
  | {
118162
118506
  /** ID of the action attempt. */