@seamapi/types 1.768.1 → 1.770.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 (35) hide show
  1. package/dist/connect.cjs +159 -35
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +834 -90
  4. package/dist/index.cjs +159 -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 +60 -0
  17. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +30 -0
  18. package/lib/seam/connect/models/action-attempts/encode-credential.js +22 -0
  19. package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
  20. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +30 -0
  21. package/lib/seam/connect/models/action-attempts/scan-credential.js +22 -0
  22. package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
  23. package/lib/seam/connect/models/batch.d.ts +101 -17
  24. package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
  25. package/lib/seam/connect/openapi.js +110 -26
  26. package/lib/seam/connect/openapi.js.map +1 -1
  27. package/lib/seam/connect/route-types.d.ts +662 -62
  28. package/package.json +1 -1
  29. package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
  30. package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
  31. package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
  32. package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +34 -0
  33. package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +34 -0
  34. package/src/lib/seam/connect/openapi.ts +122 -26
  35. package/src/lib/seam/connect/route-types.ts +782 -62
@@ -579,6 +579,18 @@ export type Routes = {
579
579
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
580
580
  message: string
581
581
  }
582
+ | {
583
+ /** Error type to indicate that communication with the encoder timed out. */
584
+ type: 'encoder_timeout_error'
585
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
586
+ message: string
587
+ }
588
+ | {
589
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
590
+ type: 'bridge_disconnected'
591
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
592
+ message: string
593
+ }
582
594
  }
583
595
  | {
584
596
  /** ID of the action attempt. */
@@ -967,6 +979,18 @@ export type Routes = {
967
979
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
968
980
  message: string
969
981
  }
982
+ | {
983
+ /** Error type to indicate that communication with the encoder timed out. */
984
+ type: 'encoder_timeout_error'
985
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
986
+ message: string
987
+ }
988
+ | {
989
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
990
+ type: 'bridge_disconnected'
991
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
992
+ message: string
993
+ }
970
994
  }
971
995
  | {
972
996
  /** ID of the action attempt. */
@@ -3275,6 +3299,18 @@ export type Routes = {
3275
3299
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3276
3300
  message: string
3277
3301
  }
3302
+ | {
3303
+ /** Error type to indicate that communication with the encoder timed out. */
3304
+ type: 'encoder_timeout_error'
3305
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3306
+ message: string
3307
+ }
3308
+ | {
3309
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
3310
+ type: 'bridge_disconnected'
3311
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3312
+ message: string
3313
+ }
3278
3314
  }
3279
3315
  | {
3280
3316
  /** ID of the action attempt. */
@@ -3663,6 +3699,18 @@ export type Routes = {
3663
3699
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3664
3700
  message: string
3665
3701
  }
3702
+ | {
3703
+ /** Error type to indicate that communication with the encoder timed out. */
3704
+ type: 'encoder_timeout_error'
3705
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3706
+ message: string
3707
+ }
3708
+ | {
3709
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
3710
+ type: 'bridge_disconnected'
3711
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
3712
+ message: string
3713
+ }
3666
3714
  }
3667
3715
  | {
3668
3716
  /** ID of the action attempt. */
@@ -7875,6 +7923,18 @@ export type Routes = {
7875
7923
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7876
7924
  message: string
7877
7925
  }
7926
+ | {
7927
+ /** Error type to indicate that communication with the encoder timed out. */
7928
+ type: 'encoder_timeout_error'
7929
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7930
+ message: string
7931
+ }
7932
+ | {
7933
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
7934
+ type: 'bridge_disconnected'
7935
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
7936
+ message: string
7937
+ }
7878
7938
  }
7879
7939
  | {
7880
7940
  /** ID of the action attempt. */
@@ -8263,6 +8323,18 @@ export type Routes = {
8263
8323
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8264
8324
  message: string
8265
8325
  }
8326
+ | {
8327
+ /** Error type to indicate that communication with the encoder timed out. */
8328
+ type: 'encoder_timeout_error'
8329
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8330
+ message: string
8331
+ }
8332
+ | {
8333
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
8334
+ type: 'bridge_disconnected'
8335
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
8336
+ message: string
8337
+ }
8266
8338
  }
8267
8339
  | {
8268
8340
  /** ID of the action attempt. */
@@ -10607,6 +10679,18 @@ export type Routes = {
10607
10679
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10608
10680
  message: string
10609
10681
  }
10682
+ | {
10683
+ /** Error type to indicate that communication with the encoder timed out. */
10684
+ type: 'encoder_timeout_error'
10685
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10686
+ message: string
10687
+ }
10688
+ | {
10689
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
10690
+ type: 'bridge_disconnected'
10691
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10692
+ message: string
10693
+ }
10610
10694
  }
10611
10695
  | {
10612
10696
  /** ID of the action attempt. */
@@ -10995,6 +11079,18 @@ export type Routes = {
10995
11079
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
10996
11080
  message: string
10997
11081
  }
11082
+ | {
11083
+ /** Error type to indicate that communication with the encoder timed out. */
11084
+ type: 'encoder_timeout_error'
11085
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
11086
+ message: string
11087
+ }
11088
+ | {
11089
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
11090
+ type: 'bridge_disconnected'
11091
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
11092
+ message: string
11093
+ }
10998
11094
  }
10999
11095
  | {
11000
11096
  /** ID of the action attempt. */
@@ -11660,8 +11756,8 @@ export type Routes = {
11660
11756
  /** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
11661
11757
  device_ids?: string[]
11662
11758
  requested_access_methods: {
11663
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11664
- mode: 'code' | 'card' | 'mobile_key'
11759
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
11760
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11665
11761
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11666
11762
  code?: string | undefined
11667
11763
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -11697,8 +11793,8 @@ export type Routes = {
11697
11793
  requested_access_methods: {
11698
11794
  /** Display name of the access method. */
11699
11795
  display_name: string
11700
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11701
- mode: 'code' | 'card' | 'mobile_key'
11796
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
11797
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11702
11798
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11703
11799
  code?: string | undefined
11704
11800
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -11897,8 +11993,8 @@ export type Routes = {
11897
11993
  requested_access_methods: {
11898
11994
  /** Display name of the access method. */
11899
11995
  display_name: string
11900
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
11901
- mode: 'code' | 'card' | 'mobile_key'
11996
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
11997
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
11902
11998
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
11903
11999
  code?: string | undefined
11904
12000
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -13937,10 +14033,10 @@ export type Routes = {
13937
14033
  can_unlock_with_card?: boolean | undefined
13938
14034
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
13939
14035
  can_unlock_with_code?: boolean | undefined
14036
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
14037
+ can_unlock_with_cloud_key?: boolean | undefined
13940
14038
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
13941
14039
  can_belong_to_reservation?: boolean | undefined
13942
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
13943
- can_unlock_with_cloud_key?: boolean | undefined
13944
14040
  }[]
13945
14041
  | undefined
13946
14042
  connected_accounts?:
@@ -14517,8 +14613,8 @@ export type Routes = {
14517
14613
  access_method_id: string
14518
14614
  /** Display name of the access method. */
14519
14615
  display_name: string
14520
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14521
- mode: 'code' | 'card' | 'mobile_key'
14616
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14617
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14522
14618
  /** Date and time at which the access method was created. */
14523
14619
  created_at: string
14524
14620
  /** Date and time at which the access method was issued. */
@@ -14685,8 +14781,8 @@ export type Routes = {
14685
14781
  requested_access_methods: {
14686
14782
  /** Display name of the access method. */
14687
14783
  display_name: string
14688
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14689
- mode: 'code' | 'card' | 'mobile_key'
14784
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14785
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14690
14786
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14691
14787
  code?: string | undefined
14692
14788
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14854,8 +14950,8 @@ export type Routes = {
14854
14950
  access_grant_id: string
14855
14951
  /** Array of requested access methods to add to the access grant. */
14856
14952
  requested_access_methods: {
14857
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14858
- mode: 'code' | 'card' | 'mobile_key'
14953
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14954
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14859
14955
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14860
14956
  code?: string | undefined
14861
14957
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -14885,8 +14981,8 @@ export type Routes = {
14885
14981
  requested_access_methods: {
14886
14982
  /** Display name of the access method. */
14887
14983
  display_name: string
14888
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
14889
- mode: 'code' | 'card' | 'mobile_key'
14984
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
14985
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
14890
14986
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
14891
14987
  code?: string | undefined
14892
14988
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -15063,8 +15159,8 @@ export type Routes = {
15063
15159
  requested_access_methods: {
15064
15160
  /** Display name of the access method. */
15065
15161
  display_name: string
15066
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
15067
- mode: 'code' | 'card' | 'mobile_key'
15162
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
15163
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
15068
15164
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
15069
15165
  code?: string | undefined
15070
15166
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -15246,8 +15342,8 @@ export type Routes = {
15246
15342
  requested_access_methods: {
15247
15343
  /** Display name of the access method. */
15248
15344
  display_name: string
15249
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
15250
- mode: 'code' | 'card' | 'mobile_key'
15345
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
15346
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
15251
15347
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
15252
15348
  code?: string | undefined
15253
15349
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -16003,6 +16099,18 @@ export type Routes = {
16003
16099
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16004
16100
  message: string
16005
16101
  }
16102
+ | {
16103
+ /** Error type to indicate that communication with the encoder timed out. */
16104
+ type: 'encoder_timeout_error'
16105
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16106
+ message: string
16107
+ }
16108
+ | {
16109
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
16110
+ type: 'bridge_disconnected'
16111
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16112
+ message: string
16113
+ }
16006
16114
  }
16007
16115
  | {
16008
16116
  /** ID of the action attempt. */
@@ -16391,6 +16499,18 @@ export type Routes = {
16391
16499
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16392
16500
  message: string
16393
16501
  }
16502
+ | {
16503
+ /** Error type to indicate that communication with the encoder timed out. */
16504
+ type: 'encoder_timeout_error'
16505
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16506
+ message: string
16507
+ }
16508
+ | {
16509
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
16510
+ type: 'bridge_disconnected'
16511
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
16512
+ message: string
16513
+ }
16394
16514
  }
16395
16515
  | {
16396
16516
  /** ID of the action attempt. */
@@ -16996,8 +17116,8 @@ export type Routes = {
16996
17116
  access_method_id: string
16997
17117
  /** Display name of the access method. */
16998
17118
  display_name: string
16999
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
17000
- mode: 'code' | 'card' | 'mobile_key'
17119
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
17120
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
17001
17121
  /** Date and time at which the access method was created. */
17002
17122
  created_at: string
17003
17123
  /** Date and time at which the access method was issued. */
@@ -18998,10 +19118,10 @@ export type Routes = {
18998
19118
  can_unlock_with_card?: boolean | undefined
18999
19119
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
19000
19120
  can_unlock_with_code?: boolean | undefined
19121
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
19122
+ can_unlock_with_cloud_key?: boolean | undefined
19001
19123
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
19002
19124
  can_belong_to_reservation?: boolean | undefined
19003
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
19004
- can_unlock_with_cloud_key?: boolean | undefined
19005
19125
  }[]
19006
19126
  | undefined
19007
19127
  access_grants?:
@@ -19025,8 +19145,8 @@ export type Routes = {
19025
19145
  requested_access_methods: {
19026
19146
  /** Display name of the access method. */
19027
19147
  display_name: string
19028
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19029
- mode: 'code' | 'card' | 'mobile_key'
19148
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19149
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19030
19150
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
19031
19151
  code?: string | undefined
19032
19152
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -19181,8 +19301,8 @@ export type Routes = {
19181
19301
  access_method_id: string
19182
19302
  /** Display name of the access method. */
19183
19303
  display_name: string
19184
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19185
- mode: 'code' | 'card' | 'mobile_key'
19304
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19305
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19186
19306
  /** Date and time at which the access method was created. */
19187
19307
  created_at: string
19188
19308
  /** Date and time at which the access method was issued. */
@@ -19545,8 +19665,8 @@ export type Routes = {
19545
19665
  access_method_id: string
19546
19666
  /** Display name of the access method. */
19547
19667
  display_name: string
19548
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19549
- mode: 'code' | 'card' | 'mobile_key'
19668
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19669
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19550
19670
  /** Date and time at which the access method was created. */
19551
19671
  created_at: string
19552
19672
  /** Date and time at which the access method was issued. */
@@ -19678,8 +19798,8 @@ export type Routes = {
19678
19798
  access_method_id: string
19679
19799
  /** Display name of the access method. */
19680
19800
  display_name: string
19681
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19682
- mode: 'code' | 'card' | 'mobile_key'
19801
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19802
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19683
19803
  /** Date and time at which the access method was created. */
19684
19804
  created_at: string
19685
19805
  /** Date and time at which the access method was issued. */
@@ -19810,8 +19930,8 @@ export type Routes = {
19810
19930
  access_method_id: string
19811
19931
  /** Display name of the access method. */
19812
19932
  display_name: string
19813
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
19814
- mode: 'code' | 'card' | 'mobile_key'
19933
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
19934
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
19815
19935
  /** Date and time at which the access method was created. */
19816
19936
  created_at: string
19817
19937
  /** Date and time at which the access method was issued. */
@@ -20519,10 +20639,10 @@ export type Routes = {
20519
20639
  can_unlock_with_card?: boolean | undefined
20520
20640
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
20521
20641
  can_unlock_with_code?: boolean | undefined
20642
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
20643
+ can_unlock_with_cloud_key?: boolean | undefined
20522
20644
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
20523
20645
  can_belong_to_reservation?: boolean | undefined
20524
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
20525
- can_unlock_with_cloud_key?: boolean | undefined
20526
20646
  }[]
20527
20647
  }
20528
20648
  maxDuration: undefined
@@ -22462,10 +22582,10 @@ export type Routes = {
22462
22582
  can_unlock_with_card?: boolean | undefined
22463
22583
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
22464
22584
  can_unlock_with_code?: boolean | undefined
22585
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
22586
+ can_unlock_with_cloud_key?: boolean | undefined
22465
22587
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
22466
22588
  can_belong_to_reservation?: boolean | undefined
22467
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
22468
- can_unlock_with_cloud_key?: boolean | undefined
22469
22589
  }[]
22470
22590
  }
22471
22591
  maxDuration: undefined
@@ -23750,6 +23870,18 @@ export type Routes = {
23750
23870
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23751
23871
  message: string
23752
23872
  }
23873
+ | {
23874
+ /** Error type to indicate that communication with the encoder timed out. */
23875
+ type: 'encoder_timeout_error'
23876
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23877
+ message: string
23878
+ }
23879
+ | {
23880
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
23881
+ type: 'bridge_disconnected'
23882
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
23883
+ message: string
23884
+ }
23753
23885
  }
23754
23886
  | {
23755
23887
  /** ID of the action attempt. */
@@ -24138,6 +24270,18 @@ export type Routes = {
24138
24270
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24139
24271
  message: string
24140
24272
  }
24273
+ | {
24274
+ /** Error type to indicate that communication with the encoder timed out. */
24275
+ type: 'encoder_timeout_error'
24276
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24277
+ message: string
24278
+ }
24279
+ | {
24280
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
24281
+ type: 'bridge_disconnected'
24282
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
24283
+ message: string
24284
+ }
24141
24285
  }
24142
24286
  | {
24143
24287
  /** ID of the action attempt. */
@@ -25378,6 +25522,18 @@ export type Routes = {
25378
25522
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25379
25523
  message: string
25380
25524
  }
25525
+ | {
25526
+ /** Error type to indicate that communication with the encoder timed out. */
25527
+ type: 'encoder_timeout_error'
25528
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25529
+ message: string
25530
+ }
25531
+ | {
25532
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
25533
+ type: 'bridge_disconnected'
25534
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25535
+ message: string
25536
+ }
25381
25537
  }
25382
25538
  | {
25383
25539
  /** ID of the action attempt. */
@@ -25766,6 +25922,18 @@ export type Routes = {
25766
25922
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25767
25923
  message: string
25768
25924
  }
25925
+ | {
25926
+ /** Error type to indicate that communication with the encoder timed out. */
25927
+ type: 'encoder_timeout_error'
25928
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25929
+ message: string
25930
+ }
25931
+ | {
25932
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
25933
+ type: 'bridge_disconnected'
25934
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
25935
+ message: string
25936
+ }
25769
25937
  }
25770
25938
  | {
25771
25939
  /** ID of the action attempt. */
@@ -26613,10 +26781,10 @@ export type Routes = {
26613
26781
  can_unlock_with_card?: boolean | undefined
26614
26782
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
26615
26783
  can_unlock_with_code?: boolean | undefined
26784
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
26785
+ can_unlock_with_cloud_key?: boolean | undefined
26616
26786
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
26617
26787
  can_belong_to_reservation?: boolean | undefined
26618
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
26619
- can_unlock_with_cloud_key?: boolean | undefined
26620
26788
  }
26621
26789
  }
26622
26790
  maxDuration: undefined
@@ -26823,10 +26991,10 @@ export type Routes = {
26823
26991
  can_unlock_with_card?: boolean | undefined
26824
26992
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
26825
26993
  can_unlock_with_code?: boolean | undefined
26994
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
26995
+ can_unlock_with_cloud_key?: boolean | undefined
26826
26996
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
26827
26997
  can_belong_to_reservation?: boolean | undefined
26828
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
26829
- can_unlock_with_cloud_key?: boolean | undefined
26830
26998
  }[]
26831
26999
  /** Information about the current page of results. */
26832
27000
  pagination: {
@@ -27560,6 +27728,18 @@ export type Routes = {
27560
27728
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27561
27729
  message: string
27562
27730
  }
27731
+ | {
27732
+ /** Error type to indicate that communication with the encoder timed out. */
27733
+ type: 'encoder_timeout_error'
27734
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27735
+ message: string
27736
+ }
27737
+ | {
27738
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
27739
+ type: 'bridge_disconnected'
27740
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27741
+ message: string
27742
+ }
27563
27743
  }
27564
27744
  | {
27565
27745
  /** ID of the action attempt. */
@@ -27948,6 +28128,18 @@ export type Routes = {
27948
28128
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
27949
28129
  message: string
27950
28130
  }
28131
+ | {
28132
+ /** Error type to indicate that communication with the encoder timed out. */
28133
+ type: 'encoder_timeout_error'
28134
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28135
+ message: string
28136
+ }
28137
+ | {
28138
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
28139
+ type: 'bridge_disconnected'
28140
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
28141
+ message: string
28142
+ }
27951
28143
  }
27952
28144
  | {
27953
28145
  /** ID of the action attempt. */
@@ -30245,10 +30437,10 @@ export type Routes = {
30245
30437
  can_unlock_with_card?: boolean | undefined
30246
30438
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
30247
30439
  can_unlock_with_code?: boolean | undefined
30440
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
30441
+ can_unlock_with_cloud_key?: boolean | undefined
30248
30442
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
30249
30443
  can_belong_to_reservation?: boolean | undefined
30250
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
30251
- can_unlock_with_cloud_key?: boolean | undefined
30252
30444
  }[]
30253
30445
  }
30254
30446
  maxDuration: undefined
@@ -31482,6 +31674,18 @@ export type Routes = {
31482
31674
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31483
31675
  message: string
31484
31676
  }
31677
+ | {
31678
+ /** Error type to indicate that communication with the encoder timed out. */
31679
+ type: 'encoder_timeout_error'
31680
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31681
+ message: string
31682
+ }
31683
+ | {
31684
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
31685
+ type: 'bridge_disconnected'
31686
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31687
+ message: string
31688
+ }
31485
31689
  }
31486
31690
  | {
31487
31691
  /** ID of the action attempt. */
@@ -31870,6 +32074,18 @@ export type Routes = {
31870
32074
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
31871
32075
  message: string
31872
32076
  }
32077
+ | {
32078
+ /** Error type to indicate that communication with the encoder timed out. */
32079
+ type: 'encoder_timeout_error'
32080
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32081
+ message: string
32082
+ }
32083
+ | {
32084
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
32085
+ type: 'bridge_disconnected'
32086
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
32087
+ message: string
32088
+ }
31873
32089
  }
31874
32090
  | {
31875
32091
  /** ID of the action attempt. */
@@ -32999,6 +33215,18 @@ export type Routes = {
32999
33215
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33000
33216
  message: string
33001
33217
  }
33218
+ | {
33219
+ /** Error type to indicate that communication with the encoder timed out. */
33220
+ type: 'encoder_timeout_error'
33221
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33222
+ message: string
33223
+ }
33224
+ | {
33225
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
33226
+ type: 'bridge_disconnected'
33227
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33228
+ message: string
33229
+ }
33002
33230
  }
33003
33231
  | {
33004
33232
  /** ID of the action attempt. */
@@ -33387,6 +33615,18 @@ export type Routes = {
33387
33615
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33388
33616
  message: string
33389
33617
  }
33618
+ | {
33619
+ /** Error type to indicate that communication with the encoder timed out. */
33620
+ type: 'encoder_timeout_error'
33621
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33622
+ message: string
33623
+ }
33624
+ | {
33625
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
33626
+ type: 'bridge_disconnected'
33627
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
33628
+ message: string
33629
+ }
33390
33630
  }
33391
33631
  | {
33392
33632
  /** ID of the action attempt. */
@@ -48949,6 +49189,18 @@ export type Routes = {
48949
49189
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
48950
49190
  message: string
48951
49191
  }
49192
+ | {
49193
+ /** Error type to indicate that communication with the encoder timed out. */
49194
+ type: 'encoder_timeout_error'
49195
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49196
+ message: string
49197
+ }
49198
+ | {
49199
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
49200
+ type: 'bridge_disconnected'
49201
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49202
+ message: string
49203
+ }
48952
49204
  }
48953
49205
  | {
48954
49206
  /** ID of the action attempt. */
@@ -49337,6 +49589,18 @@ export type Routes = {
49337
49589
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49338
49590
  message: string
49339
49591
  }
49592
+ | {
49593
+ /** Error type to indicate that communication with the encoder timed out. */
49594
+ type: 'encoder_timeout_error'
49595
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49596
+ message: string
49597
+ }
49598
+ | {
49599
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
49600
+ type: 'bridge_disconnected'
49601
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
49602
+ message: string
49603
+ }
49340
49604
  }
49341
49605
  | {
49342
49606
  /** ID of the action attempt. */
@@ -57244,6 +57508,18 @@ export type Routes = {
57244
57508
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57245
57509
  message: string
57246
57510
  }
57511
+ | {
57512
+ /** Error type to indicate that communication with the encoder timed out. */
57513
+ type: 'encoder_timeout_error'
57514
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57515
+ message: string
57516
+ }
57517
+ | {
57518
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
57519
+ type: 'bridge_disconnected'
57520
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57521
+ message: string
57522
+ }
57247
57523
  }
57248
57524
  | {
57249
57525
  /** ID of the action attempt. */
@@ -57632,6 +57908,18 @@ export type Routes = {
57632
57908
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57633
57909
  message: string
57634
57910
  }
57911
+ | {
57912
+ /** Error type to indicate that communication with the encoder timed out. */
57913
+ type: 'encoder_timeout_error'
57914
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57915
+ message: string
57916
+ }
57917
+ | {
57918
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
57919
+ type: 'bridge_disconnected'
57920
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
57921
+ message: string
57922
+ }
57635
57923
  }
57636
57924
  | {
57637
57925
  /** ID of the action attempt. */
@@ -58762,6 +59050,18 @@ export type Routes = {
58762
59050
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
58763
59051
  message: string
58764
59052
  }
59053
+ | {
59054
+ /** Error type to indicate that communication with the encoder timed out. */
59055
+ type: 'encoder_timeout_error'
59056
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59057
+ message: string
59058
+ }
59059
+ | {
59060
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
59061
+ type: 'bridge_disconnected'
59062
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59063
+ message: string
59064
+ }
58765
59065
  }
58766
59066
  | {
58767
59067
  /** ID of the action attempt. */
@@ -59150,6 +59450,18 @@ export type Routes = {
59150
59450
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59151
59451
  message: string
59152
59452
  }
59453
+ | {
59454
+ /** Error type to indicate that communication with the encoder timed out. */
59455
+ type: 'encoder_timeout_error'
59456
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59457
+ message: string
59458
+ }
59459
+ | {
59460
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
59461
+ type: 'bridge_disconnected'
59462
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
59463
+ message: string
59464
+ }
59153
59465
  }
59154
59466
  | {
59155
59467
  /** ID of the action attempt. */
@@ -60278,6 +60590,18 @@ export type Routes = {
60278
60590
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60279
60591
  message: string
60280
60592
  }
60593
+ | {
60594
+ /** Error type to indicate that communication with the encoder timed out. */
60595
+ type: 'encoder_timeout_error'
60596
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60597
+ message: string
60598
+ }
60599
+ | {
60600
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
60601
+ type: 'bridge_disconnected'
60602
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60603
+ message: string
60604
+ }
60281
60605
  }
60282
60606
  | {
60283
60607
  /** ID of the action attempt. */
@@ -60666,6 +60990,18 @@ export type Routes = {
60666
60990
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60667
60991
  message: string
60668
60992
  }
60993
+ | {
60994
+ /** Error type to indicate that communication with the encoder timed out. */
60995
+ type: 'encoder_timeout_error'
60996
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
60997
+ message: string
60998
+ }
60999
+ | {
61000
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
61001
+ type: 'bridge_disconnected'
61002
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61003
+ message: string
61004
+ }
60669
61005
  }
60670
61006
  | {
60671
61007
  /** ID of the action attempt. */
@@ -61796,6 +62132,18 @@ export type Routes = {
61796
62132
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
61797
62133
  message: string
61798
62134
  }
62135
+ | {
62136
+ /** Error type to indicate that communication with the encoder timed out. */
62137
+ type: 'encoder_timeout_error'
62138
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62139
+ message: string
62140
+ }
62141
+ | {
62142
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
62143
+ type: 'bridge_disconnected'
62144
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62145
+ message: string
62146
+ }
61799
62147
  }
61800
62148
  | {
61801
62149
  /** ID of the action attempt. */
@@ -62184,6 +62532,18 @@ export type Routes = {
62184
62532
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62185
62533
  message: string
62186
62534
  }
62535
+ | {
62536
+ /** Error type to indicate that communication with the encoder timed out. */
62537
+ type: 'encoder_timeout_error'
62538
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62539
+ message: string
62540
+ }
62541
+ | {
62542
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
62543
+ type: 'bridge_disconnected'
62544
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
62545
+ message: string
62546
+ }
62187
62547
  }
62188
62548
  | {
62189
62549
  /** ID of the action attempt. */
@@ -66707,6 +67067,18 @@ export type Routes = {
66707
67067
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
66708
67068
  message: string
66709
67069
  }
67070
+ | {
67071
+ /** Error type to indicate that communication with the encoder timed out. */
67072
+ type: 'encoder_timeout_error'
67073
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67074
+ message: string
67075
+ }
67076
+ | {
67077
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
67078
+ type: 'bridge_disconnected'
67079
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67080
+ message: string
67081
+ }
66710
67082
  }
66711
67083
  | {
66712
67084
  /** ID of the action attempt. */
@@ -67095,6 +67467,18 @@ export type Routes = {
67095
67467
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67096
67468
  message: string
67097
67469
  }
67470
+ | {
67471
+ /** Error type to indicate that communication with the encoder timed out. */
67472
+ type: 'encoder_timeout_error'
67473
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67474
+ message: string
67475
+ }
67476
+ | {
67477
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
67478
+ type: 'bridge_disconnected'
67479
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
67480
+ message: string
67481
+ }
67098
67482
  }
67099
67483
  | {
67100
67484
  /** ID of the action attempt. */
@@ -68244,6 +68628,18 @@ export type Routes = {
68244
68628
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68245
68629
  message: string
68246
68630
  }
68631
+ | {
68632
+ /** Error type to indicate that communication with the encoder timed out. */
68633
+ type: 'encoder_timeout_error'
68634
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68635
+ message: string
68636
+ }
68637
+ | {
68638
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
68639
+ type: 'bridge_disconnected'
68640
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68641
+ message: string
68642
+ }
68247
68643
  }
68248
68644
  | {
68249
68645
  /** ID of the action attempt. */
@@ -68632,6 +69028,18 @@ export type Routes = {
68632
69028
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
68633
69029
  message: string
68634
69030
  }
69031
+ | {
69032
+ /** Error type to indicate that communication with the encoder timed out. */
69033
+ type: 'encoder_timeout_error'
69034
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
69035
+ message: string
69036
+ }
69037
+ | {
69038
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
69039
+ type: 'bridge_disconnected'
69040
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
69041
+ message: string
69042
+ }
68635
69043
  }
68636
69044
  | {
68637
69045
  /** ID of the action attempt. */
@@ -69837,6 +70245,18 @@ export type Routes = {
69837
70245
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
69838
70246
  message: string
69839
70247
  }
70248
+ | {
70249
+ /** Error type to indicate that communication with the encoder timed out. */
70250
+ type: 'encoder_timeout_error'
70251
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70252
+ message: string
70253
+ }
70254
+ | {
70255
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
70256
+ type: 'bridge_disconnected'
70257
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70258
+ message: string
70259
+ }
69840
70260
  }
69841
70261
  | {
69842
70262
  /** ID of the action attempt. */
@@ -70225,6 +70645,18 @@ export type Routes = {
70225
70645
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70226
70646
  message: string
70227
70647
  }
70648
+ | {
70649
+ /** Error type to indicate that communication with the encoder timed out. */
70650
+ type: 'encoder_timeout_error'
70651
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70652
+ message: string
70653
+ }
70654
+ | {
70655
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
70656
+ type: 'bridge_disconnected'
70657
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
70658
+ message: string
70659
+ }
70228
70660
  }
70229
70661
  | {
70230
70662
  /** ID of the action attempt. */
@@ -71681,8 +72113,8 @@ export type Routes = {
71681
72113
  requested_access_methods: {
71682
72114
  /** Display name of the access method. */
71683
72115
  display_name: string
71684
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
71685
- mode: 'code' | 'card' | 'mobile_key'
72116
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
72117
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
71686
72118
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
71687
72119
  code?: string | undefined
71688
72120
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -72390,6 +72822,18 @@ export type Routes = {
72390
72822
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72391
72823
  message: string
72392
72824
  }
72825
+ | {
72826
+ /** Error type to indicate that communication with the encoder timed out. */
72827
+ type: 'encoder_timeout_error'
72828
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72829
+ message: string
72830
+ }
72831
+ | {
72832
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
72833
+ type: 'bridge_disconnected'
72834
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72835
+ message: string
72836
+ }
72393
72837
  }
72394
72838
  | {
72395
72839
  /** ID of the action attempt. */
@@ -72778,6 +73222,18 @@ export type Routes = {
72778
73222
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
72779
73223
  message: string
72780
73224
  }
73225
+ | {
73226
+ /** Error type to indicate that communication with the encoder timed out. */
73227
+ type: 'encoder_timeout_error'
73228
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73229
+ message: string
73230
+ }
73231
+ | {
73232
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
73233
+ type: 'bridge_disconnected'
73234
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
73235
+ message: string
73236
+ }
72781
73237
  }
72782
73238
  | {
72783
73239
  /** ID of the action attempt. */
@@ -77927,8 +78383,8 @@ export type Routes = {
77927
78383
  requested_access_methods: {
77928
78384
  /** Display name of the access method. */
77929
78385
  display_name: string
77930
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
77931
- mode: 'code' | 'card' | 'mobile_key'
78386
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
78387
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
77932
78388
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
77933
78389
  code?: string | undefined
77934
78390
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -78388,8 +78844,8 @@ export type Routes = {
78388
78844
  requested_access_methods: {
78389
78845
  /** Display name of the access method. */
78390
78846
  display_name: string
78391
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
78392
- mode: 'code' | 'card' | 'mobile_key'
78847
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
78848
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
78393
78849
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
78394
78850
  code?: string | undefined
78395
78851
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -79226,10 +79682,10 @@ export type Routes = {
79226
79682
  can_unlock_with_card?: boolean | undefined
79227
79683
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
79228
79684
  can_unlock_with_code?: boolean | undefined
79685
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
79686
+ can_unlock_with_cloud_key?: boolean | undefined
79229
79687
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
79230
79688
  can_belong_to_reservation?: boolean | undefined
79231
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
79232
- can_unlock_with_cloud_key?: boolean | undefined
79233
79689
  }[]
79234
79690
  }[]
79235
79691
  }[]
@@ -81358,10 +81814,10 @@ export type Routes = {
81358
81814
  can_unlock_with_card?: boolean | undefined
81359
81815
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
81360
81816
  can_unlock_with_code?: boolean | undefined
81817
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
81818
+ can_unlock_with_cloud_key?: boolean | undefined
81361
81819
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
81362
81820
  can_belong_to_reservation?: boolean | undefined
81363
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
81364
- can_unlock_with_cloud_key?: boolean | undefined
81365
81821
  }[]
81366
81822
  | undefined
81367
81823
  connected_accounts?:
@@ -81701,8 +82157,8 @@ export type Routes = {
81701
82157
  access_method_id: string
81702
82158
  /** Display name of the access method. */
81703
82159
  display_name: string
81704
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
81705
- mode: 'code' | 'card' | 'mobile_key'
82160
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
82161
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
81706
82162
  /** Date and time at which the access method was created. */
81707
82163
  created_at: string
81708
82164
  /** Date and time at which the access method was issued. */
@@ -82480,6 +82936,18 @@ export type Routes = {
82480
82936
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82481
82937
  message: string
82482
82938
  }
82939
+ | {
82940
+ /** Error type to indicate that communication with the encoder timed out. */
82941
+ type: 'encoder_timeout_error'
82942
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82943
+ message: string
82944
+ }
82945
+ | {
82946
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
82947
+ type: 'bridge_disconnected'
82948
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82949
+ message: string
82950
+ }
82483
82951
  }
82484
82952
  | {
82485
82953
  /** ID of the action attempt. */
@@ -82868,6 +83336,18 @@ export type Routes = {
82868
83336
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
82869
83337
  message: string
82870
83338
  }
83339
+ | {
83340
+ /** Error type to indicate that communication with the encoder timed out. */
83341
+ type: 'encoder_timeout_error'
83342
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83343
+ message: string
83344
+ }
83345
+ | {
83346
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
83347
+ type: 'bridge_disconnected'
83348
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
83349
+ message: string
83350
+ }
82871
83351
  }
82872
83352
  | {
82873
83353
  /** ID of the action attempt. */
@@ -84002,6 +84482,18 @@ export type Routes = {
84002
84482
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84003
84483
  message: string
84004
84484
  }
84485
+ | {
84486
+ /** Error type to indicate that communication with the encoder timed out. */
84487
+ type: 'encoder_timeout_error'
84488
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84489
+ message: string
84490
+ }
84491
+ | {
84492
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
84493
+ type: 'bridge_disconnected'
84494
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84495
+ message: string
84496
+ }
84005
84497
  }
84006
84498
  | {
84007
84499
  /** ID of the action attempt. */
@@ -84390,6 +84882,18 @@ export type Routes = {
84390
84882
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84391
84883
  message: string
84392
84884
  }
84885
+ | {
84886
+ /** Error type to indicate that communication with the encoder timed out. */
84887
+ type: 'encoder_timeout_error'
84888
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84889
+ message: string
84890
+ }
84891
+ | {
84892
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
84893
+ type: 'bridge_disconnected'
84894
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
84895
+ message: string
84896
+ }
84393
84897
  }
84394
84898
  | {
84395
84899
  /** ID of the action attempt. */
@@ -85636,6 +86140,18 @@ export type Routes = {
85636
86140
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
85637
86141
  message: string
85638
86142
  }
86143
+ | {
86144
+ /** Error type to indicate that communication with the encoder timed out. */
86145
+ type: 'encoder_timeout_error'
86146
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86147
+ message: string
86148
+ }
86149
+ | {
86150
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
86151
+ type: 'bridge_disconnected'
86152
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86153
+ message: string
86154
+ }
85639
86155
  }
85640
86156
  | {
85641
86157
  /** ID of the action attempt. */
@@ -86024,6 +86540,18 @@ export type Routes = {
86024
86540
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86025
86541
  message: string
86026
86542
  }
86543
+ | {
86544
+ /** Error type to indicate that communication with the encoder timed out. */
86545
+ type: 'encoder_timeout_error'
86546
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86547
+ message: string
86548
+ }
86549
+ | {
86550
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
86551
+ type: 'bridge_disconnected'
86552
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
86553
+ message: string
86554
+ }
86027
86555
  }
86028
86556
  | {
86029
86557
  /** ID of the action attempt. */
@@ -88832,6 +89360,18 @@ export type Routes = {
88832
89360
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
88833
89361
  message: string
88834
89362
  }
89363
+ | {
89364
+ /** Error type to indicate that communication with the encoder timed out. */
89365
+ type: 'encoder_timeout_error'
89366
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89367
+ message: string
89368
+ }
89369
+ | {
89370
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
89371
+ type: 'bridge_disconnected'
89372
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89373
+ message: string
89374
+ }
88835
89375
  }
88836
89376
  | {
88837
89377
  /** ID of the action attempt. */
@@ -89220,6 +89760,18 @@ export type Routes = {
89220
89760
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89221
89761
  message: string
89222
89762
  }
89763
+ | {
89764
+ /** Error type to indicate that communication with the encoder timed out. */
89765
+ type: 'encoder_timeout_error'
89766
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89767
+ message: string
89768
+ }
89769
+ | {
89770
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
89771
+ type: 'bridge_disconnected'
89772
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
89773
+ message: string
89774
+ }
89223
89775
  }
89224
89776
  | {
89225
89777
  /** ID of the action attempt. */
@@ -90358,6 +90910,18 @@ export type Routes = {
90358
90910
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90359
90911
  message: string
90360
90912
  }
90913
+ | {
90914
+ /** Error type to indicate that communication with the encoder timed out. */
90915
+ type: 'encoder_timeout_error'
90916
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90917
+ message: string
90918
+ }
90919
+ | {
90920
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
90921
+ type: 'bridge_disconnected'
90922
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90923
+ message: string
90924
+ }
90361
90925
  }
90362
90926
  | {
90363
90927
  /** ID of the action attempt. */
@@ -90746,6 +91310,18 @@ export type Routes = {
90746
91310
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
90747
91311
  message: string
90748
91312
  }
91313
+ | {
91314
+ /** Error type to indicate that communication with the encoder timed out. */
91315
+ type: 'encoder_timeout_error'
91316
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
91317
+ message: string
91318
+ }
91319
+ | {
91320
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
91321
+ type: 'bridge_disconnected'
91322
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
91323
+ message: string
91324
+ }
90749
91325
  }
90750
91326
  | {
90751
91327
  /** ID of the action attempt. */
@@ -95286,6 +95862,18 @@ export type Routes = {
95286
95862
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95287
95863
  message: string
95288
95864
  }
95865
+ | {
95866
+ /** Error type to indicate that communication with the encoder timed out. */
95867
+ type: 'encoder_timeout_error'
95868
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95869
+ message: string
95870
+ }
95871
+ | {
95872
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
95873
+ type: 'bridge_disconnected'
95874
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95875
+ message: string
95876
+ }
95289
95877
  }
95290
95878
  | {
95291
95879
  /** ID of the action attempt. */
@@ -95674,6 +96262,18 @@ export type Routes = {
95674
96262
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
95675
96263
  message: string
95676
96264
  }
96265
+ | {
96266
+ /** Error type to indicate that communication with the encoder timed out. */
96267
+ type: 'encoder_timeout_error'
96268
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96269
+ message: string
96270
+ }
96271
+ | {
96272
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
96273
+ type: 'bridge_disconnected'
96274
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
96275
+ message: string
96276
+ }
95677
96277
  }
95678
96278
  | {
95679
96279
  /** ID of the action attempt. */
@@ -97007,6 +97607,18 @@ export type Routes = {
97007
97607
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97008
97608
  message: string
97009
97609
  }
97610
+ | {
97611
+ /** Error type to indicate that communication with the encoder timed out. */
97612
+ type: 'encoder_timeout_error'
97613
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97614
+ message: string
97615
+ }
97616
+ | {
97617
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
97618
+ type: 'bridge_disconnected'
97619
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97620
+ message: string
97621
+ }
97010
97622
  }
97011
97623
  | {
97012
97624
  /** ID of the action attempt. */
@@ -97395,6 +98007,18 @@ export type Routes = {
97395
98007
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
97396
98008
  message: string
97397
98009
  }
98010
+ | {
98011
+ /** Error type to indicate that communication with the encoder timed out. */
98012
+ type: 'encoder_timeout_error'
98013
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98014
+ message: string
98015
+ }
98016
+ | {
98017
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
98018
+ type: 'bridge_disconnected'
98019
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98020
+ message: string
98021
+ }
97398
98022
  }
97399
98023
  | {
97400
98024
  /** ID of the action attempt. */
@@ -98561,6 +99185,18 @@ export type Routes = {
98561
99185
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98562
99186
  message: string
98563
99187
  }
99188
+ | {
99189
+ /** Error type to indicate that communication with the encoder timed out. */
99190
+ type: 'encoder_timeout_error'
99191
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99192
+ message: string
99193
+ }
99194
+ | {
99195
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
99196
+ type: 'bridge_disconnected'
99197
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99198
+ message: string
99199
+ }
98564
99200
  }
98565
99201
  | {
98566
99202
  /** ID of the action attempt. */
@@ -98949,6 +99585,18 @@ export type Routes = {
98949
99585
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
98950
99586
  message: string
98951
99587
  }
99588
+ | {
99589
+ /** Error type to indicate that communication with the encoder timed out. */
99590
+ type: 'encoder_timeout_error'
99591
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99592
+ message: string
99593
+ }
99594
+ | {
99595
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
99596
+ type: 'bridge_disconnected'
99597
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
99598
+ message: string
99599
+ }
98952
99600
  }
98953
99601
  | {
98954
99602
  /** ID of the action attempt. */
@@ -100232,6 +100880,18 @@ export type Routes = {
100232
100880
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
100233
100881
  message: string
100234
100882
  }
100883
+ | {
100884
+ /** Error type to indicate that communication with the encoder timed out. */
100885
+ type: 'encoder_timeout_error'
100886
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
100887
+ message: string
100888
+ }
100889
+ | {
100890
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
100891
+ type: 'bridge_disconnected'
100892
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
100893
+ message: string
100894
+ }
100235
100895
  }
100236
100896
  | {
100237
100897
  /** ID of the action attempt. */
@@ -100620,6 +101280,18 @@ export type Routes = {
100620
101280
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
100621
101281
  message: string
100622
101282
  }
101283
+ | {
101284
+ /** Error type to indicate that communication with the encoder timed out. */
101285
+ type: 'encoder_timeout_error'
101286
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101287
+ message: string
101288
+ }
101289
+ | {
101290
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
101291
+ type: 'bridge_disconnected'
101292
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
101293
+ message: string
101294
+ }
100623
101295
  }
100624
101296
  | {
100625
101297
  /** ID of the action attempt. */
@@ -107992,10 +108664,10 @@ export type Routes = {
107992
108664
  can_unlock_with_card?: boolean | undefined
107993
108665
  /** Indicates whether the ACS entrance can be unlocked with pin codes. */
107994
108666
  can_unlock_with_code?: boolean | undefined
108667
+ /** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
108668
+ can_unlock_with_cloud_key?: boolean | undefined
107995
108669
  /** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
107996
108670
  can_belong_to_reservation?: boolean | undefined
107997
- /** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
107998
- can_unlock_with_cloud_key?: boolean | undefined
107999
108671
  }[]
108000
108672
  | undefined
108001
108673
  acs_systems?:
@@ -109200,6 +109872,18 @@ export type Routes = {
109200
109872
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
109201
109873
  message: string
109202
109874
  }
109875
+ | {
109876
+ /** Error type to indicate that communication with the encoder timed out. */
109877
+ type: 'encoder_timeout_error'
109878
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
109879
+ message: string
109880
+ }
109881
+ | {
109882
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
109883
+ type: 'bridge_disconnected'
109884
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
109885
+ message: string
109886
+ }
109203
109887
  }
109204
109888
  | {
109205
109889
  /** ID of the action attempt. */
@@ -109600,6 +110284,18 @@ export type Routes = {
109600
110284
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
109601
110285
  message: string
109602
110286
  }
110287
+ | {
110288
+ /** Error type to indicate that communication with the encoder timed out. */
110289
+ type: 'encoder_timeout_error'
110290
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110291
+ message: string
110292
+ }
110293
+ | {
110294
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
110295
+ type: 'bridge_disconnected'
110296
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
110297
+ message: string
110298
+ }
109603
110299
  }
109604
110300
  | {
109605
110301
  /** ID of the action attempt. */
@@ -111296,8 +111992,8 @@ export type Routes = {
111296
111992
  access_method_id: string
111297
111993
  /** Display name of the access method. */
111298
111994
  display_name: string
111299
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
111300
- mode: 'code' | 'card' | 'mobile_key'
111995
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
111996
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
111301
111997
  /** Date and time at which the access method was created. */
111302
111998
  created_at: string
111303
111999
  /** Date and time at which the access method was issued. */
@@ -111429,8 +112125,8 @@ export type Routes = {
111429
112125
  requested_access_methods: {
111430
112126
  /** Display name of the access method. */
111431
112127
  display_name: string
111432
- /** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
111433
- mode: 'code' | 'card' | 'mobile_key'
112128
+ /** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
112129
+ mode: 'code' | 'card' | 'mobile_key' | 'cloud_key'
111434
112130
  /** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
111435
112131
  code?: string | undefined
111436
112132
  /** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
@@ -117049,6 +117745,18 @@ export type Routes = {
117049
117745
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117050
117746
  message: string
117051
117747
  }
117748
+ | {
117749
+ /** Error type to indicate that communication with the encoder timed out. */
117750
+ type: 'encoder_timeout_error'
117751
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117752
+ message: string
117753
+ }
117754
+ | {
117755
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
117756
+ type: 'bridge_disconnected'
117757
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117758
+ message: string
117759
+ }
117052
117760
  }
117053
117761
  | {
117054
117762
  /** ID of the action attempt. */
@@ -117437,6 +118145,18 @@ export type Routes = {
117437
118145
  /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
117438
118146
  message: string
117439
118147
  }
118148
+ | {
118149
+ /** Error type to indicate that communication with the encoder timed out. */
118150
+ type: 'encoder_timeout_error'
118151
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118152
+ message: string
118153
+ }
118154
+ | {
118155
+ /** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
118156
+ type: 'bridge_disconnected'
118157
+ /** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
118158
+ message: string
118159
+ }
117440
118160
  }
117441
118161
  | {
117442
118162
  /** ID of the action attempt. */