@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
@@ -825,6 +825,11 @@ export type Routes = {
825
825
  type: 'bridge_disconnected';
826
826
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
827
827
  message: string;
828
+ } | {
829
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
830
+ type: 'encoding_interrupted';
831
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
832
+ message: string;
828
833
  };
829
834
  } | {
830
835
  /** ID of the action attempt. */
@@ -3223,6 +3228,11 @@ export type Routes = {
3223
3228
  type: 'bridge_disconnected';
3224
3229
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3225
3230
  message: string;
3231
+ } | {
3232
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
3233
+ type: 'encoding_interrupted';
3234
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3235
+ message: string;
3226
3236
  };
3227
3237
  } | {
3228
3238
  /** ID of the action attempt. */
@@ -7316,6 +7326,11 @@ export type Routes = {
7316
7326
  type: 'bridge_disconnected';
7317
7327
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7318
7328
  message: string;
7329
+ } | {
7330
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
7331
+ type: 'encoding_interrupted';
7332
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7333
+ message: string;
7319
7334
  };
7320
7335
  } | {
7321
7336
  /** ID of the action attempt. */
@@ -9750,6 +9765,11 @@ export type Routes = {
9750
9765
  type: 'bridge_disconnected';
9751
9766
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9752
9767
  message: string;
9768
+ } | {
9769
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
9770
+ type: 'encoding_interrupted';
9771
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
9772
+ message: string;
9753
9773
  };
9754
9774
  } | {
9755
9775
  /** ID of the action attempt. */
@@ -10366,8 +10386,8 @@ export type Routes = {
10366
10386
  /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
10367
10387
  device_ids?: string[];
10368
10388
  requested_access_methods: {
10369
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
10370
- mode: 'code' | 'card' | 'mobile_key';
10389
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
10390
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
10371
10391
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
10372
10392
  code?: string | undefined;
10373
10393
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -10403,8 +10423,8 @@ export type Routes = {
10403
10423
  requested_access_methods: {
10404
10424
  /** Display name of the access method. */
10405
10425
  display_name: string;
10406
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
10407
- mode: 'code' | 'card' | 'mobile_key';
10426
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
10427
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
10408
10428
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
10409
10429
  code?: string | undefined;
10410
10430
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -10591,8 +10611,8 @@ export type Routes = {
10591
10611
  requested_access_methods: {
10592
10612
  /** Display name of the access method. */
10593
10613
  display_name: string;
10594
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
10595
- mode: 'code' | 'card' | 'mobile_key';
10614
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
10615
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
10596
10616
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
10597
10617
  code?: string | undefined;
10598
10618
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -12215,10 +12235,10 @@ export type Routes = {
12215
12235
  can_unlock_with_card?: boolean | undefined;
12216
12236
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
12217
12237
  can_unlock_with_code?: boolean | undefined;
12238
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
12239
+ can_unlock_with_cloud_key?: boolean | undefined;
12218
12240
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
12219
12241
  can_belong_to_reservation?: boolean | undefined;
12220
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
12221
- can_unlock_with_cloud_key?: boolean | undefined;
12222
12242
  }[] | undefined;
12223
12243
  connected_accounts?: {
12224
12244
  /** ID of the connected account. */
@@ -12685,8 +12705,8 @@ export type Routes = {
12685
12705
  access_method_id: string;
12686
12706
  /** Display name of the access method. */
12687
12707
  display_name: string;
12688
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
12689
- mode: 'code' | 'card' | 'mobile_key';
12708
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
12709
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
12690
12710
  /** Date and time at which the access method was created. */
12691
12711
  created_at: string;
12692
12712
  /** Date and time at which the access method was issued. */
@@ -12844,8 +12864,8 @@ export type Routes = {
12844
12864
  requested_access_methods: {
12845
12865
  /** Display name of the access method. */
12846
12866
  display_name: string;
12847
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
12848
- mode: 'code' | 'card' | 'mobile_key';
12867
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
12868
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
12849
12869
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
12850
12870
  code?: string | undefined;
12851
12871
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -13003,8 +13023,8 @@ export type Routes = {
13003
13023
  access_grant_id: string;
13004
13024
  /** Array of requested access methods to add to the access grant. */
13005
13025
  requested_access_methods: {
13006
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
13007
- mode: 'code' | 'card' | 'mobile_key';
13026
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
13027
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
13008
13028
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
13009
13029
  code?: string | undefined;
13010
13030
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -13034,8 +13054,8 @@ export type Routes = {
13034
13054
  requested_access_methods: {
13035
13055
  /** Display name of the access method. */
13036
13056
  display_name: string;
13037
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
13038
- mode: 'code' | 'card' | 'mobile_key';
13057
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
13058
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
13039
13059
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
13040
13060
  code?: string | undefined;
13041
13061
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -13202,8 +13222,8 @@ export type Routes = {
13202
13222
  requested_access_methods: {
13203
13223
  /** Display name of the access method. */
13204
13224
  display_name: string;
13205
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
13206
- mode: 'code' | 'card' | 'mobile_key';
13225
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
13226
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
13207
13227
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
13208
13228
  code?: string | undefined;
13209
13229
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -13375,8 +13395,8 @@ export type Routes = {
13375
13395
  requested_access_methods: {
13376
13396
  /** Display name of the access method. */
13377
13397
  display_name: string;
13378
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
13379
- mode: 'code' | 'card' | 'mobile_key';
13398
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
13399
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
13380
13400
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
13381
13401
  code?: string | undefined;
13382
13402
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14365,6 +14385,11 @@ export type Routes = {
14365
14385
  type: 'bridge_disconnected';
14366
14386
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
14367
14387
  message: string;
14388
+ } | {
14389
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
14390
+ type: 'encoding_interrupted';
14391
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
14392
+ message: string;
14368
14393
  };
14369
14394
  } | {
14370
14395
  /** ID of the action attempt. */
@@ -14926,8 +14951,8 @@ export type Routes = {
14926
14951
  access_method_id: string;
14927
14952
  /** Display name of the access method. */
14928
14953
  display_name: string;
14929
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14930
- mode: 'code' | 'card' | 'mobile_key';
14954
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14955
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
14931
14956
  /** Date and time at which the access method was created. */
14932
14957
  created_at: string;
14933
14958
  /** Date and time at which the access method was issued. */
@@ -16514,10 +16539,10 @@ export type Routes = {
16514
16539
  can_unlock_with_card?: boolean | undefined;
16515
16540
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
16516
16541
  can_unlock_with_code?: boolean | undefined;
16542
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
16543
+ can_unlock_with_cloud_key?: boolean | undefined;
16517
16544
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
16518
16545
  can_belong_to_reservation?: boolean | undefined;
16519
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
16520
- can_unlock_with_cloud_key?: boolean | undefined;
16521
16546
  }[] | undefined;
16522
16547
  access_grants?: {
16523
16548
  /** ID of the Seam workspace associated with the Access Grant. */
@@ -16539,8 +16564,8 @@ export type Routes = {
16539
16564
  requested_access_methods: {
16540
16565
  /** Display name of the access method. */
16541
16566
  display_name: string;
16542
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
16543
- mode: 'code' | 'card' | 'mobile_key';
16567
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
16568
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
16544
16569
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
16545
16570
  code?: string | undefined;
16546
16571
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -16683,8 +16708,8 @@ export type Routes = {
16683
16708
  access_method_id: string;
16684
16709
  /** Display name of the access method. */
16685
16710
  display_name: string;
16686
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
16687
- mode: 'code' | 'card' | 'mobile_key';
16711
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
16712
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
16688
16713
  /** Date and time at which the access method was created. */
16689
16714
  created_at: string;
16690
16715
  /** Date and time at which the access method was issued. */
@@ -17001,8 +17026,8 @@ export type Routes = {
17001
17026
  access_method_id: string;
17002
17027
  /** Display name of the access method. */
17003
17028
  display_name: string;
17004
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
17005
- mode: 'code' | 'card' | 'mobile_key';
17029
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
17030
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
17006
17031
  /** Date and time at which the access method was created. */
17007
17032
  created_at: string;
17008
17033
  /** Date and time at which the access method was issued. */
@@ -17126,8 +17151,8 @@ export type Routes = {
17126
17151
  access_method_id: string;
17127
17152
  /** Display name of the access method. */
17128
17153
  display_name: string;
17129
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
17130
- mode: 'code' | 'card' | 'mobile_key';
17154
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
17155
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
17131
17156
  /** Date and time at which the access method was created. */
17132
17157
  created_at: string;
17133
17158
  /** Date and time at which the access method was issued. */
@@ -17250,8 +17275,8 @@ export type Routes = {
17250
17275
  access_method_id: string;
17251
17276
  /** Display name of the access method. */
17252
17277
  display_name: string;
17253
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
17254
- mode: 'code' | 'card' | 'mobile_key';
17278
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
17279
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
17255
17280
  /** Date and time at which the access method was created. */
17256
17281
  created_at: string;
17257
17282
  /** Date and time at which the access method was issued. */
@@ -17866,10 +17891,10 @@ export type Routes = {
17866
17891
  can_unlock_with_card?: boolean | undefined;
17867
17892
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
17868
17893
  can_unlock_with_code?: boolean | undefined;
17894
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
17895
+ can_unlock_with_cloud_key?: boolean | undefined;
17869
17896
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
17870
17897
  can_belong_to_reservation?: boolean | undefined;
17871
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
17872
- can_unlock_with_cloud_key?: boolean | undefined;
17873
17898
  }[];
17874
17899
  };
17875
17900
  maxDuration: undefined;
@@ -19526,10 +19551,10 @@ export type Routes = {
19526
19551
  can_unlock_with_card?: boolean | undefined;
19527
19552
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
19528
19553
  can_unlock_with_code?: boolean | undefined;
19554
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
19555
+ can_unlock_with_cloud_key?: boolean | undefined;
19529
19556
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
19530
19557
  can_belong_to_reservation?: boolean | undefined;
19531
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
19532
- can_unlock_with_cloud_key?: boolean | undefined;
19533
19558
  }[];
19534
19559
  };
19535
19560
  maxDuration: undefined;
@@ -20939,6 +20964,11 @@ export type Routes = {
20939
20964
  type: 'bridge_disconnected';
20940
20965
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
20941
20966
  message: string;
20967
+ } | {
20968
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
20969
+ type: 'encoding_interrupted';
20970
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
20971
+ message: string;
20942
20972
  };
20943
20973
  } | {
20944
20974
  /** ID of the action attempt. */
@@ -22377,6 +22407,11 @@ export type Routes = {
22377
22407
  type: 'bridge_disconnected';
22378
22408
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
22379
22409
  message: string;
22410
+ } | {
22411
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
22412
+ type: 'encoding_interrupted';
22413
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
22414
+ message: string;
22380
22415
  };
22381
22416
  } | {
22382
22417
  /** ID of the action attempt. */
@@ -22927,7 +22962,7 @@ export type Routes = {
22927
22962
  /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
22928
22963
  acs_encoder_id: string;
22929
22964
  /** Code of the error to simulate. */
22930
- error_code?: 'no_credential_on_encoder';
22965
+ error_code?: 'no_credential_on_encoder' | 'encoding_interrupted';
22931
22966
  } | {
22932
22967
  /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
22933
22968
  acs_encoder_id: string;
@@ -23142,10 +23177,10 @@ export type Routes = {
23142
23177
  can_unlock_with_card?: boolean | undefined;
23143
23178
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
23144
23179
  can_unlock_with_code?: boolean | undefined;
23180
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
23181
+ can_unlock_with_cloud_key?: boolean | undefined;
23145
23182
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
23146
23183
  can_belong_to_reservation?: boolean | undefined;
23147
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
23148
- can_unlock_with_cloud_key?: boolean | undefined;
23149
23184
  };
23150
23185
  };
23151
23186
  maxDuration: undefined;
@@ -23323,10 +23358,10 @@ export type Routes = {
23323
23358
  can_unlock_with_card?: boolean | undefined;
23324
23359
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
23325
23360
  can_unlock_with_code?: boolean | undefined;
23361
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
23362
+ can_unlock_with_cloud_key?: boolean | undefined;
23326
23363
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
23327
23364
  can_belong_to_reservation?: boolean | undefined;
23328
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
23329
- can_unlock_with_cloud_key?: boolean | undefined;
23330
23365
  }[];
23331
23366
  /** Information about the current page of results. */
23332
23367
  pagination: {
@@ -24277,6 +24312,11 @@ export type Routes = {
24277
24312
  type: 'bridge_disconnected';
24278
24313
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24279
24314
  message: string;
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;
24280
24320
  };
24281
24321
  } | {
24282
24322
  /** ID of the action attempt. */
@@ -26237,10 +26277,10 @@ export type Routes = {
26237
26277
  can_unlock_with_card?: boolean | undefined;
26238
26278
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
26239
26279
  can_unlock_with_code?: boolean | undefined;
26280
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
26281
+ can_unlock_with_cloud_key?: boolean | undefined;
26240
26282
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
26241
26283
  can_belong_to_reservation?: boolean | undefined;
26242
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
26243
- can_unlock_with_cloud_key?: boolean | undefined;
26244
26284
  }[];
26245
26285
  };
26246
26286
  maxDuration: undefined;
@@ -27644,6 +27684,11 @@ export type Routes = {
27644
27684
  type: 'bridge_disconnected';
27645
27685
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27646
27686
  message: string;
27687
+ } | {
27688
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
27689
+ type: 'encoding_interrupted';
27690
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27691
+ message: string;
27647
27692
  };
27648
27693
  } | {
27649
27694
  /** ID of the action attempt. */
@@ -28975,6 +29020,11 @@ export type Routes = {
28975
29020
  type: 'bridge_disconnected';
28976
29021
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28977
29022
  message: string;
29023
+ } | {
29024
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
29025
+ type: 'encoding_interrupted';
29026
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
29027
+ message: string;
28978
29028
  };
28979
29029
  } | {
28980
29030
  /** ID of the action attempt. */
@@ -41827,6 +41877,11 @@ export type Routes = {
41827
41877
  type: 'bridge_disconnected';
41828
41878
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
41829
41879
  message: string;
41880
+ } | {
41881
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
41882
+ type: 'encoding_interrupted';
41883
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
41884
+ message: string;
41830
41885
  };
41831
41886
  } | {
41832
41887
  /** ID of the action attempt. */
@@ -48504,6 +48559,11 @@ export type Routes = {
48504
48559
  type: 'bridge_disconnected';
48505
48560
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48506
48561
  message: string;
48562
+ } | {
48563
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
48564
+ type: 'encoding_interrupted';
48565
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48566
+ message: string;
48507
48567
  };
48508
48568
  } | {
48509
48569
  /** ID of the action attempt. */
@@ -49836,6 +49896,11 @@ export type Routes = {
49836
49896
  type: 'bridge_disconnected';
49837
49897
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49838
49898
  message: string;
49899
+ } | {
49900
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
49901
+ type: 'encoding_interrupted';
49902
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49903
+ message: string;
49839
49904
  };
49840
49905
  } | {
49841
49906
  /** ID of the action attempt. */
@@ -51166,6 +51231,11 @@ export type Routes = {
51166
51231
  type: 'bridge_disconnected';
51167
51232
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
51168
51233
  message: string;
51234
+ } | {
51235
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
51236
+ type: 'encoding_interrupted';
51237
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
51238
+ message: string;
51169
51239
  };
51170
51240
  } | {
51171
51241
  /** ID of the action attempt. */
@@ -52498,6 +52568,11 @@ export type Routes = {
52498
52568
  type: 'bridge_disconnected';
52499
52569
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52500
52570
  message: string;
52571
+ } | {
52572
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
52573
+ type: 'encoding_interrupted';
52574
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
52575
+ message: string;
52501
52576
  };
52502
52577
  } | {
52503
52578
  /** ID of the action attempt. */
@@ -56529,6 +56604,11 @@ export type Routes = {
56529
56604
  type: 'bridge_disconnected';
56530
56605
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56531
56606
  message: string;
56607
+ } | {
56608
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
56609
+ type: 'encoding_interrupted';
56610
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
56611
+ message: string;
56532
56612
  };
56533
56613
  } | {
56534
56614
  /** ID of the action attempt. */
@@ -57880,6 +57960,11 @@ export type Routes = {
57880
57960
  type: 'bridge_disconnected';
57881
57961
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57882
57962
  message: string;
57963
+ } | {
57964
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
57965
+ type: 'encoding_interrupted';
57966
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57967
+ message: string;
57883
57968
  };
57884
57969
  } | {
57885
57970
  /** ID of the action attempt. */
@@ -59287,6 +59372,11 @@ export type Routes = {
59287
59372
  type: 'bridge_disconnected';
59288
59373
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59289
59374
  message: string;
59375
+ } | {
59376
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
59377
+ type: 'encoding_interrupted';
59378
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59379
+ message: string;
59290
59380
  };
59291
59381
  } | {
59292
59382
  /** ID of the action attempt. */
@@ -60643,8 +60733,8 @@ export type Routes = {
60643
60733
  requested_access_methods: {
60644
60734
  /** Display name of the access method. */
60645
60735
  display_name: string;
60646
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
60647
- mode: 'code' | 'card' | 'mobile_key';
60736
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
60737
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
60648
60738
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
60649
60739
  code?: string | undefined;
60650
60740
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -61588,6 +61678,11 @@ export type Routes = {
61588
61678
  type: 'bridge_disconnected';
61589
61679
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61590
61680
  message: string;
61681
+ } | {
61682
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
61683
+ type: 'encoding_interrupted';
61684
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61685
+ message: string;
61591
61686
  };
61592
61687
  } | {
61593
61688
  /** ID of the action attempt. */
@@ -65757,6 +65852,129 @@ export type Routes = {
65757
65852
  };
65758
65853
  maxDuration: undefined;
65759
65854
  };
65855
+ '/seam/customer/v1/portals/update': {
65856
+ route: '/seam/customer/v1/portals/update';
65857
+ method: 'PATCH' | 'POST';
65858
+ queryParams: {};
65859
+ jsonBody: {
65860
+ /** ID of the customer portal to update. */
65861
+ customer_portal_id: string;
65862
+ /** Partial portal configuration to merge with the existing configuration. */
65863
+ portal_configuration: {
65864
+ features?: {
65865
+ /** Configuration for the connect accounts feature. */
65866
+ connect?: {
65867
+ /** Whether to exclude this feature from the portal. */
65868
+ exclude?: boolean;
65869
+ /** List of provider keys to allow for the connect feature. These providers will be shown when the customer tries to connect an account. */
65870
+ accepted_providers?: string[] | undefined;
65871
+ /** List of provider keys to exclude from the connect feature. These providers will not be shown when the customer tries to connect an account. */
65872
+ excluded_providers?: string[] | undefined;
65873
+ };
65874
+ /** Configuration for the manage feature. */
65875
+ manage?: {
65876
+ /** Whether to exclude this feature from the portal. */
65877
+ exclude?: boolean;
65878
+ /** Indicates whether the customer can manage reservations for their properties. */
65879
+ exclude_reservation_management?: boolean;
65880
+ /** Indicates whether to exclude technical details from reservation views. */
65881
+ exclude_reservation_technical_details?: boolean;
65882
+ /** Indicates whether the customer can manage staff for their properties. */
65883
+ exclude_staff_management?: boolean;
65884
+ /** Configuration for event type filtering in the manage feature. */
65885
+ events?: {
65886
+ /** 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. */
65887
+ allowed_events?: string[] | undefined;
65888
+ /** List of event types that are pre-selected in the events filter when the user first loads the events tab. */
65889
+ default_events?: string[] | undefined;
65890
+ } | undefined;
65891
+ };
65892
+ /** Configuration for the manage devices feature.
65893
+ ---
65894
+ deprecated: Use `manage` instead.
65895
+ --- */
65896
+ manage_devices?: {
65897
+ /** Whether to exclude this feature from the portal. */
65898
+ exclude?: boolean;
65899
+ };
65900
+ /** Configuration for the organize feature. */
65901
+ organize?: {
65902
+ /** Whether to exclude this feature from the portal. */
65903
+ exclude?: boolean;
65904
+ };
65905
+ /** Configuration for the configure feature. */
65906
+ configure?: {
65907
+ /** Whether to exclude this feature from the portal. */
65908
+ exclude?: boolean;
65909
+ /** Indicates whether the customer can customize the access automation rules for their properties. */
65910
+ allow_access_automation_rule_customization?: boolean;
65911
+ /** Indicates whether the customer can customize the climate automation rules for their properties. */
65912
+ allow_climate_automation_rule_customization?: boolean;
65913
+ /** Indicates whether the customer can customize the Instant Key profile for their properties. */
65914
+ allow_instant_key_customization?: boolean;
65915
+ };
65916
+ } | undefined;
65917
+ /** Whether the portal is embedded in another application. */
65918
+ is_embedded?: boolean | undefined;
65919
+ /** Configuration for the landing page when the portal loads. */
65920
+ landing_page?: ({
65921
+ manage?: (({
65922
+ space_key: string;
65923
+ } | {
65924
+ property_key: string;
65925
+ } | {
65926
+ room_key: string;
65927
+ } | {
65928
+ common_area_key: string;
65929
+ } | {
65930
+ unit_key: string;
65931
+ } | {
65932
+ facility_key: string;
65933
+ } | {
65934
+ building_key: string;
65935
+ } | {
65936
+ listing_key: string;
65937
+ } | {
65938
+ property_listing_key: string;
65939
+ } | {
65940
+ site_key: string;
65941
+ }) | ({
65942
+ reservation_key: string;
65943
+ } | {
65944
+ booking_key: string;
65945
+ } | {
65946
+ access_grant_key: string;
65947
+ })) | undefined;
65948
+ } | undefined) | undefined;
65949
+ /** The locale to use for the portal. */
65950
+ locale?: (('en-US' | 'pt-PT' | 'fr-FR' | 'it-IT' | 'es-ES') | undefined) | undefined;
65951
+ /** Whether to exclude the option to select a locale within the portal UI. */
65952
+ exclude_locale_picker?: boolean | undefined;
65953
+ /** The ID of the customization profile to use for the portal. */
65954
+ customization_profile_id?: (string | undefined) | undefined;
65955
+ /** Filter configuration for resources based on their custom_metadata. Each filter specifies a field, operation, and value to match against resource custom_metadata. */
65956
+ customer_resources_filters?: ({
65957
+ /** The custom_metadata field name to filter on. */
65958
+ field: string;
65959
+ /** The comparison operation. Currently only '=' is supported. */
65960
+ operation: '=';
65961
+ /** The value to compare against. */
65962
+ value: string | boolean;
65963
+ }[] | undefined) | undefined;
65964
+ /** Navigation mode for the portal. 'restricted' tells frontend to hide navigation UI, typically used for embedded deep links. */
65965
+ navigation_mode?: ('full' | 'restricted') | undefined;
65966
+ /** Deep link target resource for initial redirect. When set, the portal will navigate directly to the specified resource. */
65967
+ deep_link?: ({
65968
+ resource_type: 'reservation' | 'space';
65969
+ resource_key: string;
65970
+ } | undefined) | undefined;
65971
+ };
65972
+ };
65973
+ commonParams: {};
65974
+ formData: {};
65975
+ jsonResponse: {};
65976
+ maxDuration: undefined;
65977
+ };
65760
65978
  '/seam/customer/v1/reservations/get': {
65761
65979
  route: '/seam/customer/v1/reservations/get';
65762
65980
  method: 'GET' | 'POST';
@@ -65944,8 +66162,8 @@ export type Routes = {
65944
66162
  requested_access_methods: {
65945
66163
  /** Display name of the access method. */
65946
66164
  display_name: string;
65947
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
65948
- mode: 'code' | 'card' | 'mobile_key';
66165
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
66166
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
65949
66167
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
65950
66168
  code?: string | undefined;
65951
66169
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -66366,8 +66584,8 @@ export type Routes = {
66366
66584
  requested_access_methods: {
66367
66585
  /** Display name of the access method. */
66368
66586
  display_name: string;
66369
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
66370
- mode: 'code' | 'card' | 'mobile_key';
66587
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
66588
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
66371
66589
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
66372
66590
  code?: string | undefined;
66373
66591
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -67102,10 +67320,10 @@ export type Routes = {
67102
67320
  can_unlock_with_card?: boolean | undefined;
67103
67321
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
67104
67322
  can_unlock_with_code?: boolean | undefined;
67323
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
67324
+ can_unlock_with_cloud_key?: boolean | undefined;
67105
67325
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
67106
67326
  can_belong_to_reservation?: boolean | undefined;
67107
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
67108
- can_unlock_with_cloud_key?: boolean | undefined;
67109
67327
  }[];
67110
67328
  }[];
67111
67329
  }[];
@@ -68827,10 +69045,10 @@ export type Routes = {
68827
69045
  can_unlock_with_card?: boolean | undefined;
68828
69046
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
68829
69047
  can_unlock_with_code?: boolean | undefined;
69048
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
69049
+ can_unlock_with_cloud_key?: boolean | undefined;
68830
69050
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
68831
69051
  can_belong_to_reservation?: boolean | undefined;
68832
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
68833
- can_unlock_with_cloud_key?: boolean | undefined;
68834
69052
  }[] | undefined;
68835
69053
  connected_accounts?: {
68836
69054
  /** ID of the connected account. */
@@ -69095,8 +69313,8 @@ export type Routes = {
69095
69313
  access_method_id: string;
69096
69314
  /** Display name of the access method. */
69097
69315
  display_name: string;
69098
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
69099
- mode: 'code' | 'card' | 'mobile_key';
69316
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
69317
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
69100
69318
  /** Date and time at which the access method was created. */
69101
69319
  created_at: string;
69102
69320
  /** Date and time at which the access method was issued. */
@@ -70111,6 +70329,11 @@ export type Routes = {
70111
70329
  type: 'bridge_disconnected';
70112
70330
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70113
70331
  message: string;
70332
+ } | {
70333
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
70334
+ type: 'encoding_interrupted';
70335
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70336
+ message: string;
70114
70337
  };
70115
70338
  } | {
70116
70339
  /** ID of the action attempt. */
@@ -71447,6 +71670,11 @@ export type Routes = {
71447
71670
  type: 'bridge_disconnected';
71448
71671
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71449
71672
  message: string;
71673
+ } | {
71674
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
71675
+ type: 'encoding_interrupted';
71676
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
71677
+ message: string;
71450
71678
  };
71451
71679
  } | {
71452
71680
  /** ID of the action attempt. */
@@ -72889,6 +73117,11 @@ export type Routes = {
72889
73117
  type: 'bridge_disconnected';
72890
73118
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72891
73119
  message: string;
73120
+ } | {
73121
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
73122
+ type: 'encoding_interrupted';
73123
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73124
+ message: string;
72892
73125
  };
72893
73126
  } | {
72894
73127
  /** ID of the action attempt. */
@@ -75576,6 +75809,11 @@ export type Routes = {
75576
75809
  type: 'bridge_disconnected';
75577
75810
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75578
75811
  message: string;
75812
+ } | {
75813
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
75814
+ type: 'encoding_interrupted';
75815
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
75816
+ message: string;
75579
75817
  };
75580
75818
  } | {
75581
75819
  /** ID of the action attempt. */
@@ -76916,6 +77154,11 @@ export type Routes = {
76916
77154
  type: 'bridge_disconnected';
76917
77155
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
76918
77156
  message: string;
77157
+ } | {
77158
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
77159
+ type: 'encoding_interrupted';
77160
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
77161
+ message: string;
76919
77162
  };
76920
77163
  } | {
76921
77164
  /** ID of the action attempt. */
@@ -80937,6 +81180,11 @@ export type Routes = {
80937
81180
  type: 'bridge_disconnected';
80938
81181
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
80939
81182
  message: string;
81183
+ } | {
81184
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
81185
+ type: 'encoding_interrupted';
81186
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
81187
+ message: string;
80940
81188
  };
80941
81189
  } | {
80942
81190
  /** ID of the action attempt. */
@@ -82472,6 +82720,11 @@ export type Routes = {
82472
82720
  type: 'bridge_disconnected';
82473
82721
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82474
82722
  message: string;
82723
+ } | {
82724
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
82725
+ type: 'encoding_interrupted';
82726
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82727
+ message: string;
82475
82728
  };
82476
82729
  } | {
82477
82730
  /** ID of the action attempt. */
@@ -83835,6 +84088,11 @@ export type Routes = {
83835
84088
  type: 'bridge_disconnected';
83836
84089
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83837
84090
  message: string;
84091
+ } | {
84092
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
84093
+ type: 'encoding_interrupted';
84094
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84095
+ message: string;
83838
84096
  };
83839
84097
  } | {
83840
84098
  /** ID of the action attempt. */
@@ -85310,6 +85568,11 @@ export type Routes = {
85310
85568
  type: 'bridge_disconnected';
85311
85569
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85312
85570
  message: string;
85571
+ } | {
85572
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
85573
+ type: 'encoding_interrupted';
85574
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85575
+ message: string;
85313
85576
  };
85314
85577
  } | {
85315
85578
  /** ID of the action attempt. */
@@ -91475,10 +91738,10 @@ export type Routes = {
91475
91738
  can_unlock_with_card?: boolean | undefined;
91476
91739
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
91477
91740
  can_unlock_with_code?: boolean | undefined;
91741
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
91742
+ can_unlock_with_cloud_key?: boolean | undefined;
91478
91743
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
91479
91744
  can_belong_to_reservation?: boolean | undefined;
91480
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
91481
- can_unlock_with_cloud_key?: boolean | undefined;
91482
91745
  }[] | undefined;
91483
91746
  acs_systems?: {
91484
91747
  /** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
@@ -92783,6 +93046,11 @@ export type Routes = {
92783
93046
  type: 'bridge_disconnected';
92784
93047
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
92785
93048
  message: string;
93049
+ } | {
93050
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
93051
+ type: 'encoding_interrupted';
93052
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
93053
+ message: string;
92786
93054
  };
92787
93055
  } | {
92788
93056
  /** ID of the action attempt. */
@@ -94245,8 +94513,8 @@ export type Routes = {
94245
94513
  access_method_id: string;
94246
94514
  /** Display name of the access method. */
94247
94515
  display_name: string;
94248
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
94249
- mode: 'code' | 'card' | 'mobile_key';
94516
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
94517
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
94250
94518
  /** Date and time at which the access method was created. */
94251
94519
  created_at: string;
94252
94520
  /** Date and time at which the access method was issued. */
@@ -94368,8 +94636,8 @@ export type Routes = {
94368
94636
  requested_access_methods: {
94369
94637
  /** Display name of the access method. */
94370
94638
  display_name: string;
94371
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
94372
- mode: 'code' | 'card' | 'mobile_key';
94639
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
94640
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
94373
94641
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
94374
94642
  code?: string | undefined;
94375
94643
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -99644,6 +99912,11 @@ export type Routes = {
99644
99912
  type: 'bridge_disconnected';
99645
99913
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99646
99914
  message: string;
99915
+ } | {
99916
+ /** Error type to indicate that encoding was interrupted, for example, if the card was removed from the encoder before writing was complete. */
99917
+ type: 'encoding_interrupted';
99918
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99919
+ message: string;
99647
99920
  };
99648
99921
  } | {
99649
99922
  /** ID of the action attempt. */