@seamapi/types 1.60.0 → 1.60.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 +60 -33
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +265 -132
- package/lib/seam/connect/openapi.d.ts +203 -132
- package/lib/seam/connect/openapi.js +60 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +62 -0
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +27 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +64 -33
- package/src/lib/seam/connect/route-types.ts +62 -0
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
package/dist/connect.cjs
CHANGED
|
@@ -398,6 +398,10 @@ var openapi_default = {
|
|
|
398
398
|
cooling_set_point_fahrenheit: { type: "number" },
|
|
399
399
|
created_at: { format: "date-time", type: "string" },
|
|
400
400
|
device_id: { type: "string" },
|
|
401
|
+
errors: {
|
|
402
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
403
|
+
nullable: true
|
|
404
|
+
},
|
|
401
405
|
heating_set_point_celsius: { type: "number" },
|
|
402
406
|
heating_set_point_fahrenheit: { type: "number" },
|
|
403
407
|
hvac_mode_setting: {
|
|
@@ -1185,6 +1189,10 @@ var openapi_default = {
|
|
|
1185
1189
|
type: "string"
|
|
1186
1190
|
},
|
|
1187
1191
|
device_id: { type: "string" },
|
|
1192
|
+
errors: {
|
|
1193
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1194
|
+
nullable: true
|
|
1195
|
+
},
|
|
1188
1196
|
heating_set_point_celsius: { type: "number" },
|
|
1189
1197
|
heating_set_point_fahrenheit: { type: "number" },
|
|
1190
1198
|
hvac_mode_setting: {
|
|
@@ -1323,6 +1331,10 @@ var openapi_default = {
|
|
|
1323
1331
|
type: "string"
|
|
1324
1332
|
},
|
|
1325
1333
|
device_id: { type: "string" },
|
|
1334
|
+
errors: {
|
|
1335
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1336
|
+
nullable: true
|
|
1337
|
+
},
|
|
1326
1338
|
heating_set_point_celsius: { type: "number" },
|
|
1327
1339
|
heating_set_point_fahrenheit: { type: "number" },
|
|
1328
1340
|
hvac_mode_setting: {
|
|
@@ -1453,6 +1465,10 @@ var openapi_default = {
|
|
|
1453
1465
|
type: "string"
|
|
1454
1466
|
},
|
|
1455
1467
|
device_id: { type: "string" },
|
|
1468
|
+
errors: {
|
|
1469
|
+
description: 'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1470
|
+
nullable: true
|
|
1471
|
+
},
|
|
1456
1472
|
heating_set_point_celsius: { type: "number" },
|
|
1457
1473
|
heating_set_point_fahrenheit: { type: "number" },
|
|
1458
1474
|
hvac_mode_setting: {
|
|
@@ -2025,9 +2041,10 @@ var openapi_default = {
|
|
|
2025
2041
|
401: { description: "Unauthorized" }
|
|
2026
2042
|
},
|
|
2027
2043
|
security: [
|
|
2028
|
-
{
|
|
2029
|
-
{
|
|
2030
|
-
{
|
|
2044
|
+
{ client_session: [] },
|
|
2045
|
+
{ pat_with_workspace: [] },
|
|
2046
|
+
{ console_session: [] },
|
|
2047
|
+
{ api_key: [] }
|
|
2031
2048
|
],
|
|
2032
2049
|
summary: "/access_codes/create",
|
|
2033
2050
|
tags: ["/access_codes"],
|
|
@@ -2107,9 +2124,10 @@ var openapi_default = {
|
|
|
2107
2124
|
401: { description: "Unauthorized" }
|
|
2108
2125
|
},
|
|
2109
2126
|
security: [
|
|
2110
|
-
{
|
|
2111
|
-
{
|
|
2112
|
-
{
|
|
2127
|
+
{ client_session: [] },
|
|
2128
|
+
{ pat_with_workspace: [] },
|
|
2129
|
+
{ console_session: [] },
|
|
2130
|
+
{ api_key: [] }
|
|
2113
2131
|
],
|
|
2114
2132
|
summary: "/access_codes/create_multiple",
|
|
2115
2133
|
tags: ["/access_codes"],
|
|
@@ -2187,9 +2205,10 @@ var openapi_default = {
|
|
|
2187
2205
|
401: { description: "Unauthorized" }
|
|
2188
2206
|
},
|
|
2189
2207
|
security: [
|
|
2190
|
-
{
|
|
2191
|
-
{
|
|
2192
|
-
{
|
|
2208
|
+
{ client_session: [] },
|
|
2209
|
+
{ pat_with_workspace: [] },
|
|
2210
|
+
{ console_session: [] },
|
|
2211
|
+
{ api_key: [] }
|
|
2193
2212
|
],
|
|
2194
2213
|
summary: "/access_codes/create_multiple",
|
|
2195
2214
|
tags: ["/access_codes"],
|
|
@@ -2236,9 +2255,10 @@ var openapi_default = {
|
|
|
2236
2255
|
401: { description: "Unauthorized" }
|
|
2237
2256
|
},
|
|
2238
2257
|
security: [
|
|
2239
|
-
{
|
|
2240
|
-
{
|
|
2241
|
-
{
|
|
2258
|
+
{ client_session: [] },
|
|
2259
|
+
{ pat_with_workspace: [] },
|
|
2260
|
+
{ console_session: [] },
|
|
2261
|
+
{ api_key: [] }
|
|
2242
2262
|
],
|
|
2243
2263
|
summary: "/access_codes/delete",
|
|
2244
2264
|
tags: ["/access_codes"],
|
|
@@ -2283,9 +2303,10 @@ var openapi_default = {
|
|
|
2283
2303
|
401: { description: "Unauthorized" }
|
|
2284
2304
|
},
|
|
2285
2305
|
security: [
|
|
2286
|
-
{
|
|
2287
|
-
{
|
|
2288
|
-
{
|
|
2306
|
+
{ client_session: [] },
|
|
2307
|
+
{ pat_with_workspace: [] },
|
|
2308
|
+
{ console_session: [] },
|
|
2309
|
+
{ api_key: [] }
|
|
2289
2310
|
],
|
|
2290
2311
|
summary: "/access_codes/generate_code",
|
|
2291
2312
|
tags: ["/access_codes"],
|
|
@@ -2386,9 +2407,10 @@ var openapi_default = {
|
|
|
2386
2407
|
401: { description: "Unauthorized" }
|
|
2387
2408
|
},
|
|
2388
2409
|
security: [
|
|
2389
|
-
{
|
|
2390
|
-
{
|
|
2391
|
-
{
|
|
2410
|
+
{ client_session: [] },
|
|
2411
|
+
{ pat_with_workspace: [] },
|
|
2412
|
+
{ console_session: [] },
|
|
2413
|
+
{ api_key: [] }
|
|
2392
2414
|
],
|
|
2393
2415
|
summary: "/access_codes/list",
|
|
2394
2416
|
tags: ["/access_codes"],
|
|
@@ -2435,9 +2457,10 @@ var openapi_default = {
|
|
|
2435
2457
|
401: { description: "Unauthorized" }
|
|
2436
2458
|
},
|
|
2437
2459
|
security: [
|
|
2438
|
-
{
|
|
2439
|
-
{
|
|
2440
|
-
{
|
|
2460
|
+
{ client_session: [] },
|
|
2461
|
+
{ pat_with_workspace: [] },
|
|
2462
|
+
{ console_session: [] },
|
|
2463
|
+
{ api_key: [] }
|
|
2441
2464
|
],
|
|
2442
2465
|
summary: "/access_codes/pull_backup_access_code",
|
|
2443
2466
|
tags: ["/access_codes"],
|
|
@@ -2491,9 +2514,10 @@ var openapi_default = {
|
|
|
2491
2514
|
401: { description: "Unauthorized" }
|
|
2492
2515
|
},
|
|
2493
2516
|
security: [
|
|
2494
|
-
{
|
|
2495
|
-
{
|
|
2496
|
-
{
|
|
2517
|
+
{ client_session: [] },
|
|
2518
|
+
{ pat_with_workspace: [] },
|
|
2519
|
+
{ console_session: [] },
|
|
2520
|
+
{ api_key: [] }
|
|
2497
2521
|
],
|
|
2498
2522
|
summary: "/access_codes/simulate/create_unmanaged_access_code",
|
|
2499
2523
|
tags: ["/access_codes"],
|
|
@@ -2903,9 +2927,10 @@ var openapi_default = {
|
|
|
2903
2927
|
401: { description: "Unauthorized" }
|
|
2904
2928
|
},
|
|
2905
2929
|
security: [
|
|
2906
|
-
{
|
|
2907
|
-
{
|
|
2908
|
-
{
|
|
2930
|
+
{ client_session: [] },
|
|
2931
|
+
{ pat_with_workspace: [] },
|
|
2932
|
+
{ console_session: [] },
|
|
2933
|
+
{ api_key: [] }
|
|
2909
2934
|
],
|
|
2910
2935
|
summary: "/access_codes/update",
|
|
2911
2936
|
tags: ["/access_codes"],
|
|
@@ -2976,9 +3001,10 @@ var openapi_default = {
|
|
|
2976
3001
|
401: { description: "Unauthorized" }
|
|
2977
3002
|
},
|
|
2978
3003
|
security: [
|
|
2979
|
-
{
|
|
2980
|
-
{
|
|
2981
|
-
{
|
|
3004
|
+
{ client_session: [] },
|
|
3005
|
+
{ pat_with_workspace: [] },
|
|
3006
|
+
{ console_session: [] },
|
|
3007
|
+
{ api_key: [] }
|
|
2982
3008
|
],
|
|
2983
3009
|
summary: "/access_codes/update",
|
|
2984
3010
|
tags: ["/access_codes"],
|
|
@@ -3051,9 +3077,10 @@ var openapi_default = {
|
|
|
3051
3077
|
401: { description: "Unauthorized" }
|
|
3052
3078
|
},
|
|
3053
3079
|
security: [
|
|
3054
|
-
{
|
|
3055
|
-
{
|
|
3056
|
-
{
|
|
3080
|
+
{ client_session: [] },
|
|
3081
|
+
{ pat_with_workspace: [] },
|
|
3082
|
+
{ console_session: [] },
|
|
3083
|
+
{ api_key: [] }
|
|
3057
3084
|
],
|
|
3058
3085
|
summary: "/access_codes/update",
|
|
3059
3086
|
tags: ["/access_codes"],
|