@seamapi/types 1.600.0 → 1.602.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +88 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +493 -77
- package/dist/index.cjs +88 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +15 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +11 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +174 -35
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +3 -2
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
- 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 +10 -3
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +8 -3
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +53 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +375 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +14 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +14 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +4 -2
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +59 -3
- package/src/lib/seam/connect/route-types.ts +431 -34
package/dist/connect.d.cts
CHANGED
|
@@ -7980,6 +7980,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7980
7980
|
}, {
|
|
7981
7981
|
message: string;
|
|
7982
7982
|
type: "no_credential_on_encoder";
|
|
7983
|
+
}>, z.ZodObject<{
|
|
7984
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
7985
|
+
message: z.ZodString;
|
|
7986
|
+
}, "strip", z.ZodTypeAny, {
|
|
7987
|
+
message: string;
|
|
7988
|
+
type: "no_card_on_encoder";
|
|
7989
|
+
}, {
|
|
7990
|
+
message: string;
|
|
7991
|
+
type: "no_card_on_encoder";
|
|
7983
7992
|
}>]>;
|
|
7984
7993
|
}, "strip", z.ZodTypeAny, {
|
|
7985
7994
|
status: "error";
|
|
@@ -7993,6 +8002,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7993
8002
|
} | {
|
|
7994
8003
|
message: string;
|
|
7995
8004
|
type: "no_credential_on_encoder";
|
|
8005
|
+
} | {
|
|
8006
|
+
message: string;
|
|
8007
|
+
type: "no_card_on_encoder";
|
|
7996
8008
|
};
|
|
7997
8009
|
result: null;
|
|
7998
8010
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -8008,6 +8020,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8008
8020
|
} | {
|
|
8009
8021
|
message: string;
|
|
8010
8022
|
type: "no_credential_on_encoder";
|
|
8023
|
+
} | {
|
|
8024
|
+
message: string;
|
|
8025
|
+
type: "no_card_on_encoder";
|
|
8011
8026
|
};
|
|
8012
8027
|
result: null;
|
|
8013
8028
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -9009,6 +9024,15 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9009
9024
|
}, {
|
|
9010
9025
|
message: string;
|
|
9011
9026
|
type: "credential_cannot_be_reissued";
|
|
9027
|
+
}>, z.ZodObject<{
|
|
9028
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
9029
|
+
message: z.ZodString;
|
|
9030
|
+
}, "strip", z.ZodTypeAny, {
|
|
9031
|
+
message: string;
|
|
9032
|
+
type: "no_card_on_encoder";
|
|
9033
|
+
}, {
|
|
9034
|
+
message: string;
|
|
9035
|
+
type: "no_card_on_encoder";
|
|
9012
9036
|
}>]>;
|
|
9013
9037
|
}, "strip", z.ZodTypeAny, {
|
|
9014
9038
|
status: "error";
|
|
@@ -9028,6 +9052,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9028
9052
|
} | {
|
|
9029
9053
|
message: string;
|
|
9030
9054
|
type: "credential_cannot_be_reissued";
|
|
9055
|
+
} | {
|
|
9056
|
+
message: string;
|
|
9057
|
+
type: "no_card_on_encoder";
|
|
9031
9058
|
};
|
|
9032
9059
|
result: null;
|
|
9033
9060
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -9049,6 +9076,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
9049
9076
|
} | {
|
|
9050
9077
|
message: string;
|
|
9051
9078
|
type: "credential_cannot_be_reissued";
|
|
9079
|
+
} | {
|
|
9080
|
+
message: string;
|
|
9081
|
+
type: "no_card_on_encoder";
|
|
9052
9082
|
};
|
|
9053
9083
|
result: null;
|
|
9054
9084
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -10400,7 +10430,7 @@ declare const batch: z.ZodObject<{
|
|
|
10400
10430
|
}>, "many">>;
|
|
10401
10431
|
devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10402
10432
|
device_id: z.ZodString;
|
|
10403
|
-
device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
10433
|
+
device_type: z.ZodUnion<[z.ZodEnum<["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" | "ultraloq_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
10404
10434
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
10405
10435
|
nickname: z.ZodOptional<z.ZodString>;
|
|
10406
10436
|
display_name: z.ZodString;
|
|
@@ -11427,10 +11457,13 @@ declare const batch: z.ZodObject<{
|
|
|
11427
11457
|
}>>;
|
|
11428
11458
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
11429
11459
|
device_id: z.ZodString;
|
|
11460
|
+
device_name: z.ZodString;
|
|
11430
11461
|
}, "strip", z.ZodTypeAny, {
|
|
11431
11462
|
device_id: string;
|
|
11463
|
+
device_name: string;
|
|
11432
11464
|
}, {
|
|
11433
11465
|
device_id: string;
|
|
11466
|
+
device_name: string;
|
|
11434
11467
|
}>>;
|
|
11435
11468
|
}, "strip", z.ZodTypeAny, {
|
|
11436
11469
|
ecobee_metadata?: {
|
|
@@ -11690,6 +11723,7 @@ declare const batch: z.ZodObject<{
|
|
|
11690
11723
|
} | undefined;
|
|
11691
11724
|
ultraloq_metadata?: {
|
|
11692
11725
|
device_id: string;
|
|
11726
|
+
device_name: string;
|
|
11693
11727
|
} | undefined;
|
|
11694
11728
|
}, {
|
|
11695
11729
|
ecobee_metadata?: {
|
|
@@ -11949,6 +11983,7 @@ declare const batch: z.ZodObject<{
|
|
|
11949
11983
|
} | undefined;
|
|
11950
11984
|
ultraloq_metadata?: {
|
|
11951
11985
|
device_id: string;
|
|
11986
|
+
device_name: string;
|
|
11952
11987
|
} | undefined;
|
|
11953
11988
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
11954
11989
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -13423,7 +13458,7 @@ declare const batch: z.ZodObject<{
|
|
|
13423
13458
|
warning_code: "unknown_issue_with_phone";
|
|
13424
13459
|
})[];
|
|
13425
13460
|
custom_metadata: Record<string, string | boolean>;
|
|
13426
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
13461
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
13427
13462
|
space_ids: string[];
|
|
13428
13463
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
13429
13464
|
properties: {
|
|
@@ -13732,6 +13767,7 @@ declare const batch: z.ZodObject<{
|
|
|
13732
13767
|
} | undefined;
|
|
13733
13768
|
ultraloq_metadata?: {
|
|
13734
13769
|
device_id: string;
|
|
13770
|
+
device_name: string;
|
|
13735
13771
|
} | undefined;
|
|
13736
13772
|
} & {
|
|
13737
13773
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14085,7 +14121,7 @@ declare const batch: z.ZodObject<{
|
|
|
14085
14121
|
warning_code: "unknown_issue_with_phone";
|
|
14086
14122
|
})[];
|
|
14087
14123
|
custom_metadata: Record<string, string | boolean>;
|
|
14088
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
14124
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
14089
14125
|
space_ids: string[];
|
|
14090
14126
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
14091
14127
|
properties: {
|
|
@@ -14394,6 +14430,7 @@ declare const batch: z.ZodObject<{
|
|
|
14394
14430
|
} | undefined;
|
|
14395
14431
|
ultraloq_metadata?: {
|
|
14396
14432
|
device_id: string;
|
|
14433
|
+
device_name: string;
|
|
14397
14434
|
} | undefined;
|
|
14398
14435
|
} & {
|
|
14399
14436
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -18135,6 +18172,15 @@ declare const batch: z.ZodObject<{
|
|
|
18135
18172
|
}, {
|
|
18136
18173
|
message: string;
|
|
18137
18174
|
type: "no_credential_on_encoder";
|
|
18175
|
+
}>, z.ZodObject<{
|
|
18176
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
18177
|
+
message: z.ZodString;
|
|
18178
|
+
}, "strip", z.ZodTypeAny, {
|
|
18179
|
+
message: string;
|
|
18180
|
+
type: "no_card_on_encoder";
|
|
18181
|
+
}, {
|
|
18182
|
+
message: string;
|
|
18183
|
+
type: "no_card_on_encoder";
|
|
18138
18184
|
}>]>;
|
|
18139
18185
|
}, "strip", z.ZodTypeAny, {
|
|
18140
18186
|
status: "error";
|
|
@@ -18148,6 +18194,9 @@ declare const batch: z.ZodObject<{
|
|
|
18148
18194
|
} | {
|
|
18149
18195
|
message: string;
|
|
18150
18196
|
type: "no_credential_on_encoder";
|
|
18197
|
+
} | {
|
|
18198
|
+
message: string;
|
|
18199
|
+
type: "no_card_on_encoder";
|
|
18151
18200
|
};
|
|
18152
18201
|
result: null;
|
|
18153
18202
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -18163,6 +18212,9 @@ declare const batch: z.ZodObject<{
|
|
|
18163
18212
|
} | {
|
|
18164
18213
|
message: string;
|
|
18165
18214
|
type: "no_credential_on_encoder";
|
|
18215
|
+
} | {
|
|
18216
|
+
message: string;
|
|
18217
|
+
type: "no_card_on_encoder";
|
|
18166
18218
|
};
|
|
18167
18219
|
result: null;
|
|
18168
18220
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -19164,6 +19216,15 @@ declare const batch: z.ZodObject<{
|
|
|
19164
19216
|
}, {
|
|
19165
19217
|
message: string;
|
|
19166
19218
|
type: "credential_cannot_be_reissued";
|
|
19219
|
+
}>, z.ZodObject<{
|
|
19220
|
+
type: z.ZodLiteral<"no_card_on_encoder">;
|
|
19221
|
+
message: z.ZodString;
|
|
19222
|
+
}, "strip", z.ZodTypeAny, {
|
|
19223
|
+
message: string;
|
|
19224
|
+
type: "no_card_on_encoder";
|
|
19225
|
+
}, {
|
|
19226
|
+
message: string;
|
|
19227
|
+
type: "no_card_on_encoder";
|
|
19167
19228
|
}>]>;
|
|
19168
19229
|
}, "strip", z.ZodTypeAny, {
|
|
19169
19230
|
status: "error";
|
|
@@ -19183,6 +19244,9 @@ declare const batch: z.ZodObject<{
|
|
|
19183
19244
|
} | {
|
|
19184
19245
|
message: string;
|
|
19185
19246
|
type: "credential_cannot_be_reissued";
|
|
19247
|
+
} | {
|
|
19248
|
+
message: string;
|
|
19249
|
+
type: "no_card_on_encoder";
|
|
19186
19250
|
};
|
|
19187
19251
|
result: null;
|
|
19188
19252
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -19204,6 +19268,9 @@ declare const batch: z.ZodObject<{
|
|
|
19204
19268
|
} | {
|
|
19205
19269
|
message: string;
|
|
19206
19270
|
type: "credential_cannot_be_reissued";
|
|
19271
|
+
} | {
|
|
19272
|
+
message: string;
|
|
19273
|
+
type: "no_card_on_encoder";
|
|
19207
19274
|
};
|
|
19208
19275
|
result: null;
|
|
19209
19276
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -21028,7 +21095,7 @@ declare const batch: z.ZodObject<{
|
|
|
21028
21095
|
}>, "many">>;
|
|
21029
21096
|
unmanaged_devices: z.ZodOptional<z.ZodArray<z.ZodObject<Pick<{
|
|
21030
21097
|
device_id: z.ZodString;
|
|
21031
|
-
device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
21098
|
+
device_type: z.ZodUnion<[z.ZodEnum<["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" | "ultraloq_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
21032
21099
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
21033
21100
|
nickname: z.ZodOptional<z.ZodString>;
|
|
21034
21101
|
display_name: z.ZodString;
|
|
@@ -22055,10 +22122,13 @@ declare const batch: z.ZodObject<{
|
|
|
22055
22122
|
}>>;
|
|
22056
22123
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
22057
22124
|
device_id: z.ZodString;
|
|
22125
|
+
device_name: z.ZodString;
|
|
22058
22126
|
}, "strip", z.ZodTypeAny, {
|
|
22059
22127
|
device_id: string;
|
|
22128
|
+
device_name: string;
|
|
22060
22129
|
}, {
|
|
22061
22130
|
device_id: string;
|
|
22131
|
+
device_name: string;
|
|
22062
22132
|
}>>;
|
|
22063
22133
|
}, "strip", z.ZodTypeAny, {
|
|
22064
22134
|
ecobee_metadata?: {
|
|
@@ -22318,6 +22388,7 @@ declare const batch: z.ZodObject<{
|
|
|
22318
22388
|
} | undefined;
|
|
22319
22389
|
ultraloq_metadata?: {
|
|
22320
22390
|
device_id: string;
|
|
22391
|
+
device_name: string;
|
|
22321
22392
|
} | undefined;
|
|
22322
22393
|
}, {
|
|
22323
22394
|
ecobee_metadata?: {
|
|
@@ -22577,6 +22648,7 @@ declare const batch: z.ZodObject<{
|
|
|
22577
22648
|
} | undefined;
|
|
22578
22649
|
ultraloq_metadata?: {
|
|
22579
22650
|
device_id: string;
|
|
22651
|
+
device_name: string;
|
|
22580
22652
|
} | undefined;
|
|
22581
22653
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
22582
22654
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -24206,7 +24278,7 @@ declare const batch: z.ZodObject<{
|
|
|
24206
24278
|
warning_code: "unknown_issue_with_phone";
|
|
24207
24279
|
})[];
|
|
24208
24280
|
custom_metadata: Record<string, string | boolean>;
|
|
24209
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
24281
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
24210
24282
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
24211
24283
|
properties: {
|
|
24212
24284
|
name: string;
|
|
@@ -24435,7 +24507,7 @@ declare const batch: z.ZodObject<{
|
|
|
24435
24507
|
warning_code: "unknown_issue_with_phone";
|
|
24436
24508
|
})[];
|
|
24437
24509
|
custom_metadata: Record<string, string | boolean>;
|
|
24438
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
24510
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
24439
24511
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
24440
24512
|
properties: {
|
|
24441
24513
|
name: string;
|
|
@@ -31105,7 +31177,7 @@ declare const batch: z.ZodObject<{
|
|
|
31105
31177
|
warning_code: "unknown_issue_with_phone";
|
|
31106
31178
|
})[];
|
|
31107
31179
|
custom_metadata: Record<string, string | boolean>;
|
|
31108
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
31180
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
31109
31181
|
space_ids: string[];
|
|
31110
31182
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
31111
31183
|
properties: {
|
|
@@ -31414,6 +31486,7 @@ declare const batch: z.ZodObject<{
|
|
|
31414
31486
|
} | undefined;
|
|
31415
31487
|
ultraloq_metadata?: {
|
|
31416
31488
|
device_id: string;
|
|
31489
|
+
device_name: string;
|
|
31417
31490
|
} | undefined;
|
|
31418
31491
|
} & {
|
|
31419
31492
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -32496,6 +32569,9 @@ declare const batch: z.ZodObject<{
|
|
|
32496
32569
|
} | {
|
|
32497
32570
|
message: string;
|
|
32498
32571
|
type: "credential_cannot_be_reissued";
|
|
32572
|
+
} | {
|
|
32573
|
+
message: string;
|
|
32574
|
+
type: "no_card_on_encoder";
|
|
32499
32575
|
};
|
|
32500
32576
|
result: null;
|
|
32501
32577
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -32757,6 +32833,9 @@ declare const batch: z.ZodObject<{
|
|
|
32757
32833
|
} | {
|
|
32758
32834
|
message: string;
|
|
32759
32835
|
type: "no_credential_on_encoder";
|
|
32836
|
+
} | {
|
|
32837
|
+
message: string;
|
|
32838
|
+
type: "no_card_on_encoder";
|
|
32760
32839
|
};
|
|
32761
32840
|
result: null;
|
|
32762
32841
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -33182,7 +33261,7 @@ declare const batch: z.ZodObject<{
|
|
|
33182
33261
|
warning_code: "unknown_issue_with_phone";
|
|
33183
33262
|
})[];
|
|
33184
33263
|
custom_metadata: Record<string, string | boolean>;
|
|
33185
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
33264
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
33186
33265
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
33187
33266
|
properties: {
|
|
33188
33267
|
name: string;
|
|
@@ -35007,7 +35086,7 @@ declare const batch: z.ZodObject<{
|
|
|
35007
35086
|
warning_code: "unknown_issue_with_phone";
|
|
35008
35087
|
})[];
|
|
35009
35088
|
custom_metadata: Record<string, string | boolean>;
|
|
35010
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
35089
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
35011
35090
|
space_ids: string[];
|
|
35012
35091
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
35013
35092
|
properties: {
|
|
@@ -35316,6 +35395,7 @@ declare const batch: z.ZodObject<{
|
|
|
35316
35395
|
} | undefined;
|
|
35317
35396
|
ultraloq_metadata?: {
|
|
35318
35397
|
device_id: string;
|
|
35398
|
+
device_name: string;
|
|
35319
35399
|
} | undefined;
|
|
35320
35400
|
} & {
|
|
35321
35401
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -36398,6 +36478,9 @@ declare const batch: z.ZodObject<{
|
|
|
36398
36478
|
} | {
|
|
36399
36479
|
message: string;
|
|
36400
36480
|
type: "credential_cannot_be_reissued";
|
|
36481
|
+
} | {
|
|
36482
|
+
message: string;
|
|
36483
|
+
type: "no_card_on_encoder";
|
|
36401
36484
|
};
|
|
36402
36485
|
result: null;
|
|
36403
36486
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -36659,6 +36742,9 @@ declare const batch: z.ZodObject<{
|
|
|
36659
36742
|
} | {
|
|
36660
36743
|
message: string;
|
|
36661
36744
|
type: "no_credential_on_encoder";
|
|
36745
|
+
} | {
|
|
36746
|
+
message: string;
|
|
36747
|
+
type: "no_card_on_encoder";
|
|
36662
36748
|
};
|
|
36663
36749
|
result: null;
|
|
36664
36750
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -37084,7 +37170,7 @@ declare const batch: z.ZodObject<{
|
|
|
37084
37170
|
warning_code: "unknown_issue_with_phone";
|
|
37085
37171
|
})[];
|
|
37086
37172
|
custom_metadata: Record<string, string | boolean>;
|
|
37087
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
37173
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
37088
37174
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
37089
37175
|
properties: {
|
|
37090
37176
|
name: string;
|
|
@@ -40022,7 +40108,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
40022
40108
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
40023
40109
|
declare const device: z.ZodObject<{
|
|
40024
40110
|
device_id: z.ZodString;
|
|
40025
|
-
device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
40111
|
+
device_type: z.ZodUnion<[z.ZodEnum<["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" | "ultraloq_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
40026
40112
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
40027
40113
|
nickname: z.ZodOptional<z.ZodString>;
|
|
40028
40114
|
display_name: z.ZodString;
|
|
@@ -41049,10 +41135,13 @@ declare const device: z.ZodObject<{
|
|
|
41049
41135
|
}>>;
|
|
41050
41136
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
41051
41137
|
device_id: z.ZodString;
|
|
41138
|
+
device_name: z.ZodString;
|
|
41052
41139
|
}, "strip", z.ZodTypeAny, {
|
|
41053
41140
|
device_id: string;
|
|
41141
|
+
device_name: string;
|
|
41054
41142
|
}, {
|
|
41055
41143
|
device_id: string;
|
|
41144
|
+
device_name: string;
|
|
41056
41145
|
}>>;
|
|
41057
41146
|
}, "strip", z.ZodTypeAny, {
|
|
41058
41147
|
ecobee_metadata?: {
|
|
@@ -41312,6 +41401,7 @@ declare const device: z.ZodObject<{
|
|
|
41312
41401
|
} | undefined;
|
|
41313
41402
|
ultraloq_metadata?: {
|
|
41314
41403
|
device_id: string;
|
|
41404
|
+
device_name: string;
|
|
41315
41405
|
} | undefined;
|
|
41316
41406
|
}, {
|
|
41317
41407
|
ecobee_metadata?: {
|
|
@@ -41571,6 +41661,7 @@ declare const device: z.ZodObject<{
|
|
|
41571
41661
|
} | undefined;
|
|
41572
41662
|
ultraloq_metadata?: {
|
|
41573
41663
|
device_id: string;
|
|
41664
|
+
device_name: string;
|
|
41574
41665
|
} | undefined;
|
|
41575
41666
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
41576
41667
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -43045,7 +43136,7 @@ declare const device: z.ZodObject<{
|
|
|
43045
43136
|
warning_code: "unknown_issue_with_phone";
|
|
43046
43137
|
})[];
|
|
43047
43138
|
custom_metadata: Record<string, string | boolean>;
|
|
43048
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
43139
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
43049
43140
|
space_ids: string[];
|
|
43050
43141
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
43051
43142
|
properties: {
|
|
@@ -43354,6 +43445,7 @@ declare const device: z.ZodObject<{
|
|
|
43354
43445
|
} | undefined;
|
|
43355
43446
|
ultraloq_metadata?: {
|
|
43356
43447
|
device_id: string;
|
|
43448
|
+
device_name: string;
|
|
43357
43449
|
} | undefined;
|
|
43358
43450
|
} & {
|
|
43359
43451
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -43707,7 +43799,7 @@ declare const device: z.ZodObject<{
|
|
|
43707
43799
|
warning_code: "unknown_issue_with_phone";
|
|
43708
43800
|
})[];
|
|
43709
43801
|
custom_metadata: Record<string, string | boolean>;
|
|
43710
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
43802
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
43711
43803
|
space_ids: string[];
|
|
43712
43804
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
43713
43805
|
properties: {
|
|
@@ -44016,6 +44108,7 @@ declare const device: z.ZodObject<{
|
|
|
44016
44108
|
} | undefined;
|
|
44017
44109
|
ultraloq_metadata?: {
|
|
44018
44110
|
device_id: string;
|
|
44111
|
+
device_name: string;
|
|
44019
44112
|
} | undefined;
|
|
44020
44113
|
} & {
|
|
44021
44114
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -44328,7 +44421,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
44328
44421
|
|
|
44329
44422
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
44330
44423
|
device_id: z.ZodString;
|
|
44331
|
-
device_type: z.ZodUnion<[z.ZodEnum<["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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
44424
|
+
device_type: z.ZodUnion<[z.ZodEnum<["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" | "ultraloq_lock"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>]>;
|
|
44332
44425
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
44333
44426
|
nickname: z.ZodOptional<z.ZodString>;
|
|
44334
44427
|
display_name: z.ZodString;
|
|
@@ -45355,10 +45448,13 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45355
45448
|
}>>;
|
|
45356
45449
|
ultraloq_metadata: z.ZodOptional<z.ZodObject<{
|
|
45357
45450
|
device_id: z.ZodString;
|
|
45451
|
+
device_name: z.ZodString;
|
|
45358
45452
|
}, "strip", z.ZodTypeAny, {
|
|
45359
45453
|
device_id: string;
|
|
45454
|
+
device_name: string;
|
|
45360
45455
|
}, {
|
|
45361
45456
|
device_id: string;
|
|
45457
|
+
device_name: string;
|
|
45362
45458
|
}>>;
|
|
45363
45459
|
}, "strip", z.ZodTypeAny, {
|
|
45364
45460
|
ecobee_metadata?: {
|
|
@@ -45618,6 +45714,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45618
45714
|
} | undefined;
|
|
45619
45715
|
ultraloq_metadata?: {
|
|
45620
45716
|
device_id: string;
|
|
45717
|
+
device_name: string;
|
|
45621
45718
|
} | undefined;
|
|
45622
45719
|
}, {
|
|
45623
45720
|
ecobee_metadata?: {
|
|
@@ -45877,6 +45974,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45877
45974
|
} | undefined;
|
|
45878
45975
|
ultraloq_metadata?: {
|
|
45879
45976
|
device_id: string;
|
|
45977
|
+
device_name: string;
|
|
45880
45978
|
} | undefined;
|
|
45881
45979
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
45882
45980
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -47506,7 +47604,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47506
47604
|
warning_code: "unknown_issue_with_phone";
|
|
47507
47605
|
})[];
|
|
47508
47606
|
custom_metadata: Record<string, string | boolean>;
|
|
47509
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
47607
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
47510
47608
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
47511
47609
|
properties: {
|
|
47512
47610
|
name: string;
|
|
@@ -47735,7 +47833,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47735
47833
|
warning_code: "unknown_issue_with_phone";
|
|
47736
47834
|
})[];
|
|
47737
47835
|
custom_metadata: Record<string, string | boolean>;
|
|
47738
|
-
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") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
47836
|
+
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" | "ultraloq_lock") | "keynest_key" | ("noiseaware_activity_zone" | "minut_sensor") | ("ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat") | ("ios_phone" | "android_phone");
|
|
47739
47837
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
47740
47838
|
properties: {
|
|
47741
47839
|
name: string;
|
|
@@ -57363,6 +57461,10 @@ declare const _default: {
|
|
|
57363
57461
|
description: string;
|
|
57364
57462
|
type: string;
|
|
57365
57463
|
};
|
|
57464
|
+
device_name: {
|
|
57465
|
+
description: string;
|
|
57466
|
+
type: string;
|
|
57467
|
+
};
|
|
57366
57468
|
};
|
|
57367
57469
|
required: string[];
|
|
57368
57470
|
type: string;
|
|
@@ -108591,6 +108693,11 @@ type Routes = {
|
|
|
108591
108693
|
type: 'no_credential_on_encoder';
|
|
108592
108694
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108593
108695
|
message: string;
|
|
108696
|
+
} | {
|
|
108697
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
108698
|
+
type: 'no_card_on_encoder';
|
|
108699
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108700
|
+
message: string;
|
|
108594
108701
|
};
|
|
108595
108702
|
} | {
|
|
108596
108703
|
/** ID of the action attempt. */
|
|
@@ -108905,6 +109012,11 @@ type Routes = {
|
|
|
108905
109012
|
type: 'credential_cannot_be_reissued';
|
|
108906
109013
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108907
109014
|
message: string;
|
|
109015
|
+
} | {
|
|
109016
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
109017
|
+
type: 'no_card_on_encoder';
|
|
109018
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109019
|
+
message: string;
|
|
108908
109020
|
};
|
|
108909
109021
|
} | {
|
|
108910
109022
|
/** ID of the action attempt. */
|
|
@@ -110901,6 +111013,11 @@ type Routes = {
|
|
|
110901
111013
|
type: 'no_credential_on_encoder';
|
|
110902
111014
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
110903
111015
|
message: string;
|
|
111016
|
+
} | {
|
|
111017
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
111018
|
+
type: 'no_card_on_encoder';
|
|
111019
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111020
|
+
message: string;
|
|
110904
111021
|
};
|
|
110905
111022
|
} | {
|
|
110906
111023
|
/** ID of the action attempt. */
|
|
@@ -111215,6 +111332,11 @@ type Routes = {
|
|
|
111215
111332
|
type: 'credential_cannot_be_reissued';
|
|
111216
111333
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111217
111334
|
message: string;
|
|
111335
|
+
} | {
|
|
111336
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
111337
|
+
type: 'no_card_on_encoder';
|
|
111338
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111339
|
+
message: string;
|
|
111218
111340
|
};
|
|
111219
111341
|
} | {
|
|
111220
111342
|
/** ID of the action attempt. */
|
|
@@ -114789,6 +114911,11 @@ type Routes = {
|
|
|
114789
114911
|
type: 'no_credential_on_encoder';
|
|
114790
114912
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114791
114913
|
message: string;
|
|
114914
|
+
} | {
|
|
114915
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
114916
|
+
type: 'no_card_on_encoder';
|
|
114917
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114918
|
+
message: string;
|
|
114792
114919
|
};
|
|
114793
114920
|
} | {
|
|
114794
114921
|
/** ID of the action attempt. */
|
|
@@ -115103,6 +115230,11 @@ type Routes = {
|
|
|
115103
115230
|
type: 'credential_cannot_be_reissued';
|
|
115104
115231
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115105
115232
|
message: string;
|
|
115233
|
+
} | {
|
|
115234
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
115235
|
+
type: 'no_card_on_encoder';
|
|
115236
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115237
|
+
message: string;
|
|
115106
115238
|
};
|
|
115107
115239
|
} | {
|
|
115108
115240
|
/** ID of the action attempt. */
|
|
@@ -117120,6 +117252,11 @@ type Routes = {
|
|
|
117120
117252
|
type: 'no_credential_on_encoder';
|
|
117121
117253
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117122
117254
|
message: string;
|
|
117255
|
+
} | {
|
|
117256
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
117257
|
+
type: 'no_card_on_encoder';
|
|
117258
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117259
|
+
message: string;
|
|
117123
117260
|
};
|
|
117124
117261
|
} | {
|
|
117125
117262
|
/** ID of the action attempt. */
|
|
@@ -117434,6 +117571,11 @@ type Routes = {
|
|
|
117434
117571
|
type: 'credential_cannot_be_reissued';
|
|
117435
117572
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117436
117573
|
message: string;
|
|
117574
|
+
} | {
|
|
117575
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
117576
|
+
type: 'no_card_on_encoder';
|
|
117577
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
117578
|
+
message: string;
|
|
117437
117579
|
};
|
|
117438
117580
|
} | {
|
|
117439
117581
|
/** ID of the action attempt. */
|
|
@@ -118208,7 +118350,7 @@ type Routes = {
|
|
|
118208
118350
|
/** ID of the device. */
|
|
118209
118351
|
device_id: string;
|
|
118210
118352
|
/** Type of the device. */
|
|
118211
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
118353
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
118212
118354
|
/** IDs of the spaces the device is in. */
|
|
118213
118355
|
space_ids: string[];
|
|
118214
118356
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -118796,10 +118938,12 @@ type Routes = {
|
|
|
118796
118938
|
/** Whether the KeyNest device has a photo. */
|
|
118797
118939
|
has_photo?: boolean | undefined;
|
|
118798
118940
|
} | undefined;
|
|
118799
|
-
/** Metadata for
|
|
118941
|
+
/** Metadata for an Ultraloq device. */
|
|
118800
118942
|
ultraloq_metadata?: {
|
|
118801
|
-
/** Device ID for
|
|
118943
|
+
/** Device ID for an Ultraloq device. */
|
|
118802
118944
|
device_id: string;
|
|
118945
|
+
/** Device name for an Ultraloq device. */
|
|
118946
|
+
device_name: string;
|
|
118803
118947
|
} | undefined;
|
|
118804
118948
|
}) & ({
|
|
118805
118949
|
/** */
|
|
@@ -120631,6 +120775,11 @@ type Routes = {
|
|
|
120631
120775
|
type: 'no_credential_on_encoder';
|
|
120632
120776
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120633
120777
|
message: string;
|
|
120778
|
+
} | {
|
|
120779
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
120780
|
+
type: 'no_card_on_encoder';
|
|
120781
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120782
|
+
message: string;
|
|
120634
120783
|
};
|
|
120635
120784
|
} | {
|
|
120636
120785
|
/** ID of the action attempt. */
|
|
@@ -120945,6 +121094,11 @@ type Routes = {
|
|
|
120945
121094
|
type: 'credential_cannot_be_reissued';
|
|
120946
121095
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120947
121096
|
message: string;
|
|
121097
|
+
} | {
|
|
121098
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
121099
|
+
type: 'no_card_on_encoder';
|
|
121100
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121101
|
+
message: string;
|
|
120948
121102
|
};
|
|
120949
121103
|
} | {
|
|
120950
121104
|
/** ID of the action attempt. */
|
|
@@ -121620,7 +121774,7 @@ type Routes = {
|
|
|
121620
121774
|
/** ID of the device. */
|
|
121621
121775
|
device_id: string;
|
|
121622
121776
|
/** Type of the device. */
|
|
121623
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
121777
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
121624
121778
|
/** IDs of the spaces the device is in. */
|
|
121625
121779
|
space_ids: string[];
|
|
121626
121780
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -122208,10 +122362,12 @@ type Routes = {
|
|
|
122208
122362
|
/** Whether the KeyNest device has a photo. */
|
|
122209
122363
|
has_photo?: boolean | undefined;
|
|
122210
122364
|
} | undefined;
|
|
122211
|
-
/** Metadata for
|
|
122365
|
+
/** Metadata for an Ultraloq device. */
|
|
122212
122366
|
ultraloq_metadata?: {
|
|
122213
|
-
/** Device ID for
|
|
122367
|
+
/** Device ID for an Ultraloq device. */
|
|
122214
122368
|
device_id: string;
|
|
122369
|
+
/** Device name for an Ultraloq device. */
|
|
122370
|
+
device_name: string;
|
|
122215
122371
|
} | undefined;
|
|
122216
122372
|
}) & ({
|
|
122217
122373
|
/** */
|
|
@@ -124014,6 +124170,11 @@ type Routes = {
|
|
|
124014
124170
|
type: 'no_credential_on_encoder';
|
|
124015
124171
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
124016
124172
|
message: string;
|
|
124173
|
+
} | {
|
|
124174
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
124175
|
+
type: 'no_card_on_encoder';
|
|
124176
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
124177
|
+
message: string;
|
|
124017
124178
|
};
|
|
124018
124179
|
} | {
|
|
124019
124180
|
/** ID of the action attempt. */
|
|
@@ -124328,6 +124489,11 @@ type Routes = {
|
|
|
124328
124489
|
type: 'credential_cannot_be_reissued';
|
|
124329
124490
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
124330
124491
|
message: string;
|
|
124492
|
+
} | {
|
|
124493
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
124494
|
+
type: 'no_card_on_encoder';
|
|
124495
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
124496
|
+
message: string;
|
|
124331
124497
|
};
|
|
124332
124498
|
} | {
|
|
124333
124499
|
/** ID of the action attempt. */
|
|
@@ -125106,7 +125272,7 @@ type Routes = {
|
|
|
125106
125272
|
/** ID of the device. */
|
|
125107
125273
|
device_id: string;
|
|
125108
125274
|
/** Type of the device. */
|
|
125109
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
125275
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
125110
125276
|
/** Unique identifier for the account associated with the device. */
|
|
125111
125277
|
connected_account_id: string;
|
|
125112
125278
|
/** Location information for the device. */
|
|
@@ -131407,6 +131573,11 @@ type Routes = {
|
|
|
131407
131573
|
type: 'no_credential_on_encoder';
|
|
131408
131574
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131409
131575
|
message: string;
|
|
131576
|
+
} | {
|
|
131577
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
131578
|
+
type: 'no_card_on_encoder';
|
|
131579
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131580
|
+
message: string;
|
|
131410
131581
|
};
|
|
131411
131582
|
} | {
|
|
131412
131583
|
/** ID of the action attempt. */
|
|
@@ -131721,6 +131892,11 @@ type Routes = {
|
|
|
131721
131892
|
type: 'credential_cannot_be_reissued';
|
|
131722
131893
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131723
131894
|
message: string;
|
|
131895
|
+
} | {
|
|
131896
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
131897
|
+
type: 'no_card_on_encoder';
|
|
131898
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131899
|
+
message: string;
|
|
131724
131900
|
};
|
|
131725
131901
|
} | {
|
|
131726
131902
|
/** ID of the action attempt. */
|
|
@@ -132771,6 +132947,11 @@ type Routes = {
|
|
|
132771
132947
|
type: 'no_credential_on_encoder';
|
|
132772
132948
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
132773
132949
|
message: string;
|
|
132950
|
+
} | {
|
|
132951
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
132952
|
+
type: 'no_card_on_encoder';
|
|
132953
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
132954
|
+
message: string;
|
|
132774
132955
|
};
|
|
132775
132956
|
} | {
|
|
132776
132957
|
/** ID of the action attempt. */
|
|
@@ -133085,6 +133266,11 @@ type Routes = {
|
|
|
133085
133266
|
type: 'credential_cannot_be_reissued';
|
|
133086
133267
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133087
133268
|
message: string;
|
|
133269
|
+
} | {
|
|
133270
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
133271
|
+
type: 'no_card_on_encoder';
|
|
133272
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133273
|
+
message: string;
|
|
133088
133274
|
};
|
|
133089
133275
|
} | {
|
|
133090
133276
|
/** ID of the action attempt. */
|
|
@@ -136399,6 +136585,11 @@ type Routes = {
|
|
|
136399
136585
|
type: 'no_credential_on_encoder';
|
|
136400
136586
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136401
136587
|
message: string;
|
|
136588
|
+
} | {
|
|
136589
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
136590
|
+
type: 'no_card_on_encoder';
|
|
136591
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136592
|
+
message: string;
|
|
136402
136593
|
};
|
|
136403
136594
|
} | {
|
|
136404
136595
|
/** ID of the action attempt. */
|
|
@@ -136713,6 +136904,11 @@ type Routes = {
|
|
|
136713
136904
|
type: 'credential_cannot_be_reissued';
|
|
136714
136905
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136715
136906
|
message: string;
|
|
136907
|
+
} | {
|
|
136908
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
136909
|
+
type: 'no_card_on_encoder';
|
|
136910
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136911
|
+
message: string;
|
|
136716
136912
|
};
|
|
136717
136913
|
} | {
|
|
136718
136914
|
/** ID of the action attempt. */
|
|
@@ -137652,6 +137848,11 @@ type Routes = {
|
|
|
137652
137848
|
type: 'no_credential_on_encoder';
|
|
137653
137849
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137654
137850
|
message: string;
|
|
137851
|
+
} | {
|
|
137852
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
137853
|
+
type: 'no_card_on_encoder';
|
|
137854
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137855
|
+
message: string;
|
|
137655
137856
|
};
|
|
137656
137857
|
} | {
|
|
137657
137858
|
/** ID of the action attempt. */
|
|
@@ -137966,6 +138167,11 @@ type Routes = {
|
|
|
137966
138167
|
type: 'credential_cannot_be_reissued';
|
|
137967
138168
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137968
138169
|
message: string;
|
|
138170
|
+
} | {
|
|
138171
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
138172
|
+
type: 'no_card_on_encoder';
|
|
138173
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138174
|
+
message: string;
|
|
137969
138175
|
};
|
|
137970
138176
|
} | {
|
|
137971
138177
|
/** ID of the action attempt. */
|
|
@@ -140242,7 +140448,7 @@ type Routes = {
|
|
|
140242
140448
|
/** ID of the device. */
|
|
140243
140449
|
device_id: string;
|
|
140244
140450
|
/** Type of the device. */
|
|
140245
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
140451
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
140246
140452
|
/** IDs of the spaces the device is in. */
|
|
140247
140453
|
space_ids: string[];
|
|
140248
140454
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140830,10 +141036,12 @@ type Routes = {
|
|
|
140830
141036
|
/** Whether the KeyNest device has a photo. */
|
|
140831
141037
|
has_photo?: boolean | undefined;
|
|
140832
141038
|
} | undefined;
|
|
140833
|
-
/** Metadata for
|
|
141039
|
+
/** Metadata for an Ultraloq device. */
|
|
140834
141040
|
ultraloq_metadata?: {
|
|
140835
|
-
/** Device ID for
|
|
141041
|
+
/** Device ID for an Ultraloq device. */
|
|
140836
141042
|
device_id: string;
|
|
141043
|
+
/** Device name for an Ultraloq device. */
|
|
141044
|
+
device_name: string;
|
|
140837
141045
|
} | undefined;
|
|
140838
141046
|
}) & ({
|
|
140839
141047
|
/** */
|
|
@@ -141466,9 +141674,9 @@ type Routes = {
|
|
|
141466
141674
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
141467
141675
|
connect_webview_id?: string | undefined;
|
|
141468
141676
|
/** Device type for which you want to list devices. */
|
|
141469
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
141677
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
141470
141678
|
/** Array of device types for which you want to list devices. */
|
|
141471
|
-
device_types?: (('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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
141679
|
+
device_types?: (('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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
141472
141680
|
/** Manufacturer for which you want to list devices. */
|
|
141473
141681
|
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' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
|
|
141474
141682
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -141503,7 +141711,7 @@ type Routes = {
|
|
|
141503
141711
|
/** ID of the device. */
|
|
141504
141712
|
device_id: string;
|
|
141505
141713
|
/** Type of the device. */
|
|
141506
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
141714
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
141507
141715
|
/** IDs of the spaces the device is in. */
|
|
141508
141716
|
space_ids: string[];
|
|
141509
141717
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -142091,10 +142299,12 @@ type Routes = {
|
|
|
142091
142299
|
/** Whether the KeyNest device has a photo. */
|
|
142092
142300
|
has_photo?: boolean | undefined;
|
|
142093
142301
|
} | undefined;
|
|
142094
|
-
/** Metadata for
|
|
142302
|
+
/** Metadata for an Ultraloq device. */
|
|
142095
142303
|
ultraloq_metadata?: {
|
|
142096
|
-
/** Device ID for
|
|
142304
|
+
/** Device ID for an Ultraloq device. */
|
|
142097
142305
|
device_id: string;
|
|
142306
|
+
/** Device name for an Ultraloq device. */
|
|
142307
|
+
device_name: string;
|
|
142098
142308
|
} | undefined;
|
|
142099
142309
|
}) & ({
|
|
142100
142310
|
/** */
|
|
@@ -142849,7 +143059,7 @@ type Routes = {
|
|
|
142849
143059
|
/** ID of the device. */
|
|
142850
143060
|
device_id: string;
|
|
142851
143061
|
/** Type of the device. */
|
|
142852
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
143062
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
142853
143063
|
/** Unique identifier for the account associated with the device. */
|
|
142854
143064
|
connected_account_id: string;
|
|
142855
143065
|
/** Location information for the device. */
|
|
@@ -143245,9 +143455,9 @@ type Routes = {
|
|
|
143245
143455
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
143246
143456
|
connect_webview_id?: string | undefined;
|
|
143247
143457
|
/** Device type for which you want to list devices. */
|
|
143248
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
143458
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
|
|
143249
143459
|
/** Array of device types for which you want to list devices. */
|
|
143250
|
-
device_types?: (('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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
143460
|
+
device_types?: (('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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
|
|
143251
143461
|
/** Manufacturer for which you want to list devices. */
|
|
143252
143462
|
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' | 'two_n' | 'ttlock' | 'igloohome' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest' | 'ultraloq') | undefined;
|
|
143253
143463
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -143282,7 +143492,7 @@ type Routes = {
|
|
|
143282
143492
|
/** ID of the device. */
|
|
143283
143493
|
device_id: string;
|
|
143284
143494
|
/** Type of the device. */
|
|
143285
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
143495
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
143286
143496
|
/** Unique identifier for the account associated with the device. */
|
|
143287
143497
|
connected_account_id: string;
|
|
143288
143498
|
/** Location information for the device. */
|
|
@@ -147685,7 +147895,7 @@ type Routes = {
|
|
|
147685
147895
|
/** ID of the device. */
|
|
147686
147896
|
device_id: string;
|
|
147687
147897
|
/** Type of the device. */
|
|
147688
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
147898
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
147689
147899
|
/** IDs of the spaces the device is in. */
|
|
147690
147900
|
space_ids: string[];
|
|
147691
147901
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -148273,10 +148483,12 @@ type Routes = {
|
|
|
148273
148483
|
/** Whether the KeyNest device has a photo. */
|
|
148274
148484
|
has_photo?: boolean | undefined;
|
|
148275
148485
|
} | undefined;
|
|
148276
|
-
/** Metadata for
|
|
148486
|
+
/** Metadata for an Ultraloq device. */
|
|
148277
148487
|
ultraloq_metadata?: {
|
|
148278
|
-
/** Device ID for
|
|
148488
|
+
/** Device ID for an Ultraloq device. */
|
|
148279
148489
|
device_id: string;
|
|
148490
|
+
/** Device name for an Ultraloq device. */
|
|
148491
|
+
device_name: string;
|
|
148280
148492
|
} | undefined;
|
|
148281
148493
|
}) & ({
|
|
148282
148494
|
/** */
|
|
@@ -148897,7 +149109,7 @@ type Routes = {
|
|
|
148897
149109
|
/** ID of the device. */
|
|
148898
149110
|
device_id: string;
|
|
148899
149111
|
/** Type of the device. */
|
|
148900
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
149112
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
148901
149113
|
/** IDs of the spaces the device is in. */
|
|
148902
149114
|
space_ids: string[];
|
|
148903
149115
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -149485,10 +149697,12 @@ type Routes = {
|
|
|
149485
149697
|
/** Whether the KeyNest device has a photo. */
|
|
149486
149698
|
has_photo?: boolean | undefined;
|
|
149487
149699
|
} | undefined;
|
|
149488
|
-
/** Metadata for
|
|
149700
|
+
/** Metadata for an Ultraloq device. */
|
|
149489
149701
|
ultraloq_metadata?: {
|
|
149490
|
-
/** Device ID for
|
|
149702
|
+
/** Device ID for an Ultraloq device. */
|
|
149491
149703
|
device_id: string;
|
|
149704
|
+
/** Device name for an Ultraloq device. */
|
|
149705
|
+
device_name: string;
|
|
149492
149706
|
} | undefined;
|
|
149493
149707
|
}) & ({
|
|
149494
149708
|
/** */
|
|
@@ -150121,9 +150335,9 @@ type Routes = {
|
|
|
150121
150335
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
150122
150336
|
connect_webview_id?: string | undefined;
|
|
150123
150337
|
/** Device type of the locks that you want to list. */
|
|
150124
|
-
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') | undefined;
|
|
150338
|
+
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' | 'ultraloq_lock') | undefined;
|
|
150125
150339
|
/** Device types of the locks that you want to list. */
|
|
150126
|
-
device_types?: ('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')[] | undefined;
|
|
150340
|
+
device_types?: ('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' | 'ultraloq_lock')[] | undefined;
|
|
150127
150341
|
/** Manufacturer of the locks that you want to list. */
|
|
150128
150342
|
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'kwikset2' | 'smartthings' | 'ultraloq') | undefined;
|
|
150129
150343
|
/** Array of device IDs for which you want to list devices. */
|
|
@@ -150158,7 +150372,7 @@ type Routes = {
|
|
|
150158
150372
|
/** ID of the device. */
|
|
150159
150373
|
device_id: string;
|
|
150160
150374
|
/** Type of the device. */
|
|
150161
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
150375
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
150162
150376
|
/** IDs of the spaces the device is in. */
|
|
150163
150377
|
space_ids: string[];
|
|
150164
150378
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -150746,10 +150960,12 @@ type Routes = {
|
|
|
150746
150960
|
/** Whether the KeyNest device has a photo. */
|
|
150747
150961
|
has_photo?: boolean | undefined;
|
|
150748
150962
|
} | undefined;
|
|
150749
|
-
/** Metadata for
|
|
150963
|
+
/** Metadata for an Ultraloq device. */
|
|
150750
150964
|
ultraloq_metadata?: {
|
|
150751
|
-
/** Device ID for
|
|
150965
|
+
/** Device ID for an Ultraloq device. */
|
|
150752
150966
|
device_id: string;
|
|
150967
|
+
/** Device name for an Ultraloq device. */
|
|
150968
|
+
device_name: string;
|
|
150753
150969
|
} | undefined;
|
|
150754
150970
|
}) & ({
|
|
150755
150971
|
/** */
|
|
@@ -151369,7 +151585,7 @@ type Routes = {
|
|
|
151369
151585
|
/** ID of the device. */
|
|
151370
151586
|
device_id: string;
|
|
151371
151587
|
/** Type of the device. */
|
|
151372
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
151588
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
151373
151589
|
/** IDs of the spaces the device is in. */
|
|
151374
151590
|
space_ids: string[];
|
|
151375
151591
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -151957,10 +152173,12 @@ type Routes = {
|
|
|
151957
152173
|
/** Whether the KeyNest device has a photo. */
|
|
151958
152174
|
has_photo?: boolean | undefined;
|
|
151959
152175
|
} | undefined;
|
|
151960
|
-
/** Metadata for
|
|
152176
|
+
/** Metadata for an Ultraloq device. */
|
|
151961
152177
|
ultraloq_metadata?: {
|
|
151962
|
-
/** Device ID for
|
|
152178
|
+
/** Device ID for an Ultraloq device. */
|
|
151963
152179
|
device_id: string;
|
|
152180
|
+
/** Device name for an Ultraloq device. */
|
|
152181
|
+
device_name: string;
|
|
151964
152182
|
} | undefined;
|
|
151965
152183
|
}) & ({
|
|
151966
152184
|
/** */
|
|
@@ -153018,6 +153236,11 @@ type Routes = {
|
|
|
153018
153236
|
type: 'no_credential_on_encoder';
|
|
153019
153237
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
153020
153238
|
message: string;
|
|
153239
|
+
} | {
|
|
153240
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
153241
|
+
type: 'no_card_on_encoder';
|
|
153242
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
153243
|
+
message: string;
|
|
153021
153244
|
};
|
|
153022
153245
|
} | {
|
|
153023
153246
|
/** ID of the action attempt. */
|
|
@@ -153332,6 +153555,11 @@ type Routes = {
|
|
|
153332
153555
|
type: 'credential_cannot_be_reissued';
|
|
153333
153556
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
153334
153557
|
message: string;
|
|
153558
|
+
} | {
|
|
153559
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
153560
|
+
type: 'no_card_on_encoder';
|
|
153561
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
153562
|
+
message: string;
|
|
153335
153563
|
};
|
|
153336
153564
|
} | {
|
|
153337
153565
|
/** ID of the action attempt. */
|
|
@@ -154278,6 +154506,11 @@ type Routes = {
|
|
|
154278
154506
|
type: 'no_credential_on_encoder';
|
|
154279
154507
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
154280
154508
|
message: string;
|
|
154509
|
+
} | {
|
|
154510
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
154511
|
+
type: 'no_card_on_encoder';
|
|
154512
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
154513
|
+
message: string;
|
|
154281
154514
|
};
|
|
154282
154515
|
} | {
|
|
154283
154516
|
/** ID of the action attempt. */
|
|
@@ -154592,6 +154825,11 @@ type Routes = {
|
|
|
154592
154825
|
type: 'credential_cannot_be_reissued';
|
|
154593
154826
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
154594
154827
|
message: string;
|
|
154828
|
+
} | {
|
|
154829
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
154830
|
+
type: 'no_card_on_encoder';
|
|
154831
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
154832
|
+
message: string;
|
|
154595
154833
|
};
|
|
154596
154834
|
} | {
|
|
154597
154835
|
/** ID of the action attempt. */
|
|
@@ -155536,6 +155774,11 @@ type Routes = {
|
|
|
155536
155774
|
type: 'no_credential_on_encoder';
|
|
155537
155775
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
155538
155776
|
message: string;
|
|
155777
|
+
} | {
|
|
155778
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
155779
|
+
type: 'no_card_on_encoder';
|
|
155780
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
155781
|
+
message: string;
|
|
155539
155782
|
};
|
|
155540
155783
|
} | {
|
|
155541
155784
|
/** ID of the action attempt. */
|
|
@@ -155850,6 +156093,11 @@ type Routes = {
|
|
|
155850
156093
|
type: 'credential_cannot_be_reissued';
|
|
155851
156094
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
155852
156095
|
message: string;
|
|
156096
|
+
} | {
|
|
156097
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
156098
|
+
type: 'no_card_on_encoder';
|
|
156099
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
156100
|
+
message: string;
|
|
155853
156101
|
};
|
|
155854
156102
|
} | {
|
|
155855
156103
|
/** ID of the action attempt. */
|
|
@@ -156796,6 +157044,11 @@ type Routes = {
|
|
|
156796
157044
|
type: 'no_credential_on_encoder';
|
|
156797
157045
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
156798
157046
|
message: string;
|
|
157047
|
+
} | {
|
|
157048
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
157049
|
+
type: 'no_card_on_encoder';
|
|
157050
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
157051
|
+
message: string;
|
|
156799
157052
|
};
|
|
156800
157053
|
} | {
|
|
156801
157054
|
/** ID of the action attempt. */
|
|
@@ -157110,6 +157363,11 @@ type Routes = {
|
|
|
157110
157363
|
type: 'credential_cannot_be_reissued';
|
|
157111
157364
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
157112
157365
|
message: string;
|
|
157366
|
+
} | {
|
|
157367
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
157368
|
+
type: 'no_card_on_encoder';
|
|
157369
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
157370
|
+
message: string;
|
|
157113
157371
|
};
|
|
157114
157372
|
} | {
|
|
157115
157373
|
/** ID of the action attempt. */
|
|
@@ -157668,7 +157926,7 @@ type Routes = {
|
|
|
157668
157926
|
/** ID of the device. */
|
|
157669
157927
|
device_id: string;
|
|
157670
157928
|
/** Type of the device. */
|
|
157671
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
157929
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
157672
157930
|
/** IDs of the spaces the device is in. */
|
|
157673
157931
|
space_ids: string[];
|
|
157674
157932
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -158256,10 +158514,12 @@ type Routes = {
|
|
|
158256
158514
|
/** Whether the KeyNest device has a photo. */
|
|
158257
158515
|
has_photo?: boolean | undefined;
|
|
158258
158516
|
} | undefined;
|
|
158259
|
-
/** Metadata for
|
|
158517
|
+
/** Metadata for an Ultraloq device. */
|
|
158260
158518
|
ultraloq_metadata?: {
|
|
158261
|
-
/** Device ID for
|
|
158519
|
+
/** Device ID for an Ultraloq device. */
|
|
158262
158520
|
device_id: string;
|
|
158521
|
+
/** Device name for an Ultraloq device. */
|
|
158522
|
+
device_name: string;
|
|
158263
158523
|
} | undefined;
|
|
158264
158524
|
}) & ({
|
|
158265
158525
|
/** */
|
|
@@ -158879,7 +159139,7 @@ type Routes = {
|
|
|
158879
159139
|
/** ID of the device. */
|
|
158880
159140
|
device_id: string;
|
|
158881
159141
|
/** Type of the device. */
|
|
158882
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
159142
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
158883
159143
|
/** IDs of the spaces the device is in. */
|
|
158884
159144
|
space_ids: string[];
|
|
158885
159145
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -159467,10 +159727,12 @@ type Routes = {
|
|
|
159467
159727
|
/** Whether the KeyNest device has a photo. */
|
|
159468
159728
|
has_photo?: boolean | undefined;
|
|
159469
159729
|
} | undefined;
|
|
159470
|
-
/** Metadata for
|
|
159730
|
+
/** Metadata for an Ultraloq device. */
|
|
159471
159731
|
ultraloq_metadata?: {
|
|
159472
|
-
/** Device ID for
|
|
159732
|
+
/** Device ID for an Ultraloq device. */
|
|
159473
159733
|
device_id: string;
|
|
159734
|
+
/** Device name for an Ultraloq device. */
|
|
159735
|
+
device_name: string;
|
|
159474
159736
|
} | undefined;
|
|
159475
159737
|
}) & ({
|
|
159476
159738
|
/** */
|
|
@@ -160538,6 +160800,11 @@ type Routes = {
|
|
|
160538
160800
|
type: 'no_credential_on_encoder';
|
|
160539
160801
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
160540
160802
|
message: string;
|
|
160803
|
+
} | {
|
|
160804
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
160805
|
+
type: 'no_card_on_encoder';
|
|
160806
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
160807
|
+
message: string;
|
|
160541
160808
|
};
|
|
160542
160809
|
} | {
|
|
160543
160810
|
/** ID of the action attempt. */
|
|
@@ -160852,6 +161119,11 @@ type Routes = {
|
|
|
160852
161119
|
type: 'credential_cannot_be_reissued';
|
|
160853
161120
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
160854
161121
|
message: string;
|
|
161122
|
+
} | {
|
|
161123
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
161124
|
+
type: 'no_card_on_encoder';
|
|
161125
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
161126
|
+
message: string;
|
|
160855
161127
|
};
|
|
160856
161128
|
} | {
|
|
160857
161129
|
/** ID of the action attempt. */
|
|
@@ -161817,6 +162089,11 @@ type Routes = {
|
|
|
161817
162089
|
type: 'no_credential_on_encoder';
|
|
161818
162090
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
161819
162091
|
message: string;
|
|
162092
|
+
} | {
|
|
162093
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
162094
|
+
type: 'no_card_on_encoder';
|
|
162095
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
162096
|
+
message: string;
|
|
161820
162097
|
};
|
|
161821
162098
|
} | {
|
|
161822
162099
|
/** ID of the action attempt. */
|
|
@@ -162131,6 +162408,11 @@ type Routes = {
|
|
|
162131
162408
|
type: 'credential_cannot_be_reissued';
|
|
162132
162409
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
162133
162410
|
message: string;
|
|
162411
|
+
} | {
|
|
162412
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
162413
|
+
type: 'no_card_on_encoder';
|
|
162414
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
162415
|
+
message: string;
|
|
162134
162416
|
};
|
|
162135
162417
|
} | {
|
|
162136
162418
|
/** ID of the action attempt. */
|
|
@@ -163150,6 +163432,11 @@ type Routes = {
|
|
|
163150
163432
|
type: 'no_credential_on_encoder';
|
|
163151
163433
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
163152
163434
|
message: string;
|
|
163435
|
+
} | {
|
|
163436
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
163437
|
+
type: 'no_card_on_encoder';
|
|
163438
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
163439
|
+
message: string;
|
|
163153
163440
|
};
|
|
163154
163441
|
} | {
|
|
163155
163442
|
/** ID of the action attempt. */
|
|
@@ -163464,6 +163751,11 @@ type Routes = {
|
|
|
163464
163751
|
type: 'credential_cannot_be_reissued';
|
|
163465
163752
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
163466
163753
|
message: string;
|
|
163754
|
+
} | {
|
|
163755
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
163756
|
+
type: 'no_card_on_encoder';
|
|
163757
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
163758
|
+
message: string;
|
|
163467
163759
|
};
|
|
163468
163760
|
} | {
|
|
163469
163761
|
/** ID of the action attempt. */
|
|
@@ -167818,7 +168110,7 @@ type Routes = {
|
|
|
167818
168110
|
/** ID of the device. */
|
|
167819
168111
|
device_id: string;
|
|
167820
168112
|
/** Type of the device. */
|
|
167821
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
168113
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
167822
168114
|
/** IDs of the spaces the device is in. */
|
|
167823
168115
|
space_ids: string[];
|
|
167824
168116
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -168406,10 +168698,12 @@ type Routes = {
|
|
|
168406
168698
|
/** Whether the KeyNest device has a photo. */
|
|
168407
168699
|
has_photo?: boolean | undefined;
|
|
168408
168700
|
} | undefined;
|
|
168409
|
-
/** Metadata for
|
|
168701
|
+
/** Metadata for an Ultraloq device. */
|
|
168410
168702
|
ultraloq_metadata?: {
|
|
168411
|
-
/** Device ID for
|
|
168703
|
+
/** Device ID for an Ultraloq device. */
|
|
168412
168704
|
device_id: string;
|
|
168705
|
+
/** Device name for an Ultraloq device. */
|
|
168706
|
+
device_name: string;
|
|
168413
168707
|
} | undefined;
|
|
168414
168708
|
}) & ({
|
|
168415
168709
|
/** */
|
|
@@ -169946,6 +170240,11 @@ type Routes = {
|
|
|
169946
170240
|
type: 'no_credential_on_encoder';
|
|
169947
170241
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
169948
170242
|
message: string;
|
|
170243
|
+
} | {
|
|
170244
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
170245
|
+
type: 'no_card_on_encoder';
|
|
170246
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
170247
|
+
message: string;
|
|
169949
170248
|
};
|
|
169950
170249
|
} | {
|
|
169951
170250
|
/** ID of the action attempt. */
|
|
@@ -170260,6 +170559,11 @@ type Routes = {
|
|
|
170260
170559
|
type: 'credential_cannot_be_reissued';
|
|
170261
170560
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
170262
170561
|
message: string;
|
|
170562
|
+
} | {
|
|
170563
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
170564
|
+
type: 'no_card_on_encoder';
|
|
170565
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
170566
|
+
message: string;
|
|
170263
170567
|
};
|
|
170264
170568
|
} | {
|
|
170265
170569
|
/** ID of the action attempt. */
|
|
@@ -171210,6 +171514,11 @@ type Routes = {
|
|
|
171210
171514
|
type: 'no_credential_on_encoder';
|
|
171211
171515
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
171212
171516
|
message: string;
|
|
171517
|
+
} | {
|
|
171518
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
171519
|
+
type: 'no_card_on_encoder';
|
|
171520
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
171521
|
+
message: string;
|
|
171213
171522
|
};
|
|
171214
171523
|
} | {
|
|
171215
171524
|
/** ID of the action attempt. */
|
|
@@ -171524,6 +171833,11 @@ type Routes = {
|
|
|
171524
171833
|
type: 'credential_cannot_be_reissued';
|
|
171525
171834
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
171526
171835
|
message: string;
|
|
171836
|
+
} | {
|
|
171837
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
171838
|
+
type: 'no_card_on_encoder';
|
|
171839
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
171840
|
+
message: string;
|
|
171527
171841
|
};
|
|
171528
171842
|
} | {
|
|
171529
171843
|
/** ID of the action attempt. */
|
|
@@ -172577,6 +172891,11 @@ type Routes = {
|
|
|
172577
172891
|
type: 'no_credential_on_encoder';
|
|
172578
172892
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
172579
172893
|
message: string;
|
|
172894
|
+
} | {
|
|
172895
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
172896
|
+
type: 'no_card_on_encoder';
|
|
172897
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
172898
|
+
message: string;
|
|
172580
172899
|
};
|
|
172581
172900
|
} | {
|
|
172582
172901
|
/** ID of the action attempt. */
|
|
@@ -172891,6 +173210,11 @@ type Routes = {
|
|
|
172891
173210
|
type: 'credential_cannot_be_reissued';
|
|
172892
173211
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
172893
173212
|
message: string;
|
|
173213
|
+
} | {
|
|
173214
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
173215
|
+
type: 'no_card_on_encoder';
|
|
173216
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173217
|
+
message: string;
|
|
172894
173218
|
};
|
|
172895
173219
|
} | {
|
|
172896
173220
|
/** ID of the action attempt. */
|
|
@@ -173429,7 +173753,7 @@ type Routes = {
|
|
|
173429
173753
|
/** ID of the device. */
|
|
173430
173754
|
device_id: string;
|
|
173431
173755
|
/** Type of the device. */
|
|
173432
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
173756
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
173433
173757
|
/** IDs of the spaces the device is in. */
|
|
173434
173758
|
space_ids: string[];
|
|
173435
173759
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -174017,10 +174341,12 @@ type Routes = {
|
|
|
174017
174341
|
/** Whether the KeyNest device has a photo. */
|
|
174018
174342
|
has_photo?: boolean | undefined;
|
|
174019
174343
|
} | undefined;
|
|
174020
|
-
/** Metadata for
|
|
174344
|
+
/** Metadata for an Ultraloq device. */
|
|
174021
174345
|
ultraloq_metadata?: {
|
|
174022
|
-
/** Device ID for
|
|
174346
|
+
/** Device ID for an Ultraloq device. */
|
|
174023
174347
|
device_id: string;
|
|
174348
|
+
/** Device name for an Ultraloq device. */
|
|
174349
|
+
device_name: string;
|
|
174024
174350
|
} | undefined;
|
|
174025
174351
|
}) & ({
|
|
174026
174352
|
/** */
|
|
@@ -175082,6 +175408,11 @@ type Routes = {
|
|
|
175082
175408
|
type: 'no_credential_on_encoder';
|
|
175083
175409
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175084
175410
|
message: string;
|
|
175411
|
+
} | {
|
|
175412
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
175413
|
+
type: 'no_card_on_encoder';
|
|
175414
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175415
|
+
message: string;
|
|
175085
175416
|
};
|
|
175086
175417
|
} | {
|
|
175087
175418
|
/** ID of the action attempt. */
|
|
@@ -175396,6 +175727,11 @@ type Routes = {
|
|
|
175396
175727
|
type: 'credential_cannot_be_reissued';
|
|
175397
175728
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175398
175729
|
message: string;
|
|
175730
|
+
} | {
|
|
175731
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
175732
|
+
type: 'no_card_on_encoder';
|
|
175733
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
175734
|
+
message: string;
|
|
175399
175735
|
};
|
|
175400
175736
|
} | {
|
|
175401
175737
|
/** ID of the action attempt. */
|
|
@@ -176350,6 +176686,11 @@ type Routes = {
|
|
|
176350
176686
|
type: 'no_credential_on_encoder';
|
|
176351
176687
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
176352
176688
|
message: string;
|
|
176689
|
+
} | {
|
|
176690
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
176691
|
+
type: 'no_card_on_encoder';
|
|
176692
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
176693
|
+
message: string;
|
|
176353
176694
|
};
|
|
176354
176695
|
} | {
|
|
176355
176696
|
/** ID of the action attempt. */
|
|
@@ -176664,6 +177005,11 @@ type Routes = {
|
|
|
176664
177005
|
type: 'credential_cannot_be_reissued';
|
|
176665
177006
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
176666
177007
|
message: string;
|
|
177008
|
+
} | {
|
|
177009
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
177010
|
+
type: 'no_card_on_encoder';
|
|
177011
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
177012
|
+
message: string;
|
|
176667
177013
|
};
|
|
176668
177014
|
} | {
|
|
176669
177015
|
/** ID of the action attempt. */
|
|
@@ -177222,7 +177568,7 @@ type Routes = {
|
|
|
177222
177568
|
/** ID of the device. */
|
|
177223
177569
|
device_id: string;
|
|
177224
177570
|
/** Type of the device. */
|
|
177225
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
177571
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
177226
177572
|
/** IDs of the spaces the device is in. */
|
|
177227
177573
|
space_ids: string[];
|
|
177228
177574
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -177810,10 +178156,12 @@ type Routes = {
|
|
|
177810
178156
|
/** Whether the KeyNest device has a photo. */
|
|
177811
178157
|
has_photo?: boolean | undefined;
|
|
177812
178158
|
} | undefined;
|
|
177813
|
-
/** Metadata for
|
|
178159
|
+
/** Metadata for an Ultraloq device. */
|
|
177814
178160
|
ultraloq_metadata?: {
|
|
177815
|
-
/** Device ID for
|
|
178161
|
+
/** Device ID for an Ultraloq device. */
|
|
177816
178162
|
device_id: string;
|
|
178163
|
+
/** Device name for an Ultraloq device. */
|
|
178164
|
+
device_name: string;
|
|
177817
178165
|
} | undefined;
|
|
177818
178166
|
}) & ({
|
|
177819
178167
|
/** */
|
|
@@ -178433,7 +178781,7 @@ type Routes = {
|
|
|
178433
178781
|
/** ID of the device. */
|
|
178434
178782
|
device_id: string;
|
|
178435
178783
|
/** Type of the device. */
|
|
178436
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
178784
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
178437
178785
|
/** IDs of the spaces the device is in. */
|
|
178438
178786
|
space_ids: string[];
|
|
178439
178787
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -179021,10 +179369,12 @@ type Routes = {
|
|
|
179021
179369
|
/** Whether the KeyNest device has a photo. */
|
|
179022
179370
|
has_photo?: boolean | undefined;
|
|
179023
179371
|
} | undefined;
|
|
179024
|
-
/** Metadata for
|
|
179372
|
+
/** Metadata for an Ultraloq device. */
|
|
179025
179373
|
ultraloq_metadata?: {
|
|
179026
|
-
/** Device ID for
|
|
179374
|
+
/** Device ID for an Ultraloq device. */
|
|
179027
179375
|
device_id: string;
|
|
179376
|
+
/** Device name for an Ultraloq device. */
|
|
179377
|
+
device_name: string;
|
|
179028
179378
|
} | undefined;
|
|
179029
179379
|
}) & ({
|
|
179030
179380
|
/** */
|
|
@@ -180082,6 +180432,11 @@ type Routes = {
|
|
|
180082
180432
|
type: 'no_credential_on_encoder';
|
|
180083
180433
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
180084
180434
|
message: string;
|
|
180435
|
+
} | {
|
|
180436
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
180437
|
+
type: 'no_card_on_encoder';
|
|
180438
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
180439
|
+
message: string;
|
|
180085
180440
|
};
|
|
180086
180441
|
} | {
|
|
180087
180442
|
/** ID of the action attempt. */
|
|
@@ -180396,6 +180751,11 @@ type Routes = {
|
|
|
180396
180751
|
type: 'credential_cannot_be_reissued';
|
|
180397
180752
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
180398
180753
|
message: string;
|
|
180754
|
+
} | {
|
|
180755
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
180756
|
+
type: 'no_card_on_encoder';
|
|
180757
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
180758
|
+
message: string;
|
|
180399
180759
|
};
|
|
180400
180760
|
} | {
|
|
180401
180761
|
/** ID of the action attempt. */
|
|
@@ -181539,6 +181899,11 @@ type Routes = {
|
|
|
181539
181899
|
type: 'no_credential_on_encoder';
|
|
181540
181900
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
181541
181901
|
message: string;
|
|
181902
|
+
} | {
|
|
181903
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
181904
|
+
type: 'no_card_on_encoder';
|
|
181905
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
181906
|
+
message: string;
|
|
181542
181907
|
};
|
|
181543
181908
|
} | {
|
|
181544
181909
|
/** ID of the action attempt. */
|
|
@@ -181853,6 +182218,11 @@ type Routes = {
|
|
|
181853
182218
|
type: 'credential_cannot_be_reissued';
|
|
181854
182219
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
181855
182220
|
message: string;
|
|
182221
|
+
} | {
|
|
182222
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
182223
|
+
type: 'no_card_on_encoder';
|
|
182224
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
182225
|
+
message: string;
|
|
181856
182226
|
};
|
|
181857
182227
|
} | {
|
|
181858
182228
|
/** ID of the action attempt. */
|
|
@@ -182830,6 +183200,11 @@ type Routes = {
|
|
|
182830
183200
|
type: 'no_credential_on_encoder';
|
|
182831
183201
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
182832
183202
|
message: string;
|
|
183203
|
+
} | {
|
|
183204
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
183205
|
+
type: 'no_card_on_encoder';
|
|
183206
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
183207
|
+
message: string;
|
|
182833
183208
|
};
|
|
182834
183209
|
} | {
|
|
182835
183210
|
/** ID of the action attempt. */
|
|
@@ -183144,6 +183519,11 @@ type Routes = {
|
|
|
183144
183519
|
type: 'credential_cannot_be_reissued';
|
|
183145
183520
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
183146
183521
|
message: string;
|
|
183522
|
+
} | {
|
|
183523
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
183524
|
+
type: 'no_card_on_encoder';
|
|
183525
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
183526
|
+
message: string;
|
|
183147
183527
|
};
|
|
183148
183528
|
} | {
|
|
183149
183529
|
/** ID of the action attempt. */
|
|
@@ -184229,6 +184609,11 @@ type Routes = {
|
|
|
184229
184609
|
type: 'no_credential_on_encoder';
|
|
184230
184610
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
184231
184611
|
message: string;
|
|
184612
|
+
} | {
|
|
184613
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
184614
|
+
type: 'no_card_on_encoder';
|
|
184615
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
184616
|
+
message: string;
|
|
184232
184617
|
};
|
|
184233
184618
|
} | {
|
|
184234
184619
|
/** ID of the action attempt. */
|
|
@@ -184543,6 +184928,11 @@ type Routes = {
|
|
|
184543
184928
|
type: 'credential_cannot_be_reissued';
|
|
184544
184929
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
184545
184930
|
message: string;
|
|
184931
|
+
} | {
|
|
184932
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
184933
|
+
type: 'no_card_on_encoder';
|
|
184934
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
184935
|
+
message: string;
|
|
184546
184936
|
};
|
|
184547
184937
|
} | {
|
|
184548
184938
|
/** ID of the action attempt. */
|
|
@@ -185587,7 +185977,7 @@ type Routes = {
|
|
|
185587
185977
|
/** ID of the device. */
|
|
185588
185978
|
device_id: string;
|
|
185589
185979
|
/** Type of the device. */
|
|
185590
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
185980
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
185591
185981
|
/** IDs of the spaces the device is in. */
|
|
185592
185982
|
space_ids: string[];
|
|
185593
185983
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -186175,10 +186565,12 @@ type Routes = {
|
|
|
186175
186565
|
/** Whether the KeyNest device has a photo. */
|
|
186176
186566
|
has_photo?: boolean | undefined;
|
|
186177
186567
|
} | undefined;
|
|
186178
|
-
/** Metadata for
|
|
186568
|
+
/** Metadata for an Ultraloq device. */
|
|
186179
186569
|
ultraloq_metadata?: {
|
|
186180
|
-
/** Device ID for
|
|
186570
|
+
/** Device ID for an Ultraloq device. */
|
|
186181
186571
|
device_id: string;
|
|
186572
|
+
/** Device name for an Ultraloq device. */
|
|
186573
|
+
device_name: string;
|
|
186182
186574
|
} | undefined;
|
|
186183
186575
|
}) & ({
|
|
186184
186576
|
/** */
|
|
@@ -186800,7 +187192,7 @@ type Routes = {
|
|
|
186800
187192
|
/** ID of the device. */
|
|
186801
187193
|
device_id: string;
|
|
186802
187194
|
/** Type of the device. */
|
|
186803
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
187195
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
186804
187196
|
/** IDs of the spaces the device is in. */
|
|
186805
187197
|
space_ids: string[];
|
|
186806
187198
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -187388,10 +187780,12 @@ type Routes = {
|
|
|
187388
187780
|
/** Whether the KeyNest device has a photo. */
|
|
187389
187781
|
has_photo?: boolean | undefined;
|
|
187390
187782
|
} | undefined;
|
|
187391
|
-
/** Metadata for
|
|
187783
|
+
/** Metadata for an Ultraloq device. */
|
|
187392
187784
|
ultraloq_metadata?: {
|
|
187393
|
-
/** Device ID for
|
|
187785
|
+
/** Device ID for an Ultraloq device. */
|
|
187394
187786
|
device_id: string;
|
|
187787
|
+
/** Device name for an Ultraloq device. */
|
|
187788
|
+
device_name: string;
|
|
187395
187789
|
} | undefined;
|
|
187396
187790
|
}) & ({
|
|
187397
187791
|
/** */
|
|
@@ -188920,7 +189314,7 @@ type Routes = {
|
|
|
188920
189314
|
/** ID of the device. */
|
|
188921
189315
|
device_id: string;
|
|
188922
189316
|
/** Type of the device. */
|
|
188923
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
189317
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
188924
189318
|
/** IDs of the spaces the device is in. */
|
|
188925
189319
|
space_ids: string[];
|
|
188926
189320
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -189508,10 +189902,12 @@ type Routes = {
|
|
|
189508
189902
|
/** Whether the KeyNest device has a photo. */
|
|
189509
189903
|
has_photo?: boolean | undefined;
|
|
189510
189904
|
} | undefined;
|
|
189511
|
-
/** Metadata for
|
|
189905
|
+
/** Metadata for an Ultraloq device. */
|
|
189512
189906
|
ultraloq_metadata?: {
|
|
189513
|
-
/** Device ID for
|
|
189907
|
+
/** Device ID for an Ultraloq device. */
|
|
189514
189908
|
device_id: string;
|
|
189909
|
+
/** Device name for an Ultraloq device. */
|
|
189910
|
+
device_name: string;
|
|
189515
189911
|
} | undefined;
|
|
189516
189912
|
}) & ({
|
|
189517
189913
|
/** */
|
|
@@ -191314,6 +191710,11 @@ type Routes = {
|
|
|
191314
191710
|
type: 'no_credential_on_encoder';
|
|
191315
191711
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
191316
191712
|
message: string;
|
|
191713
|
+
} | {
|
|
191714
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
191715
|
+
type: 'no_card_on_encoder';
|
|
191716
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
191717
|
+
message: string;
|
|
191317
191718
|
};
|
|
191318
191719
|
} | {
|
|
191319
191720
|
/** ID of the action attempt. */
|
|
@@ -191628,6 +192029,11 @@ type Routes = {
|
|
|
191628
192029
|
type: 'credential_cannot_be_reissued';
|
|
191629
192030
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
191630
192031
|
message: string;
|
|
192032
|
+
} | {
|
|
192033
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
192034
|
+
type: 'no_card_on_encoder';
|
|
192035
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
192036
|
+
message: string;
|
|
191631
192037
|
};
|
|
191632
192038
|
} | {
|
|
191633
192039
|
/** ID of the action attempt. */
|
|
@@ -192406,7 +192812,7 @@ type Routes = {
|
|
|
192406
192812
|
/** ID of the device. */
|
|
192407
192813
|
device_id: string;
|
|
192408
192814
|
/** Type of the device. */
|
|
192409
|
-
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') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
192815
|
+
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' | 'ultraloq_lock') | 'keynest_key' | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
|
|
192410
192816
|
/** Unique identifier for the account associated with the device. */
|
|
192411
192817
|
connected_account_id: string;
|
|
192412
192818
|
/** Location information for the device. */
|
|
@@ -196413,6 +196819,11 @@ type Routes = {
|
|
|
196413
196819
|
type: 'no_credential_on_encoder';
|
|
196414
196820
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196415
196821
|
message: string;
|
|
196822
|
+
} | {
|
|
196823
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
196824
|
+
type: 'no_card_on_encoder';
|
|
196825
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196826
|
+
message: string;
|
|
196416
196827
|
};
|
|
196417
196828
|
} | {
|
|
196418
196829
|
/** ID of the action attempt. */
|
|
@@ -196727,6 +197138,11 @@ type Routes = {
|
|
|
196727
197138
|
type: 'credential_cannot_be_reissued';
|
|
196728
197139
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
196729
197140
|
message: string;
|
|
197141
|
+
} | {
|
|
197142
|
+
/** Error type to indicate that there is no card on the encoder. */
|
|
197143
|
+
type: 'no_card_on_encoder';
|
|
197144
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
197145
|
+
message: string;
|
|
196730
197146
|
};
|
|
196731
197147
|
} | {
|
|
196732
197148
|
/** ID of the action attempt. */
|