@seamapi/types 1.385.0 → 1.386.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 +2472 -316
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +14983 -6309
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +1 -1
- package/lib/seam/connect/models/access-grants/access-method.d.ts +9 -3
- package/lib/seam/connect/models/access-grants/access-method.js +9 -1
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +2 -2
- package/lib/seam/connect/models/acs/acs-system.d.ts +36 -0
- package/lib/seam/connect/models/acs/acs-system.js +6 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +0 -12
- package/lib/seam/connect/models/acs/acs-users/acs-user.js +4 -22
- package/lib/seam/connect/models/acs/acs-users/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +43 -18
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +189 -6
- package/lib/seam/connect/models/action-attempts/action-attempt.js +2 -0
- package/lib/seam/connect/models/action-attempts/action-attempt.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/encode-access-method.d.ts +186 -0
- package/lib/seam/connect/models/action-attempts/encode-access-method.js +42 -0
- package/lib/seam/connect/models/action-attempts/encode-access-method.js.map +1 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +6 -6
- package/lib/seam/connect/models/colors.d.ts +2 -0
- package/lib/seam/connect/models/colors.js +8 -0
- package/lib/seam/connect/models/colors.js.map +1 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +135 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +135 -13
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -1
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +1 -1
- package/lib/seam/connect/models/devices/device-provider.js +1 -1
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +247 -19
- package/lib/seam/connect/models/devices/device.js +11 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +156 -13
- package/lib/seam/connect/models/events/access-grants.d.ts +254 -0
- package/lib/seam/connect/models/events/access-grants.js +59 -0
- package/lib/seam/connect/models/events/access-grants.js.map +1 -0
- package/lib/seam/connect/models/events/access-methods.d.ts +146 -0
- package/lib/seam/connect/models/events/access-methods.js +35 -0
- package/lib/seam/connect/models/events/access-methods.js.map +1 -0
- package/lib/seam/connect/models/events/devices.d.ts +6 -4
- package/lib/seam/connect/models/events/seam-event.d.ts +194 -3
- package/lib/seam/connect/models/events/seam-event.js +4 -0
- package/lib/seam/connect/models/events/seam-event.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +2 -2
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +3 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/models/thermostats/index.d.ts +1 -0
- package/lib/seam/connect/models/thermostats/index.js +1 -0
- package/lib/seam/connect/models/thermostats/index.js.map +1 -1
- package/lib/seam/connect/models/thermostats/thermostat-program.d.ts +79 -0
- package/lib/seam/connect/models/thermostats/thermostat-program.js +74 -0
- package/lib/seam/connect/models/thermostats/thermostat-program.js.map +1 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +7 -7
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +3 -7
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/models/workspaces/workspace.d.ts +33 -0
- package/lib/seam/connect/models/workspaces/workspace.js +8 -0
- package/lib/seam/connect/models/workspaces/workspace.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2532 -507
- package/lib/seam/connect/openapi.js +3383 -1439
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +7498 -1677
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +2 -2
- package/src/lib/seam/connect/models/access-grants/access-method.ts +11 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +6 -0
- package/src/lib/seam/connect/models/acs/acs-users/acs-user.ts +6 -22
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +62 -27
- package/src/lib/seam/connect/models/action-attempts/action-attempt.ts +2 -0
- package/src/lib/seam/connect/models/action-attempts/encode-access-method.ts +69 -0
- package/src/lib/seam/connect/models/colors.ts +9 -0
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +9 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +14 -0
- package/src/lib/seam/connect/models/events/access-grants.ts +91 -0
- package/src/lib/seam/connect/models/events/access-methods.ts +51 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +4 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +5 -0
- package/src/lib/seam/connect/models/thermostats/index.ts +1 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-program.ts +90 -0
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +3 -7
- package/src/lib/seam/connect/models/workspaces/workspace.ts +9 -0
- package/src/lib/seam/connect/openapi.ts +3570 -1488
- package/src/lib/seam/connect/route-types.ts +16330 -9720
- package/src/lib/seam/connect/schemas.ts +2 -0
|
@@ -890,10 +890,28 @@ declare const _default: {
|
|
|
890
890
|
description: string;
|
|
891
891
|
type: string;
|
|
892
892
|
};
|
|
893
|
+
can_create_user: {
|
|
894
|
+
type: string;
|
|
895
|
+
};
|
|
896
|
+
can_delete_user: {
|
|
897
|
+
type: string;
|
|
898
|
+
};
|
|
893
899
|
can_remove_acs_users_from_acs_access_groups: {
|
|
894
900
|
description: string;
|
|
895
901
|
type: string;
|
|
896
902
|
};
|
|
903
|
+
can_update_user_group_membership: {
|
|
904
|
+
type: string;
|
|
905
|
+
};
|
|
906
|
+
can_update_user_information: {
|
|
907
|
+
type: string;
|
|
908
|
+
};
|
|
909
|
+
can_update_user_schedule: {
|
|
910
|
+
type: string;
|
|
911
|
+
};
|
|
912
|
+
can_update_user_supension_state: {
|
|
913
|
+
type: string;
|
|
914
|
+
};
|
|
897
915
|
connected_account_id: {
|
|
898
916
|
description: string;
|
|
899
917
|
format: string;
|
|
@@ -1210,11 +1228,6 @@ declare const _default: {
|
|
|
1210
1228
|
format: string;
|
|
1211
1229
|
type: string;
|
|
1212
1230
|
};
|
|
1213
|
-
is_latest_desired_state_synced_with_provider: {
|
|
1214
|
-
nullable: boolean;
|
|
1215
|
-
type: string;
|
|
1216
|
-
'x-undocumented': string;
|
|
1217
|
-
};
|
|
1218
1231
|
is_managed: {
|
|
1219
1232
|
enum: boolean[];
|
|
1220
1233
|
type: string;
|
|
@@ -1223,24 +1236,22 @@ declare const _default: {
|
|
|
1223
1236
|
description: string;
|
|
1224
1237
|
type: string;
|
|
1225
1238
|
};
|
|
1226
|
-
latest_desired_state_synced_with_provider_at: {
|
|
1227
|
-
format: string;
|
|
1228
|
-
nullable: boolean;
|
|
1229
|
-
type: string;
|
|
1230
|
-
'x-undocumented': string;
|
|
1231
|
-
};
|
|
1232
1239
|
pending_mutations: {
|
|
1240
|
+
description: string;
|
|
1233
1241
|
items: {
|
|
1234
1242
|
discriminator: {
|
|
1235
1243
|
propertyName: string;
|
|
1236
1244
|
};
|
|
1237
1245
|
oneOf: ({
|
|
1246
|
+
description: string;
|
|
1238
1247
|
properties: {
|
|
1239
1248
|
created_at: {
|
|
1249
|
+
description: string;
|
|
1240
1250
|
format: string;
|
|
1241
1251
|
type: string;
|
|
1242
1252
|
};
|
|
1243
1253
|
message: {
|
|
1254
|
+
description: string;
|
|
1244
1255
|
type: string;
|
|
1245
1256
|
};
|
|
1246
1257
|
mutation_code: {
|
|
@@ -1255,6 +1266,7 @@ declare const _default: {
|
|
|
1255
1266
|
} | {
|
|
1256
1267
|
properties: {
|
|
1257
1268
|
created_at: {
|
|
1269
|
+
description: string;
|
|
1258
1270
|
format: string;
|
|
1259
1271
|
type: string;
|
|
1260
1272
|
};
|
|
@@ -1280,8 +1292,10 @@ declare const _default: {
|
|
|
1280
1292
|
};
|
|
1281
1293
|
type: string;
|
|
1282
1294
|
required?: never;
|
|
1295
|
+
description?: never;
|
|
1283
1296
|
};
|
|
1284
1297
|
message: {
|
|
1298
|
+
description: string;
|
|
1285
1299
|
type: string;
|
|
1286
1300
|
};
|
|
1287
1301
|
mutation_code: {
|
|
@@ -1310,13 +1324,17 @@ declare const _default: {
|
|
|
1310
1324
|
};
|
|
1311
1325
|
type: string;
|
|
1312
1326
|
required?: never;
|
|
1327
|
+
description?: never;
|
|
1313
1328
|
};
|
|
1314
1329
|
};
|
|
1315
1330
|
required: string[];
|
|
1316
1331
|
type: string;
|
|
1332
|
+
description?: never;
|
|
1317
1333
|
} | {
|
|
1334
|
+
description: string;
|
|
1318
1335
|
properties: {
|
|
1319
1336
|
created_at: {
|
|
1337
|
+
description: string;
|
|
1320
1338
|
format: string;
|
|
1321
1339
|
type: string;
|
|
1322
1340
|
};
|
|
@@ -1340,8 +1358,10 @@ declare const _default: {
|
|
|
1340
1358
|
};
|
|
1341
1359
|
required: string[];
|
|
1342
1360
|
type: string;
|
|
1361
|
+
description?: never;
|
|
1343
1362
|
};
|
|
1344
1363
|
message: {
|
|
1364
|
+
description: string;
|
|
1345
1365
|
type: string;
|
|
1346
1366
|
};
|
|
1347
1367
|
mutation_code: {
|
|
@@ -1368,13 +1388,16 @@ declare const _default: {
|
|
|
1368
1388
|
};
|
|
1369
1389
|
required: string[];
|
|
1370
1390
|
type: string;
|
|
1391
|
+
description?: never;
|
|
1371
1392
|
};
|
|
1372
1393
|
};
|
|
1373
1394
|
required: string[];
|
|
1374
1395
|
type: string;
|
|
1375
1396
|
} | {
|
|
1397
|
+
description: string;
|
|
1376
1398
|
properties: {
|
|
1377
1399
|
created_at: {
|
|
1400
|
+
description: string;
|
|
1378
1401
|
format: string;
|
|
1379
1402
|
type: string;
|
|
1380
1403
|
};
|
|
@@ -1392,8 +1415,10 @@ declare const _default: {
|
|
|
1392
1415
|
};
|
|
1393
1416
|
required: string[];
|
|
1394
1417
|
type: string;
|
|
1418
|
+
description?: never;
|
|
1395
1419
|
};
|
|
1396
1420
|
message: {
|
|
1421
|
+
description: string;
|
|
1397
1422
|
type: string;
|
|
1398
1423
|
};
|
|
1399
1424
|
mutation_code: {
|
|
@@ -1414,19 +1439,24 @@ declare const _default: {
|
|
|
1414
1439
|
};
|
|
1415
1440
|
required: string[];
|
|
1416
1441
|
type: string;
|
|
1442
|
+
description?: never;
|
|
1417
1443
|
};
|
|
1418
1444
|
};
|
|
1419
1445
|
required: string[];
|
|
1420
1446
|
type: string;
|
|
1421
1447
|
} | {
|
|
1448
|
+
description: string;
|
|
1422
1449
|
properties: {
|
|
1423
1450
|
created_at: {
|
|
1451
|
+
description: string;
|
|
1424
1452
|
format: string;
|
|
1425
1453
|
type: string;
|
|
1426
1454
|
};
|
|
1427
1455
|
from: {
|
|
1456
|
+
description: string;
|
|
1428
1457
|
properties: {
|
|
1429
1458
|
acs_access_group_id: {
|
|
1459
|
+
description: string;
|
|
1430
1460
|
format: string;
|
|
1431
1461
|
nullable: boolean;
|
|
1432
1462
|
type: string;
|
|
@@ -1442,6 +1472,7 @@ declare const _default: {
|
|
|
1442
1472
|
type: string;
|
|
1443
1473
|
};
|
|
1444
1474
|
message: {
|
|
1475
|
+
description: string;
|
|
1445
1476
|
type: string;
|
|
1446
1477
|
};
|
|
1447
1478
|
mutation_code: {
|
|
@@ -1449,8 +1480,10 @@ declare const _default: {
|
|
|
1449
1480
|
type: string;
|
|
1450
1481
|
};
|
|
1451
1482
|
to: {
|
|
1483
|
+
description: string;
|
|
1452
1484
|
properties: {
|
|
1453
1485
|
acs_access_group_id: {
|
|
1486
|
+
description: string;
|
|
1454
1487
|
format: string;
|
|
1455
1488
|
nullable: boolean;
|
|
1456
1489
|
type: string;
|
|
@@ -1471,7 +1504,6 @@ declare const _default: {
|
|
|
1471
1504
|
})[];
|
|
1472
1505
|
};
|
|
1473
1506
|
type: string;
|
|
1474
|
-
'x-undocumented': string;
|
|
1475
1507
|
};
|
|
1476
1508
|
phone_number: {
|
|
1477
1509
|
description: string;
|
|
@@ -1599,6 +1631,14 @@ declare const _default: {
|
|
|
1599
1631
|
acs_credential_on_encoder?: never;
|
|
1600
1632
|
acs_credential_on_seam?: never;
|
|
1601
1633
|
warnings?: never;
|
|
1634
|
+
access_method_id?: never;
|
|
1635
|
+
created_at?: never;
|
|
1636
|
+
display_name?: never;
|
|
1637
|
+
instant_key_url?: never;
|
|
1638
|
+
is_card_encoding_required?: never;
|
|
1639
|
+
issued_at?: never;
|
|
1640
|
+
mode?: never;
|
|
1641
|
+
workspace_id?: never;
|
|
1602
1642
|
access_code?: never;
|
|
1603
1643
|
noise_threshold?: never;
|
|
1604
1644
|
};
|
|
@@ -2032,6 +2072,14 @@ declare const _default: {
|
|
|
2032
2072
|
};
|
|
2033
2073
|
type: string;
|
|
2034
2074
|
};
|
|
2075
|
+
access_method_id?: never;
|
|
2076
|
+
created_at?: never;
|
|
2077
|
+
display_name?: never;
|
|
2078
|
+
instant_key_url?: never;
|
|
2079
|
+
is_card_encoding_required?: never;
|
|
2080
|
+
issued_at?: never;
|
|
2081
|
+
mode?: never;
|
|
2082
|
+
workspace_id?: never;
|
|
2035
2083
|
access_code?: never;
|
|
2036
2084
|
noise_threshold?: never;
|
|
2037
2085
|
};
|
|
@@ -2150,6 +2198,151 @@ declare const _default: {
|
|
|
2150
2198
|
};
|
|
2151
2199
|
required: string[];
|
|
2152
2200
|
type: string;
|
|
2201
|
+
} | {
|
|
2202
|
+
description: string;
|
|
2203
|
+
properties: {
|
|
2204
|
+
action_attempt_id: {
|
|
2205
|
+
description: string;
|
|
2206
|
+
format: string;
|
|
2207
|
+
type: string;
|
|
2208
|
+
};
|
|
2209
|
+
action_type: {
|
|
2210
|
+
description: string;
|
|
2211
|
+
enum: string[];
|
|
2212
|
+
type: string;
|
|
2213
|
+
};
|
|
2214
|
+
error: {
|
|
2215
|
+
description: string;
|
|
2216
|
+
nullable: boolean;
|
|
2217
|
+
properties?: never;
|
|
2218
|
+
required?: never;
|
|
2219
|
+
type?: never;
|
|
2220
|
+
oneOf?: never;
|
|
2221
|
+
};
|
|
2222
|
+
result: {
|
|
2223
|
+
description: string;
|
|
2224
|
+
properties: {
|
|
2225
|
+
access_method_id: {
|
|
2226
|
+
description: string;
|
|
2227
|
+
format: string;
|
|
2228
|
+
type: string;
|
|
2229
|
+
};
|
|
2230
|
+
created_at: {
|
|
2231
|
+
description: string;
|
|
2232
|
+
format: string;
|
|
2233
|
+
type: string;
|
|
2234
|
+
};
|
|
2235
|
+
display_name: {
|
|
2236
|
+
description: string;
|
|
2237
|
+
type: string;
|
|
2238
|
+
};
|
|
2239
|
+
instant_key_url: {
|
|
2240
|
+
description: string;
|
|
2241
|
+
type: string;
|
|
2242
|
+
};
|
|
2243
|
+
is_card_encoding_required: {
|
|
2244
|
+
description: string;
|
|
2245
|
+
type: string;
|
|
2246
|
+
};
|
|
2247
|
+
issued_at: {
|
|
2248
|
+
description: string;
|
|
2249
|
+
format: string;
|
|
2250
|
+
type: string;
|
|
2251
|
+
};
|
|
2252
|
+
mode: {
|
|
2253
|
+
description: string;
|
|
2254
|
+
enum: string[];
|
|
2255
|
+
type: string;
|
|
2256
|
+
};
|
|
2257
|
+
workspace_id: {
|
|
2258
|
+
description: string;
|
|
2259
|
+
format: string;
|
|
2260
|
+
type: string;
|
|
2261
|
+
};
|
|
2262
|
+
acs_credential_on_encoder?: never;
|
|
2263
|
+
acs_credential_on_seam?: never;
|
|
2264
|
+
warnings?: never;
|
|
2265
|
+
access_code?: never;
|
|
2266
|
+
noise_threshold?: never;
|
|
2267
|
+
};
|
|
2268
|
+
required: string[];
|
|
2269
|
+
type: string;
|
|
2270
|
+
nullable?: never;
|
|
2271
|
+
oneOf?: never;
|
|
2272
|
+
};
|
|
2273
|
+
status: {
|
|
2274
|
+
enum: string[];
|
|
2275
|
+
type: string;
|
|
2276
|
+
};
|
|
2277
|
+
};
|
|
2278
|
+
required: string[];
|
|
2279
|
+
type: string;
|
|
2280
|
+
} | {
|
|
2281
|
+
description: string;
|
|
2282
|
+
properties: {
|
|
2283
|
+
action_attempt_id: {
|
|
2284
|
+
description: string;
|
|
2285
|
+
format: string;
|
|
2286
|
+
type: string;
|
|
2287
|
+
};
|
|
2288
|
+
action_type: {
|
|
2289
|
+
description: string;
|
|
2290
|
+
enum: string[];
|
|
2291
|
+
type: string;
|
|
2292
|
+
};
|
|
2293
|
+
error: {
|
|
2294
|
+
oneOf: ({
|
|
2295
|
+
description: string;
|
|
2296
|
+
properties: {
|
|
2297
|
+
message: {
|
|
2298
|
+
description: string;
|
|
2299
|
+
type: string;
|
|
2300
|
+
};
|
|
2301
|
+
type: {
|
|
2302
|
+
description: string;
|
|
2303
|
+
enum: string[];
|
|
2304
|
+
type: string;
|
|
2305
|
+
};
|
|
2306
|
+
};
|
|
2307
|
+
required: string[];
|
|
2308
|
+
type: string;
|
|
2309
|
+
} | {
|
|
2310
|
+
properties: {
|
|
2311
|
+
message: {
|
|
2312
|
+
type: string;
|
|
2313
|
+
description?: never;
|
|
2314
|
+
};
|
|
2315
|
+
type: {
|
|
2316
|
+
enum: string[];
|
|
2317
|
+
type: string;
|
|
2318
|
+
description?: never;
|
|
2319
|
+
};
|
|
2320
|
+
};
|
|
2321
|
+
required: string[];
|
|
2322
|
+
type: string;
|
|
2323
|
+
description?: never;
|
|
2324
|
+
})[];
|
|
2325
|
+
description?: never;
|
|
2326
|
+
nullable?: never;
|
|
2327
|
+
properties?: never;
|
|
2328
|
+
required?: never;
|
|
2329
|
+
type?: never;
|
|
2330
|
+
};
|
|
2331
|
+
result: {
|
|
2332
|
+
description: string;
|
|
2333
|
+
nullable: boolean;
|
|
2334
|
+
properties?: never;
|
|
2335
|
+
type?: never;
|
|
2336
|
+
required?: never;
|
|
2337
|
+
oneOf?: never;
|
|
2338
|
+
};
|
|
2339
|
+
status: {
|
|
2340
|
+
enum: string[];
|
|
2341
|
+
type: string;
|
|
2342
|
+
};
|
|
2343
|
+
};
|
|
2344
|
+
required: string[];
|
|
2345
|
+
type: string;
|
|
2153
2346
|
} | {
|
|
2154
2347
|
description: string;
|
|
2155
2348
|
properties: {
|
|
@@ -2415,72 +2608,6 @@ declare const _default: {
|
|
|
2415
2608
|
};
|
|
2416
2609
|
required: string[];
|
|
2417
2610
|
type: string;
|
|
2418
|
-
} | {
|
|
2419
|
-
description: string;
|
|
2420
|
-
properties: {
|
|
2421
|
-
action_attempt_id: {
|
|
2422
|
-
description: string;
|
|
2423
|
-
format: string;
|
|
2424
|
-
type: string;
|
|
2425
|
-
};
|
|
2426
|
-
action_type: {
|
|
2427
|
-
description: string;
|
|
2428
|
-
enum: string[];
|
|
2429
|
-
type: string;
|
|
2430
|
-
};
|
|
2431
|
-
error: {
|
|
2432
|
-
oneOf: ({
|
|
2433
|
-
description: string;
|
|
2434
|
-
properties: {
|
|
2435
|
-
message: {
|
|
2436
|
-
description: string;
|
|
2437
|
-
type: string;
|
|
2438
|
-
};
|
|
2439
|
-
type: {
|
|
2440
|
-
description: string;
|
|
2441
|
-
enum: string[];
|
|
2442
|
-
type: string;
|
|
2443
|
-
};
|
|
2444
|
-
};
|
|
2445
|
-
required: string[];
|
|
2446
|
-
type: string;
|
|
2447
|
-
} | {
|
|
2448
|
-
properties: {
|
|
2449
|
-
message: {
|
|
2450
|
-
type: string;
|
|
2451
|
-
description?: never;
|
|
2452
|
-
};
|
|
2453
|
-
type: {
|
|
2454
|
-
enum: string[];
|
|
2455
|
-
type: string;
|
|
2456
|
-
description?: never;
|
|
2457
|
-
};
|
|
2458
|
-
};
|
|
2459
|
-
required: string[];
|
|
2460
|
-
type: string;
|
|
2461
|
-
description?: never;
|
|
2462
|
-
})[];
|
|
2463
|
-
description?: never;
|
|
2464
|
-
nullable?: never;
|
|
2465
|
-
properties?: never;
|
|
2466
|
-
required?: never;
|
|
2467
|
-
type?: never;
|
|
2468
|
-
};
|
|
2469
|
-
result: {
|
|
2470
|
-
description: string;
|
|
2471
|
-
nullable: boolean;
|
|
2472
|
-
properties?: never;
|
|
2473
|
-
type?: never;
|
|
2474
|
-
required?: never;
|
|
2475
|
-
oneOf?: never;
|
|
2476
|
-
};
|
|
2477
|
-
status: {
|
|
2478
|
-
enum: string[];
|
|
2479
|
-
type: string;
|
|
2480
|
-
};
|
|
2481
|
-
};
|
|
2482
|
-
required: string[];
|
|
2483
|
-
type: string;
|
|
2484
2611
|
} | {
|
|
2485
2612
|
properties: {
|
|
2486
2613
|
action_attempt_id: {
|
|
@@ -2542,6 +2669,14 @@ declare const _default: {
|
|
|
2542
2669
|
acs_credential_on_encoder?: never;
|
|
2543
2670
|
acs_credential_on_seam?: never;
|
|
2544
2671
|
warnings?: never;
|
|
2672
|
+
access_method_id?: never;
|
|
2673
|
+
created_at?: never;
|
|
2674
|
+
display_name?: never;
|
|
2675
|
+
instant_key_url?: never;
|
|
2676
|
+
is_card_encoding_required?: never;
|
|
2677
|
+
issued_at?: never;
|
|
2678
|
+
mode?: never;
|
|
2679
|
+
workspace_id?: never;
|
|
2545
2680
|
access_code?: never;
|
|
2546
2681
|
noise_threshold?: never;
|
|
2547
2682
|
};
|
|
@@ -2628,6 +2763,14 @@ declare const _default: {
|
|
|
2628
2763
|
acs_credential_on_encoder?: never;
|
|
2629
2764
|
acs_credential_on_seam?: never;
|
|
2630
2765
|
warnings?: never;
|
|
2766
|
+
access_method_id?: never;
|
|
2767
|
+
created_at?: never;
|
|
2768
|
+
display_name?: never;
|
|
2769
|
+
instant_key_url?: never;
|
|
2770
|
+
is_card_encoding_required?: never;
|
|
2771
|
+
issued_at?: never;
|
|
2772
|
+
mode?: never;
|
|
2773
|
+
workspace_id?: never;
|
|
2631
2774
|
noise_threshold?: never;
|
|
2632
2775
|
};
|
|
2633
2776
|
type: string;
|
|
@@ -2670,6 +2813,14 @@ declare const _default: {
|
|
|
2670
2813
|
acs_credential_on_encoder?: never;
|
|
2671
2814
|
acs_credential_on_seam?: never;
|
|
2672
2815
|
warnings?: never;
|
|
2816
|
+
access_method_id?: never;
|
|
2817
|
+
created_at?: never;
|
|
2818
|
+
display_name?: never;
|
|
2819
|
+
instant_key_url?: never;
|
|
2820
|
+
is_card_encoding_required?: never;
|
|
2821
|
+
issued_at?: never;
|
|
2822
|
+
mode?: never;
|
|
2823
|
+
workspace_id?: never;
|
|
2673
2824
|
access_code?: never;
|
|
2674
2825
|
};
|
|
2675
2826
|
type: string;
|
|
@@ -4330,6 +4481,8 @@ declare const _default: {
|
|
|
4330
4481
|
temperature_celsius?: never;
|
|
4331
4482
|
temperature_fahrenheit?: never;
|
|
4332
4483
|
temperature_threshold?: never;
|
|
4484
|
+
thermostat_daily_programs?: never;
|
|
4485
|
+
thermostat_weekly_program?: never;
|
|
4333
4486
|
};
|
|
4334
4487
|
type: string;
|
|
4335
4488
|
} | {
|
|
@@ -4376,8 +4529,13 @@ declare const _default: {
|
|
|
4376
4529
|
};
|
|
4377
4530
|
type: string;
|
|
4378
4531
|
};
|
|
4532
|
+
is_override_allowed: {
|
|
4533
|
+
description: string;
|
|
4534
|
+
type: string;
|
|
4535
|
+
};
|
|
4379
4536
|
max_override_period_minutes: {
|
|
4380
4537
|
description: string;
|
|
4538
|
+
exclusiveMinimum: boolean;
|
|
4381
4539
|
minimum: number;
|
|
4382
4540
|
nullable: boolean;
|
|
4383
4541
|
type: string;
|
|
@@ -4396,11 +4554,6 @@ declare const _default: {
|
|
|
4396
4554
|
format: string;
|
|
4397
4555
|
type: string;
|
|
4398
4556
|
};
|
|
4399
|
-
unstable_is_override_allowed: {
|
|
4400
|
-
description: string;
|
|
4401
|
-
type: string;
|
|
4402
|
-
'x-undocumented': string;
|
|
4403
|
-
};
|
|
4404
4557
|
};
|
|
4405
4558
|
required: string[];
|
|
4406
4559
|
type: string;
|
|
@@ -4417,6 +4570,10 @@ declare const _default: {
|
|
|
4417
4570
|
description: string;
|
|
4418
4571
|
type: string;
|
|
4419
4572
|
};
|
|
4573
|
+
can_program: {
|
|
4574
|
+
description: string;
|
|
4575
|
+
type: string;
|
|
4576
|
+
};
|
|
4420
4577
|
climate_preset_key: {
|
|
4421
4578
|
description: string;
|
|
4422
4579
|
type: string;
|
|
@@ -4497,6 +4654,10 @@ declare const _default: {
|
|
|
4497
4654
|
description: string;
|
|
4498
4655
|
type: string;
|
|
4499
4656
|
};
|
|
4657
|
+
can_program: {
|
|
4658
|
+
description: string;
|
|
4659
|
+
type: string;
|
|
4660
|
+
};
|
|
4500
4661
|
climate_preset_key: {
|
|
4501
4662
|
description: string;
|
|
4502
4663
|
type: string;
|
|
@@ -4561,6 +4722,10 @@ declare const _default: {
|
|
|
4561
4722
|
description: string;
|
|
4562
4723
|
type: string;
|
|
4563
4724
|
};
|
|
4725
|
+
can_program: {
|
|
4726
|
+
description: string;
|
|
4727
|
+
type: string;
|
|
4728
|
+
};
|
|
4564
4729
|
climate_preset_key: {
|
|
4565
4730
|
description: string;
|
|
4566
4731
|
type: string;
|
|
@@ -4719,6 +4884,115 @@ declare const _default: {
|
|
|
4719
4884
|
required: string[];
|
|
4720
4885
|
type: string;
|
|
4721
4886
|
};
|
|
4887
|
+
thermostat_daily_programs: {
|
|
4888
|
+
default: null;
|
|
4889
|
+
items: {
|
|
4890
|
+
properties: {
|
|
4891
|
+
created_at: {
|
|
4892
|
+
description: string;
|
|
4893
|
+
format: string;
|
|
4894
|
+
type: string;
|
|
4895
|
+
};
|
|
4896
|
+
device_id: {
|
|
4897
|
+
description: string;
|
|
4898
|
+
format: string;
|
|
4899
|
+
type: string;
|
|
4900
|
+
};
|
|
4901
|
+
name: {
|
|
4902
|
+
description: string;
|
|
4903
|
+
type: string;
|
|
4904
|
+
};
|
|
4905
|
+
periods: {
|
|
4906
|
+
description: string;
|
|
4907
|
+
items: {
|
|
4908
|
+
properties: {
|
|
4909
|
+
climate_preset_key: {
|
|
4910
|
+
description: string;
|
|
4911
|
+
type: string;
|
|
4912
|
+
};
|
|
4913
|
+
starts_at_time: {
|
|
4914
|
+
description: string;
|
|
4915
|
+
pattern: string;
|
|
4916
|
+
type: string;
|
|
4917
|
+
};
|
|
4918
|
+
};
|
|
4919
|
+
required: string[];
|
|
4920
|
+
type: string;
|
|
4921
|
+
};
|
|
4922
|
+
type: string;
|
|
4923
|
+
};
|
|
4924
|
+
thermostat_daily_program_id: {
|
|
4925
|
+
description: string;
|
|
4926
|
+
format: string;
|
|
4927
|
+
type: string;
|
|
4928
|
+
};
|
|
4929
|
+
};
|
|
4930
|
+
required: string[];
|
|
4931
|
+
type: string;
|
|
4932
|
+
};
|
|
4933
|
+
nullable: boolean;
|
|
4934
|
+
type: string;
|
|
4935
|
+
};
|
|
4936
|
+
thermostat_weekly_program: {
|
|
4937
|
+
default: null;
|
|
4938
|
+
nullable: boolean;
|
|
4939
|
+
properties: {
|
|
4940
|
+
created_at: {
|
|
4941
|
+
description: string;
|
|
4942
|
+
format: string;
|
|
4943
|
+
type: string;
|
|
4944
|
+
};
|
|
4945
|
+
device_id: {
|
|
4946
|
+
description: string;
|
|
4947
|
+
format: string;
|
|
4948
|
+
type: string;
|
|
4949
|
+
};
|
|
4950
|
+
friday_program_id: {
|
|
4951
|
+
description: string;
|
|
4952
|
+
format: string;
|
|
4953
|
+
nullable: boolean;
|
|
4954
|
+
type: string;
|
|
4955
|
+
};
|
|
4956
|
+
monday_program_id: {
|
|
4957
|
+
description: string;
|
|
4958
|
+
format: string;
|
|
4959
|
+
nullable: boolean;
|
|
4960
|
+
type: string;
|
|
4961
|
+
};
|
|
4962
|
+
saturday_program_id: {
|
|
4963
|
+
description: string;
|
|
4964
|
+
format: string;
|
|
4965
|
+
nullable: boolean;
|
|
4966
|
+
type: string;
|
|
4967
|
+
};
|
|
4968
|
+
sunday_program_id: {
|
|
4969
|
+
description: string;
|
|
4970
|
+
format: string;
|
|
4971
|
+
nullable: boolean;
|
|
4972
|
+
type: string;
|
|
4973
|
+
};
|
|
4974
|
+
thursday_program_id: {
|
|
4975
|
+
description: string;
|
|
4976
|
+
format: string;
|
|
4977
|
+
nullable: boolean;
|
|
4978
|
+
type: string;
|
|
4979
|
+
};
|
|
4980
|
+
tuesday_program_id: {
|
|
4981
|
+
description: string;
|
|
4982
|
+
format: string;
|
|
4983
|
+
nullable: boolean;
|
|
4984
|
+
type: string;
|
|
4985
|
+
};
|
|
4986
|
+
wednesday_program_id: {
|
|
4987
|
+
description: string;
|
|
4988
|
+
format: string;
|
|
4989
|
+
nullable: boolean;
|
|
4990
|
+
type: string;
|
|
4991
|
+
};
|
|
4992
|
+
};
|
|
4993
|
+
required: string[];
|
|
4994
|
+
type: string;
|
|
4995
|
+
};
|
|
4722
4996
|
_experimental_supported_code_from_access_codes_lengths?: never;
|
|
4723
4997
|
code_constraints?: never;
|
|
4724
4998
|
door_open?: never;
|
|
@@ -4910,12 +5184,14 @@ declare const _default: {
|
|
|
4910
5184
|
};
|
|
4911
5185
|
code?: never;
|
|
4912
5186
|
backup_access_code_id?: never;
|
|
5187
|
+
access_grant_id?: never;
|
|
5188
|
+
acs_entrance_id?: never;
|
|
5189
|
+
access_method_id?: never;
|
|
4913
5190
|
acs_system_id?: never;
|
|
4914
5191
|
acs_credential_id?: never;
|
|
4915
5192
|
acs_user_id?: never;
|
|
4916
5193
|
acs_encoder_id?: never;
|
|
4917
5194
|
acs_access_group_id?: never;
|
|
4918
|
-
acs_entrance_id?: never;
|
|
4919
5195
|
client_session_id?: never;
|
|
4920
5196
|
connect_webview_id?: never;
|
|
4921
5197
|
action_attempt_id?: never;
|
|
@@ -5004,12 +5280,14 @@ declare const _default: {
|
|
|
5004
5280
|
type: string;
|
|
5005
5281
|
};
|
|
5006
5282
|
backup_access_code_id?: never;
|
|
5283
|
+
access_grant_id?: never;
|
|
5284
|
+
acs_entrance_id?: never;
|
|
5285
|
+
access_method_id?: never;
|
|
5007
5286
|
acs_system_id?: never;
|
|
5008
5287
|
acs_credential_id?: never;
|
|
5009
5288
|
acs_user_id?: never;
|
|
5010
5289
|
acs_encoder_id?: never;
|
|
5011
5290
|
acs_access_group_id?: never;
|
|
5012
|
-
acs_entrance_id?: never;
|
|
5013
5291
|
client_session_id?: never;
|
|
5014
5292
|
connect_webview_id?: never;
|
|
5015
5293
|
action_attempt_id?: never;
|
|
@@ -5098,12 +5376,14 @@ declare const _default: {
|
|
|
5098
5376
|
type: string;
|
|
5099
5377
|
};
|
|
5100
5378
|
backup_access_code_id?: never;
|
|
5379
|
+
access_grant_id?: never;
|
|
5380
|
+
acs_entrance_id?: never;
|
|
5381
|
+
access_method_id?: never;
|
|
5101
5382
|
acs_system_id?: never;
|
|
5102
5383
|
acs_credential_id?: never;
|
|
5103
5384
|
acs_user_id?: never;
|
|
5104
5385
|
acs_encoder_id?: never;
|
|
5105
5386
|
acs_access_group_id?: never;
|
|
5106
|
-
acs_entrance_id?: never;
|
|
5107
5387
|
client_session_id?: never;
|
|
5108
5388
|
connect_webview_id?: never;
|
|
5109
5389
|
action_attempt_id?: never;
|
|
@@ -5190,12 +5470,14 @@ declare const _default: {
|
|
|
5190
5470
|
type: string;
|
|
5191
5471
|
};
|
|
5192
5472
|
code?: never;
|
|
5473
|
+
access_grant_id?: never;
|
|
5474
|
+
acs_entrance_id?: never;
|
|
5475
|
+
access_method_id?: never;
|
|
5193
5476
|
acs_system_id?: never;
|
|
5194
5477
|
acs_credential_id?: never;
|
|
5195
5478
|
acs_user_id?: never;
|
|
5196
5479
|
acs_encoder_id?: never;
|
|
5197
5480
|
acs_access_group_id?: never;
|
|
5198
|
-
acs_entrance_id?: never;
|
|
5199
5481
|
client_session_id?: never;
|
|
5200
5482
|
connect_webview_id?: never;
|
|
5201
5483
|
action_attempt_id?: never;
|
|
@@ -5239,12 +5521,7 @@ declare const _default: {
|
|
|
5239
5521
|
} | {
|
|
5240
5522
|
description: string;
|
|
5241
5523
|
properties: {
|
|
5242
|
-
|
|
5243
|
-
description: string;
|
|
5244
|
-
format: string;
|
|
5245
|
-
type: string;
|
|
5246
|
-
};
|
|
5247
|
-
connected_account_id: {
|
|
5524
|
+
access_grant_id: {
|
|
5248
5525
|
description: string;
|
|
5249
5526
|
format: string;
|
|
5250
5527
|
type: string;
|
|
@@ -5274,14 +5551,17 @@ declare const _default: {
|
|
|
5274
5551
|
type: string;
|
|
5275
5552
|
};
|
|
5276
5553
|
access_code_id?: never;
|
|
5554
|
+
connected_account_id?: never;
|
|
5277
5555
|
device_id?: never;
|
|
5278
5556
|
code?: never;
|
|
5279
5557
|
backup_access_code_id?: never;
|
|
5558
|
+
acs_entrance_id?: never;
|
|
5559
|
+
access_method_id?: never;
|
|
5560
|
+
acs_system_id?: never;
|
|
5280
5561
|
acs_credential_id?: never;
|
|
5281
5562
|
acs_user_id?: never;
|
|
5282
5563
|
acs_encoder_id?: never;
|
|
5283
5564
|
acs_access_group_id?: never;
|
|
5284
|
-
acs_entrance_id?: never;
|
|
5285
5565
|
client_session_id?: never;
|
|
5286
5566
|
connect_webview_id?: never;
|
|
5287
5567
|
action_attempt_id?: never;
|
|
@@ -5325,16 +5605,12 @@ declare const _default: {
|
|
|
5325
5605
|
} | {
|
|
5326
5606
|
description: string;
|
|
5327
5607
|
properties: {
|
|
5328
|
-
|
|
5329
|
-
format: string;
|
|
5330
|
-
type: string;
|
|
5331
|
-
};
|
|
5332
|
-
acs_system_id: {
|
|
5608
|
+
access_grant_id: {
|
|
5333
5609
|
description: string;
|
|
5334
5610
|
format: string;
|
|
5335
5611
|
type: string;
|
|
5336
5612
|
};
|
|
5337
|
-
|
|
5613
|
+
acs_entrance_id: {
|
|
5338
5614
|
description: string;
|
|
5339
5615
|
format: string;
|
|
5340
5616
|
type: string;
|
|
@@ -5364,13 +5640,16 @@ declare const _default: {
|
|
|
5364
5640
|
type: string;
|
|
5365
5641
|
};
|
|
5366
5642
|
access_code_id?: never;
|
|
5643
|
+
connected_account_id?: never;
|
|
5367
5644
|
device_id?: never;
|
|
5368
5645
|
code?: never;
|
|
5369
5646
|
backup_access_code_id?: never;
|
|
5647
|
+
access_method_id?: never;
|
|
5648
|
+
acs_system_id?: never;
|
|
5649
|
+
acs_credential_id?: never;
|
|
5370
5650
|
acs_user_id?: never;
|
|
5371
5651
|
acs_encoder_id?: never;
|
|
5372
5652
|
acs_access_group_id?: never;
|
|
5373
|
-
acs_entrance_id?: never;
|
|
5374
5653
|
client_session_id?: never;
|
|
5375
5654
|
connect_webview_id?: never;
|
|
5376
5655
|
action_attempt_id?: never;
|
|
@@ -5414,16 +5693,7 @@ declare const _default: {
|
|
|
5414
5693
|
} | {
|
|
5415
5694
|
description: string;
|
|
5416
5695
|
properties: {
|
|
5417
|
-
|
|
5418
|
-
description: string;
|
|
5419
|
-
format: string;
|
|
5420
|
-
type: string;
|
|
5421
|
-
};
|
|
5422
|
-
acs_user_id: {
|
|
5423
|
-
format: string;
|
|
5424
|
-
type: string;
|
|
5425
|
-
};
|
|
5426
|
-
connected_account_id: {
|
|
5696
|
+
access_method_id: {
|
|
5427
5697
|
description: string;
|
|
5428
5698
|
format: string;
|
|
5429
5699
|
type: string;
|
|
@@ -5453,13 +5723,17 @@ declare const _default: {
|
|
|
5453
5723
|
type: string;
|
|
5454
5724
|
};
|
|
5455
5725
|
access_code_id?: never;
|
|
5726
|
+
connected_account_id?: never;
|
|
5456
5727
|
device_id?: never;
|
|
5457
5728
|
code?: never;
|
|
5458
5729
|
backup_access_code_id?: never;
|
|
5730
|
+
access_grant_id?: never;
|
|
5731
|
+
acs_entrance_id?: never;
|
|
5732
|
+
acs_system_id?: never;
|
|
5459
5733
|
acs_credential_id?: never;
|
|
5734
|
+
acs_user_id?: never;
|
|
5460
5735
|
acs_encoder_id?: never;
|
|
5461
5736
|
acs_access_group_id?: never;
|
|
5462
|
-
acs_entrance_id?: never;
|
|
5463
5737
|
client_session_id?: never;
|
|
5464
5738
|
connect_webview_id?: never;
|
|
5465
5739
|
action_attempt_id?: never;
|
|
@@ -5503,11 +5777,6 @@ declare const _default: {
|
|
|
5503
5777
|
} | {
|
|
5504
5778
|
description: string;
|
|
5505
5779
|
properties: {
|
|
5506
|
-
acs_encoder_id: {
|
|
5507
|
-
description: string;
|
|
5508
|
-
format: string;
|
|
5509
|
-
type: string;
|
|
5510
|
-
};
|
|
5511
5780
|
acs_system_id: {
|
|
5512
5781
|
description: string;
|
|
5513
5782
|
format: string;
|
|
@@ -5546,10 +5815,13 @@ declare const _default: {
|
|
|
5546
5815
|
device_id?: never;
|
|
5547
5816
|
code?: never;
|
|
5548
5817
|
backup_access_code_id?: never;
|
|
5818
|
+
access_grant_id?: never;
|
|
5819
|
+
acs_entrance_id?: never;
|
|
5820
|
+
access_method_id?: never;
|
|
5549
5821
|
acs_credential_id?: never;
|
|
5550
5822
|
acs_user_id?: never;
|
|
5823
|
+
acs_encoder_id?: never;
|
|
5551
5824
|
acs_access_group_id?: never;
|
|
5552
|
-
acs_entrance_id?: never;
|
|
5553
5825
|
client_session_id?: never;
|
|
5554
5826
|
connect_webview_id?: never;
|
|
5555
5827
|
action_attempt_id?: never;
|
|
@@ -5593,7 +5865,7 @@ declare const _default: {
|
|
|
5593
5865
|
} | {
|
|
5594
5866
|
description: string;
|
|
5595
5867
|
properties: {
|
|
5596
|
-
|
|
5868
|
+
acs_credential_id: {
|
|
5597
5869
|
format: string;
|
|
5598
5870
|
type: string;
|
|
5599
5871
|
};
|
|
@@ -5635,10 +5907,12 @@ declare const _default: {
|
|
|
5635
5907
|
device_id?: never;
|
|
5636
5908
|
code?: never;
|
|
5637
5909
|
backup_access_code_id?: never;
|
|
5638
|
-
|
|
5910
|
+
access_grant_id?: never;
|
|
5911
|
+
acs_entrance_id?: never;
|
|
5912
|
+
access_method_id?: never;
|
|
5639
5913
|
acs_user_id?: never;
|
|
5640
5914
|
acs_encoder_id?: never;
|
|
5641
|
-
|
|
5915
|
+
acs_access_group_id?: never;
|
|
5642
5916
|
client_session_id?: never;
|
|
5643
5917
|
connect_webview_id?: never;
|
|
5644
5918
|
action_attempt_id?: never;
|
|
@@ -5682,12 +5956,12 @@ declare const _default: {
|
|
|
5682
5956
|
} | {
|
|
5683
5957
|
description: string;
|
|
5684
5958
|
properties: {
|
|
5685
|
-
|
|
5959
|
+
acs_system_id: {
|
|
5960
|
+
description: string;
|
|
5686
5961
|
format: string;
|
|
5687
5962
|
type: string;
|
|
5688
5963
|
};
|
|
5689
|
-
|
|
5690
|
-
description: string;
|
|
5964
|
+
acs_user_id: {
|
|
5691
5965
|
format: string;
|
|
5692
5966
|
type: string;
|
|
5693
5967
|
};
|
|
@@ -5724,8 +5998,10 @@ declare const _default: {
|
|
|
5724
5998
|
device_id?: never;
|
|
5725
5999
|
code?: never;
|
|
5726
6000
|
backup_access_code_id?: never;
|
|
6001
|
+
access_grant_id?: never;
|
|
6002
|
+
acs_entrance_id?: never;
|
|
6003
|
+
access_method_id?: never;
|
|
5727
6004
|
acs_credential_id?: never;
|
|
5728
|
-
acs_user_id?: never;
|
|
5729
6005
|
acs_encoder_id?: never;
|
|
5730
6006
|
acs_access_group_id?: never;
|
|
5731
6007
|
client_session_id?: never;
|
|
@@ -5771,7 +6047,17 @@ declare const _default: {
|
|
|
5771
6047
|
} | {
|
|
5772
6048
|
description: string;
|
|
5773
6049
|
properties: {
|
|
5774
|
-
|
|
6050
|
+
acs_encoder_id: {
|
|
6051
|
+
description: string;
|
|
6052
|
+
format: string;
|
|
6053
|
+
type: string;
|
|
6054
|
+
};
|
|
6055
|
+
acs_system_id: {
|
|
6056
|
+
description: string;
|
|
6057
|
+
format: string;
|
|
6058
|
+
type: string;
|
|
6059
|
+
};
|
|
6060
|
+
connected_account_id: {
|
|
5775
6061
|
description: string;
|
|
5776
6062
|
format: string;
|
|
5777
6063
|
type: string;
|
|
@@ -5801,16 +6087,16 @@ declare const _default: {
|
|
|
5801
6087
|
type: string;
|
|
5802
6088
|
};
|
|
5803
6089
|
access_code_id?: never;
|
|
5804
|
-
connected_account_id?: never;
|
|
5805
6090
|
device_id?: never;
|
|
5806
6091
|
code?: never;
|
|
5807
6092
|
backup_access_code_id?: never;
|
|
5808
|
-
|
|
6093
|
+
access_grant_id?: never;
|
|
6094
|
+
acs_entrance_id?: never;
|
|
6095
|
+
access_method_id?: never;
|
|
5809
6096
|
acs_credential_id?: never;
|
|
5810
6097
|
acs_user_id?: never;
|
|
5811
|
-
acs_encoder_id?: never;
|
|
5812
6098
|
acs_access_group_id?: never;
|
|
5813
|
-
|
|
6099
|
+
client_session_id?: never;
|
|
5814
6100
|
connect_webview_id?: never;
|
|
5815
6101
|
action_attempt_id?: never;
|
|
5816
6102
|
action_type?: never;
|
|
@@ -5853,7 +6139,11 @@ declare const _default: {
|
|
|
5853
6139
|
} | {
|
|
5854
6140
|
description: string;
|
|
5855
6141
|
properties: {
|
|
5856
|
-
|
|
6142
|
+
acs_access_group_id: {
|
|
6143
|
+
format: string;
|
|
6144
|
+
type: string;
|
|
6145
|
+
};
|
|
6146
|
+
acs_system_id: {
|
|
5857
6147
|
description: string;
|
|
5858
6148
|
format: string;
|
|
5859
6149
|
type: string;
|
|
@@ -5891,13 +6181,14 @@ declare const _default: {
|
|
|
5891
6181
|
device_id?: never;
|
|
5892
6182
|
code?: never;
|
|
5893
6183
|
backup_access_code_id?: never;
|
|
5894
|
-
|
|
6184
|
+
access_grant_id?: never;
|
|
6185
|
+
acs_entrance_id?: never;
|
|
6186
|
+
access_method_id?: never;
|
|
5895
6187
|
acs_credential_id?: never;
|
|
5896
6188
|
acs_user_id?: never;
|
|
5897
6189
|
acs_encoder_id?: never;
|
|
5898
|
-
acs_access_group_id?: never;
|
|
5899
|
-
acs_entrance_id?: never;
|
|
5900
6190
|
client_session_id?: never;
|
|
6191
|
+
connect_webview_id?: never;
|
|
5901
6192
|
action_attempt_id?: never;
|
|
5902
6193
|
action_type?: never;
|
|
5903
6194
|
status?: never;
|
|
@@ -5937,10 +6228,14 @@ declare const _default: {
|
|
|
5937
6228
|
deprecated?: never;
|
|
5938
6229
|
'x-deprecated'?: never;
|
|
5939
6230
|
} | {
|
|
5940
|
-
deprecated: boolean;
|
|
5941
6231
|
description: string;
|
|
5942
6232
|
properties: {
|
|
5943
|
-
|
|
6233
|
+
acs_entrance_id: {
|
|
6234
|
+
format: string;
|
|
6235
|
+
type: string;
|
|
6236
|
+
description?: never;
|
|
6237
|
+
};
|
|
6238
|
+
acs_system_id: {
|
|
5944
6239
|
description: string;
|
|
5945
6240
|
format: string;
|
|
5946
6241
|
type: string;
|
|
@@ -5978,13 +6273,14 @@ declare const _default: {
|
|
|
5978
6273
|
device_id?: never;
|
|
5979
6274
|
code?: never;
|
|
5980
6275
|
backup_access_code_id?: never;
|
|
5981
|
-
|
|
6276
|
+
access_grant_id?: never;
|
|
6277
|
+
access_method_id?: never;
|
|
5982
6278
|
acs_credential_id?: never;
|
|
5983
6279
|
acs_user_id?: never;
|
|
5984
6280
|
acs_encoder_id?: never;
|
|
5985
6281
|
acs_access_group_id?: never;
|
|
5986
|
-
acs_entrance_id?: never;
|
|
5987
6282
|
client_session_id?: never;
|
|
6283
|
+
connect_webview_id?: never;
|
|
5988
6284
|
action_attempt_id?: never;
|
|
5989
6285
|
action_type?: never;
|
|
5990
6286
|
status?: never;
|
|
@@ -6020,12 +6316,13 @@ declare const _default: {
|
|
|
6020
6316
|
};
|
|
6021
6317
|
required: string[];
|
|
6022
6318
|
type: string;
|
|
6023
|
-
'x-deprecated': string;
|
|
6024
6319
|
'x-route-path': string;
|
|
6320
|
+
deprecated?: never;
|
|
6321
|
+
'x-deprecated'?: never;
|
|
6025
6322
|
} | {
|
|
6026
6323
|
description: string;
|
|
6027
6324
|
properties: {
|
|
6028
|
-
|
|
6325
|
+
client_session_id: {
|
|
6029
6326
|
description: string;
|
|
6030
6327
|
format: string;
|
|
6031
6328
|
type: string;
|
|
@@ -6055,16 +6352,18 @@ declare const _default: {
|
|
|
6055
6352
|
type: string;
|
|
6056
6353
|
};
|
|
6057
6354
|
access_code_id?: never;
|
|
6355
|
+
connected_account_id?: never;
|
|
6058
6356
|
device_id?: never;
|
|
6059
6357
|
code?: never;
|
|
6060
6358
|
backup_access_code_id?: never;
|
|
6359
|
+
access_grant_id?: never;
|
|
6360
|
+
acs_entrance_id?: never;
|
|
6361
|
+
access_method_id?: never;
|
|
6061
6362
|
acs_system_id?: never;
|
|
6062
6363
|
acs_credential_id?: never;
|
|
6063
6364
|
acs_user_id?: never;
|
|
6064
6365
|
acs_encoder_id?: never;
|
|
6065
6366
|
acs_access_group_id?: never;
|
|
6066
|
-
acs_entrance_id?: never;
|
|
6067
|
-
client_session_id?: never;
|
|
6068
6367
|
connect_webview_id?: never;
|
|
6069
6368
|
action_attempt_id?: never;
|
|
6070
6369
|
action_type?: never;
|
|
@@ -6107,13 +6406,14 @@ declare const _default: {
|
|
|
6107
6406
|
} | {
|
|
6108
6407
|
description: string;
|
|
6109
6408
|
properties: {
|
|
6110
|
-
|
|
6409
|
+
connect_webview_id: {
|
|
6111
6410
|
description: string;
|
|
6112
6411
|
format: string;
|
|
6113
6412
|
type: string;
|
|
6114
6413
|
};
|
|
6115
|
-
|
|
6414
|
+
connected_account_id: {
|
|
6116
6415
|
description: string;
|
|
6416
|
+
format: string;
|
|
6117
6417
|
type: string;
|
|
6118
6418
|
};
|
|
6119
6419
|
created_at: {
|
|
@@ -6135,28 +6435,27 @@ declare const _default: {
|
|
|
6135
6435
|
format: string;
|
|
6136
6436
|
type: string;
|
|
6137
6437
|
};
|
|
6138
|
-
status: {
|
|
6139
|
-
description: string;
|
|
6140
|
-
type: string;
|
|
6141
|
-
};
|
|
6142
6438
|
workspace_id: {
|
|
6143
6439
|
description: string;
|
|
6144
6440
|
format: string;
|
|
6145
6441
|
type: string;
|
|
6146
6442
|
};
|
|
6147
6443
|
access_code_id?: never;
|
|
6148
|
-
connected_account_id?: never;
|
|
6149
6444
|
device_id?: never;
|
|
6150
6445
|
code?: never;
|
|
6151
6446
|
backup_access_code_id?: never;
|
|
6447
|
+
access_grant_id?: never;
|
|
6448
|
+
acs_entrance_id?: never;
|
|
6449
|
+
access_method_id?: never;
|
|
6152
6450
|
acs_system_id?: never;
|
|
6153
6451
|
acs_credential_id?: never;
|
|
6154
6452
|
acs_user_id?: never;
|
|
6155
6453
|
acs_encoder_id?: never;
|
|
6156
6454
|
acs_access_group_id?: never;
|
|
6157
|
-
acs_entrance_id?: never;
|
|
6158
6455
|
client_session_id?: never;
|
|
6159
|
-
|
|
6456
|
+
action_attempt_id?: never;
|
|
6457
|
+
action_type?: never;
|
|
6458
|
+
status?: never;
|
|
6160
6459
|
error_code?: never;
|
|
6161
6460
|
battery_level?: never;
|
|
6162
6461
|
battery_status?: never;
|
|
@@ -6193,6 +6492,7 @@ declare const _default: {
|
|
|
6193
6492
|
deprecated?: never;
|
|
6194
6493
|
'x-deprecated'?: never;
|
|
6195
6494
|
} | {
|
|
6495
|
+
deprecated: boolean;
|
|
6196
6496
|
description: string;
|
|
6197
6497
|
properties: {
|
|
6198
6498
|
connect_webview_id: {
|
|
@@ -6200,6 +6500,11 @@ declare const _default: {
|
|
|
6200
6500
|
format: string;
|
|
6201
6501
|
type: string;
|
|
6202
6502
|
};
|
|
6503
|
+
connected_account_id: {
|
|
6504
|
+
description: string;
|
|
6505
|
+
format: string;
|
|
6506
|
+
type: string;
|
|
6507
|
+
};
|
|
6203
6508
|
created_at: {
|
|
6204
6509
|
description: string;
|
|
6205
6510
|
format: string;
|
|
@@ -6225,16 +6530,17 @@ declare const _default: {
|
|
|
6225
6530
|
type: string;
|
|
6226
6531
|
};
|
|
6227
6532
|
access_code_id?: never;
|
|
6228
|
-
connected_account_id?: never;
|
|
6229
6533
|
device_id?: never;
|
|
6230
6534
|
code?: never;
|
|
6231
6535
|
backup_access_code_id?: never;
|
|
6536
|
+
access_grant_id?: never;
|
|
6537
|
+
acs_entrance_id?: never;
|
|
6538
|
+
access_method_id?: never;
|
|
6232
6539
|
acs_system_id?: never;
|
|
6233
6540
|
acs_credential_id?: never;
|
|
6234
6541
|
acs_user_id?: never;
|
|
6235
6542
|
acs_encoder_id?: never;
|
|
6236
6543
|
acs_access_group_id?: never;
|
|
6237
|
-
acs_entrance_id?: never;
|
|
6238
6544
|
client_session_id?: never;
|
|
6239
6545
|
action_attempt_id?: never;
|
|
6240
6546
|
action_type?: never;
|
|
@@ -6271,9 +6577,8 @@ declare const _default: {
|
|
|
6271
6577
|
};
|
|
6272
6578
|
required: string[];
|
|
6273
6579
|
type: string;
|
|
6580
|
+
'x-deprecated': string;
|
|
6274
6581
|
'x-route-path': string;
|
|
6275
|
-
deprecated?: never;
|
|
6276
|
-
'x-deprecated'?: never;
|
|
6277
6582
|
} | {
|
|
6278
6583
|
description: string;
|
|
6279
6584
|
properties: {
|
|
@@ -6287,11 +6592,6 @@ declare const _default: {
|
|
|
6287
6592
|
format: string;
|
|
6288
6593
|
type: string;
|
|
6289
6594
|
};
|
|
6290
|
-
device_id: {
|
|
6291
|
-
description: string;
|
|
6292
|
-
format: string;
|
|
6293
|
-
type: string;
|
|
6294
|
-
};
|
|
6295
6595
|
event_id: {
|
|
6296
6596
|
description: string;
|
|
6297
6597
|
format: string;
|
|
@@ -6312,14 +6612,17 @@ declare const _default: {
|
|
|
6312
6612
|
type: string;
|
|
6313
6613
|
};
|
|
6314
6614
|
access_code_id?: never;
|
|
6615
|
+
device_id?: never;
|
|
6315
6616
|
code?: never;
|
|
6316
6617
|
backup_access_code_id?: never;
|
|
6618
|
+
access_grant_id?: never;
|
|
6619
|
+
acs_entrance_id?: never;
|
|
6620
|
+
access_method_id?: never;
|
|
6317
6621
|
acs_system_id?: never;
|
|
6318
6622
|
acs_credential_id?: never;
|
|
6319
6623
|
acs_user_id?: never;
|
|
6320
6624
|
acs_encoder_id?: never;
|
|
6321
6625
|
acs_access_group_id?: never;
|
|
6322
|
-
acs_entrance_id?: never;
|
|
6323
6626
|
client_session_id?: never;
|
|
6324
6627
|
connect_webview_id?: never;
|
|
6325
6628
|
action_attempt_id?: never;
|
|
@@ -6363,26 +6666,20 @@ declare const _default: {
|
|
|
6363
6666
|
} | {
|
|
6364
6667
|
description: string;
|
|
6365
6668
|
properties: {
|
|
6366
|
-
|
|
6669
|
+
action_attempt_id: {
|
|
6367
6670
|
description: string;
|
|
6368
6671
|
format: string;
|
|
6369
6672
|
type: string;
|
|
6370
6673
|
};
|
|
6371
|
-
|
|
6674
|
+
action_type: {
|
|
6372
6675
|
description: string;
|
|
6373
|
-
format: string;
|
|
6374
6676
|
type: string;
|
|
6375
6677
|
};
|
|
6376
|
-
|
|
6678
|
+
created_at: {
|
|
6377
6679
|
description: string;
|
|
6378
6680
|
format: string;
|
|
6379
6681
|
type: string;
|
|
6380
6682
|
};
|
|
6381
|
-
error_code: {
|
|
6382
|
-
description: string;
|
|
6383
|
-
enum: string[];
|
|
6384
|
-
type: string;
|
|
6385
|
-
};
|
|
6386
6683
|
event_id: {
|
|
6387
6684
|
description: string;
|
|
6388
6685
|
format: string;
|
|
@@ -6397,25 +6694,31 @@ declare const _default: {
|
|
|
6397
6694
|
format: string;
|
|
6398
6695
|
type: string;
|
|
6399
6696
|
};
|
|
6697
|
+
status: {
|
|
6698
|
+
description: string;
|
|
6699
|
+
type: string;
|
|
6700
|
+
};
|
|
6400
6701
|
workspace_id: {
|
|
6401
6702
|
description: string;
|
|
6402
6703
|
format: string;
|
|
6403
6704
|
type: string;
|
|
6404
6705
|
};
|
|
6405
6706
|
access_code_id?: never;
|
|
6707
|
+
connected_account_id?: never;
|
|
6708
|
+
device_id?: never;
|
|
6406
6709
|
code?: never;
|
|
6407
6710
|
backup_access_code_id?: never;
|
|
6711
|
+
access_grant_id?: never;
|
|
6712
|
+
acs_entrance_id?: never;
|
|
6713
|
+
access_method_id?: never;
|
|
6408
6714
|
acs_system_id?: never;
|
|
6409
6715
|
acs_credential_id?: never;
|
|
6410
6716
|
acs_user_id?: never;
|
|
6411
6717
|
acs_encoder_id?: never;
|
|
6412
6718
|
acs_access_group_id?: never;
|
|
6413
|
-
acs_entrance_id?: never;
|
|
6414
6719
|
client_session_id?: never;
|
|
6415
6720
|
connect_webview_id?: never;
|
|
6416
|
-
|
|
6417
|
-
action_type?: never;
|
|
6418
|
-
status?: never;
|
|
6721
|
+
error_code?: never;
|
|
6419
6722
|
battery_level?: never;
|
|
6420
6723
|
battery_status?: never;
|
|
6421
6724
|
minut_metadata?: never;
|
|
@@ -6453,14 +6756,7 @@ declare const _default: {
|
|
|
6453
6756
|
} | {
|
|
6454
6757
|
description: string;
|
|
6455
6758
|
properties: {
|
|
6456
|
-
|
|
6457
|
-
description: string;
|
|
6458
|
-
format: string;
|
|
6459
|
-
maximum: number;
|
|
6460
|
-
minimum: number;
|
|
6461
|
-
type: string;
|
|
6462
|
-
};
|
|
6463
|
-
connected_account_id: {
|
|
6759
|
+
connect_webview_id: {
|
|
6464
6760
|
description: string;
|
|
6465
6761
|
format: string;
|
|
6466
6762
|
type: string;
|
|
@@ -6470,11 +6766,6 @@ declare const _default: {
|
|
|
6470
6766
|
format: string;
|
|
6471
6767
|
type: string;
|
|
6472
6768
|
};
|
|
6473
|
-
device_id: {
|
|
6474
|
-
description: string;
|
|
6475
|
-
format: string;
|
|
6476
|
-
type: string;
|
|
6477
|
-
};
|
|
6478
6769
|
event_id: {
|
|
6479
6770
|
description: string;
|
|
6480
6771
|
format: string;
|
|
@@ -6495,20 +6786,24 @@ declare const _default: {
|
|
|
6495
6786
|
type: string;
|
|
6496
6787
|
};
|
|
6497
6788
|
access_code_id?: never;
|
|
6789
|
+
connected_account_id?: never;
|
|
6790
|
+
device_id?: never;
|
|
6498
6791
|
code?: never;
|
|
6499
6792
|
backup_access_code_id?: never;
|
|
6793
|
+
access_grant_id?: never;
|
|
6794
|
+
acs_entrance_id?: never;
|
|
6795
|
+
access_method_id?: never;
|
|
6500
6796
|
acs_system_id?: never;
|
|
6501
6797
|
acs_credential_id?: never;
|
|
6502
6798
|
acs_user_id?: never;
|
|
6503
6799
|
acs_encoder_id?: never;
|
|
6504
6800
|
acs_access_group_id?: never;
|
|
6505
|
-
acs_entrance_id?: never;
|
|
6506
6801
|
client_session_id?: never;
|
|
6507
|
-
connect_webview_id?: never;
|
|
6508
6802
|
action_attempt_id?: never;
|
|
6509
6803
|
action_type?: never;
|
|
6510
6804
|
status?: never;
|
|
6511
6805
|
error_code?: never;
|
|
6806
|
+
battery_level?: never;
|
|
6512
6807
|
battery_status?: never;
|
|
6513
6808
|
minut_metadata?: never;
|
|
6514
6809
|
noise_level_decibels?: never;
|
|
@@ -6545,18 +6840,6 @@ declare const _default: {
|
|
|
6545
6840
|
} | {
|
|
6546
6841
|
description: string;
|
|
6547
6842
|
properties: {
|
|
6548
|
-
battery_level: {
|
|
6549
|
-
description: string;
|
|
6550
|
-
format: string;
|
|
6551
|
-
maximum: number;
|
|
6552
|
-
minimum: number;
|
|
6553
|
-
type: string;
|
|
6554
|
-
};
|
|
6555
|
-
battery_status: {
|
|
6556
|
-
description: string;
|
|
6557
|
-
enum: string[];
|
|
6558
|
-
type: string;
|
|
6559
|
-
};
|
|
6560
6843
|
connected_account_id: {
|
|
6561
6844
|
description: string;
|
|
6562
6845
|
format: string;
|
|
@@ -6594,18 +6877,22 @@ declare const _default: {
|
|
|
6594
6877
|
access_code_id?: never;
|
|
6595
6878
|
code?: never;
|
|
6596
6879
|
backup_access_code_id?: never;
|
|
6880
|
+
access_grant_id?: never;
|
|
6881
|
+
acs_entrance_id?: never;
|
|
6882
|
+
access_method_id?: never;
|
|
6597
6883
|
acs_system_id?: never;
|
|
6598
6884
|
acs_credential_id?: never;
|
|
6599
6885
|
acs_user_id?: never;
|
|
6600
6886
|
acs_encoder_id?: never;
|
|
6601
6887
|
acs_access_group_id?: never;
|
|
6602
|
-
acs_entrance_id?: never;
|
|
6603
6888
|
client_session_id?: never;
|
|
6604
6889
|
connect_webview_id?: never;
|
|
6605
6890
|
action_attempt_id?: never;
|
|
6606
6891
|
action_type?: never;
|
|
6607
6892
|
status?: never;
|
|
6608
6893
|
error_code?: never;
|
|
6894
|
+
battery_level?: never;
|
|
6895
|
+
battery_status?: never;
|
|
6609
6896
|
minut_metadata?: never;
|
|
6610
6897
|
noise_level_decibels?: never;
|
|
6611
6898
|
noise_level_nrs?: never;
|
|
@@ -6656,42 +6943,18 @@ declare const _default: {
|
|
|
6656
6943
|
format: string;
|
|
6657
6944
|
type: string;
|
|
6658
6945
|
};
|
|
6659
|
-
|
|
6946
|
+
error_code: {
|
|
6660
6947
|
description: string;
|
|
6661
|
-
format: string;
|
|
6662
|
-
type: string;
|
|
6663
|
-
};
|
|
6664
|
-
event_type: {
|
|
6665
6948
|
enum: string[];
|
|
6666
6949
|
type: string;
|
|
6667
6950
|
};
|
|
6668
|
-
|
|
6669
|
-
additionalProperties: {};
|
|
6670
|
-
description: string;
|
|
6671
|
-
type: string;
|
|
6672
|
-
};
|
|
6673
|
-
noise_level_decibels: {
|
|
6674
|
-
description: string;
|
|
6675
|
-
format: string;
|
|
6676
|
-
type: string;
|
|
6677
|
-
};
|
|
6678
|
-
noise_level_nrs: {
|
|
6679
|
-
description: string;
|
|
6680
|
-
format: string;
|
|
6681
|
-
type: string;
|
|
6682
|
-
};
|
|
6683
|
-
noise_threshold_id: {
|
|
6951
|
+
event_id: {
|
|
6684
6952
|
description: string;
|
|
6685
6953
|
format: string;
|
|
6686
6954
|
type: string;
|
|
6687
6955
|
};
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
type: string;
|
|
6691
|
-
};
|
|
6692
|
-
noiseaware_metadata: {
|
|
6693
|
-
additionalProperties: {};
|
|
6694
|
-
description: string;
|
|
6956
|
+
event_type: {
|
|
6957
|
+
enum: string[];
|
|
6695
6958
|
type: string;
|
|
6696
6959
|
};
|
|
6697
6960
|
occurred_at: {
|
|
@@ -6707,20 +6970,27 @@ declare const _default: {
|
|
|
6707
6970
|
access_code_id?: never;
|
|
6708
6971
|
code?: never;
|
|
6709
6972
|
backup_access_code_id?: never;
|
|
6973
|
+
access_grant_id?: never;
|
|
6974
|
+
acs_entrance_id?: never;
|
|
6975
|
+
access_method_id?: never;
|
|
6710
6976
|
acs_system_id?: never;
|
|
6711
6977
|
acs_credential_id?: never;
|
|
6712
6978
|
acs_user_id?: never;
|
|
6713
6979
|
acs_encoder_id?: never;
|
|
6714
6980
|
acs_access_group_id?: never;
|
|
6715
|
-
acs_entrance_id?: never;
|
|
6716
6981
|
client_session_id?: never;
|
|
6717
6982
|
connect_webview_id?: never;
|
|
6718
6983
|
action_attempt_id?: never;
|
|
6719
6984
|
action_type?: never;
|
|
6720
6985
|
status?: never;
|
|
6721
|
-
error_code?: never;
|
|
6722
6986
|
battery_level?: never;
|
|
6723
6987
|
battery_status?: never;
|
|
6988
|
+
minut_metadata?: never;
|
|
6989
|
+
noise_level_decibels?: never;
|
|
6990
|
+
noise_level_nrs?: never;
|
|
6991
|
+
noise_threshold_id?: never;
|
|
6992
|
+
noise_threshold_name?: never;
|
|
6993
|
+
noiseaware_metadata?: never;
|
|
6724
6994
|
method?: never;
|
|
6725
6995
|
climate_preset_key?: never;
|
|
6726
6996
|
is_fallback_climate_preset?: never;
|
|
@@ -6750,14 +7020,11 @@ declare const _default: {
|
|
|
6750
7020
|
} | {
|
|
6751
7021
|
description: string;
|
|
6752
7022
|
properties: {
|
|
6753
|
-
|
|
6754
|
-
description: string;
|
|
6755
|
-
format: string;
|
|
6756
|
-
type: string;
|
|
6757
|
-
};
|
|
6758
|
-
action_attempt_id: {
|
|
7023
|
+
battery_level: {
|
|
6759
7024
|
description: string;
|
|
6760
7025
|
format: string;
|
|
7026
|
+
maximum: number;
|
|
7027
|
+
minimum: number;
|
|
6761
7028
|
type: string;
|
|
6762
7029
|
};
|
|
6763
7030
|
connected_account_id: {
|
|
@@ -6784,11 +7051,6 @@ declare const _default: {
|
|
|
6784
7051
|
enum: string[];
|
|
6785
7052
|
type: string;
|
|
6786
7053
|
};
|
|
6787
|
-
method: {
|
|
6788
|
-
description: string;
|
|
6789
|
-
enum: string[];
|
|
6790
|
-
type: string;
|
|
6791
|
-
};
|
|
6792
7054
|
occurred_at: {
|
|
6793
7055
|
description: string;
|
|
6794
7056
|
format: string;
|
|
@@ -6799,20 +7061,23 @@ declare const _default: {
|
|
|
6799
7061
|
format: string;
|
|
6800
7062
|
type: string;
|
|
6801
7063
|
};
|
|
7064
|
+
access_code_id?: never;
|
|
6802
7065
|
code?: never;
|
|
6803
7066
|
backup_access_code_id?: never;
|
|
7067
|
+
access_grant_id?: never;
|
|
7068
|
+
acs_entrance_id?: never;
|
|
7069
|
+
access_method_id?: never;
|
|
6804
7070
|
acs_system_id?: never;
|
|
6805
7071
|
acs_credential_id?: never;
|
|
6806
7072
|
acs_user_id?: never;
|
|
6807
7073
|
acs_encoder_id?: never;
|
|
6808
7074
|
acs_access_group_id?: never;
|
|
6809
|
-
acs_entrance_id?: never;
|
|
6810
7075
|
client_session_id?: never;
|
|
6811
7076
|
connect_webview_id?: never;
|
|
7077
|
+
action_attempt_id?: never;
|
|
6812
7078
|
action_type?: never;
|
|
6813
7079
|
status?: never;
|
|
6814
7080
|
error_code?: never;
|
|
6815
|
-
battery_level?: never;
|
|
6816
7081
|
battery_status?: never;
|
|
6817
7082
|
minut_metadata?: never;
|
|
6818
7083
|
noise_level_decibels?: never;
|
|
@@ -6820,6 +7085,7 @@ declare const _default: {
|
|
|
6820
7085
|
noise_threshold_id?: never;
|
|
6821
7086
|
noise_threshold_name?: never;
|
|
6822
7087
|
noiseaware_metadata?: never;
|
|
7088
|
+
method?: never;
|
|
6823
7089
|
climate_preset_key?: never;
|
|
6824
7090
|
is_fallback_climate_preset?: never;
|
|
6825
7091
|
thermostat_schedule_id?: never;
|
|
@@ -6848,8 +7114,16 @@ declare const _default: {
|
|
|
6848
7114
|
} | {
|
|
6849
7115
|
description: string;
|
|
6850
7116
|
properties: {
|
|
6851
|
-
|
|
7117
|
+
battery_level: {
|
|
7118
|
+
description: string;
|
|
7119
|
+
format: string;
|
|
7120
|
+
maximum: number;
|
|
7121
|
+
minimum: number;
|
|
7122
|
+
type: string;
|
|
7123
|
+
};
|
|
7124
|
+
battery_status: {
|
|
6852
7125
|
description: string;
|
|
7126
|
+
enum: string[];
|
|
6853
7127
|
type: string;
|
|
6854
7128
|
};
|
|
6855
7129
|
connected_account_id: {
|
|
@@ -6876,21 +7150,11 @@ declare const _default: {
|
|
|
6876
7150
|
enum: string[];
|
|
6877
7151
|
type: string;
|
|
6878
7152
|
};
|
|
6879
|
-
is_fallback_climate_preset: {
|
|
6880
|
-
description: string;
|
|
6881
|
-
type: string;
|
|
6882
|
-
};
|
|
6883
7153
|
occurred_at: {
|
|
6884
7154
|
description: string;
|
|
6885
7155
|
format: string;
|
|
6886
7156
|
type: string;
|
|
6887
7157
|
};
|
|
6888
|
-
thermostat_schedule_id: {
|
|
6889
|
-
description: string;
|
|
6890
|
-
format: string;
|
|
6891
|
-
nullable: boolean;
|
|
6892
|
-
type: string;
|
|
6893
|
-
};
|
|
6894
7158
|
workspace_id: {
|
|
6895
7159
|
description: string;
|
|
6896
7160
|
format: string;
|
|
@@ -6899,20 +7163,20 @@ declare const _default: {
|
|
|
6899
7163
|
access_code_id?: never;
|
|
6900
7164
|
code?: never;
|
|
6901
7165
|
backup_access_code_id?: never;
|
|
7166
|
+
access_grant_id?: never;
|
|
7167
|
+
acs_entrance_id?: never;
|
|
7168
|
+
access_method_id?: never;
|
|
6902
7169
|
acs_system_id?: never;
|
|
6903
7170
|
acs_credential_id?: never;
|
|
6904
7171
|
acs_user_id?: never;
|
|
6905
7172
|
acs_encoder_id?: never;
|
|
6906
7173
|
acs_access_group_id?: never;
|
|
6907
|
-
acs_entrance_id?: never;
|
|
6908
7174
|
client_session_id?: never;
|
|
6909
7175
|
connect_webview_id?: never;
|
|
6910
7176
|
action_attempt_id?: never;
|
|
6911
7177
|
action_type?: never;
|
|
6912
7178
|
status?: never;
|
|
6913
7179
|
error_code?: never;
|
|
6914
|
-
battery_level?: never;
|
|
6915
|
-
battery_status?: never;
|
|
6916
7180
|
minut_metadata?: never;
|
|
6917
7181
|
noise_level_decibels?: never;
|
|
6918
7182
|
noise_level_nrs?: never;
|
|
@@ -6920,6 +7184,9 @@ declare const _default: {
|
|
|
6920
7184
|
noise_threshold_name?: never;
|
|
6921
7185
|
noiseaware_metadata?: never;
|
|
6922
7186
|
method?: never;
|
|
7187
|
+
climate_preset_key?: never;
|
|
7188
|
+
is_fallback_climate_preset?: never;
|
|
7189
|
+
thermostat_schedule_id?: never;
|
|
6923
7190
|
cooling_set_point_celsius?: never;
|
|
6924
7191
|
cooling_set_point_fahrenheit?: never;
|
|
6925
7192
|
fan_mode_setting?: never;
|
|
@@ -6950,16 +7217,6 @@ declare const _default: {
|
|
|
6950
7217
|
format: string;
|
|
6951
7218
|
type: string;
|
|
6952
7219
|
};
|
|
6953
|
-
cooling_set_point_celsius: {
|
|
6954
|
-
description: string;
|
|
6955
|
-
format: string;
|
|
6956
|
-
type: string;
|
|
6957
|
-
};
|
|
6958
|
-
cooling_set_point_fahrenheit: {
|
|
6959
|
-
description: string;
|
|
6960
|
-
format: string;
|
|
6961
|
-
type: string;
|
|
6962
|
-
};
|
|
6963
7220
|
created_at: {
|
|
6964
7221
|
description: string;
|
|
6965
7222
|
format: string;
|
|
@@ -6979,29 +7236,33 @@ declare const _default: {
|
|
|
6979
7236
|
enum: string[];
|
|
6980
7237
|
type: string;
|
|
6981
7238
|
};
|
|
6982
|
-
|
|
7239
|
+
minut_metadata: {
|
|
7240
|
+
additionalProperties: {};
|
|
6983
7241
|
description: string;
|
|
6984
|
-
enum: string[];
|
|
6985
7242
|
type: string;
|
|
6986
7243
|
};
|
|
6987
|
-
|
|
7244
|
+
noise_level_decibels: {
|
|
6988
7245
|
description: string;
|
|
6989
7246
|
format: string;
|
|
6990
7247
|
type: string;
|
|
6991
7248
|
};
|
|
6992
|
-
|
|
7249
|
+
noise_level_nrs: {
|
|
6993
7250
|
description: string;
|
|
6994
7251
|
format: string;
|
|
6995
7252
|
type: string;
|
|
6996
7253
|
};
|
|
6997
|
-
|
|
7254
|
+
noise_threshold_id: {
|
|
6998
7255
|
description: string;
|
|
6999
|
-
|
|
7256
|
+
format: string;
|
|
7000
7257
|
type: string;
|
|
7001
7258
|
};
|
|
7002
|
-
|
|
7259
|
+
noise_threshold_name: {
|
|
7260
|
+
description: string;
|
|
7261
|
+
type: string;
|
|
7262
|
+
};
|
|
7263
|
+
noiseaware_metadata: {
|
|
7264
|
+
additionalProperties: {};
|
|
7003
7265
|
description: string;
|
|
7004
|
-
enum: string[];
|
|
7005
7266
|
type: string;
|
|
7006
7267
|
};
|
|
7007
7268
|
occurred_at: {
|
|
@@ -7017,12 +7278,14 @@ declare const _default: {
|
|
|
7017
7278
|
access_code_id?: never;
|
|
7018
7279
|
code?: never;
|
|
7019
7280
|
backup_access_code_id?: never;
|
|
7281
|
+
access_grant_id?: never;
|
|
7282
|
+
acs_entrance_id?: never;
|
|
7283
|
+
access_method_id?: never;
|
|
7020
7284
|
acs_system_id?: never;
|
|
7021
7285
|
acs_credential_id?: never;
|
|
7022
7286
|
acs_user_id?: never;
|
|
7023
7287
|
acs_encoder_id?: never;
|
|
7024
7288
|
acs_access_group_id?: never;
|
|
7025
|
-
acs_entrance_id?: never;
|
|
7026
7289
|
client_session_id?: never;
|
|
7027
7290
|
connect_webview_id?: never;
|
|
7028
7291
|
action_attempt_id?: never;
|
|
@@ -7031,15 +7294,16 @@ declare const _default: {
|
|
|
7031
7294
|
error_code?: never;
|
|
7032
7295
|
battery_level?: never;
|
|
7033
7296
|
battery_status?: never;
|
|
7034
|
-
|
|
7035
|
-
noise_level_decibels?: never;
|
|
7036
|
-
noise_level_nrs?: never;
|
|
7037
|
-
noise_threshold_id?: never;
|
|
7038
|
-
noise_threshold_name?: never;
|
|
7039
|
-
noiseaware_metadata?: never;
|
|
7297
|
+
method?: never;
|
|
7040
7298
|
climate_preset_key?: never;
|
|
7041
7299
|
is_fallback_climate_preset?: never;
|
|
7042
7300
|
thermostat_schedule_id?: never;
|
|
7301
|
+
cooling_set_point_celsius?: never;
|
|
7302
|
+
cooling_set_point_fahrenheit?: never;
|
|
7303
|
+
fan_mode_setting?: never;
|
|
7304
|
+
heating_set_point_celsius?: never;
|
|
7305
|
+
heating_set_point_fahrenheit?: never;
|
|
7306
|
+
hvac_mode_setting?: never;
|
|
7043
7307
|
lower_limit_celsius?: never;
|
|
7044
7308
|
lower_limit_fahrenheit?: never;
|
|
7045
7309
|
temperature_celsius?: never;
|
|
@@ -7059,67 +7323,48 @@ declare const _default: {
|
|
|
7059
7323
|
} | {
|
|
7060
7324
|
description: string;
|
|
7061
7325
|
properties: {
|
|
7062
|
-
|
|
7063
|
-
description: string;
|
|
7064
|
-
format: string;
|
|
7065
|
-
type: string;
|
|
7066
|
-
};
|
|
7067
|
-
created_at: {
|
|
7068
|
-
description: string;
|
|
7069
|
-
format: string;
|
|
7070
|
-
type: string;
|
|
7071
|
-
};
|
|
7072
|
-
device_id: {
|
|
7326
|
+
access_code_id: {
|
|
7073
7327
|
description: string;
|
|
7074
7328
|
format: string;
|
|
7075
7329
|
type: string;
|
|
7076
7330
|
};
|
|
7077
|
-
|
|
7331
|
+
action_attempt_id: {
|
|
7078
7332
|
description: string;
|
|
7079
7333
|
format: string;
|
|
7080
7334
|
type: string;
|
|
7081
7335
|
};
|
|
7082
|
-
|
|
7083
|
-
enum: string[];
|
|
7084
|
-
type: string;
|
|
7085
|
-
};
|
|
7086
|
-
lower_limit_celsius: {
|
|
7336
|
+
connected_account_id: {
|
|
7087
7337
|
description: string;
|
|
7088
7338
|
format: string;
|
|
7089
|
-
nullable: boolean;
|
|
7090
7339
|
type: string;
|
|
7091
7340
|
};
|
|
7092
|
-
|
|
7341
|
+
created_at: {
|
|
7093
7342
|
description: string;
|
|
7094
7343
|
format: string;
|
|
7095
|
-
nullable: boolean;
|
|
7096
7344
|
type: string;
|
|
7097
7345
|
};
|
|
7098
|
-
|
|
7346
|
+
device_id: {
|
|
7099
7347
|
description: string;
|
|
7100
7348
|
format: string;
|
|
7101
7349
|
type: string;
|
|
7102
7350
|
};
|
|
7103
|
-
|
|
7351
|
+
event_id: {
|
|
7104
7352
|
description: string;
|
|
7105
7353
|
format: string;
|
|
7106
7354
|
type: string;
|
|
7107
7355
|
};
|
|
7108
|
-
|
|
7109
|
-
|
|
7110
|
-
format: string;
|
|
7356
|
+
event_type: {
|
|
7357
|
+
enum: string[];
|
|
7111
7358
|
type: string;
|
|
7112
7359
|
};
|
|
7113
|
-
|
|
7360
|
+
method: {
|
|
7114
7361
|
description: string;
|
|
7115
|
-
|
|
7116
|
-
nullable: boolean;
|
|
7362
|
+
enum: string[];
|
|
7117
7363
|
type: string;
|
|
7118
7364
|
};
|
|
7119
|
-
|
|
7365
|
+
occurred_at: {
|
|
7120
7366
|
description: string;
|
|
7121
7367
|
format: string;
|
|
7122
|
-
nullable: boolean;
|
|
7123
7368
|
type: string;
|
|
7124
7369
|
};
|
|
7125
7370
|
workspace_id: {
|
|
@@ -7127,18 +7372,18 @@ declare const _default: {
|
|
|
7127
7372
|
format: string;
|
|
7128
7373
|
type: string;
|
|
7129
7374
|
};
|
|
7130
|
-
access_code_id?: never;
|
|
7131
7375
|
code?: never;
|
|
7132
7376
|
backup_access_code_id?: never;
|
|
7377
|
+
access_grant_id?: never;
|
|
7378
|
+
acs_entrance_id?: never;
|
|
7379
|
+
access_method_id?: never;
|
|
7133
7380
|
acs_system_id?: never;
|
|
7134
7381
|
acs_credential_id?: never;
|
|
7135
7382
|
acs_user_id?: never;
|
|
7136
7383
|
acs_encoder_id?: never;
|
|
7137
7384
|
acs_access_group_id?: never;
|
|
7138
|
-
acs_entrance_id?: never;
|
|
7139
7385
|
client_session_id?: never;
|
|
7140
7386
|
connect_webview_id?: never;
|
|
7141
|
-
action_attempt_id?: never;
|
|
7142
7387
|
action_type?: never;
|
|
7143
7388
|
status?: never;
|
|
7144
7389
|
error_code?: never;
|
|
@@ -7150,7 +7395,6 @@ declare const _default: {
|
|
|
7150
7395
|
noise_threshold_id?: never;
|
|
7151
7396
|
noise_threshold_name?: never;
|
|
7152
7397
|
noiseaware_metadata?: never;
|
|
7153
|
-
method?: never;
|
|
7154
7398
|
climate_preset_key?: never;
|
|
7155
7399
|
is_fallback_climate_preset?: never;
|
|
7156
7400
|
thermostat_schedule_id?: never;
|
|
@@ -7160,6 +7404,12 @@ declare const _default: {
|
|
|
7160
7404
|
heating_set_point_celsius?: never;
|
|
7161
7405
|
heating_set_point_fahrenheit?: never;
|
|
7162
7406
|
hvac_mode_setting?: never;
|
|
7407
|
+
lower_limit_celsius?: never;
|
|
7408
|
+
lower_limit_fahrenheit?: never;
|
|
7409
|
+
temperature_celsius?: never;
|
|
7410
|
+
temperature_fahrenheit?: never;
|
|
7411
|
+
upper_limit_celsius?: never;
|
|
7412
|
+
upper_limit_fahrenheit?: never;
|
|
7163
7413
|
desired_temperature_celsius?: never;
|
|
7164
7414
|
desired_temperature_fahrenheit?: never;
|
|
7165
7415
|
device_name?: never;
|
|
@@ -7173,27 +7423,126 @@ declare const _default: {
|
|
|
7173
7423
|
} | {
|
|
7174
7424
|
description: string;
|
|
7175
7425
|
properties: {
|
|
7176
|
-
|
|
7426
|
+
climate_preset_key: {
|
|
7177
7427
|
description: string;
|
|
7178
|
-
format: string;
|
|
7179
7428
|
type: string;
|
|
7180
7429
|
};
|
|
7181
|
-
|
|
7430
|
+
connected_account_id: {
|
|
7182
7431
|
description: string;
|
|
7183
7432
|
format: string;
|
|
7184
7433
|
type: string;
|
|
7185
7434
|
};
|
|
7186
|
-
|
|
7435
|
+
created_at: {
|
|
7187
7436
|
description: string;
|
|
7188
7437
|
format: string;
|
|
7189
7438
|
type: string;
|
|
7190
7439
|
};
|
|
7191
|
-
|
|
7440
|
+
device_id: {
|
|
7192
7441
|
description: string;
|
|
7193
7442
|
format: string;
|
|
7194
7443
|
type: string;
|
|
7195
7444
|
};
|
|
7196
|
-
|
|
7445
|
+
event_id: {
|
|
7446
|
+
description: string;
|
|
7447
|
+
format: string;
|
|
7448
|
+
type: string;
|
|
7449
|
+
};
|
|
7450
|
+
event_type: {
|
|
7451
|
+
enum: string[];
|
|
7452
|
+
type: string;
|
|
7453
|
+
};
|
|
7454
|
+
is_fallback_climate_preset: {
|
|
7455
|
+
description: string;
|
|
7456
|
+
type: string;
|
|
7457
|
+
};
|
|
7458
|
+
occurred_at: {
|
|
7459
|
+
description: string;
|
|
7460
|
+
format: string;
|
|
7461
|
+
type: string;
|
|
7462
|
+
};
|
|
7463
|
+
thermostat_schedule_id: {
|
|
7464
|
+
description: string;
|
|
7465
|
+
format: string;
|
|
7466
|
+
nullable: boolean;
|
|
7467
|
+
type: string;
|
|
7468
|
+
};
|
|
7469
|
+
workspace_id: {
|
|
7470
|
+
description: string;
|
|
7471
|
+
format: string;
|
|
7472
|
+
type: string;
|
|
7473
|
+
};
|
|
7474
|
+
access_code_id?: never;
|
|
7475
|
+
code?: never;
|
|
7476
|
+
backup_access_code_id?: never;
|
|
7477
|
+
access_grant_id?: never;
|
|
7478
|
+
acs_entrance_id?: never;
|
|
7479
|
+
access_method_id?: never;
|
|
7480
|
+
acs_system_id?: never;
|
|
7481
|
+
acs_credential_id?: never;
|
|
7482
|
+
acs_user_id?: never;
|
|
7483
|
+
acs_encoder_id?: never;
|
|
7484
|
+
acs_access_group_id?: never;
|
|
7485
|
+
client_session_id?: never;
|
|
7486
|
+
connect_webview_id?: never;
|
|
7487
|
+
action_attempt_id?: never;
|
|
7488
|
+
action_type?: never;
|
|
7489
|
+
status?: never;
|
|
7490
|
+
error_code?: never;
|
|
7491
|
+
battery_level?: never;
|
|
7492
|
+
battery_status?: never;
|
|
7493
|
+
minut_metadata?: never;
|
|
7494
|
+
noise_level_decibels?: never;
|
|
7495
|
+
noise_level_nrs?: never;
|
|
7496
|
+
noise_threshold_id?: never;
|
|
7497
|
+
noise_threshold_name?: never;
|
|
7498
|
+
noiseaware_metadata?: never;
|
|
7499
|
+
method?: never;
|
|
7500
|
+
cooling_set_point_celsius?: never;
|
|
7501
|
+
cooling_set_point_fahrenheit?: never;
|
|
7502
|
+
fan_mode_setting?: never;
|
|
7503
|
+
heating_set_point_celsius?: never;
|
|
7504
|
+
heating_set_point_fahrenheit?: never;
|
|
7505
|
+
hvac_mode_setting?: never;
|
|
7506
|
+
lower_limit_celsius?: never;
|
|
7507
|
+
lower_limit_fahrenheit?: never;
|
|
7508
|
+
temperature_celsius?: never;
|
|
7509
|
+
temperature_fahrenheit?: never;
|
|
7510
|
+
upper_limit_celsius?: never;
|
|
7511
|
+
upper_limit_fahrenheit?: never;
|
|
7512
|
+
desired_temperature_celsius?: never;
|
|
7513
|
+
desired_temperature_fahrenheit?: never;
|
|
7514
|
+
device_name?: never;
|
|
7515
|
+
enrollment_automation_id?: never;
|
|
7516
|
+
};
|
|
7517
|
+
required: string[];
|
|
7518
|
+
type: string;
|
|
7519
|
+
'x-route-path': string;
|
|
7520
|
+
deprecated?: never;
|
|
7521
|
+
'x-deprecated'?: never;
|
|
7522
|
+
} | {
|
|
7523
|
+
description: string;
|
|
7524
|
+
properties: {
|
|
7525
|
+
connected_account_id: {
|
|
7526
|
+
description: string;
|
|
7527
|
+
format: string;
|
|
7528
|
+
type: string;
|
|
7529
|
+
};
|
|
7530
|
+
cooling_set_point_celsius: {
|
|
7531
|
+
description: string;
|
|
7532
|
+
format: string;
|
|
7533
|
+
type: string;
|
|
7534
|
+
};
|
|
7535
|
+
cooling_set_point_fahrenheit: {
|
|
7536
|
+
description: string;
|
|
7537
|
+
format: string;
|
|
7538
|
+
type: string;
|
|
7539
|
+
};
|
|
7540
|
+
created_at: {
|
|
7541
|
+
description: string;
|
|
7542
|
+
format: string;
|
|
7543
|
+
type: string;
|
|
7544
|
+
};
|
|
7545
|
+
device_id: {
|
|
7197
7546
|
description: string;
|
|
7198
7547
|
format: string;
|
|
7199
7548
|
type: string;
|
|
@@ -7207,17 +7556,32 @@ declare const _default: {
|
|
|
7207
7556
|
enum: string[];
|
|
7208
7557
|
type: string;
|
|
7209
7558
|
};
|
|
7210
|
-
|
|
7559
|
+
fan_mode_setting: {
|
|
7560
|
+
description: string;
|
|
7561
|
+
enum: string[];
|
|
7562
|
+
type: string;
|
|
7563
|
+
};
|
|
7564
|
+
heating_set_point_celsius: {
|
|
7211
7565
|
description: string;
|
|
7212
7566
|
format: string;
|
|
7213
7567
|
type: string;
|
|
7214
7568
|
};
|
|
7215
|
-
|
|
7569
|
+
heating_set_point_fahrenheit: {
|
|
7216
7570
|
description: string;
|
|
7217
7571
|
format: string;
|
|
7218
7572
|
type: string;
|
|
7219
7573
|
};
|
|
7220
|
-
|
|
7574
|
+
hvac_mode_setting: {
|
|
7575
|
+
description: string;
|
|
7576
|
+
enum: string[];
|
|
7577
|
+
type: string;
|
|
7578
|
+
};
|
|
7579
|
+
method: {
|
|
7580
|
+
description: string;
|
|
7581
|
+
enum: string[];
|
|
7582
|
+
type: string;
|
|
7583
|
+
};
|
|
7584
|
+
occurred_at: {
|
|
7221
7585
|
description: string;
|
|
7222
7586
|
format: string;
|
|
7223
7587
|
type: string;
|
|
@@ -7230,12 +7594,14 @@ declare const _default: {
|
|
|
7230
7594
|
access_code_id?: never;
|
|
7231
7595
|
code?: never;
|
|
7232
7596
|
backup_access_code_id?: never;
|
|
7597
|
+
access_grant_id?: never;
|
|
7598
|
+
acs_entrance_id?: never;
|
|
7599
|
+
access_method_id?: never;
|
|
7233
7600
|
acs_system_id?: never;
|
|
7234
7601
|
acs_credential_id?: never;
|
|
7235
7602
|
acs_user_id?: never;
|
|
7236
7603
|
acs_encoder_id?: never;
|
|
7237
7604
|
acs_access_group_id?: never;
|
|
7238
|
-
acs_entrance_id?: never;
|
|
7239
7605
|
client_session_id?: never;
|
|
7240
7606
|
connect_webview_id?: never;
|
|
7241
7607
|
action_attempt_id?: never;
|
|
@@ -7250,20 +7616,17 @@ declare const _default: {
|
|
|
7250
7616
|
noise_threshold_id?: never;
|
|
7251
7617
|
noise_threshold_name?: never;
|
|
7252
7618
|
noiseaware_metadata?: never;
|
|
7253
|
-
method?: never;
|
|
7254
7619
|
climate_preset_key?: never;
|
|
7255
7620
|
is_fallback_climate_preset?: never;
|
|
7256
7621
|
thermostat_schedule_id?: never;
|
|
7257
|
-
cooling_set_point_celsius?: never;
|
|
7258
|
-
cooling_set_point_fahrenheit?: never;
|
|
7259
|
-
fan_mode_setting?: never;
|
|
7260
|
-
heating_set_point_celsius?: never;
|
|
7261
|
-
heating_set_point_fahrenheit?: never;
|
|
7262
|
-
hvac_mode_setting?: never;
|
|
7263
7622
|
lower_limit_celsius?: never;
|
|
7264
7623
|
lower_limit_fahrenheit?: never;
|
|
7624
|
+
temperature_celsius?: never;
|
|
7625
|
+
temperature_fahrenheit?: never;
|
|
7265
7626
|
upper_limit_celsius?: never;
|
|
7266
7627
|
upper_limit_fahrenheit?: never;
|
|
7628
|
+
desired_temperature_celsius?: never;
|
|
7629
|
+
desired_temperature_fahrenheit?: never;
|
|
7267
7630
|
device_name?: never;
|
|
7268
7631
|
enrollment_automation_id?: never;
|
|
7269
7632
|
};
|
|
@@ -7299,6 +7662,18 @@ declare const _default: {
|
|
|
7299
7662
|
enum: string[];
|
|
7300
7663
|
type: string;
|
|
7301
7664
|
};
|
|
7665
|
+
lower_limit_celsius: {
|
|
7666
|
+
description: string;
|
|
7667
|
+
format: string;
|
|
7668
|
+
nullable: boolean;
|
|
7669
|
+
type: string;
|
|
7670
|
+
};
|
|
7671
|
+
lower_limit_fahrenheit: {
|
|
7672
|
+
description: string;
|
|
7673
|
+
format: string;
|
|
7674
|
+
nullable: boolean;
|
|
7675
|
+
type: string;
|
|
7676
|
+
};
|
|
7302
7677
|
occurred_at: {
|
|
7303
7678
|
description: string;
|
|
7304
7679
|
format: string;
|
|
@@ -7314,6 +7689,18 @@ declare const _default: {
|
|
|
7314
7689
|
format: string;
|
|
7315
7690
|
type: string;
|
|
7316
7691
|
};
|
|
7692
|
+
upper_limit_celsius: {
|
|
7693
|
+
description: string;
|
|
7694
|
+
format: string;
|
|
7695
|
+
nullable: boolean;
|
|
7696
|
+
type: string;
|
|
7697
|
+
};
|
|
7698
|
+
upper_limit_fahrenheit: {
|
|
7699
|
+
description: string;
|
|
7700
|
+
format: string;
|
|
7701
|
+
nullable: boolean;
|
|
7702
|
+
type: string;
|
|
7703
|
+
};
|
|
7317
7704
|
workspace_id: {
|
|
7318
7705
|
description: string;
|
|
7319
7706
|
format: string;
|
|
@@ -7322,12 +7709,14 @@ declare const _default: {
|
|
|
7322
7709
|
access_code_id?: never;
|
|
7323
7710
|
code?: never;
|
|
7324
7711
|
backup_access_code_id?: never;
|
|
7712
|
+
access_grant_id?: never;
|
|
7713
|
+
acs_entrance_id?: never;
|
|
7714
|
+
access_method_id?: never;
|
|
7325
7715
|
acs_system_id?: never;
|
|
7326
7716
|
acs_credential_id?: never;
|
|
7327
7717
|
acs_user_id?: never;
|
|
7328
7718
|
acs_encoder_id?: never;
|
|
7329
7719
|
acs_access_group_id?: never;
|
|
7330
|
-
acs_entrance_id?: never;
|
|
7331
7720
|
client_session_id?: never;
|
|
7332
7721
|
connect_webview_id?: never;
|
|
7333
7722
|
action_attempt_id?: never;
|
|
@@ -7352,10 +7741,6 @@ declare const _default: {
|
|
|
7352
7741
|
heating_set_point_celsius?: never;
|
|
7353
7742
|
heating_set_point_fahrenheit?: never;
|
|
7354
7743
|
hvac_mode_setting?: never;
|
|
7355
|
-
lower_limit_celsius?: never;
|
|
7356
|
-
lower_limit_fahrenheit?: never;
|
|
7357
|
-
upper_limit_celsius?: never;
|
|
7358
|
-
upper_limit_fahrenheit?: never;
|
|
7359
7744
|
desired_temperature_celsius?: never;
|
|
7360
7745
|
desired_temperature_fahrenheit?: never;
|
|
7361
7746
|
device_name?: never;
|
|
@@ -7379,13 +7764,19 @@ declare const _default: {
|
|
|
7379
7764
|
format: string;
|
|
7380
7765
|
type: string;
|
|
7381
7766
|
};
|
|
7382
|
-
|
|
7767
|
+
desired_temperature_celsius: {
|
|
7383
7768
|
description: string;
|
|
7384
7769
|
format: string;
|
|
7385
7770
|
type: string;
|
|
7386
7771
|
};
|
|
7387
|
-
|
|
7772
|
+
desired_temperature_fahrenheit: {
|
|
7773
|
+
description: string;
|
|
7774
|
+
format: string;
|
|
7775
|
+
type: string;
|
|
7776
|
+
};
|
|
7777
|
+
device_id: {
|
|
7388
7778
|
description: string;
|
|
7779
|
+
format: string;
|
|
7389
7780
|
type: string;
|
|
7390
7781
|
};
|
|
7391
7782
|
event_id: {
|
|
@@ -7402,6 +7793,16 @@ declare const _default: {
|
|
|
7402
7793
|
format: string;
|
|
7403
7794
|
type: string;
|
|
7404
7795
|
};
|
|
7796
|
+
temperature_celsius: {
|
|
7797
|
+
description: string;
|
|
7798
|
+
format: string;
|
|
7799
|
+
type: string;
|
|
7800
|
+
};
|
|
7801
|
+
temperature_fahrenheit: {
|
|
7802
|
+
description: string;
|
|
7803
|
+
format: string;
|
|
7804
|
+
type: string;
|
|
7805
|
+
};
|
|
7405
7806
|
workspace_id: {
|
|
7406
7807
|
description: string;
|
|
7407
7808
|
format: string;
|
|
@@ -7410,12 +7811,14 @@ declare const _default: {
|
|
|
7410
7811
|
access_code_id?: never;
|
|
7411
7812
|
code?: never;
|
|
7412
7813
|
backup_access_code_id?: never;
|
|
7814
|
+
access_grant_id?: never;
|
|
7815
|
+
acs_entrance_id?: never;
|
|
7816
|
+
access_method_id?: never;
|
|
7413
7817
|
acs_system_id?: never;
|
|
7414
7818
|
acs_credential_id?: never;
|
|
7415
7819
|
acs_user_id?: never;
|
|
7416
7820
|
acs_encoder_id?: never;
|
|
7417
7821
|
acs_access_group_id?: never;
|
|
7418
|
-
acs_entrance_id?: never;
|
|
7419
7822
|
client_session_id?: never;
|
|
7420
7823
|
connect_webview_id?: never;
|
|
7421
7824
|
action_attempt_id?: never;
|
|
@@ -7442,12 +7845,9 @@ declare const _default: {
|
|
|
7442
7845
|
hvac_mode_setting?: never;
|
|
7443
7846
|
lower_limit_celsius?: never;
|
|
7444
7847
|
lower_limit_fahrenheit?: never;
|
|
7445
|
-
temperature_celsius?: never;
|
|
7446
|
-
temperature_fahrenheit?: never;
|
|
7447
7848
|
upper_limit_celsius?: never;
|
|
7448
7849
|
upper_limit_fahrenheit?: never;
|
|
7449
|
-
|
|
7450
|
-
desired_temperature_fahrenheit?: never;
|
|
7850
|
+
device_name?: never;
|
|
7451
7851
|
enrollment_automation_id?: never;
|
|
7452
7852
|
};
|
|
7453
7853
|
required: string[];
|
|
@@ -7458,12 +7858,17 @@ declare const _default: {
|
|
|
7458
7858
|
} | {
|
|
7459
7859
|
description: string;
|
|
7460
7860
|
properties: {
|
|
7861
|
+
connected_account_id: {
|
|
7862
|
+
description: string;
|
|
7863
|
+
format: string;
|
|
7864
|
+
type: string;
|
|
7865
|
+
};
|
|
7461
7866
|
created_at: {
|
|
7462
7867
|
description: string;
|
|
7463
7868
|
format: string;
|
|
7464
7869
|
type: string;
|
|
7465
7870
|
};
|
|
7466
|
-
|
|
7871
|
+
device_id: {
|
|
7467
7872
|
description: string;
|
|
7468
7873
|
format: string;
|
|
7469
7874
|
type: string;
|
|
@@ -7482,22 +7887,32 @@ declare const _default: {
|
|
|
7482
7887
|
format: string;
|
|
7483
7888
|
type: string;
|
|
7484
7889
|
};
|
|
7890
|
+
temperature_celsius: {
|
|
7891
|
+
description: string;
|
|
7892
|
+
format: string;
|
|
7893
|
+
type: string;
|
|
7894
|
+
};
|
|
7895
|
+
temperature_fahrenheit: {
|
|
7896
|
+
description: string;
|
|
7897
|
+
format: string;
|
|
7898
|
+
type: string;
|
|
7899
|
+
};
|
|
7485
7900
|
workspace_id: {
|
|
7486
7901
|
description: string;
|
|
7487
7902
|
format: string;
|
|
7488
7903
|
type: string;
|
|
7489
7904
|
};
|
|
7490
7905
|
access_code_id?: never;
|
|
7491
|
-
connected_account_id?: never;
|
|
7492
|
-
device_id?: never;
|
|
7493
7906
|
code?: never;
|
|
7494
7907
|
backup_access_code_id?: never;
|
|
7908
|
+
access_grant_id?: never;
|
|
7909
|
+
acs_entrance_id?: never;
|
|
7910
|
+
access_method_id?: never;
|
|
7495
7911
|
acs_system_id?: never;
|
|
7496
7912
|
acs_credential_id?: never;
|
|
7497
7913
|
acs_user_id?: never;
|
|
7498
7914
|
acs_encoder_id?: never;
|
|
7499
7915
|
acs_access_group_id?: never;
|
|
7500
|
-
acs_entrance_id?: never;
|
|
7501
7916
|
client_session_id?: never;
|
|
7502
7917
|
connect_webview_id?: never;
|
|
7503
7918
|
action_attempt_id?: never;
|
|
@@ -7524,13 +7939,12 @@ declare const _default: {
|
|
|
7524
7939
|
hvac_mode_setting?: never;
|
|
7525
7940
|
lower_limit_celsius?: never;
|
|
7526
7941
|
lower_limit_fahrenheit?: never;
|
|
7527
|
-
temperature_celsius?: never;
|
|
7528
|
-
temperature_fahrenheit?: never;
|
|
7529
7942
|
upper_limit_celsius?: never;
|
|
7530
7943
|
upper_limit_fahrenheit?: never;
|
|
7531
7944
|
desired_temperature_celsius?: never;
|
|
7532
7945
|
desired_temperature_fahrenheit?: never;
|
|
7533
7946
|
device_name?: never;
|
|
7947
|
+
enrollment_automation_id?: never;
|
|
7534
7948
|
};
|
|
7535
7949
|
required: string[];
|
|
7536
7950
|
type: string;
|
|
@@ -7540,6 +7954,11 @@ declare const _default: {
|
|
|
7540
7954
|
} | {
|
|
7541
7955
|
description: string;
|
|
7542
7956
|
properties: {
|
|
7957
|
+
connected_account_id: {
|
|
7958
|
+
description: string;
|
|
7959
|
+
format: string;
|
|
7960
|
+
type: string;
|
|
7961
|
+
};
|
|
7543
7962
|
created_at: {
|
|
7544
7963
|
description: string;
|
|
7545
7964
|
format: string;
|
|
@@ -7550,6 +7969,10 @@ declare const _default: {
|
|
|
7550
7969
|
format: string;
|
|
7551
7970
|
type: string;
|
|
7552
7971
|
};
|
|
7972
|
+
device_name: {
|
|
7973
|
+
description: string;
|
|
7974
|
+
type: string;
|
|
7975
|
+
};
|
|
7553
7976
|
event_id: {
|
|
7554
7977
|
description: string;
|
|
7555
7978
|
format: string;
|
|
@@ -7570,15 +7993,16 @@ declare const _default: {
|
|
|
7570
7993
|
type: string;
|
|
7571
7994
|
};
|
|
7572
7995
|
access_code_id?: never;
|
|
7573
|
-
connected_account_id?: never;
|
|
7574
7996
|
code?: never;
|
|
7575
7997
|
backup_access_code_id?: never;
|
|
7998
|
+
access_grant_id?: never;
|
|
7999
|
+
acs_entrance_id?: never;
|
|
8000
|
+
access_method_id?: never;
|
|
7576
8001
|
acs_system_id?: never;
|
|
7577
8002
|
acs_credential_id?: never;
|
|
7578
8003
|
acs_user_id?: never;
|
|
7579
8004
|
acs_encoder_id?: never;
|
|
7580
8005
|
acs_access_group_id?: never;
|
|
7581
|
-
acs_entrance_id?: never;
|
|
7582
8006
|
client_session_id?: never;
|
|
7583
8007
|
connect_webview_id?: never;
|
|
7584
8008
|
action_attempt_id?: never;
|
|
@@ -7611,7 +8035,6 @@ declare const _default: {
|
|
|
7611
8035
|
upper_limit_fahrenheit?: never;
|
|
7612
8036
|
desired_temperature_celsius?: never;
|
|
7613
8037
|
desired_temperature_fahrenheit?: never;
|
|
7614
|
-
device_name?: never;
|
|
7615
8038
|
enrollment_automation_id?: never;
|
|
7616
8039
|
};
|
|
7617
8040
|
required: string[];
|
|
@@ -7619,36 +8042,204 @@ declare const _default: {
|
|
|
7619
8042
|
'x-route-path': string;
|
|
7620
8043
|
deprecated?: never;
|
|
7621
8044
|
'x-deprecated'?: never;
|
|
7622
|
-
}
|
|
7623
|
-
|
|
7624
|
-
|
|
7625
|
-
|
|
7626
|
-
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7631
|
-
|
|
7632
|
-
|
|
7633
|
-
|
|
7634
|
-
|
|
7635
|
-
|
|
7636
|
-
|
|
7637
|
-
|
|
7638
|
-
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7643
|
-
|
|
7644
|
-
|
|
7645
|
-
|
|
7646
|
-
|
|
7647
|
-
|
|
7648
|
-
|
|
7649
|
-
|
|
7650
|
-
|
|
7651
|
-
|
|
8045
|
+
} | {
|
|
8046
|
+
description: string;
|
|
8047
|
+
properties: {
|
|
8048
|
+
created_at: {
|
|
8049
|
+
description: string;
|
|
8050
|
+
format: string;
|
|
8051
|
+
type: string;
|
|
8052
|
+
};
|
|
8053
|
+
enrollment_automation_id: {
|
|
8054
|
+
description: string;
|
|
8055
|
+
format: string;
|
|
8056
|
+
type: string;
|
|
8057
|
+
};
|
|
8058
|
+
event_id: {
|
|
8059
|
+
description: string;
|
|
8060
|
+
format: string;
|
|
8061
|
+
type: string;
|
|
8062
|
+
};
|
|
8063
|
+
event_type: {
|
|
8064
|
+
enum: string[];
|
|
8065
|
+
type: string;
|
|
8066
|
+
};
|
|
8067
|
+
occurred_at: {
|
|
8068
|
+
description: string;
|
|
8069
|
+
format: string;
|
|
8070
|
+
type: string;
|
|
8071
|
+
};
|
|
8072
|
+
workspace_id: {
|
|
8073
|
+
description: string;
|
|
8074
|
+
format: string;
|
|
8075
|
+
type: string;
|
|
8076
|
+
};
|
|
8077
|
+
access_code_id?: never;
|
|
8078
|
+
connected_account_id?: never;
|
|
8079
|
+
device_id?: never;
|
|
8080
|
+
code?: never;
|
|
8081
|
+
backup_access_code_id?: never;
|
|
8082
|
+
access_grant_id?: never;
|
|
8083
|
+
acs_entrance_id?: never;
|
|
8084
|
+
access_method_id?: never;
|
|
8085
|
+
acs_system_id?: never;
|
|
8086
|
+
acs_credential_id?: never;
|
|
8087
|
+
acs_user_id?: never;
|
|
8088
|
+
acs_encoder_id?: never;
|
|
8089
|
+
acs_access_group_id?: never;
|
|
8090
|
+
client_session_id?: never;
|
|
8091
|
+
connect_webview_id?: never;
|
|
8092
|
+
action_attempt_id?: never;
|
|
8093
|
+
action_type?: never;
|
|
8094
|
+
status?: never;
|
|
8095
|
+
error_code?: never;
|
|
8096
|
+
battery_level?: never;
|
|
8097
|
+
battery_status?: never;
|
|
8098
|
+
minut_metadata?: never;
|
|
8099
|
+
noise_level_decibels?: never;
|
|
8100
|
+
noise_level_nrs?: never;
|
|
8101
|
+
noise_threshold_id?: never;
|
|
8102
|
+
noise_threshold_name?: never;
|
|
8103
|
+
noiseaware_metadata?: never;
|
|
8104
|
+
method?: never;
|
|
8105
|
+
climate_preset_key?: never;
|
|
8106
|
+
is_fallback_climate_preset?: never;
|
|
8107
|
+
thermostat_schedule_id?: never;
|
|
8108
|
+
cooling_set_point_celsius?: never;
|
|
8109
|
+
cooling_set_point_fahrenheit?: never;
|
|
8110
|
+
fan_mode_setting?: never;
|
|
8111
|
+
heating_set_point_celsius?: never;
|
|
8112
|
+
heating_set_point_fahrenheit?: never;
|
|
8113
|
+
hvac_mode_setting?: never;
|
|
8114
|
+
lower_limit_celsius?: never;
|
|
8115
|
+
lower_limit_fahrenheit?: never;
|
|
8116
|
+
temperature_celsius?: never;
|
|
8117
|
+
temperature_fahrenheit?: never;
|
|
8118
|
+
upper_limit_celsius?: never;
|
|
8119
|
+
upper_limit_fahrenheit?: never;
|
|
8120
|
+
desired_temperature_celsius?: never;
|
|
8121
|
+
desired_temperature_fahrenheit?: never;
|
|
8122
|
+
device_name?: never;
|
|
8123
|
+
};
|
|
8124
|
+
required: string[];
|
|
8125
|
+
type: string;
|
|
8126
|
+
'x-route-path': string;
|
|
8127
|
+
deprecated?: never;
|
|
8128
|
+
'x-deprecated'?: never;
|
|
8129
|
+
} | {
|
|
8130
|
+
description: string;
|
|
8131
|
+
properties: {
|
|
8132
|
+
created_at: {
|
|
8133
|
+
description: string;
|
|
8134
|
+
format: string;
|
|
8135
|
+
type: string;
|
|
8136
|
+
};
|
|
8137
|
+
device_id: {
|
|
8138
|
+
description: string;
|
|
8139
|
+
format: string;
|
|
8140
|
+
type: string;
|
|
8141
|
+
};
|
|
8142
|
+
event_id: {
|
|
8143
|
+
description: string;
|
|
8144
|
+
format: string;
|
|
8145
|
+
type: string;
|
|
8146
|
+
};
|
|
8147
|
+
event_type: {
|
|
8148
|
+
enum: string[];
|
|
8149
|
+
type: string;
|
|
8150
|
+
};
|
|
8151
|
+
occurred_at: {
|
|
8152
|
+
description: string;
|
|
8153
|
+
format: string;
|
|
8154
|
+
type: string;
|
|
8155
|
+
};
|
|
8156
|
+
workspace_id: {
|
|
8157
|
+
description: string;
|
|
8158
|
+
format: string;
|
|
8159
|
+
type: string;
|
|
8160
|
+
};
|
|
8161
|
+
access_code_id?: never;
|
|
8162
|
+
connected_account_id?: never;
|
|
8163
|
+
code?: never;
|
|
8164
|
+
backup_access_code_id?: never;
|
|
8165
|
+
access_grant_id?: never;
|
|
8166
|
+
acs_entrance_id?: never;
|
|
8167
|
+
access_method_id?: never;
|
|
8168
|
+
acs_system_id?: never;
|
|
8169
|
+
acs_credential_id?: never;
|
|
8170
|
+
acs_user_id?: never;
|
|
8171
|
+
acs_encoder_id?: never;
|
|
8172
|
+
acs_access_group_id?: never;
|
|
8173
|
+
client_session_id?: never;
|
|
8174
|
+
connect_webview_id?: never;
|
|
8175
|
+
action_attempt_id?: never;
|
|
8176
|
+
action_type?: never;
|
|
8177
|
+
status?: never;
|
|
8178
|
+
error_code?: never;
|
|
8179
|
+
battery_level?: never;
|
|
8180
|
+
battery_status?: never;
|
|
8181
|
+
minut_metadata?: never;
|
|
8182
|
+
noise_level_decibels?: never;
|
|
8183
|
+
noise_level_nrs?: never;
|
|
8184
|
+
noise_threshold_id?: never;
|
|
8185
|
+
noise_threshold_name?: never;
|
|
8186
|
+
noiseaware_metadata?: never;
|
|
8187
|
+
method?: never;
|
|
8188
|
+
climate_preset_key?: never;
|
|
8189
|
+
is_fallback_climate_preset?: never;
|
|
8190
|
+
thermostat_schedule_id?: never;
|
|
8191
|
+
cooling_set_point_celsius?: never;
|
|
8192
|
+
cooling_set_point_fahrenheit?: never;
|
|
8193
|
+
fan_mode_setting?: never;
|
|
8194
|
+
heating_set_point_celsius?: never;
|
|
8195
|
+
heating_set_point_fahrenheit?: never;
|
|
8196
|
+
hvac_mode_setting?: never;
|
|
8197
|
+
lower_limit_celsius?: never;
|
|
8198
|
+
lower_limit_fahrenheit?: never;
|
|
8199
|
+
temperature_celsius?: never;
|
|
8200
|
+
temperature_fahrenheit?: never;
|
|
8201
|
+
upper_limit_celsius?: never;
|
|
8202
|
+
upper_limit_fahrenheit?: never;
|
|
8203
|
+
desired_temperature_celsius?: never;
|
|
8204
|
+
desired_temperature_fahrenheit?: never;
|
|
8205
|
+
device_name?: never;
|
|
8206
|
+
enrollment_automation_id?: never;
|
|
8207
|
+
};
|
|
8208
|
+
required: string[];
|
|
8209
|
+
type: string;
|
|
8210
|
+
'x-route-path': string;
|
|
8211
|
+
deprecated?: never;
|
|
8212
|
+
'x-deprecated'?: never;
|
|
8213
|
+
})[];
|
|
8214
|
+
'x-route-path': string;
|
|
8215
|
+
};
|
|
8216
|
+
instant_key: {
|
|
8217
|
+
properties: {
|
|
8218
|
+
client_session_id: {
|
|
8219
|
+
format: string;
|
|
8220
|
+
type: string;
|
|
8221
|
+
};
|
|
8222
|
+
created_at: {
|
|
8223
|
+
format: string;
|
|
8224
|
+
type: string;
|
|
8225
|
+
};
|
|
8226
|
+
expires_at: {
|
|
8227
|
+
format: string;
|
|
8228
|
+
type: string;
|
|
8229
|
+
};
|
|
8230
|
+
instant_key_id: {
|
|
8231
|
+
format: string;
|
|
8232
|
+
type: string;
|
|
8233
|
+
};
|
|
8234
|
+
instant_key_url: {
|
|
8235
|
+
format: string;
|
|
8236
|
+
type: string;
|
|
8237
|
+
};
|
|
8238
|
+
user_identity_id: {
|
|
8239
|
+
format: string;
|
|
8240
|
+
type: string;
|
|
8241
|
+
};
|
|
8242
|
+
workspace_id: {
|
|
7652
8243
|
format: string;
|
|
7653
8244
|
type: string;
|
|
7654
8245
|
};
|
|
@@ -7897,8 +8488,13 @@ declare const _default: {
|
|
|
7897
8488
|
};
|
|
7898
8489
|
type: string;
|
|
7899
8490
|
};
|
|
8491
|
+
is_override_allowed: {
|
|
8492
|
+
description: string;
|
|
8493
|
+
type: string;
|
|
8494
|
+
};
|
|
7900
8495
|
max_override_period_minutes: {
|
|
7901
8496
|
description: string;
|
|
8497
|
+
exclusiveMinimum: boolean;
|
|
7902
8498
|
minimum: number;
|
|
7903
8499
|
nullable: boolean;
|
|
7904
8500
|
type: string;
|
|
@@ -7917,11 +8513,6 @@ declare const _default: {
|
|
|
7917
8513
|
format: string;
|
|
7918
8514
|
type: string;
|
|
7919
8515
|
};
|
|
7920
|
-
unstable_is_override_allowed: {
|
|
7921
|
-
description: string;
|
|
7922
|
-
type: string;
|
|
7923
|
-
'x-undocumented': string;
|
|
7924
|
-
};
|
|
7925
8516
|
};
|
|
7926
8517
|
required: string[];
|
|
7927
8518
|
type: string;
|
|
@@ -8554,11 +9145,6 @@ declare const _default: {
|
|
|
8554
9145
|
format: string;
|
|
8555
9146
|
type: string;
|
|
8556
9147
|
};
|
|
8557
|
-
is_latest_desired_state_synced_with_provider: {
|
|
8558
|
-
nullable: boolean;
|
|
8559
|
-
type: string;
|
|
8560
|
-
'x-undocumented': string;
|
|
8561
|
-
};
|
|
8562
9148
|
is_managed: {
|
|
8563
9149
|
enum: boolean[];
|
|
8564
9150
|
type: string;
|
|
@@ -8567,24 +9153,22 @@ declare const _default: {
|
|
|
8567
9153
|
description: string;
|
|
8568
9154
|
type: string;
|
|
8569
9155
|
};
|
|
8570
|
-
latest_desired_state_synced_with_provider_at: {
|
|
8571
|
-
format: string;
|
|
8572
|
-
nullable: boolean;
|
|
8573
|
-
type: string;
|
|
8574
|
-
'x-undocumented': string;
|
|
8575
|
-
};
|
|
8576
9156
|
pending_mutations: {
|
|
9157
|
+
description: string;
|
|
8577
9158
|
items: {
|
|
8578
9159
|
discriminator: {
|
|
8579
9160
|
propertyName: string;
|
|
8580
9161
|
};
|
|
8581
9162
|
oneOf: ({
|
|
9163
|
+
description: string;
|
|
8582
9164
|
properties: {
|
|
8583
9165
|
created_at: {
|
|
9166
|
+
description: string;
|
|
8584
9167
|
format: string;
|
|
8585
9168
|
type: string;
|
|
8586
9169
|
};
|
|
8587
9170
|
message: {
|
|
9171
|
+
description: string;
|
|
8588
9172
|
type: string;
|
|
8589
9173
|
};
|
|
8590
9174
|
mutation_code: {
|
|
@@ -8599,6 +9183,7 @@ declare const _default: {
|
|
|
8599
9183
|
} | {
|
|
8600
9184
|
properties: {
|
|
8601
9185
|
created_at: {
|
|
9186
|
+
description: string;
|
|
8602
9187
|
format: string;
|
|
8603
9188
|
type: string;
|
|
8604
9189
|
};
|
|
@@ -8624,8 +9209,10 @@ declare const _default: {
|
|
|
8624
9209
|
};
|
|
8625
9210
|
type: string;
|
|
8626
9211
|
required?: never;
|
|
9212
|
+
description?: never;
|
|
8627
9213
|
};
|
|
8628
9214
|
message: {
|
|
9215
|
+
description: string;
|
|
8629
9216
|
type: string;
|
|
8630
9217
|
};
|
|
8631
9218
|
mutation_code: {
|
|
@@ -8654,13 +9241,17 @@ declare const _default: {
|
|
|
8654
9241
|
};
|
|
8655
9242
|
type: string;
|
|
8656
9243
|
required?: never;
|
|
9244
|
+
description?: never;
|
|
8657
9245
|
};
|
|
8658
9246
|
};
|
|
8659
9247
|
required: string[];
|
|
8660
9248
|
type: string;
|
|
9249
|
+
description?: never;
|
|
8661
9250
|
} | {
|
|
9251
|
+
description: string;
|
|
8662
9252
|
properties: {
|
|
8663
9253
|
created_at: {
|
|
9254
|
+
description: string;
|
|
8664
9255
|
format: string;
|
|
8665
9256
|
type: string;
|
|
8666
9257
|
};
|
|
@@ -8684,8 +9275,10 @@ declare const _default: {
|
|
|
8684
9275
|
};
|
|
8685
9276
|
required: string[];
|
|
8686
9277
|
type: string;
|
|
9278
|
+
description?: never;
|
|
8687
9279
|
};
|
|
8688
9280
|
message: {
|
|
9281
|
+
description: string;
|
|
8689
9282
|
type: string;
|
|
8690
9283
|
};
|
|
8691
9284
|
mutation_code: {
|
|
@@ -8712,13 +9305,16 @@ declare const _default: {
|
|
|
8712
9305
|
};
|
|
8713
9306
|
required: string[];
|
|
8714
9307
|
type: string;
|
|
9308
|
+
description?: never;
|
|
8715
9309
|
};
|
|
8716
9310
|
};
|
|
8717
9311
|
required: string[];
|
|
8718
9312
|
type: string;
|
|
8719
9313
|
} | {
|
|
9314
|
+
description: string;
|
|
8720
9315
|
properties: {
|
|
8721
9316
|
created_at: {
|
|
9317
|
+
description: string;
|
|
8722
9318
|
format: string;
|
|
8723
9319
|
type: string;
|
|
8724
9320
|
};
|
|
@@ -8736,8 +9332,10 @@ declare const _default: {
|
|
|
8736
9332
|
};
|
|
8737
9333
|
required: string[];
|
|
8738
9334
|
type: string;
|
|
9335
|
+
description?: never;
|
|
8739
9336
|
};
|
|
8740
9337
|
message: {
|
|
9338
|
+
description: string;
|
|
8741
9339
|
type: string;
|
|
8742
9340
|
};
|
|
8743
9341
|
mutation_code: {
|
|
@@ -8758,19 +9356,24 @@ declare const _default: {
|
|
|
8758
9356
|
};
|
|
8759
9357
|
required: string[];
|
|
8760
9358
|
type: string;
|
|
9359
|
+
description?: never;
|
|
8761
9360
|
};
|
|
8762
9361
|
};
|
|
8763
9362
|
required: string[];
|
|
8764
9363
|
type: string;
|
|
8765
9364
|
} | {
|
|
9365
|
+
description: string;
|
|
8766
9366
|
properties: {
|
|
8767
9367
|
created_at: {
|
|
9368
|
+
description: string;
|
|
8768
9369
|
format: string;
|
|
8769
9370
|
type: string;
|
|
8770
9371
|
};
|
|
8771
9372
|
from: {
|
|
9373
|
+
description: string;
|
|
8772
9374
|
properties: {
|
|
8773
9375
|
acs_access_group_id: {
|
|
9376
|
+
description: string;
|
|
8774
9377
|
format: string;
|
|
8775
9378
|
nullable: boolean;
|
|
8776
9379
|
type: string;
|
|
@@ -8786,6 +9389,7 @@ declare const _default: {
|
|
|
8786
9389
|
type: string;
|
|
8787
9390
|
};
|
|
8788
9391
|
message: {
|
|
9392
|
+
description: string;
|
|
8789
9393
|
type: string;
|
|
8790
9394
|
};
|
|
8791
9395
|
mutation_code: {
|
|
@@ -8793,8 +9397,10 @@ declare const _default: {
|
|
|
8793
9397
|
type: string;
|
|
8794
9398
|
};
|
|
8795
9399
|
to: {
|
|
9400
|
+
description: string;
|
|
8796
9401
|
properties: {
|
|
8797
9402
|
acs_access_group_id: {
|
|
9403
|
+
description: string;
|
|
8798
9404
|
format: string;
|
|
8799
9405
|
nullable: boolean;
|
|
8800
9406
|
type: string;
|
|
@@ -8815,7 +9421,6 @@ declare const _default: {
|
|
|
8815
9421
|
})[];
|
|
8816
9422
|
};
|
|
8817
9423
|
type: string;
|
|
8818
|
-
'x-undocumented': string;
|
|
8819
9424
|
};
|
|
8820
9425
|
phone_number: {
|
|
8821
9426
|
description: string;
|
|
@@ -9299,6 +9904,27 @@ declare const _default: {
|
|
|
9299
9904
|
type: string;
|
|
9300
9905
|
'x-deprecated': string;
|
|
9301
9906
|
};
|
|
9907
|
+
connect_webview_customization: {
|
|
9908
|
+
properties: {
|
|
9909
|
+
inviter_logo_url: {
|
|
9910
|
+
type: string;
|
|
9911
|
+
};
|
|
9912
|
+
logo_shape: {
|
|
9913
|
+
enum: string[];
|
|
9914
|
+
type: string;
|
|
9915
|
+
};
|
|
9916
|
+
primary_button_color: {
|
|
9917
|
+
type: string;
|
|
9918
|
+
};
|
|
9919
|
+
primary_button_text_color: {
|
|
9920
|
+
type: string;
|
|
9921
|
+
};
|
|
9922
|
+
success_message: {
|
|
9923
|
+
type: string;
|
|
9924
|
+
};
|
|
9925
|
+
};
|
|
9926
|
+
type: string;
|
|
9927
|
+
};
|
|
9302
9928
|
is_sandbox: {
|
|
9303
9929
|
type: string;
|
|
9304
9930
|
};
|
|
@@ -10265,7 +10891,7 @@ declare const _default: {
|
|
|
10265
10891
|
'x-title': string;
|
|
10266
10892
|
};
|
|
10267
10893
|
};
|
|
10268
|
-
'/access_codes/
|
|
10894
|
+
'/access_codes/report_device_constraints': {
|
|
10269
10895
|
post: {
|
|
10270
10896
|
description: string;
|
|
10271
10897
|
operationId: string;
|
|
@@ -10274,11 +10900,107 @@ declare const _default: {
|
|
|
10274
10900
|
'application/json': {
|
|
10275
10901
|
schema: {
|
|
10276
10902
|
properties: {
|
|
10277
|
-
|
|
10903
|
+
device_id: {
|
|
10278
10904
|
description: string;
|
|
10279
|
-
|
|
10280
|
-
|
|
10281
|
-
|
|
10905
|
+
format: string;
|
|
10906
|
+
type: string;
|
|
10907
|
+
};
|
|
10908
|
+
max_code_length: {
|
|
10909
|
+
description: string;
|
|
10910
|
+
maximum: number;
|
|
10911
|
+
minimum: number;
|
|
10912
|
+
type: string;
|
|
10913
|
+
};
|
|
10914
|
+
min_code_length: {
|
|
10915
|
+
description: string;
|
|
10916
|
+
maximum: number;
|
|
10917
|
+
minimum: number;
|
|
10918
|
+
type: string;
|
|
10919
|
+
};
|
|
10920
|
+
supported_code_lengths: {
|
|
10921
|
+
description: string;
|
|
10922
|
+
items: {
|
|
10923
|
+
maximum: number;
|
|
10924
|
+
minimum: number;
|
|
10925
|
+
type: string;
|
|
10926
|
+
};
|
|
10927
|
+
minItems: number;
|
|
10928
|
+
type: string;
|
|
10929
|
+
};
|
|
10930
|
+
};
|
|
10931
|
+
required: string[];
|
|
10932
|
+
type: string;
|
|
10933
|
+
};
|
|
10934
|
+
};
|
|
10935
|
+
};
|
|
10936
|
+
};
|
|
10937
|
+
responses: {
|
|
10938
|
+
200: {
|
|
10939
|
+
content: {
|
|
10940
|
+
'application/json': {
|
|
10941
|
+
schema: {
|
|
10942
|
+
properties: {
|
|
10943
|
+
ok: {
|
|
10944
|
+
type: string;
|
|
10945
|
+
};
|
|
10946
|
+
};
|
|
10947
|
+
required: string[];
|
|
10948
|
+
type: string;
|
|
10949
|
+
};
|
|
10950
|
+
};
|
|
10951
|
+
};
|
|
10952
|
+
description: string;
|
|
10953
|
+
};
|
|
10954
|
+
400: {
|
|
10955
|
+
description: string;
|
|
10956
|
+
};
|
|
10957
|
+
401: {
|
|
10958
|
+
description: string;
|
|
10959
|
+
};
|
|
10960
|
+
};
|
|
10961
|
+
security: ({
|
|
10962
|
+
client_session: never[];
|
|
10963
|
+
pat_with_workspace?: never;
|
|
10964
|
+
console_session_with_workspace?: never;
|
|
10965
|
+
api_key?: never;
|
|
10966
|
+
} | {
|
|
10967
|
+
pat_with_workspace: never[];
|
|
10968
|
+
client_session?: never;
|
|
10969
|
+
console_session_with_workspace?: never;
|
|
10970
|
+
api_key?: never;
|
|
10971
|
+
} | {
|
|
10972
|
+
console_session_with_workspace: never[];
|
|
10973
|
+
client_session?: never;
|
|
10974
|
+
pat_with_workspace?: never;
|
|
10975
|
+
api_key?: never;
|
|
10976
|
+
} | {
|
|
10977
|
+
api_key: never[];
|
|
10978
|
+
client_session?: never;
|
|
10979
|
+
pat_with_workspace?: never;
|
|
10980
|
+
console_session_with_workspace?: never;
|
|
10981
|
+
})[];
|
|
10982
|
+
summary: string;
|
|
10983
|
+
tags: string[];
|
|
10984
|
+
'x-fern-sdk-group-name': string[];
|
|
10985
|
+
'x-fern-sdk-method-name': string;
|
|
10986
|
+
'x-response-key': null;
|
|
10987
|
+
'x-title': string;
|
|
10988
|
+
};
|
|
10989
|
+
};
|
|
10990
|
+
'/access_codes/simulate/create_unmanaged_access_code': {
|
|
10991
|
+
post: {
|
|
10992
|
+
description: string;
|
|
10993
|
+
operationId: string;
|
|
10994
|
+
requestBody: {
|
|
10995
|
+
content: {
|
|
10996
|
+
'application/json': {
|
|
10997
|
+
schema: {
|
|
10998
|
+
properties: {
|
|
10999
|
+
code: {
|
|
11000
|
+
description: string;
|
|
11001
|
+
maxLength: number;
|
|
11002
|
+
minLength: number;
|
|
11003
|
+
pattern: string;
|
|
10282
11004
|
type: string;
|
|
10283
11005
|
};
|
|
10284
11006
|
device_id: {
|
|
@@ -13667,6 +14389,82 @@ declare const _default: {
|
|
|
13667
14389
|
'x-title': string;
|
|
13668
14390
|
};
|
|
13669
14391
|
};
|
|
14392
|
+
'/acs/encoders/encode_access_method': {
|
|
14393
|
+
post: {
|
|
14394
|
+
description: string;
|
|
14395
|
+
operationId: string;
|
|
14396
|
+
requestBody: {
|
|
14397
|
+
content: {
|
|
14398
|
+
'application/json': {
|
|
14399
|
+
schema: {
|
|
14400
|
+
properties: {
|
|
14401
|
+
access_method_id: {
|
|
14402
|
+
description: string;
|
|
14403
|
+
format: string;
|
|
14404
|
+
type: string;
|
|
14405
|
+
};
|
|
14406
|
+
acs_encoder_id: {
|
|
14407
|
+
description: string;
|
|
14408
|
+
format: string;
|
|
14409
|
+
type: string;
|
|
14410
|
+
};
|
|
14411
|
+
};
|
|
14412
|
+
required: string[];
|
|
14413
|
+
type: string;
|
|
14414
|
+
};
|
|
14415
|
+
};
|
|
14416
|
+
};
|
|
14417
|
+
};
|
|
14418
|
+
responses: {
|
|
14419
|
+
200: {
|
|
14420
|
+
content: {
|
|
14421
|
+
'application/json': {
|
|
14422
|
+
schema: {
|
|
14423
|
+
properties: {
|
|
14424
|
+
action_attempt: {
|
|
14425
|
+
$ref: string;
|
|
14426
|
+
};
|
|
14427
|
+
ok: {
|
|
14428
|
+
type: string;
|
|
14429
|
+
};
|
|
14430
|
+
};
|
|
14431
|
+
required: string[];
|
|
14432
|
+
type: string;
|
|
14433
|
+
};
|
|
14434
|
+
};
|
|
14435
|
+
};
|
|
14436
|
+
description: string;
|
|
14437
|
+
};
|
|
14438
|
+
400: {
|
|
14439
|
+
description: string;
|
|
14440
|
+
};
|
|
14441
|
+
401: {
|
|
14442
|
+
description: string;
|
|
14443
|
+
};
|
|
14444
|
+
};
|
|
14445
|
+
security: ({
|
|
14446
|
+
pat_with_workspace: never[];
|
|
14447
|
+
console_session_with_workspace?: never;
|
|
14448
|
+
api_key?: never;
|
|
14449
|
+
} | {
|
|
14450
|
+
console_session_with_workspace: never[];
|
|
14451
|
+
pat_with_workspace?: never;
|
|
14452
|
+
api_key?: never;
|
|
14453
|
+
} | {
|
|
14454
|
+
api_key: never[];
|
|
14455
|
+
pat_with_workspace?: never;
|
|
14456
|
+
console_session_with_workspace?: never;
|
|
14457
|
+
})[];
|
|
14458
|
+
summary: string;
|
|
14459
|
+
tags: string[];
|
|
14460
|
+
'x-action-attempt-type': string;
|
|
14461
|
+
'x-fern-sdk-group-name': string[];
|
|
14462
|
+
'x-fern-sdk-method-name': string;
|
|
14463
|
+
'x-fern-sdk-return-value': string;
|
|
14464
|
+
'x-response-key': string;
|
|
14465
|
+
'x-title': string;
|
|
14466
|
+
};
|
|
14467
|
+
};
|
|
13670
14468
|
'/acs/encoders/encode_credential': {
|
|
13671
14469
|
post: {
|
|
13672
14470
|
description: string;
|
|
@@ -14535,6 +15333,12 @@ declare const _default: {
|
|
|
14535
15333
|
format: string;
|
|
14536
15334
|
type: string;
|
|
14537
15335
|
};
|
|
15336
|
+
location_id: {
|
|
15337
|
+
format: string;
|
|
15338
|
+
nullable: boolean;
|
|
15339
|
+
type: string;
|
|
15340
|
+
'x-undocumented': string;
|
|
15341
|
+
};
|
|
14538
15342
|
};
|
|
14539
15343
|
type: string;
|
|
14540
15344
|
};
|
|
@@ -18095,6 +18899,11 @@ declare const _default: {
|
|
|
18095
18899
|
enum: string[];
|
|
18096
18900
|
type: string;
|
|
18097
18901
|
};
|
|
18902
|
+
page_cursor: {
|
|
18903
|
+
description: string;
|
|
18904
|
+
nullable: boolean;
|
|
18905
|
+
type: string;
|
|
18906
|
+
};
|
|
18098
18907
|
unstable_location_id: {
|
|
18099
18908
|
format: string;
|
|
18100
18909
|
nullable: boolean;
|
|
@@ -18126,6 +18935,9 @@ declare const _default: {
|
|
|
18126
18935
|
ok: {
|
|
18127
18936
|
type: string;
|
|
18128
18937
|
};
|
|
18938
|
+
pagination: {
|
|
18939
|
+
$ref: string;
|
|
18940
|
+
};
|
|
18129
18941
|
};
|
|
18130
18942
|
required: string[];
|
|
18131
18943
|
type: string;
|
|
@@ -18616,6 +19428,11 @@ declare const _default: {
|
|
|
18616
19428
|
enum: string[];
|
|
18617
19429
|
type: string;
|
|
18618
19430
|
};
|
|
19431
|
+
page_cursor: {
|
|
19432
|
+
description: string;
|
|
19433
|
+
nullable: boolean;
|
|
19434
|
+
type: string;
|
|
19435
|
+
};
|
|
18619
19436
|
unstable_location_id: {
|
|
18620
19437
|
format: string;
|
|
18621
19438
|
nullable: boolean;
|
|
@@ -19424,6 +20241,11 @@ declare const _default: {
|
|
|
19424
20241
|
enum: string[];
|
|
19425
20242
|
type: string;
|
|
19426
20243
|
};
|
|
20244
|
+
page_cursor: {
|
|
20245
|
+
description: string;
|
|
20246
|
+
nullable: boolean;
|
|
20247
|
+
type: string;
|
|
20248
|
+
};
|
|
19427
20249
|
unstable_location_id: {
|
|
19428
20250
|
format: string;
|
|
19429
20251
|
nullable: boolean;
|
|
@@ -19721,7 +20543,8 @@ declare const _default: {
|
|
|
19721
20543
|
'x-action-attempt-type': string;
|
|
19722
20544
|
'x-fern-sdk-group-name': string[];
|
|
19723
20545
|
'x-fern-sdk-method-name': string;
|
|
19724
|
-
'x-
|
|
20546
|
+
'x-fern-sdk-return-value': string;
|
|
20547
|
+
'x-response-key': string;
|
|
19725
20548
|
'x-undocumented': string;
|
|
19726
20549
|
};
|
|
19727
20550
|
};
|
|
@@ -20024,6 +20847,11 @@ declare const _default: {
|
|
|
20024
20847
|
enum: string[];
|
|
20025
20848
|
type: string;
|
|
20026
20849
|
};
|
|
20850
|
+
page_cursor: {
|
|
20851
|
+
description: string;
|
|
20852
|
+
nullable: boolean;
|
|
20853
|
+
type: string;
|
|
20854
|
+
};
|
|
20027
20855
|
unstable_location_id: {
|
|
20028
20856
|
format: string;
|
|
20029
20857
|
nullable: boolean;
|
|
@@ -22207,20 +23035,613 @@ declare const _default: {
|
|
|
22207
23035
|
description: string;
|
|
22208
23036
|
};
|
|
22209
23037
|
};
|
|
22210
|
-
security: {
|
|
22211
|
-
bridge_client_session: never[];
|
|
22212
|
-
}[];
|
|
23038
|
+
security: {
|
|
23039
|
+
bridge_client_session: never[];
|
|
23040
|
+
}[];
|
|
23041
|
+
summary: string;
|
|
23042
|
+
tags: never[];
|
|
23043
|
+
'x-fern-sdk-group-name': string[];
|
|
23044
|
+
'x-fern-sdk-method-name': string;
|
|
23045
|
+
'x-fern-sdk-return-value': string;
|
|
23046
|
+
'x-response-key': string;
|
|
23047
|
+
'x-title': string;
|
|
23048
|
+
'x-undocumented': string;
|
|
23049
|
+
};
|
|
23050
|
+
};
|
|
23051
|
+
'/seam/instant_key/v1/client_sessions/exchange_short_code': {
|
|
23052
|
+
post: {
|
|
23053
|
+
description: string;
|
|
23054
|
+
operationId: string;
|
|
23055
|
+
requestBody: {
|
|
23056
|
+
content: {
|
|
23057
|
+
'application/json': {
|
|
23058
|
+
schema: {
|
|
23059
|
+
properties: {
|
|
23060
|
+
short_code: {
|
|
23061
|
+
description: string;
|
|
23062
|
+
type: string;
|
|
23063
|
+
};
|
|
23064
|
+
};
|
|
23065
|
+
required: string[];
|
|
23066
|
+
type: string;
|
|
23067
|
+
};
|
|
23068
|
+
};
|
|
23069
|
+
};
|
|
23070
|
+
};
|
|
23071
|
+
responses: {
|
|
23072
|
+
200: {
|
|
23073
|
+
content: {
|
|
23074
|
+
'application/json': {
|
|
23075
|
+
schema: {
|
|
23076
|
+
properties: {
|
|
23077
|
+
client_session: {
|
|
23078
|
+
$ref: string;
|
|
23079
|
+
};
|
|
23080
|
+
ok: {
|
|
23081
|
+
type: string;
|
|
23082
|
+
};
|
|
23083
|
+
};
|
|
23084
|
+
required: string[];
|
|
23085
|
+
type: string;
|
|
23086
|
+
};
|
|
23087
|
+
};
|
|
23088
|
+
};
|
|
23089
|
+
description: string;
|
|
23090
|
+
};
|
|
23091
|
+
400: {
|
|
23092
|
+
description: string;
|
|
23093
|
+
};
|
|
23094
|
+
401: {
|
|
23095
|
+
description: string;
|
|
23096
|
+
};
|
|
23097
|
+
};
|
|
23098
|
+
security: {
|
|
23099
|
+
certified_client: never[];
|
|
23100
|
+
}[];
|
|
23101
|
+
summary: string;
|
|
23102
|
+
tags: string[];
|
|
23103
|
+
'x-fern-sdk-group-name': string[];
|
|
23104
|
+
'x-fern-sdk-method-name': string;
|
|
23105
|
+
'x-fern-sdk-return-value': string;
|
|
23106
|
+
'x-response-key': string;
|
|
23107
|
+
'x-title': string;
|
|
23108
|
+
};
|
|
23109
|
+
};
|
|
23110
|
+
'/thermostats/activate_climate_preset': {
|
|
23111
|
+
post: {
|
|
23112
|
+
description: string;
|
|
23113
|
+
operationId: string;
|
|
23114
|
+
requestBody: {
|
|
23115
|
+
content: {
|
|
23116
|
+
'application/json': {
|
|
23117
|
+
schema: {
|
|
23118
|
+
properties: {
|
|
23119
|
+
climate_preset_key: {
|
|
23120
|
+
description: string;
|
|
23121
|
+
type: string;
|
|
23122
|
+
};
|
|
23123
|
+
device_id: {
|
|
23124
|
+
description: string;
|
|
23125
|
+
format: string;
|
|
23126
|
+
type: string;
|
|
23127
|
+
};
|
|
23128
|
+
};
|
|
23129
|
+
required: string[];
|
|
23130
|
+
type: string;
|
|
23131
|
+
};
|
|
23132
|
+
};
|
|
23133
|
+
};
|
|
23134
|
+
};
|
|
23135
|
+
responses: {
|
|
23136
|
+
200: {
|
|
23137
|
+
content: {
|
|
23138
|
+
'application/json': {
|
|
23139
|
+
schema: {
|
|
23140
|
+
properties: {
|
|
23141
|
+
action_attempt: {
|
|
23142
|
+
$ref: string;
|
|
23143
|
+
};
|
|
23144
|
+
ok: {
|
|
23145
|
+
type: string;
|
|
23146
|
+
};
|
|
23147
|
+
};
|
|
23148
|
+
required: string[];
|
|
23149
|
+
type: string;
|
|
23150
|
+
};
|
|
23151
|
+
};
|
|
23152
|
+
};
|
|
23153
|
+
description: string;
|
|
23154
|
+
};
|
|
23155
|
+
400: {
|
|
23156
|
+
description: string;
|
|
23157
|
+
};
|
|
23158
|
+
401: {
|
|
23159
|
+
description: string;
|
|
23160
|
+
};
|
|
23161
|
+
};
|
|
23162
|
+
security: ({
|
|
23163
|
+
pat_with_workspace: never[];
|
|
23164
|
+
console_session_with_workspace?: never;
|
|
23165
|
+
api_key?: never;
|
|
23166
|
+
} | {
|
|
23167
|
+
console_session_with_workspace: never[];
|
|
23168
|
+
pat_with_workspace?: never;
|
|
23169
|
+
api_key?: never;
|
|
23170
|
+
} | {
|
|
23171
|
+
api_key: never[];
|
|
23172
|
+
pat_with_workspace?: never;
|
|
23173
|
+
console_session_with_workspace?: never;
|
|
23174
|
+
})[];
|
|
23175
|
+
summary: string;
|
|
23176
|
+
tags: string[];
|
|
23177
|
+
'x-action-attempt-type': string;
|
|
23178
|
+
'x-fern-sdk-group-name': string[];
|
|
23179
|
+
'x-fern-sdk-method-name': string;
|
|
23180
|
+
'x-fern-sdk-return-value': string;
|
|
23181
|
+
'x-response-key': string;
|
|
23182
|
+
'x-title': string;
|
|
23183
|
+
};
|
|
23184
|
+
};
|
|
23185
|
+
'/thermostats/activate_weekly_program': {
|
|
23186
|
+
post: {
|
|
23187
|
+
description: string;
|
|
23188
|
+
operationId: string;
|
|
23189
|
+
requestBody: {
|
|
23190
|
+
content: {
|
|
23191
|
+
'application/json': {
|
|
23192
|
+
schema: {
|
|
23193
|
+
properties: {
|
|
23194
|
+
device_id: {
|
|
23195
|
+
description: string;
|
|
23196
|
+
format: string;
|
|
23197
|
+
type: string;
|
|
23198
|
+
};
|
|
23199
|
+
friday_program_id: {
|
|
23200
|
+
description: string;
|
|
23201
|
+
format: string;
|
|
23202
|
+
type: string;
|
|
23203
|
+
};
|
|
23204
|
+
monday_program_id: {
|
|
23205
|
+
description: string;
|
|
23206
|
+
format: string;
|
|
23207
|
+
type: string;
|
|
23208
|
+
};
|
|
23209
|
+
saturday_program_id: {
|
|
23210
|
+
description: string;
|
|
23211
|
+
format: string;
|
|
23212
|
+
type: string;
|
|
23213
|
+
};
|
|
23214
|
+
sunday_program_id: {
|
|
23215
|
+
description: string;
|
|
23216
|
+
format: string;
|
|
23217
|
+
type: string;
|
|
23218
|
+
};
|
|
23219
|
+
thursday_program_id: {
|
|
23220
|
+
description: string;
|
|
23221
|
+
format: string;
|
|
23222
|
+
type: string;
|
|
23223
|
+
};
|
|
23224
|
+
tuesday_program_id: {
|
|
23225
|
+
description: string;
|
|
23226
|
+
format: string;
|
|
23227
|
+
type: string;
|
|
23228
|
+
};
|
|
23229
|
+
wednesday_program_id: {
|
|
23230
|
+
description: string;
|
|
23231
|
+
format: string;
|
|
23232
|
+
type: string;
|
|
23233
|
+
};
|
|
23234
|
+
};
|
|
23235
|
+
required: string[];
|
|
23236
|
+
type: string;
|
|
23237
|
+
};
|
|
23238
|
+
};
|
|
23239
|
+
};
|
|
23240
|
+
};
|
|
23241
|
+
responses: {
|
|
23242
|
+
200: {
|
|
23243
|
+
content: {
|
|
23244
|
+
'application/json': {
|
|
23245
|
+
schema: {
|
|
23246
|
+
properties: {
|
|
23247
|
+
ok: {
|
|
23248
|
+
type: string;
|
|
23249
|
+
};
|
|
23250
|
+
thermostat_weekly_program: {
|
|
23251
|
+
properties: {
|
|
23252
|
+
created_at: {
|
|
23253
|
+
description: string;
|
|
23254
|
+
format: string;
|
|
23255
|
+
type: string;
|
|
23256
|
+
};
|
|
23257
|
+
device_id: {
|
|
23258
|
+
description: string;
|
|
23259
|
+
format: string;
|
|
23260
|
+
type: string;
|
|
23261
|
+
};
|
|
23262
|
+
friday_program_id: {
|
|
23263
|
+
description: string;
|
|
23264
|
+
format: string;
|
|
23265
|
+
nullable: boolean;
|
|
23266
|
+
type: string;
|
|
23267
|
+
};
|
|
23268
|
+
monday_program_id: {
|
|
23269
|
+
description: string;
|
|
23270
|
+
format: string;
|
|
23271
|
+
nullable: boolean;
|
|
23272
|
+
type: string;
|
|
23273
|
+
};
|
|
23274
|
+
saturday_program_id: {
|
|
23275
|
+
description: string;
|
|
23276
|
+
format: string;
|
|
23277
|
+
nullable: boolean;
|
|
23278
|
+
type: string;
|
|
23279
|
+
};
|
|
23280
|
+
sunday_program_id: {
|
|
23281
|
+
description: string;
|
|
23282
|
+
format: string;
|
|
23283
|
+
nullable: boolean;
|
|
23284
|
+
type: string;
|
|
23285
|
+
};
|
|
23286
|
+
thursday_program_id: {
|
|
23287
|
+
description: string;
|
|
23288
|
+
format: string;
|
|
23289
|
+
nullable: boolean;
|
|
23290
|
+
type: string;
|
|
23291
|
+
};
|
|
23292
|
+
tuesday_program_id: {
|
|
23293
|
+
description: string;
|
|
23294
|
+
format: string;
|
|
23295
|
+
nullable: boolean;
|
|
23296
|
+
type: string;
|
|
23297
|
+
};
|
|
23298
|
+
wednesday_program_id: {
|
|
23299
|
+
description: string;
|
|
23300
|
+
format: string;
|
|
23301
|
+
nullable: boolean;
|
|
23302
|
+
type: string;
|
|
23303
|
+
};
|
|
23304
|
+
};
|
|
23305
|
+
required: string[];
|
|
23306
|
+
type: string;
|
|
23307
|
+
};
|
|
23308
|
+
};
|
|
23309
|
+
required: string[];
|
|
23310
|
+
type: string;
|
|
23311
|
+
};
|
|
23312
|
+
};
|
|
23313
|
+
};
|
|
23314
|
+
description: string;
|
|
23315
|
+
};
|
|
23316
|
+
400: {
|
|
23317
|
+
description: string;
|
|
23318
|
+
};
|
|
23319
|
+
401: {
|
|
23320
|
+
description: string;
|
|
23321
|
+
};
|
|
23322
|
+
};
|
|
23323
|
+
security: ({
|
|
23324
|
+
client_session: never[];
|
|
23325
|
+
pat_with_workspace?: never;
|
|
23326
|
+
console_session_with_workspace?: never;
|
|
23327
|
+
api_key?: never;
|
|
23328
|
+
} | {
|
|
23329
|
+
pat_with_workspace: never[];
|
|
23330
|
+
client_session?: never;
|
|
23331
|
+
console_session_with_workspace?: never;
|
|
23332
|
+
api_key?: never;
|
|
23333
|
+
} | {
|
|
23334
|
+
console_session_with_workspace: never[];
|
|
23335
|
+
client_session?: never;
|
|
23336
|
+
pat_with_workspace?: never;
|
|
23337
|
+
api_key?: never;
|
|
23338
|
+
} | {
|
|
23339
|
+
api_key: never[];
|
|
23340
|
+
client_session?: never;
|
|
23341
|
+
pat_with_workspace?: never;
|
|
23342
|
+
console_session_with_workspace?: never;
|
|
23343
|
+
})[];
|
|
23344
|
+
summary: string;
|
|
23345
|
+
tags: string[];
|
|
23346
|
+
'x-fern-sdk-group-name': string[];
|
|
23347
|
+
'x-fern-sdk-method-name': string;
|
|
23348
|
+
'x-fern-sdk-return-value': string;
|
|
23349
|
+
'x-response-key': string;
|
|
23350
|
+
'x-title': string;
|
|
23351
|
+
'x-undocumented': string;
|
|
23352
|
+
};
|
|
23353
|
+
};
|
|
23354
|
+
'/thermostats/clear_weekly_program': {
|
|
23355
|
+
post: {
|
|
23356
|
+
description: string;
|
|
23357
|
+
operationId: string;
|
|
23358
|
+
requestBody: {
|
|
23359
|
+
content: {
|
|
23360
|
+
'application/json': {
|
|
23361
|
+
schema: {
|
|
23362
|
+
properties: {
|
|
23363
|
+
device_id: {
|
|
23364
|
+
description: string;
|
|
23365
|
+
format: string;
|
|
23366
|
+
type: string;
|
|
23367
|
+
};
|
|
23368
|
+
};
|
|
23369
|
+
required: string[];
|
|
23370
|
+
type: string;
|
|
23371
|
+
};
|
|
23372
|
+
};
|
|
23373
|
+
};
|
|
23374
|
+
};
|
|
23375
|
+
responses: {
|
|
23376
|
+
200: {
|
|
23377
|
+
content: {
|
|
23378
|
+
'application/json': {
|
|
23379
|
+
schema: {
|
|
23380
|
+
properties: {
|
|
23381
|
+
ok: {
|
|
23382
|
+
type: string;
|
|
23383
|
+
};
|
|
23384
|
+
};
|
|
23385
|
+
required: string[];
|
|
23386
|
+
type: string;
|
|
23387
|
+
};
|
|
23388
|
+
};
|
|
23389
|
+
};
|
|
23390
|
+
description: string;
|
|
23391
|
+
};
|
|
23392
|
+
400: {
|
|
23393
|
+
description: string;
|
|
23394
|
+
};
|
|
23395
|
+
401: {
|
|
23396
|
+
description: string;
|
|
23397
|
+
};
|
|
23398
|
+
};
|
|
23399
|
+
security: ({
|
|
23400
|
+
client_session: never[];
|
|
23401
|
+
pat_with_workspace?: never;
|
|
23402
|
+
console_session_with_workspace?: never;
|
|
23403
|
+
api_key?: never;
|
|
23404
|
+
} | {
|
|
23405
|
+
pat_with_workspace: never[];
|
|
23406
|
+
client_session?: never;
|
|
23407
|
+
console_session_with_workspace?: never;
|
|
23408
|
+
api_key?: never;
|
|
23409
|
+
} | {
|
|
23410
|
+
console_session_with_workspace: never[];
|
|
23411
|
+
client_session?: never;
|
|
23412
|
+
pat_with_workspace?: never;
|
|
23413
|
+
api_key?: never;
|
|
23414
|
+
} | {
|
|
23415
|
+
api_key: never[];
|
|
23416
|
+
client_session?: never;
|
|
23417
|
+
pat_with_workspace?: never;
|
|
23418
|
+
console_session_with_workspace?: never;
|
|
23419
|
+
})[];
|
|
23420
|
+
summary: string;
|
|
23421
|
+
tags: string[];
|
|
23422
|
+
'x-fern-sdk-group-name': string[];
|
|
23423
|
+
'x-fern-sdk-method-name': string;
|
|
23424
|
+
'x-response-key': null;
|
|
23425
|
+
'x-title': string;
|
|
23426
|
+
'x-undocumented': string;
|
|
23427
|
+
};
|
|
23428
|
+
};
|
|
23429
|
+
'/thermostats/cool': {
|
|
23430
|
+
post: {
|
|
23431
|
+
description: string;
|
|
23432
|
+
operationId: string;
|
|
23433
|
+
requestBody: {
|
|
23434
|
+
content: {
|
|
23435
|
+
'application/json': {
|
|
23436
|
+
schema: {
|
|
23437
|
+
properties: {
|
|
23438
|
+
cooling_set_point_celsius: {
|
|
23439
|
+
description: string;
|
|
23440
|
+
format: string;
|
|
23441
|
+
type: string;
|
|
23442
|
+
};
|
|
23443
|
+
cooling_set_point_fahrenheit: {
|
|
23444
|
+
description: string;
|
|
23445
|
+
format: string;
|
|
23446
|
+
type: string;
|
|
23447
|
+
};
|
|
23448
|
+
device_id: {
|
|
23449
|
+
description: string;
|
|
23450
|
+
format: string;
|
|
23451
|
+
type: string;
|
|
23452
|
+
};
|
|
23453
|
+
sync: {
|
|
23454
|
+
default: boolean;
|
|
23455
|
+
type: string;
|
|
23456
|
+
'x-undocumented': string;
|
|
23457
|
+
};
|
|
23458
|
+
};
|
|
23459
|
+
required: string[];
|
|
23460
|
+
type: string;
|
|
23461
|
+
};
|
|
23462
|
+
};
|
|
23463
|
+
};
|
|
23464
|
+
};
|
|
23465
|
+
responses: {
|
|
23466
|
+
200: {
|
|
23467
|
+
content: {
|
|
23468
|
+
'application/json': {
|
|
23469
|
+
schema: {
|
|
23470
|
+
properties: {
|
|
23471
|
+
action_attempt: {
|
|
23472
|
+
$ref: string;
|
|
23473
|
+
};
|
|
23474
|
+
ok: {
|
|
23475
|
+
type: string;
|
|
23476
|
+
};
|
|
23477
|
+
};
|
|
23478
|
+
required: string[];
|
|
23479
|
+
type: string;
|
|
23480
|
+
};
|
|
23481
|
+
};
|
|
23482
|
+
};
|
|
23483
|
+
description: string;
|
|
23484
|
+
};
|
|
23485
|
+
400: {
|
|
23486
|
+
description: string;
|
|
23487
|
+
};
|
|
23488
|
+
401: {
|
|
23489
|
+
description: string;
|
|
23490
|
+
};
|
|
23491
|
+
};
|
|
23492
|
+
security: ({
|
|
23493
|
+
client_session: never[];
|
|
23494
|
+
pat_with_workspace?: never;
|
|
23495
|
+
console_session_with_workspace?: never;
|
|
23496
|
+
api_key?: never;
|
|
23497
|
+
} | {
|
|
23498
|
+
pat_with_workspace: never[];
|
|
23499
|
+
client_session?: never;
|
|
23500
|
+
console_session_with_workspace?: never;
|
|
23501
|
+
api_key?: never;
|
|
23502
|
+
} | {
|
|
23503
|
+
console_session_with_workspace: never[];
|
|
23504
|
+
client_session?: never;
|
|
23505
|
+
pat_with_workspace?: never;
|
|
23506
|
+
api_key?: never;
|
|
23507
|
+
} | {
|
|
23508
|
+
api_key: never[];
|
|
23509
|
+
client_session?: never;
|
|
23510
|
+
pat_with_workspace?: never;
|
|
23511
|
+
console_session_with_workspace?: never;
|
|
23512
|
+
})[];
|
|
23513
|
+
summary: string;
|
|
23514
|
+
tags: string[];
|
|
23515
|
+
'x-action-attempt-type': string;
|
|
23516
|
+
'x-fern-sdk-group-name': string[];
|
|
23517
|
+
'x-fern-sdk-method-name': string;
|
|
23518
|
+
'x-fern-sdk-return-value': string;
|
|
23519
|
+
'x-response-key': string;
|
|
23520
|
+
'x-title': string;
|
|
23521
|
+
};
|
|
23522
|
+
};
|
|
23523
|
+
'/thermostats/create_climate_preset': {
|
|
23524
|
+
post: {
|
|
23525
|
+
description: string;
|
|
23526
|
+
operationId: string;
|
|
23527
|
+
requestBody: {
|
|
23528
|
+
content: {
|
|
23529
|
+
'application/json': {
|
|
23530
|
+
schema: {
|
|
23531
|
+
properties: {
|
|
23532
|
+
climate_preset_key: {
|
|
23533
|
+
description: string;
|
|
23534
|
+
type: string;
|
|
23535
|
+
};
|
|
23536
|
+
cooling_set_point_celsius: {
|
|
23537
|
+
description: string;
|
|
23538
|
+
format: string;
|
|
23539
|
+
type: string;
|
|
23540
|
+
};
|
|
23541
|
+
cooling_set_point_fahrenheit: {
|
|
23542
|
+
description: string;
|
|
23543
|
+
format: string;
|
|
23544
|
+
type: string;
|
|
23545
|
+
};
|
|
23546
|
+
device_id: {
|
|
23547
|
+
description: string;
|
|
23548
|
+
format: string;
|
|
23549
|
+
type: string;
|
|
23550
|
+
};
|
|
23551
|
+
fan_mode_setting: {
|
|
23552
|
+
description: string;
|
|
23553
|
+
enum: string[];
|
|
23554
|
+
type: string;
|
|
23555
|
+
};
|
|
23556
|
+
heating_set_point_celsius: {
|
|
23557
|
+
description: string;
|
|
23558
|
+
format: string;
|
|
23559
|
+
type: string;
|
|
23560
|
+
};
|
|
23561
|
+
heating_set_point_fahrenheit: {
|
|
23562
|
+
description: string;
|
|
23563
|
+
format: string;
|
|
23564
|
+
type: string;
|
|
23565
|
+
};
|
|
23566
|
+
hvac_mode_setting: {
|
|
23567
|
+
description: string;
|
|
23568
|
+
enum: string[];
|
|
23569
|
+
type: string;
|
|
23570
|
+
};
|
|
23571
|
+
manual_override_allowed: {
|
|
23572
|
+
default: boolean;
|
|
23573
|
+
deprecated: boolean;
|
|
23574
|
+
description: string;
|
|
23575
|
+
type: string;
|
|
23576
|
+
'x-deprecated': string;
|
|
23577
|
+
};
|
|
23578
|
+
name: {
|
|
23579
|
+
default: null;
|
|
23580
|
+
description: string;
|
|
23581
|
+
nullable: boolean;
|
|
23582
|
+
type: string;
|
|
23583
|
+
};
|
|
23584
|
+
};
|
|
23585
|
+
required: string[];
|
|
23586
|
+
type: string;
|
|
23587
|
+
};
|
|
23588
|
+
};
|
|
23589
|
+
};
|
|
23590
|
+
};
|
|
23591
|
+
responses: {
|
|
23592
|
+
200: {
|
|
23593
|
+
content: {
|
|
23594
|
+
'application/json': {
|
|
23595
|
+
schema: {
|
|
23596
|
+
properties: {
|
|
23597
|
+
ok: {
|
|
23598
|
+
type: string;
|
|
23599
|
+
};
|
|
23600
|
+
};
|
|
23601
|
+
required: string[];
|
|
23602
|
+
type: string;
|
|
23603
|
+
};
|
|
23604
|
+
};
|
|
23605
|
+
};
|
|
23606
|
+
description: string;
|
|
23607
|
+
};
|
|
23608
|
+
400: {
|
|
23609
|
+
description: string;
|
|
23610
|
+
};
|
|
23611
|
+
401: {
|
|
23612
|
+
description: string;
|
|
23613
|
+
};
|
|
23614
|
+
};
|
|
23615
|
+
security: ({
|
|
23616
|
+
client_session: never[];
|
|
23617
|
+
pat_with_workspace?: never;
|
|
23618
|
+
console_session_with_workspace?: never;
|
|
23619
|
+
api_key?: never;
|
|
23620
|
+
} | {
|
|
23621
|
+
pat_with_workspace: never[];
|
|
23622
|
+
client_session?: never;
|
|
23623
|
+
console_session_with_workspace?: never;
|
|
23624
|
+
api_key?: never;
|
|
23625
|
+
} | {
|
|
23626
|
+
console_session_with_workspace: never[];
|
|
23627
|
+
client_session?: never;
|
|
23628
|
+
pat_with_workspace?: never;
|
|
23629
|
+
api_key?: never;
|
|
23630
|
+
} | {
|
|
23631
|
+
api_key: never[];
|
|
23632
|
+
client_session?: never;
|
|
23633
|
+
pat_with_workspace?: never;
|
|
23634
|
+
console_session_with_workspace?: never;
|
|
23635
|
+
})[];
|
|
22213
23636
|
summary: string;
|
|
22214
|
-
tags:
|
|
23637
|
+
tags: string[];
|
|
22215
23638
|
'x-fern-sdk-group-name': string[];
|
|
22216
23639
|
'x-fern-sdk-method-name': string;
|
|
22217
|
-
'x-
|
|
22218
|
-
'x-response-key': string;
|
|
23640
|
+
'x-response-key': null;
|
|
22219
23641
|
'x-title': string;
|
|
22220
|
-
'x-undocumented': string;
|
|
22221
23642
|
};
|
|
22222
23643
|
};
|
|
22223
|
-
'/
|
|
23644
|
+
'/thermostats/daily_programs/create': {
|
|
22224
23645
|
post: {
|
|
22225
23646
|
description: string;
|
|
22226
23647
|
operationId: string;
|
|
@@ -22229,8 +23650,32 @@ declare const _default: {
|
|
|
22229
23650
|
'application/json': {
|
|
22230
23651
|
schema: {
|
|
22231
23652
|
properties: {
|
|
22232
|
-
|
|
23653
|
+
device_id: {
|
|
23654
|
+
description: string;
|
|
23655
|
+
format: string;
|
|
23656
|
+
type: string;
|
|
23657
|
+
};
|
|
23658
|
+
name: {
|
|
23659
|
+
description: string;
|
|
23660
|
+
type: string;
|
|
23661
|
+
};
|
|
23662
|
+
periods: {
|
|
22233
23663
|
description: string;
|
|
23664
|
+
items: {
|
|
23665
|
+
properties: {
|
|
23666
|
+
climate_preset_key: {
|
|
23667
|
+
description: string;
|
|
23668
|
+
type: string;
|
|
23669
|
+
};
|
|
23670
|
+
starts_at_time: {
|
|
23671
|
+
description: string;
|
|
23672
|
+
pattern: string;
|
|
23673
|
+
type: string;
|
|
23674
|
+
};
|
|
23675
|
+
};
|
|
23676
|
+
required: string[];
|
|
23677
|
+
type: string;
|
|
23678
|
+
};
|
|
22234
23679
|
type: string;
|
|
22235
23680
|
};
|
|
22236
23681
|
};
|
|
@@ -22246,12 +23691,53 @@ declare const _default: {
|
|
|
22246
23691
|
'application/json': {
|
|
22247
23692
|
schema: {
|
|
22248
23693
|
properties: {
|
|
22249
|
-
client_session: {
|
|
22250
|
-
$ref: string;
|
|
22251
|
-
};
|
|
22252
23694
|
ok: {
|
|
22253
23695
|
type: string;
|
|
22254
23696
|
};
|
|
23697
|
+
thermostat_daily_program: {
|
|
23698
|
+
properties: {
|
|
23699
|
+
created_at: {
|
|
23700
|
+
description: string;
|
|
23701
|
+
format: string;
|
|
23702
|
+
type: string;
|
|
23703
|
+
};
|
|
23704
|
+
device_id: {
|
|
23705
|
+
description: string;
|
|
23706
|
+
format: string;
|
|
23707
|
+
type: string;
|
|
23708
|
+
};
|
|
23709
|
+
name: {
|
|
23710
|
+
description: string;
|
|
23711
|
+
type: string;
|
|
23712
|
+
};
|
|
23713
|
+
periods: {
|
|
23714
|
+
description: string;
|
|
23715
|
+
items: {
|
|
23716
|
+
properties: {
|
|
23717
|
+
climate_preset_key: {
|
|
23718
|
+
description: string;
|
|
23719
|
+
type: string;
|
|
23720
|
+
};
|
|
23721
|
+
starts_at_time: {
|
|
23722
|
+
description: string;
|
|
23723
|
+
pattern: string;
|
|
23724
|
+
type: string;
|
|
23725
|
+
};
|
|
23726
|
+
};
|
|
23727
|
+
required: string[];
|
|
23728
|
+
type: string;
|
|
23729
|
+
};
|
|
23730
|
+
type: string;
|
|
23731
|
+
};
|
|
23732
|
+
thermostat_daily_program_id: {
|
|
23733
|
+
description: string;
|
|
23734
|
+
format: string;
|
|
23735
|
+
type: string;
|
|
23736
|
+
};
|
|
23737
|
+
};
|
|
23738
|
+
required: string[];
|
|
23739
|
+
type: string;
|
|
23740
|
+
};
|
|
22255
23741
|
};
|
|
22256
23742
|
required: string[];
|
|
22257
23743
|
type: string;
|
|
@@ -22267,9 +23753,27 @@ declare const _default: {
|
|
|
22267
23753
|
description: string;
|
|
22268
23754
|
};
|
|
22269
23755
|
};
|
|
22270
|
-
security: {
|
|
22271
|
-
|
|
22272
|
-
|
|
23756
|
+
security: ({
|
|
23757
|
+
client_session: never[];
|
|
23758
|
+
pat_with_workspace?: never;
|
|
23759
|
+
console_session_with_workspace?: never;
|
|
23760
|
+
api_key?: never;
|
|
23761
|
+
} | {
|
|
23762
|
+
pat_with_workspace: never[];
|
|
23763
|
+
client_session?: never;
|
|
23764
|
+
console_session_with_workspace?: never;
|
|
23765
|
+
api_key?: never;
|
|
23766
|
+
} | {
|
|
23767
|
+
console_session_with_workspace: never[];
|
|
23768
|
+
client_session?: never;
|
|
23769
|
+
pat_with_workspace?: never;
|
|
23770
|
+
api_key?: never;
|
|
23771
|
+
} | {
|
|
23772
|
+
api_key: never[];
|
|
23773
|
+
client_session?: never;
|
|
23774
|
+
pat_with_workspace?: never;
|
|
23775
|
+
console_session_with_workspace?: never;
|
|
23776
|
+
})[];
|
|
22273
23777
|
summary: string;
|
|
22274
23778
|
tags: string[];
|
|
22275
23779
|
'x-fern-sdk-group-name': string[];
|
|
@@ -22277,9 +23781,10 @@ declare const _default: {
|
|
|
22277
23781
|
'x-fern-sdk-return-value': string;
|
|
22278
23782
|
'x-response-key': string;
|
|
22279
23783
|
'x-title': string;
|
|
23784
|
+
'x-undocumented': string;
|
|
22280
23785
|
};
|
|
22281
23786
|
};
|
|
22282
|
-
'/thermostats/
|
|
23787
|
+
'/thermostats/daily_programs/delete': {
|
|
22283
23788
|
post: {
|
|
22284
23789
|
description: string;
|
|
22285
23790
|
operationId: string;
|
|
@@ -22288,11 +23793,7 @@ declare const _default: {
|
|
|
22288
23793
|
'application/json': {
|
|
22289
23794
|
schema: {
|
|
22290
23795
|
properties: {
|
|
22291
|
-
|
|
22292
|
-
description: string;
|
|
22293
|
-
type: string;
|
|
22294
|
-
};
|
|
22295
|
-
device_id: {
|
|
23796
|
+
thermostat_daily_program_id: {
|
|
22296
23797
|
description: string;
|
|
22297
23798
|
format: string;
|
|
22298
23799
|
type: string;
|
|
@@ -22310,9 +23811,6 @@ declare const _default: {
|
|
|
22310
23811
|
'application/json': {
|
|
22311
23812
|
schema: {
|
|
22312
23813
|
properties: {
|
|
22313
|
-
action_attempt: {
|
|
22314
|
-
$ref: string;
|
|
22315
|
-
};
|
|
22316
23814
|
ok: {
|
|
22317
23815
|
type: string;
|
|
22318
23816
|
};
|
|
@@ -22332,30 +23830,37 @@ declare const _default: {
|
|
|
22332
23830
|
};
|
|
22333
23831
|
};
|
|
22334
23832
|
security: ({
|
|
23833
|
+
client_session: never[];
|
|
23834
|
+
pat_with_workspace?: never;
|
|
23835
|
+
console_session_with_workspace?: never;
|
|
23836
|
+
api_key?: never;
|
|
23837
|
+
} | {
|
|
22335
23838
|
pat_with_workspace: never[];
|
|
23839
|
+
client_session?: never;
|
|
22336
23840
|
console_session_with_workspace?: never;
|
|
22337
23841
|
api_key?: never;
|
|
22338
23842
|
} | {
|
|
22339
23843
|
console_session_with_workspace: never[];
|
|
23844
|
+
client_session?: never;
|
|
22340
23845
|
pat_with_workspace?: never;
|
|
22341
23846
|
api_key?: never;
|
|
22342
23847
|
} | {
|
|
22343
23848
|
api_key: never[];
|
|
23849
|
+
client_session?: never;
|
|
22344
23850
|
pat_with_workspace?: never;
|
|
22345
23851
|
console_session_with_workspace?: never;
|
|
22346
23852
|
})[];
|
|
22347
23853
|
summary: string;
|
|
22348
23854
|
tags: string[];
|
|
22349
|
-
'x-action-attempt-type': string;
|
|
22350
23855
|
'x-fern-sdk-group-name': string[];
|
|
22351
23856
|
'x-fern-sdk-method-name': string;
|
|
22352
|
-
'x-
|
|
22353
|
-
'x-response-key': string;
|
|
23857
|
+
'x-response-key': null;
|
|
22354
23858
|
'x-title': string;
|
|
23859
|
+
'x-undocumented': string;
|
|
22355
23860
|
};
|
|
22356
23861
|
};
|
|
22357
|
-
'/thermostats/
|
|
22358
|
-
|
|
23862
|
+
'/thermostats/daily_programs/update': {
|
|
23863
|
+
patch: {
|
|
22359
23864
|
description: string;
|
|
22360
23865
|
operationId: string;
|
|
22361
23866
|
requestBody: {
|
|
@@ -22363,26 +23868,34 @@ declare const _default: {
|
|
|
22363
23868
|
'application/json': {
|
|
22364
23869
|
schema: {
|
|
22365
23870
|
properties: {
|
|
22366
|
-
|
|
23871
|
+
name: {
|
|
22367
23872
|
description: string;
|
|
22368
|
-
format: string;
|
|
22369
23873
|
type: string;
|
|
22370
23874
|
};
|
|
22371
|
-
|
|
23875
|
+
periods: {
|
|
22372
23876
|
description: string;
|
|
22373
|
-
|
|
23877
|
+
items: {
|
|
23878
|
+
properties: {
|
|
23879
|
+
climate_preset_key: {
|
|
23880
|
+
description: string;
|
|
23881
|
+
type: string;
|
|
23882
|
+
};
|
|
23883
|
+
starts_at_time: {
|
|
23884
|
+
description: string;
|
|
23885
|
+
pattern: string;
|
|
23886
|
+
type: string;
|
|
23887
|
+
};
|
|
23888
|
+
};
|
|
23889
|
+
required: string[];
|
|
23890
|
+
type: string;
|
|
23891
|
+
};
|
|
22374
23892
|
type: string;
|
|
22375
23893
|
};
|
|
22376
|
-
|
|
23894
|
+
thermostat_daily_program_id: {
|
|
22377
23895
|
description: string;
|
|
22378
23896
|
format: string;
|
|
22379
23897
|
type: string;
|
|
22380
23898
|
};
|
|
22381
|
-
sync: {
|
|
22382
|
-
default: boolean;
|
|
22383
|
-
type: string;
|
|
22384
|
-
'x-undocumented': string;
|
|
22385
|
-
};
|
|
22386
23899
|
};
|
|
22387
23900
|
required: string[];
|
|
22388
23901
|
type: string;
|
|
@@ -22396,9 +23909,6 @@ declare const _default: {
|
|
|
22396
23909
|
'application/json': {
|
|
22397
23910
|
schema: {
|
|
22398
23911
|
properties: {
|
|
22399
|
-
action_attempt: {
|
|
22400
|
-
$ref: string;
|
|
22401
|
-
};
|
|
22402
23912
|
ok: {
|
|
22403
23913
|
type: string;
|
|
22404
23914
|
};
|
|
@@ -22440,15 +23950,11 @@ declare const _default: {
|
|
|
22440
23950
|
})[];
|
|
22441
23951
|
summary: string;
|
|
22442
23952
|
tags: string[];
|
|
22443
|
-
'x-
|
|
22444
|
-
'x-
|
|
22445
|
-
'x-fern-sdk-method-name': string;
|
|
22446
|
-
'x-fern-sdk-return-value': string;
|
|
22447
|
-
'x-response-key': string;
|
|
23953
|
+
'x-fern-ignore': boolean;
|
|
23954
|
+
'x-response-key': null;
|
|
22448
23955
|
'x-title': string;
|
|
23956
|
+
'x-undocumented': string;
|
|
22449
23957
|
};
|
|
22450
|
-
};
|
|
22451
|
-
'/thermostats/create_climate_preset': {
|
|
22452
23958
|
post: {
|
|
22453
23959
|
description: string;
|
|
22454
23960
|
operationId: string;
|
|
@@ -22457,58 +23963,34 @@ declare const _default: {
|
|
|
22457
23963
|
'application/json': {
|
|
22458
23964
|
schema: {
|
|
22459
23965
|
properties: {
|
|
22460
|
-
|
|
22461
|
-
description: string;
|
|
22462
|
-
type: string;
|
|
22463
|
-
};
|
|
22464
|
-
cooling_set_point_celsius: {
|
|
22465
|
-
description: string;
|
|
22466
|
-
format: string;
|
|
22467
|
-
type: string;
|
|
22468
|
-
};
|
|
22469
|
-
cooling_set_point_fahrenheit: {
|
|
22470
|
-
description: string;
|
|
22471
|
-
format: string;
|
|
22472
|
-
type: string;
|
|
22473
|
-
};
|
|
22474
|
-
device_id: {
|
|
22475
|
-
description: string;
|
|
22476
|
-
format: string;
|
|
22477
|
-
type: string;
|
|
22478
|
-
};
|
|
22479
|
-
fan_mode_setting: {
|
|
23966
|
+
name: {
|
|
22480
23967
|
description: string;
|
|
22481
|
-
enum: string[];
|
|
22482
23968
|
type: string;
|
|
22483
23969
|
};
|
|
22484
|
-
|
|
23970
|
+
periods: {
|
|
22485
23971
|
description: string;
|
|
22486
|
-
|
|
23972
|
+
items: {
|
|
23973
|
+
properties: {
|
|
23974
|
+
climate_preset_key: {
|
|
23975
|
+
description: string;
|
|
23976
|
+
type: string;
|
|
23977
|
+
};
|
|
23978
|
+
starts_at_time: {
|
|
23979
|
+
description: string;
|
|
23980
|
+
pattern: string;
|
|
23981
|
+
type: string;
|
|
23982
|
+
};
|
|
23983
|
+
};
|
|
23984
|
+
required: string[];
|
|
23985
|
+
type: string;
|
|
23986
|
+
};
|
|
22487
23987
|
type: string;
|
|
22488
23988
|
};
|
|
22489
|
-
|
|
23989
|
+
thermostat_daily_program_id: {
|
|
22490
23990
|
description: string;
|
|
22491
23991
|
format: string;
|
|
22492
23992
|
type: string;
|
|
22493
23993
|
};
|
|
22494
|
-
hvac_mode_setting: {
|
|
22495
|
-
description: string;
|
|
22496
|
-
enum: string[];
|
|
22497
|
-
type: string;
|
|
22498
|
-
};
|
|
22499
|
-
manual_override_allowed: {
|
|
22500
|
-
default: boolean;
|
|
22501
|
-
deprecated: boolean;
|
|
22502
|
-
description: string;
|
|
22503
|
-
type: string;
|
|
22504
|
-
'x-deprecated': string;
|
|
22505
|
-
};
|
|
22506
|
-
name: {
|
|
22507
|
-
default: null;
|
|
22508
|
-
description: string;
|
|
22509
|
-
nullable: boolean;
|
|
22510
|
-
type: string;
|
|
22511
|
-
};
|
|
22512
23994
|
};
|
|
22513
23995
|
required: string[];
|
|
22514
23996
|
type: string;
|
|
@@ -22567,6 +24049,7 @@ declare const _default: {
|
|
|
22567
24049
|
'x-fern-sdk-method-name': string;
|
|
22568
24050
|
'x-response-key': null;
|
|
22569
24051
|
'x-title': string;
|
|
24052
|
+
'x-undocumented': string;
|
|
22570
24053
|
};
|
|
22571
24054
|
};
|
|
22572
24055
|
'/thermostats/delete_climate_preset': {
|
|
@@ -23017,6 +24500,11 @@ declare const _default: {
|
|
|
23017
24500
|
enum: string[];
|
|
23018
24501
|
type: string;
|
|
23019
24502
|
};
|
|
24503
|
+
page_cursor: {
|
|
24504
|
+
description: string;
|
|
24505
|
+
nullable: boolean;
|
|
24506
|
+
type: string;
|
|
24507
|
+
};
|
|
23020
24508
|
unstable_location_id: {
|
|
23021
24509
|
format: string;
|
|
23022
24510
|
nullable: boolean;
|
|
@@ -23205,13 +24693,12 @@ declare const _default: {
|
|
|
23205
24693
|
type: string;
|
|
23206
24694
|
};
|
|
23207
24695
|
is_override_allowed: {
|
|
23208
|
-
default: boolean;
|
|
23209
24696
|
description: string;
|
|
23210
24697
|
type: string;
|
|
23211
24698
|
};
|
|
23212
24699
|
max_override_period_minutes: {
|
|
23213
|
-
default: null;
|
|
23214
24700
|
description: string;
|
|
24701
|
+
exclusiveMinimum: boolean;
|
|
23215
24702
|
minimum: number;
|
|
23216
24703
|
nullable: boolean;
|
|
23217
24704
|
type: string;
|
|
@@ -23548,6 +25035,7 @@ declare const _default: {
|
|
|
23548
25035
|
};
|
|
23549
25036
|
max_override_period_minutes: {
|
|
23550
25037
|
description: string;
|
|
25038
|
+
exclusiveMinimum: boolean;
|
|
23551
25039
|
minimum: number;
|
|
23552
25040
|
nullable: boolean;
|
|
23553
25041
|
type: string;
|
|
@@ -23645,6 +25133,7 @@ declare const _default: {
|
|
|
23645
25133
|
};
|
|
23646
25134
|
max_override_period_minutes: {
|
|
23647
25135
|
description: string;
|
|
25136
|
+
exclusiveMinimum: boolean;
|
|
23648
25137
|
minimum: number;
|
|
23649
25138
|
nullable: boolean;
|
|
23650
25139
|
type: string;
|
|
@@ -25294,6 +26783,118 @@ declare const _default: {
|
|
|
25294
26783
|
'x-undocumented': string;
|
|
25295
26784
|
};
|
|
25296
26785
|
};
|
|
26786
|
+
'/unstable_access_methods/get': {
|
|
26787
|
+
post: {
|
|
26788
|
+
description: string;
|
|
26789
|
+
operationId: string;
|
|
26790
|
+
requestBody: {
|
|
26791
|
+
content: {
|
|
26792
|
+
'application/json': {
|
|
26793
|
+
schema: {
|
|
26794
|
+
properties: {
|
|
26795
|
+
access_method_id: {
|
|
26796
|
+
description: string;
|
|
26797
|
+
format: string;
|
|
26798
|
+
type: string;
|
|
26799
|
+
};
|
|
26800
|
+
};
|
|
26801
|
+
required: string[];
|
|
26802
|
+
type: string;
|
|
26803
|
+
};
|
|
26804
|
+
};
|
|
26805
|
+
};
|
|
26806
|
+
};
|
|
26807
|
+
responses: {
|
|
26808
|
+
200: {
|
|
26809
|
+
content: {
|
|
26810
|
+
'application/json': {
|
|
26811
|
+
schema: {
|
|
26812
|
+
properties: {
|
|
26813
|
+
access_method: {
|
|
26814
|
+
properties: {
|
|
26815
|
+
access_method_id: {
|
|
26816
|
+
description: string;
|
|
26817
|
+
format: string;
|
|
26818
|
+
type: string;
|
|
26819
|
+
};
|
|
26820
|
+
created_at: {
|
|
26821
|
+
description: string;
|
|
26822
|
+
format: string;
|
|
26823
|
+
type: string;
|
|
26824
|
+
};
|
|
26825
|
+
display_name: {
|
|
26826
|
+
description: string;
|
|
26827
|
+
type: string;
|
|
26828
|
+
};
|
|
26829
|
+
instant_key_url: {
|
|
26830
|
+
description: string;
|
|
26831
|
+
type: string;
|
|
26832
|
+
};
|
|
26833
|
+
is_card_encoding_required: {
|
|
26834
|
+
description: string;
|
|
26835
|
+
type: string;
|
|
26836
|
+
};
|
|
26837
|
+
issued_at: {
|
|
26838
|
+
description: string;
|
|
26839
|
+
format: string;
|
|
26840
|
+
type: string;
|
|
26841
|
+
};
|
|
26842
|
+
mode: {
|
|
26843
|
+
description: string;
|
|
26844
|
+
enum: string[];
|
|
26845
|
+
type: string;
|
|
26846
|
+
};
|
|
26847
|
+
workspace_id: {
|
|
26848
|
+
description: string;
|
|
26849
|
+
format: string;
|
|
26850
|
+
type: string;
|
|
26851
|
+
};
|
|
26852
|
+
};
|
|
26853
|
+
required: string[];
|
|
26854
|
+
type: string;
|
|
26855
|
+
'x-undocumented': string;
|
|
26856
|
+
};
|
|
26857
|
+
ok: {
|
|
26858
|
+
type: string;
|
|
26859
|
+
};
|
|
26860
|
+
};
|
|
26861
|
+
required: string[];
|
|
26862
|
+
type: string;
|
|
26863
|
+
};
|
|
26864
|
+
};
|
|
26865
|
+
};
|
|
26866
|
+
description: string;
|
|
26867
|
+
};
|
|
26868
|
+
400: {
|
|
26869
|
+
description: string;
|
|
26870
|
+
};
|
|
26871
|
+
401: {
|
|
26872
|
+
description: string;
|
|
26873
|
+
};
|
|
26874
|
+
};
|
|
26875
|
+
security: ({
|
|
26876
|
+
pat_with_workspace: never[];
|
|
26877
|
+
console_session_with_workspace?: never;
|
|
26878
|
+
api_key?: never;
|
|
26879
|
+
} | {
|
|
26880
|
+
console_session_with_workspace: never[];
|
|
26881
|
+
pat_with_workspace?: never;
|
|
26882
|
+
api_key?: never;
|
|
26883
|
+
} | {
|
|
26884
|
+
api_key: never[];
|
|
26885
|
+
pat_with_workspace?: never;
|
|
26886
|
+
console_session_with_workspace?: never;
|
|
26887
|
+
})[];
|
|
26888
|
+
summary: string;
|
|
26889
|
+
tags: never[];
|
|
26890
|
+
'x-fern-sdk-group-name': string[];
|
|
26891
|
+
'x-fern-sdk-method-name': string;
|
|
26892
|
+
'x-fern-sdk-return-value': string;
|
|
26893
|
+
'x-response-key': string;
|
|
26894
|
+
'x-title': string;
|
|
26895
|
+
'x-undocumented': string;
|
|
26896
|
+
};
|
|
26897
|
+
};
|
|
25297
26898
|
'/unstable_access_methods/list': {
|
|
25298
26899
|
post: {
|
|
25299
26900
|
description: string;
|
|
@@ -25338,10 +26939,17 @@ declare const _default: {
|
|
|
25338
26939
|
description: string;
|
|
25339
26940
|
type: string;
|
|
25340
26941
|
};
|
|
26942
|
+
instant_key_url: {
|
|
26943
|
+
description: string;
|
|
26944
|
+
type: string;
|
|
26945
|
+
};
|
|
26946
|
+
is_card_encoding_required: {
|
|
26947
|
+
description: string;
|
|
26948
|
+
type: string;
|
|
26949
|
+
};
|
|
25341
26950
|
issued_at: {
|
|
25342
26951
|
description: string;
|
|
25343
26952
|
format: string;
|
|
25344
|
-
nullable: boolean;
|
|
25345
26953
|
type: string;
|
|
25346
26954
|
};
|
|
25347
26955
|
mode: {
|
|
@@ -25394,10 +27002,155 @@ declare const _default: {
|
|
|
25394
27002
|
})[];
|
|
25395
27003
|
summary: string;
|
|
25396
27004
|
tags: never[];
|
|
25397
|
-
'x-fern-sdk-group-name': string[];
|
|
25398
|
-
'x-fern-sdk-method-name': string;
|
|
25399
|
-
'x-fern-sdk-return-value': string;
|
|
25400
|
-
'x-response-key': string;
|
|
27005
|
+
'x-fern-sdk-group-name': string[];
|
|
27006
|
+
'x-fern-sdk-method-name': string;
|
|
27007
|
+
'x-fern-sdk-return-value': string;
|
|
27008
|
+
'x-response-key': string;
|
|
27009
|
+
'x-title': string;
|
|
27010
|
+
'x-undocumented': string;
|
|
27011
|
+
};
|
|
27012
|
+
};
|
|
27013
|
+
'/unstable_locations/add_acs_entrances': {
|
|
27014
|
+
post: {
|
|
27015
|
+
description: string;
|
|
27016
|
+
operationId: string;
|
|
27017
|
+
requestBody: {
|
|
27018
|
+
content: {
|
|
27019
|
+
'application/json': {
|
|
27020
|
+
schema: {
|
|
27021
|
+
properties: {
|
|
27022
|
+
acs_entrance_ids: {
|
|
27023
|
+
items: {
|
|
27024
|
+
format: string;
|
|
27025
|
+
type: string;
|
|
27026
|
+
};
|
|
27027
|
+
minItems: number;
|
|
27028
|
+
type: string;
|
|
27029
|
+
};
|
|
27030
|
+
location_id: {
|
|
27031
|
+
format: string;
|
|
27032
|
+
type: string;
|
|
27033
|
+
};
|
|
27034
|
+
};
|
|
27035
|
+
required: string[];
|
|
27036
|
+
type: string;
|
|
27037
|
+
};
|
|
27038
|
+
};
|
|
27039
|
+
};
|
|
27040
|
+
};
|
|
27041
|
+
responses: {
|
|
27042
|
+
200: {
|
|
27043
|
+
content: {
|
|
27044
|
+
'application/json': {
|
|
27045
|
+
schema: {
|
|
27046
|
+
properties: {
|
|
27047
|
+
ok: {
|
|
27048
|
+
type: string;
|
|
27049
|
+
};
|
|
27050
|
+
};
|
|
27051
|
+
required: string[];
|
|
27052
|
+
type: string;
|
|
27053
|
+
};
|
|
27054
|
+
};
|
|
27055
|
+
};
|
|
27056
|
+
description: string;
|
|
27057
|
+
};
|
|
27058
|
+
400: {
|
|
27059
|
+
description: string;
|
|
27060
|
+
};
|
|
27061
|
+
401: {
|
|
27062
|
+
description: string;
|
|
27063
|
+
};
|
|
27064
|
+
};
|
|
27065
|
+
security: ({
|
|
27066
|
+
pat_with_workspace: never[];
|
|
27067
|
+
console_session_with_workspace?: never;
|
|
27068
|
+
api_key?: never;
|
|
27069
|
+
} | {
|
|
27070
|
+
console_session_with_workspace: never[];
|
|
27071
|
+
pat_with_workspace?: never;
|
|
27072
|
+
api_key?: never;
|
|
27073
|
+
} | {
|
|
27074
|
+
api_key: never[];
|
|
27075
|
+
pat_with_workspace?: never;
|
|
27076
|
+
console_session_with_workspace?: never;
|
|
27077
|
+
})[];
|
|
27078
|
+
summary: string;
|
|
27079
|
+
tags: never[];
|
|
27080
|
+
'x-fern-sdk-group-name': string[];
|
|
27081
|
+
'x-fern-sdk-method-name': string;
|
|
27082
|
+
'x-response-key': null;
|
|
27083
|
+
'x-title': string;
|
|
27084
|
+
'x-undocumented': string;
|
|
27085
|
+
};
|
|
27086
|
+
put: {
|
|
27087
|
+
description: string;
|
|
27088
|
+
operationId: string;
|
|
27089
|
+
requestBody: {
|
|
27090
|
+
content: {
|
|
27091
|
+
'application/json': {
|
|
27092
|
+
schema: {
|
|
27093
|
+
properties: {
|
|
27094
|
+
acs_entrance_ids: {
|
|
27095
|
+
items: {
|
|
27096
|
+
format: string;
|
|
27097
|
+
type: string;
|
|
27098
|
+
};
|
|
27099
|
+
minItems: number;
|
|
27100
|
+
type: string;
|
|
27101
|
+
};
|
|
27102
|
+
location_id: {
|
|
27103
|
+
format: string;
|
|
27104
|
+
type: string;
|
|
27105
|
+
};
|
|
27106
|
+
};
|
|
27107
|
+
required: string[];
|
|
27108
|
+
type: string;
|
|
27109
|
+
};
|
|
27110
|
+
};
|
|
27111
|
+
};
|
|
27112
|
+
};
|
|
27113
|
+
responses: {
|
|
27114
|
+
200: {
|
|
27115
|
+
content: {
|
|
27116
|
+
'application/json': {
|
|
27117
|
+
schema: {
|
|
27118
|
+
properties: {
|
|
27119
|
+
ok: {
|
|
27120
|
+
type: string;
|
|
27121
|
+
};
|
|
27122
|
+
};
|
|
27123
|
+
required: string[];
|
|
27124
|
+
type: string;
|
|
27125
|
+
};
|
|
27126
|
+
};
|
|
27127
|
+
};
|
|
27128
|
+
description: string;
|
|
27129
|
+
};
|
|
27130
|
+
400: {
|
|
27131
|
+
description: string;
|
|
27132
|
+
};
|
|
27133
|
+
401: {
|
|
27134
|
+
description: string;
|
|
27135
|
+
};
|
|
27136
|
+
};
|
|
27137
|
+
security: ({
|
|
27138
|
+
pat_with_workspace: never[];
|
|
27139
|
+
console_session_with_workspace?: never;
|
|
27140
|
+
api_key?: never;
|
|
27141
|
+
} | {
|
|
27142
|
+
console_session_with_workspace: never[];
|
|
27143
|
+
pat_with_workspace?: never;
|
|
27144
|
+
api_key?: never;
|
|
27145
|
+
} | {
|
|
27146
|
+
api_key: never[];
|
|
27147
|
+
pat_with_workspace?: never;
|
|
27148
|
+
console_session_with_workspace?: never;
|
|
27149
|
+
})[];
|
|
27150
|
+
summary: string;
|
|
27151
|
+
tags: never[];
|
|
27152
|
+
'x-fern-ignore': boolean;
|
|
27153
|
+
'x-response-key': null;
|
|
25401
27154
|
'x-title': string;
|
|
25402
27155
|
'x-undocumented': string;
|
|
25403
27156
|
};
|
|
@@ -25556,6 +27309,20 @@ declare const _default: {
|
|
|
25556
27309
|
'application/json': {
|
|
25557
27310
|
schema: {
|
|
25558
27311
|
properties: {
|
|
27312
|
+
acs_entrance_ids: {
|
|
27313
|
+
items: {
|
|
27314
|
+
format: string;
|
|
27315
|
+
type: string;
|
|
27316
|
+
};
|
|
27317
|
+
type: string;
|
|
27318
|
+
};
|
|
27319
|
+
device_ids: {
|
|
27320
|
+
items: {
|
|
27321
|
+
format: string;
|
|
27322
|
+
type: string;
|
|
27323
|
+
};
|
|
27324
|
+
type: string;
|
|
27325
|
+
};
|
|
25559
27326
|
geolocation: {
|
|
25560
27327
|
properties: {
|
|
25561
27328
|
latitude: {
|
|
@@ -26059,6 +27826,79 @@ declare const _default: {
|
|
|
26059
27826
|
'x-undocumented': string;
|
|
26060
27827
|
};
|
|
26061
27828
|
};
|
|
27829
|
+
'/unstable_locations/remove_acs_entrances': {
|
|
27830
|
+
post: {
|
|
27831
|
+
description: string;
|
|
27832
|
+
operationId: string;
|
|
27833
|
+
requestBody: {
|
|
27834
|
+
content: {
|
|
27835
|
+
'application/json': {
|
|
27836
|
+
schema: {
|
|
27837
|
+
properties: {
|
|
27838
|
+
acs_entrance_ids: {
|
|
27839
|
+
items: {
|
|
27840
|
+
format: string;
|
|
27841
|
+
type: string;
|
|
27842
|
+
};
|
|
27843
|
+
type: string;
|
|
27844
|
+
};
|
|
27845
|
+
location_id: {
|
|
27846
|
+
format: string;
|
|
27847
|
+
type: string;
|
|
27848
|
+
};
|
|
27849
|
+
};
|
|
27850
|
+
required: string[];
|
|
27851
|
+
type: string;
|
|
27852
|
+
};
|
|
27853
|
+
};
|
|
27854
|
+
};
|
|
27855
|
+
};
|
|
27856
|
+
responses: {
|
|
27857
|
+
200: {
|
|
27858
|
+
content: {
|
|
27859
|
+
'application/json': {
|
|
27860
|
+
schema: {
|
|
27861
|
+
properties: {
|
|
27862
|
+
ok: {
|
|
27863
|
+
type: string;
|
|
27864
|
+
};
|
|
27865
|
+
};
|
|
27866
|
+
required: string[];
|
|
27867
|
+
type: string;
|
|
27868
|
+
};
|
|
27869
|
+
};
|
|
27870
|
+
};
|
|
27871
|
+
description: string;
|
|
27872
|
+
};
|
|
27873
|
+
400: {
|
|
27874
|
+
description: string;
|
|
27875
|
+
};
|
|
27876
|
+
401: {
|
|
27877
|
+
description: string;
|
|
27878
|
+
};
|
|
27879
|
+
};
|
|
27880
|
+
security: ({
|
|
27881
|
+
pat_with_workspace: never[];
|
|
27882
|
+
console_session_with_workspace?: never;
|
|
27883
|
+
api_key?: never;
|
|
27884
|
+
} | {
|
|
27885
|
+
console_session_with_workspace: never[];
|
|
27886
|
+
pat_with_workspace?: never;
|
|
27887
|
+
api_key?: never;
|
|
27888
|
+
} | {
|
|
27889
|
+
api_key: never[];
|
|
27890
|
+
pat_with_workspace?: never;
|
|
27891
|
+
console_session_with_workspace?: never;
|
|
27892
|
+
})[];
|
|
27893
|
+
summary: string;
|
|
27894
|
+
tags: never[];
|
|
27895
|
+
'x-fern-sdk-group-name': string[];
|
|
27896
|
+
'x-fern-sdk-method-name': string;
|
|
27897
|
+
'x-response-key': null;
|
|
27898
|
+
'x-title': string;
|
|
27899
|
+
'x-undocumented': string;
|
|
27900
|
+
};
|
|
27901
|
+
};
|
|
26062
27902
|
'/unstable_locations/remove_devices': {
|
|
26063
27903
|
post: {
|
|
26064
27904
|
description: string;
|
|
@@ -27040,6 +28880,12 @@ declare const _default: {
|
|
|
27040
28880
|
'application/json': {
|
|
27041
28881
|
schema: {
|
|
27042
28882
|
properties: {
|
|
28883
|
+
max_use_count: {
|
|
28884
|
+
default: number;
|
|
28885
|
+
description: string;
|
|
28886
|
+
format: string;
|
|
28887
|
+
type: string;
|
|
28888
|
+
};
|
|
27043
28889
|
user_identity_id: {
|
|
27044
28890
|
description: string;
|
|
27045
28891
|
format: string;
|
|
@@ -28405,6 +30251,28 @@ declare const _default: {
|
|
|
28405
30251
|
type: string;
|
|
28406
30252
|
'x-deprecated': string;
|
|
28407
30253
|
};
|
|
30254
|
+
connect_webview_customization: {
|
|
30255
|
+
properties: {
|
|
30256
|
+
logo_shape: {
|
|
30257
|
+
enum: string[];
|
|
30258
|
+
nullable: boolean;
|
|
30259
|
+
type: string;
|
|
30260
|
+
};
|
|
30261
|
+
primary_button_color: {
|
|
30262
|
+
nullable: boolean;
|
|
30263
|
+
type: string;
|
|
30264
|
+
};
|
|
30265
|
+
primary_button_text_color: {
|
|
30266
|
+
nullable: boolean;
|
|
30267
|
+
type: string;
|
|
30268
|
+
};
|
|
30269
|
+
success_message: {
|
|
30270
|
+
nullable: boolean;
|
|
30271
|
+
type: string;
|
|
30272
|
+
};
|
|
30273
|
+
};
|
|
30274
|
+
type: string;
|
|
30275
|
+
};
|
|
28408
30276
|
is_sandbox: {
|
|
28409
30277
|
default: boolean;
|
|
28410
30278
|
type: string;
|
|
@@ -28413,17 +30281,25 @@ declare const _default: {
|
|
|
28413
30281
|
type: string;
|
|
28414
30282
|
};
|
|
28415
30283
|
webview_logo_shape: {
|
|
30284
|
+
deprecated: boolean;
|
|
28416
30285
|
enum: string[];
|
|
28417
30286
|
type: string;
|
|
30287
|
+
'x-deprecated': string;
|
|
28418
30288
|
};
|
|
28419
30289
|
webview_primary_button_color: {
|
|
30290
|
+
deprecated: boolean;
|
|
28420
30291
|
type: string;
|
|
30292
|
+
'x-deprecated': string;
|
|
28421
30293
|
};
|
|
28422
30294
|
webview_primary_button_text_color: {
|
|
30295
|
+
deprecated: boolean;
|
|
28423
30296
|
type: string;
|
|
30297
|
+
'x-deprecated': string;
|
|
28424
30298
|
};
|
|
28425
30299
|
webview_success_message: {
|
|
30300
|
+
deprecated: boolean;
|
|
28426
30301
|
type: string;
|
|
30302
|
+
'x-deprecated': string;
|
|
28427
30303
|
};
|
|
28428
30304
|
};
|
|
28429
30305
|
required: string[];
|
|
@@ -28810,6 +30686,155 @@ declare const _default: {
|
|
|
28810
30686
|
'x-response-key': string;
|
|
28811
30687
|
};
|
|
28812
30688
|
};
|
|
30689
|
+
'/workspaces/update': {
|
|
30690
|
+
patch: {
|
|
30691
|
+
operationId: string;
|
|
30692
|
+
requestBody: {
|
|
30693
|
+
content: {
|
|
30694
|
+
'application/json': {
|
|
30695
|
+
schema: {
|
|
30696
|
+
properties: {
|
|
30697
|
+
connect_partner_name: {
|
|
30698
|
+
type: string;
|
|
30699
|
+
};
|
|
30700
|
+
connect_webview_customization: {
|
|
30701
|
+
properties: {
|
|
30702
|
+
logo_shape: {
|
|
30703
|
+
enum: string[];
|
|
30704
|
+
nullable: boolean;
|
|
30705
|
+
type: string;
|
|
30706
|
+
};
|
|
30707
|
+
primary_button_color: {
|
|
30708
|
+
nullable: boolean;
|
|
30709
|
+
type: string;
|
|
30710
|
+
};
|
|
30711
|
+
primary_button_text_color: {
|
|
30712
|
+
nullable: boolean;
|
|
30713
|
+
type: string;
|
|
30714
|
+
};
|
|
30715
|
+
success_message: {
|
|
30716
|
+
nullable: boolean;
|
|
30717
|
+
type: string;
|
|
30718
|
+
};
|
|
30719
|
+
};
|
|
30720
|
+
type: string;
|
|
30721
|
+
};
|
|
30722
|
+
is_suspended: {
|
|
30723
|
+
type: string;
|
|
30724
|
+
};
|
|
30725
|
+
name: {
|
|
30726
|
+
type: string;
|
|
30727
|
+
};
|
|
30728
|
+
};
|
|
30729
|
+
type: string;
|
|
30730
|
+
};
|
|
30731
|
+
};
|
|
30732
|
+
};
|
|
30733
|
+
};
|
|
30734
|
+
responses: {
|
|
30735
|
+
200: {
|
|
30736
|
+
description: string;
|
|
30737
|
+
};
|
|
30738
|
+
400: {
|
|
30739
|
+
description: string;
|
|
30740
|
+
};
|
|
30741
|
+
401: {
|
|
30742
|
+
description: string;
|
|
30743
|
+
};
|
|
30744
|
+
};
|
|
30745
|
+
security: ({
|
|
30746
|
+
api_key: never[];
|
|
30747
|
+
console_session_with_workspace?: never;
|
|
30748
|
+
pat_with_workspace?: never;
|
|
30749
|
+
} | {
|
|
30750
|
+
console_session_with_workspace: never[];
|
|
30751
|
+
api_key?: never;
|
|
30752
|
+
pat_with_workspace?: never;
|
|
30753
|
+
} | {
|
|
30754
|
+
pat_with_workspace: never[];
|
|
30755
|
+
api_key?: never;
|
|
30756
|
+
console_session_with_workspace?: never;
|
|
30757
|
+
})[];
|
|
30758
|
+
summary: string;
|
|
30759
|
+
tags: string[];
|
|
30760
|
+
'x-fern-ignore': boolean;
|
|
30761
|
+
'x-response-key': null;
|
|
30762
|
+
};
|
|
30763
|
+
post: {
|
|
30764
|
+
operationId: string;
|
|
30765
|
+
requestBody: {
|
|
30766
|
+
content: {
|
|
30767
|
+
'application/json': {
|
|
30768
|
+
schema: {
|
|
30769
|
+
properties: {
|
|
30770
|
+
connect_partner_name: {
|
|
30771
|
+
type: string;
|
|
30772
|
+
};
|
|
30773
|
+
connect_webview_customization: {
|
|
30774
|
+
properties: {
|
|
30775
|
+
logo_shape: {
|
|
30776
|
+
enum: string[];
|
|
30777
|
+
nullable: boolean;
|
|
30778
|
+
type: string;
|
|
30779
|
+
};
|
|
30780
|
+
primary_button_color: {
|
|
30781
|
+
nullable: boolean;
|
|
30782
|
+
type: string;
|
|
30783
|
+
};
|
|
30784
|
+
primary_button_text_color: {
|
|
30785
|
+
nullable: boolean;
|
|
30786
|
+
type: string;
|
|
30787
|
+
};
|
|
30788
|
+
success_message: {
|
|
30789
|
+
nullable: boolean;
|
|
30790
|
+
type: string;
|
|
30791
|
+
};
|
|
30792
|
+
};
|
|
30793
|
+
type: string;
|
|
30794
|
+
};
|
|
30795
|
+
is_suspended: {
|
|
30796
|
+
type: string;
|
|
30797
|
+
};
|
|
30798
|
+
name: {
|
|
30799
|
+
type: string;
|
|
30800
|
+
};
|
|
30801
|
+
};
|
|
30802
|
+
type: string;
|
|
30803
|
+
};
|
|
30804
|
+
};
|
|
30805
|
+
};
|
|
30806
|
+
};
|
|
30807
|
+
responses: {
|
|
30808
|
+
200: {
|
|
30809
|
+
description: string;
|
|
30810
|
+
};
|
|
30811
|
+
400: {
|
|
30812
|
+
description: string;
|
|
30813
|
+
};
|
|
30814
|
+
401: {
|
|
30815
|
+
description: string;
|
|
30816
|
+
};
|
|
30817
|
+
};
|
|
30818
|
+
security: ({
|
|
30819
|
+
api_key: never[];
|
|
30820
|
+
console_session_with_workspace?: never;
|
|
30821
|
+
pat_with_workspace?: never;
|
|
30822
|
+
} | {
|
|
30823
|
+
console_session_with_workspace: never[];
|
|
30824
|
+
api_key?: never;
|
|
30825
|
+
pat_with_workspace?: never;
|
|
30826
|
+
} | {
|
|
30827
|
+
pat_with_workspace: never[];
|
|
30828
|
+
api_key?: never;
|
|
30829
|
+
console_session_with_workspace?: never;
|
|
30830
|
+
})[];
|
|
30831
|
+
summary: string;
|
|
30832
|
+
tags: string[];
|
|
30833
|
+
'x-fern-sdk-group-name': string[];
|
|
30834
|
+
'x-fern-sdk-method-name': string;
|
|
30835
|
+
'x-response-key': null;
|
|
30836
|
+
};
|
|
30837
|
+
};
|
|
28813
30838
|
};
|
|
28814
30839
|
servers: {
|
|
28815
30840
|
url: string;
|