@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.
- package/dist/connect.cjs +159 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +834 -90
- package/dist/index.cjs +159 -35
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
- package/lib/seam/connect/models/access-grants/access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +101 -17
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
- package/lib/seam/connect/openapi.js +110 -26
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +662 -62
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
- package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +34 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +34 -0
- package/src/lib/seam/connect/openapi.ts +122 -26
- package/src/lib/seam/connect/route-types.ts +782 -62
|
@@ -486,6 +486,16 @@ export type Routes = {
|
|
|
486
486
|
type: 'encoder_not_online';
|
|
487
487
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
488
488
|
message: string;
|
|
489
|
+
} | {
|
|
490
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
491
|
+
type: 'encoder_timeout_error';
|
|
492
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
493
|
+
message: string;
|
|
494
|
+
} | {
|
|
495
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
496
|
+
type: 'bridge_disconnected';
|
|
497
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
498
|
+
message: string;
|
|
489
499
|
};
|
|
490
500
|
} | {
|
|
491
501
|
/** ID of the action attempt. */
|
|
@@ -805,6 +815,16 @@ export type Routes = {
|
|
|
805
815
|
type: 'encoder_not_online';
|
|
806
816
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
807
817
|
message: string;
|
|
818
|
+
} | {
|
|
819
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
820
|
+
type: 'encoder_timeout_error';
|
|
821
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
822
|
+
message: string;
|
|
823
|
+
} | {
|
|
824
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
825
|
+
type: 'bridge_disconnected';
|
|
826
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
827
|
+
message: string;
|
|
808
828
|
};
|
|
809
829
|
} | {
|
|
810
830
|
/** ID of the action attempt. */
|
|
@@ -2864,6 +2884,16 @@ export type Routes = {
|
|
|
2864
2884
|
type: 'encoder_not_online';
|
|
2865
2885
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2866
2886
|
message: string;
|
|
2887
|
+
} | {
|
|
2888
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
2889
|
+
type: 'encoder_timeout_error';
|
|
2890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2891
|
+
message: string;
|
|
2892
|
+
} | {
|
|
2893
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
2894
|
+
type: 'bridge_disconnected';
|
|
2895
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2896
|
+
message: string;
|
|
2867
2897
|
};
|
|
2868
2898
|
} | {
|
|
2869
2899
|
/** ID of the action attempt. */
|
|
@@ -3183,6 +3213,16 @@ export type Routes = {
|
|
|
3183
3213
|
type: 'encoder_not_online';
|
|
3184
3214
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3185
3215
|
message: string;
|
|
3216
|
+
} | {
|
|
3217
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
3218
|
+
type: 'encoder_timeout_error';
|
|
3219
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3220
|
+
message: string;
|
|
3221
|
+
} | {
|
|
3222
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
3223
|
+
type: 'bridge_disconnected';
|
|
3224
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
3225
|
+
message: string;
|
|
3186
3226
|
};
|
|
3187
3227
|
} | {
|
|
3188
3228
|
/** ID of the action attempt. */
|
|
@@ -6937,6 +6977,16 @@ export type Routes = {
|
|
|
6937
6977
|
type: 'encoder_not_online';
|
|
6938
6978
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6939
6979
|
message: string;
|
|
6980
|
+
} | {
|
|
6981
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
6982
|
+
type: 'encoder_timeout_error';
|
|
6983
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6984
|
+
message: string;
|
|
6985
|
+
} | {
|
|
6986
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
6987
|
+
type: 'bridge_disconnected';
|
|
6988
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6989
|
+
message: string;
|
|
6940
6990
|
};
|
|
6941
6991
|
} | {
|
|
6942
6992
|
/** ID of the action attempt. */
|
|
@@ -7256,6 +7306,16 @@ export type Routes = {
|
|
|
7256
7306
|
type: 'encoder_not_online';
|
|
7257
7307
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7258
7308
|
message: string;
|
|
7309
|
+
} | {
|
|
7310
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
7311
|
+
type: 'encoder_timeout_error';
|
|
7312
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7313
|
+
message: string;
|
|
7314
|
+
} | {
|
|
7315
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
7316
|
+
type: 'bridge_disconnected';
|
|
7317
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7318
|
+
message: string;
|
|
7259
7319
|
};
|
|
7260
7320
|
} | {
|
|
7261
7321
|
/** ID of the action attempt. */
|
|
@@ -9351,6 +9411,16 @@ export type Routes = {
|
|
|
9351
9411
|
type: 'encoder_not_online';
|
|
9352
9412
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9353
9413
|
message: string;
|
|
9414
|
+
} | {
|
|
9415
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
9416
|
+
type: 'encoder_timeout_error';
|
|
9417
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9418
|
+
message: string;
|
|
9419
|
+
} | {
|
|
9420
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
9421
|
+
type: 'bridge_disconnected';
|
|
9422
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9423
|
+
message: string;
|
|
9354
9424
|
};
|
|
9355
9425
|
} | {
|
|
9356
9426
|
/** ID of the action attempt. */
|
|
@@ -9670,6 +9740,16 @@ export type Routes = {
|
|
|
9670
9740
|
type: 'encoder_not_online';
|
|
9671
9741
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9672
9742
|
message: string;
|
|
9743
|
+
} | {
|
|
9744
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
9745
|
+
type: 'encoder_timeout_error';
|
|
9746
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9747
|
+
message: string;
|
|
9748
|
+
} | {
|
|
9749
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
9750
|
+
type: 'bridge_disconnected';
|
|
9751
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9752
|
+
message: string;
|
|
9673
9753
|
};
|
|
9674
9754
|
} | {
|
|
9675
9755
|
/** ID of the action attempt. */
|
|
@@ -10286,8 +10366,8 @@ export type Routes = {
|
|
|
10286
10366
|
/** Set of IDs of the [devices](https://docs.seam.co/latest/api/devices/list) to which access is being granted. */
|
|
10287
10367
|
device_ids?: string[];
|
|
10288
10368
|
requested_access_methods: {
|
|
10289
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
10290
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
10369
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10370
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
10291
10371
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
10292
10372
|
code?: string | undefined;
|
|
10293
10373
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -10323,8 +10403,8 @@ export type Routes = {
|
|
|
10323
10403
|
requested_access_methods: {
|
|
10324
10404
|
/** Display name of the access method. */
|
|
10325
10405
|
display_name: string;
|
|
10326
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
10327
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
10406
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10407
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
10328
10408
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
10329
10409
|
code?: string | undefined;
|
|
10330
10410
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -10511,8 +10591,8 @@ export type Routes = {
|
|
|
10511
10591
|
requested_access_methods: {
|
|
10512
10592
|
/** Display name of the access method. */
|
|
10513
10593
|
display_name: string;
|
|
10514
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
10515
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
10594
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
10595
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
10516
10596
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
10517
10597
|
code?: string | undefined;
|
|
10518
10598
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -12135,10 +12215,10 @@ export type Routes = {
|
|
|
12135
12215
|
can_unlock_with_card?: boolean | undefined;
|
|
12136
12216
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
12137
12217
|
can_unlock_with_code?: boolean | undefined;
|
|
12218
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
12219
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
12138
12220
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
12139
12221
|
can_belong_to_reservation?: boolean | undefined;
|
|
12140
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
12141
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
12142
12222
|
}[] | undefined;
|
|
12143
12223
|
connected_accounts?: {
|
|
12144
12224
|
/** ID of the connected account. */
|
|
@@ -12605,8 +12685,8 @@ export type Routes = {
|
|
|
12605
12685
|
access_method_id: string;
|
|
12606
12686
|
/** Display name of the access method. */
|
|
12607
12687
|
display_name: string;
|
|
12608
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
12609
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
12688
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
12689
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
12610
12690
|
/** Date and time at which the access method was created. */
|
|
12611
12691
|
created_at: string;
|
|
12612
12692
|
/** Date and time at which the access method was issued. */
|
|
@@ -12764,8 +12844,8 @@ export type Routes = {
|
|
|
12764
12844
|
requested_access_methods: {
|
|
12765
12845
|
/** Display name of the access method. */
|
|
12766
12846
|
display_name: string;
|
|
12767
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
12768
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
12847
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
12848
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
12769
12849
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
12770
12850
|
code?: string | undefined;
|
|
12771
12851
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -12923,8 +13003,8 @@ export type Routes = {
|
|
|
12923
13003
|
access_grant_id: string;
|
|
12924
13004
|
/** Array of requested access methods to add to the access grant. */
|
|
12925
13005
|
requested_access_methods: {
|
|
12926
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
12927
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
13006
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
13007
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
12928
13008
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
12929
13009
|
code?: string | undefined;
|
|
12930
13010
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -12954,8 +13034,8 @@ export type Routes = {
|
|
|
12954
13034
|
requested_access_methods: {
|
|
12955
13035
|
/** Display name of the access method. */
|
|
12956
13036
|
display_name: string;
|
|
12957
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
12958
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
13037
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
13038
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
12959
13039
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
12960
13040
|
code?: string | undefined;
|
|
12961
13041
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -13122,8 +13202,8 @@ export type Routes = {
|
|
|
13122
13202
|
requested_access_methods: {
|
|
13123
13203
|
/** Display name of the access method. */
|
|
13124
13204
|
display_name: string;
|
|
13125
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
13126
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
13205
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
13206
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
13127
13207
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
13128
13208
|
code?: string | undefined;
|
|
13129
13209
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -13295,8 +13375,8 @@ export type Routes = {
|
|
|
13295
13375
|
requested_access_methods: {
|
|
13296
13376
|
/** Display name of the access method. */
|
|
13297
13377
|
display_name: string;
|
|
13298
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
13299
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
13378
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
13379
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
13300
13380
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
13301
13381
|
code?: string | undefined;
|
|
13302
13382
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -13946,6 +14026,16 @@ export type Routes = {
|
|
|
13946
14026
|
type: 'encoder_not_online';
|
|
13947
14027
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
13948
14028
|
message: string;
|
|
14029
|
+
} | {
|
|
14030
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
14031
|
+
type: 'encoder_timeout_error';
|
|
14032
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14033
|
+
message: string;
|
|
14034
|
+
} | {
|
|
14035
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
14036
|
+
type: 'bridge_disconnected';
|
|
14037
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14038
|
+
message: string;
|
|
13949
14039
|
};
|
|
13950
14040
|
} | {
|
|
13951
14041
|
/** ID of the action attempt. */
|
|
@@ -14265,6 +14355,16 @@ export type Routes = {
|
|
|
14265
14355
|
type: 'encoder_not_online';
|
|
14266
14356
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14267
14357
|
message: string;
|
|
14358
|
+
} | {
|
|
14359
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
14360
|
+
type: 'encoder_timeout_error';
|
|
14361
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14362
|
+
message: string;
|
|
14363
|
+
} | {
|
|
14364
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
14365
|
+
type: 'bridge_disconnected';
|
|
14366
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
14367
|
+
message: string;
|
|
14268
14368
|
};
|
|
14269
14369
|
} | {
|
|
14270
14370
|
/** ID of the action attempt. */
|
|
@@ -14826,8 +14926,8 @@ export type Routes = {
|
|
|
14826
14926
|
access_method_id: string;
|
|
14827
14927
|
/** Display name of the access method. */
|
|
14828
14928
|
display_name: string;
|
|
14829
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
14830
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
14929
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
14930
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
14831
14931
|
/** Date and time at which the access method was created. */
|
|
14832
14932
|
created_at: string;
|
|
14833
14933
|
/** Date and time at which the access method was issued. */
|
|
@@ -16414,10 +16514,10 @@ export type Routes = {
|
|
|
16414
16514
|
can_unlock_with_card?: boolean | undefined;
|
|
16415
16515
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
16416
16516
|
can_unlock_with_code?: boolean | undefined;
|
|
16517
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
16518
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
16417
16519
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
16418
16520
|
can_belong_to_reservation?: boolean | undefined;
|
|
16419
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
16420
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
16421
16521
|
}[] | undefined;
|
|
16422
16522
|
access_grants?: {
|
|
16423
16523
|
/** ID of the Seam workspace associated with the Access Grant. */
|
|
@@ -16439,8 +16539,8 @@ export type Routes = {
|
|
|
16439
16539
|
requested_access_methods: {
|
|
16440
16540
|
/** Display name of the access method. */
|
|
16441
16541
|
display_name: string;
|
|
16442
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
16443
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
16542
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
16543
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
16444
16544
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
16445
16545
|
code?: string | undefined;
|
|
16446
16546
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -16583,8 +16683,8 @@ export type Routes = {
|
|
|
16583
16683
|
access_method_id: string;
|
|
16584
16684
|
/** Display name of the access method. */
|
|
16585
16685
|
display_name: string;
|
|
16586
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
16587
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
16686
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
16687
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
16588
16688
|
/** Date and time at which the access method was created. */
|
|
16589
16689
|
created_at: string;
|
|
16590
16690
|
/** Date and time at which the access method was issued. */
|
|
@@ -16901,8 +17001,8 @@ export type Routes = {
|
|
|
16901
17001
|
access_method_id: string;
|
|
16902
17002
|
/** Display name of the access method. */
|
|
16903
17003
|
display_name: string;
|
|
16904
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
16905
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
17004
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
17005
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
16906
17006
|
/** Date and time at which the access method was created. */
|
|
16907
17007
|
created_at: string;
|
|
16908
17008
|
/** Date and time at which the access method was issued. */
|
|
@@ -17026,8 +17126,8 @@ export type Routes = {
|
|
|
17026
17126
|
access_method_id: string;
|
|
17027
17127
|
/** Display name of the access method. */
|
|
17028
17128
|
display_name: string;
|
|
17029
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
17030
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
17129
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
17130
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
17031
17131
|
/** Date and time at which the access method was created. */
|
|
17032
17132
|
created_at: string;
|
|
17033
17133
|
/** Date and time at which the access method was issued. */
|
|
@@ -17150,8 +17250,8 @@ export type Routes = {
|
|
|
17150
17250
|
access_method_id: string;
|
|
17151
17251
|
/** Display name of the access method. */
|
|
17152
17252
|
display_name: string;
|
|
17153
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
17154
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
17253
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
17254
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
17155
17255
|
/** Date and time at which the access method was created. */
|
|
17156
17256
|
created_at: string;
|
|
17157
17257
|
/** Date and time at which the access method was issued. */
|
|
@@ -17766,10 +17866,10 @@ export type Routes = {
|
|
|
17766
17866
|
can_unlock_with_card?: boolean | undefined;
|
|
17767
17867
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
17768
17868
|
can_unlock_with_code?: boolean | undefined;
|
|
17869
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
17870
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
17769
17871
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
17770
17872
|
can_belong_to_reservation?: boolean | undefined;
|
|
17771
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
17772
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
17773
17873
|
}[];
|
|
17774
17874
|
};
|
|
17775
17875
|
maxDuration: undefined;
|
|
@@ -19426,10 +19526,10 @@ export type Routes = {
|
|
|
19426
19526
|
can_unlock_with_card?: boolean | undefined;
|
|
19427
19527
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
19428
19528
|
can_unlock_with_code?: boolean | undefined;
|
|
19529
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
19530
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
19429
19531
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
19430
19532
|
can_belong_to_reservation?: boolean | undefined;
|
|
19431
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
19432
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
19433
19533
|
}[];
|
|
19434
19534
|
};
|
|
19435
19535
|
maxDuration: undefined;
|
|
@@ -20500,6 +20600,16 @@ export type Routes = {
|
|
|
20500
20600
|
type: 'encoder_not_online';
|
|
20501
20601
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20502
20602
|
message: string;
|
|
20603
|
+
} | {
|
|
20604
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
20605
|
+
type: 'encoder_timeout_error';
|
|
20606
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20607
|
+
message: string;
|
|
20608
|
+
} | {
|
|
20609
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
20610
|
+
type: 'bridge_disconnected';
|
|
20611
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20612
|
+
message: string;
|
|
20503
20613
|
};
|
|
20504
20614
|
} | {
|
|
20505
20615
|
/** ID of the action attempt. */
|
|
@@ -20819,6 +20929,16 @@ export type Routes = {
|
|
|
20819
20929
|
type: 'encoder_not_online';
|
|
20820
20930
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20821
20931
|
message: string;
|
|
20932
|
+
} | {
|
|
20933
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
20934
|
+
type: 'encoder_timeout_error';
|
|
20935
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20936
|
+
message: string;
|
|
20937
|
+
} | {
|
|
20938
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
20939
|
+
type: 'bridge_disconnected';
|
|
20940
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
20941
|
+
message: string;
|
|
20822
20942
|
};
|
|
20823
20943
|
} | {
|
|
20824
20944
|
/** ID of the action attempt. */
|
|
@@ -21918,6 +22038,16 @@ export type Routes = {
|
|
|
21918
22038
|
type: 'encoder_not_online';
|
|
21919
22039
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
21920
22040
|
message: string;
|
|
22041
|
+
} | {
|
|
22042
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
22043
|
+
type: 'encoder_timeout_error';
|
|
22044
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22045
|
+
message: string;
|
|
22046
|
+
} | {
|
|
22047
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
22048
|
+
type: 'bridge_disconnected';
|
|
22049
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22050
|
+
message: string;
|
|
21921
22051
|
};
|
|
21922
22052
|
} | {
|
|
21923
22053
|
/** ID of the action attempt. */
|
|
@@ -22237,6 +22367,16 @@ export type Routes = {
|
|
|
22237
22367
|
type: 'encoder_not_online';
|
|
22238
22368
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22239
22369
|
message: string;
|
|
22370
|
+
} | {
|
|
22371
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
22372
|
+
type: 'encoder_timeout_error';
|
|
22373
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22374
|
+
message: string;
|
|
22375
|
+
} | {
|
|
22376
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
22377
|
+
type: 'bridge_disconnected';
|
|
22378
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
22379
|
+
message: string;
|
|
22240
22380
|
};
|
|
22241
22381
|
} | {
|
|
22242
22382
|
/** ID of the action attempt. */
|
|
@@ -23002,10 +23142,10 @@ export type Routes = {
|
|
|
23002
23142
|
can_unlock_with_card?: boolean | undefined;
|
|
23003
23143
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
23004
23144
|
can_unlock_with_code?: boolean | undefined;
|
|
23145
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
23146
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
23005
23147
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
23006
23148
|
can_belong_to_reservation?: boolean | undefined;
|
|
23007
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
23008
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
23009
23149
|
};
|
|
23010
23150
|
};
|
|
23011
23151
|
maxDuration: undefined;
|
|
@@ -23183,10 +23323,10 @@ export type Routes = {
|
|
|
23183
23323
|
can_unlock_with_card?: boolean | undefined;
|
|
23184
23324
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
23185
23325
|
can_unlock_with_code?: boolean | undefined;
|
|
23326
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
23327
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
23186
23328
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
23187
23329
|
can_belong_to_reservation?: boolean | undefined;
|
|
23188
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
23189
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
23190
23330
|
}[];
|
|
23191
23331
|
/** Information about the current page of results. */
|
|
23192
23332
|
pagination: {
|
|
@@ -23798,6 +23938,16 @@ export type Routes = {
|
|
|
23798
23938
|
type: 'encoder_not_online';
|
|
23799
23939
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23800
23940
|
message: string;
|
|
23941
|
+
} | {
|
|
23942
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
23943
|
+
type: 'encoder_timeout_error';
|
|
23944
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23945
|
+
message: string;
|
|
23946
|
+
} | {
|
|
23947
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
23948
|
+
type: 'bridge_disconnected';
|
|
23949
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23950
|
+
message: string;
|
|
23801
23951
|
};
|
|
23802
23952
|
} | {
|
|
23803
23953
|
/** ID of the action attempt. */
|
|
@@ -24117,6 +24267,16 @@ export type Routes = {
|
|
|
24117
24267
|
type: 'encoder_not_online';
|
|
24118
24268
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24119
24269
|
message: string;
|
|
24270
|
+
} | {
|
|
24271
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
24272
|
+
type: 'encoder_timeout_error';
|
|
24273
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24274
|
+
message: string;
|
|
24275
|
+
} | {
|
|
24276
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
24277
|
+
type: 'bridge_disconnected';
|
|
24278
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
24279
|
+
message: string;
|
|
24120
24280
|
};
|
|
24121
24281
|
} | {
|
|
24122
24282
|
/** ID of the action attempt. */
|
|
@@ -26077,10 +26237,10 @@ export type Routes = {
|
|
|
26077
26237
|
can_unlock_with_card?: boolean | undefined;
|
|
26078
26238
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
26079
26239
|
can_unlock_with_code?: boolean | undefined;
|
|
26240
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
26241
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
26080
26242
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
26081
26243
|
can_belong_to_reservation?: boolean | undefined;
|
|
26082
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
26083
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
26084
26244
|
}[];
|
|
26085
26245
|
};
|
|
26086
26246
|
maxDuration: undefined;
|
|
@@ -27145,6 +27305,16 @@ export type Routes = {
|
|
|
27145
27305
|
type: 'encoder_not_online';
|
|
27146
27306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27147
27307
|
message: string;
|
|
27308
|
+
} | {
|
|
27309
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
27310
|
+
type: 'encoder_timeout_error';
|
|
27311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27312
|
+
message: string;
|
|
27313
|
+
} | {
|
|
27314
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
27315
|
+
type: 'bridge_disconnected';
|
|
27316
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27317
|
+
message: string;
|
|
27148
27318
|
};
|
|
27149
27319
|
} | {
|
|
27150
27320
|
/** ID of the action attempt. */
|
|
@@ -27464,6 +27634,16 @@ export type Routes = {
|
|
|
27464
27634
|
type: 'encoder_not_online';
|
|
27465
27635
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27466
27636
|
message: string;
|
|
27637
|
+
} | {
|
|
27638
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
27639
|
+
type: 'encoder_timeout_error';
|
|
27640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27641
|
+
message: string;
|
|
27642
|
+
} | {
|
|
27643
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
27644
|
+
type: 'bridge_disconnected';
|
|
27645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
27646
|
+
message: string;
|
|
27467
27647
|
};
|
|
27468
27648
|
} | {
|
|
27469
27649
|
/** ID of the action attempt. */
|
|
@@ -28456,6 +28636,16 @@ export type Routes = {
|
|
|
28456
28636
|
type: 'encoder_not_online';
|
|
28457
28637
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28458
28638
|
message: string;
|
|
28639
|
+
} | {
|
|
28640
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
28641
|
+
type: 'encoder_timeout_error';
|
|
28642
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28643
|
+
message: string;
|
|
28644
|
+
} | {
|
|
28645
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
28646
|
+
type: 'bridge_disconnected';
|
|
28647
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28648
|
+
message: string;
|
|
28459
28649
|
};
|
|
28460
28650
|
} | {
|
|
28461
28651
|
/** ID of the action attempt. */
|
|
@@ -28775,6 +28965,16 @@ export type Routes = {
|
|
|
28775
28965
|
type: 'encoder_not_online';
|
|
28776
28966
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28777
28967
|
message: string;
|
|
28968
|
+
} | {
|
|
28969
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
28970
|
+
type: 'encoder_timeout_error';
|
|
28971
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28972
|
+
message: string;
|
|
28973
|
+
} | {
|
|
28974
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
28975
|
+
type: 'bridge_disconnected';
|
|
28976
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
28977
|
+
message: string;
|
|
28778
28978
|
};
|
|
28779
28979
|
} | {
|
|
28780
28980
|
/** ID of the action attempt. */
|
|
@@ -41288,6 +41488,16 @@ export type Routes = {
|
|
|
41288
41488
|
type: 'encoder_not_online';
|
|
41289
41489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41290
41490
|
message: string;
|
|
41491
|
+
} | {
|
|
41492
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
41493
|
+
type: 'encoder_timeout_error';
|
|
41494
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41495
|
+
message: string;
|
|
41496
|
+
} | {
|
|
41497
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
41498
|
+
type: 'bridge_disconnected';
|
|
41499
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41500
|
+
message: string;
|
|
41291
41501
|
};
|
|
41292
41502
|
} | {
|
|
41293
41503
|
/** ID of the action attempt. */
|
|
@@ -41607,6 +41817,16 @@ export type Routes = {
|
|
|
41607
41817
|
type: 'encoder_not_online';
|
|
41608
41818
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41609
41819
|
message: string;
|
|
41820
|
+
} | {
|
|
41821
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
41822
|
+
type: 'encoder_timeout_error';
|
|
41823
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41824
|
+
message: string;
|
|
41825
|
+
} | {
|
|
41826
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
41827
|
+
type: 'bridge_disconnected';
|
|
41828
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
41829
|
+
message: string;
|
|
41610
41830
|
};
|
|
41611
41831
|
} | {
|
|
41612
41832
|
/** ID of the action attempt. */
|
|
@@ -47945,6 +48165,16 @@ export type Routes = {
|
|
|
47945
48165
|
type: 'encoder_not_online';
|
|
47946
48166
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
47947
48167
|
message: string;
|
|
48168
|
+
} | {
|
|
48169
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
48170
|
+
type: 'encoder_timeout_error';
|
|
48171
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48172
|
+
message: string;
|
|
48173
|
+
} | {
|
|
48174
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
48175
|
+
type: 'bridge_disconnected';
|
|
48176
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48177
|
+
message: string;
|
|
47948
48178
|
};
|
|
47949
48179
|
} | {
|
|
47950
48180
|
/** ID of the action attempt. */
|
|
@@ -48264,6 +48494,16 @@ export type Routes = {
|
|
|
48264
48494
|
type: 'encoder_not_online';
|
|
48265
48495
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48266
48496
|
message: string;
|
|
48497
|
+
} | {
|
|
48498
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
48499
|
+
type: 'encoder_timeout_error';
|
|
48500
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48501
|
+
message: string;
|
|
48502
|
+
} | {
|
|
48503
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
48504
|
+
type: 'bridge_disconnected';
|
|
48505
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
48506
|
+
message: string;
|
|
48267
48507
|
};
|
|
48268
48508
|
} | {
|
|
48269
48509
|
/** ID of the action attempt. */
|
|
@@ -49257,6 +49497,16 @@ export type Routes = {
|
|
|
49257
49497
|
type: 'encoder_not_online';
|
|
49258
49498
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49259
49499
|
message: string;
|
|
49500
|
+
} | {
|
|
49501
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
49502
|
+
type: 'encoder_timeout_error';
|
|
49503
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49504
|
+
message: string;
|
|
49505
|
+
} | {
|
|
49506
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
49507
|
+
type: 'bridge_disconnected';
|
|
49508
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49509
|
+
message: string;
|
|
49260
49510
|
};
|
|
49261
49511
|
} | {
|
|
49262
49512
|
/** ID of the action attempt. */
|
|
@@ -49576,6 +49826,16 @@ export type Routes = {
|
|
|
49576
49826
|
type: 'encoder_not_online';
|
|
49577
49827
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49578
49828
|
message: string;
|
|
49829
|
+
} | {
|
|
49830
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
49831
|
+
type: 'encoder_timeout_error';
|
|
49832
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49833
|
+
message: string;
|
|
49834
|
+
} | {
|
|
49835
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
49836
|
+
type: 'bridge_disconnected';
|
|
49837
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
49838
|
+
message: string;
|
|
49579
49839
|
};
|
|
49580
49840
|
} | {
|
|
49581
49841
|
/** ID of the action attempt. */
|
|
@@ -50567,6 +50827,16 @@ export type Routes = {
|
|
|
50567
50827
|
type: 'encoder_not_online';
|
|
50568
50828
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50569
50829
|
message: string;
|
|
50830
|
+
} | {
|
|
50831
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
50832
|
+
type: 'encoder_timeout_error';
|
|
50833
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50834
|
+
message: string;
|
|
50835
|
+
} | {
|
|
50836
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
50837
|
+
type: 'bridge_disconnected';
|
|
50838
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50839
|
+
message: string;
|
|
50570
50840
|
};
|
|
50571
50841
|
} | {
|
|
50572
50842
|
/** ID of the action attempt. */
|
|
@@ -50886,6 +51156,16 @@ export type Routes = {
|
|
|
50886
51156
|
type: 'encoder_not_online';
|
|
50887
51157
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50888
51158
|
message: string;
|
|
51159
|
+
} | {
|
|
51160
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
51161
|
+
type: 'encoder_timeout_error';
|
|
51162
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51163
|
+
message: string;
|
|
51164
|
+
} | {
|
|
51165
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
51166
|
+
type: 'bridge_disconnected';
|
|
51167
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51168
|
+
message: string;
|
|
50889
51169
|
};
|
|
50890
51170
|
} | {
|
|
50891
51171
|
/** ID of the action attempt. */
|
|
@@ -51879,6 +52159,16 @@ export type Routes = {
|
|
|
51879
52159
|
type: 'encoder_not_online';
|
|
51880
52160
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
51881
52161
|
message: string;
|
|
52162
|
+
} | {
|
|
52163
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
52164
|
+
type: 'encoder_timeout_error';
|
|
52165
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52166
|
+
message: string;
|
|
52167
|
+
} | {
|
|
52168
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
52169
|
+
type: 'bridge_disconnected';
|
|
52170
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52171
|
+
message: string;
|
|
51882
52172
|
};
|
|
51883
52173
|
} | {
|
|
51884
52174
|
/** ID of the action attempt. */
|
|
@@ -52198,6 +52488,16 @@ export type Routes = {
|
|
|
52198
52488
|
type: 'encoder_not_online';
|
|
52199
52489
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52200
52490
|
message: string;
|
|
52491
|
+
} | {
|
|
52492
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
52493
|
+
type: 'encoder_timeout_error';
|
|
52494
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52495
|
+
message: string;
|
|
52496
|
+
} | {
|
|
52497
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
52498
|
+
type: 'bridge_disconnected';
|
|
52499
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52500
|
+
message: string;
|
|
52201
52501
|
};
|
|
52202
52502
|
} | {
|
|
52203
52503
|
/** ID of the action attempt. */
|
|
@@ -55890,6 +56190,16 @@ export type Routes = {
|
|
|
55890
56190
|
type: 'encoder_not_online';
|
|
55891
56191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55892
56192
|
message: string;
|
|
56193
|
+
} | {
|
|
56194
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
56195
|
+
type: 'encoder_timeout_error';
|
|
56196
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56197
|
+
message: string;
|
|
56198
|
+
} | {
|
|
56199
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
56200
|
+
type: 'bridge_disconnected';
|
|
56201
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56202
|
+
message: string;
|
|
55893
56203
|
};
|
|
55894
56204
|
} | {
|
|
55895
56205
|
/** ID of the action attempt. */
|
|
@@ -56209,6 +56519,16 @@ export type Routes = {
|
|
|
56209
56519
|
type: 'encoder_not_online';
|
|
56210
56520
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56211
56521
|
message: string;
|
|
56522
|
+
} | {
|
|
56523
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
56524
|
+
type: 'encoder_timeout_error';
|
|
56525
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56526
|
+
message: string;
|
|
56527
|
+
} | {
|
|
56528
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
56529
|
+
type: 'bridge_disconnected';
|
|
56530
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
56531
|
+
message: string;
|
|
56212
56532
|
};
|
|
56213
56533
|
} | {
|
|
56214
56534
|
/** ID of the action attempt. */
|
|
@@ -57221,6 +57541,16 @@ export type Routes = {
|
|
|
57221
57541
|
type: 'encoder_not_online';
|
|
57222
57542
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57223
57543
|
message: string;
|
|
57544
|
+
} | {
|
|
57545
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
57546
|
+
type: 'encoder_timeout_error';
|
|
57547
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57548
|
+
message: string;
|
|
57549
|
+
} | {
|
|
57550
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
57551
|
+
type: 'bridge_disconnected';
|
|
57552
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57553
|
+
message: string;
|
|
57224
57554
|
};
|
|
57225
57555
|
} | {
|
|
57226
57556
|
/** ID of the action attempt. */
|
|
@@ -57540,6 +57870,16 @@ export type Routes = {
|
|
|
57540
57870
|
type: 'encoder_not_online';
|
|
57541
57871
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57542
57872
|
message: string;
|
|
57873
|
+
} | {
|
|
57874
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
57875
|
+
type: 'encoder_timeout_error';
|
|
57876
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57877
|
+
message: string;
|
|
57878
|
+
} | {
|
|
57879
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
57880
|
+
type: 'bridge_disconnected';
|
|
57881
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
57882
|
+
message: string;
|
|
57543
57883
|
};
|
|
57544
57884
|
} | {
|
|
57545
57885
|
/** ID of the action attempt. */
|
|
@@ -58608,6 +58948,16 @@ export type Routes = {
|
|
|
58608
58948
|
type: 'encoder_not_online';
|
|
58609
58949
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58610
58950
|
message: string;
|
|
58951
|
+
} | {
|
|
58952
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
58953
|
+
type: 'encoder_timeout_error';
|
|
58954
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58955
|
+
message: string;
|
|
58956
|
+
} | {
|
|
58957
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
58958
|
+
type: 'bridge_disconnected';
|
|
58959
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58960
|
+
message: string;
|
|
58611
58961
|
};
|
|
58612
58962
|
} | {
|
|
58613
58963
|
/** ID of the action attempt. */
|
|
@@ -58927,6 +59277,16 @@ export type Routes = {
|
|
|
58927
59277
|
type: 'encoder_not_online';
|
|
58928
59278
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
58929
59279
|
message: string;
|
|
59280
|
+
} | {
|
|
59281
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
59282
|
+
type: 'encoder_timeout_error';
|
|
59283
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59284
|
+
message: string;
|
|
59285
|
+
} | {
|
|
59286
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
59287
|
+
type: 'bridge_disconnected';
|
|
59288
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
59289
|
+
message: string;
|
|
58930
59290
|
};
|
|
58931
59291
|
} | {
|
|
58932
59292
|
/** ID of the action attempt. */
|
|
@@ -60283,8 +60643,8 @@ export type Routes = {
|
|
|
60283
60643
|
requested_access_methods: {
|
|
60284
60644
|
/** Display name of the access method. */
|
|
60285
60645
|
display_name: string;
|
|
60286
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
60287
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
60646
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
60647
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
60288
60648
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
60289
60649
|
code?: string | undefined;
|
|
60290
60650
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -60889,6 +61249,16 @@ export type Routes = {
|
|
|
60889
61249
|
type: 'encoder_not_online';
|
|
60890
61250
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
60891
61251
|
message: string;
|
|
61252
|
+
} | {
|
|
61253
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
61254
|
+
type: 'encoder_timeout_error';
|
|
61255
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61256
|
+
message: string;
|
|
61257
|
+
} | {
|
|
61258
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
61259
|
+
type: 'bridge_disconnected';
|
|
61260
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61261
|
+
message: string;
|
|
60892
61262
|
};
|
|
60893
61263
|
} | {
|
|
60894
61264
|
/** ID of the action attempt. */
|
|
@@ -61208,6 +61578,16 @@ export type Routes = {
|
|
|
61208
61578
|
type: 'encoder_not_online';
|
|
61209
61579
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61210
61580
|
message: string;
|
|
61581
|
+
} | {
|
|
61582
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
61583
|
+
type: 'encoder_timeout_error';
|
|
61584
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61585
|
+
message: string;
|
|
61586
|
+
} | {
|
|
61587
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
61588
|
+
type: 'bridge_disconnected';
|
|
61589
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
61590
|
+
message: string;
|
|
61211
61591
|
};
|
|
61212
61592
|
} | {
|
|
61213
61593
|
/** ID of the action attempt. */
|
|
@@ -65564,8 +65944,8 @@ export type Routes = {
|
|
|
65564
65944
|
requested_access_methods: {
|
|
65565
65945
|
/** Display name of the access method. */
|
|
65566
65946
|
display_name: string;
|
|
65567
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
65568
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
65947
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
65948
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
65569
65949
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
65570
65950
|
code?: string | undefined;
|
|
65571
65951
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -65986,8 +66366,8 @@ export type Routes = {
|
|
|
65986
66366
|
requested_access_methods: {
|
|
65987
66367
|
/** Display name of the access method. */
|
|
65988
66368
|
display_name: string;
|
|
65989
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
65990
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
66369
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
66370
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
65991
66371
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
65992
66372
|
code?: string | undefined;
|
|
65993
66373
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -66722,10 +67102,10 @@ export type Routes = {
|
|
|
66722
67102
|
can_unlock_with_card?: boolean | undefined;
|
|
66723
67103
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
66724
67104
|
can_unlock_with_code?: boolean | undefined;
|
|
67105
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
67106
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
66725
67107
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
66726
67108
|
can_belong_to_reservation?: boolean | undefined;
|
|
66727
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
66728
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
66729
67109
|
}[];
|
|
66730
67110
|
}[];
|
|
66731
67111
|
}[];
|
|
@@ -68447,10 +68827,10 @@ export type Routes = {
|
|
|
68447
68827
|
can_unlock_with_card?: boolean | undefined;
|
|
68448
68828
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
68449
68829
|
can_unlock_with_code?: boolean | undefined;
|
|
68830
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
68831
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
68450
68832
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
68451
68833
|
can_belong_to_reservation?: boolean | undefined;
|
|
68452
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
68453
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
68454
68834
|
}[] | undefined;
|
|
68455
68835
|
connected_accounts?: {
|
|
68456
68836
|
/** ID of the connected account. */
|
|
@@ -68715,8 +69095,8 @@ export type Routes = {
|
|
|
68715
69095
|
access_method_id: string;
|
|
68716
69096
|
/** Display name of the access method. */
|
|
68717
69097
|
display_name: string;
|
|
68718
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
68719
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
69098
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
69099
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
68720
69100
|
/** Date and time at which the access method was created. */
|
|
68721
69101
|
created_at: string;
|
|
68722
69102
|
/** Date and time at which the access method was issued. */
|
|
@@ -69392,6 +69772,16 @@ export type Routes = {
|
|
|
69392
69772
|
type: 'encoder_not_online';
|
|
69393
69773
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69394
69774
|
message: string;
|
|
69775
|
+
} | {
|
|
69776
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
69777
|
+
type: 'encoder_timeout_error';
|
|
69778
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69779
|
+
message: string;
|
|
69780
|
+
} | {
|
|
69781
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
69782
|
+
type: 'bridge_disconnected';
|
|
69783
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69784
|
+
message: string;
|
|
69395
69785
|
};
|
|
69396
69786
|
} | {
|
|
69397
69787
|
/** ID of the action attempt. */
|
|
@@ -69711,6 +70101,16 @@ export type Routes = {
|
|
|
69711
70101
|
type: 'encoder_not_online';
|
|
69712
70102
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
69713
70103
|
message: string;
|
|
70104
|
+
} | {
|
|
70105
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
70106
|
+
type: 'encoder_timeout_error';
|
|
70107
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70108
|
+
message: string;
|
|
70109
|
+
} | {
|
|
70110
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
70111
|
+
type: 'bridge_disconnected';
|
|
70112
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70113
|
+
message: string;
|
|
69714
70114
|
};
|
|
69715
70115
|
} | {
|
|
69716
70116
|
/** ID of the action attempt. */
|
|
@@ -70708,6 +71108,16 @@ export type Routes = {
|
|
|
70708
71108
|
type: 'encoder_not_online';
|
|
70709
71109
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70710
71110
|
message: string;
|
|
71111
|
+
} | {
|
|
71112
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
71113
|
+
type: 'encoder_timeout_error';
|
|
71114
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71115
|
+
message: string;
|
|
71116
|
+
} | {
|
|
71117
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
71118
|
+
type: 'bridge_disconnected';
|
|
71119
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71120
|
+
message: string;
|
|
70711
71121
|
};
|
|
70712
71122
|
} | {
|
|
70713
71123
|
/** ID of the action attempt. */
|
|
@@ -71027,6 +71437,16 @@ export type Routes = {
|
|
|
71027
71437
|
type: 'encoder_not_online';
|
|
71028
71438
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71029
71439
|
message: string;
|
|
71440
|
+
} | {
|
|
71441
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
71442
|
+
type: 'encoder_timeout_error';
|
|
71443
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71444
|
+
message: string;
|
|
71445
|
+
} | {
|
|
71446
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
71447
|
+
type: 'bridge_disconnected';
|
|
71448
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
71449
|
+
message: string;
|
|
71030
71450
|
};
|
|
71031
71451
|
} | {
|
|
71032
71452
|
/** ID of the action attempt. */
|
|
@@ -72130,6 +72550,16 @@ export type Routes = {
|
|
|
72130
72550
|
type: 'encoder_not_online';
|
|
72131
72551
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72132
72552
|
message: string;
|
|
72553
|
+
} | {
|
|
72554
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
72555
|
+
type: 'encoder_timeout_error';
|
|
72556
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72557
|
+
message: string;
|
|
72558
|
+
} | {
|
|
72559
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
72560
|
+
type: 'bridge_disconnected';
|
|
72561
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72562
|
+
message: string;
|
|
72133
72563
|
};
|
|
72134
72564
|
} | {
|
|
72135
72565
|
/** ID of the action attempt. */
|
|
@@ -72449,6 +72879,16 @@ export type Routes = {
|
|
|
72449
72879
|
type: 'encoder_not_online';
|
|
72450
72880
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72451
72881
|
message: string;
|
|
72882
|
+
} | {
|
|
72883
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
72884
|
+
type: 'encoder_timeout_error';
|
|
72885
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72886
|
+
message: string;
|
|
72887
|
+
} | {
|
|
72888
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
72889
|
+
type: 'bridge_disconnected';
|
|
72890
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72891
|
+
message: string;
|
|
72452
72892
|
};
|
|
72453
72893
|
} | {
|
|
72454
72894
|
/** ID of the action attempt. */
|
|
@@ -74797,6 +75237,16 @@ export type Routes = {
|
|
|
74797
75237
|
type: 'encoder_not_online';
|
|
74798
75238
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
74799
75239
|
message: string;
|
|
75240
|
+
} | {
|
|
75241
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
75242
|
+
type: 'encoder_timeout_error';
|
|
75243
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75244
|
+
message: string;
|
|
75245
|
+
} | {
|
|
75246
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
75247
|
+
type: 'bridge_disconnected';
|
|
75248
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75249
|
+
message: string;
|
|
74800
75250
|
};
|
|
74801
75251
|
} | {
|
|
74802
75252
|
/** ID of the action attempt. */
|
|
@@ -75116,6 +75566,16 @@ export type Routes = {
|
|
|
75116
75566
|
type: 'encoder_not_online';
|
|
75117
75567
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75118
75568
|
message: string;
|
|
75569
|
+
} | {
|
|
75570
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
75571
|
+
type: 'encoder_timeout_error';
|
|
75572
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75573
|
+
message: string;
|
|
75574
|
+
} | {
|
|
75575
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
75576
|
+
type: 'bridge_disconnected';
|
|
75577
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
75578
|
+
message: string;
|
|
75119
75579
|
};
|
|
75120
75580
|
} | {
|
|
75121
75581
|
/** ID of the action attempt. */
|
|
@@ -76117,6 +76577,16 @@ export type Routes = {
|
|
|
76117
76577
|
type: 'encoder_not_online';
|
|
76118
76578
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76119
76579
|
message: string;
|
|
76580
|
+
} | {
|
|
76581
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
76582
|
+
type: 'encoder_timeout_error';
|
|
76583
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76584
|
+
message: string;
|
|
76585
|
+
} | {
|
|
76586
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
76587
|
+
type: 'bridge_disconnected';
|
|
76588
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76589
|
+
message: string;
|
|
76120
76590
|
};
|
|
76121
76591
|
} | {
|
|
76122
76592
|
/** ID of the action attempt. */
|
|
@@ -76436,6 +76906,16 @@ export type Routes = {
|
|
|
76436
76906
|
type: 'encoder_not_online';
|
|
76437
76907
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76438
76908
|
message: string;
|
|
76909
|
+
} | {
|
|
76910
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
76911
|
+
type: 'encoder_timeout_error';
|
|
76912
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76913
|
+
message: string;
|
|
76914
|
+
} | {
|
|
76915
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
76916
|
+
type: 'bridge_disconnected';
|
|
76917
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
76918
|
+
message: string;
|
|
76439
76919
|
};
|
|
76440
76920
|
} | {
|
|
76441
76921
|
/** ID of the action attempt. */
|
|
@@ -80118,6 +80598,16 @@ export type Routes = {
|
|
|
80118
80598
|
type: 'encoder_not_online';
|
|
80119
80599
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80120
80600
|
message: string;
|
|
80601
|
+
} | {
|
|
80602
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
80603
|
+
type: 'encoder_timeout_error';
|
|
80604
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80605
|
+
message: string;
|
|
80606
|
+
} | {
|
|
80607
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
80608
|
+
type: 'bridge_disconnected';
|
|
80609
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80610
|
+
message: string;
|
|
80121
80611
|
};
|
|
80122
80612
|
} | {
|
|
80123
80613
|
/** ID of the action attempt. */
|
|
@@ -80437,6 +80927,16 @@ export type Routes = {
|
|
|
80437
80927
|
type: 'encoder_not_online';
|
|
80438
80928
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80439
80929
|
message: string;
|
|
80930
|
+
} | {
|
|
80931
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
80932
|
+
type: 'encoder_timeout_error';
|
|
80933
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80934
|
+
message: string;
|
|
80935
|
+
} | {
|
|
80936
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
80937
|
+
type: 'bridge_disconnected';
|
|
80938
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
80939
|
+
message: string;
|
|
80440
80940
|
};
|
|
80441
80941
|
} | {
|
|
80442
80942
|
/** ID of the action attempt. */
|
|
@@ -81633,6 +82133,16 @@ export type Routes = {
|
|
|
81633
82133
|
type: 'encoder_not_online';
|
|
81634
82134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81635
82135
|
message: string;
|
|
82136
|
+
} | {
|
|
82137
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
82138
|
+
type: 'encoder_timeout_error';
|
|
82139
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82140
|
+
message: string;
|
|
82141
|
+
} | {
|
|
82142
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
82143
|
+
type: 'bridge_disconnected';
|
|
82144
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82145
|
+
message: string;
|
|
81636
82146
|
};
|
|
81637
82147
|
} | {
|
|
81638
82148
|
/** ID of the action attempt. */
|
|
@@ -81952,6 +82462,16 @@ export type Routes = {
|
|
|
81952
82462
|
type: 'encoder_not_online';
|
|
81953
82463
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
81954
82464
|
message: string;
|
|
82465
|
+
} | {
|
|
82466
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
82467
|
+
type: 'encoder_timeout_error';
|
|
82468
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82469
|
+
message: string;
|
|
82470
|
+
} | {
|
|
82471
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
82472
|
+
type: 'bridge_disconnected';
|
|
82473
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82474
|
+
message: string;
|
|
81955
82475
|
};
|
|
81956
82476
|
} | {
|
|
81957
82477
|
/** ID of the action attempt. */
|
|
@@ -82976,6 +83496,16 @@ export type Routes = {
|
|
|
82976
83496
|
type: 'encoder_not_online';
|
|
82977
83497
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82978
83498
|
message: string;
|
|
83499
|
+
} | {
|
|
83500
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
83501
|
+
type: 'encoder_timeout_error';
|
|
83502
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83503
|
+
message: string;
|
|
83504
|
+
} | {
|
|
83505
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
83506
|
+
type: 'bridge_disconnected';
|
|
83507
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83508
|
+
message: string;
|
|
82979
83509
|
};
|
|
82980
83510
|
} | {
|
|
82981
83511
|
/** ID of the action attempt. */
|
|
@@ -83295,6 +83825,16 @@ export type Routes = {
|
|
|
83295
83825
|
type: 'encoder_not_online';
|
|
83296
83826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83297
83827
|
message: string;
|
|
83828
|
+
} | {
|
|
83829
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
83830
|
+
type: 'encoder_timeout_error';
|
|
83831
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83832
|
+
message: string;
|
|
83833
|
+
} | {
|
|
83834
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
83835
|
+
type: 'bridge_disconnected';
|
|
83836
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
83837
|
+
message: string;
|
|
83298
83838
|
};
|
|
83299
83839
|
} | {
|
|
83300
83840
|
/** ID of the action attempt. */
|
|
@@ -84431,6 +84971,16 @@ export type Routes = {
|
|
|
84431
84971
|
type: 'encoder_not_online';
|
|
84432
84972
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84433
84973
|
message: string;
|
|
84974
|
+
} | {
|
|
84975
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
84976
|
+
type: 'encoder_timeout_error';
|
|
84977
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84978
|
+
message: string;
|
|
84979
|
+
} | {
|
|
84980
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
84981
|
+
type: 'bridge_disconnected';
|
|
84982
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84983
|
+
message: string;
|
|
84434
84984
|
};
|
|
84435
84985
|
} | {
|
|
84436
84986
|
/** ID of the action attempt. */
|
|
@@ -84750,6 +85300,16 @@ export type Routes = {
|
|
|
84750
85300
|
type: 'encoder_not_online';
|
|
84751
85301
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84752
85302
|
message: string;
|
|
85303
|
+
} | {
|
|
85304
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
85305
|
+
type: 'encoder_timeout_error';
|
|
85306
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85307
|
+
message: string;
|
|
85308
|
+
} | {
|
|
85309
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
85310
|
+
type: 'bridge_disconnected';
|
|
85311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
85312
|
+
message: string;
|
|
84753
85313
|
};
|
|
84754
85314
|
} | {
|
|
84755
85315
|
/** ID of the action attempt. */
|
|
@@ -90915,10 +91475,10 @@ export type Routes = {
|
|
|
90915
91475
|
can_unlock_with_card?: boolean | undefined;
|
|
90916
91476
|
/** Indicates whether the ACS entrance can be unlocked with pin codes. */
|
|
90917
91477
|
can_unlock_with_code?: boolean | undefined;
|
|
91478
|
+
/** Indicates whether the ACS entrance can be unlocked with cloud key credentials. */
|
|
91479
|
+
can_unlock_with_cloud_key?: boolean | undefined;
|
|
90918
91480
|
/** Indicates whether the ACS entrance can belong to a reservation via an access_grant.reservation_key. */
|
|
90919
91481
|
can_belong_to_reservation?: boolean | undefined;
|
|
90920
|
-
/** Indicates whether the ACS entrance can be remotely unlocked using a cloud_key credential. */
|
|
90921
|
-
can_unlock_with_cloud_key?: boolean | undefined;
|
|
90922
91482
|
}[] | undefined;
|
|
90923
91483
|
acs_systems?: {
|
|
90924
91484
|
/** ID of the default credential manager `acs_system` for this [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
|
|
@@ -91884,6 +92444,16 @@ export type Routes = {
|
|
|
91884
92444
|
type: 'encoder_not_online';
|
|
91885
92445
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
91886
92446
|
message: string;
|
|
92447
|
+
} | {
|
|
92448
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
92449
|
+
type: 'encoder_timeout_error';
|
|
92450
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92451
|
+
message: string;
|
|
92452
|
+
} | {
|
|
92453
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
92454
|
+
type: 'bridge_disconnected';
|
|
92455
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92456
|
+
message: string;
|
|
91887
92457
|
};
|
|
91888
92458
|
} | {
|
|
91889
92459
|
/** ID of the action attempt. */
|
|
@@ -92203,6 +92773,16 @@ export type Routes = {
|
|
|
92203
92773
|
type: 'encoder_not_online';
|
|
92204
92774
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92205
92775
|
message: string;
|
|
92776
|
+
} | {
|
|
92777
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
92778
|
+
type: 'encoder_timeout_error';
|
|
92779
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92780
|
+
message: string;
|
|
92781
|
+
} | {
|
|
92782
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
92783
|
+
type: 'bridge_disconnected';
|
|
92784
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
92785
|
+
message: string;
|
|
92206
92786
|
};
|
|
92207
92787
|
} | {
|
|
92208
92788
|
/** ID of the action attempt. */
|
|
@@ -93665,8 +94245,8 @@ export type Routes = {
|
|
|
93665
94245
|
access_method_id: string;
|
|
93666
94246
|
/** Display name of the access method. */
|
|
93667
94247
|
display_name: string;
|
|
93668
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
93669
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
94248
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
94249
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93670
94250
|
/** Date and time at which the access method was created. */
|
|
93671
94251
|
created_at: string;
|
|
93672
94252
|
/** Date and time at which the access method was issued. */
|
|
@@ -93788,8 +94368,8 @@ export type Routes = {
|
|
|
93788
94368
|
requested_access_methods: {
|
|
93789
94369
|
/** Display name of the access method. */
|
|
93790
94370
|
display_name: string;
|
|
93791
|
-
/** Access method mode. Supported values: `code`, `card`, `mobile_key`. */
|
|
93792
|
-
mode: 'code' | 'card' | 'mobile_key';
|
|
94371
|
+
/** Access method mode. Supported values: `code`, `card`, `mobile_key`, `cloud_key`. */
|
|
94372
|
+
mode: 'code' | 'card' | 'mobile_key' | 'cloud_key';
|
|
93793
94373
|
/** Specific PIN code to use for this access method. Only applicable when mode is 'code'. */
|
|
93794
94374
|
code?: string | undefined;
|
|
93795
94375
|
/** Maximum number of times the instant key can be used. Only applicable when mode is 'mobile_key'. Defaults to 1 if not specified. */
|
|
@@ -98725,6 +99305,16 @@ export type Routes = {
|
|
|
98725
99305
|
type: 'encoder_not_online';
|
|
98726
99306
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
98727
99307
|
message: string;
|
|
99308
|
+
} | {
|
|
99309
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
99310
|
+
type: 'encoder_timeout_error';
|
|
99311
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99312
|
+
message: string;
|
|
99313
|
+
} | {
|
|
99314
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
99315
|
+
type: 'bridge_disconnected';
|
|
99316
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99317
|
+
message: string;
|
|
98728
99318
|
};
|
|
98729
99319
|
} | {
|
|
98730
99320
|
/** ID of the action attempt. */
|
|
@@ -99044,6 +99634,16 @@ export type Routes = {
|
|
|
99044
99634
|
type: 'encoder_not_online';
|
|
99045
99635
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99046
99636
|
message: string;
|
|
99637
|
+
} | {
|
|
99638
|
+
/** Error type to indicate that communication with the encoder timed out. */
|
|
99639
|
+
type: 'encoder_timeout_error';
|
|
99640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99641
|
+
message: string;
|
|
99642
|
+
} | {
|
|
99643
|
+
/** Error type to indicate that the Seam Bridge is disconnected or cannot reach the access control system. */
|
|
99644
|
+
type: 'bridge_disconnected';
|
|
99645
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
99646
|
+
message: string;
|
|
99047
99647
|
};
|
|
99048
99648
|
} | {
|
|
99049
99649
|
/** ID of the action attempt. */
|