@seamapi/types 1.773.0 → 1.774.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 +22 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +188 -94
- package/dist/index.cjs +22 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +48 -34
- package/lib/seam/connect/models/devices/device.d.ts +14 -9
- package/lib/seam/connect/models/devices/device.js +8 -3
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +14 -9
- package/lib/seam/connect/openapi.d.ts +12 -2
- package/lib/seam/connect/openapi.js +14 -6
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -40
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +8 -3
- package/src/lib/seam/connect/openapi.ts +14 -6
- package/src/lib/seam/connect/route-types.ts +260 -160
package/dist/connect.d.cts
CHANGED
|
@@ -14516,13 +14516,16 @@ declare const batch: z.ZodObject<{
|
|
|
14516
14516
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
14517
14517
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
14518
14518
|
}>>>;
|
|
14519
|
-
location: z.
|
|
14519
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
14520
14520
|
location_name: z.ZodOptional<z.ZodString>;
|
|
14521
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
14521
14522
|
timezone: z.ZodOptional<z.ZodString>;
|
|
14522
14523
|
}, "strip", z.ZodTypeAny, {
|
|
14524
|
+
time_zone?: string | undefined;
|
|
14523
14525
|
location_name?: string | undefined;
|
|
14524
14526
|
timezone?: string | undefined;
|
|
14525
14527
|
}, {
|
|
14528
|
+
time_zone?: string | undefined;
|
|
14526
14529
|
location_name?: string | undefined;
|
|
14527
14530
|
timezone?: string | undefined;
|
|
14528
14531
|
}>>;
|
|
@@ -15907,10 +15910,6 @@ declare const batch: z.ZodObject<{
|
|
|
15907
15910
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
15908
15911
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
15909
15912
|
};
|
|
15910
|
-
location: {
|
|
15911
|
-
location_name?: string | undefined;
|
|
15912
|
-
timezone?: string | undefined;
|
|
15913
|
-
} | null;
|
|
15914
15913
|
is_managed: true;
|
|
15915
15914
|
can_remotely_unlock?: boolean | undefined;
|
|
15916
15915
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -15933,6 +15932,11 @@ declare const batch: z.ZodObject<{
|
|
|
15933
15932
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
15934
15933
|
can_configure_auto_lock?: boolean | undefined;
|
|
15935
15934
|
nickname?: string | undefined;
|
|
15935
|
+
location?: {
|
|
15936
|
+
time_zone?: string | undefined;
|
|
15937
|
+
location_name?: string | undefined;
|
|
15938
|
+
timezone?: string | undefined;
|
|
15939
|
+
} | undefined;
|
|
15936
15940
|
device_provider?: {
|
|
15937
15941
|
display_name: string;
|
|
15938
15942
|
provider_category: string;
|
|
@@ -16628,10 +16632,6 @@ declare const batch: z.ZodObject<{
|
|
|
16628
16632
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
16629
16633
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16630
16634
|
};
|
|
16631
|
-
location: {
|
|
16632
|
-
location_name?: string | undefined;
|
|
16633
|
-
timezone?: string | undefined;
|
|
16634
|
-
} | null;
|
|
16635
16635
|
is_managed: true;
|
|
16636
16636
|
can_remotely_unlock?: boolean | undefined;
|
|
16637
16637
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -16654,6 +16654,11 @@ declare const batch: z.ZodObject<{
|
|
|
16654
16654
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
16655
16655
|
can_configure_auto_lock?: boolean | undefined;
|
|
16656
16656
|
nickname?: string | undefined;
|
|
16657
|
+
location?: {
|
|
16658
|
+
time_zone?: string | undefined;
|
|
16659
|
+
location_name?: string | undefined;
|
|
16660
|
+
timezone?: string | undefined;
|
|
16661
|
+
} | undefined;
|
|
16657
16662
|
device_provider?: {
|
|
16658
16663
|
display_name: string;
|
|
16659
16664
|
provider_category: string;
|
|
@@ -27027,13 +27032,16 @@ declare const batch: z.ZodObject<{
|
|
|
27027
27032
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
27028
27033
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
27029
27034
|
}>>>;
|
|
27030
|
-
location: z.
|
|
27035
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
27031
27036
|
location_name: z.ZodOptional<z.ZodString>;
|
|
27037
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
27032
27038
|
timezone: z.ZodOptional<z.ZodString>;
|
|
27033
27039
|
}, "strip", z.ZodTypeAny, {
|
|
27040
|
+
time_zone?: string | undefined;
|
|
27034
27041
|
location_name?: string | undefined;
|
|
27035
27042
|
timezone?: string | undefined;
|
|
27036
27043
|
}, {
|
|
27044
|
+
time_zone?: string | undefined;
|
|
27037
27045
|
location_name?: string | undefined;
|
|
27038
27046
|
timezone?: string | undefined;
|
|
27039
27047
|
}>>;
|
|
@@ -28122,10 +28130,6 @@ declare const batch: z.ZodObject<{
|
|
|
28122
28130
|
online_access_codes_enabled?: boolean | undefined;
|
|
28123
28131
|
offline_access_codes_enabled?: boolean | undefined;
|
|
28124
28132
|
};
|
|
28125
|
-
location: {
|
|
28126
|
-
location_name?: string | undefined;
|
|
28127
|
-
timezone?: string | undefined;
|
|
28128
|
-
} | null;
|
|
28129
28133
|
is_managed: false;
|
|
28130
28134
|
can_remotely_unlock?: boolean | undefined;
|
|
28131
28135
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -28147,6 +28151,11 @@ declare const batch: z.ZodObject<{
|
|
|
28147
28151
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
28148
28152
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
28149
28153
|
can_configure_auto_lock?: boolean | undefined;
|
|
28154
|
+
location?: {
|
|
28155
|
+
time_zone?: string | undefined;
|
|
28156
|
+
location_name?: string | undefined;
|
|
28157
|
+
timezone?: string | undefined;
|
|
28158
|
+
} | undefined;
|
|
28150
28159
|
}, {
|
|
28151
28160
|
device_id: string;
|
|
28152
28161
|
workspace_id: string;
|
|
@@ -28378,10 +28387,6 @@ declare const batch: z.ZodObject<{
|
|
|
28378
28387
|
online_access_codes_enabled?: boolean | undefined;
|
|
28379
28388
|
offline_access_codes_enabled?: boolean | undefined;
|
|
28380
28389
|
};
|
|
28381
|
-
location: {
|
|
28382
|
-
location_name?: string | undefined;
|
|
28383
|
-
timezone?: string | undefined;
|
|
28384
|
-
} | null;
|
|
28385
28390
|
is_managed: false;
|
|
28386
28391
|
can_remotely_unlock?: boolean | undefined;
|
|
28387
28392
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -28403,6 +28408,11 @@ declare const batch: z.ZodObject<{
|
|
|
28403
28408
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
28404
28409
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
28405
28410
|
can_configure_auto_lock?: boolean | undefined;
|
|
28411
|
+
location?: {
|
|
28412
|
+
time_zone?: string | undefined;
|
|
28413
|
+
location_name?: string | undefined;
|
|
28414
|
+
timezone?: string | undefined;
|
|
28415
|
+
} | undefined;
|
|
28406
28416
|
}>, "many">>;
|
|
28407
28417
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28408
28418
|
connect_webview_id: z.ZodString;
|
|
@@ -38089,10 +38099,6 @@ declare const batch: z.ZodObject<{
|
|
|
38089
38099
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
38090
38100
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
38091
38101
|
};
|
|
38092
|
-
location: {
|
|
38093
|
-
location_name?: string | undefined;
|
|
38094
|
-
timezone?: string | undefined;
|
|
38095
|
-
} | null;
|
|
38096
38102
|
is_managed: true;
|
|
38097
38103
|
can_remotely_unlock?: boolean | undefined;
|
|
38098
38104
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -38115,6 +38121,11 @@ declare const batch: z.ZodObject<{
|
|
|
38115
38121
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
38116
38122
|
can_configure_auto_lock?: boolean | undefined;
|
|
38117
38123
|
nickname?: string | undefined;
|
|
38124
|
+
location?: {
|
|
38125
|
+
time_zone?: string | undefined;
|
|
38126
|
+
location_name?: string | undefined;
|
|
38127
|
+
timezone?: string | undefined;
|
|
38128
|
+
} | undefined;
|
|
38118
38129
|
device_provider?: {
|
|
38119
38130
|
display_name: string;
|
|
38120
38131
|
provider_category: string;
|
|
@@ -39962,10 +39973,6 @@ declare const batch: z.ZodObject<{
|
|
|
39962
39973
|
online_access_codes_enabled?: boolean | undefined;
|
|
39963
39974
|
offline_access_codes_enabled?: boolean | undefined;
|
|
39964
39975
|
};
|
|
39965
|
-
location: {
|
|
39966
|
-
location_name?: string | undefined;
|
|
39967
|
-
timezone?: string | undefined;
|
|
39968
|
-
} | null;
|
|
39969
39976
|
is_managed: false;
|
|
39970
39977
|
can_remotely_unlock?: boolean | undefined;
|
|
39971
39978
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -39987,6 +39994,11 @@ declare const batch: z.ZodObject<{
|
|
|
39987
39994
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
39988
39995
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
39989
39996
|
can_configure_auto_lock?: boolean | undefined;
|
|
39997
|
+
location?: {
|
|
39998
|
+
time_zone?: string | undefined;
|
|
39999
|
+
location_name?: string | undefined;
|
|
40000
|
+
timezone?: string | undefined;
|
|
40001
|
+
} | undefined;
|
|
39990
40002
|
}[] | undefined;
|
|
39991
40003
|
connect_webviews?: {
|
|
39992
40004
|
status: "pending" | "failed" | "authorized";
|
|
@@ -42950,10 +42962,6 @@ declare const batch: z.ZodObject<{
|
|
|
42950
42962
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
42951
42963
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
42952
42964
|
};
|
|
42953
|
-
location: {
|
|
42954
|
-
location_name?: string | undefined;
|
|
42955
|
-
timezone?: string | undefined;
|
|
42956
|
-
} | null;
|
|
42957
42965
|
is_managed: true;
|
|
42958
42966
|
can_remotely_unlock?: boolean | undefined;
|
|
42959
42967
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -42976,6 +42984,11 @@ declare const batch: z.ZodObject<{
|
|
|
42976
42984
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
42977
42985
|
can_configure_auto_lock?: boolean | undefined;
|
|
42978
42986
|
nickname?: string | undefined;
|
|
42987
|
+
location?: {
|
|
42988
|
+
time_zone?: string | undefined;
|
|
42989
|
+
location_name?: string | undefined;
|
|
42990
|
+
timezone?: string | undefined;
|
|
42991
|
+
} | undefined;
|
|
42979
42992
|
device_provider?: {
|
|
42980
42993
|
display_name: string;
|
|
42981
42994
|
provider_category: string;
|
|
@@ -44823,10 +44836,6 @@ declare const batch: z.ZodObject<{
|
|
|
44823
44836
|
online_access_codes_enabled?: boolean | undefined;
|
|
44824
44837
|
offline_access_codes_enabled?: boolean | undefined;
|
|
44825
44838
|
};
|
|
44826
|
-
location: {
|
|
44827
|
-
location_name?: string | undefined;
|
|
44828
|
-
timezone?: string | undefined;
|
|
44829
|
-
} | null;
|
|
44830
44839
|
is_managed: false;
|
|
44831
44840
|
can_remotely_unlock?: boolean | undefined;
|
|
44832
44841
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -44848,6 +44857,11 @@ declare const batch: z.ZodObject<{
|
|
|
44848
44857
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
44849
44858
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
44850
44859
|
can_configure_auto_lock?: boolean | undefined;
|
|
44860
|
+
location?: {
|
|
44861
|
+
time_zone?: string | undefined;
|
|
44862
|
+
location_name?: string | undefined;
|
|
44863
|
+
timezone?: string | undefined;
|
|
44864
|
+
} | undefined;
|
|
44851
44865
|
}[] | undefined;
|
|
44852
44866
|
connect_webviews?: {
|
|
44853
44867
|
status: "pending" | "failed" | "authorized";
|
|
@@ -50928,13 +50942,16 @@ declare const device: z.ZodObject<{
|
|
|
50928
50942
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
50929
50943
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
50930
50944
|
}>>>;
|
|
50931
|
-
location: z.
|
|
50945
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
50932
50946
|
location_name: z.ZodOptional<z.ZodString>;
|
|
50947
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
50933
50948
|
timezone: z.ZodOptional<z.ZodString>;
|
|
50934
50949
|
}, "strip", z.ZodTypeAny, {
|
|
50950
|
+
time_zone?: string | undefined;
|
|
50935
50951
|
location_name?: string | undefined;
|
|
50936
50952
|
timezone?: string | undefined;
|
|
50937
50953
|
}, {
|
|
50954
|
+
time_zone?: string | undefined;
|
|
50938
50955
|
location_name?: string | undefined;
|
|
50939
50956
|
timezone?: string | undefined;
|
|
50940
50957
|
}>>;
|
|
@@ -52319,10 +52336,6 @@ declare const device: z.ZodObject<{
|
|
|
52319
52336
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
52320
52337
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
52321
52338
|
};
|
|
52322
|
-
location: {
|
|
52323
|
-
location_name?: string | undefined;
|
|
52324
|
-
timezone?: string | undefined;
|
|
52325
|
-
} | null;
|
|
52326
52339
|
is_managed: true;
|
|
52327
52340
|
can_remotely_unlock?: boolean | undefined;
|
|
52328
52341
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -52345,6 +52358,11 @@ declare const device: z.ZodObject<{
|
|
|
52345
52358
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
52346
52359
|
can_configure_auto_lock?: boolean | undefined;
|
|
52347
52360
|
nickname?: string | undefined;
|
|
52361
|
+
location?: {
|
|
52362
|
+
time_zone?: string | undefined;
|
|
52363
|
+
location_name?: string | undefined;
|
|
52364
|
+
timezone?: string | undefined;
|
|
52365
|
+
} | undefined;
|
|
52348
52366
|
device_provider?: {
|
|
52349
52367
|
display_name: string;
|
|
52350
52368
|
provider_category: string;
|
|
@@ -53040,10 +53058,6 @@ declare const device: z.ZodObject<{
|
|
|
53040
53058
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
53041
53059
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53042
53060
|
};
|
|
53043
|
-
location: {
|
|
53044
|
-
location_name?: string | undefined;
|
|
53045
|
-
timezone?: string | undefined;
|
|
53046
|
-
} | null;
|
|
53047
53061
|
is_managed: true;
|
|
53048
53062
|
can_remotely_unlock?: boolean | undefined;
|
|
53049
53063
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -53066,6 +53080,11 @@ declare const device: z.ZodObject<{
|
|
|
53066
53080
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
53067
53081
|
can_configure_auto_lock?: boolean | undefined;
|
|
53068
53082
|
nickname?: string | undefined;
|
|
53083
|
+
location?: {
|
|
53084
|
+
time_zone?: string | undefined;
|
|
53085
|
+
location_name?: string | undefined;
|
|
53086
|
+
timezone?: string | undefined;
|
|
53087
|
+
} | undefined;
|
|
53069
53088
|
device_provider?: {
|
|
53070
53089
|
display_name: string;
|
|
53071
53090
|
provider_category: string;
|
|
@@ -55569,13 +55588,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
55569
55588
|
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
55570
55589
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
55571
55590
|
}>>>;
|
|
55572
|
-
location: z.
|
|
55591
|
+
location: z.ZodOptional<z.ZodObject<{
|
|
55573
55592
|
location_name: z.ZodOptional<z.ZodString>;
|
|
55593
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
55574
55594
|
timezone: z.ZodOptional<z.ZodString>;
|
|
55575
55595
|
}, "strip", z.ZodTypeAny, {
|
|
55596
|
+
time_zone?: string | undefined;
|
|
55576
55597
|
location_name?: string | undefined;
|
|
55577
55598
|
timezone?: string | undefined;
|
|
55578
55599
|
}, {
|
|
55600
|
+
time_zone?: string | undefined;
|
|
55579
55601
|
location_name?: string | undefined;
|
|
55580
55602
|
timezone?: string | undefined;
|
|
55581
55603
|
}>>;
|
|
@@ -56664,10 +56686,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
56664
56686
|
online_access_codes_enabled?: boolean | undefined;
|
|
56665
56687
|
offline_access_codes_enabled?: boolean | undefined;
|
|
56666
56688
|
};
|
|
56667
|
-
location: {
|
|
56668
|
-
location_name?: string | undefined;
|
|
56669
|
-
timezone?: string | undefined;
|
|
56670
|
-
} | null;
|
|
56671
56689
|
is_managed: false;
|
|
56672
56690
|
can_remotely_unlock?: boolean | undefined;
|
|
56673
56691
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -56689,6 +56707,11 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
56689
56707
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
56690
56708
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
56691
56709
|
can_configure_auto_lock?: boolean | undefined;
|
|
56710
|
+
location?: {
|
|
56711
|
+
time_zone?: string | undefined;
|
|
56712
|
+
location_name?: string | undefined;
|
|
56713
|
+
timezone?: string | undefined;
|
|
56714
|
+
} | undefined;
|
|
56692
56715
|
}, {
|
|
56693
56716
|
device_id: string;
|
|
56694
56717
|
workspace_id: string;
|
|
@@ -56920,10 +56943,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
56920
56943
|
online_access_codes_enabled?: boolean | undefined;
|
|
56921
56944
|
offline_access_codes_enabled?: boolean | undefined;
|
|
56922
56945
|
};
|
|
56923
|
-
location: {
|
|
56924
|
-
location_name?: string | undefined;
|
|
56925
|
-
timezone?: string | undefined;
|
|
56926
|
-
} | null;
|
|
56927
56946
|
is_managed: false;
|
|
56928
56947
|
can_remotely_unlock?: boolean | undefined;
|
|
56929
56948
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -56945,6 +56964,11 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
56945
56964
|
can_simulate_hub_disconnection?: boolean | undefined;
|
|
56946
56965
|
can_simulate_paid_subscription?: boolean | undefined;
|
|
56947
56966
|
can_configure_auto_lock?: boolean | undefined;
|
|
56967
|
+
location?: {
|
|
56968
|
+
time_zone?: string | undefined;
|
|
56969
|
+
location_name?: string | undefined;
|
|
56970
|
+
timezone?: string | undefined;
|
|
56971
|
+
} | undefined;
|
|
56948
56972
|
}>;
|
|
56949
56973
|
type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
56950
56974
|
|
|
@@ -68345,15 +68369,20 @@ declare const _default: {
|
|
|
68345
68369
|
};
|
|
68346
68370
|
location: {
|
|
68347
68371
|
description: string;
|
|
68348
|
-
nullable: boolean;
|
|
68349
68372
|
properties: {
|
|
68350
68373
|
location_name: {
|
|
68351
68374
|
description: string;
|
|
68352
68375
|
type: string;
|
|
68353
68376
|
};
|
|
68377
|
+
time_zone: {
|
|
68378
|
+
description: string;
|
|
68379
|
+
type: string;
|
|
68380
|
+
};
|
|
68354
68381
|
timezone: {
|
|
68382
|
+
deprecated: boolean;
|
|
68355
68383
|
description: string;
|
|
68356
68384
|
type: string;
|
|
68385
|
+
'x-deprecated': string;
|
|
68357
68386
|
};
|
|
68358
68387
|
};
|
|
68359
68388
|
type: string;
|
|
@@ -80864,15 +80893,20 @@ declare const _default: {
|
|
|
80864
80893
|
};
|
|
80865
80894
|
location: {
|
|
80866
80895
|
description: string;
|
|
80867
|
-
nullable: boolean;
|
|
80868
80896
|
properties: {
|
|
80869
80897
|
location_name: {
|
|
80870
80898
|
description: string;
|
|
80871
80899
|
type: string;
|
|
80872
80900
|
};
|
|
80901
|
+
time_zone: {
|
|
80902
|
+
description: string;
|
|
80903
|
+
type: string;
|
|
80904
|
+
};
|
|
80873
80905
|
timezone: {
|
|
80906
|
+
deprecated: boolean;
|
|
80874
80907
|
description: string;
|
|
80875
80908
|
type: string;
|
|
80909
|
+
'x-deprecated': string;
|
|
80876
80910
|
};
|
|
80877
80911
|
};
|
|
80878
80912
|
type: string;
|
|
@@ -147091,14 +147125,17 @@ type Routes = {
|
|
|
147091
147125
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
147092
147126
|
});
|
|
147093
147127
|
/** Location information for the device. */
|
|
147094
|
-
location
|
|
147128
|
+
location?: {
|
|
147095
147129
|
/** Name of the device location.
|
|
147096
147130
|
*/
|
|
147097
147131
|
location_name?: string | undefined;
|
|
147098
147132
|
/** Time zone of the device location.
|
|
147099
147133
|
*/
|
|
147134
|
+
time_zone?: string | undefined;
|
|
147135
|
+
/** Time zone of the device location.
|
|
147136
|
+
* @deprecated Use `time_zone` instead.*/
|
|
147100
147137
|
timezone?: string | undefined;
|
|
147101
|
-
} |
|
|
147138
|
+
} | undefined;
|
|
147102
147139
|
/** Unique identifier for the account associated with the device. */
|
|
147103
147140
|
connected_account_id: string;
|
|
147104
147141
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -151395,14 +151432,17 @@ type Routes = {
|
|
|
151395
151432
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
151396
151433
|
});
|
|
151397
151434
|
/** Location information for the device. */
|
|
151398
|
-
location
|
|
151435
|
+
location?: {
|
|
151399
151436
|
/** Name of the device location.
|
|
151400
151437
|
*/
|
|
151401
151438
|
location_name?: string | undefined;
|
|
151402
151439
|
/** Time zone of the device location.
|
|
151403
151440
|
*/
|
|
151441
|
+
time_zone?: string | undefined;
|
|
151442
|
+
/** Time zone of the device location.
|
|
151443
|
+
* @deprecated Use `time_zone` instead.*/
|
|
151404
151444
|
timezone?: string | undefined;
|
|
151405
|
-
} |
|
|
151445
|
+
} | undefined;
|
|
151406
151446
|
/** Unique identifier for the account associated with the device. */
|
|
151407
151447
|
connected_account_id: string;
|
|
151408
151448
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -167857,14 +167897,17 @@ type Routes = {
|
|
|
167857
167897
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
167858
167898
|
});
|
|
167859
167899
|
/** Location information for the device. */
|
|
167860
|
-
location
|
|
167900
|
+
location?: {
|
|
167861
167901
|
/** Name of the device location.
|
|
167862
167902
|
*/
|
|
167863
167903
|
location_name?: string | undefined;
|
|
167864
167904
|
/** Time zone of the device location.
|
|
167865
167905
|
*/
|
|
167906
|
+
time_zone?: string | undefined;
|
|
167907
|
+
/** Time zone of the device location.
|
|
167908
|
+
* @deprecated Use `time_zone` instead.*/
|
|
167866
167909
|
timezone?: string | undefined;
|
|
167867
|
-
} |
|
|
167910
|
+
} | undefined;
|
|
167868
167911
|
/** Unique identifier for the account associated with the device. */
|
|
167869
167912
|
connected_account_id: string;
|
|
167870
167913
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -169227,14 +169270,17 @@ type Routes = {
|
|
|
169227
169270
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
169228
169271
|
});
|
|
169229
169272
|
/** Location information for the device. */
|
|
169230
|
-
location
|
|
169273
|
+
location?: {
|
|
169231
169274
|
/** Name of the device location.
|
|
169232
169275
|
*/
|
|
169233
169276
|
location_name?: string | undefined;
|
|
169234
169277
|
/** Time zone of the device location.
|
|
169235
169278
|
*/
|
|
169279
|
+
time_zone?: string | undefined;
|
|
169280
|
+
/** Time zone of the device location.
|
|
169281
|
+
* @deprecated Use `time_zone` instead.*/
|
|
169236
169282
|
timezone?: string | undefined;
|
|
169237
|
-
} |
|
|
169283
|
+
} | undefined;
|
|
169238
169284
|
/** Unique identifier for the account associated with the device. */
|
|
169239
169285
|
connected_account_id: string;
|
|
169240
169286
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -169771,14 +169817,17 @@ type Routes = {
|
|
|
169771
169817
|
/** Unique identifier for the account associated with the device. */
|
|
169772
169818
|
connected_account_id: string;
|
|
169773
169819
|
/** Location information for the device. */
|
|
169774
|
-
location
|
|
169820
|
+
location?: {
|
|
169775
169821
|
/** Name of the device location.
|
|
169776
169822
|
*/
|
|
169777
169823
|
location_name?: string | undefined;
|
|
169778
169824
|
/** Time zone of the device location.
|
|
169779
169825
|
*/
|
|
169826
|
+
time_zone?: string | undefined;
|
|
169827
|
+
/** Time zone of the device location.
|
|
169828
|
+
* @deprecated Use `time_zone` instead.*/
|
|
169780
169829
|
timezone?: string | undefined;
|
|
169781
|
-
} |
|
|
169830
|
+
} | undefined;
|
|
169782
169831
|
/**
|
|
169783
169832
|
Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).
|
|
169784
169833
|
*/
|
|
@@ -170252,14 +170301,17 @@ type Routes = {
|
|
|
170252
170301
|
/** Unique identifier for the account associated with the device. */
|
|
170253
170302
|
connected_account_id: string;
|
|
170254
170303
|
/** Location information for the device. */
|
|
170255
|
-
location
|
|
170304
|
+
location?: {
|
|
170256
170305
|
/** Name of the device location.
|
|
170257
170306
|
*/
|
|
170258
170307
|
location_name?: string | undefined;
|
|
170259
170308
|
/** Time zone of the device location.
|
|
170260
170309
|
*/
|
|
170310
|
+
time_zone?: string | undefined;
|
|
170311
|
+
/** Time zone of the device location.
|
|
170312
|
+
* @deprecated Use `time_zone` instead.*/
|
|
170261
170313
|
timezone?: string | undefined;
|
|
170262
|
-
} |
|
|
170314
|
+
} | undefined;
|
|
170263
170315
|
/**
|
|
170264
170316
|
Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).
|
|
170265
170317
|
*/
|
|
@@ -178739,14 +178791,17 @@ type Routes = {
|
|
|
178739
178791
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
178740
178792
|
});
|
|
178741
178793
|
/** Location information for the device. */
|
|
178742
|
-
location
|
|
178794
|
+
location?: {
|
|
178743
178795
|
/** Name of the device location.
|
|
178744
178796
|
*/
|
|
178745
178797
|
location_name?: string | undefined;
|
|
178746
178798
|
/** Time zone of the device location.
|
|
178747
178799
|
*/
|
|
178800
|
+
time_zone?: string | undefined;
|
|
178801
|
+
/** Time zone of the device location.
|
|
178802
|
+
* @deprecated Use `time_zone` instead.*/
|
|
178748
178803
|
timezone?: string | undefined;
|
|
178749
|
-
} |
|
|
178804
|
+
} | undefined;
|
|
178750
178805
|
/** Unique identifier for the account associated with the device. */
|
|
178751
178806
|
connected_account_id: string;
|
|
178752
178807
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -180059,14 +180114,17 @@ type Routes = {
|
|
|
180059
180114
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
180060
180115
|
});
|
|
180061
180116
|
/** Location information for the device. */
|
|
180062
|
-
location
|
|
180117
|
+
location?: {
|
|
180063
180118
|
/** Name of the device location.
|
|
180064
180119
|
*/
|
|
180065
180120
|
location_name?: string | undefined;
|
|
180066
180121
|
/** Time zone of the device location.
|
|
180067
180122
|
*/
|
|
180123
|
+
time_zone?: string | undefined;
|
|
180124
|
+
/** Time zone of the device location.
|
|
180125
|
+
* @deprecated Use `time_zone` instead.*/
|
|
180068
180126
|
timezone?: string | undefined;
|
|
180069
|
-
} |
|
|
180127
|
+
} | undefined;
|
|
180070
180128
|
/** Unique identifier for the account associated with the device. */
|
|
180071
180129
|
connected_account_id: string;
|
|
180072
180130
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -181429,14 +181487,17 @@ type Routes = {
|
|
|
181429
181487
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
181430
181488
|
});
|
|
181431
181489
|
/** Location information for the device. */
|
|
181432
|
-
location
|
|
181490
|
+
location?: {
|
|
181433
181491
|
/** Name of the device location.
|
|
181434
181492
|
*/
|
|
181435
181493
|
location_name?: string | undefined;
|
|
181436
181494
|
/** Time zone of the device location.
|
|
181437
181495
|
*/
|
|
181496
|
+
time_zone?: string | undefined;
|
|
181497
|
+
/** Time zone of the device location.
|
|
181498
|
+
* @deprecated Use `time_zone` instead.*/
|
|
181438
181499
|
timezone?: string | undefined;
|
|
181439
|
-
} |
|
|
181500
|
+
} | undefined;
|
|
181440
181501
|
/** Unique identifier for the account associated with the device. */
|
|
181441
181502
|
connected_account_id: string;
|
|
181442
181503
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -182748,14 +182809,17 @@ type Routes = {
|
|
|
182748
182809
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
182749
182810
|
});
|
|
182750
182811
|
/** Location information for the device. */
|
|
182751
|
-
location
|
|
182812
|
+
location?: {
|
|
182752
182813
|
/** Name of the device location.
|
|
182753
182814
|
*/
|
|
182754
182815
|
location_name?: string | undefined;
|
|
182755
182816
|
/** Time zone of the device location.
|
|
182756
182817
|
*/
|
|
182818
|
+
time_zone?: string | undefined;
|
|
182819
|
+
/** Time zone of the device location.
|
|
182820
|
+
* @deprecated Use `time_zone` instead.*/
|
|
182757
182821
|
timezone?: string | undefined;
|
|
182758
|
-
} |
|
|
182822
|
+
} | undefined;
|
|
182759
182823
|
/** Unique identifier for the account associated with the device. */
|
|
182760
182824
|
connected_account_id: string;
|
|
182761
182825
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -189464,14 +189528,17 @@ type Routes = {
|
|
|
189464
189528
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
189465
189529
|
});
|
|
189466
189530
|
/** Location information for the device. */
|
|
189467
|
-
location
|
|
189531
|
+
location?: {
|
|
189468
189532
|
/** Name of the device location.
|
|
189469
189533
|
*/
|
|
189470
189534
|
location_name?: string | undefined;
|
|
189471
189535
|
/** Time zone of the device location.
|
|
189472
189536
|
*/
|
|
189537
|
+
time_zone?: string | undefined;
|
|
189538
|
+
/** Time zone of the device location.
|
|
189539
|
+
* @deprecated Use `time_zone` instead.*/
|
|
189473
189540
|
timezone?: string | undefined;
|
|
189474
|
-
} |
|
|
189541
|
+
} | undefined;
|
|
189475
189542
|
/** Unique identifier for the account associated with the device. */
|
|
189476
189543
|
connected_account_id: string;
|
|
189477
189544
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -190783,14 +190850,17 @@ type Routes = {
|
|
|
190783
190850
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
190784
190851
|
});
|
|
190785
190852
|
/** Location information for the device. */
|
|
190786
|
-
location
|
|
190853
|
+
location?: {
|
|
190787
190854
|
/** Name of the device location.
|
|
190788
190855
|
*/
|
|
190789
190856
|
location_name?: string | undefined;
|
|
190790
190857
|
/** Time zone of the device location.
|
|
190791
190858
|
*/
|
|
190859
|
+
time_zone?: string | undefined;
|
|
190860
|
+
/** Time zone of the device location.
|
|
190861
|
+
* @deprecated Use `time_zone` instead.*/
|
|
190792
190862
|
timezone?: string | undefined;
|
|
190793
|
-
} |
|
|
190863
|
+
} | undefined;
|
|
190794
190864
|
/** Unique identifier for the account associated with the device. */
|
|
190795
190865
|
connected_account_id: string;
|
|
190796
190866
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -204090,14 +204160,17 @@ type Routes = {
|
|
|
204090
204160
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
204091
204161
|
});
|
|
204092
204162
|
/** Location information for the device. */
|
|
204093
|
-
location
|
|
204163
|
+
location?: {
|
|
204094
204164
|
/** Name of the device location.
|
|
204095
204165
|
*/
|
|
204096
204166
|
location_name?: string | undefined;
|
|
204097
204167
|
/** Time zone of the device location.
|
|
204098
204168
|
*/
|
|
204169
|
+
time_zone?: string | undefined;
|
|
204170
|
+
/** Time zone of the device location.
|
|
204171
|
+
* @deprecated Use `time_zone` instead.*/
|
|
204099
204172
|
timezone?: string | undefined;
|
|
204100
|
-
} |
|
|
204173
|
+
} | undefined;
|
|
204101
204174
|
/** Unique identifier for the account associated with the device. */
|
|
204102
204175
|
connected_account_id: string;
|
|
204103
204176
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -210183,14 +210256,17 @@ type Routes = {
|
|
|
210183
210256
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
210184
210257
|
});
|
|
210185
210258
|
/** Location information for the device. */
|
|
210186
|
-
location
|
|
210259
|
+
location?: {
|
|
210187
210260
|
/** Name of the device location.
|
|
210188
210261
|
*/
|
|
210189
210262
|
location_name?: string | undefined;
|
|
210190
210263
|
/** Time zone of the device location.
|
|
210191
210264
|
*/
|
|
210265
|
+
time_zone?: string | undefined;
|
|
210266
|
+
/** Time zone of the device location.
|
|
210267
|
+
* @deprecated Use `time_zone` instead.*/
|
|
210192
210268
|
timezone?: string | undefined;
|
|
210193
|
-
} |
|
|
210269
|
+
} | undefined;
|
|
210194
210270
|
/** Unique identifier for the account associated with the device. */
|
|
210195
210271
|
connected_account_id: string;
|
|
210196
210272
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -214239,14 +214315,17 @@ type Routes = {
|
|
|
214239
214315
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
214240
214316
|
});
|
|
214241
214317
|
/** Location information for the device. */
|
|
214242
|
-
location
|
|
214318
|
+
location?: {
|
|
214243
214319
|
/** Name of the device location.
|
|
214244
214320
|
*/
|
|
214245
214321
|
location_name?: string | undefined;
|
|
214246
214322
|
/** Time zone of the device location.
|
|
214247
214323
|
*/
|
|
214324
|
+
time_zone?: string | undefined;
|
|
214325
|
+
/** Time zone of the device location.
|
|
214326
|
+
* @deprecated Use `time_zone` instead.*/
|
|
214248
214327
|
timezone?: string | undefined;
|
|
214249
|
-
} |
|
|
214328
|
+
} | undefined;
|
|
214250
214329
|
/** Unique identifier for the account associated with the device. */
|
|
214251
214330
|
connected_account_id: string;
|
|
214252
214331
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -215558,14 +215637,17 @@ type Routes = {
|
|
|
215558
215637
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
215559
215638
|
});
|
|
215560
215639
|
/** Location information for the device. */
|
|
215561
|
-
location
|
|
215640
|
+
location?: {
|
|
215562
215641
|
/** Name of the device location.
|
|
215563
215642
|
*/
|
|
215564
215643
|
location_name?: string | undefined;
|
|
215565
215644
|
/** Time zone of the device location.
|
|
215566
215645
|
*/
|
|
215646
|
+
time_zone?: string | undefined;
|
|
215647
|
+
/** Time zone of the device location.
|
|
215648
|
+
* @deprecated Use `time_zone` instead.*/
|
|
215567
215649
|
timezone?: string | undefined;
|
|
215568
|
-
} |
|
|
215650
|
+
} | undefined;
|
|
215569
215651
|
/** Unique identifier for the account associated with the device. */
|
|
215570
215652
|
connected_account_id: string;
|
|
215571
215653
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -223163,14 +223245,17 @@ type Routes = {
|
|
|
223163
223245
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
223164
223246
|
});
|
|
223165
223247
|
/** Location information for the device. */
|
|
223166
|
-
location
|
|
223248
|
+
location?: {
|
|
223167
223249
|
/** Name of the device location.
|
|
223168
223250
|
*/
|
|
223169
223251
|
location_name?: string | undefined;
|
|
223170
223252
|
/** Time zone of the device location.
|
|
223171
223253
|
*/
|
|
223254
|
+
time_zone?: string | undefined;
|
|
223255
|
+
/** Time zone of the device location.
|
|
223256
|
+
* @deprecated Use `time_zone` instead.*/
|
|
223172
223257
|
timezone?: string | undefined;
|
|
223173
|
-
} |
|
|
223258
|
+
} | undefined;
|
|
223174
223259
|
/** Unique identifier for the account associated with the device. */
|
|
223175
223260
|
connected_account_id: string;
|
|
223176
223261
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -224484,14 +224569,17 @@ type Routes = {
|
|
|
224484
224569
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
224485
224570
|
});
|
|
224486
224571
|
/** Location information for the device. */
|
|
224487
|
-
location
|
|
224572
|
+
location?: {
|
|
224488
224573
|
/** Name of the device location.
|
|
224489
224574
|
*/
|
|
224490
224575
|
location_name?: string | undefined;
|
|
224491
224576
|
/** Time zone of the device location.
|
|
224492
224577
|
*/
|
|
224578
|
+
time_zone?: string | undefined;
|
|
224579
|
+
/** Time zone of the device location.
|
|
224580
|
+
* @deprecated Use `time_zone` instead.*/
|
|
224493
224581
|
timezone?: string | undefined;
|
|
224494
|
-
} |
|
|
224582
|
+
} | undefined;
|
|
224495
224583
|
/** Unique identifier for the account associated with the device. */
|
|
224496
224584
|
connected_account_id: string;
|
|
224497
224585
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -226783,14 +226871,17 @@ type Routes = {
|
|
|
226783
226871
|
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
226784
226872
|
});
|
|
226785
226873
|
/** Location information for the device. */
|
|
226786
|
-
location
|
|
226874
|
+
location?: {
|
|
226787
226875
|
/** Name of the device location.
|
|
226788
226876
|
*/
|
|
226789
226877
|
location_name?: string | undefined;
|
|
226790
226878
|
/** Time zone of the device location.
|
|
226791
226879
|
*/
|
|
226880
|
+
time_zone?: string | undefined;
|
|
226881
|
+
/** Time zone of the device location.
|
|
226882
|
+
* @deprecated Use `time_zone` instead.*/
|
|
226792
226883
|
timezone?: string | undefined;
|
|
226793
|
-
} |
|
|
226884
|
+
} | undefined;
|
|
226794
226885
|
/** Unique identifier for the account associated with the device. */
|
|
226795
226886
|
connected_account_id: string;
|
|
226796
226887
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
@@ -229557,14 +229648,17 @@ type Routes = {
|
|
|
229557
229648
|
/** Unique identifier for the account associated with the device. */
|
|
229558
229649
|
connected_account_id: string;
|
|
229559
229650
|
/** Location information for the device. */
|
|
229560
|
-
location
|
|
229651
|
+
location?: {
|
|
229561
229652
|
/** Name of the device location.
|
|
229562
229653
|
*/
|
|
229563
229654
|
location_name?: string | undefined;
|
|
229564
229655
|
/** Time zone of the device location.
|
|
229565
229656
|
*/
|
|
229657
|
+
time_zone?: string | undefined;
|
|
229658
|
+
/** Time zone of the device location.
|
|
229659
|
+
* @deprecated Use `time_zone` instead.*/
|
|
229566
229660
|
timezone?: string | undefined;
|
|
229567
|
-
} |
|
|
229661
|
+
} | undefined;
|
|
229568
229662
|
/**
|
|
229569
229663
|
Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).
|
|
229570
229664
|
*/
|