@seamapi/types 1.59.1 → 1.60.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +78 -34
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +338 -132
- package/lib/seam/connect/openapi.d.ts +222 -132
- package/lib/seam/connect/openapi.js +77 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +116 -0
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +15 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +33 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js +3 -0
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/device-metadata.d.ts +76 -0
- package/lib/seam/connect/unstable/models/devices/device-metadata.js +15 -8
- package/lib/seam/connect/unstable/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +93 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +81 -33
- package/src/lib/seam/connect/route-types.ts +116 -0
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/capability-properties/thermostat.ts +5 -0
- package/src/lib/seam/connect/unstable/models/devices/device-metadata.ts +18 -10
|
@@ -649,16 +649,34 @@ export declare const managed_device: z.ZodObject<{
|
|
|
649
649
|
prefix: z.ZodNumber;
|
|
650
650
|
check_in_time: z.ZodString;
|
|
651
651
|
check_out_time: z.ZodString;
|
|
652
|
+
is_24_hour: z.ZodBoolean;
|
|
653
|
+
is_biweekly_mode: z.ZodBoolean;
|
|
654
|
+
is_one_shot: z.ZodBoolean;
|
|
655
|
+
is_master: z.ZodBoolean;
|
|
656
|
+
ext_dormakaba_oracode_user_level_prefix: z.ZodNumber;
|
|
657
|
+
dormakaba_oracode_user_level_id: z.ZodString;
|
|
652
658
|
}, "strip", z.ZodTypeAny, {
|
|
653
659
|
name: string;
|
|
654
660
|
prefix: number;
|
|
655
661
|
check_in_time: string;
|
|
656
662
|
check_out_time: string;
|
|
663
|
+
is_24_hour: boolean;
|
|
664
|
+
is_biweekly_mode: boolean;
|
|
665
|
+
is_one_shot: boolean;
|
|
666
|
+
is_master: boolean;
|
|
667
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
668
|
+
dormakaba_oracode_user_level_id: string;
|
|
657
669
|
}, {
|
|
658
670
|
name: string;
|
|
659
671
|
prefix: number;
|
|
660
672
|
check_in_time: string;
|
|
661
673
|
check_out_time: string;
|
|
674
|
+
is_24_hour: boolean;
|
|
675
|
+
is_biweekly_mode: boolean;
|
|
676
|
+
is_one_shot: boolean;
|
|
677
|
+
is_master: boolean;
|
|
678
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
679
|
+
dormakaba_oracode_user_level_id: string;
|
|
662
680
|
}>, "many">>;
|
|
663
681
|
}, "strip", z.ZodTypeAny, {
|
|
664
682
|
site_id: number;
|
|
@@ -672,6 +690,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
672
690
|
prefix: number;
|
|
673
691
|
check_in_time: string;
|
|
674
692
|
check_out_time: string;
|
|
693
|
+
is_24_hour: boolean;
|
|
694
|
+
is_biweekly_mode: boolean;
|
|
695
|
+
is_one_shot: boolean;
|
|
696
|
+
is_master: boolean;
|
|
697
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
698
|
+
dormakaba_oracode_user_level_id: string;
|
|
675
699
|
}[] | undefined;
|
|
676
700
|
}, {
|
|
677
701
|
site_id: number;
|
|
@@ -685,6 +709,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
685
709
|
prefix: number;
|
|
686
710
|
check_in_time: string;
|
|
687
711
|
check_out_time: string;
|
|
712
|
+
is_24_hour: boolean;
|
|
713
|
+
is_biweekly_mode: boolean;
|
|
714
|
+
is_one_shot: boolean;
|
|
715
|
+
is_master: boolean;
|
|
716
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
717
|
+
dormakaba_oracode_user_level_id: string;
|
|
688
718
|
}[] | undefined;
|
|
689
719
|
}>>;
|
|
690
720
|
wyze_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -862,6 +892,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
862
892
|
prefix: number;
|
|
863
893
|
check_in_time: string;
|
|
864
894
|
check_out_time: string;
|
|
895
|
+
is_24_hour: boolean;
|
|
896
|
+
is_biweekly_mode: boolean;
|
|
897
|
+
is_one_shot: boolean;
|
|
898
|
+
is_master: boolean;
|
|
899
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
900
|
+
dormakaba_oracode_user_level_id: string;
|
|
865
901
|
}[] | undefined;
|
|
866
902
|
} | undefined;
|
|
867
903
|
wyze_metadata?: {
|
|
@@ -1025,6 +1061,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1025
1061
|
prefix: number;
|
|
1026
1062
|
check_in_time: string;
|
|
1027
1063
|
check_out_time: string;
|
|
1064
|
+
is_24_hour: boolean;
|
|
1065
|
+
is_biweekly_mode: boolean;
|
|
1066
|
+
is_one_shot: boolean;
|
|
1067
|
+
is_master: boolean;
|
|
1068
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
1069
|
+
dormakaba_oracode_user_level_id: string;
|
|
1028
1070
|
}[] | undefined;
|
|
1029
1071
|
} | undefined;
|
|
1030
1072
|
wyze_metadata?: {
|
|
@@ -1181,6 +1223,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1181
1223
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1182
1224
|
schedule_starts_at: z.ZodString;
|
|
1183
1225
|
schedule_ends_at: z.ZodString;
|
|
1226
|
+
errors: z.ZodAny;
|
|
1184
1227
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1185
1228
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1186
1229
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -1197,6 +1240,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1197
1240
|
schedule_starts_at: string;
|
|
1198
1241
|
schedule_ends_at: string;
|
|
1199
1242
|
name?: string | undefined;
|
|
1243
|
+
errors?: any;
|
|
1200
1244
|
automatic_heating_enabled?: boolean | undefined;
|
|
1201
1245
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1202
1246
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1213,6 +1257,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1213
1257
|
schedule_starts_at: string;
|
|
1214
1258
|
schedule_ends_at: string;
|
|
1215
1259
|
name?: string | undefined;
|
|
1260
|
+
errors?: any;
|
|
1216
1261
|
automatic_heating_enabled?: boolean | undefined;
|
|
1217
1262
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1218
1263
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1275,6 +1320,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1275
1320
|
schedule_starts_at: string;
|
|
1276
1321
|
schedule_ends_at: string;
|
|
1277
1322
|
name?: string | undefined;
|
|
1323
|
+
errors?: any;
|
|
1278
1324
|
automatic_heating_enabled?: boolean | undefined;
|
|
1279
1325
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1280
1326
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1337,6 +1383,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1337
1383
|
schedule_starts_at: string;
|
|
1338
1384
|
schedule_ends_at: string;
|
|
1339
1385
|
name?: string | undefined;
|
|
1386
|
+
errors?: any;
|
|
1340
1387
|
automatic_heating_enabled?: boolean | undefined;
|
|
1341
1388
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1342
1389
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1434,6 +1481,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1434
1481
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1435
1482
|
schedule_starts_at: z.ZodString;
|
|
1436
1483
|
schedule_ends_at: z.ZodString;
|
|
1484
|
+
errors: z.ZodAny;
|
|
1437
1485
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1438
1486
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1439
1487
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -1450,6 +1498,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1450
1498
|
schedule_starts_at: string;
|
|
1451
1499
|
schedule_ends_at: string;
|
|
1452
1500
|
name?: string | undefined;
|
|
1501
|
+
errors?: any;
|
|
1453
1502
|
automatic_heating_enabled?: boolean | undefined;
|
|
1454
1503
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1455
1504
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1466,6 +1515,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1466
1515
|
schedule_starts_at: string;
|
|
1467
1516
|
schedule_ends_at: string;
|
|
1468
1517
|
name?: string | undefined;
|
|
1518
|
+
errors?: any;
|
|
1469
1519
|
automatic_heating_enabled?: boolean | undefined;
|
|
1470
1520
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1471
1521
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1522,6 +1572,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1522
1572
|
schedule_starts_at: string;
|
|
1523
1573
|
schedule_ends_at: string;
|
|
1524
1574
|
name?: string | undefined;
|
|
1575
|
+
errors?: any;
|
|
1525
1576
|
automatic_heating_enabled?: boolean | undefined;
|
|
1526
1577
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1527
1578
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1578,6 +1629,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1578
1629
|
schedule_starts_at: string;
|
|
1579
1630
|
schedule_ends_at: string;
|
|
1580
1631
|
name?: string | undefined;
|
|
1632
|
+
errors?: any;
|
|
1581
1633
|
automatic_heating_enabled?: boolean | undefined;
|
|
1582
1634
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1583
1635
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1670,6 +1722,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1670
1722
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
1671
1723
|
schedule_starts_at: z.ZodString;
|
|
1672
1724
|
schedule_ends_at: z.ZodString;
|
|
1725
|
+
errors: z.ZodAny;
|
|
1673
1726
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1674
1727
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1675
1728
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -1686,6 +1739,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1686
1739
|
schedule_starts_at: string;
|
|
1687
1740
|
schedule_ends_at: string;
|
|
1688
1741
|
name?: string | undefined;
|
|
1742
|
+
errors?: any;
|
|
1689
1743
|
automatic_heating_enabled?: boolean | undefined;
|
|
1690
1744
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1691
1745
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1702,6 +1756,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1702
1756
|
schedule_starts_at: string;
|
|
1703
1757
|
schedule_ends_at: string;
|
|
1704
1758
|
name?: string | undefined;
|
|
1759
|
+
errors?: any;
|
|
1705
1760
|
automatic_heating_enabled?: boolean | undefined;
|
|
1706
1761
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1707
1762
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1758,6 +1813,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1758
1813
|
schedule_starts_at: string;
|
|
1759
1814
|
schedule_ends_at: string;
|
|
1760
1815
|
name?: string | undefined;
|
|
1816
|
+
errors?: any;
|
|
1761
1817
|
automatic_heating_enabled?: boolean | undefined;
|
|
1762
1818
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1763
1819
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -1814,6 +1870,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
1814
1870
|
schedule_starts_at: string;
|
|
1815
1871
|
schedule_ends_at: string;
|
|
1816
1872
|
name?: string | undefined;
|
|
1873
|
+
errors?: any;
|
|
1817
1874
|
automatic_heating_enabled?: boolean | undefined;
|
|
1818
1875
|
automatic_cooling_enabled?: boolean | undefined;
|
|
1819
1876
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2050,6 +2107,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2050
2107
|
prefix: number;
|
|
2051
2108
|
check_in_time: string;
|
|
2052
2109
|
check_out_time: string;
|
|
2110
|
+
is_24_hour: boolean;
|
|
2111
|
+
is_biweekly_mode: boolean;
|
|
2112
|
+
is_one_shot: boolean;
|
|
2113
|
+
is_master: boolean;
|
|
2114
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
2115
|
+
dormakaba_oracode_user_level_id: string;
|
|
2053
2116
|
}[] | undefined;
|
|
2054
2117
|
} | undefined;
|
|
2055
2118
|
wyze_metadata?: {
|
|
@@ -2120,6 +2183,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2120
2183
|
schedule_starts_at: string;
|
|
2121
2184
|
schedule_ends_at: string;
|
|
2122
2185
|
name?: string | undefined;
|
|
2186
|
+
errors?: any;
|
|
2123
2187
|
automatic_heating_enabled?: boolean | undefined;
|
|
2124
2188
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2125
2189
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2181,6 +2245,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2181
2245
|
schedule_starts_at: string;
|
|
2182
2246
|
schedule_ends_at: string;
|
|
2183
2247
|
name?: string | undefined;
|
|
2248
|
+
errors?: any;
|
|
2184
2249
|
automatic_heating_enabled?: boolean | undefined;
|
|
2185
2250
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2186
2251
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2237,6 +2302,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2237
2302
|
schedule_starts_at: string;
|
|
2238
2303
|
schedule_ends_at: string;
|
|
2239
2304
|
name?: string | undefined;
|
|
2305
|
+
errors?: any;
|
|
2240
2306
|
automatic_heating_enabled?: boolean | undefined;
|
|
2241
2307
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2242
2308
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2428,6 +2494,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2428
2494
|
prefix: number;
|
|
2429
2495
|
check_in_time: string;
|
|
2430
2496
|
check_out_time: string;
|
|
2497
|
+
is_24_hour: boolean;
|
|
2498
|
+
is_biweekly_mode: boolean;
|
|
2499
|
+
is_one_shot: boolean;
|
|
2500
|
+
is_master: boolean;
|
|
2501
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
2502
|
+
dormakaba_oracode_user_level_id: string;
|
|
2431
2503
|
}[] | undefined;
|
|
2432
2504
|
} | undefined;
|
|
2433
2505
|
wyze_metadata?: {
|
|
@@ -2498,6 +2570,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2498
2570
|
schedule_starts_at: string;
|
|
2499
2571
|
schedule_ends_at: string;
|
|
2500
2572
|
name?: string | undefined;
|
|
2573
|
+
errors?: any;
|
|
2501
2574
|
automatic_heating_enabled?: boolean | undefined;
|
|
2502
2575
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2503
2576
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2559,6 +2632,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2559
2632
|
schedule_starts_at: string;
|
|
2560
2633
|
schedule_ends_at: string;
|
|
2561
2634
|
name?: string | undefined;
|
|
2635
|
+
errors?: any;
|
|
2562
2636
|
automatic_heating_enabled?: boolean | undefined;
|
|
2563
2637
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2564
2638
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2615,6 +2689,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2615
2689
|
schedule_starts_at: string;
|
|
2616
2690
|
schedule_ends_at: string;
|
|
2617
2691
|
name?: string | undefined;
|
|
2692
|
+
errors?: any;
|
|
2618
2693
|
automatic_heating_enabled?: boolean | undefined;
|
|
2619
2694
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2620
2695
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2827,6 +2902,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2827
2902
|
prefix: number;
|
|
2828
2903
|
check_in_time: string;
|
|
2829
2904
|
check_out_time: string;
|
|
2905
|
+
is_24_hour: boolean;
|
|
2906
|
+
is_biweekly_mode: boolean;
|
|
2907
|
+
is_one_shot: boolean;
|
|
2908
|
+
is_master: boolean;
|
|
2909
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
2910
|
+
dormakaba_oracode_user_level_id: string;
|
|
2830
2911
|
}[] | undefined;
|
|
2831
2912
|
} | undefined;
|
|
2832
2913
|
wyze_metadata?: {
|
|
@@ -2897,6 +2978,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2897
2978
|
schedule_starts_at: string;
|
|
2898
2979
|
schedule_ends_at: string;
|
|
2899
2980
|
name?: string | undefined;
|
|
2981
|
+
errors?: any;
|
|
2900
2982
|
automatic_heating_enabled?: boolean | undefined;
|
|
2901
2983
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2902
2984
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -2958,6 +3040,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
2958
3040
|
schedule_starts_at: string;
|
|
2959
3041
|
schedule_ends_at: string;
|
|
2960
3042
|
name?: string | undefined;
|
|
3043
|
+
errors?: any;
|
|
2961
3044
|
automatic_heating_enabled?: boolean | undefined;
|
|
2962
3045
|
automatic_cooling_enabled?: boolean | undefined;
|
|
2963
3046
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -3014,6 +3097,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3014
3097
|
schedule_starts_at: string;
|
|
3015
3098
|
schedule_ends_at: string;
|
|
3016
3099
|
name?: string | undefined;
|
|
3100
|
+
errors?: any;
|
|
3017
3101
|
automatic_heating_enabled?: boolean | undefined;
|
|
3018
3102
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3019
3103
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -3205,6 +3289,12 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3205
3289
|
prefix: number;
|
|
3206
3290
|
check_in_time: string;
|
|
3207
3291
|
check_out_time: string;
|
|
3292
|
+
is_24_hour: boolean;
|
|
3293
|
+
is_biweekly_mode: boolean;
|
|
3294
|
+
is_one_shot: boolean;
|
|
3295
|
+
is_master: boolean;
|
|
3296
|
+
ext_dormakaba_oracode_user_level_prefix: number;
|
|
3297
|
+
dormakaba_oracode_user_level_id: string;
|
|
3208
3298
|
}[] | undefined;
|
|
3209
3299
|
} | undefined;
|
|
3210
3300
|
wyze_metadata?: {
|
|
@@ -3275,6 +3365,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3275
3365
|
schedule_starts_at: string;
|
|
3276
3366
|
schedule_ends_at: string;
|
|
3277
3367
|
name?: string | undefined;
|
|
3368
|
+
errors?: any;
|
|
3278
3369
|
automatic_heating_enabled?: boolean | undefined;
|
|
3279
3370
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3280
3371
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -3336,6 +3427,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3336
3427
|
schedule_starts_at: string;
|
|
3337
3428
|
schedule_ends_at: string;
|
|
3338
3429
|
name?: string | undefined;
|
|
3430
|
+
errors?: any;
|
|
3339
3431
|
automatic_heating_enabled?: boolean | undefined;
|
|
3340
3432
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3341
3433
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
@@ -3392,6 +3484,7 @@ export declare const managed_device: z.ZodObject<{
|
|
|
3392
3484
|
schedule_starts_at: string;
|
|
3393
3485
|
schedule_ends_at: string;
|
|
3394
3486
|
name?: string | undefined;
|
|
3487
|
+
errors?: any;
|
|
3395
3488
|
automatic_heating_enabled?: boolean | undefined;
|
|
3396
3489
|
automatic_cooling_enabled?: boolean | undefined;
|
|
3397
3490
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
package/package.json
CHANGED
|
@@ -368,6 +368,11 @@ export default {
|
|
|
368
368
|
cooling_set_point_fahrenheit: { type: 'number' },
|
|
369
369
|
created_at: { format: 'date-time', type: 'string' },
|
|
370
370
|
device_id: { type: 'string' },
|
|
371
|
+
errors: {
|
|
372
|
+
description:
|
|
373
|
+
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
374
|
+
nullable: true,
|
|
375
|
+
},
|
|
371
376
|
heating_set_point_celsius: { type: 'number' },
|
|
372
377
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
373
378
|
hvac_mode_setting: {
|
|
@@ -779,6 +784,17 @@ export default {
|
|
|
779
784
|
properties: {
|
|
780
785
|
check_in_time: { type: 'string' },
|
|
781
786
|
check_out_time: { type: 'string' },
|
|
787
|
+
dormakaba_oracode_user_level_id: {
|
|
788
|
+
format: 'uuid',
|
|
789
|
+
type: 'string',
|
|
790
|
+
},
|
|
791
|
+
ext_dormakaba_oracode_user_level_prefix: {
|
|
792
|
+
type: 'number',
|
|
793
|
+
},
|
|
794
|
+
is_24_hour: { type: 'boolean' },
|
|
795
|
+
is_biweekly_mode: { type: 'boolean' },
|
|
796
|
+
is_master: { type: 'boolean' },
|
|
797
|
+
is_one_shot: { type: 'boolean' },
|
|
782
798
|
name: { type: 'string' },
|
|
783
799
|
prefix: { type: 'number' },
|
|
784
800
|
},
|
|
@@ -787,6 +803,12 @@ export default {
|
|
|
787
803
|
'prefix',
|
|
788
804
|
'check_in_time',
|
|
789
805
|
'check_out_time',
|
|
806
|
+
'is_24_hour',
|
|
807
|
+
'is_biweekly_mode',
|
|
808
|
+
'is_one_shot',
|
|
809
|
+
'is_master',
|
|
810
|
+
'ext_dormakaba_oracode_user_level_prefix',
|
|
811
|
+
'dormakaba_oracode_user_level_id',
|
|
790
812
|
],
|
|
791
813
|
type: 'object',
|
|
792
814
|
},
|
|
@@ -1154,6 +1176,11 @@ export default {
|
|
|
1154
1176
|
type: 'string',
|
|
1155
1177
|
},
|
|
1156
1178
|
device_id: { type: 'string' },
|
|
1179
|
+
errors: {
|
|
1180
|
+
description:
|
|
1181
|
+
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1182
|
+
nullable: true,
|
|
1183
|
+
},
|
|
1157
1184
|
heating_set_point_celsius: { type: 'number' },
|
|
1158
1185
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1159
1186
|
hvac_mode_setting: {
|
|
@@ -1292,6 +1319,11 @@ export default {
|
|
|
1292
1319
|
type: 'string',
|
|
1293
1320
|
},
|
|
1294
1321
|
device_id: { type: 'string' },
|
|
1322
|
+
errors: {
|
|
1323
|
+
description:
|
|
1324
|
+
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1325
|
+
nullable: true,
|
|
1326
|
+
},
|
|
1295
1327
|
heating_set_point_celsius: { type: 'number' },
|
|
1296
1328
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1297
1329
|
hvac_mode_setting: {
|
|
@@ -1422,6 +1454,11 @@ export default {
|
|
|
1422
1454
|
type: 'string',
|
|
1423
1455
|
},
|
|
1424
1456
|
device_id: { type: 'string' },
|
|
1457
|
+
errors: {
|
|
1458
|
+
description:
|
|
1459
|
+
'Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues.',
|
|
1460
|
+
nullable: true,
|
|
1461
|
+
},
|
|
1425
1462
|
heating_set_point_celsius: { type: 'number' },
|
|
1426
1463
|
heating_set_point_fahrenheit: { type: 'number' },
|
|
1427
1464
|
hvac_mode_setting: {
|
|
@@ -2012,9 +2049,10 @@ export default {
|
|
|
2012
2049
|
401: { description: 'Unauthorized' },
|
|
2013
2050
|
},
|
|
2014
2051
|
security: [
|
|
2015
|
-
{
|
|
2016
|
-
{
|
|
2017
|
-
{
|
|
2052
|
+
{ client_session: [] },
|
|
2053
|
+
{ pat_with_workspace: [] },
|
|
2054
|
+
{ console_session: [] },
|
|
2055
|
+
{ api_key: [] },
|
|
2018
2056
|
],
|
|
2019
2057
|
summary: '/access_codes/create',
|
|
2020
2058
|
tags: ['/access_codes'],
|
|
@@ -2094,9 +2132,10 @@ export default {
|
|
|
2094
2132
|
401: { description: 'Unauthorized' },
|
|
2095
2133
|
},
|
|
2096
2134
|
security: [
|
|
2097
|
-
{
|
|
2098
|
-
{
|
|
2099
|
-
{
|
|
2135
|
+
{ client_session: [] },
|
|
2136
|
+
{ pat_with_workspace: [] },
|
|
2137
|
+
{ console_session: [] },
|
|
2138
|
+
{ api_key: [] },
|
|
2100
2139
|
],
|
|
2101
2140
|
summary: '/access_codes/create_multiple',
|
|
2102
2141
|
tags: ['/access_codes'],
|
|
@@ -2174,9 +2213,10 @@ export default {
|
|
|
2174
2213
|
401: { description: 'Unauthorized' },
|
|
2175
2214
|
},
|
|
2176
2215
|
security: [
|
|
2177
|
-
{
|
|
2178
|
-
{
|
|
2179
|
-
{
|
|
2216
|
+
{ client_session: [] },
|
|
2217
|
+
{ pat_with_workspace: [] },
|
|
2218
|
+
{ console_session: [] },
|
|
2219
|
+
{ api_key: [] },
|
|
2180
2220
|
],
|
|
2181
2221
|
summary: '/access_codes/create_multiple',
|
|
2182
2222
|
tags: ['/access_codes'],
|
|
@@ -2223,9 +2263,10 @@ export default {
|
|
|
2223
2263
|
401: { description: 'Unauthorized' },
|
|
2224
2264
|
},
|
|
2225
2265
|
security: [
|
|
2226
|
-
{
|
|
2227
|
-
{
|
|
2228
|
-
{
|
|
2266
|
+
{ client_session: [] },
|
|
2267
|
+
{ pat_with_workspace: [] },
|
|
2268
|
+
{ console_session: [] },
|
|
2269
|
+
{ api_key: [] },
|
|
2229
2270
|
],
|
|
2230
2271
|
summary: '/access_codes/delete',
|
|
2231
2272
|
tags: ['/access_codes'],
|
|
@@ -2270,9 +2311,10 @@ export default {
|
|
|
2270
2311
|
401: { description: 'Unauthorized' },
|
|
2271
2312
|
},
|
|
2272
2313
|
security: [
|
|
2273
|
-
{
|
|
2274
|
-
{
|
|
2275
|
-
{
|
|
2314
|
+
{ client_session: [] },
|
|
2315
|
+
{ pat_with_workspace: [] },
|
|
2316
|
+
{ console_session: [] },
|
|
2317
|
+
{ api_key: [] },
|
|
2276
2318
|
],
|
|
2277
2319
|
summary: '/access_codes/generate_code',
|
|
2278
2320
|
tags: ['/access_codes'],
|
|
@@ -2373,9 +2415,10 @@ export default {
|
|
|
2373
2415
|
401: { description: 'Unauthorized' },
|
|
2374
2416
|
},
|
|
2375
2417
|
security: [
|
|
2376
|
-
{
|
|
2377
|
-
{
|
|
2378
|
-
{
|
|
2418
|
+
{ client_session: [] },
|
|
2419
|
+
{ pat_with_workspace: [] },
|
|
2420
|
+
{ console_session: [] },
|
|
2421
|
+
{ api_key: [] },
|
|
2379
2422
|
],
|
|
2380
2423
|
summary: '/access_codes/list',
|
|
2381
2424
|
tags: ['/access_codes'],
|
|
@@ -2422,9 +2465,10 @@ export default {
|
|
|
2422
2465
|
401: { description: 'Unauthorized' },
|
|
2423
2466
|
},
|
|
2424
2467
|
security: [
|
|
2425
|
-
{
|
|
2426
|
-
{
|
|
2427
|
-
{
|
|
2468
|
+
{ client_session: [] },
|
|
2469
|
+
{ pat_with_workspace: [] },
|
|
2470
|
+
{ console_session: [] },
|
|
2471
|
+
{ api_key: [] },
|
|
2428
2472
|
],
|
|
2429
2473
|
summary: '/access_codes/pull_backup_access_code',
|
|
2430
2474
|
tags: ['/access_codes'],
|
|
@@ -2478,9 +2522,10 @@ export default {
|
|
|
2478
2522
|
401: { description: 'Unauthorized' },
|
|
2479
2523
|
},
|
|
2480
2524
|
security: [
|
|
2481
|
-
{
|
|
2482
|
-
{
|
|
2483
|
-
{
|
|
2525
|
+
{ client_session: [] },
|
|
2526
|
+
{ pat_with_workspace: [] },
|
|
2527
|
+
{ console_session: [] },
|
|
2528
|
+
{ api_key: [] },
|
|
2484
2529
|
],
|
|
2485
2530
|
summary: '/access_codes/simulate/create_unmanaged_access_code',
|
|
2486
2531
|
tags: ['/access_codes'],
|
|
@@ -2890,9 +2935,10 @@ export default {
|
|
|
2890
2935
|
401: { description: 'Unauthorized' },
|
|
2891
2936
|
},
|
|
2892
2937
|
security: [
|
|
2893
|
-
{
|
|
2894
|
-
{
|
|
2895
|
-
{
|
|
2938
|
+
{ client_session: [] },
|
|
2939
|
+
{ pat_with_workspace: [] },
|
|
2940
|
+
{ console_session: [] },
|
|
2941
|
+
{ api_key: [] },
|
|
2896
2942
|
],
|
|
2897
2943
|
summary: '/access_codes/update',
|
|
2898
2944
|
tags: ['/access_codes'],
|
|
@@ -2963,9 +3009,10 @@ export default {
|
|
|
2963
3009
|
401: { description: 'Unauthorized' },
|
|
2964
3010
|
},
|
|
2965
3011
|
security: [
|
|
2966
|
-
{
|
|
2967
|
-
{
|
|
2968
|
-
{
|
|
3012
|
+
{ client_session: [] },
|
|
3013
|
+
{ pat_with_workspace: [] },
|
|
3014
|
+
{ console_session: [] },
|
|
3015
|
+
{ api_key: [] },
|
|
2969
3016
|
],
|
|
2970
3017
|
summary: '/access_codes/update',
|
|
2971
3018
|
tags: ['/access_codes'],
|
|
@@ -3038,9 +3085,10 @@ export default {
|
|
|
3038
3085
|
401: { description: 'Unauthorized' },
|
|
3039
3086
|
},
|
|
3040
3087
|
security: [
|
|
3041
|
-
{
|
|
3042
|
-
{
|
|
3043
|
-
{
|
|
3088
|
+
{ client_session: [] },
|
|
3089
|
+
{ pat_with_workspace: [] },
|
|
3090
|
+
{ console_session: [] },
|
|
3091
|
+
{ api_key: [] },
|
|
3044
3092
|
],
|
|
3045
3093
|
summary: '/access_codes/update',
|
|
3046
3094
|
tags: ['/access_codes'],
|