@seamapi/types 1.248.0 → 1.251.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 +64 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +162 -108
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +21 -18
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +1 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +31 -26
- package/lib/seam/connect/models/devices/phone.d.ts +21 -18
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -18
- package/lib/seam/connect/models/events/acs/common.d.ts +3 -3
- package/lib/seam/connect/models/events/acs/common.js +2 -1
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/events/acs/credentials.d.ts +6 -6
- package/lib/seam/connect/models/events/acs/index.d.ts +35 -9
- package/lib/seam/connect/models/events/acs/systems.d.ts +60 -6
- package/lib/seam/connect/models/events/acs/systems.js +9 -1
- package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
- package/lib/seam/connect/models/events/acs/users.d.ts +6 -6
- package/lib/seam/connect/models/events/devices.d.ts +86 -0
- package/lib/seam/connect/models/events/devices.js +21 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +35 -9
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/modes.d.ts +3 -1
- package/lib/seam/connect/models/thermostats/modes.js +2 -1
- package/lib/seam/connect/models/thermostats/modes.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +34 -10
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +67 -55
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +1 -0
- package/src/lib/seam/connect/models/events/acs/common.ts +2 -1
- package/src/lib/seam/connect/models/events/acs/systems.ts +12 -1
- package/src/lib/seam/connect/models/events/devices.ts +33 -0
- package/src/lib/seam/connect/models/thermostats/modes.ts +7 -1
- package/src/lib/seam/connect/openapi.ts +34 -10
- package/src/lib/seam/connect/route-types.ts +139 -53
|
@@ -1343,10 +1343,11 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1343
1343
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1344
1344
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1345
1345
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1346
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1346
1347
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1347
1348
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1348
1349
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1349
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1350
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1350
1351
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1351
1352
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1352
1353
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1354,7 +1355,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1354
1355
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1355
1356
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1356
1357
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1357
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1358
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1358
1359
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1359
1360
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1360
1361
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1367,7 +1368,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1367
1368
|
can_edit?: boolean | undefined;
|
|
1368
1369
|
can_delete?: boolean | undefined;
|
|
1369
1370
|
display_name?: string | undefined;
|
|
1370
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1371
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1371
1372
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1372
1373
|
cooling_set_point_celsius?: number | undefined;
|
|
1373
1374
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1380,7 +1381,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1380
1381
|
can_edit?: boolean | undefined;
|
|
1381
1382
|
can_delete?: boolean | undefined;
|
|
1382
1383
|
display_name?: string | undefined;
|
|
1383
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1384
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1384
1385
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1385
1386
|
cooling_set_point_celsius?: number | undefined;
|
|
1386
1387
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1394,7 +1395,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1394
1395
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1395
1396
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1396
1397
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1397
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1398
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1398
1399
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1399
1400
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1400
1401
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1407,7 +1408,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1407
1408
|
can_edit?: boolean | undefined;
|
|
1408
1409
|
can_delete?: boolean | undefined;
|
|
1409
1410
|
display_name?: string | undefined;
|
|
1410
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1411
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1411
1412
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1412
1413
|
cooling_set_point_celsius?: number | undefined;
|
|
1413
1414
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1420,7 +1421,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1420
1421
|
can_edit?: boolean | undefined;
|
|
1421
1422
|
can_delete?: boolean | undefined;
|
|
1422
1423
|
display_name?: string | undefined;
|
|
1423
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1424
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1424
1425
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1425
1426
|
cooling_set_point_celsius?: number | undefined;
|
|
1426
1427
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1434,7 +1435,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1434
1435
|
can_delete: z.ZodBoolean;
|
|
1435
1436
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1436
1437
|
display_name: z.ZodString;
|
|
1437
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1438
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1438
1439
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1439
1440
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1440
1441
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1448,7 +1449,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1448
1449
|
can_delete: boolean;
|
|
1449
1450
|
display_name: string;
|
|
1450
1451
|
manual_override_allowed: boolean;
|
|
1451
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1452
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1452
1453
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1453
1454
|
cooling_set_point_celsius?: number | undefined;
|
|
1454
1455
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1461,7 +1462,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1461
1462
|
display_name: string;
|
|
1462
1463
|
manual_override_allowed: boolean;
|
|
1463
1464
|
name?: string | null | undefined;
|
|
1464
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1465
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1465
1466
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1466
1467
|
cooling_set_point_celsius?: number | undefined;
|
|
1467
1468
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1511,11 +1512,12 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1511
1512
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1512
1513
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1513
1514
|
}, "strip", z.ZodTypeAny, {
|
|
1514
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1515
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1515
1516
|
temperature_fahrenheit?: number | undefined;
|
|
1516
1517
|
temperature_celsius?: number | undefined;
|
|
1517
1518
|
relative_humidity?: number | undefined;
|
|
1518
1519
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1520
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1519
1521
|
is_heating?: boolean | undefined;
|
|
1520
1522
|
is_cooling?: boolean | undefined;
|
|
1521
1523
|
is_fan_running?: boolean | undefined;
|
|
@@ -1526,7 +1528,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1526
1528
|
can_edit?: boolean | undefined;
|
|
1527
1529
|
can_delete?: boolean | undefined;
|
|
1528
1530
|
display_name?: string | undefined;
|
|
1529
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1531
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1530
1532
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1531
1533
|
cooling_set_point_celsius?: number | undefined;
|
|
1532
1534
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1540,7 +1542,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1540
1542
|
can_edit?: boolean | undefined;
|
|
1541
1543
|
can_delete?: boolean | undefined;
|
|
1542
1544
|
display_name?: string | undefined;
|
|
1543
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1545
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1544
1546
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1545
1547
|
cooling_set_point_celsius?: number | undefined;
|
|
1546
1548
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1555,7 +1557,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1555
1557
|
can_delete: boolean;
|
|
1556
1558
|
display_name: string;
|
|
1557
1559
|
manual_override_allowed: boolean;
|
|
1558
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1560
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1559
1561
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1560
1562
|
cooling_set_point_celsius?: number | undefined;
|
|
1561
1563
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1585,11 +1587,12 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1585
1587
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1586
1588
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1587
1589
|
}, {
|
|
1588
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1590
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1589
1591
|
temperature_fahrenheit?: number | undefined;
|
|
1590
1592
|
temperature_celsius?: number | undefined;
|
|
1591
1593
|
relative_humidity?: number | undefined;
|
|
1592
1594
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1595
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1593
1596
|
is_heating?: boolean | undefined;
|
|
1594
1597
|
is_cooling?: boolean | undefined;
|
|
1595
1598
|
is_fan_running?: boolean | undefined;
|
|
@@ -1600,7 +1603,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1600
1603
|
can_edit?: boolean | undefined;
|
|
1601
1604
|
can_delete?: boolean | undefined;
|
|
1602
1605
|
display_name?: string | undefined;
|
|
1603
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1606
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1604
1607
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1605
1608
|
cooling_set_point_celsius?: number | undefined;
|
|
1606
1609
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1614,7 +1617,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1614
1617
|
can_edit?: boolean | undefined;
|
|
1615
1618
|
can_delete?: boolean | undefined;
|
|
1616
1619
|
display_name?: string | undefined;
|
|
1617
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1620
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1618
1621
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1619
1622
|
cooling_set_point_celsius?: number | undefined;
|
|
1620
1623
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1629,7 +1632,7 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1629
1632
|
display_name: string;
|
|
1630
1633
|
manual_override_allowed: boolean;
|
|
1631
1634
|
name?: string | null | undefined;
|
|
1632
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1635
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1633
1636
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1634
1637
|
cooling_set_point_celsius?: number | undefined;
|
|
1635
1638
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1342,10 +1342,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1342
1342
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1343
1343
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1344
1344
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1345
|
+
available_fan_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["auto", "on", "circulate"]>, "many">>;
|
|
1345
1346
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1346
1347
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1347
1348
|
is_fan_running: z.ZodOptional<z.ZodBoolean>;
|
|
1348
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1349
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1349
1350
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
1350
1351
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1351
1352
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1353,7 +1354,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1353
1354
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1354
1355
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1355
1356
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1356
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1357
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1357
1358
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1358
1359
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1359
1360
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1366,7 +1367,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1366
1367
|
can_edit?: boolean | undefined;
|
|
1367
1368
|
can_delete?: boolean | undefined;
|
|
1368
1369
|
display_name?: string | undefined;
|
|
1369
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1370
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1370
1371
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1371
1372
|
cooling_set_point_celsius?: number | undefined;
|
|
1372
1373
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1379,7 +1380,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1379
1380
|
can_edit?: boolean | undefined;
|
|
1380
1381
|
can_delete?: boolean | undefined;
|
|
1381
1382
|
display_name?: string | undefined;
|
|
1382
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1383
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1383
1384
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1384
1385
|
cooling_set_point_celsius?: number | undefined;
|
|
1385
1386
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1393,7 +1394,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1393
1394
|
can_delete: z.ZodOptional<z.ZodBoolean>;
|
|
1394
1395
|
name: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodString>>>;
|
|
1395
1396
|
display_name: z.ZodOptional<z.ZodString>;
|
|
1396
|
-
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on"]>>>;
|
|
1397
|
+
fan_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>>;
|
|
1397
1398
|
hvac_mode_setting: z.ZodOptional<z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>>;
|
|
1398
1399
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1399
1400
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -1406,7 +1407,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1406
1407
|
can_edit?: boolean | undefined;
|
|
1407
1408
|
can_delete?: boolean | undefined;
|
|
1408
1409
|
display_name?: string | undefined;
|
|
1409
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1410
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1410
1411
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1411
1412
|
cooling_set_point_celsius?: number | undefined;
|
|
1412
1413
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1419,7 +1420,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1419
1420
|
can_edit?: boolean | undefined;
|
|
1420
1421
|
can_delete?: boolean | undefined;
|
|
1421
1422
|
display_name?: string | undefined;
|
|
1422
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1423
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1423
1424
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1424
1425
|
cooling_set_point_celsius?: number | undefined;
|
|
1425
1426
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1433,7 +1434,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1433
1434
|
can_delete: z.ZodBoolean;
|
|
1434
1435
|
name: z.ZodDefault<z.ZodNullable<z.ZodString>>;
|
|
1435
1436
|
display_name: z.ZodString;
|
|
1436
|
-
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
1437
|
+
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on", "circulate"]>>;
|
|
1437
1438
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
1438
1439
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1439
1440
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1447,7 +1448,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1447
1448
|
can_delete: boolean;
|
|
1448
1449
|
display_name: string;
|
|
1449
1450
|
manual_override_allowed: boolean;
|
|
1450
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1451
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1451
1452
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1452
1453
|
cooling_set_point_celsius?: number | undefined;
|
|
1453
1454
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1460,7 +1461,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1460
1461
|
display_name: string;
|
|
1461
1462
|
manual_override_allowed: boolean;
|
|
1462
1463
|
name?: string | null | undefined;
|
|
1463
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1464
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1464
1465
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1465
1466
|
cooling_set_point_celsius?: number | undefined;
|
|
1466
1467
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1510,11 +1511,12 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1510
1511
|
min_heating_cooling_delta_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1511
1512
|
min_heating_cooling_delta_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1512
1513
|
}, "strip", z.ZodTypeAny, {
|
|
1513
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1514
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1514
1515
|
temperature_fahrenheit?: number | undefined;
|
|
1515
1516
|
temperature_celsius?: number | undefined;
|
|
1516
1517
|
relative_humidity?: number | undefined;
|
|
1517
1518
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1519
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1518
1520
|
is_heating?: boolean | undefined;
|
|
1519
1521
|
is_cooling?: boolean | undefined;
|
|
1520
1522
|
is_fan_running?: boolean | undefined;
|
|
@@ -1525,7 +1527,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1525
1527
|
can_edit?: boolean | undefined;
|
|
1526
1528
|
can_delete?: boolean | undefined;
|
|
1527
1529
|
display_name?: string | undefined;
|
|
1528
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1530
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1529
1531
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1530
1532
|
cooling_set_point_celsius?: number | undefined;
|
|
1531
1533
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1539,7 +1541,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1539
1541
|
can_edit?: boolean | undefined;
|
|
1540
1542
|
can_delete?: boolean | undefined;
|
|
1541
1543
|
display_name?: string | undefined;
|
|
1542
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1544
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1543
1545
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1544
1546
|
cooling_set_point_celsius?: number | undefined;
|
|
1545
1547
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1554,7 +1556,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1554
1556
|
can_delete: boolean;
|
|
1555
1557
|
display_name: string;
|
|
1556
1558
|
manual_override_allowed: boolean;
|
|
1557
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1559
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1558
1560
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1559
1561
|
cooling_set_point_celsius?: number | undefined;
|
|
1560
1562
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1584,11 +1586,12 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1584
1586
|
min_heating_cooling_delta_celsius?: number | undefined;
|
|
1585
1587
|
min_heating_cooling_delta_fahrenheit?: number | undefined;
|
|
1586
1588
|
}, {
|
|
1587
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1589
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1588
1590
|
temperature_fahrenheit?: number | undefined;
|
|
1589
1591
|
temperature_celsius?: number | undefined;
|
|
1590
1592
|
relative_humidity?: number | undefined;
|
|
1591
1593
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1594
|
+
available_fan_mode_settings?: ("auto" | "on" | "circulate")[] | undefined;
|
|
1592
1595
|
is_heating?: boolean | undefined;
|
|
1593
1596
|
is_cooling?: boolean | undefined;
|
|
1594
1597
|
is_fan_running?: boolean | undefined;
|
|
@@ -1599,7 +1602,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1599
1602
|
can_edit?: boolean | undefined;
|
|
1600
1603
|
can_delete?: boolean | undefined;
|
|
1601
1604
|
display_name?: string | undefined;
|
|
1602
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1605
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1603
1606
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1604
1607
|
cooling_set_point_celsius?: number | undefined;
|
|
1605
1608
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1613,7 +1616,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1613
1616
|
can_edit?: boolean | undefined;
|
|
1614
1617
|
can_delete?: boolean | undefined;
|
|
1615
1618
|
display_name?: string | undefined;
|
|
1616
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1619
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1617
1620
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1618
1621
|
cooling_set_point_celsius?: number | undefined;
|
|
1619
1622
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -1628,7 +1631,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1628
1631
|
display_name: string;
|
|
1629
1632
|
manual_override_allowed: boolean;
|
|
1630
1633
|
name?: string | null | undefined;
|
|
1631
|
-
fan_mode_setting?: "auto" | "on" | undefined;
|
|
1634
|
+
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
1632
1635
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
1633
1636
|
cooling_set_point_celsius?: number | undefined;
|
|
1634
1637
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -5,20 +5,20 @@ export declare const common_acs_event: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
occurred_at: z.ZodString;
|
|
7
7
|
}, {
|
|
8
|
-
connected_account_id: z.ZodString
|
|
8
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
9
9
|
acs_system_id: z.ZodString;
|
|
10
10
|
}>, "strip", z.ZodTypeAny, {
|
|
11
|
-
connected_account_id: string;
|
|
12
11
|
created_at: string;
|
|
13
12
|
workspace_id: string;
|
|
14
13
|
acs_system_id: string;
|
|
15
14
|
event_id: string;
|
|
16
15
|
occurred_at: string;
|
|
16
|
+
connected_account_id?: string | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
connected_account_id: string;
|
|
19
18
|
created_at: string;
|
|
20
19
|
workspace_id: string;
|
|
21
20
|
acs_system_id: string;
|
|
22
21
|
event_id: string;
|
|
23
22
|
occurred_at: string;
|
|
23
|
+
connected_account_id?: string | undefined;
|
|
24
24
|
}>;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { common_event } from '../common.js';
|
|
3
3
|
export const common_acs_event = common_event.extend({
|
|
4
|
-
connected_account_id: z.string().uuid().describe(`
|
|
4
|
+
connected_account_id: z.string().uuid().optional().describe(`
|
|
5
5
|
---
|
|
6
6
|
title: Connected Account ID
|
|
7
|
+
deprecated: Will be removed.
|
|
7
8
|
---
|
|
8
9
|
ID of the connected account.
|
|
9
10
|
`),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/events/acs/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAA;AAE3C,MAAM,CAAC,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC;IAClD,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/events/acs/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,cAAc,CAAA;AAE3C,MAAM,CAAC,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC;IAClD,oBAAoB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;;;GAM3D,CAAC;IACF,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC;;;;;GAKzC,CAAC;CACH,CAAC,CAAA"}
|
|
@@ -5,14 +5,13 @@ export declare const acs_credential_deleted_event: z.ZodObject<z.objectUtil.exte
|
|
|
5
5
|
created_at: z.ZodString;
|
|
6
6
|
occurred_at: z.ZodString;
|
|
7
7
|
}, {
|
|
8
|
-
connected_account_id: z.ZodString
|
|
8
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
9
9
|
acs_system_id: z.ZodString;
|
|
10
10
|
}>, {
|
|
11
11
|
acs_credential_id: z.ZodString;
|
|
12
12
|
}>, {
|
|
13
13
|
event_type: z.ZodLiteral<"acs_credential.deleted">;
|
|
14
14
|
}>, "strip", z.ZodTypeAny, {
|
|
15
|
-
connected_account_id: string;
|
|
16
15
|
created_at: string;
|
|
17
16
|
workspace_id: string;
|
|
18
17
|
acs_system_id: string;
|
|
@@ -20,8 +19,8 @@ export declare const acs_credential_deleted_event: z.ZodObject<z.objectUtil.exte
|
|
|
20
19
|
event_id: string;
|
|
21
20
|
occurred_at: string;
|
|
22
21
|
event_type: "acs_credential.deleted";
|
|
22
|
+
connected_account_id?: string | undefined;
|
|
23
23
|
}, {
|
|
24
|
-
connected_account_id: string;
|
|
25
24
|
created_at: string;
|
|
26
25
|
workspace_id: string;
|
|
27
26
|
acs_system_id: string;
|
|
@@ -29,6 +28,7 @@ export declare const acs_credential_deleted_event: z.ZodObject<z.objectUtil.exte
|
|
|
29
28
|
event_id: string;
|
|
30
29
|
occurred_at: string;
|
|
31
30
|
event_type: "acs_credential.deleted";
|
|
31
|
+
connected_account_id?: string | undefined;
|
|
32
32
|
}>;
|
|
33
33
|
export type AcsCredentialDeletedEvent = z.infer<typeof acs_credential_deleted_event>;
|
|
34
34
|
export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
@@ -37,14 +37,13 @@ export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.e
|
|
|
37
37
|
created_at: z.ZodString;
|
|
38
38
|
occurred_at: z.ZodString;
|
|
39
39
|
}, {
|
|
40
|
-
connected_account_id: z.ZodString
|
|
40
|
+
connected_account_id: z.ZodOptional<z.ZodString>;
|
|
41
41
|
acs_system_id: z.ZodString;
|
|
42
42
|
}>, {
|
|
43
43
|
acs_credential_id: z.ZodString;
|
|
44
44
|
}>, {
|
|
45
45
|
event_type: z.ZodLiteral<"acs_credential.deleted">;
|
|
46
46
|
}>, "strip", z.ZodTypeAny, {
|
|
47
|
-
connected_account_id: string;
|
|
48
47
|
created_at: string;
|
|
49
48
|
workspace_id: string;
|
|
50
49
|
acs_system_id: string;
|
|
@@ -52,8 +51,8 @@ export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.e
|
|
|
52
51
|
event_id: string;
|
|
53
52
|
occurred_at: string;
|
|
54
53
|
event_type: "acs_credential.deleted";
|
|
54
|
+
connected_account_id?: string | undefined;
|
|
55
55
|
}, {
|
|
56
|
-
connected_account_id: string;
|
|
57
56
|
created_at: string;
|
|
58
57
|
workspace_id: string;
|
|
59
58
|
acs_system_id: string;
|
|
@@ -61,4 +60,5 @@ export declare const acs_credential_events: readonly [z.ZodObject<z.objectUtil.e
|
|
|
61
60
|
event_id: string;
|
|
62
61
|
occurred_at: string;
|
|
63
62
|
event_type: "acs_credential.deleted";
|
|
63
|
+
connected_account_id?: string | undefined;
|
|
64
64
|
}>];
|
|
@@ -4,40 +4,65 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
4
4
|
created_at: import("zod").ZodString;
|
|
5
5
|
occurred_at: import("zod").ZodString;
|
|
6
6
|
}, {
|
|
7
|
-
connected_account_id: import("zod").ZodString
|
|
7
|
+
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8
8
|
acs_system_id: import("zod").ZodString;
|
|
9
9
|
}>, {}>, {
|
|
10
10
|
event_type: import("zod").ZodLiteral<"acs_system.connected">;
|
|
11
11
|
}>, "strip", import("zod").ZodTypeAny, {
|
|
12
|
-
connected_account_id: string;
|
|
13
12
|
created_at: string;
|
|
14
13
|
workspace_id: string;
|
|
15
14
|
acs_system_id: string;
|
|
16
15
|
event_id: string;
|
|
17
16
|
occurred_at: string;
|
|
18
17
|
event_type: "acs_system.connected";
|
|
18
|
+
connected_account_id?: string | undefined;
|
|
19
19
|
}, {
|
|
20
|
-
connected_account_id: string;
|
|
21
20
|
created_at: string;
|
|
22
21
|
workspace_id: string;
|
|
23
22
|
acs_system_id: string;
|
|
24
23
|
event_id: string;
|
|
25
24
|
occurred_at: string;
|
|
26
25
|
event_type: "acs_system.connected";
|
|
26
|
+
connected_account_id?: string | undefined;
|
|
27
27
|
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
28
28
|
event_id: import("zod").ZodString;
|
|
29
29
|
workspace_id: import("zod").ZodString;
|
|
30
30
|
created_at: import("zod").ZodString;
|
|
31
31
|
occurred_at: import("zod").ZodString;
|
|
32
32
|
}, {
|
|
33
|
-
connected_account_id: import("zod").ZodString
|
|
33
|
+
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
34
|
+
acs_system_id: import("zod").ZodString;
|
|
35
|
+
}>, {}>, {
|
|
36
|
+
event_type: import("zod").ZodLiteral<"acs_system.added">;
|
|
37
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
|
38
|
+
created_at: string;
|
|
39
|
+
workspace_id: string;
|
|
40
|
+
acs_system_id: string;
|
|
41
|
+
event_id: string;
|
|
42
|
+
occurred_at: string;
|
|
43
|
+
event_type: "acs_system.added";
|
|
44
|
+
connected_account_id?: string | undefined;
|
|
45
|
+
}, {
|
|
46
|
+
created_at: string;
|
|
47
|
+
workspace_id: string;
|
|
48
|
+
acs_system_id: string;
|
|
49
|
+
event_id: string;
|
|
50
|
+
occurred_at: string;
|
|
51
|
+
event_type: "acs_system.added";
|
|
52
|
+
connected_account_id?: string | undefined;
|
|
53
|
+
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
54
|
+
event_id: import("zod").ZodString;
|
|
55
|
+
workspace_id: import("zod").ZodString;
|
|
56
|
+
created_at: import("zod").ZodString;
|
|
57
|
+
occurred_at: import("zod").ZodString;
|
|
58
|
+
}, {
|
|
59
|
+
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
34
60
|
acs_system_id: import("zod").ZodString;
|
|
35
61
|
}>, {
|
|
36
62
|
acs_credential_id: import("zod").ZodString;
|
|
37
63
|
}>, {
|
|
38
64
|
event_type: import("zod").ZodLiteral<"acs_credential.deleted">;
|
|
39
65
|
}>, "strip", import("zod").ZodTypeAny, {
|
|
40
|
-
connected_account_id: string;
|
|
41
66
|
created_at: string;
|
|
42
67
|
workspace_id: string;
|
|
43
68
|
acs_system_id: string;
|
|
@@ -45,8 +70,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
45
70
|
event_id: string;
|
|
46
71
|
occurred_at: string;
|
|
47
72
|
event_type: "acs_credential.deleted";
|
|
73
|
+
connected_account_id?: string | undefined;
|
|
48
74
|
}, {
|
|
49
|
-
connected_account_id: string;
|
|
50
75
|
created_at: string;
|
|
51
76
|
workspace_id: string;
|
|
52
77
|
acs_system_id: string;
|
|
@@ -54,20 +79,20 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
54
79
|
event_id: string;
|
|
55
80
|
occurred_at: string;
|
|
56
81
|
event_type: "acs_credential.deleted";
|
|
82
|
+
connected_account_id?: string | undefined;
|
|
57
83
|
}>, import("zod").ZodObject<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<import("zod").objectUtil.extendShape<{
|
|
58
84
|
event_id: import("zod").ZodString;
|
|
59
85
|
workspace_id: import("zod").ZodString;
|
|
60
86
|
created_at: import("zod").ZodString;
|
|
61
87
|
occurred_at: import("zod").ZodString;
|
|
62
88
|
}, {
|
|
63
|
-
connected_account_id: import("zod").ZodString
|
|
89
|
+
connected_account_id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
64
90
|
acs_system_id: import("zod").ZodString;
|
|
65
91
|
}>, {
|
|
66
92
|
acs_user_id: import("zod").ZodString;
|
|
67
93
|
}>, {
|
|
68
94
|
event_type: import("zod").ZodLiteral<"acs_user.deleted">;
|
|
69
95
|
}>, "strip", import("zod").ZodTypeAny, {
|
|
70
|
-
connected_account_id: string;
|
|
71
96
|
created_at: string;
|
|
72
97
|
workspace_id: string;
|
|
73
98
|
acs_system_id: string;
|
|
@@ -75,8 +100,8 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
75
100
|
event_id: string;
|
|
76
101
|
occurred_at: string;
|
|
77
102
|
event_type: "acs_user.deleted";
|
|
103
|
+
connected_account_id?: string | undefined;
|
|
78
104
|
}, {
|
|
79
|
-
connected_account_id: string;
|
|
80
105
|
created_at: string;
|
|
81
106
|
workspace_id: string;
|
|
82
107
|
acs_system_id: string;
|
|
@@ -84,4 +109,5 @@ export declare const acs_events: readonly [import("zod").ZodObject<import("zod")
|
|
|
84
109
|
event_id: string;
|
|
85
110
|
occurred_at: string;
|
|
86
111
|
event_type: "acs_user.deleted";
|
|
112
|
+
connected_account_id?: string | undefined;
|
|
87
113
|
}>];
|