@seamapi/types 1.950.0 → 1.952.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 +120 -6
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +299 -6
- package/dist/index.cjs +120 -6
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -4
- package/lib/seam/connect/models/acs/acs-entrance.js +7 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/salto.d.ts +2 -2
- package/lib/seam/connect/models/devices/device.d.ts +58 -0
- package/lib/seam/connect/models/devices/device.js +11 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +21 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -18
- package/lib/seam/connect/openapi.js +98 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +219 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -0
- package/src/lib/seam/connect/models/devices/device.ts +12 -0
- package/src/lib/seam/connect/openapi.ts +114 -2
- package/src/lib/seam/connect/route-types.ts +250 -0
|
@@ -252,6 +252,19 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
252
252
|
message: string;
|
|
253
253
|
created_at: string;
|
|
254
254
|
warning_code: "salto_ks_privacy_mode";
|
|
255
|
+
}>, z.ZodObject<{
|
|
256
|
+
created_at: z.ZodString;
|
|
257
|
+
message: z.ZodString;
|
|
258
|
+
} & {
|
|
259
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
260
|
+
}, "strip", z.ZodTypeAny, {
|
|
261
|
+
message: string;
|
|
262
|
+
created_at: string;
|
|
263
|
+
warning_code: "privacy_mode";
|
|
264
|
+
}, {
|
|
265
|
+
message: string;
|
|
266
|
+
created_at: string;
|
|
267
|
+
warning_code: "privacy_mode";
|
|
255
268
|
}>]>, "many">;
|
|
256
269
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
257
270
|
accessibility_type: z.ZodString;
|
|
@@ -324,19 +337,19 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
324
337
|
battery_level: string;
|
|
325
338
|
locked_state: string;
|
|
326
339
|
door_name: string;
|
|
340
|
+
privacy_mode?: boolean | undefined;
|
|
327
341
|
online?: boolean | undefined;
|
|
328
342
|
left_open_alarm?: boolean | undefined;
|
|
329
343
|
intrusion_alarm?: boolean | undefined;
|
|
330
|
-
privacy_mode?: boolean | undefined;
|
|
331
344
|
}, {
|
|
332
345
|
lock_type: string;
|
|
333
346
|
battery_level: string;
|
|
334
347
|
locked_state: string;
|
|
335
348
|
door_name: string;
|
|
349
|
+
privacy_mode?: boolean | undefined;
|
|
336
350
|
online?: boolean | undefined;
|
|
337
351
|
left_open_alarm?: boolean | undefined;
|
|
338
352
|
intrusion_alarm?: boolean | undefined;
|
|
339
|
-
privacy_mode?: boolean | undefined;
|
|
340
353
|
}>>;
|
|
341
354
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
342
355
|
access_point_profile: z.ZodString;
|
|
@@ -462,6 +475,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
462
475
|
message: string;
|
|
463
476
|
created_at: string;
|
|
464
477
|
warning_code: "salto_ks_privacy_mode";
|
|
478
|
+
} | {
|
|
479
|
+
message: string;
|
|
480
|
+
created_at: string;
|
|
481
|
+
warning_code: "privacy_mode";
|
|
465
482
|
})[];
|
|
466
483
|
space_ids: string[];
|
|
467
484
|
acs_entrance_id: string;
|
|
@@ -471,10 +488,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
471
488
|
battery_level: string;
|
|
472
489
|
locked_state: string;
|
|
473
490
|
door_name: string;
|
|
491
|
+
privacy_mode?: boolean | undefined;
|
|
474
492
|
online?: boolean | undefined;
|
|
475
493
|
left_open_alarm?: boolean | undefined;
|
|
476
494
|
intrusion_alarm?: boolean | undefined;
|
|
477
|
-
privacy_mode?: boolean | undefined;
|
|
478
495
|
} | undefined;
|
|
479
496
|
avigilon_alta_metadata?: {
|
|
480
497
|
site_id: number;
|
|
@@ -560,6 +577,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
560
577
|
message: string;
|
|
561
578
|
created_at: string;
|
|
562
579
|
warning_code: "salto_ks_privacy_mode";
|
|
580
|
+
} | {
|
|
581
|
+
message: string;
|
|
582
|
+
created_at: string;
|
|
583
|
+
warning_code: "privacy_mode";
|
|
563
584
|
})[];
|
|
564
585
|
space_ids: string[];
|
|
565
586
|
acs_entrance_id: string;
|
|
@@ -569,10 +590,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
569
590
|
battery_level: string;
|
|
570
591
|
locked_state: string;
|
|
571
592
|
door_name: string;
|
|
593
|
+
privacy_mode?: boolean | undefined;
|
|
572
594
|
online?: boolean | undefined;
|
|
573
595
|
left_open_alarm?: boolean | undefined;
|
|
574
596
|
intrusion_alarm?: boolean | undefined;
|
|
575
|
-
privacy_mode?: boolean | undefined;
|
|
576
597
|
} | undefined;
|
|
577
598
|
avigilon_alta_metadata?: {
|
|
578
599
|
site_id: number;
|
|
@@ -697,6 +718,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
697
718
|
message: string;
|
|
698
719
|
created_at: string;
|
|
699
720
|
warning_code: "salto_ks_privacy_mode";
|
|
721
|
+
} | {
|
|
722
|
+
message: string;
|
|
723
|
+
created_at: string;
|
|
724
|
+
warning_code: "privacy_mode";
|
|
700
725
|
})[];
|
|
701
726
|
space_ids: string[];
|
|
702
727
|
acs_entrance_id: string;
|
|
@@ -706,10 +731,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
706
731
|
battery_level: string;
|
|
707
732
|
locked_state: string;
|
|
708
733
|
door_name: string;
|
|
734
|
+
privacy_mode?: boolean | undefined;
|
|
709
735
|
online?: boolean | undefined;
|
|
710
736
|
left_open_alarm?: boolean | undefined;
|
|
711
737
|
intrusion_alarm?: boolean | undefined;
|
|
712
|
-
privacy_mode?: boolean | undefined;
|
|
713
738
|
} | undefined;
|
|
714
739
|
avigilon_alta_metadata?: {
|
|
715
740
|
site_id: number;
|
|
@@ -868,6 +893,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
868
893
|
message: string;
|
|
869
894
|
created_at: string;
|
|
870
895
|
warning_code: "salto_ks_privacy_mode";
|
|
896
|
+
} | {
|
|
897
|
+
message: string;
|
|
898
|
+
created_at: string;
|
|
899
|
+
warning_code: "privacy_mode";
|
|
871
900
|
})[];
|
|
872
901
|
space_ids: string[];
|
|
873
902
|
acs_entrance_id: string;
|
|
@@ -877,10 +906,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
877
906
|
battery_level: string;
|
|
878
907
|
locked_state: string;
|
|
879
908
|
door_name: string;
|
|
909
|
+
privacy_mode?: boolean | undefined;
|
|
880
910
|
online?: boolean | undefined;
|
|
881
911
|
left_open_alarm?: boolean | undefined;
|
|
882
912
|
intrusion_alarm?: boolean | undefined;
|
|
883
|
-
privacy_mode?: boolean | undefined;
|
|
884
913
|
} | undefined;
|
|
885
914
|
avigilon_alta_metadata?: {
|
|
886
915
|
site_id: number;
|
|
@@ -1041,6 +1070,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1041
1070
|
message: string;
|
|
1042
1071
|
created_at: string;
|
|
1043
1072
|
warning_code: "salto_ks_privacy_mode";
|
|
1073
|
+
} | {
|
|
1074
|
+
message: string;
|
|
1075
|
+
created_at: string;
|
|
1076
|
+
warning_code: "privacy_mode";
|
|
1044
1077
|
})[];
|
|
1045
1078
|
space_ids: string[];
|
|
1046
1079
|
acs_entrance_id: string;
|
|
@@ -1050,10 +1083,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1050
1083
|
battery_level: string;
|
|
1051
1084
|
locked_state: string;
|
|
1052
1085
|
door_name: string;
|
|
1086
|
+
privacy_mode?: boolean | undefined;
|
|
1053
1087
|
online?: boolean | undefined;
|
|
1054
1088
|
left_open_alarm?: boolean | undefined;
|
|
1055
1089
|
intrusion_alarm?: boolean | undefined;
|
|
1056
|
-
privacy_mode?: boolean | undefined;
|
|
1057
1090
|
} | undefined;
|
|
1058
1091
|
avigilon_alta_metadata?: {
|
|
1059
1092
|
site_id: number;
|
|
@@ -1220,6 +1253,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1220
1253
|
message: string;
|
|
1221
1254
|
created_at: string;
|
|
1222
1255
|
warning_code: "salto_ks_privacy_mode";
|
|
1256
|
+
} | {
|
|
1257
|
+
message: string;
|
|
1258
|
+
created_at: string;
|
|
1259
|
+
warning_code: "privacy_mode";
|
|
1223
1260
|
})[];
|
|
1224
1261
|
space_ids: string[];
|
|
1225
1262
|
acs_entrance_id: string;
|
|
@@ -1229,10 +1266,10 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1229
1266
|
battery_level: string;
|
|
1230
1267
|
locked_state: string;
|
|
1231
1268
|
door_name: string;
|
|
1269
|
+
privacy_mode?: boolean | undefined;
|
|
1232
1270
|
online?: boolean | undefined;
|
|
1233
1271
|
left_open_alarm?: boolean | undefined;
|
|
1234
1272
|
intrusion_alarm?: boolean | undefined;
|
|
1235
|
-
privacy_mode?: boolean | undefined;
|
|
1236
1273
|
} | undefined;
|
|
1237
1274
|
avigilon_alta_metadata?: {
|
|
1238
1275
|
site_id: number;
|
|
@@ -1591,6 +1628,19 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1591
1628
|
message: string;
|
|
1592
1629
|
created_at: string;
|
|
1593
1630
|
warning_code: "salto_ks_privacy_mode";
|
|
1631
|
+
}>, z.ZodObject<{
|
|
1632
|
+
created_at: z.ZodString;
|
|
1633
|
+
message: z.ZodString;
|
|
1634
|
+
} & {
|
|
1635
|
+
warning_code: z.ZodLiteral<"privacy_mode">;
|
|
1636
|
+
}, "strip", z.ZodTypeAny, {
|
|
1637
|
+
message: string;
|
|
1638
|
+
created_at: string;
|
|
1639
|
+
warning_code: "privacy_mode";
|
|
1640
|
+
}, {
|
|
1641
|
+
message: string;
|
|
1642
|
+
created_at: string;
|
|
1643
|
+
warning_code: "privacy_mode";
|
|
1594
1644
|
}>]>, "many">;
|
|
1595
1645
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
1596
1646
|
accessibility_type: z.ZodString;
|
|
@@ -1663,19 +1713,19 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1663
1713
|
battery_level: string;
|
|
1664
1714
|
locked_state: string;
|
|
1665
1715
|
door_name: string;
|
|
1716
|
+
privacy_mode?: boolean | undefined;
|
|
1666
1717
|
online?: boolean | undefined;
|
|
1667
1718
|
left_open_alarm?: boolean | undefined;
|
|
1668
1719
|
intrusion_alarm?: boolean | undefined;
|
|
1669
|
-
privacy_mode?: boolean | undefined;
|
|
1670
1720
|
}, {
|
|
1671
1721
|
lock_type: string;
|
|
1672
1722
|
battery_level: string;
|
|
1673
1723
|
locked_state: string;
|
|
1674
1724
|
door_name: string;
|
|
1725
|
+
privacy_mode?: boolean | undefined;
|
|
1675
1726
|
online?: boolean | undefined;
|
|
1676
1727
|
left_open_alarm?: boolean | undefined;
|
|
1677
1728
|
intrusion_alarm?: boolean | undefined;
|
|
1678
|
-
privacy_mode?: boolean | undefined;
|
|
1679
1729
|
}>>;
|
|
1680
1730
|
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
1681
1731
|
access_point_profile: z.ZodString;
|
|
@@ -1801,6 +1851,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1801
1851
|
message: string;
|
|
1802
1852
|
created_at: string;
|
|
1803
1853
|
warning_code: "salto_ks_privacy_mode";
|
|
1854
|
+
} | {
|
|
1855
|
+
message: string;
|
|
1856
|
+
created_at: string;
|
|
1857
|
+
warning_code: "privacy_mode";
|
|
1804
1858
|
})[];
|
|
1805
1859
|
space_ids: string[];
|
|
1806
1860
|
acs_entrance_id: string;
|
|
@@ -1810,10 +1864,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1810
1864
|
battery_level: string;
|
|
1811
1865
|
locked_state: string;
|
|
1812
1866
|
door_name: string;
|
|
1867
|
+
privacy_mode?: boolean | undefined;
|
|
1813
1868
|
online?: boolean | undefined;
|
|
1814
1869
|
left_open_alarm?: boolean | undefined;
|
|
1815
1870
|
intrusion_alarm?: boolean | undefined;
|
|
1816
|
-
privacy_mode?: boolean | undefined;
|
|
1817
1871
|
} | undefined;
|
|
1818
1872
|
avigilon_alta_metadata?: {
|
|
1819
1873
|
site_id: number;
|
|
@@ -1899,6 +1953,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1899
1953
|
message: string;
|
|
1900
1954
|
created_at: string;
|
|
1901
1955
|
warning_code: "salto_ks_privacy_mode";
|
|
1956
|
+
} | {
|
|
1957
|
+
message: string;
|
|
1958
|
+
created_at: string;
|
|
1959
|
+
warning_code: "privacy_mode";
|
|
1902
1960
|
})[];
|
|
1903
1961
|
space_ids: string[];
|
|
1904
1962
|
acs_entrance_id: string;
|
|
@@ -1908,10 +1966,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1908
1966
|
battery_level: string;
|
|
1909
1967
|
locked_state: string;
|
|
1910
1968
|
door_name: string;
|
|
1969
|
+
privacy_mode?: boolean | undefined;
|
|
1911
1970
|
online?: boolean | undefined;
|
|
1912
1971
|
left_open_alarm?: boolean | undefined;
|
|
1913
1972
|
intrusion_alarm?: boolean | undefined;
|
|
1914
|
-
privacy_mode?: boolean | undefined;
|
|
1915
1973
|
} | undefined;
|
|
1916
1974
|
avigilon_alta_metadata?: {
|
|
1917
1975
|
site_id: number;
|
|
@@ -2036,6 +2094,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2036
2094
|
message: string;
|
|
2037
2095
|
created_at: string;
|
|
2038
2096
|
warning_code: "salto_ks_privacy_mode";
|
|
2097
|
+
} | {
|
|
2098
|
+
message: string;
|
|
2099
|
+
created_at: string;
|
|
2100
|
+
warning_code: "privacy_mode";
|
|
2039
2101
|
})[];
|
|
2040
2102
|
space_ids: string[];
|
|
2041
2103
|
acs_entrance_id: string;
|
|
@@ -2045,10 +2107,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2045
2107
|
battery_level: string;
|
|
2046
2108
|
locked_state: string;
|
|
2047
2109
|
door_name: string;
|
|
2110
|
+
privacy_mode?: boolean | undefined;
|
|
2048
2111
|
online?: boolean | undefined;
|
|
2049
2112
|
left_open_alarm?: boolean | undefined;
|
|
2050
2113
|
intrusion_alarm?: boolean | undefined;
|
|
2051
|
-
privacy_mode?: boolean | undefined;
|
|
2052
2114
|
} | undefined;
|
|
2053
2115
|
avigilon_alta_metadata?: {
|
|
2054
2116
|
site_id: number;
|
|
@@ -2207,6 +2269,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2207
2269
|
message: string;
|
|
2208
2270
|
created_at: string;
|
|
2209
2271
|
warning_code: "salto_ks_privacy_mode";
|
|
2272
|
+
} | {
|
|
2273
|
+
message: string;
|
|
2274
|
+
created_at: string;
|
|
2275
|
+
warning_code: "privacy_mode";
|
|
2210
2276
|
})[];
|
|
2211
2277
|
space_ids: string[];
|
|
2212
2278
|
acs_entrance_id: string;
|
|
@@ -2216,10 +2282,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2216
2282
|
battery_level: string;
|
|
2217
2283
|
locked_state: string;
|
|
2218
2284
|
door_name: string;
|
|
2285
|
+
privacy_mode?: boolean | undefined;
|
|
2219
2286
|
online?: boolean | undefined;
|
|
2220
2287
|
left_open_alarm?: boolean | undefined;
|
|
2221
2288
|
intrusion_alarm?: boolean | undefined;
|
|
2222
|
-
privacy_mode?: boolean | undefined;
|
|
2223
2289
|
} | undefined;
|
|
2224
2290
|
avigilon_alta_metadata?: {
|
|
2225
2291
|
site_id: number;
|
|
@@ -2380,6 +2446,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2380
2446
|
message: string;
|
|
2381
2447
|
created_at: string;
|
|
2382
2448
|
warning_code: "salto_ks_privacy_mode";
|
|
2449
|
+
} | {
|
|
2450
|
+
message: string;
|
|
2451
|
+
created_at: string;
|
|
2452
|
+
warning_code: "privacy_mode";
|
|
2383
2453
|
})[];
|
|
2384
2454
|
space_ids: string[];
|
|
2385
2455
|
acs_entrance_id: string;
|
|
@@ -2389,10 +2459,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2389
2459
|
battery_level: string;
|
|
2390
2460
|
locked_state: string;
|
|
2391
2461
|
door_name: string;
|
|
2462
|
+
privacy_mode?: boolean | undefined;
|
|
2392
2463
|
online?: boolean | undefined;
|
|
2393
2464
|
left_open_alarm?: boolean | undefined;
|
|
2394
2465
|
intrusion_alarm?: boolean | undefined;
|
|
2395
|
-
privacy_mode?: boolean | undefined;
|
|
2396
2466
|
} | undefined;
|
|
2397
2467
|
avigilon_alta_metadata?: {
|
|
2398
2468
|
site_id: number;
|
|
@@ -2559,6 +2629,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2559
2629
|
message: string;
|
|
2560
2630
|
created_at: string;
|
|
2561
2631
|
warning_code: "salto_ks_privacy_mode";
|
|
2632
|
+
} | {
|
|
2633
|
+
message: string;
|
|
2634
|
+
created_at: string;
|
|
2635
|
+
warning_code: "privacy_mode";
|
|
2562
2636
|
})[];
|
|
2563
2637
|
space_ids: string[];
|
|
2564
2638
|
acs_entrance_id: string;
|
|
@@ -2568,10 +2642,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2568
2642
|
battery_level: string;
|
|
2569
2643
|
locked_state: string;
|
|
2570
2644
|
door_name: string;
|
|
2645
|
+
privacy_mode?: boolean | undefined;
|
|
2571
2646
|
online?: boolean | undefined;
|
|
2572
2647
|
left_open_alarm?: boolean | undefined;
|
|
2573
2648
|
intrusion_alarm?: boolean | undefined;
|
|
2574
|
-
privacy_mode?: boolean | undefined;
|
|
2575
2649
|
} | undefined;
|
|
2576
2650
|
avigilon_alta_metadata?: {
|
|
2577
2651
|
site_id: number;
|
|
@@ -2853,6 +2927,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2853
2927
|
message: string;
|
|
2854
2928
|
created_at: string;
|
|
2855
2929
|
warning_code: "salto_ks_privacy_mode";
|
|
2930
|
+
} | {
|
|
2931
|
+
message: string;
|
|
2932
|
+
created_at: string;
|
|
2933
|
+
warning_code: "privacy_mode";
|
|
2856
2934
|
})[];
|
|
2857
2935
|
space_ids: string[];
|
|
2858
2936
|
acs_entrance_id: string;
|
|
@@ -2862,10 +2940,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2862
2940
|
battery_level: string;
|
|
2863
2941
|
locked_state: string;
|
|
2864
2942
|
door_name: string;
|
|
2943
|
+
privacy_mode?: boolean | undefined;
|
|
2865
2944
|
online?: boolean | undefined;
|
|
2866
2945
|
left_open_alarm?: boolean | undefined;
|
|
2867
2946
|
intrusion_alarm?: boolean | undefined;
|
|
2868
|
-
privacy_mode?: boolean | undefined;
|
|
2869
2947
|
} | undefined;
|
|
2870
2948
|
avigilon_alta_metadata?: {
|
|
2871
2949
|
site_id: number;
|
|
@@ -3063,6 +3141,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
3063
3141
|
message: string;
|
|
3064
3142
|
created_at: string;
|
|
3065
3143
|
warning_code: "salto_ks_privacy_mode";
|
|
3144
|
+
} | {
|
|
3145
|
+
message: string;
|
|
3146
|
+
created_at: string;
|
|
3147
|
+
warning_code: "privacy_mode";
|
|
3066
3148
|
})[];
|
|
3067
3149
|
space_ids: string[];
|
|
3068
3150
|
acs_entrance_id: string;
|
|
@@ -3072,10 +3154,10 @@ export declare const phone_session: z.ZodObject<{
|
|
|
3072
3154
|
battery_level: string;
|
|
3073
3155
|
locked_state: string;
|
|
3074
3156
|
door_name: string;
|
|
3157
|
+
privacy_mode?: boolean | undefined;
|
|
3075
3158
|
online?: boolean | undefined;
|
|
3076
3159
|
left_open_alarm?: boolean | undefined;
|
|
3077
3160
|
intrusion_alarm?: boolean | undefined;
|
|
3078
|
-
privacy_mode?: boolean | undefined;
|
|
3079
3161
|
} | undefined;
|
|
3080
3162
|
avigilon_alta_metadata?: {
|
|
3081
3163
|
site_id: number;
|
|
@@ -3836,7 +3836,7 @@ const openapi = {
|
|
|
3836
3836
|
type: 'object',
|
|
3837
3837
|
},
|
|
3838
3838
|
{
|
|
3839
|
-
description: 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
3839
|
+
description: 'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
3840
3840
|
properties: {
|
|
3841
3841
|
created_at: {
|
|
3842
3842
|
description: 'Date and time at which Seam created the warning.',
|
|
@@ -3856,6 +3856,27 @@ const openapi = {
|
|
|
3856
3856
|
required: ['created_at', 'message', 'warning_code'],
|
|
3857
3857
|
type: 'object',
|
|
3858
3858
|
},
|
|
3859
|
+
{
|
|
3860
|
+
description: 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
3861
|
+
properties: {
|
|
3862
|
+
created_at: {
|
|
3863
|
+
description: 'Date and time at which Seam created the warning.',
|
|
3864
|
+
format: 'date-time',
|
|
3865
|
+
type: 'string',
|
|
3866
|
+
},
|
|
3867
|
+
message: {
|
|
3868
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
3869
|
+
type: 'string',
|
|
3870
|
+
},
|
|
3871
|
+
warning_code: {
|
|
3872
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
3873
|
+
enum: ['privacy_mode'],
|
|
3874
|
+
type: 'string',
|
|
3875
|
+
},
|
|
3876
|
+
},
|
|
3877
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
3878
|
+
type: 'object',
|
|
3879
|
+
},
|
|
3859
3880
|
],
|
|
3860
3881
|
},
|
|
3861
3882
|
type: 'array',
|
|
@@ -14949,6 +14970,7 @@ const openapi = {
|
|
|
14949
14970
|
'x-variant-group-key': 'access_codes',
|
|
14950
14971
|
},
|
|
14951
14972
|
{
|
|
14973
|
+
deprecated: true,
|
|
14952
14974
|
description: 'Indicates that the Salto KS lock is in Privacy Mode. Access Codes will not unlock doors.',
|
|
14953
14975
|
properties: {
|
|
14954
14976
|
created_at: {
|
|
@@ -14968,6 +14990,29 @@ const openapi = {
|
|
|
14968
14990
|
},
|
|
14969
14991
|
required: ['message', 'created_at', 'warning_code'],
|
|
14970
14992
|
type: 'object',
|
|
14993
|
+
'x-deprecated': 'Use `privacy_mode` instead.',
|
|
14994
|
+
'x-variant-group-key': 'access_codes',
|
|
14995
|
+
},
|
|
14996
|
+
{
|
|
14997
|
+
description: 'Indicates that the lock is in Privacy Mode. Access codes and remote unlock are blocked until Privacy Mode is disabled.',
|
|
14998
|
+
properties: {
|
|
14999
|
+
created_at: {
|
|
15000
|
+
description: 'Date and time at which Seam created the warning.',
|
|
15001
|
+
format: 'date-time',
|
|
15002
|
+
type: 'string',
|
|
15003
|
+
},
|
|
15004
|
+
message: {
|
|
15005
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
15006
|
+
type: 'string',
|
|
15007
|
+
},
|
|
15008
|
+
warning_code: {
|
|
15009
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
15010
|
+
enum: ['privacy_mode'],
|
|
15011
|
+
type: 'string',
|
|
15012
|
+
},
|
|
15013
|
+
},
|
|
15014
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
15015
|
+
type: 'object',
|
|
14971
15016
|
'x-variant-group-key': 'access_codes',
|
|
14972
15017
|
},
|
|
14973
15018
|
{
|
|
@@ -25401,7 +25446,7 @@ const openapi = {
|
|
|
25401
25446
|
type: 'object',
|
|
25402
25447
|
},
|
|
25403
25448
|
{
|
|
25404
|
-
description: 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
25449
|
+
description: 'deprecated: Use `privacy_mode` instead. Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
25405
25450
|
properties: {
|
|
25406
25451
|
created_at: {
|
|
25407
25452
|
description: 'Date and time at which Seam created the warning.',
|
|
@@ -25425,6 +25470,31 @@ const openapi = {
|
|
|
25425
25470
|
],
|
|
25426
25471
|
type: 'object',
|
|
25427
25472
|
},
|
|
25473
|
+
{
|
|
25474
|
+
description: 'Indicates that this entrance is in privacy mode. When privacy mode is enabled, access codes, mobile keys, and remote unlocks will not work unless the user has admin access.',
|
|
25475
|
+
properties: {
|
|
25476
|
+
created_at: {
|
|
25477
|
+
description: 'Date and time at which Seam created the warning.',
|
|
25478
|
+
format: 'date-time',
|
|
25479
|
+
type: 'string',
|
|
25480
|
+
},
|
|
25481
|
+
message: {
|
|
25482
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
25483
|
+
type: 'string',
|
|
25484
|
+
},
|
|
25485
|
+
warning_code: {
|
|
25486
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
25487
|
+
enum: ['privacy_mode'],
|
|
25488
|
+
type: 'string',
|
|
25489
|
+
},
|
|
25490
|
+
},
|
|
25491
|
+
required: [
|
|
25492
|
+
'created_at',
|
|
25493
|
+
'message',
|
|
25494
|
+
'warning_code',
|
|
25495
|
+
],
|
|
25496
|
+
type: 'object',
|
|
25497
|
+
},
|
|
25428
25498
|
],
|
|
25429
25499
|
},
|
|
25430
25500
|
type: 'array',
|
|
@@ -30440,6 +30510,7 @@ const openapi = {
|
|
|
30440
30510
|
'x-variant-group-key': 'access_codes',
|
|
30441
30511
|
},
|
|
30442
30512
|
{
|
|
30513
|
+
deprecated: true,
|
|
30443
30514
|
description: 'Indicates that the Salto KS lock is in Privacy Mode. Access Codes will not unlock doors.',
|
|
30444
30515
|
properties: {
|
|
30445
30516
|
created_at: {
|
|
@@ -30459,6 +30530,29 @@ const openapi = {
|
|
|
30459
30530
|
},
|
|
30460
30531
|
required: ['message', 'created_at', 'warning_code'],
|
|
30461
30532
|
type: 'object',
|
|
30533
|
+
'x-deprecated': 'Use `privacy_mode` instead.',
|
|
30534
|
+
'x-variant-group-key': 'access_codes',
|
|
30535
|
+
},
|
|
30536
|
+
{
|
|
30537
|
+
description: 'Indicates that the lock is in Privacy Mode. Access codes and remote unlock are blocked until Privacy Mode is disabled.',
|
|
30538
|
+
properties: {
|
|
30539
|
+
created_at: {
|
|
30540
|
+
description: 'Date and time at which Seam created the warning.',
|
|
30541
|
+
format: 'date-time',
|
|
30542
|
+
type: 'string',
|
|
30543
|
+
},
|
|
30544
|
+
message: {
|
|
30545
|
+
description: 'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
30546
|
+
type: 'string',
|
|
30547
|
+
},
|
|
30548
|
+
warning_code: {
|
|
30549
|
+
description: 'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
30550
|
+
enum: ['privacy_mode'],
|
|
30551
|
+
type: 'string',
|
|
30552
|
+
},
|
|
30553
|
+
},
|
|
30554
|
+
required: ['message', 'created_at', 'warning_code'],
|
|
30555
|
+
type: 'object',
|
|
30462
30556
|
'x-variant-group-key': 'access_codes',
|
|
30463
30557
|
},
|
|
30464
30558
|
{
|
|
@@ -62535,6 +62629,7 @@ const openapi = {
|
|
|
62535
62629
|
'MANAGE_DEVICES_CONFIRMATION_MODAL',
|
|
62536
62630
|
'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES',
|
|
62537
62631
|
'LYNX_MIGRATION_ENABLED',
|
|
62632
|
+
'AURORA_CUSTOMER_FILTER_ENABLED',
|
|
62538
62633
|
],
|
|
62539
62634
|
type: 'string',
|
|
62540
62635
|
},
|
|
@@ -62564,6 +62659,7 @@ const openapi = {
|
|
|
62564
62659
|
'MANAGE_DEVICES_CONFIRMATION_MODAL',
|
|
62565
62660
|
'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES',
|
|
62566
62661
|
'LYNX_MIGRATION_ENABLED',
|
|
62662
|
+
'AURORA_CUSTOMER_FILTER_ENABLED',
|
|
62567
62663
|
],
|
|
62568
62664
|
type: 'string',
|
|
62569
62665
|
},
|