@seamapi/types 1.257.0 → 1.258.1
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 +87 -39
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +664 -156
- package/lib/seam/connect/openapi.d.ts +122 -54
- package/lib/seam/connect/openapi.js +86 -38
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +456 -16
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +86 -38
- package/src/lib/seam/connect/route-types.ts +630 -16
package/dist/connect.cjs
CHANGED
|
@@ -4858,36 +4858,6 @@ var openapi_default = {
|
|
|
4858
4858
|
],
|
|
4859
4859
|
type: "object"
|
|
4860
4860
|
},
|
|
4861
|
-
climate_preset: {
|
|
4862
|
-
properties: {
|
|
4863
|
-
can_delete: { type: "boolean" },
|
|
4864
|
-
can_edit: { type: "boolean" },
|
|
4865
|
-
climate_preset_key: { type: "string" },
|
|
4866
|
-
cooling_set_point_celsius: { format: "float", type: "number" },
|
|
4867
|
-
cooling_set_point_fahrenheit: { format: "float", type: "number" },
|
|
4868
|
-
display_name: { type: "string" },
|
|
4869
|
-
fan_mode_setting: {
|
|
4870
|
-
enum: ["auto", "on", "circulate"],
|
|
4871
|
-
type: "string"
|
|
4872
|
-
},
|
|
4873
|
-
heating_set_point_celsius: { format: "float", type: "number" },
|
|
4874
|
-
heating_set_point_fahrenheit: { format: "float", type: "number" },
|
|
4875
|
-
hvac_mode_setting: {
|
|
4876
|
-
enum: ["off", "heat", "cool", "heat_cool"],
|
|
4877
|
-
type: "string"
|
|
4878
|
-
},
|
|
4879
|
-
manual_override_allowed: { type: "boolean" },
|
|
4880
|
-
name: { default: null, nullable: true, type: "string" }
|
|
4881
|
-
},
|
|
4882
|
-
required: [
|
|
4883
|
-
"climate_preset_key",
|
|
4884
|
-
"can_edit",
|
|
4885
|
-
"can_delete",
|
|
4886
|
-
"display_name",
|
|
4887
|
-
"manual_override_allowed"
|
|
4888
|
-
],
|
|
4889
|
-
type: "object"
|
|
4890
|
-
},
|
|
4891
4861
|
connect_webview: {
|
|
4892
4862
|
properties: {
|
|
4893
4863
|
accepted_devices: {
|
|
@@ -9897,6 +9867,90 @@ var openapi_default = {
|
|
|
9897
9867
|
"x-undocumented": "Encoding a card is currently unimplemented."
|
|
9898
9868
|
}
|
|
9899
9869
|
},
|
|
9870
|
+
"/acs/encoders/list": {
|
|
9871
|
+
post: {
|
|
9872
|
+
operationId: "acsEncodersListPost",
|
|
9873
|
+
requestBody: {
|
|
9874
|
+
content: {
|
|
9875
|
+
"application/json": {
|
|
9876
|
+
schema: {
|
|
9877
|
+
oneOf: [
|
|
9878
|
+
{
|
|
9879
|
+
properties: {
|
|
9880
|
+
acs_system_ids: {
|
|
9881
|
+
items: { format: "uuid", type: "string" },
|
|
9882
|
+
type: "array"
|
|
9883
|
+
},
|
|
9884
|
+
device_ids: {
|
|
9885
|
+
items: { format: "uuid", type: "string" },
|
|
9886
|
+
type: "array"
|
|
9887
|
+
},
|
|
9888
|
+
limit: { default: 500, format: "float", type: "number" }
|
|
9889
|
+
},
|
|
9890
|
+
required: ["acs_system_ids", "device_ids"],
|
|
9891
|
+
type: "object"
|
|
9892
|
+
},
|
|
9893
|
+
{
|
|
9894
|
+
properties: {
|
|
9895
|
+
device_ids: {
|
|
9896
|
+
items: { format: "uuid", type: "string" },
|
|
9897
|
+
type: "array"
|
|
9898
|
+
},
|
|
9899
|
+
limit: { default: 500, format: "float", type: "number" }
|
|
9900
|
+
},
|
|
9901
|
+
required: ["device_ids"],
|
|
9902
|
+
type: "object"
|
|
9903
|
+
},
|
|
9904
|
+
{
|
|
9905
|
+
properties: {
|
|
9906
|
+
acs_system_ids: {
|
|
9907
|
+
items: { format: "uuid", type: "string" },
|
|
9908
|
+
type: "array"
|
|
9909
|
+
},
|
|
9910
|
+
limit: { default: 500, format: "float", type: "number" }
|
|
9911
|
+
},
|
|
9912
|
+
required: ["acs_system_ids"],
|
|
9913
|
+
type: "object"
|
|
9914
|
+
}
|
|
9915
|
+
]
|
|
9916
|
+
}
|
|
9917
|
+
}
|
|
9918
|
+
}
|
|
9919
|
+
},
|
|
9920
|
+
responses: {
|
|
9921
|
+
200: {
|
|
9922
|
+
content: {
|
|
9923
|
+
"application/json": {
|
|
9924
|
+
schema: {
|
|
9925
|
+
properties: {
|
|
9926
|
+
devices: {
|
|
9927
|
+
items: { $ref: "#/components/schemas/device" },
|
|
9928
|
+
type: "array"
|
|
9929
|
+
},
|
|
9930
|
+
ok: { type: "boolean" }
|
|
9931
|
+
},
|
|
9932
|
+
required: ["devices", "ok"],
|
|
9933
|
+
type: "object"
|
|
9934
|
+
}
|
|
9935
|
+
}
|
|
9936
|
+
},
|
|
9937
|
+
description: "OK"
|
|
9938
|
+
},
|
|
9939
|
+
400: { description: "Bad Request" },
|
|
9940
|
+
401: { description: "Unauthorized" }
|
|
9941
|
+
},
|
|
9942
|
+
security: [
|
|
9943
|
+
{ pat_with_workspace: [] },
|
|
9944
|
+
{ console_session: [] },
|
|
9945
|
+
{ api_key: [] }
|
|
9946
|
+
],
|
|
9947
|
+
summary: "/acs/encoders/list",
|
|
9948
|
+
tags: ["/acs"],
|
|
9949
|
+
"x-fern-sdk-group-name": ["acs", "encoders"],
|
|
9950
|
+
"x-fern-sdk-method-name": "list",
|
|
9951
|
+
"x-fern-sdk-return-value": "devices"
|
|
9952
|
+
}
|
|
9953
|
+
},
|
|
9900
9954
|
"/acs/encoders/read_card": {
|
|
9901
9955
|
post: {
|
|
9902
9956
|
operationId: "acsEncodersReadCardPost",
|
|
@@ -15728,13 +15782,8 @@ var openapi_default = {
|
|
|
15728
15782
|
content: {
|
|
15729
15783
|
"application/json": {
|
|
15730
15784
|
schema: {
|
|
15731
|
-
properties: {
|
|
15732
|
-
|
|
15733
|
-
$ref: "#/components/schemas/climate_preset"
|
|
15734
|
-
},
|
|
15735
|
-
ok: { type: "boolean" }
|
|
15736
|
-
},
|
|
15737
|
-
required: ["climate_preset", "ok"],
|
|
15785
|
+
properties: { ok: { type: "boolean" } },
|
|
15786
|
+
required: ["ok"],
|
|
15738
15787
|
type: "object"
|
|
15739
15788
|
}
|
|
15740
15789
|
}
|
|
@@ -15752,8 +15801,7 @@ var openapi_default = {
|
|
|
15752
15801
|
summary: "/thermostats/create_climate_preset",
|
|
15753
15802
|
tags: ["/thermostats"],
|
|
15754
15803
|
"x-fern-sdk-group-name": ["thermostats"],
|
|
15755
|
-
"x-fern-sdk-method-name": "create_climate_preset"
|
|
15756
|
-
"x-fern-sdk-return-value": "climate_preset"
|
|
15804
|
+
"x-fern-sdk-method-name": "create_climate_preset"
|
|
15757
15805
|
}
|
|
15758
15806
|
},
|
|
15759
15807
|
"/thermostats/delete_climate_preset": {
|