@seamapi/types 1.855.0 → 1.856.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 +17 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +120 -0
- package/dist/index.cjs +17 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +28 -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/openapi.js +10 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +68 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +11 -0
- package/src/lib/seam/connect/openapi.ts +12 -0
- package/src/lib/seam/connect/route-types.ts +68 -0
package/dist/connect.d.cts
CHANGED
|
@@ -14405,16 +14405,22 @@ declare const batch: z.ZodObject<{
|
|
|
14405
14405
|
lock_name: z.ZodString;
|
|
14406
14406
|
lock_mac: z.ZodString;
|
|
14407
14407
|
has_gateway: z.ZodBoolean;
|
|
14408
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
14409
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
14408
14410
|
}, "strip", z.ZodTypeAny, {
|
|
14409
14411
|
lock_id: number;
|
|
14410
14412
|
lock_name: string;
|
|
14411
14413
|
has_gateway: boolean;
|
|
14414
|
+
timezone_raw_offset_ms: number;
|
|
14412
14415
|
lock_mac: string;
|
|
14416
|
+
time_zone?: string | undefined;
|
|
14413
14417
|
}, {
|
|
14414
14418
|
lock_id: number;
|
|
14415
14419
|
lock_name: string;
|
|
14416
14420
|
has_gateway: boolean;
|
|
14421
|
+
timezone_raw_offset_ms: number;
|
|
14417
14422
|
lock_mac: string;
|
|
14423
|
+
time_zone?: string | undefined;
|
|
14418
14424
|
}>>;
|
|
14419
14425
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
14420
14426
|
serial_no: z.ZodString;
|
|
@@ -14794,7 +14800,9 @@ declare const batch: z.ZodObject<{
|
|
|
14794
14800
|
lock_id: number;
|
|
14795
14801
|
lock_name: string;
|
|
14796
14802
|
has_gateway: boolean;
|
|
14803
|
+
timezone_raw_offset_ms: number;
|
|
14797
14804
|
lock_mac: string;
|
|
14805
|
+
time_zone?: string | undefined;
|
|
14798
14806
|
} | undefined;
|
|
14799
14807
|
tado_metadata?: {
|
|
14800
14808
|
serial_no: string;
|
|
@@ -15080,7 +15088,9 @@ declare const batch: z.ZodObject<{
|
|
|
15080
15088
|
lock_id: number;
|
|
15081
15089
|
lock_name: string;
|
|
15082
15090
|
has_gateway: boolean;
|
|
15091
|
+
timezone_raw_offset_ms: number;
|
|
15083
15092
|
lock_mac: string;
|
|
15093
|
+
time_zone?: string | undefined;
|
|
15084
15094
|
} | undefined;
|
|
15085
15095
|
tado_metadata?: {
|
|
15086
15096
|
serial_no: string;
|
|
@@ -17056,7 +17066,9 @@ declare const batch: z.ZodObject<{
|
|
|
17056
17066
|
lock_id: number;
|
|
17057
17067
|
lock_name: string;
|
|
17058
17068
|
has_gateway: boolean;
|
|
17069
|
+
timezone_raw_offset_ms: number;
|
|
17059
17070
|
lock_mac: string;
|
|
17071
|
+
time_zone?: string | undefined;
|
|
17060
17072
|
} | undefined;
|
|
17061
17073
|
tado_metadata?: {
|
|
17062
17074
|
serial_no: string;
|
|
@@ -17790,7 +17802,9 @@ declare const batch: z.ZodObject<{
|
|
|
17790
17802
|
lock_id: number;
|
|
17791
17803
|
lock_name: string;
|
|
17792
17804
|
has_gateway: boolean;
|
|
17805
|
+
timezone_raw_offset_ms: number;
|
|
17793
17806
|
lock_mac: string;
|
|
17807
|
+
time_zone?: string | undefined;
|
|
17794
17808
|
} | undefined;
|
|
17795
17809
|
tado_metadata?: {
|
|
17796
17810
|
serial_no: string;
|
|
@@ -27874,16 +27888,22 @@ declare const batch: z.ZodObject<{
|
|
|
27874
27888
|
lock_name: z.ZodString;
|
|
27875
27889
|
lock_mac: z.ZodString;
|
|
27876
27890
|
has_gateway: z.ZodBoolean;
|
|
27891
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
27892
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
27877
27893
|
}, "strip", z.ZodTypeAny, {
|
|
27878
27894
|
lock_id: number;
|
|
27879
27895
|
lock_name: string;
|
|
27880
27896
|
has_gateway: boolean;
|
|
27897
|
+
timezone_raw_offset_ms: number;
|
|
27881
27898
|
lock_mac: string;
|
|
27899
|
+
time_zone?: string | undefined;
|
|
27882
27900
|
}, {
|
|
27883
27901
|
lock_id: number;
|
|
27884
27902
|
lock_name: string;
|
|
27885
27903
|
has_gateway: boolean;
|
|
27904
|
+
timezone_raw_offset_ms: number;
|
|
27886
27905
|
lock_mac: string;
|
|
27906
|
+
time_zone?: string | undefined;
|
|
27887
27907
|
}>>;
|
|
27888
27908
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
27889
27909
|
serial_no: z.ZodString;
|
|
@@ -28263,7 +28283,9 @@ declare const batch: z.ZodObject<{
|
|
|
28263
28283
|
lock_id: number;
|
|
28264
28284
|
lock_name: string;
|
|
28265
28285
|
has_gateway: boolean;
|
|
28286
|
+
timezone_raw_offset_ms: number;
|
|
28266
28287
|
lock_mac: string;
|
|
28288
|
+
time_zone?: string | undefined;
|
|
28267
28289
|
} | undefined;
|
|
28268
28290
|
tado_metadata?: {
|
|
28269
28291
|
serial_no: string;
|
|
@@ -28549,7 +28571,9 @@ declare const batch: z.ZodObject<{
|
|
|
28549
28571
|
lock_id: number;
|
|
28550
28572
|
lock_name: string;
|
|
28551
28573
|
has_gateway: boolean;
|
|
28574
|
+
timezone_raw_offset_ms: number;
|
|
28552
28575
|
lock_mac: string;
|
|
28576
|
+
time_zone?: string | undefined;
|
|
28553
28577
|
} | undefined;
|
|
28554
28578
|
tado_metadata?: {
|
|
28555
28579
|
serial_no: string;
|
|
@@ -40626,7 +40650,9 @@ declare const batch: z.ZodObject<{
|
|
|
40626
40650
|
lock_id: number;
|
|
40627
40651
|
lock_name: string;
|
|
40628
40652
|
has_gateway: boolean;
|
|
40653
|
+
timezone_raw_offset_ms: number;
|
|
40629
40654
|
lock_mac: string;
|
|
40655
|
+
time_zone?: string | undefined;
|
|
40630
40656
|
} | undefined;
|
|
40631
40657
|
tado_metadata?: {
|
|
40632
40658
|
serial_no: string;
|
|
@@ -45749,7 +45775,9 @@ declare const batch: z.ZodObject<{
|
|
|
45749
45775
|
lock_id: number;
|
|
45750
45776
|
lock_name: string;
|
|
45751
45777
|
has_gateway: boolean;
|
|
45778
|
+
timezone_raw_offset_ms: number;
|
|
45752
45779
|
lock_mac: string;
|
|
45780
|
+
time_zone?: string | undefined;
|
|
45753
45781
|
} | undefined;
|
|
45754
45782
|
tado_metadata?: {
|
|
45755
45783
|
serial_no: string;
|
|
@@ -52833,16 +52861,22 @@ declare const device: z.ZodObject<{
|
|
|
52833
52861
|
lock_name: z.ZodString;
|
|
52834
52862
|
lock_mac: z.ZodString;
|
|
52835
52863
|
has_gateway: z.ZodBoolean;
|
|
52864
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
52865
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
52836
52866
|
}, "strip", z.ZodTypeAny, {
|
|
52837
52867
|
lock_id: number;
|
|
52838
52868
|
lock_name: string;
|
|
52839
52869
|
has_gateway: boolean;
|
|
52870
|
+
timezone_raw_offset_ms: number;
|
|
52840
52871
|
lock_mac: string;
|
|
52872
|
+
time_zone?: string | undefined;
|
|
52841
52873
|
}, {
|
|
52842
52874
|
lock_id: number;
|
|
52843
52875
|
lock_name: string;
|
|
52844
52876
|
has_gateway: boolean;
|
|
52877
|
+
timezone_raw_offset_ms: number;
|
|
52845
52878
|
lock_mac: string;
|
|
52879
|
+
time_zone?: string | undefined;
|
|
52846
52880
|
}>>;
|
|
52847
52881
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
52848
52882
|
serial_no: z.ZodString;
|
|
@@ -53222,7 +53256,9 @@ declare const device: z.ZodObject<{
|
|
|
53222
53256
|
lock_id: number;
|
|
53223
53257
|
lock_name: string;
|
|
53224
53258
|
has_gateway: boolean;
|
|
53259
|
+
timezone_raw_offset_ms: number;
|
|
53225
53260
|
lock_mac: string;
|
|
53261
|
+
time_zone?: string | undefined;
|
|
53226
53262
|
} | undefined;
|
|
53227
53263
|
tado_metadata?: {
|
|
53228
53264
|
serial_no: string;
|
|
@@ -53508,7 +53544,9 @@ declare const device: z.ZodObject<{
|
|
|
53508
53544
|
lock_id: number;
|
|
53509
53545
|
lock_name: string;
|
|
53510
53546
|
has_gateway: boolean;
|
|
53547
|
+
timezone_raw_offset_ms: number;
|
|
53511
53548
|
lock_mac: string;
|
|
53549
|
+
time_zone?: string | undefined;
|
|
53512
53550
|
} | undefined;
|
|
53513
53551
|
tado_metadata?: {
|
|
53514
53552
|
serial_no: string;
|
|
@@ -55484,7 +55522,9 @@ declare const device: z.ZodObject<{
|
|
|
55484
55522
|
lock_id: number;
|
|
55485
55523
|
lock_name: string;
|
|
55486
55524
|
has_gateway: boolean;
|
|
55525
|
+
timezone_raw_offset_ms: number;
|
|
55487
55526
|
lock_mac: string;
|
|
55527
|
+
time_zone?: string | undefined;
|
|
55488
55528
|
} | undefined;
|
|
55489
55529
|
tado_metadata?: {
|
|
55490
55530
|
serial_no: string;
|
|
@@ -56218,7 +56258,9 @@ declare const device: z.ZodObject<{
|
|
|
56218
56258
|
lock_id: number;
|
|
56219
56259
|
lock_name: string;
|
|
56220
56260
|
has_gateway: boolean;
|
|
56261
|
+
timezone_raw_offset_ms: number;
|
|
56221
56262
|
lock_mac: string;
|
|
56263
|
+
time_zone?: string | undefined;
|
|
56222
56264
|
} | undefined;
|
|
56223
56265
|
tado_metadata?: {
|
|
56224
56266
|
serial_no: string;
|
|
@@ -57560,16 +57602,22 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57560
57602
|
lock_name: z.ZodString;
|
|
57561
57603
|
lock_mac: z.ZodString;
|
|
57562
57604
|
has_gateway: z.ZodBoolean;
|
|
57605
|
+
timezone_raw_offset_ms: z.ZodNumber;
|
|
57606
|
+
time_zone: z.ZodOptional<z.ZodString>;
|
|
57563
57607
|
}, "strip", z.ZodTypeAny, {
|
|
57564
57608
|
lock_id: number;
|
|
57565
57609
|
lock_name: string;
|
|
57566
57610
|
has_gateway: boolean;
|
|
57611
|
+
timezone_raw_offset_ms: number;
|
|
57567
57612
|
lock_mac: string;
|
|
57613
|
+
time_zone?: string | undefined;
|
|
57568
57614
|
}, {
|
|
57569
57615
|
lock_id: number;
|
|
57570
57616
|
lock_name: string;
|
|
57571
57617
|
has_gateway: boolean;
|
|
57618
|
+
timezone_raw_offset_ms: number;
|
|
57572
57619
|
lock_mac: string;
|
|
57620
|
+
time_zone?: string | undefined;
|
|
57573
57621
|
}>>;
|
|
57574
57622
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
57575
57623
|
serial_no: z.ZodString;
|
|
@@ -57949,7 +57997,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
57949
57997
|
lock_id: number;
|
|
57950
57998
|
lock_name: string;
|
|
57951
57999
|
has_gateway: boolean;
|
|
58000
|
+
timezone_raw_offset_ms: number;
|
|
57952
58001
|
lock_mac: string;
|
|
58002
|
+
time_zone?: string | undefined;
|
|
57953
58003
|
} | undefined;
|
|
57954
58004
|
tado_metadata?: {
|
|
57955
58005
|
serial_no: string;
|
|
@@ -58235,7 +58285,9 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
58235
58285
|
lock_id: number;
|
|
58236
58286
|
lock_name: string;
|
|
58237
58287
|
has_gateway: boolean;
|
|
58288
|
+
timezone_raw_offset_ms: number;
|
|
58238
58289
|
lock_mac: string;
|
|
58290
|
+
time_zone?: string | undefined;
|
|
58239
58291
|
} | undefined;
|
|
58240
58292
|
tado_metadata?: {
|
|
58241
58293
|
serial_no: string;
|
|
@@ -78639,6 +78691,10 @@ type Routes = {
|
|
|
78639
78691
|
lock_mac: string;
|
|
78640
78692
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
78641
78693
|
has_gateway: boolean;
|
|
78694
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
78695
|
+
timezone_raw_offset_ms: number;
|
|
78696
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
78697
|
+
time_zone?: string | undefined;
|
|
78642
78698
|
} | undefined;
|
|
78643
78699
|
/** Metadata for a tado° device. */
|
|
78644
78700
|
tado_metadata?: {
|
|
@@ -83310,6 +83366,10 @@ type Routes = {
|
|
|
83310
83366
|
lock_mac: string;
|
|
83311
83367
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
83312
83368
|
has_gateway: boolean;
|
|
83369
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
83370
|
+
timezone_raw_offset_ms: number;
|
|
83371
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
83372
|
+
time_zone?: string | undefined;
|
|
83313
83373
|
} | undefined;
|
|
83314
83374
|
/** Metadata for a tado° device. */
|
|
83315
83375
|
tado_metadata?: {
|
|
@@ -102657,6 +102717,10 @@ type Routes = {
|
|
|
102657
102717
|
lock_mac: string;
|
|
102658
102718
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
102659
102719
|
has_gateway: boolean;
|
|
102720
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
102721
|
+
timezone_raw_offset_ms: number;
|
|
102722
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
102723
|
+
time_zone?: string | undefined;
|
|
102660
102724
|
} | undefined;
|
|
102661
102725
|
/** Metadata for a tado° device. */
|
|
102662
102726
|
tado_metadata?: {
|
|
@@ -104052,6 +104116,10 @@ type Routes = {
|
|
|
104052
104116
|
lock_mac: string;
|
|
104053
104117
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
104054
104118
|
has_gateway: boolean;
|
|
104119
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
104120
|
+
timezone_raw_offset_ms: number;
|
|
104121
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
104122
|
+
time_zone?: string | undefined;
|
|
104055
104123
|
} | undefined;
|
|
104056
104124
|
/** Metadata for a tado° device. */
|
|
104057
104125
|
tado_metadata?: {
|
|
@@ -113829,6 +113897,10 @@ type Routes = {
|
|
|
113829
113897
|
lock_mac: string;
|
|
113830
113898
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
113831
113899
|
has_gateway: boolean;
|
|
113900
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
113901
|
+
timezone_raw_offset_ms: number;
|
|
113902
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
113903
|
+
time_zone?: string | undefined;
|
|
113832
113904
|
} | undefined;
|
|
113833
113905
|
/** Metadata for a tado° device. */
|
|
113834
113906
|
tado_metadata?: {
|
|
@@ -115174,6 +115246,10 @@ type Routes = {
|
|
|
115174
115246
|
lock_mac: string;
|
|
115175
115247
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
115176
115248
|
has_gateway: boolean;
|
|
115249
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
115250
|
+
timezone_raw_offset_ms: number;
|
|
115251
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
115252
|
+
time_zone?: string | undefined;
|
|
115177
115253
|
} | undefined;
|
|
115178
115254
|
/** Metadata for a tado° device. */
|
|
115179
115255
|
tado_metadata?: {
|
|
@@ -116569,6 +116645,10 @@ type Routes = {
|
|
|
116569
116645
|
lock_mac: string;
|
|
116570
116646
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
116571
116647
|
has_gateway: boolean;
|
|
116648
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
116649
|
+
timezone_raw_offset_ms: number;
|
|
116650
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
116651
|
+
time_zone?: string | undefined;
|
|
116572
116652
|
} | undefined;
|
|
116573
116653
|
/** Metadata for a tado° device. */
|
|
116574
116654
|
tado_metadata?: {
|
|
@@ -117913,6 +117993,10 @@ type Routes = {
|
|
|
117913
117993
|
lock_mac: string;
|
|
117914
117994
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
117915
117995
|
has_gateway: boolean;
|
|
117996
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
117997
|
+
timezone_raw_offset_ms: number;
|
|
117998
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
117999
|
+
time_zone?: string | undefined;
|
|
117916
118000
|
} | undefined;
|
|
117917
118001
|
/** Metadata for a tado° device. */
|
|
117918
118002
|
tado_metadata?: {
|
|
@@ -125370,6 +125454,10 @@ type Routes = {
|
|
|
125370
125454
|
lock_mac: string;
|
|
125371
125455
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
125372
125456
|
has_gateway: boolean;
|
|
125457
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
125458
|
+
timezone_raw_offset_ms: number;
|
|
125459
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
125460
|
+
time_zone?: string | undefined;
|
|
125373
125461
|
} | undefined;
|
|
125374
125462
|
/** Metadata for a tado° device. */
|
|
125375
125463
|
tado_metadata?: {
|
|
@@ -126714,6 +126802,10 @@ type Routes = {
|
|
|
126714
126802
|
lock_mac: string;
|
|
126715
126803
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
126716
126804
|
has_gateway: boolean;
|
|
126805
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
126806
|
+
timezone_raw_offset_ms: number;
|
|
126807
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
126808
|
+
time_zone?: string | undefined;
|
|
126717
126809
|
} | undefined;
|
|
126718
126810
|
/** Metadata for a tado° device. */
|
|
126719
126811
|
tado_metadata?: {
|
|
@@ -140968,6 +141060,10 @@ type Routes = {
|
|
|
140968
141060
|
lock_mac: string;
|
|
140969
141061
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
140970
141062
|
has_gateway: boolean;
|
|
141063
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
141064
|
+
timezone_raw_offset_ms: number;
|
|
141065
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
141066
|
+
time_zone?: string | undefined;
|
|
140971
141067
|
} | undefined;
|
|
140972
141068
|
/** Metadata for a tado° device. */
|
|
140973
141069
|
tado_metadata?: {
|
|
@@ -147735,6 +147831,10 @@ type Routes = {
|
|
|
147735
147831
|
lock_mac: string;
|
|
147736
147832
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
147737
147833
|
has_gateway: boolean;
|
|
147834
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
147835
|
+
timezone_raw_offset_ms: number;
|
|
147836
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
147837
|
+
time_zone?: string | undefined;
|
|
147738
147838
|
} | undefined;
|
|
147739
147839
|
/** Metadata for a tado° device. */
|
|
147740
147840
|
tado_metadata?: {
|
|
@@ -152174,6 +152274,10 @@ type Routes = {
|
|
|
152174
152274
|
lock_mac: string;
|
|
152175
152275
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
152176
152276
|
has_gateway: boolean;
|
|
152277
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
152278
|
+
timezone_raw_offset_ms: number;
|
|
152279
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
152280
|
+
time_zone?: string | undefined;
|
|
152177
152281
|
} | undefined;
|
|
152178
152282
|
/** Metadata for a tado° device. */
|
|
152179
152283
|
tado_metadata?: {
|
|
@@ -153518,6 +153622,10 @@ type Routes = {
|
|
|
153518
153622
|
lock_mac: string;
|
|
153519
153623
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
153520
153624
|
has_gateway: boolean;
|
|
153625
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
153626
|
+
timezone_raw_offset_ms: number;
|
|
153627
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
153628
|
+
time_zone?: string | undefined;
|
|
153521
153629
|
} | undefined;
|
|
153522
153630
|
/** Metadata for a tado° device. */
|
|
153523
153631
|
tado_metadata?: {
|
|
@@ -161872,6 +161980,10 @@ type Routes = {
|
|
|
161872
161980
|
lock_mac: string;
|
|
161873
161981
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
161874
161982
|
has_gateway: boolean;
|
|
161983
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
161984
|
+
timezone_raw_offset_ms: number;
|
|
161985
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
161986
|
+
time_zone?: string | undefined;
|
|
161875
161987
|
} | undefined;
|
|
161876
161988
|
/** Metadata for a tado° device. */
|
|
161877
161989
|
tado_metadata?: {
|
|
@@ -163218,6 +163330,10 @@ type Routes = {
|
|
|
163218
163330
|
lock_mac: string;
|
|
163219
163331
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
163220
163332
|
has_gateway: boolean;
|
|
163333
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
163334
|
+
timezone_raw_offset_ms: number;
|
|
163335
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
163336
|
+
time_zone?: string | undefined;
|
|
163221
163337
|
} | undefined;
|
|
163222
163338
|
/** Metadata for a tado° device. */
|
|
163223
163339
|
tado_metadata?: {
|
|
@@ -165744,6 +165860,10 @@ type Routes = {
|
|
|
165744
165860
|
lock_mac: string;
|
|
165745
165861
|
/** Whether the Omnitec lock has a connected gateway for remote operations. */
|
|
165746
165862
|
has_gateway: boolean;
|
|
165863
|
+
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
165864
|
+
timezone_raw_offset_ms: number;
|
|
165865
|
+
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
165866
|
+
time_zone?: string | undefined;
|
|
165747
165867
|
} | undefined;
|
|
165748
165868
|
/** Metadata for a tado° device. */
|
|
165749
165869
|
tado_metadata?: {
|
package/dist/index.cjs
CHANGED
|
@@ -1095,6 +1095,12 @@ var device_metadata = zod.z.object({
|
|
|
1095
1095
|
lock_mac: zod.z.string().describe(`Bluetooth MAC address for an Omnitec device.`),
|
|
1096
1096
|
has_gateway: zod.z.boolean().describe(
|
|
1097
1097
|
`Whether the Omnitec lock has a connected gateway for remote operations.`
|
|
1098
|
+
),
|
|
1099
|
+
timezone_raw_offset_ms: zod.z.number().describe(
|
|
1100
|
+
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`
|
|
1101
|
+
),
|
|
1102
|
+
time_zone: zod.z.string().optional().describe(
|
|
1103
|
+
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`
|
|
1098
1104
|
)
|
|
1099
1105
|
}).describe(`Metadata for an Omnitec device.`),
|
|
1100
1106
|
tado_metadata: zod.z.object({
|
|
@@ -19677,13 +19683,23 @@ var openapi = {
|
|
|
19677
19683
|
lock_name: {
|
|
19678
19684
|
description: "Lock name for an Omnitec device.",
|
|
19679
19685
|
type: "string"
|
|
19686
|
+
},
|
|
19687
|
+
time_zone: {
|
|
19688
|
+
description: "IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.",
|
|
19689
|
+
type: "string"
|
|
19690
|
+
},
|
|
19691
|
+
timezone_raw_offset_ms: {
|
|
19692
|
+
description: "Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.",
|
|
19693
|
+
format: "float",
|
|
19694
|
+
type: "number"
|
|
19680
19695
|
}
|
|
19681
19696
|
},
|
|
19682
19697
|
required: [
|
|
19683
19698
|
"lock_id",
|
|
19684
19699
|
"lock_name",
|
|
19685
19700
|
"lock_mac",
|
|
19686
|
-
"has_gateway"
|
|
19701
|
+
"has_gateway",
|
|
19702
|
+
"timezone_raw_offset_ms"
|
|
19687
19703
|
],
|
|
19688
19704
|
type: "object"
|
|
19689
19705
|
},
|