@seamapi/types 1.226.0 → 1.228.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +50 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -224
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +0 -30
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +0 -30
- package/lib/seam/connect/models/devices/device.d.ts +0 -42
- package/lib/seam/connect/models/devices/phone.d.ts +0 -30
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -30
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.js +0 -2
- package/lib/seam/connect/models/thermostats/climate-setting.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +69 -60
- package/lib/seam/connect/openapi.js +50 -24
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -86
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-setting.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +50 -24
- package/src/lib/seam/connect/route-types.ts +47 -86
|
@@ -1270,8 +1270,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1270
1270
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1271
1271
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1272
1272
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1273
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1274
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1275
1273
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1276
1274
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1277
1275
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1279,8 +1277,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1279
1277
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1280
1278
|
manual_override_allowed: z.ZodBoolean;
|
|
1281
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1282
|
-
automatic_heating_enabled: boolean;
|
|
1283
|
-
automatic_cooling_enabled: boolean;
|
|
1284
1280
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1285
1281
|
manual_override_allowed: boolean;
|
|
1286
1282
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1288,8 +1284,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1288
1284
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1289
1285
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1290
1286
|
}, {
|
|
1291
|
-
automatic_heating_enabled: boolean;
|
|
1292
|
-
automatic_cooling_enabled: boolean;
|
|
1293
1287
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1294
1288
|
manual_override_allowed: boolean;
|
|
1295
1289
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1298,8 +1292,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1298
1292
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1299
1293
|
}>>;
|
|
1300
1294
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1301
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
1302
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
1303
1295
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
1304
1296
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1305
1297
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1307,8 +1299,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1307
1299
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1308
1300
|
manual_override_allowed: z.ZodBoolean;
|
|
1309
1301
|
}, "strip", z.ZodTypeAny, {
|
|
1310
|
-
automatic_heating_enabled: boolean;
|
|
1311
|
-
automatic_cooling_enabled: boolean;
|
|
1312
1302
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1313
1303
|
manual_override_allowed: boolean;
|
|
1314
1304
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1316,8 +1306,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1316
1306
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1317
1307
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1318
1308
|
}, {
|
|
1319
|
-
automatic_heating_enabled: boolean;
|
|
1320
|
-
automatic_cooling_enabled: boolean;
|
|
1321
1309
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1322
1310
|
manual_override_allowed: boolean;
|
|
1323
1311
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1336,8 +1324,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1336
1324
|
created_at: z.ZodString;
|
|
1337
1325
|
errors: z.ZodAny;
|
|
1338
1326
|
}, {
|
|
1339
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1340
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1341
1327
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1342
1328
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1343
1329
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1353,8 +1339,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1353
1339
|
schedule_ends_at: string;
|
|
1354
1340
|
name?: string | undefined;
|
|
1355
1341
|
errors?: any;
|
|
1356
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1357
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1358
1342
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1359
1343
|
cooling_set_point_celsius?: number | undefined;
|
|
1360
1344
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1370,8 +1354,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1370
1354
|
schedule_ends_at: string;
|
|
1371
1355
|
name?: string | undefined;
|
|
1372
1356
|
errors?: any;
|
|
1373
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1374
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1375
1357
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1376
1358
|
cooling_set_point_celsius?: number | undefined;
|
|
1377
1359
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1400,8 +1382,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1400
1382
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1401
1383
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1402
1384
|
current_climate_setting?: {
|
|
1403
|
-
automatic_heating_enabled: boolean;
|
|
1404
|
-
automatic_cooling_enabled: boolean;
|
|
1405
1385
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1406
1386
|
manual_override_allowed: boolean;
|
|
1407
1387
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1410,8 +1390,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1410
1390
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1411
1391
|
} | undefined;
|
|
1412
1392
|
default_climate_setting?: {
|
|
1413
|
-
automatic_heating_enabled: boolean;
|
|
1414
|
-
automatic_cooling_enabled: boolean;
|
|
1415
1393
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1416
1394
|
manual_override_allowed: boolean;
|
|
1417
1395
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1429,8 +1407,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1429
1407
|
schedule_ends_at: string;
|
|
1430
1408
|
name?: string | undefined;
|
|
1431
1409
|
errors?: any;
|
|
1432
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1433
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1434
1410
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1435
1411
|
cooling_set_point_celsius?: number | undefined;
|
|
1436
1412
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1459,8 +1435,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1459
1435
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1460
1436
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
1461
1437
|
current_climate_setting?: {
|
|
1462
|
-
automatic_heating_enabled: boolean;
|
|
1463
|
-
automatic_cooling_enabled: boolean;
|
|
1464
1438
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1465
1439
|
manual_override_allowed: boolean;
|
|
1466
1440
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1469,8 +1443,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1469
1443
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1470
1444
|
} | undefined;
|
|
1471
1445
|
default_climate_setting?: {
|
|
1472
|
-
automatic_heating_enabled: boolean;
|
|
1473
|
-
automatic_cooling_enabled: boolean;
|
|
1474
1446
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
1475
1447
|
manual_override_allowed: boolean;
|
|
1476
1448
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1488,8 +1460,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1488
1460
|
schedule_ends_at: string;
|
|
1489
1461
|
name?: string | undefined;
|
|
1490
1462
|
errors?: any;
|
|
1491
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
1492
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
1493
1463
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1494
1464
|
cooling_set_point_celsius?: number | undefined;
|
|
1495
1465
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -9,8 +9,6 @@ export declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendSh
|
|
|
9
9
|
created_at: z.ZodString;
|
|
10
10
|
errors: z.ZodAny;
|
|
11
11
|
}, {
|
|
12
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
14
12
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
15
13
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16
14
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -26,8 +24,6 @@ export declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendSh
|
|
|
26
24
|
schedule_ends_at: string;
|
|
27
25
|
name?: string | undefined;
|
|
28
26
|
errors?: any;
|
|
29
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
30
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31
27
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
32
28
|
cooling_set_point_celsius?: number | undefined;
|
|
33
29
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -43,8 +39,6 @@ export declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendSh
|
|
|
43
39
|
schedule_ends_at: string;
|
|
44
40
|
name?: string | undefined;
|
|
45
41
|
errors?: any;
|
|
46
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
47
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
48
42
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
49
43
|
cooling_set_point_celsius?: number | undefined;
|
|
50
44
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const climate_setting: z.ZodObject<{
|
|
3
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
4
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
5
3
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
6
4
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
7
5
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9,8 +7,6 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
9
7
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
10
8
|
manual_override_allowed: z.ZodBoolean;
|
|
11
9
|
}, "strip", z.ZodTypeAny, {
|
|
12
|
-
automatic_heating_enabled: boolean;
|
|
13
|
-
automatic_cooling_enabled: boolean;
|
|
14
10
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
15
11
|
manual_override_allowed: boolean;
|
|
16
12
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -18,8 +14,6 @@ export declare const climate_setting: z.ZodObject<{
|
|
|
18
14
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
19
15
|
heating_set_point_fahrenheit?: number | undefined;
|
|
20
16
|
}, {
|
|
21
|
-
automatic_heating_enabled: boolean;
|
|
22
|
-
automatic_cooling_enabled: boolean;
|
|
23
17
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
24
18
|
manual_override_allowed: boolean;
|
|
25
19
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { hvac_mode_setting } from './modes.js';
|
|
3
3
|
export const climate_setting = z.object({
|
|
4
|
-
automatic_heating_enabled: z.boolean(),
|
|
5
|
-
automatic_cooling_enabled: z.boolean(),
|
|
6
4
|
hvac_mode_setting,
|
|
7
5
|
cooling_set_point_celsius: z.number().optional(),
|
|
8
6
|
heating_set_point_celsius: z.number().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"climate-setting.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-setting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAE9C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,
|
|
1
|
+
{"version":3,"file":"climate-setting.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/climate-setting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAA;AAE9C,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,iBAAiB;IACjB,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,yBAAyB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,4BAA4B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE;CACrC,CAAC,CAAA"}
|
|
@@ -1022,12 +1022,6 @@ declare const _default: {
|
|
|
1022
1022
|
};
|
|
1023
1023
|
climate_setting_schedule: {
|
|
1024
1024
|
properties: {
|
|
1025
|
-
automatic_cooling_enabled: {
|
|
1026
|
-
type: string;
|
|
1027
|
-
};
|
|
1028
|
-
automatic_heating_enabled: {
|
|
1029
|
-
type: string;
|
|
1030
|
-
};
|
|
1031
1025
|
climate_setting_schedule_id: {
|
|
1032
1026
|
format: string;
|
|
1033
1027
|
type: string;
|
|
@@ -2321,12 +2315,6 @@ declare const _default: {
|
|
|
2321
2315
|
properties: {
|
|
2322
2316
|
active_climate_setting_schedule: {
|
|
2323
2317
|
properties: {
|
|
2324
|
-
automatic_cooling_enabled: {
|
|
2325
|
-
type: string;
|
|
2326
|
-
};
|
|
2327
|
-
automatic_heating_enabled: {
|
|
2328
|
-
type: string;
|
|
2329
|
-
};
|
|
2330
2318
|
climate_setting_schedule_id: {
|
|
2331
2319
|
format: string;
|
|
2332
2320
|
type: string;
|
|
@@ -2391,12 +2379,6 @@ declare const _default: {
|
|
|
2391
2379
|
};
|
|
2392
2380
|
current_climate_setting: {
|
|
2393
2381
|
properties: {
|
|
2394
|
-
automatic_cooling_enabled: {
|
|
2395
|
-
type: string;
|
|
2396
|
-
};
|
|
2397
|
-
automatic_heating_enabled: {
|
|
2398
|
-
type: string;
|
|
2399
|
-
};
|
|
2400
2382
|
cooling_set_point_celsius: {
|
|
2401
2383
|
format: string;
|
|
2402
2384
|
type: string;
|
|
@@ -2426,12 +2408,6 @@ declare const _default: {
|
|
|
2426
2408
|
};
|
|
2427
2409
|
default_climate_setting: {
|
|
2428
2410
|
properties: {
|
|
2429
|
-
automatic_cooling_enabled: {
|
|
2430
|
-
type: string;
|
|
2431
|
-
};
|
|
2432
|
-
automatic_heating_enabled: {
|
|
2433
|
-
type: string;
|
|
2434
|
-
};
|
|
2435
2411
|
cooling_set_point_celsius: {
|
|
2436
2412
|
format: string;
|
|
2437
2413
|
type: string;
|
|
@@ -5570,6 +5546,75 @@ declare const _default: {
|
|
|
5570
5546
|
'x-fern-sdk-return-value': string;
|
|
5571
5547
|
};
|
|
5572
5548
|
};
|
|
5549
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
5550
|
+
post: {
|
|
5551
|
+
operationId: string;
|
|
5552
|
+
requestBody: {
|
|
5553
|
+
content: {
|
|
5554
|
+
'application/json': {
|
|
5555
|
+
schema: {
|
|
5556
|
+
properties: {
|
|
5557
|
+
acs_access_group_id: {
|
|
5558
|
+
format: string;
|
|
5559
|
+
type: string;
|
|
5560
|
+
};
|
|
5561
|
+
};
|
|
5562
|
+
required: string[];
|
|
5563
|
+
type: string;
|
|
5564
|
+
};
|
|
5565
|
+
};
|
|
5566
|
+
};
|
|
5567
|
+
};
|
|
5568
|
+
responses: {
|
|
5569
|
+
200: {
|
|
5570
|
+
content: {
|
|
5571
|
+
'application/json': {
|
|
5572
|
+
schema: {
|
|
5573
|
+
properties: {
|
|
5574
|
+
acs_entrances: {
|
|
5575
|
+
items: {
|
|
5576
|
+
$ref: string;
|
|
5577
|
+
};
|
|
5578
|
+
type: string;
|
|
5579
|
+
};
|
|
5580
|
+
ok: {
|
|
5581
|
+
type: string;
|
|
5582
|
+
};
|
|
5583
|
+
};
|
|
5584
|
+
required: string[];
|
|
5585
|
+
type: string;
|
|
5586
|
+
};
|
|
5587
|
+
};
|
|
5588
|
+
};
|
|
5589
|
+
description: string;
|
|
5590
|
+
};
|
|
5591
|
+
400: {
|
|
5592
|
+
description: string;
|
|
5593
|
+
};
|
|
5594
|
+
401: {
|
|
5595
|
+
description: string;
|
|
5596
|
+
};
|
|
5597
|
+
};
|
|
5598
|
+
security: ({
|
|
5599
|
+
api_key: never[];
|
|
5600
|
+
pat_with_workspace?: never;
|
|
5601
|
+
console_session?: never;
|
|
5602
|
+
} | {
|
|
5603
|
+
pat_with_workspace: never[];
|
|
5604
|
+
api_key?: never;
|
|
5605
|
+
console_session?: never;
|
|
5606
|
+
} | {
|
|
5607
|
+
console_session: never[];
|
|
5608
|
+
api_key?: never;
|
|
5609
|
+
pat_with_workspace?: never;
|
|
5610
|
+
})[];
|
|
5611
|
+
summary: string;
|
|
5612
|
+
tags: string[];
|
|
5613
|
+
'x-fern-sdk-group-name': string[];
|
|
5614
|
+
'x-fern-sdk-method-name': string;
|
|
5615
|
+
'x-fern-sdk-return-value': string;
|
|
5616
|
+
};
|
|
5617
|
+
};
|
|
5573
5618
|
'/acs/access_groups/list_users': {
|
|
5574
5619
|
post: {
|
|
5575
5620
|
operationId: string;
|
|
@@ -12634,12 +12679,6 @@ declare const _default: {
|
|
|
12634
12679
|
'application/json': {
|
|
12635
12680
|
schema: {
|
|
12636
12681
|
properties: {
|
|
12637
|
-
automatic_cooling_enabled: {
|
|
12638
|
-
type: string;
|
|
12639
|
-
};
|
|
12640
|
-
automatic_heating_enabled: {
|
|
12641
|
-
type: string;
|
|
12642
|
-
};
|
|
12643
12682
|
cooling_set_point_celsius: {
|
|
12644
12683
|
format: string;
|
|
12645
12684
|
type: string;
|
|
@@ -13044,12 +13083,6 @@ declare const _default: {
|
|
|
13044
13083
|
'application/json': {
|
|
13045
13084
|
schema: {
|
|
13046
13085
|
properties: {
|
|
13047
|
-
automatic_cooling_enabled: {
|
|
13048
|
-
type: string;
|
|
13049
|
-
};
|
|
13050
|
-
automatic_heating_enabled: {
|
|
13051
|
-
type: string;
|
|
13052
|
-
};
|
|
13053
13086
|
climate_setting_schedule_id: {
|
|
13054
13087
|
format: string;
|
|
13055
13088
|
type: string;
|
|
@@ -13157,12 +13190,6 @@ declare const _default: {
|
|
|
13157
13190
|
'application/json': {
|
|
13158
13191
|
schema: {
|
|
13159
13192
|
properties: {
|
|
13160
|
-
automatic_cooling_enabled: {
|
|
13161
|
-
type: string;
|
|
13162
|
-
};
|
|
13163
|
-
automatic_heating_enabled: {
|
|
13164
|
-
type: string;
|
|
13165
|
-
};
|
|
13166
13193
|
climate_setting_schedule_id: {
|
|
13167
13194
|
format: string;
|
|
13168
13195
|
type: string;
|
|
@@ -13271,12 +13298,6 @@ declare const _default: {
|
|
|
13271
13298
|
'application/json': {
|
|
13272
13299
|
schema: {
|
|
13273
13300
|
properties: {
|
|
13274
|
-
automatic_cooling_enabled: {
|
|
13275
|
-
type: string;
|
|
13276
|
-
};
|
|
13277
|
-
automatic_heating_enabled: {
|
|
13278
|
-
type: string;
|
|
13279
|
-
};
|
|
13280
13301
|
climate_setting_schedule_id: {
|
|
13281
13302
|
format: string;
|
|
13282
13303
|
type: string;
|
|
@@ -14042,12 +14063,6 @@ declare const _default: {
|
|
|
14042
14063
|
properties: {
|
|
14043
14064
|
default_climate_setting: {
|
|
14044
14065
|
properties: {
|
|
14045
|
-
automatic_cooling_enabled: {
|
|
14046
|
-
type: string;
|
|
14047
|
-
};
|
|
14048
|
-
automatic_heating_enabled: {
|
|
14049
|
-
type: string;
|
|
14050
|
-
};
|
|
14051
14066
|
cooling_set_point_celsius: {
|
|
14052
14067
|
format: string;
|
|
14053
14068
|
type: string;
|
|
@@ -14143,12 +14158,6 @@ declare const _default: {
|
|
|
14143
14158
|
properties: {
|
|
14144
14159
|
default_climate_setting: {
|
|
14145
14160
|
properties: {
|
|
14146
|
-
automatic_cooling_enabled: {
|
|
14147
|
-
type: string;
|
|
14148
|
-
};
|
|
14149
|
-
automatic_heating_enabled: {
|
|
14150
|
-
type: string;
|
|
14151
|
-
};
|
|
14152
14161
|
cooling_set_point_celsius: {
|
|
14153
14162
|
format: string;
|
|
14154
14163
|
type: string;
|
|
@@ -1822,8 +1822,6 @@ export default {
|
|
|
1822
1822
|
},
|
|
1823
1823
|
climate_setting_schedule: {
|
|
1824
1824
|
properties: {
|
|
1825
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
1826
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
1827
1825
|
climate_setting_schedule_id: { format: 'uuid', type: 'string' },
|
|
1828
1826
|
cooling_set_point_celsius: { format: 'float', type: 'number' },
|
|
1829
1827
|
cooling_set_point_fahrenheit: { format: 'float', type: 'number' },
|
|
@@ -2856,8 +2854,6 @@ export default {
|
|
|
2856
2854
|
properties: {
|
|
2857
2855
|
active_climate_setting_schedule: {
|
|
2858
2856
|
properties: {
|
|
2859
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2860
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2861
2857
|
climate_setting_schedule_id: {
|
|
2862
2858
|
format: 'uuid',
|
|
2863
2859
|
type: 'string',
|
|
@@ -2915,8 +2911,6 @@ export default {
|
|
|
2915
2911
|
},
|
|
2916
2912
|
current_climate_setting: {
|
|
2917
2913
|
properties: {
|
|
2918
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2919
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2920
2914
|
cooling_set_point_celsius: {
|
|
2921
2915
|
format: 'float',
|
|
2922
2916
|
type: 'number',
|
|
@@ -2940,8 +2934,6 @@ export default {
|
|
|
2940
2934
|
manual_override_allowed: { type: 'boolean' },
|
|
2941
2935
|
},
|
|
2942
2936
|
required: [
|
|
2943
|
-
'automatic_heating_enabled',
|
|
2944
|
-
'automatic_cooling_enabled',
|
|
2945
2937
|
'hvac_mode_setting',
|
|
2946
2938
|
'manual_override_allowed',
|
|
2947
2939
|
],
|
|
@@ -2949,8 +2941,6 @@ export default {
|
|
|
2949
2941
|
},
|
|
2950
2942
|
default_climate_setting: {
|
|
2951
2943
|
properties: {
|
|
2952
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
2953
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
2954
2944
|
cooling_set_point_celsius: {
|
|
2955
2945
|
format: 'float',
|
|
2956
2946
|
type: 'number',
|
|
@@ -2974,8 +2964,6 @@ export default {
|
|
|
2974
2964
|
manual_override_allowed: { type: 'boolean' },
|
|
2975
2965
|
},
|
|
2976
2966
|
required: [
|
|
2977
|
-
'automatic_heating_enabled',
|
|
2978
|
-
'automatic_cooling_enabled',
|
|
2979
2967
|
'hvac_mode_setting',
|
|
2980
2968
|
'manual_override_allowed',
|
|
2981
2969
|
],
|
|
@@ -5221,6 +5209,56 @@ export default {
|
|
|
5221
5209
|
'x-fern-sdk-return-value': 'acs_access_groups',
|
|
5222
5210
|
},
|
|
5223
5211
|
},
|
|
5212
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
5213
|
+
post: {
|
|
5214
|
+
operationId: 'acsAccessGroupsListAccessibleEntrancesPost',
|
|
5215
|
+
requestBody: {
|
|
5216
|
+
content: {
|
|
5217
|
+
'application/json': {
|
|
5218
|
+
schema: {
|
|
5219
|
+
properties: {
|
|
5220
|
+
acs_access_group_id: { format: 'uuid', type: 'string' },
|
|
5221
|
+
},
|
|
5222
|
+
required: ['acs_access_group_id'],
|
|
5223
|
+
type: 'object',
|
|
5224
|
+
},
|
|
5225
|
+
},
|
|
5226
|
+
},
|
|
5227
|
+
},
|
|
5228
|
+
responses: {
|
|
5229
|
+
200: {
|
|
5230
|
+
content: {
|
|
5231
|
+
'application/json': {
|
|
5232
|
+
schema: {
|
|
5233
|
+
properties: {
|
|
5234
|
+
acs_entrances: {
|
|
5235
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
5236
|
+
type: 'array',
|
|
5237
|
+
},
|
|
5238
|
+
ok: { type: 'boolean' },
|
|
5239
|
+
},
|
|
5240
|
+
required: ['acs_entrances', 'ok'],
|
|
5241
|
+
type: 'object',
|
|
5242
|
+
},
|
|
5243
|
+
},
|
|
5244
|
+
},
|
|
5245
|
+
description: 'OK',
|
|
5246
|
+
},
|
|
5247
|
+
400: { description: 'Bad Request' },
|
|
5248
|
+
401: { description: 'Unauthorized' },
|
|
5249
|
+
},
|
|
5250
|
+
security: [
|
|
5251
|
+
{ api_key: [] },
|
|
5252
|
+
{ pat_with_workspace: [] },
|
|
5253
|
+
{ console_session: [] },
|
|
5254
|
+
],
|
|
5255
|
+
summary: '/acs/access_groups/list_accessible_entrances',
|
|
5256
|
+
tags: ['/acs'],
|
|
5257
|
+
'x-fern-sdk-group-name': ['acs', 'access_groups'],
|
|
5258
|
+
'x-fern-sdk-method-name': 'list_accessible_entrances',
|
|
5259
|
+
'x-fern-sdk-return-value': 'acs_entrances',
|
|
5260
|
+
},
|
|
5261
|
+
},
|
|
5224
5262
|
'/acs/access_groups/list_users': {
|
|
5225
5263
|
post: {
|
|
5226
5264
|
operationId: 'acsAccessGroupsListUsersPost',
|
|
@@ -10761,8 +10799,6 @@ export default {
|
|
|
10761
10799
|
'application/json': {
|
|
10762
10800
|
schema: {
|
|
10763
10801
|
properties: {
|
|
10764
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
10765
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
10766
10802
|
cooling_set_point_celsius: {
|
|
10767
10803
|
format: 'float',
|
|
10768
10804
|
type: 'number',
|
|
@@ -11044,8 +11080,6 @@ export default {
|
|
|
11044
11080
|
'application/json': {
|
|
11045
11081
|
schema: {
|
|
11046
11082
|
properties: {
|
|
11047
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11048
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11049
11083
|
climate_setting_schedule_id: {
|
|
11050
11084
|
format: 'uuid',
|
|
11051
11085
|
type: 'string',
|
|
@@ -11124,8 +11158,6 @@ export default {
|
|
|
11124
11158
|
'application/json': {
|
|
11125
11159
|
schema: {
|
|
11126
11160
|
properties: {
|
|
11127
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11128
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11129
11161
|
climate_setting_schedule_id: {
|
|
11130
11162
|
format: 'uuid',
|
|
11131
11163
|
type: 'string',
|
|
@@ -11205,8 +11237,6 @@ export default {
|
|
|
11205
11237
|
'application/json': {
|
|
11206
11238
|
schema: {
|
|
11207
11239
|
properties: {
|
|
11208
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11209
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11210
11240
|
climate_setting_schedule_id: {
|
|
11211
11241
|
format: 'uuid',
|
|
11212
11242
|
type: 'string',
|
|
@@ -11869,8 +11899,6 @@ export default {
|
|
|
11869
11899
|
properties: {
|
|
11870
11900
|
default_climate_setting: {
|
|
11871
11901
|
properties: {
|
|
11872
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11873
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11874
11902
|
cooling_set_point_celsius: {
|
|
11875
11903
|
format: 'float',
|
|
11876
11904
|
type: 'number',
|
|
@@ -11938,8 +11966,6 @@ export default {
|
|
|
11938
11966
|
properties: {
|
|
11939
11967
|
default_climate_setting: {
|
|
11940
11968
|
properties: {
|
|
11941
|
-
automatic_cooling_enabled: { type: 'boolean' },
|
|
11942
|
-
automatic_heating_enabled: { type: 'boolean' },
|
|
11943
11969
|
cooling_set_point_celsius: {
|
|
11944
11970
|
format: 'float',
|
|
11945
11971
|
type: 'number',
|