@seamapi/types 1.466.1 → 1.468.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 +716 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2389 -10
- package/dist/index.cjs +716 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +367 -0
- package/lib/seam/connect/openapi.js +681 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1965 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +691 -0
- package/src/lib/seam/connect/route-types.ts +2843 -293
|
@@ -4270,6 +4270,9 @@ declare const _default: {
|
|
|
4270
4270
|
can_remotely_unlock: {
|
|
4271
4271
|
type: string;
|
|
4272
4272
|
};
|
|
4273
|
+
can_run_thermostat_programs: {
|
|
4274
|
+
type: string;
|
|
4275
|
+
};
|
|
4273
4276
|
can_simulate_connection: {
|
|
4274
4277
|
type: string;
|
|
4275
4278
|
};
|
|
@@ -5956,6 +5959,7 @@ declare const _default: {
|
|
|
5956
5959
|
max_cooling_set_point_fahrenheit?: never;
|
|
5957
5960
|
max_heating_set_point_celsius?: never;
|
|
5958
5961
|
max_heating_set_point_fahrenheit?: never;
|
|
5962
|
+
max_thermostat_daily_program_periods_per_day?: never;
|
|
5959
5963
|
min_cooling_set_point_celsius?: never;
|
|
5960
5964
|
min_cooling_set_point_fahrenheit?: never;
|
|
5961
5965
|
min_heating_cooling_delta_celsius?: never;
|
|
@@ -5966,6 +5970,7 @@ declare const _default: {
|
|
|
5966
5970
|
temperature_celsius?: never;
|
|
5967
5971
|
temperature_fahrenheit?: never;
|
|
5968
5972
|
temperature_threshold?: never;
|
|
5973
|
+
thermostat_daily_program_period_precision_minutes?: never;
|
|
5969
5974
|
thermostat_daily_programs?: never;
|
|
5970
5975
|
thermostat_weekly_program?: never;
|
|
5971
5976
|
};
|
|
@@ -6432,6 +6437,12 @@ declare const _default: {
|
|
|
6432
6437
|
type: string;
|
|
6433
6438
|
'x-property-group-key': string;
|
|
6434
6439
|
};
|
|
6440
|
+
max_thermostat_daily_program_periods_per_day: {
|
|
6441
|
+
description: string;
|
|
6442
|
+
format: string;
|
|
6443
|
+
type: string;
|
|
6444
|
+
'x-property-group-key': string;
|
|
6445
|
+
};
|
|
6435
6446
|
min_cooling_set_point_celsius: {
|
|
6436
6447
|
description: string;
|
|
6437
6448
|
format: string;
|
|
@@ -6520,6 +6531,12 @@ declare const _default: {
|
|
|
6520
6531
|
type: string;
|
|
6521
6532
|
'x-property-group-key': string;
|
|
6522
6533
|
};
|
|
6534
|
+
thermostat_daily_program_period_precision_minutes: {
|
|
6535
|
+
description: string;
|
|
6536
|
+
format: string;
|
|
6537
|
+
type: string;
|
|
6538
|
+
'x-property-group-key': string;
|
|
6539
|
+
};
|
|
6523
6540
|
thermostat_daily_programs: {
|
|
6524
6541
|
description: string;
|
|
6525
6542
|
items: {
|
|
@@ -6806,6 +6823,9 @@ declare const _default: {
|
|
|
6806
6823
|
can_remotely_unlock: {
|
|
6807
6824
|
type: string;
|
|
6808
6825
|
};
|
|
6826
|
+
can_run_thermostat_programs: {
|
|
6827
|
+
type: string;
|
|
6828
|
+
};
|
|
6809
6829
|
can_simulate_connection: {
|
|
6810
6830
|
type: string;
|
|
6811
6831
|
};
|
|
@@ -12674,6 +12694,9 @@ declare const _default: {
|
|
|
12674
12694
|
can_remotely_unlock: {
|
|
12675
12695
|
type: string;
|
|
12676
12696
|
};
|
|
12697
|
+
can_run_thermostat_programs: {
|
|
12698
|
+
type: string;
|
|
12699
|
+
};
|
|
12677
12700
|
can_simulate_connection: {
|
|
12678
12701
|
type: string;
|
|
12679
12702
|
};
|
|
@@ -37700,6 +37723,252 @@ declare const _default: {
|
|
|
37700
37723
|
'x-undocumented': string;
|
|
37701
37724
|
};
|
|
37702
37725
|
};
|
|
37726
|
+
'/seam/customer/v1/events/list': {
|
|
37727
|
+
get: {
|
|
37728
|
+
description: string;
|
|
37729
|
+
operationId: string;
|
|
37730
|
+
parameters: ({
|
|
37731
|
+
in: string;
|
|
37732
|
+
name: string;
|
|
37733
|
+
required: boolean;
|
|
37734
|
+
schema: {
|
|
37735
|
+
description: string;
|
|
37736
|
+
format: string;
|
|
37737
|
+
type: string;
|
|
37738
|
+
items?: never;
|
|
37739
|
+
maxItems?: never;
|
|
37740
|
+
minItems?: never;
|
|
37741
|
+
enum?: never;
|
|
37742
|
+
default?: never;
|
|
37743
|
+
};
|
|
37744
|
+
} | {
|
|
37745
|
+
in: string;
|
|
37746
|
+
name: string;
|
|
37747
|
+
required: boolean;
|
|
37748
|
+
schema: {
|
|
37749
|
+
description: string;
|
|
37750
|
+
type: string;
|
|
37751
|
+
format?: never;
|
|
37752
|
+
items?: never;
|
|
37753
|
+
maxItems?: never;
|
|
37754
|
+
minItems?: never;
|
|
37755
|
+
enum?: never;
|
|
37756
|
+
default?: never;
|
|
37757
|
+
};
|
|
37758
|
+
} | {
|
|
37759
|
+
in: string;
|
|
37760
|
+
name: string;
|
|
37761
|
+
required: boolean;
|
|
37762
|
+
schema: {
|
|
37763
|
+
description: string;
|
|
37764
|
+
items: {
|
|
37765
|
+
oneOf: ({
|
|
37766
|
+
type: string;
|
|
37767
|
+
format?: never;
|
|
37768
|
+
} | {
|
|
37769
|
+
format: string;
|
|
37770
|
+
type: string;
|
|
37771
|
+
})[];
|
|
37772
|
+
enum?: never;
|
|
37773
|
+
type?: never;
|
|
37774
|
+
};
|
|
37775
|
+
maxItems: number;
|
|
37776
|
+
minItems: number;
|
|
37777
|
+
type: string;
|
|
37778
|
+
format?: never;
|
|
37779
|
+
enum?: never;
|
|
37780
|
+
default?: never;
|
|
37781
|
+
};
|
|
37782
|
+
} | {
|
|
37783
|
+
in: string;
|
|
37784
|
+
name: string;
|
|
37785
|
+
required: boolean;
|
|
37786
|
+
schema: {
|
|
37787
|
+
description: string;
|
|
37788
|
+
enum: string[];
|
|
37789
|
+
type: string;
|
|
37790
|
+
format?: never;
|
|
37791
|
+
items?: never;
|
|
37792
|
+
maxItems?: never;
|
|
37793
|
+
minItems?: never;
|
|
37794
|
+
default?: never;
|
|
37795
|
+
};
|
|
37796
|
+
} | {
|
|
37797
|
+
in: string;
|
|
37798
|
+
name: string;
|
|
37799
|
+
required: boolean;
|
|
37800
|
+
schema: {
|
|
37801
|
+
description: string;
|
|
37802
|
+
items: {
|
|
37803
|
+
enum: string[];
|
|
37804
|
+
type: string;
|
|
37805
|
+
oneOf?: never;
|
|
37806
|
+
};
|
|
37807
|
+
type: string;
|
|
37808
|
+
format?: never;
|
|
37809
|
+
maxItems?: never;
|
|
37810
|
+
minItems?: never;
|
|
37811
|
+
enum?: never;
|
|
37812
|
+
default?: never;
|
|
37813
|
+
};
|
|
37814
|
+
} | {
|
|
37815
|
+
in: string;
|
|
37816
|
+
name: string;
|
|
37817
|
+
required: boolean;
|
|
37818
|
+
schema: {
|
|
37819
|
+
default: number;
|
|
37820
|
+
description: string;
|
|
37821
|
+
format: string;
|
|
37822
|
+
type: string;
|
|
37823
|
+
items?: never;
|
|
37824
|
+
maxItems?: never;
|
|
37825
|
+
minItems?: never;
|
|
37826
|
+
enum?: never;
|
|
37827
|
+
};
|
|
37828
|
+
})[];
|
|
37829
|
+
responses: {
|
|
37830
|
+
200: {
|
|
37831
|
+
content: {
|
|
37832
|
+
'application/json': {
|
|
37833
|
+
schema: {
|
|
37834
|
+
properties: {
|
|
37835
|
+
events: {
|
|
37836
|
+
items: {
|
|
37837
|
+
$ref: string;
|
|
37838
|
+
};
|
|
37839
|
+
type: string;
|
|
37840
|
+
};
|
|
37841
|
+
ok: {
|
|
37842
|
+
type: string;
|
|
37843
|
+
};
|
|
37844
|
+
};
|
|
37845
|
+
required: string[];
|
|
37846
|
+
type: string;
|
|
37847
|
+
};
|
|
37848
|
+
};
|
|
37849
|
+
};
|
|
37850
|
+
description: string;
|
|
37851
|
+
};
|
|
37852
|
+
400: {
|
|
37853
|
+
description: string;
|
|
37854
|
+
};
|
|
37855
|
+
401: {
|
|
37856
|
+
description: string;
|
|
37857
|
+
};
|
|
37858
|
+
};
|
|
37859
|
+
security: {
|
|
37860
|
+
client_session_with_customer: never[];
|
|
37861
|
+
}[];
|
|
37862
|
+
summary: string;
|
|
37863
|
+
tags: string[];
|
|
37864
|
+
'x-fern-sdk-group-name': string[];
|
|
37865
|
+
'x-fern-sdk-method-name': string;
|
|
37866
|
+
'x-fern-sdk-return-value': string;
|
|
37867
|
+
'x-response-key': string;
|
|
37868
|
+
'x-title': string;
|
|
37869
|
+
'x-undocumented': string;
|
|
37870
|
+
};
|
|
37871
|
+
post: {
|
|
37872
|
+
description: string;
|
|
37873
|
+
operationId: string;
|
|
37874
|
+
requestBody: {
|
|
37875
|
+
content: {
|
|
37876
|
+
'application/json': {
|
|
37877
|
+
schema: {
|
|
37878
|
+
properties: {
|
|
37879
|
+
between: {
|
|
37880
|
+
description: string;
|
|
37881
|
+
items: {
|
|
37882
|
+
oneOf: ({
|
|
37883
|
+
type: string;
|
|
37884
|
+
format?: never;
|
|
37885
|
+
} | {
|
|
37886
|
+
format: string;
|
|
37887
|
+
type: string;
|
|
37888
|
+
})[];
|
|
37889
|
+
};
|
|
37890
|
+
maxItems: number;
|
|
37891
|
+
minItems: number;
|
|
37892
|
+
type: string;
|
|
37893
|
+
};
|
|
37894
|
+
event_type: {
|
|
37895
|
+
description: string;
|
|
37896
|
+
enum: string[];
|
|
37897
|
+
type: string;
|
|
37898
|
+
};
|
|
37899
|
+
event_types: {
|
|
37900
|
+
description: string;
|
|
37901
|
+
items: {
|
|
37902
|
+
enum: string[];
|
|
37903
|
+
type: string;
|
|
37904
|
+
};
|
|
37905
|
+
type: string;
|
|
37906
|
+
};
|
|
37907
|
+
limit: {
|
|
37908
|
+
default: number;
|
|
37909
|
+
description: string;
|
|
37910
|
+
format: string;
|
|
37911
|
+
type: string;
|
|
37912
|
+
};
|
|
37913
|
+
since: {
|
|
37914
|
+
description: string;
|
|
37915
|
+
type: string;
|
|
37916
|
+
};
|
|
37917
|
+
space_id: {
|
|
37918
|
+
description: string;
|
|
37919
|
+
format: string;
|
|
37920
|
+
type: string;
|
|
37921
|
+
};
|
|
37922
|
+
};
|
|
37923
|
+
required: string[];
|
|
37924
|
+
type: string;
|
|
37925
|
+
};
|
|
37926
|
+
};
|
|
37927
|
+
};
|
|
37928
|
+
};
|
|
37929
|
+
responses: {
|
|
37930
|
+
200: {
|
|
37931
|
+
content: {
|
|
37932
|
+
'application/json': {
|
|
37933
|
+
schema: {
|
|
37934
|
+
properties: {
|
|
37935
|
+
events: {
|
|
37936
|
+
items: {
|
|
37937
|
+
$ref: string;
|
|
37938
|
+
};
|
|
37939
|
+
type: string;
|
|
37940
|
+
};
|
|
37941
|
+
ok: {
|
|
37942
|
+
type: string;
|
|
37943
|
+
};
|
|
37944
|
+
};
|
|
37945
|
+
required: string[];
|
|
37946
|
+
type: string;
|
|
37947
|
+
};
|
|
37948
|
+
};
|
|
37949
|
+
};
|
|
37950
|
+
description: string;
|
|
37951
|
+
};
|
|
37952
|
+
400: {
|
|
37953
|
+
description: string;
|
|
37954
|
+
};
|
|
37955
|
+
401: {
|
|
37956
|
+
description: string;
|
|
37957
|
+
};
|
|
37958
|
+
};
|
|
37959
|
+
security: {
|
|
37960
|
+
client_session_with_customer: never[];
|
|
37961
|
+
}[];
|
|
37962
|
+
summary: string;
|
|
37963
|
+
tags: string[];
|
|
37964
|
+
'x-fern-sdk-group-name': string[];
|
|
37965
|
+
'x-fern-sdk-method-name': string;
|
|
37966
|
+
'x-fern-sdk-return-value': string;
|
|
37967
|
+
'x-response-key': string;
|
|
37968
|
+
'x-title': string;
|
|
37969
|
+
'x-undocumented': string;
|
|
37970
|
+
};
|
|
37971
|
+
};
|
|
37703
37972
|
'/seam/customer/v1/portals/get': {
|
|
37704
37973
|
get: {
|
|
37705
37974
|
description: string;
|
|
@@ -37917,6 +38186,104 @@ declare const _default: {
|
|
|
37917
38186
|
'x-undocumented': string;
|
|
37918
38187
|
};
|
|
37919
38188
|
};
|
|
38189
|
+
'/seam/customer/v1/settings/get': {
|
|
38190
|
+
get: {
|
|
38191
|
+
description: string;
|
|
38192
|
+
operationId: string;
|
|
38193
|
+
responses: {
|
|
38194
|
+
200: {
|
|
38195
|
+
content: {
|
|
38196
|
+
'application/json': {
|
|
38197
|
+
schema: {
|
|
38198
|
+
properties: {
|
|
38199
|
+
business_vertical: {
|
|
38200
|
+
description: string;
|
|
38201
|
+
enum: string[];
|
|
38202
|
+
type: string;
|
|
38203
|
+
};
|
|
38204
|
+
ok: {
|
|
38205
|
+
type: string;
|
|
38206
|
+
};
|
|
38207
|
+
};
|
|
38208
|
+
required: string[];
|
|
38209
|
+
type: string;
|
|
38210
|
+
};
|
|
38211
|
+
};
|
|
38212
|
+
};
|
|
38213
|
+
description: string;
|
|
38214
|
+
};
|
|
38215
|
+
400: {
|
|
38216
|
+
description: string;
|
|
38217
|
+
};
|
|
38218
|
+
401: {
|
|
38219
|
+
description: string;
|
|
38220
|
+
};
|
|
38221
|
+
};
|
|
38222
|
+
security: ({
|
|
38223
|
+
console_session_with_workspace: never[];
|
|
38224
|
+
api_key?: never;
|
|
38225
|
+
} | {
|
|
38226
|
+
api_key: never[];
|
|
38227
|
+
console_session_with_workspace?: never;
|
|
38228
|
+
})[];
|
|
38229
|
+
summary: string;
|
|
38230
|
+
tags: never[];
|
|
38231
|
+
'x-fern-sdk-group-name': string[];
|
|
38232
|
+
'x-fern-sdk-method-name': string;
|
|
38233
|
+
'x-fern-sdk-return-value': string;
|
|
38234
|
+
'x-response-key': string;
|
|
38235
|
+
'x-title': string;
|
|
38236
|
+
'x-undocumented': string;
|
|
38237
|
+
};
|
|
38238
|
+
post: {
|
|
38239
|
+
description: string;
|
|
38240
|
+
operationId: string;
|
|
38241
|
+
responses: {
|
|
38242
|
+
200: {
|
|
38243
|
+
content: {
|
|
38244
|
+
'application/json': {
|
|
38245
|
+
schema: {
|
|
38246
|
+
properties: {
|
|
38247
|
+
business_vertical: {
|
|
38248
|
+
description: string;
|
|
38249
|
+
enum: string[];
|
|
38250
|
+
type: string;
|
|
38251
|
+
};
|
|
38252
|
+
ok: {
|
|
38253
|
+
type: string;
|
|
38254
|
+
};
|
|
38255
|
+
};
|
|
38256
|
+
required: string[];
|
|
38257
|
+
type: string;
|
|
38258
|
+
};
|
|
38259
|
+
};
|
|
38260
|
+
};
|
|
38261
|
+
description: string;
|
|
38262
|
+
};
|
|
38263
|
+
400: {
|
|
38264
|
+
description: string;
|
|
38265
|
+
};
|
|
38266
|
+
401: {
|
|
38267
|
+
description: string;
|
|
38268
|
+
};
|
|
38269
|
+
};
|
|
38270
|
+
security: ({
|
|
38271
|
+
console_session_with_workspace: never[];
|
|
38272
|
+
api_key?: never;
|
|
38273
|
+
} | {
|
|
38274
|
+
api_key: never[];
|
|
38275
|
+
console_session_with_workspace?: never;
|
|
38276
|
+
})[];
|
|
38277
|
+
summary: string;
|
|
38278
|
+
tags: never[];
|
|
38279
|
+
'x-fern-sdk-group-name': string[];
|
|
38280
|
+
'x-fern-sdk-method-name': string;
|
|
38281
|
+
'x-fern-sdk-return-value': string;
|
|
38282
|
+
'x-response-key': string;
|
|
38283
|
+
'x-title': string;
|
|
38284
|
+
'x-undocumented': string;
|
|
38285
|
+
};
|
|
38286
|
+
};
|
|
37920
38287
|
'/seam/customer/v1/settings/update': {
|
|
37921
38288
|
patch: {
|
|
37922
38289
|
description: string;
|