@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
package/dist/connect.d.cts
CHANGED
|
@@ -6411,6 +6411,19 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6411
6411
|
message: string;
|
|
6412
6412
|
created_at: string;
|
|
6413
6413
|
warning_code: "entrance_shares_zone";
|
|
6414
|
+
}>, z.ZodObject<{
|
|
6415
|
+
created_at: z.ZodString;
|
|
6416
|
+
message: z.ZodString;
|
|
6417
|
+
} & {
|
|
6418
|
+
warning_code: z.ZodLiteral<"entrance_setup_required">;
|
|
6419
|
+
}, "strip", z.ZodTypeAny, {
|
|
6420
|
+
message: string;
|
|
6421
|
+
created_at: string;
|
|
6422
|
+
warning_code: "entrance_setup_required";
|
|
6423
|
+
}, {
|
|
6424
|
+
message: string;
|
|
6425
|
+
created_at: string;
|
|
6426
|
+
warning_code: "entrance_setup_required";
|
|
6414
6427
|
}>]>, "many">;
|
|
6415
6428
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
6416
6429
|
accessibility_type: z.ZodString;
|
|
@@ -6612,6 +6625,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6612
6625
|
message: string;
|
|
6613
6626
|
created_at: string;
|
|
6614
6627
|
warning_code: "entrance_shares_zone";
|
|
6628
|
+
} | {
|
|
6629
|
+
message: string;
|
|
6630
|
+
created_at: string;
|
|
6631
|
+
warning_code: "entrance_setup_required";
|
|
6615
6632
|
})[];
|
|
6616
6633
|
space_ids: string[];
|
|
6617
6634
|
acs_entrance_id: string;
|
|
@@ -6701,6 +6718,10 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
6701
6718
|
message: string;
|
|
6702
6719
|
created_at: string;
|
|
6703
6720
|
warning_code: "entrance_shares_zone";
|
|
6721
|
+
} | {
|
|
6722
|
+
message: string;
|
|
6723
|
+
created_at: string;
|
|
6724
|
+
warning_code: "entrance_setup_required";
|
|
6704
6725
|
})[];
|
|
6705
6726
|
space_ids: string[];
|
|
6706
6727
|
acs_entrance_id: string;
|
|
@@ -14405,16 +14426,22 @@ declare const batch: z.ZodObject<{
|
|
|
14405
14426
|
lock_name: z.ZodString;
|
|
14406
14427
|
lock_mac: z.ZodString;
|
|
14407
14428
|
has_gateway: z.ZodBoolean;
|
|
14429
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
14430
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
14408
14431
|
}, "strip", z.ZodTypeAny, {
|
|
14409
14432
|
lock_id: number;
|
|
14410
14433
|
lock_name: string;
|
|
14411
14434
|
has_gateway: boolean;
|
|
14435
|
+
timezone_raw_offset_ms: number;
|
|
14412
14436
|
lock_mac: string;
|
|
14437
|
+
time_zone?: string | undefined;
|
|
14413
14438
|
}, {
|
|
14414
14439
|
lock_id: number;
|
|
14415
14440
|
lock_name: string;
|
|
14416
14441
|
has_gateway: boolean;
|
|
14442
|
+
timezone_raw_offset_ms: number;
|
|
14417
14443
|
lock_mac: string;
|
|
14444
|
+
time_zone?: string | undefined;
|
|
14418
14445
|
}>>;
|
|
14419
14446
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
14420
14447
|
serial_no: z.ZodString;
|
|
@@ -14794,7 +14821,9 @@ declare const batch: z.ZodObject<{
|
|
|
14794
14821
|
lock_id: number;
|
|
14795
14822
|
lock_name: string;
|
|
14796
14823
|
has_gateway: boolean;
|
|
14824
|
+
timezone_raw_offset_ms: number;
|
|
14797
14825
|
lock_mac: string;
|
|
14826
|
+
time_zone?: string | undefined;
|
|
14798
14827
|
} | undefined;
|
|
14799
14828
|
tado_metadata?: {
|
|
14800
14829
|
serial_no: string;
|
|
@@ -15080,7 +15109,9 @@ declare const batch: z.ZodObject<{
|
|
|
15080
15109
|
lock_id: number;
|
|
15081
15110
|
lock_name: string;
|
|
15082
15111
|
has_gateway: boolean;
|
|
15112
|
+
timezone_raw_offset_ms: number;
|
|
15083
15113
|
lock_mac: string;
|
|
15114
|
+
time_zone?: string | undefined;
|
|
15084
15115
|
} | undefined;
|
|
15085
15116
|
tado_metadata?: {
|
|
15086
15117
|
serial_no: string;
|
|
@@ -17056,7 +17087,9 @@ declare const batch: z.ZodObject<{
|
|
|
17056
17087
|
lock_id: number;
|
|
17057
17088
|
lock_name: string;
|
|
17058
17089
|
has_gateway: boolean;
|
|
17090
|
+
timezone_raw_offset_ms: number;
|
|
17059
17091
|
lock_mac: string;
|
|
17092
|
+
time_zone?: string | undefined;
|
|
17060
17093
|
} | undefined;
|
|
17061
17094
|
tado_metadata?: {
|
|
17062
17095
|
serial_no: string;
|
|
@@ -17790,7 +17823,9 @@ declare const batch: z.ZodObject<{
|
|
|
17790
17823
|
lock_id: number;
|
|
17791
17824
|
lock_name: string;
|
|
17792
17825
|
has_gateway: boolean;
|
|
17826
|
+
timezone_raw_offset_ms: number;
|
|
17793
17827
|
lock_mac: string;
|
|
17828
|
+
time_zone?: string | undefined;
|
|
17794
17829
|
} | undefined;
|
|
17795
17830
|
tado_metadata?: {
|
|
17796
17831
|
serial_no: string;
|
|
@@ -18510,6 +18545,19 @@ declare const batch: z.ZodObject<{
|
|
|
18510
18545
|
message: string;
|
|
18511
18546
|
created_at: string;
|
|
18512
18547
|
warning_code: "entrance_shares_zone";
|
|
18548
|
+
}>, z.ZodObject<{
|
|
18549
|
+
created_at: z.ZodString;
|
|
18550
|
+
message: z.ZodString;
|
|
18551
|
+
} & {
|
|
18552
|
+
warning_code: z.ZodLiteral<"entrance_setup_required">;
|
|
18553
|
+
}, "strip", z.ZodTypeAny, {
|
|
18554
|
+
message: string;
|
|
18555
|
+
created_at: string;
|
|
18556
|
+
warning_code: "entrance_setup_required";
|
|
18557
|
+
}, {
|
|
18558
|
+
message: string;
|
|
18559
|
+
created_at: string;
|
|
18560
|
+
warning_code: "entrance_setup_required";
|
|
18513
18561
|
}>]>, "many">;
|
|
18514
18562
|
latch_metadata: z.ZodOptional<z.ZodObject<{
|
|
18515
18563
|
accessibility_type: z.ZodString;
|
|
@@ -18711,6 +18759,10 @@ declare const batch: z.ZodObject<{
|
|
|
18711
18759
|
message: string;
|
|
18712
18760
|
created_at: string;
|
|
18713
18761
|
warning_code: "entrance_shares_zone";
|
|
18762
|
+
} | {
|
|
18763
|
+
message: string;
|
|
18764
|
+
created_at: string;
|
|
18765
|
+
warning_code: "entrance_setup_required";
|
|
18714
18766
|
})[];
|
|
18715
18767
|
space_ids: string[];
|
|
18716
18768
|
acs_entrance_id: string;
|
|
@@ -18800,6 +18852,10 @@ declare const batch: z.ZodObject<{
|
|
|
18800
18852
|
message: string;
|
|
18801
18853
|
created_at: string;
|
|
18802
18854
|
warning_code: "entrance_shares_zone";
|
|
18855
|
+
} | {
|
|
18856
|
+
message: string;
|
|
18857
|
+
created_at: string;
|
|
18858
|
+
warning_code: "entrance_setup_required";
|
|
18803
18859
|
})[];
|
|
18804
18860
|
space_ids: string[];
|
|
18805
18861
|
acs_entrance_id: string;
|
|
@@ -27874,16 +27930,22 @@ declare const batch: z.ZodObject<{
|
|
|
27874
27930
|
lock_name: z.ZodString;
|
|
27875
27931
|
lock_mac: z.ZodString;
|
|
27876
27932
|
has_gateway: z.ZodBoolean;
|
|
27933
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
27934
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
27877
27935
|
}, "strip", z.ZodTypeAny, {
|
|
27878
27936
|
lock_id: number;
|
|
27879
27937
|
lock_name: string;
|
|
27880
27938
|
has_gateway: boolean;
|
|
27939
|
+
timezone_raw_offset_ms: number;
|
|
27881
27940
|
lock_mac: string;
|
|
27941
|
+
time_zone?: string | undefined;
|
|
27882
27942
|
}, {
|
|
27883
27943
|
lock_id: number;
|
|
27884
27944
|
lock_name: string;
|
|
27885
27945
|
has_gateway: boolean;
|
|
27946
|
+
timezone_raw_offset_ms: number;
|
|
27886
27947
|
lock_mac: string;
|
|
27948
|
+
time_zone?: string | undefined;
|
|
27887
27949
|
}>>;
|
|
27888
27950
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
27889
27951
|
serial_no: z.ZodString;
|
|
@@ -28263,7 +28325,9 @@ declare const batch: z.ZodObject<{
|
|
|
28263
28325
|
lock_id: number;
|
|
28264
28326
|
lock_name: string;
|
|
28265
28327
|
has_gateway: boolean;
|
|
28328
|
+
timezone_raw_offset_ms: number;
|
|
28266
28329
|
lock_mac: string;
|
|
28330
|
+
time_zone?: string | undefined;
|
|
28267
28331
|
} | undefined;
|
|
28268
28332
|
tado_metadata?: {
|
|
28269
28333
|
serial_no: string;
|
|
@@ -28549,7 +28613,9 @@ declare const batch: z.ZodObject<{
|
|
|
28549
28613
|
lock_id: number;
|
|
28550
28614
|
lock_name: string;
|
|
28551
28615
|
has_gateway: boolean;
|
|
28616
|
+
timezone_raw_offset_ms: number;
|
|
28552
28617
|
lock_mac: string;
|
|
28618
|
+
time_zone?: string | undefined;
|
|
28553
28619
|
} | undefined;
|
|
28554
28620
|
tado_metadata?: {
|
|
28555
28621
|
serial_no: string;
|
|
@@ -40626,7 +40692,9 @@ declare const batch: z.ZodObject<{
|
|
|
40626
40692
|
lock_id: number;
|
|
40627
40693
|
lock_name: string;
|
|
40628
40694
|
has_gateway: boolean;
|
|
40695
|
+
timezone_raw_offset_ms: number;
|
|
40629
40696
|
lock_mac: string;
|
|
40697
|
+
time_zone?: string | undefined;
|
|
40630
40698
|
} | undefined;
|
|
40631
40699
|
tado_metadata?: {
|
|
40632
40700
|
serial_no: string;
|
|
@@ -40972,6 +41040,10 @@ declare const batch: z.ZodObject<{
|
|
|
40972
41040
|
message: string;
|
|
40973
41041
|
created_at: string;
|
|
40974
41042
|
warning_code: "entrance_shares_zone";
|
|
41043
|
+
} | {
|
|
41044
|
+
message: string;
|
|
41045
|
+
created_at: string;
|
|
41046
|
+
warning_code: "entrance_setup_required";
|
|
40975
41047
|
})[];
|
|
40976
41048
|
space_ids: string[];
|
|
40977
41049
|
acs_entrance_id: string;
|
|
@@ -45749,7 +45821,9 @@ declare const batch: z.ZodObject<{
|
|
|
45749
45821
|
lock_id: number;
|
|
45750
45822
|
lock_name: string;
|
|
45751
45823
|
has_gateway: boolean;
|
|
45824
|
+
timezone_raw_offset_ms: number;
|
|
45752
45825
|
lock_mac: string;
|
|
45826
|
+
time_zone?: string | undefined;
|
|
45753
45827
|
} | undefined;
|
|
45754
45828
|
tado_metadata?: {
|
|
45755
45829
|
serial_no: string;
|
|
@@ -46095,6 +46169,10 @@ declare const batch: z.ZodObject<{
|
|
|
46095
46169
|
message: string;
|
|
46096
46170
|
created_at: string;
|
|
46097
46171
|
warning_code: "entrance_shares_zone";
|
|
46172
|
+
} | {
|
|
46173
|
+
message: string;
|
|
46174
|
+
created_at: string;
|
|
46175
|
+
warning_code: "entrance_setup_required";
|
|
46098
46176
|
})[];
|
|
46099
46177
|
space_ids: string[];
|
|
46100
46178
|
acs_entrance_id: string;
|
|
@@ -52833,16 +52911,22 @@ declare const device: z.ZodObject<{
|
|
|
52833
52911
|
lock_name: z.ZodString;
|
|
52834
52912
|
lock_mac: z.ZodString;
|
|
52835
52913
|
has_gateway: z.ZodBoolean;
|
|
52914
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
52915
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
52836
52916
|
}, "strip", z.ZodTypeAny, {
|
|
52837
52917
|
lock_id: number;
|
|
52838
52918
|
lock_name: string;
|
|
52839
52919
|
has_gateway: boolean;
|
|
52920
|
+
timezone_raw_offset_ms: number;
|
|
52840
52921
|
lock_mac: string;
|
|
52922
|
+
time_zone?: string | undefined;
|
|
52841
52923
|
}, {
|
|
52842
52924
|
lock_id: number;
|
|
52843
52925
|
lock_name: string;
|
|
52844
52926
|
has_gateway: boolean;
|
|
52927
|
+
timezone_raw_offset_ms: number;
|
|
52845
52928
|
lock_mac: string;
|
|
52929
|
+
time_zone?: string | undefined;
|
|
52846
52930
|
}>>;
|
|
52847
52931
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
52848
52932
|
serial_no: z.ZodString;
|
|
@@ -53222,7 +53306,9 @@ declare const device: z.ZodObject<{
|
|
|
53222
53306
|
lock_id: number;
|
|
53223
53307
|
lock_name: string;
|
|
53224
53308
|
has_gateway: boolean;
|
|
53309
|
+
timezone_raw_offset_ms: number;
|
|
53225
53310
|
lock_mac: string;
|
|
53311
|
+
time_zone?: string | undefined;
|
|
53226
53312
|
} | undefined;
|
|
53227
53313
|
tado_metadata?: {
|
|
53228
53314
|
serial_no: string;
|
|
@@ -53508,7 +53594,9 @@ declare const device: z.ZodObject<{
|
|
|
53508
53594
|
lock_id: number;
|
|
53509
53595
|
lock_name: string;
|
|
53510
53596
|
has_gateway: boolean;
|
|
53597
|
+
timezone_raw_offset_ms: number;
|
|
53511
53598
|
lock_mac: string;
|
|
53599
|
+
time_zone?: string | undefined;
|
|
53512
53600
|
} | undefined;
|
|
53513
53601
|
tado_metadata?: {
|
|
53514
53602
|
serial_no: string;
|
|
@@ -55484,7 +55572,9 @@ declare const device: z.ZodObject<{
|
|
|
55484
55572
|
lock_id: number;
|
|
55485
55573
|
lock_name: string;
|
|
55486
55574
|
has_gateway: boolean;
|
|
55575
|
+
timezone_raw_offset_ms: number;
|
|
55487
55576
|
lock_mac: string;
|
|
55577
|
+
time_zone?: string | undefined;
|
|
55488
55578
|
} | undefined;
|
|
55489
55579
|
tado_metadata?: {
|
|
55490
55580
|
serial_no: string;
|
|
@@ -56218,7 +56308,9 @@ declare const device: z.ZodObject<{
|
|
|
56218
56308
|
lock_id: number;
|
|
56219
56309
|
lock_name: string;
|
|
56220
56310
|
has_gateway: boolean;
|
|
56311
|
+
timezone_raw_offset_ms: number;
|
|
56221
56312
|
lock_mac: string;
|
|
56313
|
+
time_zone?: string | undefined;
|
|
56222
56314
|
} | undefined;
|
|
56223
56315
|
tado_metadata?: {
|
|
56224
56316
|
serial_no: string;
|
|
@@ -57560,16 +57652,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57560
57652
|
lock_name: z.ZodString;
|
|
57561
57653
|
lock_mac: z.ZodString;
|
|
57562
57654
|
has_gateway: z.ZodBoolean;
|
|
57655
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
57656
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
57563
57657
|
}, "strip", z.ZodTypeAny, {
|
|
57564
57658
|
lock_id: number;
|
|
57565
57659
|
lock_name: string;
|
|
57566
57660
|
has_gateway: boolean;
|
|
57661
|
+
timezone_raw_offset_ms: number;
|
|
57567
57662
|
lock_mac: string;
|
|
57663
|
+
time_zone?: string | undefined;
|
|
57568
57664
|
}, {
|
|
57569
57665
|
lock_id: number;
|
|
57570
57666
|
lock_name: string;
|
|
57571
57667
|
has_gateway: boolean;
|
|
57668
|
+
timezone_raw_offset_ms: number;
|
|
57572
57669
|
lock_mac: string;
|
|
57670
|
+
time_zone?: string | undefined;
|
|
57573
57671
|
}>>;
|
|
57574
57672
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
57575
57673
|
serial_no: z.ZodString;
|
|
@@ -57949,7 +58047,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57949
58047
|
lock_id: number;
|
|
57950
58048
|
lock_name: string;
|
|
57951
58049
|
has_gateway: boolean;
|
|
58050
|
+
timezone_raw_offset_ms: number;
|
|
57952
58051
|
lock_mac: string;
|
|
58052
|
+
time_zone?: string | undefined;
|
|
57953
58053
|
} | undefined;
|
|
57954
58054
|
tado_metadata?: {
|
|
57955
58055
|
serial_no: string;
|
|
@@ -58235,7 +58335,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
58235
58335
|
lock_id: number;
|
|
58236
58336
|
lock_name: string;
|
|
58237
58337
|
has_gateway: boolean;
|
|
58338
|
+
timezone_raw_offset_ms: number;
|
|
58238
58339
|
lock_mac: string;
|
|
58340
|
+
time_zone?: string | undefined;
|
|
58239
58341
|
} | undefined;
|
|
58240
58342
|
tado_metadata?: {
|
|
58241
58343
|
serial_no: string;
|
|
@@ -78639,6 +78741,10 @@ type Routes = {
|
|
|
78639
78741
|
lock_mac: string;
|
|
78640
78742
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
78641
78743
|
has_gateway: boolean;
|
|
78744
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
78745
|
+
timezone_raw_offset_ms: number;
|
|
78746
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
78747
|
+
time_zone?: string | undefined;
|
|
78642
78748
|
} | undefined;
|
|
78643
78749
|
/** Metadata for a tado° device. */
|
|
78644
78750
|
tado_metadata?: {
|
|
@@ -79470,6 +79576,13 @@ type Routes = {
|
|
|
79470
79576
|
message: string;
|
|
79471
79577
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79472
79578
|
warning_code: 'entrance_shares_zone';
|
|
79579
|
+
} | {
|
|
79580
|
+
/** Date and time at which Seam created the warning. */
|
|
79581
|
+
created_at: string;
|
|
79582
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
79583
|
+
message: string;
|
|
79584
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79585
|
+
warning_code: 'entrance_setup_required';
|
|
79473
79586
|
})[];
|
|
79474
79587
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
79475
79588
|
latch_metadata?: {
|
|
@@ -83310,6 +83423,10 @@ type Routes = {
|
|
|
83310
83423
|
lock_mac: string;
|
|
83311
83424
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
83312
83425
|
has_gateway: boolean;
|
|
83426
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
83427
|
+
timezone_raw_offset_ms: number;
|
|
83428
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
83429
|
+
time_zone?: string | undefined;
|
|
83313
83430
|
} | undefined;
|
|
83314
83431
|
/** Metadata for a tado° device. */
|
|
83315
83432
|
tado_metadata?: {
|
|
@@ -84141,6 +84258,13 @@ type Routes = {
|
|
|
84141
84258
|
message: string;
|
|
84142
84259
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84143
84260
|
warning_code: 'entrance_shares_zone';
|
|
84261
|
+
} | {
|
|
84262
|
+
/** Date and time at which Seam created the warning. */
|
|
84263
|
+
created_at: string;
|
|
84264
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84265
|
+
message: string;
|
|
84266
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84267
|
+
warning_code: 'entrance_setup_required';
|
|
84144
84268
|
})[];
|
|
84145
84269
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
84146
84270
|
latch_metadata?: {
|
|
@@ -85568,6 +85692,13 @@ type Routes = {
|
|
|
85568
85692
|
message: string;
|
|
85569
85693
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85570
85694
|
warning_code: 'entrance_shares_zone';
|
|
85695
|
+
} | {
|
|
85696
|
+
/** Date and time at which Seam created the warning. */
|
|
85697
|
+
created_at: string;
|
|
85698
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85699
|
+
message: string;
|
|
85700
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85701
|
+
warning_code: 'entrance_setup_required';
|
|
85571
85702
|
})[];
|
|
85572
85703
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
85573
85704
|
latch_metadata?: {
|
|
@@ -87296,6 +87427,13 @@ type Routes = {
|
|
|
87296
87427
|
message: string;
|
|
87297
87428
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87298
87429
|
warning_code: 'entrance_shares_zone';
|
|
87430
|
+
} | {
|
|
87431
|
+
/** Date and time at which Seam created the warning. */
|
|
87432
|
+
created_at: string;
|
|
87433
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87434
|
+
message: string;
|
|
87435
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87436
|
+
warning_code: 'entrance_setup_required';
|
|
87299
87437
|
})[];
|
|
87300
87438
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
87301
87439
|
latch_metadata?: {
|
|
@@ -92831,6 +92969,13 @@ type Routes = {
|
|
|
92831
92969
|
message: string;
|
|
92832
92970
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92833
92971
|
warning_code: 'entrance_shares_zone';
|
|
92972
|
+
} | {
|
|
92973
|
+
/** Date and time at which Seam created the warning. */
|
|
92974
|
+
created_at: string;
|
|
92975
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
92976
|
+
message: string;
|
|
92977
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
92978
|
+
warning_code: 'entrance_setup_required';
|
|
92834
92979
|
})[];
|
|
92835
92980
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
92836
92981
|
latch_metadata?: {
|
|
@@ -93045,6 +93190,13 @@ type Routes = {
|
|
|
93045
93190
|
message: string;
|
|
93046
93191
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93047
93192
|
warning_code: 'entrance_shares_zone';
|
|
93193
|
+
} | {
|
|
93194
|
+
/** Date and time at which Seam created the warning. */
|
|
93195
|
+
created_at: string;
|
|
93196
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
93197
|
+
message: string;
|
|
93198
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
93199
|
+
warning_code: 'entrance_setup_required';
|
|
93048
93200
|
})[];
|
|
93049
93201
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
93050
93202
|
latch_metadata?: {
|
|
@@ -96248,6 +96400,13 @@ type Routes = {
|
|
|
96248
96400
|
message: string;
|
|
96249
96401
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96250
96402
|
warning_code: 'entrance_shares_zone';
|
|
96403
|
+
} | {
|
|
96404
|
+
/** Date and time at which Seam created the warning. */
|
|
96405
|
+
created_at: string;
|
|
96406
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96407
|
+
message: string;
|
|
96408
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96409
|
+
warning_code: 'entrance_setup_required';
|
|
96251
96410
|
})[];
|
|
96252
96411
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
96253
96412
|
latch_metadata?: {
|
|
@@ -102657,6 +102816,10 @@ type Routes = {
|
|
|
102657
102816
|
lock_mac: string;
|
|
102658
102817
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
102659
102818
|
has_gateway: boolean;
|
|
102819
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
102820
|
+
timezone_raw_offset_ms: number;
|
|
102821
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
102822
|
+
time_zone?: string | undefined;
|
|
102660
102823
|
} | undefined;
|
|
102661
102824
|
/** Metadata for a tado° device. */
|
|
102662
102825
|
tado_metadata?: {
|
|
@@ -104052,6 +104215,10 @@ type Routes = {
|
|
|
104052
104215
|
lock_mac: string;
|
|
104053
104216
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
104054
104217
|
has_gateway: boolean;
|
|
104218
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
104219
|
+
timezone_raw_offset_ms: number;
|
|
104220
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
104221
|
+
time_zone?: string | undefined;
|
|
104055
104222
|
} | undefined;
|
|
104056
104223
|
/** Metadata for a tado° device. */
|
|
104057
104224
|
tado_metadata?: {
|
|
@@ -113829,6 +113996,10 @@ type Routes = {
|
|
|
113829
113996
|
lock_mac: string;
|
|
113830
113997
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
113831
113998
|
has_gateway: boolean;
|
|
113999
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
114000
|
+
timezone_raw_offset_ms: number;
|
|
114001
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
114002
|
+
time_zone?: string | undefined;
|
|
113832
114003
|
} | undefined;
|
|
113833
114004
|
/** Metadata for a tado° device. */
|
|
113834
114005
|
tado_metadata?: {
|
|
@@ -115174,6 +115345,10 @@ type Routes = {
|
|
|
115174
115345
|
lock_mac: string;
|
|
115175
115346
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
115176
115347
|
has_gateway: boolean;
|
|
115348
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
115349
|
+
timezone_raw_offset_ms: number;
|
|
115350
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
115351
|
+
time_zone?: string | undefined;
|
|
115177
115352
|
} | undefined;
|
|
115178
115353
|
/** Metadata for a tado° device. */
|
|
115179
115354
|
tado_metadata?: {
|
|
@@ -116569,6 +116744,10 @@ type Routes = {
|
|
|
116569
116744
|
lock_mac: string;
|
|
116570
116745
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
116571
116746
|
has_gateway: boolean;
|
|
116747
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
116748
|
+
timezone_raw_offset_ms: number;
|
|
116749
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
116750
|
+
time_zone?: string | undefined;
|
|
116572
116751
|
} | undefined;
|
|
116573
116752
|
/** Metadata for a tado° device. */
|
|
116574
116753
|
tado_metadata?: {
|
|
@@ -117913,6 +118092,10 @@ type Routes = {
|
|
|
117913
118092
|
lock_mac: string;
|
|
117914
118093
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
117915
118094
|
has_gateway: boolean;
|
|
118095
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
118096
|
+
timezone_raw_offset_ms: number;
|
|
118097
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
118098
|
+
time_zone?: string | undefined;
|
|
117916
118099
|
} | undefined;
|
|
117917
118100
|
/** Metadata for a tado° device. */
|
|
117918
118101
|
tado_metadata?: {
|
|
@@ -125370,6 +125553,10 @@ type Routes = {
|
|
|
125370
125553
|
lock_mac: string;
|
|
125371
125554
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
125372
125555
|
has_gateway: boolean;
|
|
125556
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
125557
|
+
timezone_raw_offset_ms: number;
|
|
125558
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
125559
|
+
time_zone?: string | undefined;
|
|
125373
125560
|
} | undefined;
|
|
125374
125561
|
/** Metadata for a tado° device. */
|
|
125375
125562
|
tado_metadata?: {
|
|
@@ -126714,6 +126901,10 @@ type Routes = {
|
|
|
126714
126901
|
lock_mac: string;
|
|
126715
126902
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
126716
126903
|
has_gateway: boolean;
|
|
126904
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
126905
|
+
timezone_raw_offset_ms: number;
|
|
126906
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
126907
|
+
time_zone?: string | undefined;
|
|
126717
126908
|
} | undefined;
|
|
126718
126909
|
/** Metadata for a tado° device. */
|
|
126719
126910
|
tado_metadata?: {
|
|
@@ -139954,6 +140145,13 @@ type Routes = {
|
|
|
139954
140145
|
message: string;
|
|
139955
140146
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
139956
140147
|
warning_code: 'entrance_shares_zone';
|
|
140148
|
+
} | {
|
|
140149
|
+
/** Date and time at which Seam created the warning. */
|
|
140150
|
+
created_at: string;
|
|
140151
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
140152
|
+
message: string;
|
|
140153
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
140154
|
+
warning_code: 'entrance_setup_required';
|
|
139957
140155
|
})[];
|
|
139958
140156
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
139959
140157
|
latch_metadata?: {
|
|
@@ -140968,6 +141166,10 @@ type Routes = {
|
|
|
140968
141166
|
lock_mac: string;
|
|
140969
141167
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
140970
141168
|
has_gateway: boolean;
|
|
141169
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
141170
|
+
timezone_raw_offset_ms: number;
|
|
141171
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
141172
|
+
time_zone?: string | undefined;
|
|
140971
141173
|
} | undefined;
|
|
140972
141174
|
/** Metadata for a tado° device. */
|
|
140973
141175
|
tado_metadata?: {
|
|
@@ -141799,6 +142001,13 @@ type Routes = {
|
|
|
141799
142001
|
message: string;
|
|
141800
142002
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141801
142003
|
warning_code: 'entrance_shares_zone';
|
|
142004
|
+
} | {
|
|
142005
|
+
/** Date and time at which Seam created the warning. */
|
|
142006
|
+
created_at: string;
|
|
142007
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
142008
|
+
message: string;
|
|
142009
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
142010
|
+
warning_code: 'entrance_setup_required';
|
|
141802
142011
|
})[];
|
|
141803
142012
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
141804
142013
|
latch_metadata?: {
|
|
@@ -147735,6 +147944,10 @@ type Routes = {
|
|
|
147735
147944
|
lock_mac: string;
|
|
147736
147945
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
147737
147946
|
has_gateway: boolean;
|
|
147947
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
147948
|
+
timezone_raw_offset_ms: number;
|
|
147949
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
147950
|
+
time_zone?: string | undefined;
|
|
147738
147951
|
} | undefined;
|
|
147739
147952
|
/** Metadata for a tado° device. */
|
|
147740
147953
|
tado_metadata?: {
|
|
@@ -152174,6 +152387,10 @@ type Routes = {
|
|
|
152174
152387
|
lock_mac: string;
|
|
152175
152388
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
152176
152389
|
has_gateway: boolean;
|
|
152390
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
152391
|
+
timezone_raw_offset_ms: number;
|
|
152392
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
152393
|
+
time_zone?: string | undefined;
|
|
152177
152394
|
} | undefined;
|
|
152178
152395
|
/** Metadata for a tado° device. */
|
|
152179
152396
|
tado_metadata?: {
|
|
@@ -153518,6 +153735,10 @@ type Routes = {
|
|
|
153518
153735
|
lock_mac: string;
|
|
153519
153736
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
153520
153737
|
has_gateway: boolean;
|
|
153738
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
153739
|
+
timezone_raw_offset_ms: number;
|
|
153740
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
153741
|
+
time_zone?: string | undefined;
|
|
153521
153742
|
} | undefined;
|
|
153522
153743
|
/** Metadata for a tado° device. */
|
|
153523
153744
|
tado_metadata?: {
|
|
@@ -161872,6 +162093,10 @@ type Routes = {
|
|
|
161872
162093
|
lock_mac: string;
|
|
161873
162094
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
161874
162095
|
has_gateway: boolean;
|
|
162096
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
162097
|
+
timezone_raw_offset_ms: number;
|
|
162098
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
162099
|
+
time_zone?: string | undefined;
|
|
161875
162100
|
} | undefined;
|
|
161876
162101
|
/** Metadata for a tado° device. */
|
|
161877
162102
|
tado_metadata?: {
|
|
@@ -163218,6 +163443,10 @@ type Routes = {
|
|
|
163218
163443
|
lock_mac: string;
|
|
163219
163444
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
163220
163445
|
has_gateway: boolean;
|
|
163446
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
163447
|
+
timezone_raw_offset_ms: number;
|
|
163448
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
163449
|
+
time_zone?: string | undefined;
|
|
163221
163450
|
} | undefined;
|
|
163222
163451
|
/** Metadata for a tado° device. */
|
|
163223
163452
|
tado_metadata?: {
|
|
@@ -164063,6 +164292,13 @@ type Routes = {
|
|
|
164063
164292
|
message: string;
|
|
164064
164293
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164065
164294
|
warning_code: 'entrance_shares_zone';
|
|
164295
|
+
} | {
|
|
164296
|
+
/** Date and time at which Seam created the warning. */
|
|
164297
|
+
created_at: string;
|
|
164298
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
164299
|
+
message: string;
|
|
164300
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
164301
|
+
warning_code: 'entrance_setup_required';
|
|
164066
164302
|
})[];
|
|
164067
164303
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
164068
164304
|
latch_metadata?: {
|
|
@@ -165744,6 +165980,10 @@ type Routes = {
|
|
|
165744
165980
|
lock_mac: string;
|
|
165745
165981
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
165746
165982
|
has_gateway: boolean;
|
|
165983
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
165984
|
+
timezone_raw_offset_ms: number;
|
|
165985
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
165986
|
+
time_zone?: string | undefined;
|
|
165747
165987
|
} | undefined;
|
|
165748
165988
|
/** Metadata for a tado° device. */
|
|
165749
165989
|
tado_metadata?: {
|
|
@@ -166575,6 +166815,13 @@ type Routes = {
|
|
|
166575
166815
|
message: string;
|
|
166576
166816
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166577
166817
|
warning_code: 'entrance_shares_zone';
|
|
166818
|
+
} | {
|
|
166819
|
+
/** Date and time at which Seam created the warning. */
|
|
166820
|
+
created_at: string;
|
|
166821
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
166822
|
+
message: string;
|
|
166823
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
166824
|
+
warning_code: 'entrance_setup_required';
|
|
166578
166825
|
})[];
|
|
166579
166826
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
166580
166827
|
latch_metadata?: {
|