@seamapi/types 1.855.0 → 1.857.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 +72 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +247 -0
- package/dist/index.cjs +72 -3
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +45 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +9 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +57 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +10 -0
- package/lib/seam/connect/models/devices/device-metadata.js +7 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +14 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +82 -0
- package/lib/seam/connect/openapi.js +56 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +145 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +12 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +66 -0
- package/src/lib/seam/connect/route-types.ts +156 -0
|
@@ -12704,6 +12704,10 @@ export type Routes = {
|
|
|
12704
12704
|
lock_mac: string;
|
|
12705
12705
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
12706
12706
|
has_gateway: boolean;
|
|
12707
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
12708
|
+
timezone_raw_offset_ms: number;
|
|
12709
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
12710
|
+
time_zone?: string | undefined;
|
|
12707
12711
|
} | undefined;
|
|
12708
12712
|
/** Metadata for a tado° device. */
|
|
12709
12713
|
tado_metadata?: {
|
|
@@ -13535,6 +13539,13 @@ export type Routes = {
|
|
|
13535
13539
|
message: string;
|
|
13536
13540
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13537
13541
|
warning_code: 'entrance_shares_zone';
|
|
13542
|
+
} | {
|
|
13543
|
+
/** Date and time at which Seam created the warning. */
|
|
13544
|
+
created_at: string;
|
|
13545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13546
|
+
message: string;
|
|
13547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13548
|
+
warning_code: 'entrance_setup_required';
|
|
13538
13549
|
})[];
|
|
13539
13550
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
13540
13551
|
latch_metadata?: {
|
|
@@ -17375,6 +17386,10 @@ export type Routes = {
|
|
|
17375
17386
|
lock_mac: string;
|
|
17376
17387
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
17377
17388
|
has_gateway: boolean;
|
|
17389
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
17390
|
+
timezone_raw_offset_ms: number;
|
|
17391
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
17392
|
+
time_zone?: string | undefined;
|
|
17378
17393
|
} | undefined;
|
|
17379
17394
|
/** Metadata for a tado° device. */
|
|
17380
17395
|
tado_metadata?: {
|
|
@@ -18206,6 +18221,13 @@ export type Routes = {
|
|
|
18206
18221
|
message: string;
|
|
18207
18222
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18208
18223
|
warning_code: 'entrance_shares_zone';
|
|
18224
|
+
} | {
|
|
18225
|
+
/** Date and time at which Seam created the warning. */
|
|
18226
|
+
created_at: string;
|
|
18227
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18228
|
+
message: string;
|
|
18229
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18230
|
+
warning_code: 'entrance_setup_required';
|
|
18209
18231
|
})[];
|
|
18210
18232
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
18211
18233
|
latch_metadata?: {
|
|
@@ -19633,6 +19655,13 @@ export type Routes = {
|
|
|
19633
19655
|
message: string;
|
|
19634
19656
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19635
19657
|
warning_code: 'entrance_shares_zone';
|
|
19658
|
+
} | {
|
|
19659
|
+
/** Date and time at which Seam created the warning. */
|
|
19660
|
+
created_at: string;
|
|
19661
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19662
|
+
message: string;
|
|
19663
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19664
|
+
warning_code: 'entrance_setup_required';
|
|
19636
19665
|
})[];
|
|
19637
19666
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19638
19667
|
latch_metadata?: {
|
|
@@ -21361,6 +21390,13 @@ export type Routes = {
|
|
|
21361
21390
|
message: string;
|
|
21362
21391
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21363
21392
|
warning_code: 'entrance_shares_zone';
|
|
21393
|
+
} | {
|
|
21394
|
+
/** Date and time at which Seam created the warning. */
|
|
21395
|
+
created_at: string;
|
|
21396
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21397
|
+
message: string;
|
|
21398
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21399
|
+
warning_code: 'entrance_setup_required';
|
|
21364
21400
|
})[];
|
|
21365
21401
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21366
21402
|
latch_metadata?: {
|
|
@@ -26896,6 +26932,13 @@ export type Routes = {
|
|
|
26896
26932
|
message: string;
|
|
26897
26933
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26898
26934
|
warning_code: 'entrance_shares_zone';
|
|
26935
|
+
} | {
|
|
26936
|
+
/** Date and time at which Seam created the warning. */
|
|
26937
|
+
created_at: string;
|
|
26938
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
26939
|
+
message: string;
|
|
26940
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
26941
|
+
warning_code: 'entrance_setup_required';
|
|
26899
26942
|
})[];
|
|
26900
26943
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
26901
26944
|
latch_metadata?: {
|
|
@@ -27110,6 +27153,13 @@ export type Routes = {
|
|
|
27110
27153
|
message: string;
|
|
27111
27154
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27112
27155
|
warning_code: 'entrance_shares_zone';
|
|
27156
|
+
} | {
|
|
27157
|
+
/** Date and time at which Seam created the warning. */
|
|
27158
|
+
created_at: string;
|
|
27159
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27160
|
+
message: string;
|
|
27161
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27162
|
+
warning_code: 'entrance_setup_required';
|
|
27113
27163
|
})[];
|
|
27114
27164
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27115
27165
|
latch_metadata?: {
|
|
@@ -30313,6 +30363,13 @@ export type Routes = {
|
|
|
30313
30363
|
message: string;
|
|
30314
30364
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30315
30365
|
warning_code: 'entrance_shares_zone';
|
|
30366
|
+
} | {
|
|
30367
|
+
/** Date and time at which Seam created the warning. */
|
|
30368
|
+
created_at: string;
|
|
30369
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30370
|
+
message: string;
|
|
30371
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30372
|
+
warning_code: 'entrance_setup_required';
|
|
30316
30373
|
})[];
|
|
30317
30374
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
30318
30375
|
latch_metadata?: {
|
|
@@ -36722,6 +36779,10 @@ export type Routes = {
|
|
|
36722
36779
|
lock_mac: string;
|
|
36723
36780
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
36724
36781
|
has_gateway: boolean;
|
|
36782
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
36783
|
+
timezone_raw_offset_ms: number;
|
|
36784
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
36785
|
+
time_zone?: string | undefined;
|
|
36725
36786
|
} | undefined;
|
|
36726
36787
|
/** Metadata for a tado° device. */
|
|
36727
36788
|
tado_metadata?: {
|
|
@@ -38117,6 +38178,10 @@ export type Routes = {
|
|
|
38117
38178
|
lock_mac: string;
|
|
38118
38179
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
38119
38180
|
has_gateway: boolean;
|
|
38181
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
38182
|
+
timezone_raw_offset_ms: number;
|
|
38183
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
38184
|
+
time_zone?: string | undefined;
|
|
38120
38185
|
} | undefined;
|
|
38121
38186
|
/** Metadata for a tado° device. */
|
|
38122
38187
|
tado_metadata?: {
|
|
@@ -47894,6 +47959,10 @@ export type Routes = {
|
|
|
47894
47959
|
lock_mac: string;
|
|
47895
47960
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
47896
47961
|
has_gateway: boolean;
|
|
47962
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
47963
|
+
timezone_raw_offset_ms: number;
|
|
47964
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
47965
|
+
time_zone?: string | undefined;
|
|
47897
47966
|
} | undefined;
|
|
47898
47967
|
/** Metadata for a tado° device. */
|
|
47899
47968
|
tado_metadata?: {
|
|
@@ -49239,6 +49308,10 @@ export type Routes = {
|
|
|
49239
49308
|
lock_mac: string;
|
|
49240
49309
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
49241
49310
|
has_gateway: boolean;
|
|
49311
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
49312
|
+
timezone_raw_offset_ms: number;
|
|
49313
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
49314
|
+
time_zone?: string | undefined;
|
|
49242
49315
|
} | undefined;
|
|
49243
49316
|
/** Metadata for a tado° device. */
|
|
49244
49317
|
tado_metadata?: {
|
|
@@ -50634,6 +50707,10 @@ export type Routes = {
|
|
|
50634
50707
|
lock_mac: string;
|
|
50635
50708
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
50636
50709
|
has_gateway: boolean;
|
|
50710
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
50711
|
+
timezone_raw_offset_ms: number;
|
|
50712
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
50713
|
+
time_zone?: string | undefined;
|
|
50637
50714
|
} | undefined;
|
|
50638
50715
|
/** Metadata for a tado° device. */
|
|
50639
50716
|
tado_metadata?: {
|
|
@@ -51978,6 +52055,10 @@ export type Routes = {
|
|
|
51978
52055
|
lock_mac: string;
|
|
51979
52056
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
51980
52057
|
has_gateway: boolean;
|
|
52058
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
52059
|
+
timezone_raw_offset_ms: number;
|
|
52060
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
52061
|
+
time_zone?: string | undefined;
|
|
51981
52062
|
} | undefined;
|
|
51982
52063
|
/** Metadata for a tado° device. */
|
|
51983
52064
|
tado_metadata?: {
|
|
@@ -59435,6 +59516,10 @@ export type Routes = {
|
|
|
59435
59516
|
lock_mac: string;
|
|
59436
59517
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
59437
59518
|
has_gateway: boolean;
|
|
59519
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
59520
|
+
timezone_raw_offset_ms: number;
|
|
59521
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
59522
|
+
time_zone?: string | undefined;
|
|
59438
59523
|
} | undefined;
|
|
59439
59524
|
/** Metadata for a tado° device. */
|
|
59440
59525
|
tado_metadata?: {
|
|
@@ -60779,6 +60864,10 @@ export type Routes = {
|
|
|
60779
60864
|
lock_mac: string;
|
|
60780
60865
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
60781
60866
|
has_gateway: boolean;
|
|
60867
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
60868
|
+
timezone_raw_offset_ms: number;
|
|
60869
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
60870
|
+
time_zone?: string | undefined;
|
|
60782
60871
|
} | undefined;
|
|
60783
60872
|
/** Metadata for a tado° device. */
|
|
60784
60873
|
tado_metadata?: {
|
|
@@ -74019,6 +74108,13 @@ export type Routes = {
|
|
|
74019
74108
|
message: string;
|
|
74020
74109
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74021
74110
|
warning_code: 'entrance_shares_zone';
|
|
74111
|
+
} | {
|
|
74112
|
+
/** Date and time at which Seam created the warning. */
|
|
74113
|
+
created_at: string;
|
|
74114
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74115
|
+
message: string;
|
|
74116
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74117
|
+
warning_code: 'entrance_setup_required';
|
|
74022
74118
|
})[];
|
|
74023
74119
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
74024
74120
|
latch_metadata?: {
|
|
@@ -75033,6 +75129,10 @@ export type Routes = {
|
|
|
75033
75129
|
lock_mac: string;
|
|
75034
75130
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
75035
75131
|
has_gateway: boolean;
|
|
75132
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
75133
|
+
timezone_raw_offset_ms: number;
|
|
75134
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
75135
|
+
time_zone?: string | undefined;
|
|
75036
75136
|
} | undefined;
|
|
75037
75137
|
/** Metadata for a tado° device. */
|
|
75038
75138
|
tado_metadata?: {
|
|
@@ -75864,6 +75964,13 @@ export type Routes = {
|
|
|
75864
75964
|
message: string;
|
|
75865
75965
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75866
75966
|
warning_code: 'entrance_shares_zone';
|
|
75967
|
+
} | {
|
|
75968
|
+
/** Date and time at which Seam created the warning. */
|
|
75969
|
+
created_at: string;
|
|
75970
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75971
|
+
message: string;
|
|
75972
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75973
|
+
warning_code: 'entrance_setup_required';
|
|
75867
75974
|
})[];
|
|
75868
75975
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
75869
75976
|
latch_metadata?: {
|
|
@@ -81800,6 +81907,10 @@ export type Routes = {
|
|
|
81800
81907
|
lock_mac: string;
|
|
81801
81908
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
81802
81909
|
has_gateway: boolean;
|
|
81910
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
81911
|
+
timezone_raw_offset_ms: number;
|
|
81912
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
81913
|
+
time_zone?: string | undefined;
|
|
81803
81914
|
} | undefined;
|
|
81804
81915
|
/** Metadata for a tado° device. */
|
|
81805
81916
|
tado_metadata?: {
|
|
@@ -86239,6 +86350,10 @@ export type Routes = {
|
|
|
86239
86350
|
lock_mac: string;
|
|
86240
86351
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
86241
86352
|
has_gateway: boolean;
|
|
86353
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
86354
|
+
timezone_raw_offset_ms: number;
|
|
86355
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
86356
|
+
time_zone?: string | undefined;
|
|
86242
86357
|
} | undefined;
|
|
86243
86358
|
/** Metadata for a tado° device. */
|
|
86244
86359
|
tado_metadata?: {
|
|
@@ -87583,6 +87698,10 @@ export type Routes = {
|
|
|
87583
87698
|
lock_mac: string;
|
|
87584
87699
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
87585
87700
|
has_gateway: boolean;
|
|
87701
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
87702
|
+
timezone_raw_offset_ms: number;
|
|
87703
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
87704
|
+
time_zone?: string | undefined;
|
|
87586
87705
|
} | undefined;
|
|
87587
87706
|
/** Metadata for a tado° device. */
|
|
87588
87707
|
tado_metadata?: {
|
|
@@ -95937,6 +96056,10 @@ export type Routes = {
|
|
|
95937
96056
|
lock_mac: string;
|
|
95938
96057
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
95939
96058
|
has_gateway: boolean;
|
|
96059
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
96060
|
+
timezone_raw_offset_ms: number;
|
|
96061
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
96062
|
+
time_zone?: string | undefined;
|
|
95940
96063
|
} | undefined;
|
|
95941
96064
|
/** Metadata for a tado° device. */
|
|
95942
96065
|
tado_metadata?: {
|
|
@@ -97283,6 +97406,10 @@ export type Routes = {
|
|
|
97283
97406
|
lock_mac: string;
|
|
97284
97407
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
97285
97408
|
has_gateway: boolean;
|
|
97409
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97410
|
+
timezone_raw_offset_ms: number;
|
|
97411
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
97412
|
+
time_zone?: string | undefined;
|
|
97286
97413
|
} | undefined;
|
|
97287
97414
|
/** Metadata for a tado° device. */
|
|
97288
97415
|
tado_metadata?: {
|
|
@@ -98128,6 +98255,13 @@ export type Routes = {
|
|
|
98128
98255
|
message: string;
|
|
98129
98256
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98130
98257
|
warning_code: 'entrance_shares_zone';
|
|
98258
|
+
} | {
|
|
98259
|
+
/** Date and time at which Seam created the warning. */
|
|
98260
|
+
created_at: string;
|
|
98261
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98262
|
+
message: string;
|
|
98263
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98264
|
+
warning_code: 'entrance_setup_required';
|
|
98131
98265
|
})[];
|
|
98132
98266
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
98133
98267
|
latch_metadata?: {
|
|
@@ -99809,6 +99943,10 @@ export type Routes = {
|
|
|
99809
99943
|
lock_mac: string;
|
|
99810
99944
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
99811
99945
|
has_gateway: boolean;
|
|
99946
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
99947
|
+
timezone_raw_offset_ms: number;
|
|
99948
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
99949
|
+
time_zone?: string | undefined;
|
|
99812
99950
|
} | undefined;
|
|
99813
99951
|
/** Metadata for a tado° device. */
|
|
99814
99952
|
tado_metadata?: {
|
|
@@ -100640,6 +100778,13 @@ export type Routes = {
|
|
|
100640
100778
|
message: string;
|
|
100641
100779
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100642
100780
|
warning_code: 'entrance_shares_zone';
|
|
100781
|
+
} | {
|
|
100782
|
+
/** Date and time at which Seam created the warning. */
|
|
100783
|
+
created_at: string;
|
|
100784
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100785
|
+
message: string;
|
|
100786
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100787
|
+
warning_code: 'entrance_setup_required';
|
|
100643
100788
|
})[];
|
|
100644
100789
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100645
100790
|
latch_metadata?: {
|
package/package.json
CHANGED
|
@@ -49,10 +49,21 @@ const entrance_shares_zone = common_acs_entrance_warning
|
|
|
49
49
|
'Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually.',
|
|
50
50
|
)
|
|
51
51
|
|
|
52
|
+
const entrance_setup_required = common_acs_entrance_warning
|
|
53
|
+
.extend({
|
|
54
|
+
warning_code: z
|
|
55
|
+
.literal('entrance_setup_required')
|
|
56
|
+
.describe(warning_code_description),
|
|
57
|
+
})
|
|
58
|
+
.describe(
|
|
59
|
+
'Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.',
|
|
60
|
+
)
|
|
61
|
+
|
|
52
62
|
const acs_entrance_warning = z
|
|
53
63
|
.discriminatedUnion('warning_code', [
|
|
54
64
|
salto_ks_entrance_access_code_support_removed,
|
|
55
65
|
entrance_shares_zone,
|
|
66
|
+
entrance_setup_required,
|
|
56
67
|
])
|
|
57
68
|
.describe(
|
|
58
69
|
'Warning associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).',
|
|
@@ -62,6 +73,7 @@ const _acs_entrance_warning_map = z.object({
|
|
|
62
73
|
salto_ks_entrance_access_code_support_removed:
|
|
63
74
|
salto_ks_entrance_access_code_support_removed.optional().nullable(),
|
|
64
75
|
entrance_shares_zone: entrance_shares_zone.optional().nullable(),
|
|
76
|
+
entrance_setup_required: entrance_setup_required.optional().nullable(),
|
|
65
77
|
})
|
|
66
78
|
|
|
67
79
|
export type AcsEntranceWarningMap = z.infer<typeof _acs_entrance_warning_map>
|
|
@@ -645,6 +645,17 @@ export const device_metadata = z
|
|
|
645
645
|
.describe(
|
|
646
646
|
`Whether the Omnitec lock has a connected gateway for remote operations.`,
|
|
647
647
|
),
|
|
648
|
+
timezone_raw_offset_ms: z
|
|
649
|
+
.number()
|
|
650
|
+
.describe(
|
|
651
|
+
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`,
|
|
652
|
+
),
|
|
653
|
+
time_zone: z
|
|
654
|
+
.string()
|
|
655
|
+
.optional()
|
|
656
|
+
.describe(
|
|
657
|
+
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`,
|
|
658
|
+
),
|
|
648
659
|
})
|
|
649
660
|
.describe(`Metadata for an Omnitec device.`),
|
|
650
661
|
|
|
@@ -4711,6 +4711,31 @@ const openapi: OpenAPISpec = {
|
|
|
4711
4711
|
required: ['created_at', 'message', 'warning_code'],
|
|
4712
4712
|
type: 'object',
|
|
4713
4713
|
},
|
|
4714
|
+
{
|
|
4715
|
+
description:
|
|
4716
|
+
'Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.',
|
|
4717
|
+
properties: {
|
|
4718
|
+
created_at: {
|
|
4719
|
+
description:
|
|
4720
|
+
'Date and time at which Seam created the warning.',
|
|
4721
|
+
format: 'date-time',
|
|
4722
|
+
type: 'string',
|
|
4723
|
+
},
|
|
4724
|
+
message: {
|
|
4725
|
+
description:
|
|
4726
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
4727
|
+
type: 'string',
|
|
4728
|
+
},
|
|
4729
|
+
warning_code: {
|
|
4730
|
+
description:
|
|
4731
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
4732
|
+
enum: ['entrance_setup_required'],
|
|
4733
|
+
type: 'string',
|
|
4734
|
+
},
|
|
4735
|
+
},
|
|
4736
|
+
required: ['created_at', 'message', 'warning_code'],
|
|
4737
|
+
type: 'object',
|
|
4738
|
+
},
|
|
4714
4739
|
],
|
|
4715
4740
|
},
|
|
4716
4741
|
type: 'array',
|
|
@@ -14227,12 +14252,24 @@ const openapi: OpenAPISpec = {
|
|
|
14227
14252
|
description: 'Lock name for an Omnitec device.',
|
|
14228
14253
|
type: 'string',
|
|
14229
14254
|
},
|
|
14255
|
+
time_zone: {
|
|
14256
|
+
description:
|
|
14257
|
+
'IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.',
|
|
14258
|
+
type: 'string',
|
|
14259
|
+
},
|
|
14260
|
+
timezone_raw_offset_ms: {
|
|
14261
|
+
description:
|
|
14262
|
+
'Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.',
|
|
14263
|
+
format: 'float',
|
|
14264
|
+
type: 'number',
|
|
14265
|
+
},
|
|
14230
14266
|
},
|
|
14231
14267
|
required: [
|
|
14232
14268
|
'lock_id',
|
|
14233
14269
|
'lock_name',
|
|
14234
14270
|
'lock_mac',
|
|
14235
14271
|
'has_gateway',
|
|
14272
|
+
'timezone_raw_offset_ms',
|
|
14236
14273
|
],
|
|
14237
14274
|
type: 'object',
|
|
14238
14275
|
},
|
|
@@ -26205,6 +26242,35 @@ const openapi: OpenAPISpec = {
|
|
|
26205
26242
|
],
|
|
26206
26243
|
type: 'object',
|
|
26207
26244
|
},
|
|
26245
|
+
{
|
|
26246
|
+
description:
|
|
26247
|
+
'Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.',
|
|
26248
|
+
properties: {
|
|
26249
|
+
created_at: {
|
|
26250
|
+
description:
|
|
26251
|
+
'Date and time at which Seam created the warning.',
|
|
26252
|
+
format: 'date-time',
|
|
26253
|
+
type: 'string',
|
|
26254
|
+
},
|
|
26255
|
+
message: {
|
|
26256
|
+
description:
|
|
26257
|
+
'Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.',
|
|
26258
|
+
type: 'string',
|
|
26259
|
+
},
|
|
26260
|
+
warning_code: {
|
|
26261
|
+
description:
|
|
26262
|
+
'Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.',
|
|
26263
|
+
enum: ['entrance_setup_required'],
|
|
26264
|
+
type: 'string',
|
|
26265
|
+
},
|
|
26266
|
+
},
|
|
26267
|
+
required: [
|
|
26268
|
+
'created_at',
|
|
26269
|
+
'message',
|
|
26270
|
+
'warning_code',
|
|
26271
|
+
],
|
|
26272
|
+
type: 'object',
|
|
26273
|
+
},
|
|
26208
26274
|
],
|
|
26209
26275
|
},
|
|
26210
26276
|
type: 'array',
|