@seamapi/types 1.286.0 → 1.286.2
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 +197 -56
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +454 -211
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -14
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +18 -18
- package/lib/seam/connect/models/action-attempts/action-attempt.js +4 -4
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/{encode-card.d.ts → encode-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{encode-card.js → encode-credential.js} +6 -6
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/{scan-card.d.ts → scan-credential.d.ts} +11 -11
- package/lib/seam/connect/models/action-attempts/{scan-card.js → scan-credential.js} +7 -7
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +13 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +5 -3
- package/lib/seam/connect/models/devices/device-type.js +1 -0
- package/lib/seam/connect/models/devices/device-type.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +22 -3
- package/lib/seam/connect/models/devices/phone.d.ts +14 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +16 -3
- package/lib/seam/connect/models/events/acs/credentials.d.ts +61 -0
- package/lib/seam/connect/models/events/acs/credentials.js +9 -1
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/index.d.ts +30 -0
- package/lib/seam/connect/models/events/action-attempts.d.ts +177 -0
- package/lib/seam/connect/models/events/action-attempts.js +16 -0
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +147 -1
- package/lib/seam/connect/models/events/seam-event.js +2 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +20 -2
- package/lib/seam/connect/openapi.js +129 -37
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +217 -170
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/{encode-card.ts → encode-credential.ts} +8 -6
- package/src/lib/seam/connect/models/action-attempts/{scan-card.ts → scan-credential.ts} +9 -7
- package/src/lib/seam/connect/models/devices/device-metadata.ts +3 -0
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/credentials.ts +10 -1
- package/src/lib/seam/connect/models/events/action-attempts.ts +19 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +136 -37
- package/src/lib/seam/connect/route-types.ts +245 -170
- package/lib/seam/connect/models/action-attempts/encode-card.js.map +0 -1
- package/lib/seam/connect/models/action-attempts/scan-card.js.map +0 -1
|
@@ -79,15 +79,15 @@ export interface Routes {
|
|
|
79
79
|
status: 'pending';
|
|
80
80
|
result: null;
|
|
81
81
|
error: null;
|
|
82
|
-
action_type: '
|
|
82
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
83
83
|
} | {
|
|
84
84
|
/** The ID of the action attempt. */
|
|
85
85
|
action_attempt_id: string;
|
|
86
86
|
status: 'success';
|
|
87
87
|
error: null;
|
|
88
|
-
action_type: '
|
|
88
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
89
89
|
result: {
|
|
90
|
-
/** Snapshot of
|
|
90
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
91
91
|
acs_credential_on_encoder: {
|
|
92
92
|
/** Date and time the credential was created. */
|
|
93
93
|
created_at: string | null;
|
|
@@ -240,7 +240,7 @@ export interface Routes {
|
|
|
240
240
|
action_attempt_id: string;
|
|
241
241
|
status: 'error';
|
|
242
242
|
result: null;
|
|
243
|
-
action_type: '
|
|
243
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
244
244
|
error: {
|
|
245
245
|
type: 'uncategorized_error';
|
|
246
246
|
message: string;
|
|
@@ -257,13 +257,13 @@ export interface Routes {
|
|
|
257
257
|
status: 'pending';
|
|
258
258
|
result: null;
|
|
259
259
|
error: null;
|
|
260
|
-
action_type: '
|
|
260
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
261
261
|
} | {
|
|
262
262
|
/** The ID of the action attempt. */
|
|
263
263
|
action_attempt_id: string;
|
|
264
264
|
status: 'success';
|
|
265
265
|
error: null;
|
|
266
|
-
action_type: '
|
|
266
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
267
267
|
/** Means by which a user gains access at an entrance.
|
|
268
268
|
|
|
269
269
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -387,7 +387,7 @@ export interface Routes {
|
|
|
387
387
|
action_attempt_id: string;
|
|
388
388
|
status: 'error';
|
|
389
389
|
result: null;
|
|
390
|
-
action_type: '
|
|
390
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
391
391
|
error: {
|
|
392
392
|
type: 'uncategorized_error';
|
|
393
393
|
message: string;
|
|
@@ -963,15 +963,15 @@ export interface Routes {
|
|
|
963
963
|
status: 'pending';
|
|
964
964
|
result: null;
|
|
965
965
|
error: null;
|
|
966
|
-
action_type: '
|
|
966
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
967
967
|
} | {
|
|
968
968
|
/** The ID of the action attempt. */
|
|
969
969
|
action_attempt_id: string;
|
|
970
970
|
status: 'success';
|
|
971
971
|
error: null;
|
|
972
|
-
action_type: '
|
|
972
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
973
973
|
result: {
|
|
974
|
-
/** Snapshot of
|
|
974
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
975
975
|
acs_credential_on_encoder: {
|
|
976
976
|
/** Date and time the credential was created. */
|
|
977
977
|
created_at: string | null;
|
|
@@ -1124,7 +1124,7 @@ export interface Routes {
|
|
|
1124
1124
|
action_attempt_id: string;
|
|
1125
1125
|
status: 'error';
|
|
1126
1126
|
result: null;
|
|
1127
|
-
action_type: '
|
|
1127
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
1128
1128
|
error: {
|
|
1129
1129
|
type: 'uncategorized_error';
|
|
1130
1130
|
message: string;
|
|
@@ -1141,13 +1141,13 @@ export interface Routes {
|
|
|
1141
1141
|
status: 'pending';
|
|
1142
1142
|
result: null;
|
|
1143
1143
|
error: null;
|
|
1144
|
-
action_type: '
|
|
1144
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
1145
1145
|
} | {
|
|
1146
1146
|
/** The ID of the action attempt. */
|
|
1147
1147
|
action_attempt_id: string;
|
|
1148
1148
|
status: 'success';
|
|
1149
1149
|
error: null;
|
|
1150
|
-
action_type: '
|
|
1150
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
1151
1151
|
/** Means by which a user gains access at an entrance.
|
|
1152
1152
|
|
|
1153
1153
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -1271,7 +1271,7 @@ export interface Routes {
|
|
|
1271
1271
|
action_attempt_id: string;
|
|
1272
1272
|
status: 'error';
|
|
1273
1273
|
result: null;
|
|
1274
|
-
action_type: '
|
|
1274
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
1275
1275
|
error: {
|
|
1276
1276
|
type: 'uncategorized_error';
|
|
1277
1277
|
message: string;
|
|
@@ -2004,15 +2004,15 @@ export interface Routes {
|
|
|
2004
2004
|
status: 'pending';
|
|
2005
2005
|
result: null;
|
|
2006
2006
|
error: null;
|
|
2007
|
-
action_type: '
|
|
2007
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
2008
2008
|
} | {
|
|
2009
2009
|
/** The ID of the action attempt. */
|
|
2010
2010
|
action_attempt_id: string;
|
|
2011
2011
|
status: 'success';
|
|
2012
2012
|
error: null;
|
|
2013
|
-
action_type: '
|
|
2013
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
2014
2014
|
result: {
|
|
2015
|
-
/** Snapshot of
|
|
2015
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
2016
2016
|
acs_credential_on_encoder: {
|
|
2017
2017
|
/** Date and time the credential was created. */
|
|
2018
2018
|
created_at: string | null;
|
|
@@ -2165,7 +2165,7 @@ export interface Routes {
|
|
|
2165
2165
|
action_attempt_id: string;
|
|
2166
2166
|
status: 'error';
|
|
2167
2167
|
result: null;
|
|
2168
|
-
action_type: '
|
|
2168
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
2169
2169
|
error: {
|
|
2170
2170
|
type: 'uncategorized_error';
|
|
2171
2171
|
message: string;
|
|
@@ -2182,13 +2182,13 @@ export interface Routes {
|
|
|
2182
2182
|
status: 'pending';
|
|
2183
2183
|
result: null;
|
|
2184
2184
|
error: null;
|
|
2185
|
-
action_type: '
|
|
2185
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
2186
2186
|
} | {
|
|
2187
2187
|
/** The ID of the action attempt. */
|
|
2188
2188
|
action_attempt_id: string;
|
|
2189
2189
|
status: 'success';
|
|
2190
2190
|
error: null;
|
|
2191
|
-
action_type: '
|
|
2191
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
2192
2192
|
/** Means by which a user gains access at an entrance.
|
|
2193
2193
|
|
|
2194
2194
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -2312,7 +2312,7 @@ export interface Routes {
|
|
|
2312
2312
|
action_attempt_id: string;
|
|
2313
2313
|
status: 'error';
|
|
2314
2314
|
result: null;
|
|
2315
|
-
action_type: '
|
|
2315
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
2316
2316
|
error: {
|
|
2317
2317
|
type: 'uncategorized_error';
|
|
2318
2318
|
message: string;
|
|
@@ -2875,15 +2875,15 @@ export interface Routes {
|
|
|
2875
2875
|
status: 'pending';
|
|
2876
2876
|
result: null;
|
|
2877
2877
|
error: null;
|
|
2878
|
-
action_type: '
|
|
2878
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
2879
2879
|
} | {
|
|
2880
2880
|
/** The ID of the action attempt. */
|
|
2881
2881
|
action_attempt_id: string;
|
|
2882
2882
|
status: 'success';
|
|
2883
2883
|
error: null;
|
|
2884
|
-
action_type: '
|
|
2884
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
2885
2885
|
result: {
|
|
2886
|
-
/** Snapshot of
|
|
2886
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
2887
2887
|
acs_credential_on_encoder: {
|
|
2888
2888
|
/** Date and time the credential was created. */
|
|
2889
2889
|
created_at: string | null;
|
|
@@ -3036,7 +3036,7 @@ export interface Routes {
|
|
|
3036
3036
|
action_attempt_id: string;
|
|
3037
3037
|
status: 'error';
|
|
3038
3038
|
result: null;
|
|
3039
|
-
action_type: '
|
|
3039
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
3040
3040
|
error: {
|
|
3041
3041
|
type: 'uncategorized_error';
|
|
3042
3042
|
message: string;
|
|
@@ -3053,13 +3053,13 @@ export interface Routes {
|
|
|
3053
3053
|
status: 'pending';
|
|
3054
3054
|
result: null;
|
|
3055
3055
|
error: null;
|
|
3056
|
-
action_type: '
|
|
3056
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
3057
3057
|
} | {
|
|
3058
3058
|
/** The ID of the action attempt. */
|
|
3059
3059
|
action_attempt_id: string;
|
|
3060
3060
|
status: 'success';
|
|
3061
3061
|
error: null;
|
|
3062
|
-
action_type: '
|
|
3062
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
3063
3063
|
/** Means by which a user gains access at an entrance.
|
|
3064
3064
|
|
|
3065
3065
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -3183,7 +3183,7 @@ export interface Routes {
|
|
|
3183
3183
|
action_attempt_id: string;
|
|
3184
3184
|
status: 'error';
|
|
3185
3185
|
result: null;
|
|
3186
|
-
action_type: '
|
|
3186
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
3187
3187
|
error: {
|
|
3188
3188
|
type: 'uncategorized_error';
|
|
3189
3189
|
message: string;
|
|
@@ -4049,6 +4049,7 @@ export interface Routes {
|
|
|
4049
4049
|
allowed_acs_entrance_ids?: string[];
|
|
4050
4050
|
/** Visionline-specific metadata for the new credential. */
|
|
4051
4051
|
visionline_metadata?: {
|
|
4052
|
+
/** DEPRECATED: DO NOT USE */
|
|
4052
4053
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
4053
4054
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
4054
4055
|
card_function_type?: 'guest' | 'staff';
|
|
@@ -4675,13 +4676,15 @@ export interface Routes {
|
|
|
4675
4676
|
};
|
|
4676
4677
|
};
|
|
4677
4678
|
};
|
|
4678
|
-
'/acs/encoders/
|
|
4679
|
-
route: '/acs/encoders/
|
|
4679
|
+
'/acs/encoders/encode_credential': {
|
|
4680
|
+
route: '/acs/encoders/encode_credential';
|
|
4680
4681
|
method: 'POST';
|
|
4681
4682
|
queryParams: {};
|
|
4682
4683
|
jsonBody: {};
|
|
4683
4684
|
commonParams: {
|
|
4685
|
+
/** ID of the encoder to use for the encoding. */
|
|
4684
4686
|
device_id: string;
|
|
4687
|
+
/** ID of the acs_credential to encode on a physical card. */
|
|
4685
4688
|
acs_credential_id: string;
|
|
4686
4689
|
};
|
|
4687
4690
|
formData: {};
|
|
@@ -4740,15 +4743,15 @@ export interface Routes {
|
|
|
4740
4743
|
status: 'pending';
|
|
4741
4744
|
result: null;
|
|
4742
4745
|
error: null;
|
|
4743
|
-
action_type: '
|
|
4746
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
4744
4747
|
} | {
|
|
4745
4748
|
/** The ID of the action attempt. */
|
|
4746
4749
|
action_attempt_id: string;
|
|
4747
4750
|
status: 'success';
|
|
4748
4751
|
error: null;
|
|
4749
|
-
action_type: '
|
|
4752
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
4750
4753
|
result: {
|
|
4751
|
-
/** Snapshot of
|
|
4754
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
4752
4755
|
acs_credential_on_encoder: {
|
|
4753
4756
|
/** Date and time the credential was created. */
|
|
4754
4757
|
created_at: string | null;
|
|
@@ -4901,7 +4904,7 @@ export interface Routes {
|
|
|
4901
4904
|
action_attempt_id: string;
|
|
4902
4905
|
status: 'error';
|
|
4903
4906
|
result: null;
|
|
4904
|
-
action_type: '
|
|
4907
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
4905
4908
|
error: {
|
|
4906
4909
|
type: 'uncategorized_error';
|
|
4907
4910
|
message: string;
|
|
@@ -4918,13 +4921,13 @@ export interface Routes {
|
|
|
4918
4921
|
status: 'pending';
|
|
4919
4922
|
result: null;
|
|
4920
4923
|
error: null;
|
|
4921
|
-
action_type: '
|
|
4924
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
4922
4925
|
} | {
|
|
4923
4926
|
/** The ID of the action attempt. */
|
|
4924
4927
|
action_attempt_id: string;
|
|
4925
4928
|
status: 'success';
|
|
4926
4929
|
error: null;
|
|
4927
|
-
action_type: '
|
|
4930
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
4928
4931
|
/** Means by which a user gains access at an entrance.
|
|
4929
4932
|
|
|
4930
4933
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -5048,7 +5051,7 @@ export interface Routes {
|
|
|
5048
5051
|
action_attempt_id: string;
|
|
5049
5052
|
status: 'error';
|
|
5050
5053
|
result: null;
|
|
5051
|
-
action_type: '
|
|
5054
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
5052
5055
|
error: {
|
|
5053
5056
|
type: 'uncategorized_error';
|
|
5054
5057
|
message: string;
|
|
@@ -5431,7 +5434,7 @@ export interface Routes {
|
|
|
5431
5434
|
/** Unique identifier for the device. */
|
|
5432
5435
|
device_id: string;
|
|
5433
5436
|
/** Type of the device. */
|
|
5434
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
5437
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
5435
5438
|
/** Optional nickname to describe the device, settable through Seam */
|
|
5436
5439
|
nickname?: string | undefined;
|
|
5437
5440
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -5738,6 +5741,9 @@ export interface Routes {
|
|
|
5738
5741
|
gadget_id: string;
|
|
5739
5742
|
_member_group_id?: string | undefined;
|
|
5740
5743
|
} | undefined;
|
|
5744
|
+
assa_abloy_vostio_metadata?: {
|
|
5745
|
+
encoder_id: string;
|
|
5746
|
+
} | undefined;
|
|
5741
5747
|
}) & ({
|
|
5742
5748
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
5743
5749
|
code_constraints?: (Array<{
|
|
@@ -5888,13 +5894,15 @@ export interface Routes {
|
|
|
5888
5894
|
}>;
|
|
5889
5895
|
};
|
|
5890
5896
|
};
|
|
5891
|
-
'/acs/encoders/
|
|
5892
|
-
route: '/acs/encoders/
|
|
5897
|
+
'/acs/encoders/scan_credential': {
|
|
5898
|
+
route: '/acs/encoders/scan_credential';
|
|
5893
5899
|
method: 'POST';
|
|
5894
5900
|
queryParams: {};
|
|
5895
5901
|
jsonBody: {};
|
|
5896
5902
|
commonParams: {
|
|
5903
|
+
/** ID of the acs_system the encoder belongs to. */
|
|
5897
5904
|
acs_system_id: string;
|
|
5905
|
+
/** ID of the encoder to use for the scan. */
|
|
5898
5906
|
device_id: string;
|
|
5899
5907
|
};
|
|
5900
5908
|
formData: {};
|
|
@@ -5953,15 +5961,15 @@ export interface Routes {
|
|
|
5953
5961
|
status: 'pending';
|
|
5954
5962
|
result: null;
|
|
5955
5963
|
error: null;
|
|
5956
|
-
action_type: '
|
|
5964
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
5957
5965
|
} | {
|
|
5958
5966
|
/** The ID of the action attempt. */
|
|
5959
5967
|
action_attempt_id: string;
|
|
5960
5968
|
status: 'success';
|
|
5961
5969
|
error: null;
|
|
5962
|
-
action_type: '
|
|
5970
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
5963
5971
|
result: {
|
|
5964
|
-
/** Snapshot of
|
|
5972
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
5965
5973
|
acs_credential_on_encoder: {
|
|
5966
5974
|
/** Date and time the credential was created. */
|
|
5967
5975
|
created_at: string | null;
|
|
@@ -6114,7 +6122,7 @@ export interface Routes {
|
|
|
6114
6122
|
action_attempt_id: string;
|
|
6115
6123
|
status: 'error';
|
|
6116
6124
|
result: null;
|
|
6117
|
-
action_type: '
|
|
6125
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
6118
6126
|
error: {
|
|
6119
6127
|
type: 'uncategorized_error';
|
|
6120
6128
|
message: string;
|
|
@@ -6131,13 +6139,13 @@ export interface Routes {
|
|
|
6131
6139
|
status: 'pending';
|
|
6132
6140
|
result: null;
|
|
6133
6141
|
error: null;
|
|
6134
|
-
action_type: '
|
|
6142
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
6135
6143
|
} | {
|
|
6136
6144
|
/** The ID of the action attempt. */
|
|
6137
6145
|
action_attempt_id: string;
|
|
6138
6146
|
status: 'success';
|
|
6139
6147
|
error: null;
|
|
6140
|
-
action_type: '
|
|
6148
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
6141
6149
|
/** Means by which a user gains access at an entrance.
|
|
6142
6150
|
|
|
6143
6151
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -6261,7 +6269,7 @@ export interface Routes {
|
|
|
6261
6269
|
action_attempt_id: string;
|
|
6262
6270
|
status: 'error';
|
|
6263
6271
|
result: null;
|
|
6264
|
-
action_type: '
|
|
6272
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
6265
6273
|
error: {
|
|
6266
6274
|
type: 'uncategorized_error';
|
|
6267
6275
|
message: string;
|
|
@@ -7903,15 +7911,15 @@ export interface Routes {
|
|
|
7903
7911
|
status: 'pending';
|
|
7904
7912
|
result: null;
|
|
7905
7913
|
error: null;
|
|
7906
|
-
action_type: '
|
|
7914
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
7907
7915
|
} | {
|
|
7908
7916
|
/** The ID of the action attempt. */
|
|
7909
7917
|
action_attempt_id: string;
|
|
7910
7918
|
status: 'success';
|
|
7911
7919
|
error: null;
|
|
7912
|
-
action_type: '
|
|
7920
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
7913
7921
|
result: {
|
|
7914
|
-
/** Snapshot of
|
|
7922
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
7915
7923
|
acs_credential_on_encoder: {
|
|
7916
7924
|
/** Date and time the credential was created. */
|
|
7917
7925
|
created_at: string | null;
|
|
@@ -8064,7 +8072,7 @@ export interface Routes {
|
|
|
8064
8072
|
action_attempt_id: string;
|
|
8065
8073
|
status: 'error';
|
|
8066
8074
|
result: null;
|
|
8067
|
-
action_type: '
|
|
8075
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
8068
8076
|
error: {
|
|
8069
8077
|
type: 'uncategorized_error';
|
|
8070
8078
|
message: string;
|
|
@@ -8081,13 +8089,13 @@ export interface Routes {
|
|
|
8081
8089
|
status: 'pending';
|
|
8082
8090
|
result: null;
|
|
8083
8091
|
error: null;
|
|
8084
|
-
action_type: '
|
|
8092
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8085
8093
|
} | {
|
|
8086
8094
|
/** The ID of the action attempt. */
|
|
8087
8095
|
action_attempt_id: string;
|
|
8088
8096
|
status: 'success';
|
|
8089
8097
|
error: null;
|
|
8090
|
-
action_type: '
|
|
8098
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8091
8099
|
/** Means by which a user gains access at an entrance.
|
|
8092
8100
|
|
|
8093
8101
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -8211,7 +8219,7 @@ export interface Routes {
|
|
|
8211
8219
|
action_attempt_id: string;
|
|
8212
8220
|
status: 'error';
|
|
8213
8221
|
result: null;
|
|
8214
|
-
action_type: '
|
|
8222
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8215
8223
|
error: {
|
|
8216
8224
|
type: 'uncategorized_error';
|
|
8217
8225
|
message: string;
|
|
@@ -8636,15 +8644,15 @@ export interface Routes {
|
|
|
8636
8644
|
status: 'pending';
|
|
8637
8645
|
result: null;
|
|
8638
8646
|
error: null;
|
|
8639
|
-
action_type: '
|
|
8647
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
8640
8648
|
} | {
|
|
8641
8649
|
/** The ID of the action attempt. */
|
|
8642
8650
|
action_attempt_id: string;
|
|
8643
8651
|
status: 'success';
|
|
8644
8652
|
error: null;
|
|
8645
|
-
action_type: '
|
|
8653
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
8646
8654
|
result: {
|
|
8647
|
-
/** Snapshot of
|
|
8655
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
8648
8656
|
acs_credential_on_encoder: {
|
|
8649
8657
|
/** Date and time the credential was created. */
|
|
8650
8658
|
created_at: string | null;
|
|
@@ -8797,7 +8805,7 @@ export interface Routes {
|
|
|
8797
8805
|
action_attempt_id: string;
|
|
8798
8806
|
status: 'error';
|
|
8799
8807
|
result: null;
|
|
8800
|
-
action_type: '
|
|
8808
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
8801
8809
|
error: {
|
|
8802
8810
|
type: 'uncategorized_error';
|
|
8803
8811
|
message: string;
|
|
@@ -8814,13 +8822,13 @@ export interface Routes {
|
|
|
8814
8822
|
status: 'pending';
|
|
8815
8823
|
result: null;
|
|
8816
8824
|
error: null;
|
|
8817
|
-
action_type: '
|
|
8825
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8818
8826
|
} | {
|
|
8819
8827
|
/** The ID of the action attempt. */
|
|
8820
8828
|
action_attempt_id: string;
|
|
8821
8829
|
status: 'success';
|
|
8822
8830
|
error: null;
|
|
8823
|
-
action_type: '
|
|
8831
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8824
8832
|
/** Means by which a user gains access at an entrance.
|
|
8825
8833
|
|
|
8826
8834
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -8944,7 +8952,7 @@ export interface Routes {
|
|
|
8944
8952
|
action_attempt_id: string;
|
|
8945
8953
|
status: 'error';
|
|
8946
8954
|
result: null;
|
|
8947
|
-
action_type: '
|
|
8955
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
8948
8956
|
error: {
|
|
8949
8957
|
type: 'uncategorized_error';
|
|
8950
8958
|
message: string;
|
|
@@ -9745,7 +9753,7 @@ export interface Routes {
|
|
|
9745
9753
|
/** Unique identifier for the device. */
|
|
9746
9754
|
device_id: string;
|
|
9747
9755
|
/** Type of the device. */
|
|
9748
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
9756
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
9749
9757
|
/** Optional nickname to describe the device, settable through Seam */
|
|
9750
9758
|
nickname?: string | undefined;
|
|
9751
9759
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -10052,6 +10060,9 @@ export interface Routes {
|
|
|
10052
10060
|
gadget_id: string;
|
|
10053
10061
|
_member_group_id?: string | undefined;
|
|
10054
10062
|
} | undefined;
|
|
10063
|
+
assa_abloy_vostio_metadata?: {
|
|
10064
|
+
encoder_id: string;
|
|
10065
|
+
} | undefined;
|
|
10055
10066
|
}) & ({
|
|
10056
10067
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10057
10068
|
code_constraints?: (Array<{
|
|
@@ -10212,8 +10223,8 @@ export interface Routes {
|
|
|
10212
10223
|
connected_account_id?: string | undefined;
|
|
10213
10224
|
connected_account_ids?: string[] | undefined;
|
|
10214
10225
|
connect_webview_id?: string | undefined;
|
|
10215
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
10216
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
10226
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
10227
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
10217
10228
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
10218
10229
|
device_ids?: string[] | undefined;
|
|
10219
10230
|
limit?: number;
|
|
@@ -10229,7 +10240,7 @@ export interface Routes {
|
|
|
10229
10240
|
/** Unique identifier for the device. */
|
|
10230
10241
|
device_id: string;
|
|
10231
10242
|
/** Type of the device. */
|
|
10232
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
10243
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
10233
10244
|
/** Optional nickname to describe the device, settable through Seam */
|
|
10234
10245
|
nickname?: string | undefined;
|
|
10235
10246
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -10536,6 +10547,9 @@ export interface Routes {
|
|
|
10536
10547
|
gadget_id: string;
|
|
10537
10548
|
_member_group_id?: string | undefined;
|
|
10538
10549
|
} | undefined;
|
|
10550
|
+
assa_abloy_vostio_metadata?: {
|
|
10551
|
+
encoder_id: string;
|
|
10552
|
+
} | undefined;
|
|
10539
10553
|
}) & ({
|
|
10540
10554
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
10541
10555
|
code_constraints?: (Array<{
|
|
@@ -10763,7 +10777,7 @@ export interface Routes {
|
|
|
10763
10777
|
/** Unique identifier for the device. */
|
|
10764
10778
|
device_id: string;
|
|
10765
10779
|
/** Type of the device. */
|
|
10766
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
10780
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
10767
10781
|
/** Unique identifier for the account associated with the device. */
|
|
10768
10782
|
connected_account_id: string;
|
|
10769
10783
|
/** Location information for the device. */
|
|
@@ -10869,8 +10883,8 @@ export interface Routes {
|
|
|
10869
10883
|
connected_account_id?: string | undefined;
|
|
10870
10884
|
connected_account_ids?: string[] | undefined;
|
|
10871
10885
|
connect_webview_id?: string | undefined;
|
|
10872
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
10873
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
10886
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
10887
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
10874
10888
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
10875
10889
|
device_ids?: string[] | undefined;
|
|
10876
10890
|
limit?: number;
|
|
@@ -10886,7 +10900,7 @@ export interface Routes {
|
|
|
10886
10900
|
/** Unique identifier for the device. */
|
|
10887
10901
|
device_id: string;
|
|
10888
10902
|
/** Type of the device. */
|
|
10889
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
10903
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
10890
10904
|
/** Unique identifier for the account associated with the device. */
|
|
10891
10905
|
connected_account_id: string;
|
|
10892
10906
|
/** Location information for the device. */
|
|
@@ -11116,7 +11130,7 @@ export interface Routes {
|
|
|
11116
11130
|
/** Unique identifier for the device. */
|
|
11117
11131
|
device_id: string;
|
|
11118
11132
|
/** Type of the device. */
|
|
11119
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11133
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
11120
11134
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11121
11135
|
nickname?: string | undefined;
|
|
11122
11136
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -11423,6 +11437,9 @@ export interface Routes {
|
|
|
11423
11437
|
gadget_id: string;
|
|
11424
11438
|
_member_group_id?: string | undefined;
|
|
11425
11439
|
} | undefined;
|
|
11440
|
+
assa_abloy_vostio_metadata?: {
|
|
11441
|
+
encoder_id: string;
|
|
11442
|
+
} | undefined;
|
|
11426
11443
|
}) & ({
|
|
11427
11444
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11428
11445
|
code_constraints?: (Array<{
|
|
@@ -11575,7 +11592,7 @@ export interface Routes {
|
|
|
11575
11592
|
/** Unique identifier for the device. */
|
|
11576
11593
|
device_id: string;
|
|
11577
11594
|
/** Type of the device. */
|
|
11578
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
11595
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
11579
11596
|
/** Optional nickname to describe the device, settable through Seam */
|
|
11580
11597
|
nickname?: string | undefined;
|
|
11581
11598
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -11882,6 +11899,9 @@ export interface Routes {
|
|
|
11882
11899
|
gadget_id: string;
|
|
11883
11900
|
_member_group_id?: string | undefined;
|
|
11884
11901
|
} | undefined;
|
|
11902
|
+
assa_abloy_vostio_metadata?: {
|
|
11903
|
+
encoder_id: string;
|
|
11904
|
+
} | undefined;
|
|
11885
11905
|
}) & ({
|
|
11886
11906
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
11887
11907
|
code_constraints?: (Array<{
|
|
@@ -12042,8 +12062,8 @@ export interface Routes {
|
|
|
12042
12062
|
connected_account_id?: string | undefined;
|
|
12043
12063
|
connected_account_ids?: string[] | undefined;
|
|
12044
12064
|
connect_webview_id?: string | undefined;
|
|
12045
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
12046
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
12065
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
12066
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
12047
12067
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
12048
12068
|
device_ids?: string[] | undefined;
|
|
12049
12069
|
limit?: number;
|
|
@@ -12059,7 +12079,7 @@ export interface Routes {
|
|
|
12059
12079
|
/** Unique identifier for the device. */
|
|
12060
12080
|
device_id: string;
|
|
12061
12081
|
/** Type of the device. */
|
|
12062
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
12082
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
12063
12083
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12064
12084
|
nickname?: string | undefined;
|
|
12065
12085
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -12366,6 +12386,9 @@ export interface Routes {
|
|
|
12366
12386
|
gadget_id: string;
|
|
12367
12387
|
_member_group_id?: string | undefined;
|
|
12368
12388
|
} | undefined;
|
|
12389
|
+
assa_abloy_vostio_metadata?: {
|
|
12390
|
+
encoder_id: string;
|
|
12391
|
+
} | undefined;
|
|
12369
12392
|
}) & ({
|
|
12370
12393
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
12371
12394
|
code_constraints?: (Array<{
|
|
@@ -12518,7 +12541,7 @@ export interface Routes {
|
|
|
12518
12541
|
/** Unique identifier for the device. */
|
|
12519
12542
|
device_id: string;
|
|
12520
12543
|
/** Type of the device. */
|
|
12521
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
12544
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
12522
12545
|
/** Optional nickname to describe the device, settable through Seam */
|
|
12523
12546
|
nickname?: string | undefined;
|
|
12524
12547
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -12825,6 +12848,9 @@ export interface Routes {
|
|
|
12825
12848
|
gadget_id: string;
|
|
12826
12849
|
_member_group_id?: string | undefined;
|
|
12827
12850
|
} | undefined;
|
|
12851
|
+
assa_abloy_vostio_metadata?: {
|
|
12852
|
+
encoder_id: string;
|
|
12853
|
+
} | undefined;
|
|
12828
12854
|
}) & ({
|
|
12829
12855
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
12830
12856
|
code_constraints?: (Array<{
|
|
@@ -13040,15 +13066,15 @@ export interface Routes {
|
|
|
13040
13066
|
status: 'pending';
|
|
13041
13067
|
result: null;
|
|
13042
13068
|
error: null;
|
|
13043
|
-
action_type: '
|
|
13069
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13044
13070
|
} | {
|
|
13045
13071
|
/** The ID of the action attempt. */
|
|
13046
13072
|
action_attempt_id: string;
|
|
13047
13073
|
status: 'success';
|
|
13048
13074
|
error: null;
|
|
13049
|
-
action_type: '
|
|
13075
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13050
13076
|
result: {
|
|
13051
|
-
/** Snapshot of
|
|
13077
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
13052
13078
|
acs_credential_on_encoder: {
|
|
13053
13079
|
/** Date and time the credential was created. */
|
|
13054
13080
|
created_at: string | null;
|
|
@@ -13201,7 +13227,7 @@ export interface Routes {
|
|
|
13201
13227
|
action_attempt_id: string;
|
|
13202
13228
|
status: 'error';
|
|
13203
13229
|
result: null;
|
|
13204
|
-
action_type: '
|
|
13230
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13205
13231
|
error: {
|
|
13206
13232
|
type: 'uncategorized_error';
|
|
13207
13233
|
message: string;
|
|
@@ -13218,13 +13244,13 @@ export interface Routes {
|
|
|
13218
13244
|
status: 'pending';
|
|
13219
13245
|
result: null;
|
|
13220
13246
|
error: null;
|
|
13221
|
-
action_type: '
|
|
13247
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
13222
13248
|
} | {
|
|
13223
13249
|
/** The ID of the action attempt. */
|
|
13224
13250
|
action_attempt_id: string;
|
|
13225
13251
|
status: 'success';
|
|
13226
13252
|
error: null;
|
|
13227
|
-
action_type: '
|
|
13253
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
13228
13254
|
/** Means by which a user gains access at an entrance.
|
|
13229
13255
|
|
|
13230
13256
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -13348,7 +13374,7 @@ export interface Routes {
|
|
|
13348
13374
|
action_attempt_id: string;
|
|
13349
13375
|
status: 'error';
|
|
13350
13376
|
result: null;
|
|
13351
|
-
action_type: '
|
|
13377
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
13352
13378
|
error: {
|
|
13353
13379
|
type: 'uncategorized_error';
|
|
13354
13380
|
message: string;
|
|
@@ -13774,15 +13800,15 @@ export interface Routes {
|
|
|
13774
13800
|
status: 'pending';
|
|
13775
13801
|
result: null;
|
|
13776
13802
|
error: null;
|
|
13777
|
-
action_type: '
|
|
13803
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13778
13804
|
} | {
|
|
13779
13805
|
/** The ID of the action attempt. */
|
|
13780
13806
|
action_attempt_id: string;
|
|
13781
13807
|
status: 'success';
|
|
13782
13808
|
error: null;
|
|
13783
|
-
action_type: '
|
|
13809
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13784
13810
|
result: {
|
|
13785
|
-
/** Snapshot of
|
|
13811
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
13786
13812
|
acs_credential_on_encoder: {
|
|
13787
13813
|
/** Date and time the credential was created. */
|
|
13788
13814
|
created_at: string | null;
|
|
@@ -13935,7 +13961,7 @@ export interface Routes {
|
|
|
13935
13961
|
action_attempt_id: string;
|
|
13936
13962
|
status: 'error';
|
|
13937
13963
|
result: null;
|
|
13938
|
-
action_type: '
|
|
13964
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
13939
13965
|
error: {
|
|
13940
13966
|
type: 'uncategorized_error';
|
|
13941
13967
|
message: string;
|
|
@@ -13952,13 +13978,13 @@ export interface Routes {
|
|
|
13952
13978
|
status: 'pending';
|
|
13953
13979
|
result: null;
|
|
13954
13980
|
error: null;
|
|
13955
|
-
action_type: '
|
|
13981
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
13956
13982
|
} | {
|
|
13957
13983
|
/** The ID of the action attempt. */
|
|
13958
13984
|
action_attempt_id: string;
|
|
13959
13985
|
status: 'success';
|
|
13960
13986
|
error: null;
|
|
13961
|
-
action_type: '
|
|
13987
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
13962
13988
|
/** Means by which a user gains access at an entrance.
|
|
13963
13989
|
|
|
13964
13990
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -14082,7 +14108,7 @@ export interface Routes {
|
|
|
14082
14108
|
action_attempt_id: string;
|
|
14083
14109
|
status: 'error';
|
|
14084
14110
|
result: null;
|
|
14085
|
-
action_type: '
|
|
14111
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
14086
14112
|
error: {
|
|
14087
14113
|
type: 'uncategorized_error';
|
|
14088
14114
|
message: string;
|
|
@@ -14487,8 +14513,8 @@ export interface Routes {
|
|
|
14487
14513
|
connected_account_id?: string | undefined;
|
|
14488
14514
|
connected_account_ids?: string[] | undefined;
|
|
14489
14515
|
connect_webview_id?: string | undefined;
|
|
14490
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
14491
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
14516
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
14517
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
14492
14518
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
14493
14519
|
device_ids?: string[] | undefined;
|
|
14494
14520
|
limit?: number;
|
|
@@ -14504,7 +14530,7 @@ export interface Routes {
|
|
|
14504
14530
|
/** Unique identifier for the device. */
|
|
14505
14531
|
device_id: string;
|
|
14506
14532
|
/** Type of the device. */
|
|
14507
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14533
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
14508
14534
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14509
14535
|
nickname?: string | undefined;
|
|
14510
14536
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -14811,6 +14837,9 @@ export interface Routes {
|
|
|
14811
14837
|
gadget_id: string;
|
|
14812
14838
|
_member_group_id?: string | undefined;
|
|
14813
14839
|
} | undefined;
|
|
14840
|
+
assa_abloy_vostio_metadata?: {
|
|
14841
|
+
encoder_id: string;
|
|
14842
|
+
} | undefined;
|
|
14814
14843
|
}) & ({
|
|
14815
14844
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
14816
14845
|
code_constraints?: (Array<{
|
|
@@ -14963,7 +14992,7 @@ export interface Routes {
|
|
|
14963
14992
|
/** Unique identifier for the device. */
|
|
14964
14993
|
device_id: string;
|
|
14965
14994
|
/** Type of the device. */
|
|
14966
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
14995
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
14967
14996
|
/** Optional nickname to describe the device, settable through Seam */
|
|
14968
14997
|
nickname?: string | undefined;
|
|
14969
14998
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -15270,6 +15299,9 @@ export interface Routes {
|
|
|
15270
15299
|
gadget_id: string;
|
|
15271
15300
|
_member_group_id?: string | undefined;
|
|
15272
15301
|
} | undefined;
|
|
15302
|
+
assa_abloy_vostio_metadata?: {
|
|
15303
|
+
encoder_id: string;
|
|
15304
|
+
} | undefined;
|
|
15273
15305
|
}) & ({
|
|
15274
15306
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
15275
15307
|
code_constraints?: (Array<{
|
|
@@ -15490,15 +15522,15 @@ export interface Routes {
|
|
|
15490
15522
|
status: 'pending';
|
|
15491
15523
|
result: null;
|
|
15492
15524
|
error: null;
|
|
15493
|
-
action_type: '
|
|
15525
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
15494
15526
|
} | {
|
|
15495
15527
|
/** The ID of the action attempt. */
|
|
15496
15528
|
action_attempt_id: string;
|
|
15497
15529
|
status: 'success';
|
|
15498
15530
|
error: null;
|
|
15499
|
-
action_type: '
|
|
15531
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
15500
15532
|
result: {
|
|
15501
|
-
/** Snapshot of
|
|
15533
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
15502
15534
|
acs_credential_on_encoder: {
|
|
15503
15535
|
/** Date and time the credential was created. */
|
|
15504
15536
|
created_at: string | null;
|
|
@@ -15651,7 +15683,7 @@ export interface Routes {
|
|
|
15651
15683
|
action_attempt_id: string;
|
|
15652
15684
|
status: 'error';
|
|
15653
15685
|
result: null;
|
|
15654
|
-
action_type: '
|
|
15686
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
15655
15687
|
error: {
|
|
15656
15688
|
type: 'uncategorized_error';
|
|
15657
15689
|
message: string;
|
|
@@ -15668,13 +15700,13 @@ export interface Routes {
|
|
|
15668
15700
|
status: 'pending';
|
|
15669
15701
|
result: null;
|
|
15670
15702
|
error: null;
|
|
15671
|
-
action_type: '
|
|
15703
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
15672
15704
|
} | {
|
|
15673
15705
|
/** The ID of the action attempt. */
|
|
15674
15706
|
action_attempt_id: string;
|
|
15675
15707
|
status: 'success';
|
|
15676
15708
|
error: null;
|
|
15677
|
-
action_type: '
|
|
15709
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
15678
15710
|
/** Means by which a user gains access at an entrance.
|
|
15679
15711
|
|
|
15680
15712
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -15798,7 +15830,7 @@ export interface Routes {
|
|
|
15798
15830
|
action_attempt_id: string;
|
|
15799
15831
|
status: 'error';
|
|
15800
15832
|
result: null;
|
|
15801
|
-
action_type: '
|
|
15833
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
15802
15834
|
error: {
|
|
15803
15835
|
type: 'uncategorized_error';
|
|
15804
15836
|
message: string;
|
|
@@ -16234,15 +16266,15 @@ export interface Routes {
|
|
|
16234
16266
|
status: 'pending';
|
|
16235
16267
|
result: null;
|
|
16236
16268
|
error: null;
|
|
16237
|
-
action_type: '
|
|
16269
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
16238
16270
|
} | {
|
|
16239
16271
|
/** The ID of the action attempt. */
|
|
16240
16272
|
action_attempt_id: string;
|
|
16241
16273
|
status: 'success';
|
|
16242
16274
|
error: null;
|
|
16243
|
-
action_type: '
|
|
16275
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
16244
16276
|
result: {
|
|
16245
|
-
/** Snapshot of
|
|
16277
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
16246
16278
|
acs_credential_on_encoder: {
|
|
16247
16279
|
/** Date and time the credential was created. */
|
|
16248
16280
|
created_at: string | null;
|
|
@@ -16395,7 +16427,7 @@ export interface Routes {
|
|
|
16395
16427
|
action_attempt_id: string;
|
|
16396
16428
|
status: 'error';
|
|
16397
16429
|
result: null;
|
|
16398
|
-
action_type: '
|
|
16430
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
16399
16431
|
error: {
|
|
16400
16432
|
type: 'uncategorized_error';
|
|
16401
16433
|
message: string;
|
|
@@ -16412,13 +16444,13 @@ export interface Routes {
|
|
|
16412
16444
|
status: 'pending';
|
|
16413
16445
|
result: null;
|
|
16414
16446
|
error: null;
|
|
16415
|
-
action_type: '
|
|
16447
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
16416
16448
|
} | {
|
|
16417
16449
|
/** The ID of the action attempt. */
|
|
16418
16450
|
action_attempt_id: string;
|
|
16419
16451
|
status: 'success';
|
|
16420
16452
|
error: null;
|
|
16421
|
-
action_type: '
|
|
16453
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
16422
16454
|
/** Means by which a user gains access at an entrance.
|
|
16423
16455
|
|
|
16424
16456
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -16542,7 +16574,7 @@ export interface Routes {
|
|
|
16542
16574
|
action_attempt_id: string;
|
|
16543
16575
|
status: 'error';
|
|
16544
16576
|
result: null;
|
|
16545
|
-
action_type: '
|
|
16577
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
16546
16578
|
error: {
|
|
16547
16579
|
type: 'uncategorized_error';
|
|
16548
16580
|
message: string;
|
|
@@ -17017,15 +17049,15 @@ export interface Routes {
|
|
|
17017
17049
|
status: 'pending';
|
|
17018
17050
|
result: null;
|
|
17019
17051
|
error: null;
|
|
17020
|
-
action_type: '
|
|
17052
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
17021
17053
|
} | {
|
|
17022
17054
|
/** The ID of the action attempt. */
|
|
17023
17055
|
action_attempt_id: string;
|
|
17024
17056
|
status: 'success';
|
|
17025
17057
|
error: null;
|
|
17026
|
-
action_type: '
|
|
17058
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
17027
17059
|
result: {
|
|
17028
|
-
/** Snapshot of
|
|
17060
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
17029
17061
|
acs_credential_on_encoder: {
|
|
17030
17062
|
/** Date and time the credential was created. */
|
|
17031
17063
|
created_at: string | null;
|
|
@@ -17178,7 +17210,7 @@ export interface Routes {
|
|
|
17178
17210
|
action_attempt_id: string;
|
|
17179
17211
|
status: 'error';
|
|
17180
17212
|
result: null;
|
|
17181
|
-
action_type: '
|
|
17213
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
17182
17214
|
error: {
|
|
17183
17215
|
type: 'uncategorized_error';
|
|
17184
17216
|
message: string;
|
|
@@ -17195,13 +17227,13 @@ export interface Routes {
|
|
|
17195
17227
|
status: 'pending';
|
|
17196
17228
|
result: null;
|
|
17197
17229
|
error: null;
|
|
17198
|
-
action_type: '
|
|
17230
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
17199
17231
|
} | {
|
|
17200
17232
|
/** The ID of the action attempt. */
|
|
17201
17233
|
action_attempt_id: string;
|
|
17202
17234
|
status: 'success';
|
|
17203
17235
|
error: null;
|
|
17204
|
-
action_type: '
|
|
17236
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
17205
17237
|
/** Means by which a user gains access at an entrance.
|
|
17206
17238
|
|
|
17207
17239
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -17325,7 +17357,7 @@ export interface Routes {
|
|
|
17325
17357
|
action_attempt_id: string;
|
|
17326
17358
|
status: 'error';
|
|
17327
17359
|
result: null;
|
|
17328
|
-
action_type: '
|
|
17360
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
17329
17361
|
error: {
|
|
17330
17362
|
type: 'uncategorized_error';
|
|
17331
17363
|
message: string;
|
|
@@ -17933,15 +17965,15 @@ export interface Routes {
|
|
|
17933
17965
|
status: 'pending';
|
|
17934
17966
|
result: null;
|
|
17935
17967
|
error: null;
|
|
17936
|
-
action_type: '
|
|
17968
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
17937
17969
|
} | {
|
|
17938
17970
|
/** The ID of the action attempt. */
|
|
17939
17971
|
action_attempt_id: string;
|
|
17940
17972
|
status: 'success';
|
|
17941
17973
|
error: null;
|
|
17942
|
-
action_type: '
|
|
17974
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
17943
17975
|
result: {
|
|
17944
|
-
/** Snapshot of
|
|
17976
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
17945
17977
|
acs_credential_on_encoder: {
|
|
17946
17978
|
/** Date and time the credential was created. */
|
|
17947
17979
|
created_at: string | null;
|
|
@@ -18094,7 +18126,7 @@ export interface Routes {
|
|
|
18094
18126
|
action_attempt_id: string;
|
|
18095
18127
|
status: 'error';
|
|
18096
18128
|
result: null;
|
|
18097
|
-
action_type: '
|
|
18129
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
18098
18130
|
error: {
|
|
18099
18131
|
type: 'uncategorized_error';
|
|
18100
18132
|
message: string;
|
|
@@ -18111,13 +18143,13 @@ export interface Routes {
|
|
|
18111
18143
|
status: 'pending';
|
|
18112
18144
|
result: null;
|
|
18113
18145
|
error: null;
|
|
18114
|
-
action_type: '
|
|
18146
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18115
18147
|
} | {
|
|
18116
18148
|
/** The ID of the action attempt. */
|
|
18117
18149
|
action_attempt_id: string;
|
|
18118
18150
|
status: 'success';
|
|
18119
18151
|
error: null;
|
|
18120
|
-
action_type: '
|
|
18152
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18121
18153
|
/** Means by which a user gains access at an entrance.
|
|
18122
18154
|
|
|
18123
18155
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -18241,7 +18273,7 @@ export interface Routes {
|
|
|
18241
18273
|
action_attempt_id: string;
|
|
18242
18274
|
status: 'error';
|
|
18243
18275
|
result: null;
|
|
18244
|
-
action_type: '
|
|
18276
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18245
18277
|
error: {
|
|
18246
18278
|
type: 'uncategorized_error';
|
|
18247
18279
|
message: string;
|
|
@@ -18669,15 +18701,15 @@ export interface Routes {
|
|
|
18669
18701
|
status: 'pending';
|
|
18670
18702
|
result: null;
|
|
18671
18703
|
error: null;
|
|
18672
|
-
action_type: '
|
|
18704
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
18673
18705
|
} | {
|
|
18674
18706
|
/** The ID of the action attempt. */
|
|
18675
18707
|
action_attempt_id: string;
|
|
18676
18708
|
status: 'success';
|
|
18677
18709
|
error: null;
|
|
18678
|
-
action_type: '
|
|
18710
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
18679
18711
|
result: {
|
|
18680
|
-
/** Snapshot of
|
|
18712
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
18681
18713
|
acs_credential_on_encoder: {
|
|
18682
18714
|
/** Date and time the credential was created. */
|
|
18683
18715
|
created_at: string | null;
|
|
@@ -18830,7 +18862,7 @@ export interface Routes {
|
|
|
18830
18862
|
action_attempt_id: string;
|
|
18831
18863
|
status: 'error';
|
|
18832
18864
|
result: null;
|
|
18833
|
-
action_type: '
|
|
18865
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
18834
18866
|
error: {
|
|
18835
18867
|
type: 'uncategorized_error';
|
|
18836
18868
|
message: string;
|
|
@@ -18847,13 +18879,13 @@ export interface Routes {
|
|
|
18847
18879
|
status: 'pending';
|
|
18848
18880
|
result: null;
|
|
18849
18881
|
error: null;
|
|
18850
|
-
action_type: '
|
|
18882
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18851
18883
|
} | {
|
|
18852
18884
|
/** The ID of the action attempt. */
|
|
18853
18885
|
action_attempt_id: string;
|
|
18854
18886
|
status: 'success';
|
|
18855
18887
|
error: null;
|
|
18856
|
-
action_type: '
|
|
18888
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18857
18889
|
/** Means by which a user gains access at an entrance.
|
|
18858
18890
|
|
|
18859
18891
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -18977,7 +19009,7 @@ export interface Routes {
|
|
|
18977
19009
|
action_attempt_id: string;
|
|
18978
19010
|
status: 'error';
|
|
18979
19011
|
result: null;
|
|
18980
|
-
action_type: '
|
|
19012
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
18981
19013
|
error: {
|
|
18982
19014
|
type: 'uncategorized_error';
|
|
18983
19015
|
message: string;
|
|
@@ -19385,7 +19417,7 @@ export interface Routes {
|
|
|
19385
19417
|
/** Unique identifier for the device. */
|
|
19386
19418
|
device_id: string;
|
|
19387
19419
|
/** Type of the device. */
|
|
19388
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
19420
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
19389
19421
|
/** Optional nickname to describe the device, settable through Seam */
|
|
19390
19422
|
nickname?: string | undefined;
|
|
19391
19423
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -19692,6 +19724,9 @@ export interface Routes {
|
|
|
19692
19724
|
gadget_id: string;
|
|
19693
19725
|
_member_group_id?: string | undefined;
|
|
19694
19726
|
} | undefined;
|
|
19727
|
+
assa_abloy_vostio_metadata?: {
|
|
19728
|
+
encoder_id: string;
|
|
19729
|
+
} | undefined;
|
|
19695
19730
|
}) & ({
|
|
19696
19731
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
19697
19732
|
code_constraints?: (Array<{
|
|
@@ -19909,15 +19944,15 @@ export interface Routes {
|
|
|
19909
19944
|
status: 'pending';
|
|
19910
19945
|
result: null;
|
|
19911
19946
|
error: null;
|
|
19912
|
-
action_type: '
|
|
19947
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
19913
19948
|
} | {
|
|
19914
19949
|
/** The ID of the action attempt. */
|
|
19915
19950
|
action_attempt_id: string;
|
|
19916
19951
|
status: 'success';
|
|
19917
19952
|
error: null;
|
|
19918
|
-
action_type: '
|
|
19953
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
19919
19954
|
result: {
|
|
19920
|
-
/** Snapshot of
|
|
19955
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
19921
19956
|
acs_credential_on_encoder: {
|
|
19922
19957
|
/** Date and time the credential was created. */
|
|
19923
19958
|
created_at: string | null;
|
|
@@ -20070,7 +20105,7 @@ export interface Routes {
|
|
|
20070
20105
|
action_attempt_id: string;
|
|
20071
20106
|
status: 'error';
|
|
20072
20107
|
result: null;
|
|
20073
|
-
action_type: '
|
|
20108
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
20074
20109
|
error: {
|
|
20075
20110
|
type: 'uncategorized_error';
|
|
20076
20111
|
message: string;
|
|
@@ -20087,13 +20122,13 @@ export interface Routes {
|
|
|
20087
20122
|
status: 'pending';
|
|
20088
20123
|
result: null;
|
|
20089
20124
|
error: null;
|
|
20090
|
-
action_type: '
|
|
20125
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20091
20126
|
} | {
|
|
20092
20127
|
/** The ID of the action attempt. */
|
|
20093
20128
|
action_attempt_id: string;
|
|
20094
20129
|
status: 'success';
|
|
20095
20130
|
error: null;
|
|
20096
|
-
action_type: '
|
|
20131
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20097
20132
|
/** Means by which a user gains access at an entrance.
|
|
20098
20133
|
|
|
20099
20134
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -20217,7 +20252,7 @@ export interface Routes {
|
|
|
20217
20252
|
action_attempt_id: string;
|
|
20218
20253
|
status: 'error';
|
|
20219
20254
|
result: null;
|
|
20220
|
-
action_type: '
|
|
20255
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20221
20256
|
error: {
|
|
20222
20257
|
type: 'uncategorized_error';
|
|
20223
20258
|
message: string;
|
|
@@ -20647,15 +20682,15 @@ export interface Routes {
|
|
|
20647
20682
|
status: 'pending';
|
|
20648
20683
|
result: null;
|
|
20649
20684
|
error: null;
|
|
20650
|
-
action_type: '
|
|
20685
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
20651
20686
|
} | {
|
|
20652
20687
|
/** The ID of the action attempt. */
|
|
20653
20688
|
action_attempt_id: string;
|
|
20654
20689
|
status: 'success';
|
|
20655
20690
|
error: null;
|
|
20656
|
-
action_type: '
|
|
20691
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
20657
20692
|
result: {
|
|
20658
|
-
/** Snapshot of
|
|
20693
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
20659
20694
|
acs_credential_on_encoder: {
|
|
20660
20695
|
/** Date and time the credential was created. */
|
|
20661
20696
|
created_at: string | null;
|
|
@@ -20808,7 +20843,7 @@ export interface Routes {
|
|
|
20808
20843
|
action_attempt_id: string;
|
|
20809
20844
|
status: 'error';
|
|
20810
20845
|
result: null;
|
|
20811
|
-
action_type: '
|
|
20846
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
20812
20847
|
error: {
|
|
20813
20848
|
type: 'uncategorized_error';
|
|
20814
20849
|
message: string;
|
|
@@ -20825,13 +20860,13 @@ export interface Routes {
|
|
|
20825
20860
|
status: 'pending';
|
|
20826
20861
|
result: null;
|
|
20827
20862
|
error: null;
|
|
20828
|
-
action_type: '
|
|
20863
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20829
20864
|
} | {
|
|
20830
20865
|
/** The ID of the action attempt. */
|
|
20831
20866
|
action_attempt_id: string;
|
|
20832
20867
|
status: 'success';
|
|
20833
20868
|
error: null;
|
|
20834
|
-
action_type: '
|
|
20869
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20835
20870
|
/** Means by which a user gains access at an entrance.
|
|
20836
20871
|
|
|
20837
20872
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -20955,7 +20990,7 @@ export interface Routes {
|
|
|
20955
20990
|
action_attempt_id: string;
|
|
20956
20991
|
status: 'error';
|
|
20957
20992
|
result: null;
|
|
20958
|
-
action_type: '
|
|
20993
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
20959
20994
|
error: {
|
|
20960
20995
|
type: 'uncategorized_error';
|
|
20961
20996
|
message: string;
|
|
@@ -21326,8 +21361,8 @@ export interface Routes {
|
|
|
21326
21361
|
connected_account_id?: string | undefined;
|
|
21327
21362
|
connected_account_ids?: string[] | undefined;
|
|
21328
21363
|
connect_webview_id?: string | undefined;
|
|
21329
|
-
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder') | undefined;
|
|
21330
|
-
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder'> | undefined;
|
|
21364
|
+
device_type?: (('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')) | undefined;
|
|
21365
|
+
device_types?: Array<('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder')> | undefined;
|
|
21331
21366
|
manufacturer?: ('akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'doorking' | 'four_suites' | 'genie' | 'igloo' | 'keywe' | 'kwikset' | 'linear' | 'lockly' | 'nuki' | 'philia' | 'salto' | 'samsung' | 'schlage' | 'seam' | 'unknown' | 'wyze' | 'yale' | 'minut' | 'two_n' | 'ttlock' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'controlbyweb' | 'smartthings' | 'dormakaba_oracode' | 'tedee' | 'honeywell_resideo' | 'akiles') | undefined;
|
|
21332
21367
|
device_ids?: string[] | undefined;
|
|
21333
21368
|
limit?: number;
|
|
@@ -21343,7 +21378,7 @@ export interface Routes {
|
|
|
21343
21378
|
/** Unique identifier for the device. */
|
|
21344
21379
|
device_id: string;
|
|
21345
21380
|
/** Type of the device. */
|
|
21346
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
21381
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
21347
21382
|
/** Optional nickname to describe the device, settable through Seam */
|
|
21348
21383
|
nickname?: string | undefined;
|
|
21349
21384
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -21650,6 +21685,9 @@ export interface Routes {
|
|
|
21650
21685
|
gadget_id: string;
|
|
21651
21686
|
_member_group_id?: string | undefined;
|
|
21652
21687
|
} | undefined;
|
|
21688
|
+
assa_abloy_vostio_metadata?: {
|
|
21689
|
+
encoder_id: string;
|
|
21690
|
+
} | undefined;
|
|
21653
21691
|
}) & ({
|
|
21654
21692
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
21655
21693
|
code_constraints?: (Array<{
|
|
@@ -21802,7 +21840,7 @@ export interface Routes {
|
|
|
21802
21840
|
/** Unique identifier for the device. */
|
|
21803
21841
|
device_id: string;
|
|
21804
21842
|
/** Type of the device. */
|
|
21805
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
21843
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
21806
21844
|
/** Optional nickname to describe the device, settable through Seam */
|
|
21807
21845
|
nickname?: string | undefined;
|
|
21808
21846
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -22109,6 +22147,9 @@ export interface Routes {
|
|
|
22109
22147
|
gadget_id: string;
|
|
22110
22148
|
_member_group_id?: string | undefined;
|
|
22111
22149
|
} | undefined;
|
|
22150
|
+
assa_abloy_vostio_metadata?: {
|
|
22151
|
+
encoder_id: string;
|
|
22152
|
+
} | undefined;
|
|
22112
22153
|
}) & ({
|
|
22113
22154
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
22114
22155
|
code_constraints?: (Array<{
|
|
@@ -22324,15 +22365,15 @@ export interface Routes {
|
|
|
22324
22365
|
status: 'pending';
|
|
22325
22366
|
result: null;
|
|
22326
22367
|
error: null;
|
|
22327
|
-
action_type: '
|
|
22368
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
22328
22369
|
} | {
|
|
22329
22370
|
/** The ID of the action attempt. */
|
|
22330
22371
|
action_attempt_id: string;
|
|
22331
22372
|
status: 'success';
|
|
22332
22373
|
error: null;
|
|
22333
|
-
action_type: '
|
|
22374
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
22334
22375
|
result: {
|
|
22335
|
-
/** Snapshot of
|
|
22376
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
22336
22377
|
acs_credential_on_encoder: {
|
|
22337
22378
|
/** Date and time the credential was created. */
|
|
22338
22379
|
created_at: string | null;
|
|
@@ -22485,7 +22526,7 @@ export interface Routes {
|
|
|
22485
22526
|
action_attempt_id: string;
|
|
22486
22527
|
status: 'error';
|
|
22487
22528
|
result: null;
|
|
22488
|
-
action_type: '
|
|
22529
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
22489
22530
|
error: {
|
|
22490
22531
|
type: 'uncategorized_error';
|
|
22491
22532
|
message: string;
|
|
@@ -22502,13 +22543,13 @@ export interface Routes {
|
|
|
22502
22543
|
status: 'pending';
|
|
22503
22544
|
result: null;
|
|
22504
22545
|
error: null;
|
|
22505
|
-
action_type: '
|
|
22546
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
22506
22547
|
} | {
|
|
22507
22548
|
/** The ID of the action attempt. */
|
|
22508
22549
|
action_attempt_id: string;
|
|
22509
22550
|
status: 'success';
|
|
22510
22551
|
error: null;
|
|
22511
|
-
action_type: '
|
|
22552
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
22512
22553
|
/** Means by which a user gains access at an entrance.
|
|
22513
22554
|
|
|
22514
22555
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -22632,7 +22673,7 @@ export interface Routes {
|
|
|
22632
22673
|
action_attempt_id: string;
|
|
22633
22674
|
status: 'error';
|
|
22634
22675
|
result: null;
|
|
22635
|
-
action_type: '
|
|
22676
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
22636
22677
|
error: {
|
|
22637
22678
|
type: 'uncategorized_error';
|
|
22638
22679
|
message: string;
|
|
@@ -23179,15 +23220,15 @@ export interface Routes {
|
|
|
23179
23220
|
status: 'pending';
|
|
23180
23221
|
result: null;
|
|
23181
23222
|
error: null;
|
|
23182
|
-
action_type: '
|
|
23223
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
23183
23224
|
} | {
|
|
23184
23225
|
/** The ID of the action attempt. */
|
|
23185
23226
|
action_attempt_id: string;
|
|
23186
23227
|
status: 'success';
|
|
23187
23228
|
error: null;
|
|
23188
|
-
action_type: '
|
|
23229
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
23189
23230
|
result: {
|
|
23190
|
-
/** Snapshot of
|
|
23231
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
23191
23232
|
acs_credential_on_encoder: {
|
|
23192
23233
|
/** Date and time the credential was created. */
|
|
23193
23234
|
created_at: string | null;
|
|
@@ -23340,7 +23381,7 @@ export interface Routes {
|
|
|
23340
23381
|
action_attempt_id: string;
|
|
23341
23382
|
status: 'error';
|
|
23342
23383
|
result: null;
|
|
23343
|
-
action_type: '
|
|
23384
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
23344
23385
|
error: {
|
|
23345
23386
|
type: 'uncategorized_error';
|
|
23346
23387
|
message: string;
|
|
@@ -23357,13 +23398,13 @@ export interface Routes {
|
|
|
23357
23398
|
status: 'pending';
|
|
23358
23399
|
result: null;
|
|
23359
23400
|
error: null;
|
|
23360
|
-
action_type: '
|
|
23401
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
23361
23402
|
} | {
|
|
23362
23403
|
/** The ID of the action attempt. */
|
|
23363
23404
|
action_attempt_id: string;
|
|
23364
23405
|
status: 'success';
|
|
23365
23406
|
error: null;
|
|
23366
|
-
action_type: '
|
|
23407
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
23367
23408
|
/** Means by which a user gains access at an entrance.
|
|
23368
23409
|
|
|
23369
23410
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -23487,7 +23528,7 @@ export interface Routes {
|
|
|
23487
23528
|
action_attempt_id: string;
|
|
23488
23529
|
status: 'error';
|
|
23489
23530
|
result: null;
|
|
23490
|
-
action_type: '
|
|
23531
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
23491
23532
|
error: {
|
|
23492
23533
|
type: 'uncategorized_error';
|
|
23493
23534
|
message: string;
|
|
@@ -24076,7 +24117,7 @@ export interface Routes {
|
|
|
24076
24117
|
/** Unique identifier for the device. */
|
|
24077
24118
|
device_id: string;
|
|
24078
24119
|
/** Type of the device. */
|
|
24079
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
24120
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
24080
24121
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24081
24122
|
nickname?: string | undefined;
|
|
24082
24123
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -24383,6 +24424,9 @@ export interface Routes {
|
|
|
24383
24424
|
gadget_id: string;
|
|
24384
24425
|
_member_group_id?: string | undefined;
|
|
24385
24426
|
} | undefined;
|
|
24427
|
+
assa_abloy_vostio_metadata?: {
|
|
24428
|
+
encoder_id: string;
|
|
24429
|
+
} | undefined;
|
|
24386
24430
|
}) & ({
|
|
24387
24431
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
24388
24432
|
code_constraints?: (Array<{
|
|
@@ -24537,7 +24581,7 @@ export interface Routes {
|
|
|
24537
24581
|
/** Unique identifier for the device. */
|
|
24538
24582
|
device_id: string;
|
|
24539
24583
|
/** Type of the device. */
|
|
24540
|
-
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | 'visionline_encoder';
|
|
24584
|
+
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat') | ('ios_phone' | 'android_phone') | ('visionline_encoder' | 'assa_abloy_vostio_encoder');
|
|
24541
24585
|
/** Optional nickname to describe the device, settable through Seam */
|
|
24542
24586
|
nickname?: string | undefined;
|
|
24543
24587
|
/** Display name of the device, defaults to nickname (if it is set) or properties.appearance.name otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
|
|
@@ -24844,6 +24888,9 @@ export interface Routes {
|
|
|
24844
24888
|
gadget_id: string;
|
|
24845
24889
|
_member_group_id?: string | undefined;
|
|
24846
24890
|
} | undefined;
|
|
24891
|
+
assa_abloy_vostio_metadata?: {
|
|
24892
|
+
encoder_id: string;
|
|
24893
|
+
} | undefined;
|
|
24847
24894
|
}) & ({
|
|
24848
24895
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
24849
24896
|
code_constraints?: (Array<{
|
|
@@ -25442,15 +25489,15 @@ export interface Routes {
|
|
|
25442
25489
|
status: 'pending';
|
|
25443
25490
|
result: null;
|
|
25444
25491
|
error: null;
|
|
25445
|
-
action_type: '
|
|
25492
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
25446
25493
|
} | {
|
|
25447
25494
|
/** The ID of the action attempt. */
|
|
25448
25495
|
action_attempt_id: string;
|
|
25449
25496
|
status: 'success';
|
|
25450
25497
|
error: null;
|
|
25451
|
-
action_type: '
|
|
25498
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
25452
25499
|
result: {
|
|
25453
|
-
/** Snapshot of
|
|
25500
|
+
/** Snapshot of credential data read from physical encoder. */
|
|
25454
25501
|
acs_credential_on_encoder: {
|
|
25455
25502
|
/** Date and time the credential was created. */
|
|
25456
25503
|
created_at: string | null;
|
|
@@ -25603,7 +25650,7 @@ export interface Routes {
|
|
|
25603
25650
|
action_attempt_id: string;
|
|
25604
25651
|
status: 'error';
|
|
25605
25652
|
result: null;
|
|
25606
|
-
action_type: '
|
|
25653
|
+
action_type: 'SCAN_CREDENTIAL';
|
|
25607
25654
|
error: {
|
|
25608
25655
|
type: 'uncategorized_error';
|
|
25609
25656
|
message: string;
|
|
@@ -25620,13 +25667,13 @@ export interface Routes {
|
|
|
25620
25667
|
status: 'pending';
|
|
25621
25668
|
result: null;
|
|
25622
25669
|
error: null;
|
|
25623
|
-
action_type: '
|
|
25670
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
25624
25671
|
} | {
|
|
25625
25672
|
/** The ID of the action attempt. */
|
|
25626
25673
|
action_attempt_id: string;
|
|
25627
25674
|
status: 'success';
|
|
25628
25675
|
error: null;
|
|
25629
|
-
action_type: '
|
|
25676
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
25630
25677
|
/** Means by which a user gains access at an entrance.
|
|
25631
25678
|
|
|
25632
25679
|
The `acs_credential` object represents a credential that provides an ACS user access within an access control system. For each acs_credential object, you define the access method. You can also specify additional properties, such as a code. */
|
|
@@ -25750,7 +25797,7 @@ export interface Routes {
|
|
|
25750
25797
|
action_attempt_id: string;
|
|
25751
25798
|
status: 'error';
|
|
25752
25799
|
result: null;
|
|
25753
|
-
action_type: '
|
|
25800
|
+
action_type: 'ENCODE_CREDENTIAL';
|
|
25754
25801
|
error: {
|
|
25755
25802
|
type: 'uncategorized_error';
|
|
25756
25803
|
message: string;
|