@seamapi/types 1.283.0 → 1.285.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 +104 -14
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +430 -82
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +37 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -1
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +2 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.d.ts +21 -0
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.js +9 -0
- package/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/latch.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +62 -2
- package/lib/seam/connect/models/action-attempts/common.d.ts +19 -0
- package/lib/seam/connect/models/action-attempts/common.js +10 -0
- package/lib/seam/connect/models/action-attempts/common.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-card.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-card.js +2 -1
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +32 -2
- package/lib/seam/connect/models/action-attempts/scan-card.js +6 -2
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +38 -60
- package/lib/seam/connect/openapi.js +70 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +285 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +2 -0
- package/src/lib/seam/connect/models/acs/metadata/assa_abloy_vostio.ts +13 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/action-attempts/common.ts +11 -0
- package/src/lib/seam/connect/models/action-attempts/encode-card.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/scan-card.ts +7 -1
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +70 -6
- package/src/lib/seam/connect/route-types.ts +505 -80
|
@@ -242,6 +242,12 @@ export interface Routes {
|
|
|
242
242
|
result: null;
|
|
243
243
|
action_type: 'SCAN_CARD';
|
|
244
244
|
error: {
|
|
245
|
+
type: 'uncategorized_error';
|
|
246
|
+
message: string;
|
|
247
|
+
} | {
|
|
248
|
+
type: 'action_attempt_expired';
|
|
249
|
+
message: string;
|
|
250
|
+
} | {
|
|
245
251
|
type: 'no_card_on_encoder';
|
|
246
252
|
message: string;
|
|
247
253
|
};
|
|
@@ -383,6 +389,12 @@ export interface Routes {
|
|
|
383
389
|
result: null;
|
|
384
390
|
action_type: 'ENCODE_CARD';
|
|
385
391
|
error: {
|
|
392
|
+
type: 'uncategorized_error';
|
|
393
|
+
message: string;
|
|
394
|
+
} | {
|
|
395
|
+
type: 'action_attempt_expired';
|
|
396
|
+
message: string;
|
|
397
|
+
} | {
|
|
386
398
|
type: 'no_card_on_encoder';
|
|
387
399
|
message: string;
|
|
388
400
|
} | {
|
|
@@ -1114,6 +1126,12 @@ export interface Routes {
|
|
|
1114
1126
|
result: null;
|
|
1115
1127
|
action_type: 'SCAN_CARD';
|
|
1116
1128
|
error: {
|
|
1129
|
+
type: 'uncategorized_error';
|
|
1130
|
+
message: string;
|
|
1131
|
+
} | {
|
|
1132
|
+
type: 'action_attempt_expired';
|
|
1133
|
+
message: string;
|
|
1134
|
+
} | {
|
|
1117
1135
|
type: 'no_card_on_encoder';
|
|
1118
1136
|
message: string;
|
|
1119
1137
|
};
|
|
@@ -1255,6 +1273,12 @@ export interface Routes {
|
|
|
1255
1273
|
result: null;
|
|
1256
1274
|
action_type: 'ENCODE_CARD';
|
|
1257
1275
|
error: {
|
|
1276
|
+
type: 'uncategorized_error';
|
|
1277
|
+
message: string;
|
|
1278
|
+
} | {
|
|
1279
|
+
type: 'action_attempt_expired';
|
|
1280
|
+
message: string;
|
|
1281
|
+
} | {
|
|
1258
1282
|
type: 'no_card_on_encoder';
|
|
1259
1283
|
message: string;
|
|
1260
1284
|
} | {
|
|
@@ -2143,6 +2167,12 @@ export interface Routes {
|
|
|
2143
2167
|
result: null;
|
|
2144
2168
|
action_type: 'SCAN_CARD';
|
|
2145
2169
|
error: {
|
|
2170
|
+
type: 'uncategorized_error';
|
|
2171
|
+
message: string;
|
|
2172
|
+
} | {
|
|
2173
|
+
type: 'action_attempt_expired';
|
|
2174
|
+
message: string;
|
|
2175
|
+
} | {
|
|
2146
2176
|
type: 'no_card_on_encoder';
|
|
2147
2177
|
message: string;
|
|
2148
2178
|
};
|
|
@@ -2284,6 +2314,12 @@ export interface Routes {
|
|
|
2284
2314
|
result: null;
|
|
2285
2315
|
action_type: 'ENCODE_CARD';
|
|
2286
2316
|
error: {
|
|
2317
|
+
type: 'uncategorized_error';
|
|
2318
|
+
message: string;
|
|
2319
|
+
} | {
|
|
2320
|
+
type: 'action_attempt_expired';
|
|
2321
|
+
message: string;
|
|
2322
|
+
} | {
|
|
2287
2323
|
type: 'no_card_on_encoder';
|
|
2288
2324
|
message: string;
|
|
2289
2325
|
} | {
|
|
@@ -3002,6 +3038,12 @@ export interface Routes {
|
|
|
3002
3038
|
result: null;
|
|
3003
3039
|
action_type: 'SCAN_CARD';
|
|
3004
3040
|
error: {
|
|
3041
|
+
type: 'uncategorized_error';
|
|
3042
|
+
message: string;
|
|
3043
|
+
} | {
|
|
3044
|
+
type: 'action_attempt_expired';
|
|
3045
|
+
message: string;
|
|
3046
|
+
} | {
|
|
3005
3047
|
type: 'no_card_on_encoder';
|
|
3006
3048
|
message: string;
|
|
3007
3049
|
};
|
|
@@ -3143,6 +3185,12 @@ export interface Routes {
|
|
|
3143
3185
|
result: null;
|
|
3144
3186
|
action_type: 'ENCODE_CARD';
|
|
3145
3187
|
error: {
|
|
3188
|
+
type: 'uncategorized_error';
|
|
3189
|
+
message: string;
|
|
3190
|
+
} | {
|
|
3191
|
+
type: 'action_attempt_expired';
|
|
3192
|
+
message: string;
|
|
3193
|
+
} | {
|
|
3146
3194
|
type: 'no_card_on_encoder';
|
|
3147
3195
|
message: string;
|
|
3148
3196
|
} | {
|
|
@@ -3660,6 +3708,13 @@ export interface Routes {
|
|
|
3660
3708
|
dormakaba_community_metadata?: {
|
|
3661
3709
|
access_point_name: string;
|
|
3662
3710
|
} | undefined;
|
|
3711
|
+
assa_abloy_vostio_metadata?: {
|
|
3712
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
3713
|
+
door_name: string;
|
|
3714
|
+
door_number?: number | undefined;
|
|
3715
|
+
stand_open?: boolean | undefined;
|
|
3716
|
+
pms_id?: string | undefined;
|
|
3717
|
+
} | undefined;
|
|
3663
3718
|
}>;
|
|
3664
3719
|
};
|
|
3665
3720
|
};
|
|
@@ -4300,6 +4355,13 @@ export interface Routes {
|
|
|
4300
4355
|
dormakaba_community_metadata?: {
|
|
4301
4356
|
access_point_name: string;
|
|
4302
4357
|
} | undefined;
|
|
4358
|
+
assa_abloy_vostio_metadata?: {
|
|
4359
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
4360
|
+
door_name: string;
|
|
4361
|
+
door_number?: number | undefined;
|
|
4362
|
+
stand_open?: boolean | undefined;
|
|
4363
|
+
pms_id?: string | undefined;
|
|
4364
|
+
} | undefined;
|
|
4303
4365
|
}>;
|
|
4304
4366
|
};
|
|
4305
4367
|
};
|
|
@@ -4841,6 +4903,12 @@ export interface Routes {
|
|
|
4841
4903
|
result: null;
|
|
4842
4904
|
action_type: 'SCAN_CARD';
|
|
4843
4905
|
error: {
|
|
4906
|
+
type: 'uncategorized_error';
|
|
4907
|
+
message: string;
|
|
4908
|
+
} | {
|
|
4909
|
+
type: 'action_attempt_expired';
|
|
4910
|
+
message: string;
|
|
4911
|
+
} | {
|
|
4844
4912
|
type: 'no_card_on_encoder';
|
|
4845
4913
|
message: string;
|
|
4846
4914
|
};
|
|
@@ -4982,6 +5050,12 @@ export interface Routes {
|
|
|
4982
5050
|
result: null;
|
|
4983
5051
|
action_type: 'ENCODE_CARD';
|
|
4984
5052
|
error: {
|
|
5053
|
+
type: 'uncategorized_error';
|
|
5054
|
+
message: string;
|
|
5055
|
+
} | {
|
|
5056
|
+
type: 'action_attempt_expired';
|
|
5057
|
+
message: string;
|
|
5058
|
+
} | {
|
|
4985
5059
|
type: 'no_card_on_encoder';
|
|
4986
5060
|
message: string;
|
|
4987
5061
|
} | {
|
|
@@ -6042,6 +6116,12 @@ export interface Routes {
|
|
|
6042
6116
|
result: null;
|
|
6043
6117
|
action_type: 'SCAN_CARD';
|
|
6044
6118
|
error: {
|
|
6119
|
+
type: 'uncategorized_error';
|
|
6120
|
+
message: string;
|
|
6121
|
+
} | {
|
|
6122
|
+
type: 'action_attempt_expired';
|
|
6123
|
+
message: string;
|
|
6124
|
+
} | {
|
|
6045
6125
|
type: 'no_card_on_encoder';
|
|
6046
6126
|
message: string;
|
|
6047
6127
|
};
|
|
@@ -6183,6 +6263,12 @@ export interface Routes {
|
|
|
6183
6263
|
result: null;
|
|
6184
6264
|
action_type: 'ENCODE_CARD';
|
|
6185
6265
|
error: {
|
|
6266
|
+
type: 'uncategorized_error';
|
|
6267
|
+
message: string;
|
|
6268
|
+
} | {
|
|
6269
|
+
type: 'action_attempt_expired';
|
|
6270
|
+
message: string;
|
|
6271
|
+
} | {
|
|
6186
6272
|
type: 'no_card_on_encoder';
|
|
6187
6273
|
message: string;
|
|
6188
6274
|
} | {
|
|
@@ -6586,6 +6672,13 @@ export interface Routes {
|
|
|
6586
6672
|
dormakaba_community_metadata?: {
|
|
6587
6673
|
access_point_name: string;
|
|
6588
6674
|
} | undefined;
|
|
6675
|
+
assa_abloy_vostio_metadata?: {
|
|
6676
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
6677
|
+
door_name: string;
|
|
6678
|
+
door_number?: number | undefined;
|
|
6679
|
+
stand_open?: boolean | undefined;
|
|
6680
|
+
pms_id?: string | undefined;
|
|
6681
|
+
} | undefined;
|
|
6589
6682
|
};
|
|
6590
6683
|
};
|
|
6591
6684
|
};
|
|
@@ -6652,6 +6745,13 @@ export interface Routes {
|
|
|
6652
6745
|
dormakaba_community_metadata?: {
|
|
6653
6746
|
access_point_name: string;
|
|
6654
6747
|
} | undefined;
|
|
6748
|
+
assa_abloy_vostio_metadata?: {
|
|
6749
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
6750
|
+
door_name: string;
|
|
6751
|
+
door_number?: number | undefined;
|
|
6752
|
+
stand_open?: boolean | undefined;
|
|
6753
|
+
pms_id?: string | undefined;
|
|
6754
|
+
} | undefined;
|
|
6655
6755
|
}>;
|
|
6656
6756
|
};
|
|
6657
6757
|
};
|
|
@@ -6744,7 +6844,7 @@ export interface Routes {
|
|
|
6744
6844
|
/** ID of the `acs_system`. */
|
|
6745
6845
|
acs_system_id: string;
|
|
6746
6846
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6747
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
6847
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6748
6848
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6749
6849
|
external_type_display_name?: string | undefined;
|
|
6750
6850
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6759,7 +6859,7 @@ export interface Routes {
|
|
|
6759
6859
|
} | undefined;
|
|
6760
6860
|
/**
|
|
6761
6861
|
* @deprecated Use `external_type`. */
|
|
6762
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
6862
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6763
6863
|
/**
|
|
6764
6864
|
* @deprecated Use `external_type_display_name`. */
|
|
6765
6865
|
system_type_display_name?: string | undefined;
|
|
@@ -6849,7 +6949,7 @@ export interface Routes {
|
|
|
6849
6949
|
/** ID of the `acs_system`. */
|
|
6850
6950
|
acs_system_id: string;
|
|
6851
6951
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6852
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
6952
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6853
6953
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6854
6954
|
external_type_display_name?: string | undefined;
|
|
6855
6955
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6864,7 +6964,7 @@ export interface Routes {
|
|
|
6864
6964
|
} | undefined;
|
|
6865
6965
|
/**
|
|
6866
6966
|
* @deprecated Use `external_type`. */
|
|
6867
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
6967
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6868
6968
|
/**
|
|
6869
6969
|
* @deprecated Use `external_type_display_name`. */
|
|
6870
6970
|
system_type_display_name?: string | undefined;
|
|
@@ -6954,7 +7054,7 @@ export interface Routes {
|
|
|
6954
7054
|
/** ID of the `acs_system`. */
|
|
6955
7055
|
acs_system_id: string;
|
|
6956
7056
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6957
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
7057
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6958
7058
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6959
7059
|
external_type_display_name?: string | undefined;
|
|
6960
7060
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6969,7 +7069,7 @@ export interface Routes {
|
|
|
6969
7069
|
} | undefined;
|
|
6970
7070
|
/**
|
|
6971
7071
|
* @deprecated Use `external_type`. */
|
|
6972
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
7072
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
6973
7073
|
/**
|
|
6974
7074
|
* @deprecated Use `external_type_display_name`. */
|
|
6975
7075
|
system_type_display_name?: string | undefined;
|
|
@@ -7448,6 +7548,13 @@ export interface Routes {
|
|
|
7448
7548
|
dormakaba_community_metadata?: {
|
|
7449
7549
|
access_point_name: string;
|
|
7450
7550
|
} | undefined;
|
|
7551
|
+
assa_abloy_vostio_metadata?: {
|
|
7552
|
+
door_type: 'CommonDoor' | 'EntranceDoor' | 'GuestDoor' | 'Elevator';
|
|
7553
|
+
door_name: string;
|
|
7554
|
+
door_number?: number | undefined;
|
|
7555
|
+
stand_open?: boolean | undefined;
|
|
7556
|
+
pms_id?: string | undefined;
|
|
7557
|
+
} | undefined;
|
|
7451
7558
|
}>;
|
|
7452
7559
|
};
|
|
7453
7560
|
};
|
|
@@ -7959,6 +8066,12 @@ export interface Routes {
|
|
|
7959
8066
|
result: null;
|
|
7960
8067
|
action_type: 'SCAN_CARD';
|
|
7961
8068
|
error: {
|
|
8069
|
+
type: 'uncategorized_error';
|
|
8070
|
+
message: string;
|
|
8071
|
+
} | {
|
|
8072
|
+
type: 'action_attempt_expired';
|
|
8073
|
+
message: string;
|
|
8074
|
+
} | {
|
|
7962
8075
|
type: 'no_card_on_encoder';
|
|
7963
8076
|
message: string;
|
|
7964
8077
|
};
|
|
@@ -8100,6 +8213,12 @@ export interface Routes {
|
|
|
8100
8213
|
result: null;
|
|
8101
8214
|
action_type: 'ENCODE_CARD';
|
|
8102
8215
|
error: {
|
|
8216
|
+
type: 'uncategorized_error';
|
|
8217
|
+
message: string;
|
|
8218
|
+
} | {
|
|
8219
|
+
type: 'action_attempt_expired';
|
|
8220
|
+
message: string;
|
|
8221
|
+
} | {
|
|
8103
8222
|
type: 'no_card_on_encoder';
|
|
8104
8223
|
message: string;
|
|
8105
8224
|
} | {
|
|
@@ -8680,6 +8799,12 @@ export interface Routes {
|
|
|
8680
8799
|
result: null;
|
|
8681
8800
|
action_type: 'SCAN_CARD';
|
|
8682
8801
|
error: {
|
|
8802
|
+
type: 'uncategorized_error';
|
|
8803
|
+
message: string;
|
|
8804
|
+
} | {
|
|
8805
|
+
type: 'action_attempt_expired';
|
|
8806
|
+
message: string;
|
|
8807
|
+
} | {
|
|
8683
8808
|
type: 'no_card_on_encoder';
|
|
8684
8809
|
message: string;
|
|
8685
8810
|
};
|
|
@@ -8821,6 +8946,12 @@ export interface Routes {
|
|
|
8821
8946
|
result: null;
|
|
8822
8947
|
action_type: 'ENCODE_CARD';
|
|
8823
8948
|
error: {
|
|
8949
|
+
type: 'uncategorized_error';
|
|
8950
|
+
message: string;
|
|
8951
|
+
} | {
|
|
8952
|
+
type: 'action_attempt_expired';
|
|
8953
|
+
message: string;
|
|
8954
|
+
} | {
|
|
8824
8955
|
type: 'no_card_on_encoder';
|
|
8825
8956
|
message: string;
|
|
8826
8957
|
} | {
|
|
@@ -9336,7 +9467,7 @@ export interface Routes {
|
|
|
9336
9467
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
9337
9468
|
custom_redirect_url?: string | undefined;
|
|
9338
9469
|
custom_redirect_failure_url?: string | undefined;
|
|
9339
|
-
accepted_providers?: Array<'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
9470
|
+
accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'vostio_credential_service' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
9340
9471
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
9341
9472
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
9342
9473
|
automatically_manage_new_devices?: boolean;
|
|
@@ -10566,7 +10697,7 @@ export interface Routes {
|
|
|
10566
10697
|
formData: {};
|
|
10567
10698
|
jsonResponse: {
|
|
10568
10699
|
device_providers: Array<{
|
|
10569
|
-
device_provider_name: 'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio';
|
|
10700
|
+
device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'vostio_credential_service';
|
|
10570
10701
|
display_name: string;
|
|
10571
10702
|
image_url: string;
|
|
10572
10703
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -13072,6 +13203,12 @@ export interface Routes {
|
|
|
13072
13203
|
result: null;
|
|
13073
13204
|
action_type: 'SCAN_CARD';
|
|
13074
13205
|
error: {
|
|
13206
|
+
type: 'uncategorized_error';
|
|
13207
|
+
message: string;
|
|
13208
|
+
} | {
|
|
13209
|
+
type: 'action_attempt_expired';
|
|
13210
|
+
message: string;
|
|
13211
|
+
} | {
|
|
13075
13212
|
type: 'no_card_on_encoder';
|
|
13076
13213
|
message: string;
|
|
13077
13214
|
};
|
|
@@ -13213,6 +13350,12 @@ export interface Routes {
|
|
|
13213
13350
|
result: null;
|
|
13214
13351
|
action_type: 'ENCODE_CARD';
|
|
13215
13352
|
error: {
|
|
13353
|
+
type: 'uncategorized_error';
|
|
13354
|
+
message: string;
|
|
13355
|
+
} | {
|
|
13356
|
+
type: 'action_attempt_expired';
|
|
13357
|
+
message: string;
|
|
13358
|
+
} | {
|
|
13216
13359
|
type: 'no_card_on_encoder';
|
|
13217
13360
|
message: string;
|
|
13218
13361
|
} | {
|
|
@@ -13794,6 +13937,12 @@ export interface Routes {
|
|
|
13794
13937
|
result: null;
|
|
13795
13938
|
action_type: 'SCAN_CARD';
|
|
13796
13939
|
error: {
|
|
13940
|
+
type: 'uncategorized_error';
|
|
13941
|
+
message: string;
|
|
13942
|
+
} | {
|
|
13943
|
+
type: 'action_attempt_expired';
|
|
13944
|
+
message: string;
|
|
13945
|
+
} | {
|
|
13797
13946
|
type: 'no_card_on_encoder';
|
|
13798
13947
|
message: string;
|
|
13799
13948
|
};
|
|
@@ -13935,6 +14084,12 @@ export interface Routes {
|
|
|
13935
14084
|
result: null;
|
|
13936
14085
|
action_type: 'ENCODE_CARD';
|
|
13937
14086
|
error: {
|
|
14087
|
+
type: 'uncategorized_error';
|
|
14088
|
+
message: string;
|
|
14089
|
+
} | {
|
|
14090
|
+
type: 'action_attempt_expired';
|
|
14091
|
+
message: string;
|
|
14092
|
+
} | {
|
|
13938
14093
|
type: 'no_card_on_encoder';
|
|
13939
14094
|
message: string;
|
|
13940
14095
|
} | {
|
|
@@ -15498,6 +15653,12 @@ export interface Routes {
|
|
|
15498
15653
|
result: null;
|
|
15499
15654
|
action_type: 'SCAN_CARD';
|
|
15500
15655
|
error: {
|
|
15656
|
+
type: 'uncategorized_error';
|
|
15657
|
+
message: string;
|
|
15658
|
+
} | {
|
|
15659
|
+
type: 'action_attempt_expired';
|
|
15660
|
+
message: string;
|
|
15661
|
+
} | {
|
|
15501
15662
|
type: 'no_card_on_encoder';
|
|
15502
15663
|
message: string;
|
|
15503
15664
|
};
|
|
@@ -15639,6 +15800,12 @@ export interface Routes {
|
|
|
15639
15800
|
result: null;
|
|
15640
15801
|
action_type: 'ENCODE_CARD';
|
|
15641
15802
|
error: {
|
|
15803
|
+
type: 'uncategorized_error';
|
|
15804
|
+
message: string;
|
|
15805
|
+
} | {
|
|
15806
|
+
type: 'action_attempt_expired';
|
|
15807
|
+
message: string;
|
|
15808
|
+
} | {
|
|
15642
15809
|
type: 'no_card_on_encoder';
|
|
15643
15810
|
message: string;
|
|
15644
15811
|
} | {
|
|
@@ -16230,6 +16397,12 @@ export interface Routes {
|
|
|
16230
16397
|
result: null;
|
|
16231
16398
|
action_type: 'SCAN_CARD';
|
|
16232
16399
|
error: {
|
|
16400
|
+
type: 'uncategorized_error';
|
|
16401
|
+
message: string;
|
|
16402
|
+
} | {
|
|
16403
|
+
type: 'action_attempt_expired';
|
|
16404
|
+
message: string;
|
|
16405
|
+
} | {
|
|
16233
16406
|
type: 'no_card_on_encoder';
|
|
16234
16407
|
message: string;
|
|
16235
16408
|
};
|
|
@@ -16371,6 +16544,12 @@ export interface Routes {
|
|
|
16371
16544
|
result: null;
|
|
16372
16545
|
action_type: 'ENCODE_CARD';
|
|
16373
16546
|
error: {
|
|
16547
|
+
type: 'uncategorized_error';
|
|
16548
|
+
message: string;
|
|
16549
|
+
} | {
|
|
16550
|
+
type: 'action_attempt_expired';
|
|
16551
|
+
message: string;
|
|
16552
|
+
} | {
|
|
16374
16553
|
type: 'no_card_on_encoder';
|
|
16375
16554
|
message: string;
|
|
16376
16555
|
} | {
|
|
@@ -17001,6 +17180,12 @@ export interface Routes {
|
|
|
17001
17180
|
result: null;
|
|
17002
17181
|
action_type: 'SCAN_CARD';
|
|
17003
17182
|
error: {
|
|
17183
|
+
type: 'uncategorized_error';
|
|
17184
|
+
message: string;
|
|
17185
|
+
} | {
|
|
17186
|
+
type: 'action_attempt_expired';
|
|
17187
|
+
message: string;
|
|
17188
|
+
} | {
|
|
17004
17189
|
type: 'no_card_on_encoder';
|
|
17005
17190
|
message: string;
|
|
17006
17191
|
};
|
|
@@ -17142,6 +17327,12 @@ export interface Routes {
|
|
|
17142
17327
|
result: null;
|
|
17143
17328
|
action_type: 'ENCODE_CARD';
|
|
17144
17329
|
error: {
|
|
17330
|
+
type: 'uncategorized_error';
|
|
17331
|
+
message: string;
|
|
17332
|
+
} | {
|
|
17333
|
+
type: 'action_attempt_expired';
|
|
17334
|
+
message: string;
|
|
17335
|
+
} | {
|
|
17145
17336
|
type: 'no_card_on_encoder';
|
|
17146
17337
|
message: string;
|
|
17147
17338
|
} | {
|
|
@@ -17905,6 +18096,12 @@ export interface Routes {
|
|
|
17905
18096
|
result: null;
|
|
17906
18097
|
action_type: 'SCAN_CARD';
|
|
17907
18098
|
error: {
|
|
18099
|
+
type: 'uncategorized_error';
|
|
18100
|
+
message: string;
|
|
18101
|
+
} | {
|
|
18102
|
+
type: 'action_attempt_expired';
|
|
18103
|
+
message: string;
|
|
18104
|
+
} | {
|
|
17908
18105
|
type: 'no_card_on_encoder';
|
|
17909
18106
|
message: string;
|
|
17910
18107
|
};
|
|
@@ -18046,6 +18243,12 @@ export interface Routes {
|
|
|
18046
18243
|
result: null;
|
|
18047
18244
|
action_type: 'ENCODE_CARD';
|
|
18048
18245
|
error: {
|
|
18246
|
+
type: 'uncategorized_error';
|
|
18247
|
+
message: string;
|
|
18248
|
+
} | {
|
|
18249
|
+
type: 'action_attempt_expired';
|
|
18250
|
+
message: string;
|
|
18251
|
+
} | {
|
|
18049
18252
|
type: 'no_card_on_encoder';
|
|
18050
18253
|
message: string;
|
|
18051
18254
|
} | {
|
|
@@ -18629,6 +18832,12 @@ export interface Routes {
|
|
|
18629
18832
|
result: null;
|
|
18630
18833
|
action_type: 'SCAN_CARD';
|
|
18631
18834
|
error: {
|
|
18835
|
+
type: 'uncategorized_error';
|
|
18836
|
+
message: string;
|
|
18837
|
+
} | {
|
|
18838
|
+
type: 'action_attempt_expired';
|
|
18839
|
+
message: string;
|
|
18840
|
+
} | {
|
|
18632
18841
|
type: 'no_card_on_encoder';
|
|
18633
18842
|
message: string;
|
|
18634
18843
|
};
|
|
@@ -18770,6 +18979,12 @@ export interface Routes {
|
|
|
18770
18979
|
result: null;
|
|
18771
18980
|
action_type: 'ENCODE_CARD';
|
|
18772
18981
|
error: {
|
|
18982
|
+
type: 'uncategorized_error';
|
|
18983
|
+
message: string;
|
|
18984
|
+
} | {
|
|
18985
|
+
type: 'action_attempt_expired';
|
|
18986
|
+
message: string;
|
|
18987
|
+
} | {
|
|
18773
18988
|
type: 'no_card_on_encoder';
|
|
18774
18989
|
message: string;
|
|
18775
18990
|
} | {
|
|
@@ -19857,6 +20072,12 @@ export interface Routes {
|
|
|
19857
20072
|
result: null;
|
|
19858
20073
|
action_type: 'SCAN_CARD';
|
|
19859
20074
|
error: {
|
|
20075
|
+
type: 'uncategorized_error';
|
|
20076
|
+
message: string;
|
|
20077
|
+
} | {
|
|
20078
|
+
type: 'action_attempt_expired';
|
|
20079
|
+
message: string;
|
|
20080
|
+
} | {
|
|
19860
20081
|
type: 'no_card_on_encoder';
|
|
19861
20082
|
message: string;
|
|
19862
20083
|
};
|
|
@@ -19998,6 +20219,12 @@ export interface Routes {
|
|
|
19998
20219
|
result: null;
|
|
19999
20220
|
action_type: 'ENCODE_CARD';
|
|
20000
20221
|
error: {
|
|
20222
|
+
type: 'uncategorized_error';
|
|
20223
|
+
message: string;
|
|
20224
|
+
} | {
|
|
20225
|
+
type: 'action_attempt_expired';
|
|
20226
|
+
message: string;
|
|
20227
|
+
} | {
|
|
20001
20228
|
type: 'no_card_on_encoder';
|
|
20002
20229
|
message: string;
|
|
20003
20230
|
} | {
|
|
@@ -20583,6 +20810,12 @@ export interface Routes {
|
|
|
20583
20810
|
result: null;
|
|
20584
20811
|
action_type: 'SCAN_CARD';
|
|
20585
20812
|
error: {
|
|
20813
|
+
type: 'uncategorized_error';
|
|
20814
|
+
message: string;
|
|
20815
|
+
} | {
|
|
20816
|
+
type: 'action_attempt_expired';
|
|
20817
|
+
message: string;
|
|
20818
|
+
} | {
|
|
20586
20819
|
type: 'no_card_on_encoder';
|
|
20587
20820
|
message: string;
|
|
20588
20821
|
};
|
|
@@ -20724,6 +20957,12 @@ export interface Routes {
|
|
|
20724
20957
|
result: null;
|
|
20725
20958
|
action_type: 'ENCODE_CARD';
|
|
20726
20959
|
error: {
|
|
20960
|
+
type: 'uncategorized_error';
|
|
20961
|
+
message: string;
|
|
20962
|
+
} | {
|
|
20963
|
+
type: 'action_attempt_expired';
|
|
20964
|
+
message: string;
|
|
20965
|
+
} | {
|
|
20727
20966
|
type: 'no_card_on_encoder';
|
|
20728
20967
|
message: string;
|
|
20729
20968
|
} | {
|
|
@@ -22248,6 +22487,12 @@ export interface Routes {
|
|
|
22248
22487
|
result: null;
|
|
22249
22488
|
action_type: 'SCAN_CARD';
|
|
22250
22489
|
error: {
|
|
22490
|
+
type: 'uncategorized_error';
|
|
22491
|
+
message: string;
|
|
22492
|
+
} | {
|
|
22493
|
+
type: 'action_attempt_expired';
|
|
22494
|
+
message: string;
|
|
22495
|
+
} | {
|
|
22251
22496
|
type: 'no_card_on_encoder';
|
|
22252
22497
|
message: string;
|
|
22253
22498
|
};
|
|
@@ -22389,6 +22634,12 @@ export interface Routes {
|
|
|
22389
22634
|
result: null;
|
|
22390
22635
|
action_type: 'ENCODE_CARD';
|
|
22391
22636
|
error: {
|
|
22637
|
+
type: 'uncategorized_error';
|
|
22638
|
+
message: string;
|
|
22639
|
+
} | {
|
|
22640
|
+
type: 'action_attempt_expired';
|
|
22641
|
+
message: string;
|
|
22642
|
+
} | {
|
|
22392
22643
|
type: 'no_card_on_encoder';
|
|
22393
22644
|
message: string;
|
|
22394
22645
|
} | {
|
|
@@ -23091,6 +23342,12 @@ export interface Routes {
|
|
|
23091
23342
|
result: null;
|
|
23092
23343
|
action_type: 'SCAN_CARD';
|
|
23093
23344
|
error: {
|
|
23345
|
+
type: 'uncategorized_error';
|
|
23346
|
+
message: string;
|
|
23347
|
+
} | {
|
|
23348
|
+
type: 'action_attempt_expired';
|
|
23349
|
+
message: string;
|
|
23350
|
+
} | {
|
|
23094
23351
|
type: 'no_card_on_encoder';
|
|
23095
23352
|
message: string;
|
|
23096
23353
|
};
|
|
@@ -23232,6 +23489,12 @@ export interface Routes {
|
|
|
23232
23489
|
result: null;
|
|
23233
23490
|
action_type: 'ENCODE_CARD';
|
|
23234
23491
|
error: {
|
|
23492
|
+
type: 'uncategorized_error';
|
|
23493
|
+
message: string;
|
|
23494
|
+
} | {
|
|
23495
|
+
type: 'action_attempt_expired';
|
|
23496
|
+
message: string;
|
|
23497
|
+
} | {
|
|
23235
23498
|
type: 'no_card_on_encoder';
|
|
23236
23499
|
message: string;
|
|
23237
23500
|
} | {
|
|
@@ -24747,7 +25010,7 @@ export interface Routes {
|
|
|
24747
25010
|
/** ID of the `acs_system`. */
|
|
24748
25011
|
acs_system_id: string;
|
|
24749
25012
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
24750
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
25013
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
24751
25014
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
24752
25015
|
external_type_display_name?: string | undefined;
|
|
24753
25016
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -24762,7 +25025,7 @@ export interface Routes {
|
|
|
24762
25025
|
} | undefined;
|
|
24763
25026
|
/**
|
|
24764
25027
|
* @deprecated Use `external_type`. */
|
|
24765
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'assa_abloy_vostio') | undefined;
|
|
25028
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community' | 'legic_connect' | 'assa_abloy_vostio' | 'vostio_credential_service') | undefined;
|
|
24766
25029
|
/**
|
|
24767
25030
|
* @deprecated Use `external_type_display_name`. */
|
|
24768
25031
|
system_type_display_name?: string | undefined;
|
|
@@ -25342,6 +25605,12 @@ export interface Routes {
|
|
|
25342
25605
|
result: null;
|
|
25343
25606
|
action_type: 'SCAN_CARD';
|
|
25344
25607
|
error: {
|
|
25608
|
+
type: 'uncategorized_error';
|
|
25609
|
+
message: string;
|
|
25610
|
+
} | {
|
|
25611
|
+
type: 'action_attempt_expired';
|
|
25612
|
+
message: string;
|
|
25613
|
+
} | {
|
|
25345
25614
|
type: 'no_card_on_encoder';
|
|
25346
25615
|
message: string;
|
|
25347
25616
|
};
|
|
@@ -25483,6 +25752,12 @@ export interface Routes {
|
|
|
25483
25752
|
result: null;
|
|
25484
25753
|
action_type: 'ENCODE_CARD';
|
|
25485
25754
|
error: {
|
|
25755
|
+
type: 'uncategorized_error';
|
|
25756
|
+
message: string;
|
|
25757
|
+
} | {
|
|
25758
|
+
type: 'action_attempt_expired';
|
|
25759
|
+
message: string;
|
|
25760
|
+
} | {
|
|
25486
25761
|
type: 'no_card_on_encoder';
|
|
25487
25762
|
message: string;
|
|
25488
25763
|
} | {
|