@seamapi/types 1.932.0 → 1.934.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 +127 -60
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +731 -475
- package/dist/index.cjs +127 -60
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +38 -38
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +11 -13
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +28 -28
- package/lib/seam/connect/models/devices/device-metadata.d.ts +44 -16
- package/lib/seam/connect/models/devices/device-metadata.js +14 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/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 +95 -55
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +71 -43
- package/lib/seam/connect/models/events/access-codes.d.ts +12 -12
- package/lib/seam/connect/models/events/seam-event.d.ts +6 -6
- package/lib/seam/connect/openapi.js +87 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +558 -371
- package/lib/seam/devicedb/models/device-model.d.ts +4 -4
- package/lib/seam/devicedb/route-specs.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +11 -13
- package/src/lib/seam/connect/models/devices/device-metadata.ts +15 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
- package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +87 -28
- package/src/lib/seam/connect/route-types.ts +595 -340
package/dist/connect.d.cts
CHANGED
|
@@ -14837,7 +14837,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14837
14837
|
type DeviceWarning = z.infer<typeof device_warning>;
|
|
14838
14838
|
declare const device: z.ZodObject<{
|
|
14839
14839
|
device_id: z.ZodString;
|
|
14840
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
14840
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
14841
14841
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
14842
14842
|
nickname: z.ZodOptional<z.ZodString>;
|
|
14843
14843
|
display_name: z.ZodString;
|
|
@@ -15639,10 +15639,10 @@ declare const device: z.ZodObject<{
|
|
|
15639
15639
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
15640
15640
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
15641
15641
|
}, "strip", z.ZodTypeAny, {
|
|
15642
|
-
check_in_time: string;
|
|
15643
|
-
check_out_time: string;
|
|
15644
15642
|
name: string;
|
|
15645
15643
|
prefix: number;
|
|
15644
|
+
check_in_time: string;
|
|
15645
|
+
check_out_time: string;
|
|
15646
15646
|
is_24_hour: boolean;
|
|
15647
15647
|
is_biweekly_mode: boolean;
|
|
15648
15648
|
is_one_shot: boolean;
|
|
@@ -15650,10 +15650,10 @@ declare const device: z.ZodObject<{
|
|
|
15650
15650
|
dormakaba_oracode_user_level_prefix: number;
|
|
15651
15651
|
dormakaba_oracode_user_level_id: string;
|
|
15652
15652
|
}, {
|
|
15653
|
-
check_in_time: string;
|
|
15654
|
-
check_out_time: string;
|
|
15655
15653
|
name: string;
|
|
15656
15654
|
prefix: number;
|
|
15655
|
+
check_in_time: string;
|
|
15656
|
+
check_out_time: string;
|
|
15657
15657
|
is_24_hour: boolean;
|
|
15658
15658
|
is_biweekly_mode: boolean;
|
|
15659
15659
|
is_one_shot: boolean;
|
|
@@ -15670,10 +15670,10 @@ declare const device: z.ZodObject<{
|
|
|
15670
15670
|
door_id?: number | undefined;
|
|
15671
15671
|
iana_timezone?: string | undefined;
|
|
15672
15672
|
predefined_time_slots?: {
|
|
15673
|
-
check_in_time: string;
|
|
15674
|
-
check_out_time: string;
|
|
15675
15673
|
name: string;
|
|
15676
15674
|
prefix: number;
|
|
15675
|
+
check_in_time: string;
|
|
15676
|
+
check_out_time: string;
|
|
15677
15677
|
is_24_hour: boolean;
|
|
15678
15678
|
is_biweekly_mode: boolean;
|
|
15679
15679
|
is_one_shot: boolean;
|
|
@@ -15690,10 +15690,10 @@ declare const device: z.ZodObject<{
|
|
|
15690
15690
|
door_id?: number | undefined;
|
|
15691
15691
|
iana_timezone?: string | undefined;
|
|
15692
15692
|
predefined_time_slots?: {
|
|
15693
|
-
check_in_time: string;
|
|
15694
|
-
check_out_time: string;
|
|
15695
15693
|
name: string;
|
|
15696
15694
|
prefix: number;
|
|
15695
|
+
check_in_time: string;
|
|
15696
|
+
check_out_time: string;
|
|
15697
15697
|
is_24_hour: boolean;
|
|
15698
15698
|
is_biweekly_mode: boolean;
|
|
15699
15699
|
is_one_shot: boolean;
|
|
@@ -15951,6 +15951,22 @@ declare const device: z.ZodObject<{
|
|
|
15951
15951
|
firmware_version?: string | undefined;
|
|
15952
15952
|
wifi_signal_strength?: number | undefined;
|
|
15953
15953
|
}>>;
|
|
15954
|
+
kisi_metadata: z.ZodOptional<z.ZodObject<{
|
|
15955
|
+
lock_id: z.ZodNumber;
|
|
15956
|
+
lock_name: z.ZodString;
|
|
15957
|
+
place_name: z.ZodNullable<z.ZodString>;
|
|
15958
|
+
description: z.ZodNullable<z.ZodString>;
|
|
15959
|
+
}, "strip", z.ZodTypeAny, {
|
|
15960
|
+
lock_id: number;
|
|
15961
|
+
lock_name: string;
|
|
15962
|
+
place_name: string | null;
|
|
15963
|
+
description: string | null;
|
|
15964
|
+
}, {
|
|
15965
|
+
lock_id: number;
|
|
15966
|
+
lock_name: string;
|
|
15967
|
+
place_name: string | null;
|
|
15968
|
+
description: string | null;
|
|
15969
|
+
}>>;
|
|
15954
15970
|
}, "strip", z.ZodTypeAny, {
|
|
15955
15971
|
ecobee_metadata?: {
|
|
15956
15972
|
device_name: string;
|
|
@@ -16135,10 +16151,10 @@ declare const device: z.ZodObject<{
|
|
|
16135
16151
|
door_id?: number | undefined;
|
|
16136
16152
|
iana_timezone?: string | undefined;
|
|
16137
16153
|
predefined_time_slots?: {
|
|
16138
|
-
check_in_time: string;
|
|
16139
|
-
check_out_time: string;
|
|
16140
16154
|
name: string;
|
|
16141
16155
|
prefix: number;
|
|
16156
|
+
check_in_time: string;
|
|
16157
|
+
check_out_time: string;
|
|
16142
16158
|
is_24_hour: boolean;
|
|
16143
16159
|
is_biweekly_mode: boolean;
|
|
16144
16160
|
is_one_shot: boolean;
|
|
@@ -16238,6 +16254,12 @@ declare const device: z.ZodObject<{
|
|
|
16238
16254
|
firmware_version?: string | undefined;
|
|
16239
16255
|
wifi_signal_strength?: number | undefined;
|
|
16240
16256
|
} | undefined;
|
|
16257
|
+
kisi_metadata?: {
|
|
16258
|
+
lock_id: number;
|
|
16259
|
+
lock_name: string;
|
|
16260
|
+
place_name: string | null;
|
|
16261
|
+
description: string | null;
|
|
16262
|
+
} | undefined;
|
|
16241
16263
|
}, {
|
|
16242
16264
|
ecobee_metadata?: {
|
|
16243
16265
|
device_name: string;
|
|
@@ -16422,10 +16444,10 @@ declare const device: z.ZodObject<{
|
|
|
16422
16444
|
door_id?: number | undefined;
|
|
16423
16445
|
iana_timezone?: string | undefined;
|
|
16424
16446
|
predefined_time_slots?: {
|
|
16425
|
-
check_in_time: string;
|
|
16426
|
-
check_out_time: string;
|
|
16427
16447
|
name: string;
|
|
16428
16448
|
prefix: number;
|
|
16449
|
+
check_in_time: string;
|
|
16450
|
+
check_out_time: string;
|
|
16429
16451
|
is_24_hour: boolean;
|
|
16430
16452
|
is_biweekly_mode: boolean;
|
|
16431
16453
|
is_one_shot: boolean;
|
|
@@ -16525,6 +16547,12 @@ declare const device: z.ZodObject<{
|
|
|
16525
16547
|
firmware_version?: string | undefined;
|
|
16526
16548
|
wifi_signal_strength?: number | undefined;
|
|
16527
16549
|
} | undefined;
|
|
16550
|
+
kisi_metadata?: {
|
|
16551
|
+
lock_id: number;
|
|
16552
|
+
lock_name: string;
|
|
16553
|
+
place_name: string | null;
|
|
16554
|
+
description: string | null;
|
|
16555
|
+
} | undefined;
|
|
16528
16556
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
16529
16557
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
16530
16558
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -16554,16 +16582,16 @@ declare const device: z.ZodObject<{
|
|
|
16554
16582
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
16555
16583
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16556
16584
|
display_name: z.ZodString;
|
|
16557
|
-
|
|
16558
|
-
|
|
16585
|
+
start_time: z.ZodString;
|
|
16586
|
+
end_time: z.ZodString;
|
|
16559
16587
|
}, "strip", z.ZodTypeAny, {
|
|
16560
16588
|
display_name: string;
|
|
16561
|
-
|
|
16562
|
-
|
|
16589
|
+
start_time: string;
|
|
16590
|
+
end_time: string;
|
|
16563
16591
|
}, {
|
|
16564
16592
|
display_name: string;
|
|
16565
|
-
|
|
16566
|
-
|
|
16593
|
+
start_time: string;
|
|
16594
|
+
end_time: string;
|
|
16567
16595
|
}>, "many">>;
|
|
16568
16596
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
16569
16597
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -16575,8 +16603,8 @@ declare const device: z.ZodObject<{
|
|
|
16575
16603
|
matching_start_end_time?: true | undefined;
|
|
16576
16604
|
time_pairs?: {
|
|
16577
16605
|
display_name: string;
|
|
16578
|
-
|
|
16579
|
-
|
|
16606
|
+
start_time: string;
|
|
16607
|
+
end_time: string;
|
|
16580
16608
|
}[] | undefined;
|
|
16581
16609
|
start_date_recurrence_rule?: string | undefined;
|
|
16582
16610
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16588,8 +16616,8 @@ declare const device: z.ZodObject<{
|
|
|
16588
16616
|
matching_start_end_time?: true | undefined;
|
|
16589
16617
|
time_pairs?: {
|
|
16590
16618
|
display_name: string;
|
|
16591
|
-
|
|
16592
|
-
|
|
16619
|
+
start_time: string;
|
|
16620
|
+
end_time: string;
|
|
16593
16621
|
}[] | undefined;
|
|
16594
16622
|
start_date_recurrence_rule?: string | undefined;
|
|
16595
16623
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16602,16 +16630,16 @@ declare const device: z.ZodObject<{
|
|
|
16602
16630
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
16603
16631
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
16604
16632
|
display_name: z.ZodString;
|
|
16605
|
-
|
|
16606
|
-
|
|
16633
|
+
start_time: z.ZodString;
|
|
16634
|
+
end_time: z.ZodString;
|
|
16607
16635
|
}, "strip", z.ZodTypeAny, {
|
|
16608
16636
|
display_name: string;
|
|
16609
|
-
|
|
16610
|
-
|
|
16637
|
+
start_time: string;
|
|
16638
|
+
end_time: string;
|
|
16611
16639
|
}, {
|
|
16612
16640
|
display_name: string;
|
|
16613
|
-
|
|
16614
|
-
|
|
16641
|
+
start_time: string;
|
|
16642
|
+
end_time: string;
|
|
16615
16643
|
}>, "many">>;
|
|
16616
16644
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
16617
16645
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -16623,8 +16651,8 @@ declare const device: z.ZodObject<{
|
|
|
16623
16651
|
matching_start_end_time?: true | undefined;
|
|
16624
16652
|
time_pairs?: {
|
|
16625
16653
|
display_name: string;
|
|
16626
|
-
|
|
16627
|
-
|
|
16654
|
+
start_time: string;
|
|
16655
|
+
end_time: string;
|
|
16628
16656
|
}[] | undefined;
|
|
16629
16657
|
start_date_recurrence_rule?: string | undefined;
|
|
16630
16658
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16636,8 +16664,8 @@ declare const device: z.ZodObject<{
|
|
|
16636
16664
|
matching_start_end_time?: true | undefined;
|
|
16637
16665
|
time_pairs?: {
|
|
16638
16666
|
display_name: string;
|
|
16639
|
-
|
|
16640
|
-
|
|
16667
|
+
start_time: string;
|
|
16668
|
+
end_time: string;
|
|
16641
16669
|
}[] | undefined;
|
|
16642
16670
|
start_date_recurrence_rule?: string | undefined;
|
|
16643
16671
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16675,8 +16703,8 @@ declare const device: z.ZodObject<{
|
|
|
16675
16703
|
matching_start_end_time?: true | undefined;
|
|
16676
16704
|
time_pairs?: {
|
|
16677
16705
|
display_name: string;
|
|
16678
|
-
|
|
16679
|
-
|
|
16706
|
+
start_time: string;
|
|
16707
|
+
end_time: string;
|
|
16680
16708
|
}[] | undefined;
|
|
16681
16709
|
start_date_recurrence_rule?: string | undefined;
|
|
16682
16710
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16689,8 +16717,8 @@ declare const device: z.ZodObject<{
|
|
|
16689
16717
|
matching_start_end_time?: true | undefined;
|
|
16690
16718
|
time_pairs?: {
|
|
16691
16719
|
display_name: string;
|
|
16692
|
-
|
|
16693
|
-
|
|
16720
|
+
start_time: string;
|
|
16721
|
+
end_time: string;
|
|
16694
16722
|
}[] | undefined;
|
|
16695
16723
|
start_date_recurrence_rule?: string | undefined;
|
|
16696
16724
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16723,8 +16751,8 @@ declare const device: z.ZodObject<{
|
|
|
16723
16751
|
matching_start_end_time?: true | undefined;
|
|
16724
16752
|
time_pairs?: {
|
|
16725
16753
|
display_name: string;
|
|
16726
|
-
|
|
16727
|
-
|
|
16754
|
+
start_time: string;
|
|
16755
|
+
end_time: string;
|
|
16728
16756
|
}[] | undefined;
|
|
16729
16757
|
start_date_recurrence_rule?: string | undefined;
|
|
16730
16758
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -16737,8 +16765,8 @@ declare const device: z.ZodObject<{
|
|
|
16737
16765
|
matching_start_end_time?: true | undefined;
|
|
16738
16766
|
time_pairs?: {
|
|
16739
16767
|
display_name: string;
|
|
16740
|
-
|
|
16741
|
-
|
|
16768
|
+
start_time: string;
|
|
16769
|
+
end_time: string;
|
|
16742
16770
|
}[] | undefined;
|
|
16743
16771
|
start_date_recurrence_rule?: string | undefined;
|
|
16744
16772
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -18400,7 +18428,7 @@ declare const device: z.ZodObject<{
|
|
|
18400
18428
|
warning_code: "insufficient_permissions";
|
|
18401
18429
|
})[];
|
|
18402
18430
|
custom_metadata: Record<string, string | boolean>;
|
|
18403
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
|
|
18431
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
|
|
18404
18432
|
space_ids: string[];
|
|
18405
18433
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
18406
18434
|
properties: {
|
|
@@ -18635,10 +18663,10 @@ declare const device: z.ZodObject<{
|
|
|
18635
18663
|
door_id?: number | undefined;
|
|
18636
18664
|
iana_timezone?: string | undefined;
|
|
18637
18665
|
predefined_time_slots?: {
|
|
18638
|
-
check_in_time: string;
|
|
18639
|
-
check_out_time: string;
|
|
18640
18666
|
name: string;
|
|
18641
18667
|
prefix: number;
|
|
18668
|
+
check_in_time: string;
|
|
18669
|
+
check_out_time: string;
|
|
18642
18670
|
is_24_hour: boolean;
|
|
18643
18671
|
is_biweekly_mode: boolean;
|
|
18644
18672
|
is_one_shot: boolean;
|
|
@@ -18738,6 +18766,12 @@ declare const device: z.ZodObject<{
|
|
|
18738
18766
|
firmware_version?: string | undefined;
|
|
18739
18767
|
wifi_signal_strength?: number | undefined;
|
|
18740
18768
|
} | undefined;
|
|
18769
|
+
kisi_metadata?: {
|
|
18770
|
+
lock_id: number;
|
|
18771
|
+
lock_name: string;
|
|
18772
|
+
place_name: string | null;
|
|
18773
|
+
description: string | null;
|
|
18774
|
+
} | undefined;
|
|
18741
18775
|
} & {
|
|
18742
18776
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
18743
18777
|
code_constraints?: ({
|
|
@@ -18755,8 +18789,8 @@ declare const device: z.ZodObject<{
|
|
|
18755
18789
|
matching_start_end_time?: true | undefined;
|
|
18756
18790
|
time_pairs?: {
|
|
18757
18791
|
display_name: string;
|
|
18758
|
-
|
|
18759
|
-
|
|
18792
|
+
start_time: string;
|
|
18793
|
+
end_time: string;
|
|
18760
18794
|
}[] | undefined;
|
|
18761
18795
|
start_date_recurrence_rule?: string | undefined;
|
|
18762
18796
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -18769,8 +18803,8 @@ declare const device: z.ZodObject<{
|
|
|
18769
18803
|
matching_start_end_time?: true | undefined;
|
|
18770
18804
|
time_pairs?: {
|
|
18771
18805
|
display_name: string;
|
|
18772
|
-
|
|
18773
|
-
|
|
18806
|
+
start_time: string;
|
|
18807
|
+
end_time: string;
|
|
18774
18808
|
}[] | undefined;
|
|
18775
18809
|
start_date_recurrence_rule?: string | undefined;
|
|
18776
18810
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -19183,7 +19217,7 @@ declare const device: z.ZodObject<{
|
|
|
19183
19217
|
warning_code: "insufficient_permissions";
|
|
19184
19218
|
})[];
|
|
19185
19219
|
custom_metadata: Record<string, string | boolean>;
|
|
19186
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
|
|
19220
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
|
|
19187
19221
|
space_ids: string[];
|
|
19188
19222
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
19189
19223
|
properties: {
|
|
@@ -19418,10 +19452,10 @@ declare const device: z.ZodObject<{
|
|
|
19418
19452
|
door_id?: number | undefined;
|
|
19419
19453
|
iana_timezone?: string | undefined;
|
|
19420
19454
|
predefined_time_slots?: {
|
|
19421
|
-
check_in_time: string;
|
|
19422
|
-
check_out_time: string;
|
|
19423
19455
|
name: string;
|
|
19424
19456
|
prefix: number;
|
|
19457
|
+
check_in_time: string;
|
|
19458
|
+
check_out_time: string;
|
|
19425
19459
|
is_24_hour: boolean;
|
|
19426
19460
|
is_biweekly_mode: boolean;
|
|
19427
19461
|
is_one_shot: boolean;
|
|
@@ -19521,6 +19555,12 @@ declare const device: z.ZodObject<{
|
|
|
19521
19555
|
firmware_version?: string | undefined;
|
|
19522
19556
|
wifi_signal_strength?: number | undefined;
|
|
19523
19557
|
} | undefined;
|
|
19558
|
+
kisi_metadata?: {
|
|
19559
|
+
lock_id: number;
|
|
19560
|
+
lock_name: string;
|
|
19561
|
+
place_name: string | null;
|
|
19562
|
+
description: string | null;
|
|
19563
|
+
} | undefined;
|
|
19524
19564
|
} & {
|
|
19525
19565
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
19526
19566
|
code_constraints?: ({
|
|
@@ -19538,8 +19578,8 @@ declare const device: z.ZodObject<{
|
|
|
19538
19578
|
matching_start_end_time?: true | undefined;
|
|
19539
19579
|
time_pairs?: {
|
|
19540
19580
|
display_name: string;
|
|
19541
|
-
|
|
19542
|
-
|
|
19581
|
+
start_time: string;
|
|
19582
|
+
end_time: string;
|
|
19543
19583
|
}[] | undefined;
|
|
19544
19584
|
start_date_recurrence_rule?: string | undefined;
|
|
19545
19585
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -19552,8 +19592,8 @@ declare const device: z.ZodObject<{
|
|
|
19552
19592
|
matching_start_end_time?: true | undefined;
|
|
19553
19593
|
time_pairs?: {
|
|
19554
19594
|
display_name: string;
|
|
19555
|
-
|
|
19556
|
-
|
|
19595
|
+
start_time: string;
|
|
19596
|
+
end_time: string;
|
|
19557
19597
|
}[] | undefined;
|
|
19558
19598
|
start_date_recurrence_rule?: string | undefined;
|
|
19559
19599
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -19805,6 +19845,7 @@ declare const DEVICE_PROVIDERS: {
|
|
|
19805
19845
|
readonly GUESTY: "guesty";
|
|
19806
19846
|
readonly ACUITY_SCHEDULING: "acuity_scheduling";
|
|
19807
19847
|
readonly OMNITEC: "omnitec";
|
|
19848
|
+
readonly KISI: "kisi";
|
|
19808
19849
|
};
|
|
19809
19850
|
type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
|
|
19810
19851
|
declare const device_provider: z.ZodObject<{
|
|
@@ -19888,7 +19929,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
|
|
|
19888
19929
|
|
|
19889
19930
|
declare const unmanaged_device: z.ZodObject<Pick<{
|
|
19890
19931
|
device_id: z.ZodString;
|
|
19891
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
19932
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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"]>, z.ZodEnum<["ring_camera"]>]>;
|
|
19892
19933
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
19893
19934
|
nickname: z.ZodOptional<z.ZodString>;
|
|
19894
19935
|
display_name: z.ZodString;
|
|
@@ -20690,10 +20731,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20690
20731
|
dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
20691
20732
|
dormakaba_oracode_user_level_id: z.ZodString;
|
|
20692
20733
|
}, "strip", z.ZodTypeAny, {
|
|
20693
|
-
check_in_time: string;
|
|
20694
|
-
check_out_time: string;
|
|
20695
20734
|
name: string;
|
|
20696
20735
|
prefix: number;
|
|
20736
|
+
check_in_time: string;
|
|
20737
|
+
check_out_time: string;
|
|
20697
20738
|
is_24_hour: boolean;
|
|
20698
20739
|
is_biweekly_mode: boolean;
|
|
20699
20740
|
is_one_shot: boolean;
|
|
@@ -20701,10 +20742,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20701
20742
|
dormakaba_oracode_user_level_prefix: number;
|
|
20702
20743
|
dormakaba_oracode_user_level_id: string;
|
|
20703
20744
|
}, {
|
|
20704
|
-
check_in_time: string;
|
|
20705
|
-
check_out_time: string;
|
|
20706
20745
|
name: string;
|
|
20707
20746
|
prefix: number;
|
|
20747
|
+
check_in_time: string;
|
|
20748
|
+
check_out_time: string;
|
|
20708
20749
|
is_24_hour: boolean;
|
|
20709
20750
|
is_biweekly_mode: boolean;
|
|
20710
20751
|
is_one_shot: boolean;
|
|
@@ -20721,10 +20762,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20721
20762
|
door_id?: number | undefined;
|
|
20722
20763
|
iana_timezone?: string | undefined;
|
|
20723
20764
|
predefined_time_slots?: {
|
|
20724
|
-
check_in_time: string;
|
|
20725
|
-
check_out_time: string;
|
|
20726
20765
|
name: string;
|
|
20727
20766
|
prefix: number;
|
|
20767
|
+
check_in_time: string;
|
|
20768
|
+
check_out_time: string;
|
|
20728
20769
|
is_24_hour: boolean;
|
|
20729
20770
|
is_biweekly_mode: boolean;
|
|
20730
20771
|
is_one_shot: boolean;
|
|
@@ -20741,10 +20782,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20741
20782
|
door_id?: number | undefined;
|
|
20742
20783
|
iana_timezone?: string | undefined;
|
|
20743
20784
|
predefined_time_slots?: {
|
|
20744
|
-
check_in_time: string;
|
|
20745
|
-
check_out_time: string;
|
|
20746
20785
|
name: string;
|
|
20747
20786
|
prefix: number;
|
|
20787
|
+
check_in_time: string;
|
|
20788
|
+
check_out_time: string;
|
|
20748
20789
|
is_24_hour: boolean;
|
|
20749
20790
|
is_biweekly_mode: boolean;
|
|
20750
20791
|
is_one_shot: boolean;
|
|
@@ -21002,6 +21043,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21002
21043
|
firmware_version?: string | undefined;
|
|
21003
21044
|
wifi_signal_strength?: number | undefined;
|
|
21004
21045
|
}>>;
|
|
21046
|
+
kisi_metadata: z.ZodOptional<z.ZodObject<{
|
|
21047
|
+
lock_id: z.ZodNumber;
|
|
21048
|
+
lock_name: z.ZodString;
|
|
21049
|
+
place_name: z.ZodNullable<z.ZodString>;
|
|
21050
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21051
|
+
}, "strip", z.ZodTypeAny, {
|
|
21052
|
+
lock_id: number;
|
|
21053
|
+
lock_name: string;
|
|
21054
|
+
place_name: string | null;
|
|
21055
|
+
description: string | null;
|
|
21056
|
+
}, {
|
|
21057
|
+
lock_id: number;
|
|
21058
|
+
lock_name: string;
|
|
21059
|
+
place_name: string | null;
|
|
21060
|
+
description: string | null;
|
|
21061
|
+
}>>;
|
|
21005
21062
|
}, "strip", z.ZodTypeAny, {
|
|
21006
21063
|
ecobee_metadata?: {
|
|
21007
21064
|
device_name: string;
|
|
@@ -21186,10 +21243,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21186
21243
|
door_id?: number | undefined;
|
|
21187
21244
|
iana_timezone?: string | undefined;
|
|
21188
21245
|
predefined_time_slots?: {
|
|
21189
|
-
check_in_time: string;
|
|
21190
|
-
check_out_time: string;
|
|
21191
21246
|
name: string;
|
|
21192
21247
|
prefix: number;
|
|
21248
|
+
check_in_time: string;
|
|
21249
|
+
check_out_time: string;
|
|
21193
21250
|
is_24_hour: boolean;
|
|
21194
21251
|
is_biweekly_mode: boolean;
|
|
21195
21252
|
is_one_shot: boolean;
|
|
@@ -21289,6 +21346,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21289
21346
|
firmware_version?: string | undefined;
|
|
21290
21347
|
wifi_signal_strength?: number | undefined;
|
|
21291
21348
|
} | undefined;
|
|
21349
|
+
kisi_metadata?: {
|
|
21350
|
+
lock_id: number;
|
|
21351
|
+
lock_name: string;
|
|
21352
|
+
place_name: string | null;
|
|
21353
|
+
description: string | null;
|
|
21354
|
+
} | undefined;
|
|
21292
21355
|
}, {
|
|
21293
21356
|
ecobee_metadata?: {
|
|
21294
21357
|
device_name: string;
|
|
@@ -21473,10 +21536,10 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21473
21536
|
door_id?: number | undefined;
|
|
21474
21537
|
iana_timezone?: string | undefined;
|
|
21475
21538
|
predefined_time_slots?: {
|
|
21476
|
-
check_in_time: string;
|
|
21477
|
-
check_out_time: string;
|
|
21478
21539
|
name: string;
|
|
21479
21540
|
prefix: number;
|
|
21541
|
+
check_in_time: string;
|
|
21542
|
+
check_out_time: string;
|
|
21480
21543
|
is_24_hour: boolean;
|
|
21481
21544
|
is_biweekly_mode: boolean;
|
|
21482
21545
|
is_one_shot: boolean;
|
|
@@ -21576,6 +21639,12 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21576
21639
|
firmware_version?: string | undefined;
|
|
21577
21640
|
wifi_signal_strength?: number | undefined;
|
|
21578
21641
|
} | undefined;
|
|
21642
|
+
kisi_metadata?: {
|
|
21643
|
+
lock_id: number;
|
|
21644
|
+
lock_name: string;
|
|
21645
|
+
place_name: string | null;
|
|
21646
|
+
description: string | null;
|
|
21647
|
+
} | undefined;
|
|
21579
21648
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
21580
21649
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
21581
21650
|
code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
@@ -21605,16 +21674,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21605
21674
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
21606
21675
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21607
21676
|
display_name: z.ZodString;
|
|
21608
|
-
|
|
21609
|
-
|
|
21677
|
+
start_time: z.ZodString;
|
|
21678
|
+
end_time: z.ZodString;
|
|
21610
21679
|
}, "strip", z.ZodTypeAny, {
|
|
21611
21680
|
display_name: string;
|
|
21612
|
-
|
|
21613
|
-
|
|
21681
|
+
start_time: string;
|
|
21682
|
+
end_time: string;
|
|
21614
21683
|
}, {
|
|
21615
21684
|
display_name: string;
|
|
21616
|
-
|
|
21617
|
-
|
|
21685
|
+
start_time: string;
|
|
21686
|
+
end_time: string;
|
|
21618
21687
|
}>, "many">>;
|
|
21619
21688
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
21620
21689
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -21626,8 +21695,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21626
21695
|
matching_start_end_time?: true | undefined;
|
|
21627
21696
|
time_pairs?: {
|
|
21628
21697
|
display_name: string;
|
|
21629
|
-
|
|
21630
|
-
|
|
21698
|
+
start_time: string;
|
|
21699
|
+
end_time: string;
|
|
21631
21700
|
}[] | undefined;
|
|
21632
21701
|
start_date_recurrence_rule?: string | undefined;
|
|
21633
21702
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21639,8 +21708,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21639
21708
|
matching_start_end_time?: true | undefined;
|
|
21640
21709
|
time_pairs?: {
|
|
21641
21710
|
display_name: string;
|
|
21642
|
-
|
|
21643
|
-
|
|
21711
|
+
start_time: string;
|
|
21712
|
+
end_time: string;
|
|
21644
21713
|
}[] | undefined;
|
|
21645
21714
|
start_date_recurrence_rule?: string | undefined;
|
|
21646
21715
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21653,16 +21722,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21653
21722
|
matching_start_end_time: z.ZodOptional<z.ZodLiteral<true>>;
|
|
21654
21723
|
time_pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21655
21724
|
display_name: z.ZodString;
|
|
21656
|
-
|
|
21657
|
-
|
|
21725
|
+
start_time: z.ZodString;
|
|
21726
|
+
end_time: z.ZodString;
|
|
21658
21727
|
}, "strip", z.ZodTypeAny, {
|
|
21659
21728
|
display_name: string;
|
|
21660
|
-
|
|
21661
|
-
|
|
21729
|
+
start_time: string;
|
|
21730
|
+
end_time: string;
|
|
21662
21731
|
}, {
|
|
21663
21732
|
display_name: string;
|
|
21664
|
-
|
|
21665
|
-
|
|
21733
|
+
start_time: string;
|
|
21734
|
+
end_time: string;
|
|
21666
21735
|
}>, "many">>;
|
|
21667
21736
|
start_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
21668
21737
|
end_date_recurrence_rule: z.ZodOptional<z.ZodString>;
|
|
@@ -21674,8 +21743,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21674
21743
|
matching_start_end_time?: true | undefined;
|
|
21675
21744
|
time_pairs?: {
|
|
21676
21745
|
display_name: string;
|
|
21677
|
-
|
|
21678
|
-
|
|
21746
|
+
start_time: string;
|
|
21747
|
+
end_time: string;
|
|
21679
21748
|
}[] | undefined;
|
|
21680
21749
|
start_date_recurrence_rule?: string | undefined;
|
|
21681
21750
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21687,8 +21756,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21687
21756
|
matching_start_end_time?: true | undefined;
|
|
21688
21757
|
time_pairs?: {
|
|
21689
21758
|
display_name: string;
|
|
21690
|
-
|
|
21691
|
-
|
|
21759
|
+
start_time: string;
|
|
21760
|
+
end_time: string;
|
|
21692
21761
|
}[] | undefined;
|
|
21693
21762
|
start_date_recurrence_rule?: string | undefined;
|
|
21694
21763
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21726,8 +21795,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21726
21795
|
matching_start_end_time?: true | undefined;
|
|
21727
21796
|
time_pairs?: {
|
|
21728
21797
|
display_name: string;
|
|
21729
|
-
|
|
21730
|
-
|
|
21798
|
+
start_time: string;
|
|
21799
|
+
end_time: string;
|
|
21731
21800
|
}[] | undefined;
|
|
21732
21801
|
start_date_recurrence_rule?: string | undefined;
|
|
21733
21802
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21740,8 +21809,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21740
21809
|
matching_start_end_time?: true | undefined;
|
|
21741
21810
|
time_pairs?: {
|
|
21742
21811
|
display_name: string;
|
|
21743
|
-
|
|
21744
|
-
|
|
21812
|
+
start_time: string;
|
|
21813
|
+
end_time: string;
|
|
21745
21814
|
}[] | undefined;
|
|
21746
21815
|
start_date_recurrence_rule?: string | undefined;
|
|
21747
21816
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21774,8 +21843,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21774
21843
|
matching_start_end_time?: true | undefined;
|
|
21775
21844
|
time_pairs?: {
|
|
21776
21845
|
display_name: string;
|
|
21777
|
-
|
|
21778
|
-
|
|
21846
|
+
start_time: string;
|
|
21847
|
+
end_time: string;
|
|
21779
21848
|
}[] | undefined;
|
|
21780
21849
|
start_date_recurrence_rule?: string | undefined;
|
|
21781
21850
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -21788,8 +21857,8 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21788
21857
|
matching_start_end_time?: true | undefined;
|
|
21789
21858
|
time_pairs?: {
|
|
21790
21859
|
display_name: string;
|
|
21791
|
-
|
|
21792
|
-
|
|
21860
|
+
start_time: string;
|
|
21861
|
+
end_time: string;
|
|
21793
21862
|
}[] | undefined;
|
|
21794
21863
|
start_date_recurrence_rule?: string | undefined;
|
|
21795
21864
|
end_date_recurrence_rule?: string | undefined;
|
|
@@ -23607,7 +23676,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23607
23676
|
warning_code: "insufficient_permissions";
|
|
23608
23677
|
})[];
|
|
23609
23678
|
custom_metadata: Record<string, string | boolean>;
|
|
23610
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
|
|
23679
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
|
|
23611
23680
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23612
23681
|
properties: {
|
|
23613
23682
|
name: string;
|
|
@@ -23888,7 +23957,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23888
23957
|
warning_code: "insufficient_permissions";
|
|
23889
23958
|
})[];
|
|
23890
23959
|
custom_metadata: Record<string, string | boolean>;
|
|
23891
|
-
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_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") | "ring_camera";
|
|
23960
|
+
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" | "smartthings_lock" | "wyze_lock" | "yale_lock" | "two_n_intercom" | "controlbyweb_device" | "ttlock_lock" | "igloohome_lock" | "four_suites_door" | "dormakaba_oracode_door" | "tedee_lock" | "akiles_lock" | "ultraloq_lock" | "keyincode_lock" | "omnitec_lock" | "kisi_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") | "ring_camera";
|
|
23892
23961
|
capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
|
|
23893
23962
|
properties: {
|
|
23894
23963
|
name: string;
|
|
@@ -24077,6 +24146,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24077
24146
|
workspace_id: string;
|
|
24078
24147
|
created_at: string;
|
|
24079
24148
|
connected_account_id: string;
|
|
24149
|
+
description: string;
|
|
24080
24150
|
from: {
|
|
24081
24151
|
name: string | null;
|
|
24082
24152
|
};
|
|
@@ -24087,7 +24157,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24087
24157
|
event_id: string;
|
|
24088
24158
|
occurred_at: string;
|
|
24089
24159
|
event_type: "access_code.name_changed";
|
|
24090
|
-
description: string;
|
|
24091
24160
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24092
24161
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24093
24162
|
}, {
|
|
@@ -24095,6 +24164,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24095
24164
|
workspace_id: string;
|
|
24096
24165
|
created_at: string;
|
|
24097
24166
|
connected_account_id: string;
|
|
24167
|
+
description: string;
|
|
24098
24168
|
from: {
|
|
24099
24169
|
name: string | null;
|
|
24100
24170
|
};
|
|
@@ -24105,7 +24175,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24105
24175
|
event_id: string;
|
|
24106
24176
|
occurred_at: string;
|
|
24107
24177
|
event_type: "access_code.name_changed";
|
|
24108
|
-
description: string;
|
|
24109
24178
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24110
24179
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24111
24180
|
}>, z.ZodObject<{
|
|
@@ -24141,6 +24210,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24141
24210
|
workspace_id: string;
|
|
24142
24211
|
created_at: string;
|
|
24143
24212
|
connected_account_id: string;
|
|
24213
|
+
description: string;
|
|
24144
24214
|
from: {
|
|
24145
24215
|
code: string | null;
|
|
24146
24216
|
};
|
|
@@ -24151,7 +24221,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24151
24221
|
event_id: string;
|
|
24152
24222
|
occurred_at: string;
|
|
24153
24223
|
event_type: "access_code.code_changed";
|
|
24154
|
-
description: string;
|
|
24155
24224
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24156
24225
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24157
24226
|
}, {
|
|
@@ -24159,6 +24228,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24159
24228
|
workspace_id: string;
|
|
24160
24229
|
created_at: string;
|
|
24161
24230
|
connected_account_id: string;
|
|
24231
|
+
description: string;
|
|
24162
24232
|
from: {
|
|
24163
24233
|
code: string | null;
|
|
24164
24234
|
};
|
|
@@ -24169,7 +24239,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24169
24239
|
event_id: string;
|
|
24170
24240
|
occurred_at: string;
|
|
24171
24241
|
event_type: "access_code.code_changed";
|
|
24172
|
-
description: string;
|
|
24173
24242
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24174
24243
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24175
24244
|
}>, z.ZodObject<{
|
|
@@ -24211,6 +24280,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24211
24280
|
workspace_id: string;
|
|
24212
24281
|
created_at: string;
|
|
24213
24282
|
connected_account_id: string;
|
|
24283
|
+
description: string;
|
|
24214
24284
|
from: {
|
|
24215
24285
|
starts_at: string | null;
|
|
24216
24286
|
ends_at: string | null;
|
|
@@ -24223,7 +24293,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24223
24293
|
event_id: string;
|
|
24224
24294
|
occurred_at: string;
|
|
24225
24295
|
event_type: "access_code.time_frame_changed";
|
|
24226
|
-
description: string;
|
|
24227
24296
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24228
24297
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24229
24298
|
}, {
|
|
@@ -24231,6 +24300,7 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24231
24300
|
workspace_id: string;
|
|
24232
24301
|
created_at: string;
|
|
24233
24302
|
connected_account_id: string;
|
|
24303
|
+
description: string;
|
|
24234
24304
|
from: {
|
|
24235
24305
|
starts_at: string | null;
|
|
24236
24306
|
ends_at: string | null;
|
|
@@ -24243,7 +24313,6 @@ declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObject<{
|
|
|
24243
24313
|
event_id: string;
|
|
24244
24314
|
occurred_at: string;
|
|
24245
24315
|
event_type: "access_code.time_frame_changed";
|
|
24246
|
-
description: string;
|
|
24247
24316
|
device_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24248
24317
|
connected_account_custom_metadata?: Record<string, string | boolean> | undefined;
|
|
24249
24318
|
}>, z.ZodObject<{
|
|
@@ -41680,7 +41749,7 @@ type Routes = {
|
|
|
41680
41749
|
/** ID of the device. */
|
|
41681
41750
|
device_id: string;
|
|
41682
41751
|
/** Type of the device. */
|
|
41683
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
41752
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
41684
41753
|
/** IDs of the spaces the device is in. */
|
|
41685
41754
|
space_ids: string[];
|
|
41686
41755
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -42327,6 +42396,17 @@ type Routes = {
|
|
|
42327
42396
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
42328
42397
|
location_id?: (string | null) | undefined;
|
|
42329
42398
|
} | undefined;
|
|
42399
|
+
/** Metadata for a Kisi device. */
|
|
42400
|
+
kisi_metadata?: {
|
|
42401
|
+
/** Lock ID for a Kisi device. */
|
|
42402
|
+
lock_id: number;
|
|
42403
|
+
/** Lock name for a Kisi device. */
|
|
42404
|
+
lock_name: string;
|
|
42405
|
+
/** Place name for a Kisi device. */
|
|
42406
|
+
place_name: string | null;
|
|
42407
|
+
/** Description for a Kisi device. */
|
|
42408
|
+
description: string | null;
|
|
42409
|
+
} | undefined;
|
|
42330
42410
|
}) & ({
|
|
42331
42411
|
/** */
|
|
42332
42412
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42345,52 +42425,52 @@ type Routes = {
|
|
|
42345
42425
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
42346
42426
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
42347
42427
|
offline_time_frame_options?: ({
|
|
42348
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
42428
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
42349
42429
|
display_name: string;
|
|
42350
42430
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
42351
42431
|
min_duration?: string | undefined;
|
|
42352
42432
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
42353
42433
|
max_duration?: string | undefined;
|
|
42354
|
-
/** When `true`, the
|
|
42434
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
42355
42435
|
matching_start_end_time?: true | undefined;
|
|
42356
|
-
/** Fixed
|
|
42436
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
42357
42437
|
time_pairs?: {
|
|
42358
|
-
/** Label for the
|
|
42438
|
+
/** Label for the start/end time pairing. */
|
|
42359
42439
|
display_name: string;
|
|
42360
|
-
/**
|
|
42361
|
-
|
|
42362
|
-
/**
|
|
42363
|
-
|
|
42440
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
42441
|
+
start_time: string;
|
|
42442
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
42443
|
+
end_time: string;
|
|
42364
42444
|
}[] | undefined;
|
|
42365
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
42445
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
42366
42446
|
start_date_recurrence_rule?: string | undefined;
|
|
42367
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
42447
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
42368
42448
|
end_date_recurrence_rule?: string | undefined;
|
|
42369
42449
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
42370
42450
|
time_zone?: string | undefined;
|
|
42371
42451
|
}[] | undefined) | undefined;
|
|
42372
42452
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
42373
42453
|
online_time_frame_options?: ({
|
|
42374
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
42454
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
42375
42455
|
display_name: string;
|
|
42376
42456
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
42377
42457
|
min_duration?: string | undefined;
|
|
42378
42458
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
42379
42459
|
max_duration?: string | undefined;
|
|
42380
|
-
/** When `true`, the
|
|
42460
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
42381
42461
|
matching_start_end_time?: true | undefined;
|
|
42382
|
-
/** Fixed
|
|
42462
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
42383
42463
|
time_pairs?: {
|
|
42384
|
-
/** Label for the
|
|
42464
|
+
/** Label for the start/end time pairing. */
|
|
42385
42465
|
display_name: string;
|
|
42386
|
-
/**
|
|
42387
|
-
|
|
42388
|
-
/**
|
|
42389
|
-
|
|
42466
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
42467
|
+
start_time: string;
|
|
42468
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
42469
|
+
end_time: string;
|
|
42390
42470
|
}[] | undefined;
|
|
42391
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
42471
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
42392
42472
|
start_date_recurrence_rule?: string | undefined;
|
|
42393
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
42473
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
42394
42474
|
end_date_recurrence_rule?: string | undefined;
|
|
42395
42475
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
42396
42476
|
time_zone?: string | undefined;
|
|
@@ -48380,7 +48460,7 @@ type Routes = {
|
|
|
48380
48460
|
/** ID of the device. */
|
|
48381
48461
|
device_id: string;
|
|
48382
48462
|
/** Type of the device. */
|
|
48383
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
48463
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
48384
48464
|
/** IDs of the spaces the device is in. */
|
|
48385
48465
|
space_ids: string[];
|
|
48386
48466
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -49027,6 +49107,17 @@ type Routes = {
|
|
|
49027
49107
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
49028
49108
|
location_id?: (string | null) | undefined;
|
|
49029
49109
|
} | undefined;
|
|
49110
|
+
/** Metadata for a Kisi device. */
|
|
49111
|
+
kisi_metadata?: {
|
|
49112
|
+
/** Lock ID for a Kisi device. */
|
|
49113
|
+
lock_id: number;
|
|
49114
|
+
/** Lock name for a Kisi device. */
|
|
49115
|
+
lock_name: string;
|
|
49116
|
+
/** Place name for a Kisi device. */
|
|
49117
|
+
place_name: string | null;
|
|
49118
|
+
/** Description for a Kisi device. */
|
|
49119
|
+
description: string | null;
|
|
49120
|
+
} | undefined;
|
|
49030
49121
|
}) & ({
|
|
49031
49122
|
/** */
|
|
49032
49123
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -49045,52 +49136,52 @@ type Routes = {
|
|
|
49045
49136
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
49046
49137
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
49047
49138
|
offline_time_frame_options?: ({
|
|
49048
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
49139
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
49049
49140
|
display_name: string;
|
|
49050
49141
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
49051
49142
|
min_duration?: string | undefined;
|
|
49052
49143
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
49053
49144
|
max_duration?: string | undefined;
|
|
49054
|
-
/** When `true`, the
|
|
49145
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
49055
49146
|
matching_start_end_time?: true | undefined;
|
|
49056
|
-
/** Fixed
|
|
49147
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
49057
49148
|
time_pairs?: {
|
|
49058
|
-
/** Label for the
|
|
49149
|
+
/** Label for the start/end time pairing. */
|
|
49059
49150
|
display_name: string;
|
|
49060
|
-
/**
|
|
49061
|
-
|
|
49062
|
-
/**
|
|
49063
|
-
|
|
49151
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
49152
|
+
start_time: string;
|
|
49153
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
49154
|
+
end_time: string;
|
|
49064
49155
|
}[] | undefined;
|
|
49065
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
49156
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
49066
49157
|
start_date_recurrence_rule?: string | undefined;
|
|
49067
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
49158
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
49068
49159
|
end_date_recurrence_rule?: string | undefined;
|
|
49069
49160
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
49070
49161
|
time_zone?: string | undefined;
|
|
49071
49162
|
}[] | undefined) | undefined;
|
|
49072
49163
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
49073
49164
|
online_time_frame_options?: ({
|
|
49074
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
49165
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
49075
49166
|
display_name: string;
|
|
49076
49167
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
49077
49168
|
min_duration?: string | undefined;
|
|
49078
49169
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
49079
49170
|
max_duration?: string | undefined;
|
|
49080
|
-
/** When `true`, the
|
|
49171
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
49081
49172
|
matching_start_end_time?: true | undefined;
|
|
49082
|
-
/** Fixed
|
|
49173
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
49083
49174
|
time_pairs?: {
|
|
49084
|
-
/** Label for the
|
|
49175
|
+
/** Label for the start/end time pairing. */
|
|
49085
49176
|
display_name: string;
|
|
49086
|
-
/**
|
|
49087
|
-
|
|
49088
|
-
/**
|
|
49089
|
-
|
|
49177
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
49178
|
+
start_time: string;
|
|
49179
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
49180
|
+
end_time: string;
|
|
49090
49181
|
}[] | undefined;
|
|
49091
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
49182
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
49092
49183
|
start_date_recurrence_rule?: string | undefined;
|
|
49093
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
49184
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
49094
49185
|
end_date_recurrence_rule?: string | undefined;
|
|
49095
49186
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
49096
49187
|
time_zone?: string | undefined;
|
|
@@ -69031,7 +69122,7 @@ type Routes = {
|
|
|
69031
69122
|
/** Associate the Connect Webview, the connected account, and all resources under the connected account with a customer. If the connected account already exists, it will be associated with the customer. If the connected account already exists, but is already associated with a customer, the Connect Webview will show an error. */
|
|
69032
69123
|
customer_key?: string | undefined;
|
|
69033
69124
|
/** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with no filters. */
|
|
69034
|
-
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69125
|
+
accepted_providers?: ('hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'yale_access' | 'hid_cm' | 'google_nest' | 'slack')[] | undefined;
|
|
69035
69126
|
/** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/api/devices/list_device_providers) with the desired `provider_category` filter. */
|
|
69036
69127
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
|
|
69037
69128
|
/** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
|
|
@@ -70852,7 +70943,7 @@ type Routes = {
|
|
|
70852
70943
|
/** ID of the device. */
|
|
70853
70944
|
device_id: string;
|
|
70854
70945
|
/** Type of the device. */
|
|
70855
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
70946
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
70856
70947
|
/** IDs of the spaces the device is in. */
|
|
70857
70948
|
space_ids: string[];
|
|
70858
70949
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -71499,6 +71590,17 @@ type Routes = {
|
|
|
71499
71590
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
71500
71591
|
location_id?: (string | null) | undefined;
|
|
71501
71592
|
} | undefined;
|
|
71593
|
+
/** Metadata for a Kisi device. */
|
|
71594
|
+
kisi_metadata?: {
|
|
71595
|
+
/** Lock ID for a Kisi device. */
|
|
71596
|
+
lock_id: number;
|
|
71597
|
+
/** Lock name for a Kisi device. */
|
|
71598
|
+
lock_name: string;
|
|
71599
|
+
/** Place name for a Kisi device. */
|
|
71600
|
+
place_name: string | null;
|
|
71601
|
+
/** Description for a Kisi device. */
|
|
71602
|
+
description: string | null;
|
|
71603
|
+
} | undefined;
|
|
71502
71604
|
}) & ({
|
|
71503
71605
|
/** */
|
|
71504
71606
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -71517,52 +71619,52 @@ type Routes = {
|
|
|
71517
71619
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
71518
71620
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
71519
71621
|
offline_time_frame_options?: ({
|
|
71520
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
71622
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
71521
71623
|
display_name: string;
|
|
71522
71624
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
71523
71625
|
min_duration?: string | undefined;
|
|
71524
71626
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
71525
71627
|
max_duration?: string | undefined;
|
|
71526
|
-
/** When `true`, the
|
|
71628
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
71527
71629
|
matching_start_end_time?: true | undefined;
|
|
71528
|
-
/** Fixed
|
|
71630
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
71529
71631
|
time_pairs?: {
|
|
71530
|
-
/** Label for the
|
|
71632
|
+
/** Label for the start/end time pairing. */
|
|
71531
71633
|
display_name: string;
|
|
71532
|
-
/**
|
|
71533
|
-
|
|
71534
|
-
/**
|
|
71535
|
-
|
|
71634
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
71635
|
+
start_time: string;
|
|
71636
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
71637
|
+
end_time: string;
|
|
71536
71638
|
}[] | undefined;
|
|
71537
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
71639
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
71538
71640
|
start_date_recurrence_rule?: string | undefined;
|
|
71539
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
71641
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
71540
71642
|
end_date_recurrence_rule?: string | undefined;
|
|
71541
71643
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
71542
71644
|
time_zone?: string | undefined;
|
|
71543
71645
|
}[] | undefined) | undefined;
|
|
71544
71646
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
71545
71647
|
online_time_frame_options?: ({
|
|
71546
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
71648
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
71547
71649
|
display_name: string;
|
|
71548
71650
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
71549
71651
|
min_duration?: string | undefined;
|
|
71550
71652
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
71551
71653
|
max_duration?: string | undefined;
|
|
71552
|
-
/** When `true`, the
|
|
71654
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
71553
71655
|
matching_start_end_time?: true | undefined;
|
|
71554
|
-
/** Fixed
|
|
71656
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
71555
71657
|
time_pairs?: {
|
|
71556
|
-
/** Label for the
|
|
71658
|
+
/** Label for the start/end time pairing. */
|
|
71557
71659
|
display_name: string;
|
|
71558
|
-
/**
|
|
71559
|
-
|
|
71560
|
-
/**
|
|
71561
|
-
|
|
71660
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
71661
|
+
start_time: string;
|
|
71662
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
71663
|
+
end_time: string;
|
|
71562
71664
|
}[] | undefined;
|
|
71563
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
71665
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
71564
71666
|
start_date_recurrence_rule?: string | undefined;
|
|
71565
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
71667
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
71566
71668
|
end_date_recurrence_rule?: string | undefined;
|
|
71567
71669
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
71568
71670
|
time_zone?: string | undefined;
|
|
@@ -72309,11 +72411,11 @@ type Routes = {
|
|
|
72309
72411
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
72310
72412
|
connect_webview_id?: string | undefined;
|
|
72311
72413
|
/** Device type for which you want to list devices. */
|
|
72312
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
|
|
72414
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera') | undefined;
|
|
72313
72415
|
/** Array of device types for which you want to list devices. */
|
|
72314
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
|
|
72416
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera')[] | undefined;
|
|
72315
72417
|
/** Manufacturer for which you want to list devices. */
|
|
72316
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
72418
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
72317
72419
|
/** Array of device IDs for which you want to list devices. */
|
|
72318
72420
|
device_ids?: string[] | undefined;
|
|
72319
72421
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -72346,7 +72448,7 @@ type Routes = {
|
|
|
72346
72448
|
/** ID of the device. */
|
|
72347
72449
|
device_id: string;
|
|
72348
72450
|
/** Type of the device. */
|
|
72349
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
72451
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
72350
72452
|
/** IDs of the spaces the device is in. */
|
|
72351
72453
|
space_ids: string[];
|
|
72352
72454
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -72993,6 +73095,17 @@ type Routes = {
|
|
|
72993
73095
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
72994
73096
|
location_id?: (string | null) | undefined;
|
|
72995
73097
|
} | undefined;
|
|
73098
|
+
/** Metadata for a Kisi device. */
|
|
73099
|
+
kisi_metadata?: {
|
|
73100
|
+
/** Lock ID for a Kisi device. */
|
|
73101
|
+
lock_id: number;
|
|
73102
|
+
/** Lock name for a Kisi device. */
|
|
73103
|
+
lock_name: string;
|
|
73104
|
+
/** Place name for a Kisi device. */
|
|
73105
|
+
place_name: string | null;
|
|
73106
|
+
/** Description for a Kisi device. */
|
|
73107
|
+
description: string | null;
|
|
73108
|
+
} | undefined;
|
|
72996
73109
|
}) & ({
|
|
72997
73110
|
/** */
|
|
72998
73111
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -73011,52 +73124,52 @@ type Routes = {
|
|
|
73011
73124
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
73012
73125
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
73013
73126
|
offline_time_frame_options?: ({
|
|
73014
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
73127
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
73015
73128
|
display_name: string;
|
|
73016
73129
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
73017
73130
|
min_duration?: string | undefined;
|
|
73018
73131
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
73019
73132
|
max_duration?: string | undefined;
|
|
73020
|
-
/** When `true`, the
|
|
73133
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
73021
73134
|
matching_start_end_time?: true | undefined;
|
|
73022
|
-
/** Fixed
|
|
73135
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
73023
73136
|
time_pairs?: {
|
|
73024
|
-
/** Label for the
|
|
73137
|
+
/** Label for the start/end time pairing. */
|
|
73025
73138
|
display_name: string;
|
|
73026
|
-
/**
|
|
73027
|
-
|
|
73028
|
-
/**
|
|
73029
|
-
|
|
73139
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
73140
|
+
start_time: string;
|
|
73141
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
73142
|
+
end_time: string;
|
|
73030
73143
|
}[] | undefined;
|
|
73031
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
73144
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
73032
73145
|
start_date_recurrence_rule?: string | undefined;
|
|
73033
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
73146
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
73034
73147
|
end_date_recurrence_rule?: string | undefined;
|
|
73035
73148
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
73036
73149
|
time_zone?: string | undefined;
|
|
73037
73150
|
}[] | undefined) | undefined;
|
|
73038
73151
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
73039
73152
|
online_time_frame_options?: ({
|
|
73040
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
73153
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
73041
73154
|
display_name: string;
|
|
73042
73155
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
73043
73156
|
min_duration?: string | undefined;
|
|
73044
73157
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
73045
73158
|
max_duration?: string | undefined;
|
|
73046
|
-
/** When `true`, the
|
|
73159
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
73047
73160
|
matching_start_end_time?: true | undefined;
|
|
73048
|
-
/** Fixed
|
|
73161
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
73049
73162
|
time_pairs?: {
|
|
73050
|
-
/** Label for the
|
|
73163
|
+
/** Label for the start/end time pairing. */
|
|
73051
73164
|
display_name: string;
|
|
73052
|
-
/**
|
|
73053
|
-
|
|
73054
|
-
/**
|
|
73055
|
-
|
|
73165
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
73166
|
+
start_time: string;
|
|
73167
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
73168
|
+
end_time: string;
|
|
73056
73169
|
}[] | undefined;
|
|
73057
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
73170
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
73058
73171
|
start_date_recurrence_rule?: string | undefined;
|
|
73059
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
73172
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
73060
73173
|
end_date_recurrence_rule?: string | undefined;
|
|
73061
73174
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
73062
73175
|
time_zone?: string | undefined;
|
|
@@ -73810,7 +73923,7 @@ type Routes = {
|
|
|
73810
73923
|
jsonResponse: {
|
|
73811
73924
|
device_providers: {
|
|
73812
73925
|
/** Name of the device provider. */
|
|
73813
|
-
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec';
|
|
73926
|
+
device_provider_name: 'hotek' | 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'first_alert' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'keynest' | 'korelock' | 'keyincode' | 'dormakaba_ambiance' | 'ultraloq' | 'dusaw' | 'sifely' | 'thirty_three_lock' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi';
|
|
73814
73927
|
/** Display name for the device provider. */
|
|
73815
73928
|
display_name: string;
|
|
73816
73929
|
/** Image URL for the device provider. */
|
|
@@ -73988,7 +74101,7 @@ type Routes = {
|
|
|
73988
74101
|
/** ID of the device. */
|
|
73989
74102
|
device_id: string;
|
|
73990
74103
|
/** Type of the device. */
|
|
73991
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
74104
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
73992
74105
|
/** Unique identifier for the account associated with the device. */
|
|
73993
74106
|
connected_account_id: string;
|
|
73994
74107
|
/** Location information for the device. */
|
|
@@ -74488,11 +74601,11 @@ type Routes = {
|
|
|
74488
74601
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
74489
74602
|
connect_webview_id?: string | undefined;
|
|
74490
74603
|
/** Device type for which you want to list devices. */
|
|
74491
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera') | undefined;
|
|
74604
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera') | undefined;
|
|
74492
74605
|
/** Array of device types for which you want to list devices. */
|
|
74493
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera')[] | undefined;
|
|
74606
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera')[] | undefined;
|
|
74494
74607
|
/** Manufacturer for which you want to list devices. */
|
|
74495
|
-
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'slack') | undefined;
|
|
74608
|
+
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' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'keynest' | 'korelock' | 'minut' | 'nest' | 'noiseaware' | 'sensi' | 'smartthings' | 'tado' | 'ultraloq' | 'ring' | 'ical' | 'lodgify' | 'hostaway' | 'guesty' | 'acuity_scheduling' | 'omnitec' | 'kisi' | 'slack') | undefined;
|
|
74496
74609
|
/** Array of device IDs for which you want to list devices. */
|
|
74497
74610
|
device_ids?: string[] | undefined;
|
|
74498
74611
|
/** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
|
|
@@ -74525,7 +74638,7 @@ type Routes = {
|
|
|
74525
74638
|
/** ID of the device. */
|
|
74526
74639
|
device_id: string;
|
|
74527
74640
|
/** Type of the device. */
|
|
74528
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
74641
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
74529
74642
|
/** Unique identifier for the account associated with the device. */
|
|
74530
74643
|
connected_account_id: string;
|
|
74531
74644
|
/** Location information for the device. */
|
|
@@ -82907,7 +83020,7 @@ type Routes = {
|
|
|
82907
83020
|
/** ID of the device. */
|
|
82908
83021
|
device_id: string;
|
|
82909
83022
|
/** Type of the device. */
|
|
82910
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
83023
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
82911
83024
|
/** IDs of the spaces the device is in. */
|
|
82912
83025
|
space_ids: string[];
|
|
82913
83026
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -83554,6 +83667,17 @@ type Routes = {
|
|
|
83554
83667
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
83555
83668
|
location_id?: (string | null) | undefined;
|
|
83556
83669
|
} | undefined;
|
|
83670
|
+
/** Metadata for a Kisi device. */
|
|
83671
|
+
kisi_metadata?: {
|
|
83672
|
+
/** Lock ID for a Kisi device. */
|
|
83673
|
+
lock_id: number;
|
|
83674
|
+
/** Lock name for a Kisi device. */
|
|
83675
|
+
lock_name: string;
|
|
83676
|
+
/** Place name for a Kisi device. */
|
|
83677
|
+
place_name: string | null;
|
|
83678
|
+
/** Description for a Kisi device. */
|
|
83679
|
+
description: string | null;
|
|
83680
|
+
} | undefined;
|
|
83557
83681
|
}) & ({
|
|
83558
83682
|
/** */
|
|
83559
83683
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -83572,52 +83696,52 @@ type Routes = {
|
|
|
83572
83696
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
83573
83697
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
83574
83698
|
offline_time_frame_options?: ({
|
|
83575
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
83699
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
83576
83700
|
display_name: string;
|
|
83577
83701
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
83578
83702
|
min_duration?: string | undefined;
|
|
83579
83703
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
83580
83704
|
max_duration?: string | undefined;
|
|
83581
|
-
/** When `true`, the
|
|
83705
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
83582
83706
|
matching_start_end_time?: true | undefined;
|
|
83583
|
-
/** Fixed
|
|
83707
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
83584
83708
|
time_pairs?: {
|
|
83585
|
-
/** Label for the
|
|
83709
|
+
/** Label for the start/end time pairing. */
|
|
83586
83710
|
display_name: string;
|
|
83587
|
-
/**
|
|
83588
|
-
|
|
83589
|
-
/**
|
|
83590
|
-
|
|
83711
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
83712
|
+
start_time: string;
|
|
83713
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
83714
|
+
end_time: string;
|
|
83591
83715
|
}[] | undefined;
|
|
83592
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
83716
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
83593
83717
|
start_date_recurrence_rule?: string | undefined;
|
|
83594
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
83718
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
83595
83719
|
end_date_recurrence_rule?: string | undefined;
|
|
83596
83720
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
83597
83721
|
time_zone?: string | undefined;
|
|
83598
83722
|
}[] | undefined) | undefined;
|
|
83599
83723
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
83600
83724
|
online_time_frame_options?: ({
|
|
83601
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
83725
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
83602
83726
|
display_name: string;
|
|
83603
83727
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
83604
83728
|
min_duration?: string | undefined;
|
|
83605
83729
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
83606
83730
|
max_duration?: string | undefined;
|
|
83607
|
-
/** When `true`, the
|
|
83731
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
83608
83732
|
matching_start_end_time?: true | undefined;
|
|
83609
|
-
/** Fixed
|
|
83733
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
83610
83734
|
time_pairs?: {
|
|
83611
|
-
/** Label for the
|
|
83735
|
+
/** Label for the start/end time pairing. */
|
|
83612
83736
|
display_name: string;
|
|
83613
|
-
/**
|
|
83614
|
-
|
|
83615
|
-
/**
|
|
83616
|
-
|
|
83737
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
83738
|
+
start_time: string;
|
|
83739
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
83740
|
+
end_time: string;
|
|
83617
83741
|
}[] | undefined;
|
|
83618
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
83742
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
83619
83743
|
start_date_recurrence_rule?: string | undefined;
|
|
83620
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
83744
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
83621
83745
|
end_date_recurrence_rule?: string | undefined;
|
|
83622
83746
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
83623
83747
|
time_zone?: string | undefined;
|
|
@@ -84351,7 +84475,7 @@ type Routes = {
|
|
|
84351
84475
|
/** ID of the device. */
|
|
84352
84476
|
device_id: string;
|
|
84353
84477
|
/** Type of the device. */
|
|
84354
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
84478
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
84355
84479
|
/** IDs of the spaces the device is in. */
|
|
84356
84480
|
space_ids: string[];
|
|
84357
84481
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -84998,6 +85122,17 @@ type Routes = {
|
|
|
84998
85122
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
84999
85123
|
location_id?: (string | null) | undefined;
|
|
85000
85124
|
} | undefined;
|
|
85125
|
+
/** Metadata for a Kisi device. */
|
|
85126
|
+
kisi_metadata?: {
|
|
85127
|
+
/** Lock ID for a Kisi device. */
|
|
85128
|
+
lock_id: number;
|
|
85129
|
+
/** Lock name for a Kisi device. */
|
|
85130
|
+
lock_name: string;
|
|
85131
|
+
/** Place name for a Kisi device. */
|
|
85132
|
+
place_name: string | null;
|
|
85133
|
+
/** Description for a Kisi device. */
|
|
85134
|
+
description: string | null;
|
|
85135
|
+
} | undefined;
|
|
85001
85136
|
}) & ({
|
|
85002
85137
|
/** */
|
|
85003
85138
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -85016,52 +85151,52 @@ type Routes = {
|
|
|
85016
85151
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
85017
85152
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
85018
85153
|
offline_time_frame_options?: ({
|
|
85019
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
85154
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
85020
85155
|
display_name: string;
|
|
85021
85156
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
85022
85157
|
min_duration?: string | undefined;
|
|
85023
85158
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
85024
85159
|
max_duration?: string | undefined;
|
|
85025
|
-
/** When `true`, the
|
|
85160
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
85026
85161
|
matching_start_end_time?: true | undefined;
|
|
85027
|
-
/** Fixed
|
|
85162
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
85028
85163
|
time_pairs?: {
|
|
85029
|
-
/** Label for the
|
|
85164
|
+
/** Label for the start/end time pairing. */
|
|
85030
85165
|
display_name: string;
|
|
85031
|
-
/**
|
|
85032
|
-
|
|
85033
|
-
/**
|
|
85034
|
-
|
|
85166
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
85167
|
+
start_time: string;
|
|
85168
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
85169
|
+
end_time: string;
|
|
85035
85170
|
}[] | undefined;
|
|
85036
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
85171
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
85037
85172
|
start_date_recurrence_rule?: string | undefined;
|
|
85038
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
85173
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
85039
85174
|
end_date_recurrence_rule?: string | undefined;
|
|
85040
85175
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
85041
85176
|
time_zone?: string | undefined;
|
|
85042
85177
|
}[] | undefined) | undefined;
|
|
85043
85178
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
85044
85179
|
online_time_frame_options?: ({
|
|
85045
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
85180
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
85046
85181
|
display_name: string;
|
|
85047
85182
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
85048
85183
|
min_duration?: string | undefined;
|
|
85049
85184
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
85050
85185
|
max_duration?: string | undefined;
|
|
85051
|
-
/** When `true`, the
|
|
85186
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
85052
85187
|
matching_start_end_time?: true | undefined;
|
|
85053
|
-
/** Fixed
|
|
85188
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
85054
85189
|
time_pairs?: {
|
|
85055
|
-
/** Label for the
|
|
85190
|
+
/** Label for the start/end time pairing. */
|
|
85056
85191
|
display_name: string;
|
|
85057
|
-
/**
|
|
85058
|
-
|
|
85059
|
-
/**
|
|
85060
|
-
|
|
85192
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
85193
|
+
start_time: string;
|
|
85194
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
85195
|
+
end_time: string;
|
|
85061
85196
|
}[] | undefined;
|
|
85062
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
85197
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
85063
85198
|
start_date_recurrence_rule?: string | undefined;
|
|
85064
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
85199
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
85065
85200
|
end_date_recurrence_rule?: string | undefined;
|
|
85066
85201
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
85067
85202
|
time_zone?: string | undefined;
|
|
@@ -85808,11 +85943,11 @@ type Routes = {
|
|
|
85808
85943
|
/** ID of the Connect Webview for which you want to list devices. */
|
|
85809
85944
|
connect_webview_id?: string | undefined;
|
|
85810
85945
|
/** Device type of the locks that you want to list. */
|
|
85811
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock') | undefined;
|
|
85946
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock') | undefined;
|
|
85812
85947
|
/** Device types of the locks that you want to list. */
|
|
85813
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock')[] | undefined;
|
|
85948
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_lock')[] | undefined;
|
|
85814
85949
|
/** Manufacturer of the locks that you want to list. */
|
|
85815
|
-
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec') | undefined;
|
|
85950
|
+
manufacturer?: ('akuvox' | 'august' | 'brivo' | 'butterflymx' | 'avigilon_alta' | 'doorking' | 'genie' | 'igloo' | 'linear' | 'lockly' | 'kwikset' | 'nuki' | 'salto' | 'schlage' | 'seam' | 'wyze' | 'yale' | 'two_n' | 'controlbyweb' | 'ttlock' | 'igloohome' | 'four_suites' | 'dormakaba_oracode' | 'tedee' | 'keyincode' | 'kisi' | 'akiles' | 'korelock' | 'smartthings' | 'ultraloq' | 'omnitec' | 'kisi') | undefined;
|
|
85816
85951
|
/** Array of device IDs for which you want to list devices. */
|
|
85817
85952
|
device_ids?: string[] | undefined;
|
|
85818
85953
|
/** Numerical limit on the number of devices to return. */
|
|
@@ -85845,7 +85980,7 @@ type Routes = {
|
|
|
85845
85980
|
/** ID of the device. */
|
|
85846
85981
|
device_id: string;
|
|
85847
85982
|
/** Type of the device. */
|
|
85848
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
85983
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
85849
85984
|
/** IDs of the spaces the device is in. */
|
|
85850
85985
|
space_ids: string[];
|
|
85851
85986
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -86492,6 +86627,17 @@ type Routes = {
|
|
|
86492
86627
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
86493
86628
|
location_id?: (string | null) | undefined;
|
|
86494
86629
|
} | undefined;
|
|
86630
|
+
/** Metadata for a Kisi device. */
|
|
86631
|
+
kisi_metadata?: {
|
|
86632
|
+
/** Lock ID for a Kisi device. */
|
|
86633
|
+
lock_id: number;
|
|
86634
|
+
/** Lock name for a Kisi device. */
|
|
86635
|
+
lock_name: string;
|
|
86636
|
+
/** Place name for a Kisi device. */
|
|
86637
|
+
place_name: string | null;
|
|
86638
|
+
/** Description for a Kisi device. */
|
|
86639
|
+
description: string | null;
|
|
86640
|
+
} | undefined;
|
|
86495
86641
|
}) & ({
|
|
86496
86642
|
/** */
|
|
86497
86643
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -86510,52 +86656,52 @@ type Routes = {
|
|
|
86510
86656
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
86511
86657
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
86512
86658
|
offline_time_frame_options?: ({
|
|
86513
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
86659
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
86514
86660
|
display_name: string;
|
|
86515
86661
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
86516
86662
|
min_duration?: string | undefined;
|
|
86517
86663
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
86518
86664
|
max_duration?: string | undefined;
|
|
86519
|
-
/** When `true`, the
|
|
86665
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
86520
86666
|
matching_start_end_time?: true | undefined;
|
|
86521
|
-
/** Fixed
|
|
86667
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
86522
86668
|
time_pairs?: {
|
|
86523
|
-
/** Label for the
|
|
86669
|
+
/** Label for the start/end time pairing. */
|
|
86524
86670
|
display_name: string;
|
|
86525
|
-
/**
|
|
86526
|
-
|
|
86527
|
-
/**
|
|
86528
|
-
|
|
86671
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
86672
|
+
start_time: string;
|
|
86673
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
86674
|
+
end_time: string;
|
|
86529
86675
|
}[] | undefined;
|
|
86530
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
86676
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
86531
86677
|
start_date_recurrence_rule?: string | undefined;
|
|
86532
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
86678
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
86533
86679
|
end_date_recurrence_rule?: string | undefined;
|
|
86534
86680
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
86535
86681
|
time_zone?: string | undefined;
|
|
86536
86682
|
}[] | undefined) | undefined;
|
|
86537
86683
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
86538
86684
|
online_time_frame_options?: ({
|
|
86539
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
86685
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
86540
86686
|
display_name: string;
|
|
86541
86687
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
86542
86688
|
min_duration?: string | undefined;
|
|
86543
86689
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
86544
86690
|
max_duration?: string | undefined;
|
|
86545
|
-
/** When `true`, the
|
|
86691
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
86546
86692
|
matching_start_end_time?: true | undefined;
|
|
86547
|
-
/** Fixed
|
|
86693
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
86548
86694
|
time_pairs?: {
|
|
86549
|
-
/** Label for the
|
|
86695
|
+
/** Label for the start/end time pairing. */
|
|
86550
86696
|
display_name: string;
|
|
86551
|
-
/**
|
|
86552
|
-
|
|
86553
|
-
/**
|
|
86554
|
-
|
|
86697
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
86698
|
+
start_time: string;
|
|
86699
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
86700
|
+
end_time: string;
|
|
86555
86701
|
}[] | undefined;
|
|
86556
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
86702
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
86557
86703
|
start_date_recurrence_rule?: string | undefined;
|
|
86558
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
86704
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
86559
86705
|
end_date_recurrence_rule?: string | undefined;
|
|
86560
86706
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
86561
86707
|
time_zone?: string | undefined;
|
|
@@ -87288,7 +87434,7 @@ type Routes = {
|
|
|
87288
87434
|
/** ID of the device. */
|
|
87289
87435
|
device_id: string;
|
|
87290
87436
|
/** Type of the device. */
|
|
87291
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
87437
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
87292
87438
|
/** IDs of the spaces the device is in. */
|
|
87293
87439
|
space_ids: string[];
|
|
87294
87440
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -87935,6 +88081,17 @@ type Routes = {
|
|
|
87935
88081
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
87936
88082
|
location_id?: (string | null) | undefined;
|
|
87937
88083
|
} | undefined;
|
|
88084
|
+
/** Metadata for a Kisi device. */
|
|
88085
|
+
kisi_metadata?: {
|
|
88086
|
+
/** Lock ID for a Kisi device. */
|
|
88087
|
+
lock_id: number;
|
|
88088
|
+
/** Lock name for a Kisi device. */
|
|
88089
|
+
lock_name: string;
|
|
88090
|
+
/** Place name for a Kisi device. */
|
|
88091
|
+
place_name: string | null;
|
|
88092
|
+
/** Description for a Kisi device. */
|
|
88093
|
+
description: string | null;
|
|
88094
|
+
} | undefined;
|
|
87938
88095
|
}) & ({
|
|
87939
88096
|
/** */
|
|
87940
88097
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -87953,52 +88110,52 @@ type Routes = {
|
|
|
87953
88110
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
87954
88111
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
87955
88112
|
offline_time_frame_options?: ({
|
|
87956
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
88113
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
87957
88114
|
display_name: string;
|
|
87958
88115
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
87959
88116
|
min_duration?: string | undefined;
|
|
87960
88117
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
87961
88118
|
max_duration?: string | undefined;
|
|
87962
|
-
/** When `true`, the
|
|
88119
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
87963
88120
|
matching_start_end_time?: true | undefined;
|
|
87964
|
-
/** Fixed
|
|
88121
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
87965
88122
|
time_pairs?: {
|
|
87966
|
-
/** Label for the
|
|
88123
|
+
/** Label for the start/end time pairing. */
|
|
87967
88124
|
display_name: string;
|
|
87968
|
-
/**
|
|
87969
|
-
|
|
87970
|
-
/**
|
|
87971
|
-
|
|
88125
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
88126
|
+
start_time: string;
|
|
88127
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
88128
|
+
end_time: string;
|
|
87972
88129
|
}[] | undefined;
|
|
87973
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
88130
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
87974
88131
|
start_date_recurrence_rule?: string | undefined;
|
|
87975
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
88132
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
87976
88133
|
end_date_recurrence_rule?: string | undefined;
|
|
87977
88134
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
87978
88135
|
time_zone?: string | undefined;
|
|
87979
88136
|
}[] | undefined) | undefined;
|
|
87980
88137
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
87981
88138
|
online_time_frame_options?: ({
|
|
87982
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
88139
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
87983
88140
|
display_name: string;
|
|
87984
88141
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
87985
88142
|
min_duration?: string | undefined;
|
|
87986
88143
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
87987
88144
|
max_duration?: string | undefined;
|
|
87988
|
-
/** When `true`, the
|
|
88145
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
87989
88146
|
matching_start_end_time?: true | undefined;
|
|
87990
|
-
/** Fixed
|
|
88147
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
87991
88148
|
time_pairs?: {
|
|
87992
|
-
/** Label for the
|
|
88149
|
+
/** Label for the start/end time pairing. */
|
|
87993
88150
|
display_name: string;
|
|
87994
|
-
/**
|
|
87995
|
-
|
|
87996
|
-
/**
|
|
87997
|
-
|
|
88151
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
88152
|
+
start_time: string;
|
|
88153
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
88154
|
+
end_time: string;
|
|
87998
88155
|
}[] | undefined;
|
|
87999
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
88156
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
88000
88157
|
start_date_recurrence_rule?: string | undefined;
|
|
88001
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
88158
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
88002
88159
|
end_date_recurrence_rule?: string | undefined;
|
|
88003
88160
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
88004
88161
|
time_zone?: string | undefined;
|
|
@@ -95508,7 +95665,7 @@ type Routes = {
|
|
|
95508
95665
|
/** ID of the device. */
|
|
95509
95666
|
device_id: string;
|
|
95510
95667
|
/** Type of the device. */
|
|
95511
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
95668
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
95512
95669
|
/** IDs of the spaces the device is in. */
|
|
95513
95670
|
space_ids: string[];
|
|
95514
95671
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -96155,6 +96312,17 @@ type Routes = {
|
|
|
96155
96312
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
96156
96313
|
location_id?: (string | null) | undefined;
|
|
96157
96314
|
} | undefined;
|
|
96315
|
+
/** Metadata for a Kisi device. */
|
|
96316
|
+
kisi_metadata?: {
|
|
96317
|
+
/** Lock ID for a Kisi device. */
|
|
96318
|
+
lock_id: number;
|
|
96319
|
+
/** Lock name for a Kisi device. */
|
|
96320
|
+
lock_name: string;
|
|
96321
|
+
/** Place name for a Kisi device. */
|
|
96322
|
+
place_name: string | null;
|
|
96323
|
+
/** Description for a Kisi device. */
|
|
96324
|
+
description: string | null;
|
|
96325
|
+
} | undefined;
|
|
96158
96326
|
}) & ({
|
|
96159
96327
|
/** */
|
|
96160
96328
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -96173,52 +96341,52 @@ type Routes = {
|
|
|
96173
96341
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
96174
96342
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
96175
96343
|
offline_time_frame_options?: ({
|
|
96176
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
96344
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
96177
96345
|
display_name: string;
|
|
96178
96346
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
96179
96347
|
min_duration?: string | undefined;
|
|
96180
96348
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
96181
96349
|
max_duration?: string | undefined;
|
|
96182
|
-
/** When `true`, the
|
|
96350
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
96183
96351
|
matching_start_end_time?: true | undefined;
|
|
96184
|
-
/** Fixed
|
|
96352
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
96185
96353
|
time_pairs?: {
|
|
96186
|
-
/** Label for the
|
|
96354
|
+
/** Label for the start/end time pairing. */
|
|
96187
96355
|
display_name: string;
|
|
96188
|
-
/**
|
|
96189
|
-
|
|
96190
|
-
/**
|
|
96191
|
-
|
|
96356
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
96357
|
+
start_time: string;
|
|
96358
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
96359
|
+
end_time: string;
|
|
96192
96360
|
}[] | undefined;
|
|
96193
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
96361
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
96194
96362
|
start_date_recurrence_rule?: string | undefined;
|
|
96195
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
96363
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
96196
96364
|
end_date_recurrence_rule?: string | undefined;
|
|
96197
96365
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
96198
96366
|
time_zone?: string | undefined;
|
|
96199
96367
|
}[] | undefined) | undefined;
|
|
96200
96368
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
96201
96369
|
online_time_frame_options?: ({
|
|
96202
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
96370
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
96203
96371
|
display_name: string;
|
|
96204
96372
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
96205
96373
|
min_duration?: string | undefined;
|
|
96206
96374
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
96207
96375
|
max_duration?: string | undefined;
|
|
96208
|
-
/** When `true`, the
|
|
96376
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
96209
96377
|
matching_start_end_time?: true | undefined;
|
|
96210
|
-
/** Fixed
|
|
96378
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
96211
96379
|
time_pairs?: {
|
|
96212
|
-
/** Label for the
|
|
96380
|
+
/** Label for the start/end time pairing. */
|
|
96213
96381
|
display_name: string;
|
|
96214
|
-
/**
|
|
96215
|
-
|
|
96216
|
-
/**
|
|
96217
|
-
|
|
96382
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
96383
|
+
start_time: string;
|
|
96384
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
96385
|
+
end_time: string;
|
|
96218
96386
|
}[] | undefined;
|
|
96219
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
96387
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
96220
96388
|
start_date_recurrence_rule?: string | undefined;
|
|
96221
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
96389
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
96222
96390
|
end_date_recurrence_rule?: string | undefined;
|
|
96223
96391
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
96224
96392
|
time_zone?: string | undefined;
|
|
@@ -96951,7 +97119,7 @@ type Routes = {
|
|
|
96951
97119
|
/** ID of the device. */
|
|
96952
97120
|
device_id: string;
|
|
96953
97121
|
/** Type of the device. */
|
|
96954
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
97122
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
96955
97123
|
/** IDs of the spaces the device is in. */
|
|
96956
97124
|
space_ids: string[];
|
|
96957
97125
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -97598,6 +97766,17 @@ type Routes = {
|
|
|
97598
97766
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
97599
97767
|
location_id?: (string | null) | undefined;
|
|
97600
97768
|
} | undefined;
|
|
97769
|
+
/** Metadata for a Kisi device. */
|
|
97770
|
+
kisi_metadata?: {
|
|
97771
|
+
/** Lock ID for a Kisi device. */
|
|
97772
|
+
lock_id: number;
|
|
97773
|
+
/** Lock name for a Kisi device. */
|
|
97774
|
+
lock_name: string;
|
|
97775
|
+
/** Place name for a Kisi device. */
|
|
97776
|
+
place_name: string | null;
|
|
97777
|
+
/** Description for a Kisi device. */
|
|
97778
|
+
description: string | null;
|
|
97779
|
+
} | undefined;
|
|
97601
97780
|
}) & ({
|
|
97602
97781
|
/** */
|
|
97603
97782
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -97616,52 +97795,52 @@ type Routes = {
|
|
|
97616
97795
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
97617
97796
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
97618
97797
|
offline_time_frame_options?: ({
|
|
97619
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
97798
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
97620
97799
|
display_name: string;
|
|
97621
97800
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
97622
97801
|
min_duration?: string | undefined;
|
|
97623
97802
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
97624
97803
|
max_duration?: string | undefined;
|
|
97625
|
-
/** When `true`, the
|
|
97804
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
97626
97805
|
matching_start_end_time?: true | undefined;
|
|
97627
|
-
/** Fixed
|
|
97806
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
97628
97807
|
time_pairs?: {
|
|
97629
|
-
/** Label for the
|
|
97808
|
+
/** Label for the start/end time pairing. */
|
|
97630
97809
|
display_name: string;
|
|
97631
|
-
/**
|
|
97632
|
-
|
|
97633
|
-
/**
|
|
97634
|
-
|
|
97810
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
97811
|
+
start_time: string;
|
|
97812
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
97813
|
+
end_time: string;
|
|
97635
97814
|
}[] | undefined;
|
|
97636
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
97815
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
97637
97816
|
start_date_recurrence_rule?: string | undefined;
|
|
97638
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
97817
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
97639
97818
|
end_date_recurrence_rule?: string | undefined;
|
|
97640
97819
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
97641
97820
|
time_zone?: string | undefined;
|
|
97642
97821
|
}[] | undefined) | undefined;
|
|
97643
97822
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
97644
97823
|
online_time_frame_options?: ({
|
|
97645
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
97824
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
97646
97825
|
display_name: string;
|
|
97647
97826
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
97648
97827
|
min_duration?: string | undefined;
|
|
97649
97828
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
97650
97829
|
max_duration?: string | undefined;
|
|
97651
|
-
/** When `true`, the
|
|
97830
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
97652
97831
|
matching_start_end_time?: true | undefined;
|
|
97653
|
-
/** Fixed
|
|
97832
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
97654
97833
|
time_pairs?: {
|
|
97655
|
-
/** Label for the
|
|
97834
|
+
/** Label for the start/end time pairing. */
|
|
97656
97835
|
display_name: string;
|
|
97657
|
-
/**
|
|
97658
|
-
|
|
97659
|
-
/**
|
|
97660
|
-
|
|
97836
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
97837
|
+
start_time: string;
|
|
97838
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
97839
|
+
end_time: string;
|
|
97661
97840
|
}[] | undefined;
|
|
97662
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
97841
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
97663
97842
|
start_date_recurrence_rule?: string | undefined;
|
|
97664
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
97843
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
97665
97844
|
end_date_recurrence_rule?: string | undefined;
|
|
97666
97845
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
97667
97846
|
time_zone?: string | undefined;
|
|
@@ -112463,7 +112642,7 @@ type Routes = {
|
|
|
112463
112642
|
/** ID of the device. */
|
|
112464
112643
|
device_id: string;
|
|
112465
112644
|
/** Type of the device. */
|
|
112466
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
112645
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
112467
112646
|
/** IDs of the spaces the device is in. */
|
|
112468
112647
|
space_ids: string[];
|
|
112469
112648
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -113110,6 +113289,17 @@ type Routes = {
|
|
|
113110
113289
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
113111
113290
|
location_id?: (string | null) | undefined;
|
|
113112
113291
|
} | undefined;
|
|
113292
|
+
/** Metadata for a Kisi device. */
|
|
113293
|
+
kisi_metadata?: {
|
|
113294
|
+
/** Lock ID for a Kisi device. */
|
|
113295
|
+
lock_id: number;
|
|
113296
|
+
/** Lock name for a Kisi device. */
|
|
113297
|
+
lock_name: string;
|
|
113298
|
+
/** Place name for a Kisi device. */
|
|
113299
|
+
place_name: string | null;
|
|
113300
|
+
/** Description for a Kisi device. */
|
|
113301
|
+
description: string | null;
|
|
113302
|
+
} | undefined;
|
|
113113
113303
|
}) & ({
|
|
113114
113304
|
/** */
|
|
113115
113305
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -113128,52 +113318,52 @@ type Routes = {
|
|
|
113128
113318
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
113129
113319
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
113130
113320
|
offline_time_frame_options?: ({
|
|
113131
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
113321
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
113132
113322
|
display_name: string;
|
|
113133
113323
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
113134
113324
|
min_duration?: string | undefined;
|
|
113135
113325
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
113136
113326
|
max_duration?: string | undefined;
|
|
113137
|
-
/** When `true`, the
|
|
113327
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
113138
113328
|
matching_start_end_time?: true | undefined;
|
|
113139
|
-
/** Fixed
|
|
113329
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
113140
113330
|
time_pairs?: {
|
|
113141
|
-
/** Label for the
|
|
113331
|
+
/** Label for the start/end time pairing. */
|
|
113142
113332
|
display_name: string;
|
|
113143
|
-
/**
|
|
113144
|
-
|
|
113145
|
-
/**
|
|
113146
|
-
|
|
113333
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
113334
|
+
start_time: string;
|
|
113335
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
113336
|
+
end_time: string;
|
|
113147
113337
|
}[] | undefined;
|
|
113148
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
113338
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
113149
113339
|
start_date_recurrence_rule?: string | undefined;
|
|
113150
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
113340
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
113151
113341
|
end_date_recurrence_rule?: string | undefined;
|
|
113152
113342
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
113153
113343
|
time_zone?: string | undefined;
|
|
113154
113344
|
}[] | undefined) | undefined;
|
|
113155
113345
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
113156
113346
|
online_time_frame_options?: ({
|
|
113157
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
113347
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
113158
113348
|
display_name: string;
|
|
113159
113349
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
113160
113350
|
min_duration?: string | undefined;
|
|
113161
113351
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
113162
113352
|
max_duration?: string | undefined;
|
|
113163
|
-
/** When `true`, the
|
|
113353
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
113164
113354
|
matching_start_end_time?: true | undefined;
|
|
113165
|
-
/** Fixed
|
|
113355
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
113166
113356
|
time_pairs?: {
|
|
113167
|
-
/** Label for the
|
|
113357
|
+
/** Label for the start/end time pairing. */
|
|
113168
113358
|
display_name: string;
|
|
113169
|
-
/**
|
|
113170
|
-
|
|
113171
|
-
/**
|
|
113172
|
-
|
|
113359
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
113360
|
+
start_time: string;
|
|
113361
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
113362
|
+
end_time: string;
|
|
113173
113363
|
}[] | undefined;
|
|
113174
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
113364
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
113175
113365
|
start_date_recurrence_rule?: string | undefined;
|
|
113176
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
113366
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
113177
113367
|
end_date_recurrence_rule?: string | undefined;
|
|
113178
113368
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
113179
113369
|
time_zone?: string | undefined;
|
|
@@ -119914,7 +120104,7 @@ type Routes = {
|
|
|
119914
120104
|
/** ID of the device. */
|
|
119915
120105
|
device_id: string;
|
|
119916
120106
|
/** Type of the device. */
|
|
119917
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
120107
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
119918
120108
|
/** IDs of the spaces the device is in. */
|
|
119919
120109
|
space_ids: string[];
|
|
119920
120110
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -120561,6 +120751,17 @@ type Routes = {
|
|
|
120561
120751
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
120562
120752
|
location_id?: (string | null) | undefined;
|
|
120563
120753
|
} | undefined;
|
|
120754
|
+
/** Metadata for a Kisi device. */
|
|
120755
|
+
kisi_metadata?: {
|
|
120756
|
+
/** Lock ID for a Kisi device. */
|
|
120757
|
+
lock_id: number;
|
|
120758
|
+
/** Lock name for a Kisi device. */
|
|
120759
|
+
lock_name: string;
|
|
120760
|
+
/** Place name for a Kisi device. */
|
|
120761
|
+
place_name: string | null;
|
|
120762
|
+
/** Description for a Kisi device. */
|
|
120763
|
+
description: string | null;
|
|
120764
|
+
} | undefined;
|
|
120564
120765
|
}) & ({
|
|
120565
120766
|
/** */
|
|
120566
120767
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -120579,52 +120780,52 @@ type Routes = {
|
|
|
120579
120780
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
120580
120781
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
120581
120782
|
offline_time_frame_options?: ({
|
|
120582
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
120783
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
120583
120784
|
display_name: string;
|
|
120584
120785
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
120585
120786
|
min_duration?: string | undefined;
|
|
120586
120787
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
120587
120788
|
max_duration?: string | undefined;
|
|
120588
|
-
/** When `true`, the
|
|
120789
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
120589
120790
|
matching_start_end_time?: true | undefined;
|
|
120590
|
-
/** Fixed
|
|
120791
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
120591
120792
|
time_pairs?: {
|
|
120592
|
-
/** Label for the
|
|
120793
|
+
/** Label for the start/end time pairing. */
|
|
120593
120794
|
display_name: string;
|
|
120594
|
-
/**
|
|
120595
|
-
|
|
120596
|
-
/**
|
|
120597
|
-
|
|
120795
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
120796
|
+
start_time: string;
|
|
120797
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
120798
|
+
end_time: string;
|
|
120598
120799
|
}[] | undefined;
|
|
120599
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
120800
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
120600
120801
|
start_date_recurrence_rule?: string | undefined;
|
|
120601
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
120802
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
120602
120803
|
end_date_recurrence_rule?: string | undefined;
|
|
120603
120804
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
120604
120805
|
time_zone?: string | undefined;
|
|
120605
120806
|
}[] | undefined) | undefined;
|
|
120606
120807
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
120607
120808
|
online_time_frame_options?: ({
|
|
120608
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
120809
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
120609
120810
|
display_name: string;
|
|
120610
120811
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
120611
120812
|
min_duration?: string | undefined;
|
|
120612
120813
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
120613
120814
|
max_duration?: string | undefined;
|
|
120614
|
-
/** When `true`, the
|
|
120815
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
120615
120816
|
matching_start_end_time?: true | undefined;
|
|
120616
|
-
/** Fixed
|
|
120817
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
120617
120818
|
time_pairs?: {
|
|
120618
|
-
/** Label for the
|
|
120819
|
+
/** Label for the start/end time pairing. */
|
|
120619
120820
|
display_name: string;
|
|
120620
|
-
/**
|
|
120621
|
-
|
|
120622
|
-
/**
|
|
120623
|
-
|
|
120821
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
120822
|
+
start_time: string;
|
|
120823
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
120824
|
+
end_time: string;
|
|
120624
120825
|
}[] | undefined;
|
|
120625
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
120826
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
120626
120827
|
start_date_recurrence_rule?: string | undefined;
|
|
120627
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
120828
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
120628
120829
|
end_date_recurrence_rule?: string | undefined;
|
|
120629
120830
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
120630
120831
|
time_zone?: string | undefined;
|
|
@@ -124784,7 +124985,7 @@ type Routes = {
|
|
|
124784
124985
|
/** ID of the device. */
|
|
124785
124986
|
device_id: string;
|
|
124786
124987
|
/** Type of the device. */
|
|
124787
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
124988
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
124788
124989
|
/** IDs of the spaces the device is in. */
|
|
124789
124990
|
space_ids: string[];
|
|
124790
124991
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -125431,6 +125632,17 @@ type Routes = {
|
|
|
125431
125632
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
125432
125633
|
location_id?: (string | null) | undefined;
|
|
125433
125634
|
} | undefined;
|
|
125635
|
+
/** Metadata for a Kisi device. */
|
|
125636
|
+
kisi_metadata?: {
|
|
125637
|
+
/** Lock ID for a Kisi device. */
|
|
125638
|
+
lock_id: number;
|
|
125639
|
+
/** Lock name for a Kisi device. */
|
|
125640
|
+
lock_name: string;
|
|
125641
|
+
/** Place name for a Kisi device. */
|
|
125642
|
+
place_name: string | null;
|
|
125643
|
+
/** Description for a Kisi device. */
|
|
125644
|
+
description: string | null;
|
|
125645
|
+
} | undefined;
|
|
125434
125646
|
}) & ({
|
|
125435
125647
|
/** */
|
|
125436
125648
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -125449,52 +125661,52 @@ type Routes = {
|
|
|
125449
125661
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
125450
125662
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
125451
125663
|
offline_time_frame_options?: ({
|
|
125452
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
125664
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
125453
125665
|
display_name: string;
|
|
125454
125666
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
125455
125667
|
min_duration?: string | undefined;
|
|
125456
125668
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
125457
125669
|
max_duration?: string | undefined;
|
|
125458
|
-
/** When `true`, the
|
|
125670
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
125459
125671
|
matching_start_end_time?: true | undefined;
|
|
125460
|
-
/** Fixed
|
|
125672
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
125461
125673
|
time_pairs?: {
|
|
125462
|
-
/** Label for the
|
|
125674
|
+
/** Label for the start/end time pairing. */
|
|
125463
125675
|
display_name: string;
|
|
125464
|
-
/**
|
|
125465
|
-
|
|
125466
|
-
/**
|
|
125467
|
-
|
|
125676
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
125677
|
+
start_time: string;
|
|
125678
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
125679
|
+
end_time: string;
|
|
125468
125680
|
}[] | undefined;
|
|
125469
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
125681
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
125470
125682
|
start_date_recurrence_rule?: string | undefined;
|
|
125471
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
125683
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
125472
125684
|
end_date_recurrence_rule?: string | undefined;
|
|
125473
125685
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
125474
125686
|
time_zone?: string | undefined;
|
|
125475
125687
|
}[] | undefined) | undefined;
|
|
125476
125688
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
125477
125689
|
online_time_frame_options?: ({
|
|
125478
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
125690
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
125479
125691
|
display_name: string;
|
|
125480
125692
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
125481
125693
|
min_duration?: string | undefined;
|
|
125482
125694
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
125483
125695
|
max_duration?: string | undefined;
|
|
125484
|
-
/** When `true`, the
|
|
125696
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
125485
125697
|
matching_start_end_time?: true | undefined;
|
|
125486
|
-
/** Fixed
|
|
125698
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
125487
125699
|
time_pairs?: {
|
|
125488
|
-
/** Label for the
|
|
125700
|
+
/** Label for the start/end time pairing. */
|
|
125489
125701
|
display_name: string;
|
|
125490
|
-
/**
|
|
125491
|
-
|
|
125492
|
-
/**
|
|
125493
|
-
|
|
125702
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
125703
|
+
start_time: string;
|
|
125704
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
125705
|
+
end_time: string;
|
|
125494
125706
|
}[] | undefined;
|
|
125495
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
125707
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
125496
125708
|
start_date_recurrence_rule?: string | undefined;
|
|
125497
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
125709
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
125498
125710
|
end_date_recurrence_rule?: string | undefined;
|
|
125499
125711
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
125500
125712
|
time_zone?: string | undefined;
|
|
@@ -126227,7 +126439,7 @@ type Routes = {
|
|
|
126227
126439
|
/** ID of the device. */
|
|
126228
126440
|
device_id: string;
|
|
126229
126441
|
/** Type of the device. */
|
|
126230
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
126442
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
126231
126443
|
/** IDs of the spaces the device is in. */
|
|
126232
126444
|
space_ids: string[];
|
|
126233
126445
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -126874,6 +127086,17 @@ type Routes = {
|
|
|
126874
127086
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
126875
127087
|
location_id?: (string | null) | undefined;
|
|
126876
127088
|
} | undefined;
|
|
127089
|
+
/** Metadata for a Kisi device. */
|
|
127090
|
+
kisi_metadata?: {
|
|
127091
|
+
/** Lock ID for a Kisi device. */
|
|
127092
|
+
lock_id: number;
|
|
127093
|
+
/** Lock name for a Kisi device. */
|
|
127094
|
+
lock_name: string;
|
|
127095
|
+
/** Place name for a Kisi device. */
|
|
127096
|
+
place_name: string | null;
|
|
127097
|
+
/** Description for a Kisi device. */
|
|
127098
|
+
description: string | null;
|
|
127099
|
+
} | undefined;
|
|
126877
127100
|
}) & ({
|
|
126878
127101
|
/** */
|
|
126879
127102
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -126892,52 +127115,52 @@ type Routes = {
|
|
|
126892
127115
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
126893
127116
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
126894
127117
|
offline_time_frame_options?: ({
|
|
126895
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
127118
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
126896
127119
|
display_name: string;
|
|
126897
127120
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126898
127121
|
min_duration?: string | undefined;
|
|
126899
127122
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126900
127123
|
max_duration?: string | undefined;
|
|
126901
|
-
/** When `true`, the
|
|
127124
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
126902
127125
|
matching_start_end_time?: true | undefined;
|
|
126903
|
-
/** Fixed
|
|
127126
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126904
127127
|
time_pairs?: {
|
|
126905
|
-
/** Label for the
|
|
127128
|
+
/** Label for the start/end time pairing. */
|
|
126906
127129
|
display_name: string;
|
|
126907
|
-
/**
|
|
126908
|
-
|
|
126909
|
-
/**
|
|
126910
|
-
|
|
127130
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
127131
|
+
start_time: string;
|
|
127132
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
127133
|
+
end_time: string;
|
|
126911
127134
|
}[] | undefined;
|
|
126912
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
127135
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126913
127136
|
start_date_recurrence_rule?: string | undefined;
|
|
126914
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
127137
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126915
127138
|
end_date_recurrence_rule?: string | undefined;
|
|
126916
127139
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126917
127140
|
time_zone?: string | undefined;
|
|
126918
127141
|
}[] | undefined) | undefined;
|
|
126919
127142
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
126920
127143
|
online_time_frame_options?: ({
|
|
126921
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
127144
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
126922
127145
|
display_name: string;
|
|
126923
127146
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
126924
127147
|
min_duration?: string | undefined;
|
|
126925
127148
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
126926
127149
|
max_duration?: string | undefined;
|
|
126927
|
-
/** When `true`, the
|
|
127150
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
126928
127151
|
matching_start_end_time?: true | undefined;
|
|
126929
|
-
/** Fixed
|
|
127152
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
126930
127153
|
time_pairs?: {
|
|
126931
|
-
/** Label for the
|
|
127154
|
+
/** Label for the start/end time pairing. */
|
|
126932
127155
|
display_name: string;
|
|
126933
|
-
/**
|
|
126934
|
-
|
|
126935
|
-
/**
|
|
126936
|
-
|
|
127156
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
127157
|
+
start_time: string;
|
|
127158
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
127159
|
+
end_time: string;
|
|
126937
127160
|
}[] | undefined;
|
|
126938
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
127161
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126939
127162
|
start_date_recurrence_rule?: string | undefined;
|
|
126940
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
127163
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
126941
127164
|
end_date_recurrence_rule?: string | undefined;
|
|
126942
127165
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
126943
127166
|
time_zone?: string | undefined;
|
|
@@ -135386,7 +135609,7 @@ type Routes = {
|
|
|
135386
135609
|
/** ID of the device. */
|
|
135387
135610
|
device_id: string;
|
|
135388
135611
|
/** Type of the device. */
|
|
135389
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
135612
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
135390
135613
|
/** IDs of the spaces the device is in. */
|
|
135391
135614
|
space_ids: string[];
|
|
135392
135615
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -136033,6 +136256,17 @@ type Routes = {
|
|
|
136033
136256
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
136034
136257
|
location_id?: (string | null) | undefined;
|
|
136035
136258
|
} | undefined;
|
|
136259
|
+
/** Metadata for a Kisi device. */
|
|
136260
|
+
kisi_metadata?: {
|
|
136261
|
+
/** Lock ID for a Kisi device. */
|
|
136262
|
+
lock_id: number;
|
|
136263
|
+
/** Lock name for a Kisi device. */
|
|
136264
|
+
lock_name: string;
|
|
136265
|
+
/** Place name for a Kisi device. */
|
|
136266
|
+
place_name: string | null;
|
|
136267
|
+
/** Description for a Kisi device. */
|
|
136268
|
+
description: string | null;
|
|
136269
|
+
} | undefined;
|
|
136036
136270
|
}) & ({
|
|
136037
136271
|
/** */
|
|
136038
136272
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -136051,52 +136285,52 @@ type Routes = {
|
|
|
136051
136285
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
136052
136286
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
136053
136287
|
offline_time_frame_options?: ({
|
|
136054
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
136288
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
136055
136289
|
display_name: string;
|
|
136056
136290
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
136057
136291
|
min_duration?: string | undefined;
|
|
136058
136292
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
136059
136293
|
max_duration?: string | undefined;
|
|
136060
|
-
/** When `true`, the
|
|
136294
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
136061
136295
|
matching_start_end_time?: true | undefined;
|
|
136062
|
-
/** Fixed
|
|
136296
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
136063
136297
|
time_pairs?: {
|
|
136064
|
-
/** Label for the
|
|
136298
|
+
/** Label for the start/end time pairing. */
|
|
136065
136299
|
display_name: string;
|
|
136066
|
-
/**
|
|
136067
|
-
|
|
136068
|
-
/**
|
|
136069
|
-
|
|
136300
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
136301
|
+
start_time: string;
|
|
136302
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
136303
|
+
end_time: string;
|
|
136070
136304
|
}[] | undefined;
|
|
136071
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
136305
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
136072
136306
|
start_date_recurrence_rule?: string | undefined;
|
|
136073
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
136307
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
136074
136308
|
end_date_recurrence_rule?: string | undefined;
|
|
136075
136309
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
136076
136310
|
time_zone?: string | undefined;
|
|
136077
136311
|
}[] | undefined) | undefined;
|
|
136078
136312
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
136079
136313
|
online_time_frame_options?: ({
|
|
136080
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
136314
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
136081
136315
|
display_name: string;
|
|
136082
136316
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
136083
136317
|
min_duration?: string | undefined;
|
|
136084
136318
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
136085
136319
|
max_duration?: string | undefined;
|
|
136086
|
-
/** When `true`, the
|
|
136320
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
136087
136321
|
matching_start_end_time?: true | undefined;
|
|
136088
|
-
/** Fixed
|
|
136322
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
136089
136323
|
time_pairs?: {
|
|
136090
|
-
/** Label for the
|
|
136324
|
+
/** Label for the start/end time pairing. */
|
|
136091
136325
|
display_name: string;
|
|
136092
|
-
/**
|
|
136093
|
-
|
|
136094
|
-
/**
|
|
136095
|
-
|
|
136326
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
136327
|
+
start_time: string;
|
|
136328
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
136329
|
+
end_time: string;
|
|
136096
136330
|
}[] | undefined;
|
|
136097
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
136331
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
136098
136332
|
start_date_recurrence_rule?: string | undefined;
|
|
136099
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
136333
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
136100
136334
|
end_date_recurrence_rule?: string | undefined;
|
|
136101
136335
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
136102
136336
|
time_zone?: string | undefined;
|
|
@@ -136831,7 +137065,7 @@ type Routes = {
|
|
|
136831
137065
|
/** ID of the device. */
|
|
136832
137066
|
device_id: string;
|
|
136833
137067
|
/** Type of the device. */
|
|
136834
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
137068
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
136835
137069
|
/** IDs of the spaces the device is in. */
|
|
136836
137070
|
space_ids: string[];
|
|
136837
137071
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -137478,6 +137712,17 @@ type Routes = {
|
|
|
137478
137712
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
137479
137713
|
location_id?: (string | null) | undefined;
|
|
137480
137714
|
} | undefined;
|
|
137715
|
+
/** Metadata for a Kisi device. */
|
|
137716
|
+
kisi_metadata?: {
|
|
137717
|
+
/** Lock ID for a Kisi device. */
|
|
137718
|
+
lock_id: number;
|
|
137719
|
+
/** Lock name for a Kisi device. */
|
|
137720
|
+
lock_name: string;
|
|
137721
|
+
/** Place name for a Kisi device. */
|
|
137722
|
+
place_name: string | null;
|
|
137723
|
+
/** Description for a Kisi device. */
|
|
137724
|
+
description: string | null;
|
|
137725
|
+
} | undefined;
|
|
137481
137726
|
}) & ({
|
|
137482
137727
|
/** */
|
|
137483
137728
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -137496,52 +137741,52 @@ type Routes = {
|
|
|
137496
137741
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
137497
137742
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
137498
137743
|
offline_time_frame_options?: ({
|
|
137499
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
137744
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
137500
137745
|
display_name: string;
|
|
137501
137746
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
137502
137747
|
min_duration?: string | undefined;
|
|
137503
137748
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
137504
137749
|
max_duration?: string | undefined;
|
|
137505
|
-
/** When `true`, the
|
|
137750
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
137506
137751
|
matching_start_end_time?: true | undefined;
|
|
137507
|
-
/** Fixed
|
|
137752
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
137508
137753
|
time_pairs?: {
|
|
137509
|
-
/** Label for the
|
|
137754
|
+
/** Label for the start/end time pairing. */
|
|
137510
137755
|
display_name: string;
|
|
137511
|
-
/**
|
|
137512
|
-
|
|
137513
|
-
/**
|
|
137514
|
-
|
|
137756
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
137757
|
+
start_time: string;
|
|
137758
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
137759
|
+
end_time: string;
|
|
137515
137760
|
}[] | undefined;
|
|
137516
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
137761
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
137517
137762
|
start_date_recurrence_rule?: string | undefined;
|
|
137518
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
137763
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
137519
137764
|
end_date_recurrence_rule?: string | undefined;
|
|
137520
137765
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
137521
137766
|
time_zone?: string | undefined;
|
|
137522
137767
|
}[] | undefined) | undefined;
|
|
137523
137768
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
137524
137769
|
online_time_frame_options?: ({
|
|
137525
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
137770
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
137526
137771
|
display_name: string;
|
|
137527
137772
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
137528
137773
|
min_duration?: string | undefined;
|
|
137529
137774
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
137530
137775
|
max_duration?: string | undefined;
|
|
137531
|
-
/** When `true`, the
|
|
137776
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
137532
137777
|
matching_start_end_time?: true | undefined;
|
|
137533
|
-
/** Fixed
|
|
137778
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
137534
137779
|
time_pairs?: {
|
|
137535
|
-
/** Label for the
|
|
137780
|
+
/** Label for the start/end time pairing. */
|
|
137536
137781
|
display_name: string;
|
|
137537
|
-
/**
|
|
137538
|
-
|
|
137539
|
-
/**
|
|
137540
|
-
|
|
137782
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
137783
|
+
start_time: string;
|
|
137784
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
137785
|
+
end_time: string;
|
|
137541
137786
|
}[] | undefined;
|
|
137542
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
137787
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
137543
137788
|
start_date_recurrence_rule?: string | undefined;
|
|
137544
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
137789
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
137545
137790
|
end_date_recurrence_rule?: string | undefined;
|
|
137546
137791
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
137547
137792
|
time_zone?: string | undefined;
|
|
@@ -139531,7 +139776,7 @@ type Routes = {
|
|
|
139531
139776
|
/** ID of the device. */
|
|
139532
139777
|
device_id: string;
|
|
139533
139778
|
/** Type of the device. */
|
|
139534
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
139779
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
139535
139780
|
/** IDs of the spaces the device is in. */
|
|
139536
139781
|
space_ids: string[];
|
|
139537
139782
|
/** Optional nickname to describe the device, settable through Seam. */
|
|
@@ -140178,6 +140423,17 @@ type Routes = {
|
|
|
140178
140423
|
/** Location ID for a Korelock device. Required for timebound access codes. */
|
|
140179
140424
|
location_id?: (string | null) | undefined;
|
|
140180
140425
|
} | undefined;
|
|
140426
|
+
/** Metadata for a Kisi device. */
|
|
140427
|
+
kisi_metadata?: {
|
|
140428
|
+
/** Lock ID for a Kisi device. */
|
|
140429
|
+
lock_id: number;
|
|
140430
|
+
/** Lock name for a Kisi device. */
|
|
140431
|
+
lock_name: string;
|
|
140432
|
+
/** Place name for a Kisi device. */
|
|
140433
|
+
place_name: string | null;
|
|
140434
|
+
/** Description for a Kisi device. */
|
|
140435
|
+
description: string | null;
|
|
140436
|
+
} | undefined;
|
|
140181
140437
|
}) & ({
|
|
140182
140438
|
/** */
|
|
140183
140439
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -140196,52 +140452,52 @@ type Routes = {
|
|
|
140196
140452
|
supported_code_lengths?: (number[] | undefined) | undefined;
|
|
140197
140453
|
/** Time frames that may be requested when creating an offline access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
140198
140454
|
offline_time_frame_options?: ({
|
|
140199
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
140455
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
140200
140456
|
display_name: string;
|
|
140201
140457
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
140202
140458
|
min_duration?: string | undefined;
|
|
140203
140459
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
140204
140460
|
max_duration?: string | undefined;
|
|
140205
|
-
/** When `true`, the
|
|
140461
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
140206
140462
|
matching_start_end_time?: true | undefined;
|
|
140207
|
-
/** Fixed
|
|
140463
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
140208
140464
|
time_pairs?: {
|
|
140209
|
-
/** Label for the
|
|
140465
|
+
/** Label for the start/end time pairing. */
|
|
140210
140466
|
display_name: string;
|
|
140211
|
-
/**
|
|
140212
|
-
|
|
140213
|
-
/**
|
|
140214
|
-
|
|
140467
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
140468
|
+
start_time: string;
|
|
140469
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
140470
|
+
end_time: string;
|
|
140215
140471
|
}[] | undefined;
|
|
140216
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
140472
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
140217
140473
|
start_date_recurrence_rule?: string | undefined;
|
|
140218
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
140474
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
140219
140475
|
end_date_recurrence_rule?: string | undefined;
|
|
140220
140476
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
140221
140477
|
time_zone?: string | undefined;
|
|
140222
140478
|
}[] | undefined) | undefined;
|
|
140223
140479
|
/** Time frames that may be requested when creating an online access code, expressed as a list of options. The caller picks one option (by matching the requested duration when the options' duration ranges do not overlap, or by `display_name` when they do) and satisfies that one option's rules. When `undefined`, any time frame works. */
|
|
140224
140480
|
online_time_frame_options?: ({
|
|
140225
|
-
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed
|
|
140481
|
+
/** Label for this option. For a single-option device, the product name (for example, `algoPIN` or `SmartPIN`); for a multi-option device, a label that distinguishes it (for example, `Hourly` or `Fixed start times`). */
|
|
140226
140482
|
display_name: string;
|
|
140227
140483
|
/** Minimum duration this option covers, as an ISO 8601 duration (for example, `PT1H` or `P29D`). Omitted when there is no minimum. */
|
|
140228
140484
|
min_duration?: string | undefined;
|
|
140229
140485
|
/** Maximum duration this option covers, as an ISO 8601 duration (for example, `PT672H` or `P367D`). Omitted when there is no maximum. */
|
|
140230
140486
|
max_duration?: string | undefined;
|
|
140231
|
-
/** When `true`, the
|
|
140487
|
+
/** When `true`, the start and end must fall at the same time of day (the caller picks which). Mutually exclusive with `time_pairs`. */
|
|
140232
140488
|
matching_start_end_time?: true | undefined;
|
|
140233
|
-
/** Fixed
|
|
140489
|
+
/** Fixed start/end time pairings the caller chooses from. Mutually exclusive with `matching_start_end_time`. */
|
|
140234
140490
|
time_pairs?: {
|
|
140235
|
-
/** Label for the
|
|
140491
|
+
/** Label for the start/end time pairing. */
|
|
140236
140492
|
display_name: string;
|
|
140237
|
-
/**
|
|
140238
|
-
|
|
140239
|
-
/**
|
|
140240
|
-
|
|
140493
|
+
/** Start time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. */
|
|
140494
|
+
start_time: string;
|
|
140495
|
+
/** End time of day as a 24-hour `HH:MM` value, interpreted in the option's `time_zone`. An `end_time` earlier on the clock than `start_time` means the end falls on a later date. */
|
|
140496
|
+
end_time: string;
|
|
140241
140497
|
}[] | undefined;
|
|
140242
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
140498
|
+
/** iCalendar recurrence rule (RRULE) that the start date must fall on (for example, `FREQ=MONTHLY;BYDAY=1MO,3MO`). Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
140243
140499
|
start_date_recurrence_rule?: string | undefined;
|
|
140244
|
-
/** iCalendar recurrence rule (RRULE) that the
|
|
140500
|
+
/** iCalendar recurrence rule (RRULE) that the end date must fall on. Constrains which calendar dates are selectable, independent of the time-of-day rules. */
|
|
140245
140501
|
end_date_recurrence_rule?: string | undefined;
|
|
140246
140502
|
/** IANA time zone for interpreting `time_pairs` and the date recurrence rules. Present only when the option fixes times or dates. */
|
|
140247
140503
|
time_zone?: string | undefined;
|
|
@@ -143840,7 +144096,7 @@ type Routes = {
|
|
|
143840
144096
|
/** ID of the device. */
|
|
143841
144097
|
device_id: string;
|
|
143842
144098
|
/** Type of the device. */
|
|
143843
|
-
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_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') | 'ring_camera';
|
|
144099
|
+
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' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock' | 'ultraloq_lock' | 'keyincode_lock' | 'omnitec_lock' | 'kisi_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') | 'ring_camera';
|
|
143844
144100
|
/** Unique identifier for the account associated with the device. */
|
|
143845
144101
|
connected_account_id: string;
|
|
143846
144102
|
/** Location information for the device. */
|