@seamapi/types 1.833.0 → 1.834.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 +10 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +60 -0
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js +5 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.js +6 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +7 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
|
@@ -11836,6 +11836,8 @@ export type Routes = {
|
|
|
11836
11836
|
/** Name for a wireless keypad for a TTLock device. */
|
|
11837
11837
|
wireless_keypad_name: string;
|
|
11838
11838
|
}[] | undefined;
|
|
11839
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
11840
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
11839
11841
|
} | undefined;
|
|
11840
11842
|
/** Metadata for Seam Bridge. */
|
|
11841
11843
|
seam_bridge_metadata?: {
|
|
@@ -16284,6 +16286,8 @@ export type Routes = {
|
|
|
16284
16286
|
/** Name for a wireless keypad for a TTLock device. */
|
|
16285
16287
|
wireless_keypad_name: string;
|
|
16286
16288
|
}[] | undefined;
|
|
16289
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
16290
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
16287
16291
|
} | undefined;
|
|
16288
16292
|
/** Metadata for Seam Bridge. */
|
|
16289
16293
|
seam_bridge_metadata?: {
|
|
@@ -32968,6 +32972,8 @@ export type Routes = {
|
|
|
32968
32972
|
/** Name for a wireless keypad for a TTLock device. */
|
|
32969
32973
|
wireless_keypad_name: string;
|
|
32970
32974
|
}[] | undefined;
|
|
32975
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
32976
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
32971
32977
|
} | undefined;
|
|
32972
32978
|
/** Metadata for Seam Bridge. */
|
|
32973
32979
|
seam_bridge_metadata?: {
|
|
@@ -34350,6 +34356,8 @@ export type Routes = {
|
|
|
34350
34356
|
/** Name for a wireless keypad for a TTLock device. */
|
|
34351
34357
|
wireless_keypad_name: string;
|
|
34352
34358
|
}[] | undefined;
|
|
34359
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
34360
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
34353
34361
|
} | undefined;
|
|
34354
34362
|
/** Metadata for Seam Bridge. */
|
|
34355
34363
|
seam_bridge_metadata?: {
|
|
@@ -43940,6 +43948,8 @@ export type Routes = {
|
|
|
43940
43948
|
/** Name for a wireless keypad for a TTLock device. */
|
|
43941
43949
|
wireless_keypad_name: string;
|
|
43942
43950
|
}[] | undefined;
|
|
43951
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
43952
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
43943
43953
|
} | undefined;
|
|
43944
43954
|
/** Metadata for Seam Bridge. */
|
|
43945
43955
|
seam_bridge_metadata?: {
|
|
@@ -45272,6 +45282,8 @@ export type Routes = {
|
|
|
45272
45282
|
/** Name for a wireless keypad for a TTLock device. */
|
|
45273
45283
|
wireless_keypad_name: string;
|
|
45274
45284
|
}[] | undefined;
|
|
45285
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
45286
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
45275
45287
|
} | undefined;
|
|
45276
45288
|
/** Metadata for Seam Bridge. */
|
|
45277
45289
|
seam_bridge_metadata?: {
|
|
@@ -46654,6 +46666,8 @@ export type Routes = {
|
|
|
46654
46666
|
/** Name for a wireless keypad for a TTLock device. */
|
|
46655
46667
|
wireless_keypad_name: string;
|
|
46656
46668
|
}[] | undefined;
|
|
46669
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
46670
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
46657
46671
|
} | undefined;
|
|
46658
46672
|
/** Metadata for Seam Bridge. */
|
|
46659
46673
|
seam_bridge_metadata?: {
|
|
@@ -47985,6 +47999,8 @@ export type Routes = {
|
|
|
47985
47999
|
/** Name for a wireless keypad for a TTLock device. */
|
|
47986
48000
|
wireless_keypad_name: string;
|
|
47987
48001
|
}[] | undefined;
|
|
48002
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
48003
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
47988
48004
|
} | undefined;
|
|
47989
48005
|
/** Metadata for Seam Bridge. */
|
|
47990
48006
|
seam_bridge_metadata?: {
|
|
@@ -54733,6 +54749,8 @@ export type Routes = {
|
|
|
54733
54749
|
/** Name for a wireless keypad for a TTLock device. */
|
|
54734
54750
|
wireless_keypad_name: string;
|
|
54735
54751
|
}[] | undefined;
|
|
54752
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
54753
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
54736
54754
|
} | undefined;
|
|
54737
54755
|
/** Metadata for Seam Bridge. */
|
|
54738
54756
|
seam_bridge_metadata?: {
|
|
@@ -56064,6 +56082,8 @@ export type Routes = {
|
|
|
56064
56082
|
/** Name for a wireless keypad for a TTLock device. */
|
|
56065
56083
|
wireless_keypad_name: string;
|
|
56066
56084
|
}[] | undefined;
|
|
56085
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
56086
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
56067
56087
|
} | undefined;
|
|
56068
56088
|
/** Metadata for Seam Bridge. */
|
|
56069
56089
|
seam_bridge_metadata?: {
|
|
@@ -69555,6 +69575,8 @@ export type Routes = {
|
|
|
69555
69575
|
/** Name for a wireless keypad for a TTLock device. */
|
|
69556
69576
|
wireless_keypad_name: string;
|
|
69557
69577
|
}[] | undefined;
|
|
69578
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
69579
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
69558
69580
|
} | undefined;
|
|
69559
69581
|
/** Metadata for Seam Bridge. */
|
|
69560
69582
|
seam_bridge_metadata?: {
|
|
@@ -75751,6 +75773,8 @@ export type Routes = {
|
|
|
75751
75773
|
/** Name for a wireless keypad for a TTLock device. */
|
|
75752
75774
|
wireless_keypad_name: string;
|
|
75753
75775
|
}[] | undefined;
|
|
75776
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
75777
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
75754
75778
|
} | undefined;
|
|
75755
75779
|
/** Metadata for Seam Bridge. */
|
|
75756
75780
|
seam_bridge_metadata?: {
|
|
@@ -79829,6 +79853,8 @@ export type Routes = {
|
|
|
79829
79853
|
/** Name for a wireless keypad for a TTLock device. */
|
|
79830
79854
|
wireless_keypad_name: string;
|
|
79831
79855
|
}[] | undefined;
|
|
79856
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
79857
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
79832
79858
|
} | undefined;
|
|
79833
79859
|
/** Metadata for Seam Bridge. */
|
|
79834
79860
|
seam_bridge_metadata?: {
|
|
@@ -81160,6 +81186,8 @@ export type Routes = {
|
|
|
81160
81186
|
/** Name for a wireless keypad for a TTLock device. */
|
|
81161
81187
|
wireless_keypad_name: string;
|
|
81162
81188
|
}[] | undefined;
|
|
81189
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
81190
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
81163
81191
|
} | undefined;
|
|
81164
81192
|
/** Metadata for Seam Bridge. */
|
|
81165
81193
|
seam_bridge_metadata?: {
|
|
@@ -88801,6 +88829,8 @@ export type Routes = {
|
|
|
88801
88829
|
/** Name for a wireless keypad for a TTLock device. */
|
|
88802
88830
|
wireless_keypad_name: string;
|
|
88803
88831
|
}[] | undefined;
|
|
88832
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
88833
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
88804
88834
|
} | undefined;
|
|
88805
88835
|
/** Metadata for Seam Bridge. */
|
|
88806
88836
|
seam_bridge_metadata?: {
|
|
@@ -90134,6 +90164,8 @@ export type Routes = {
|
|
|
90134
90164
|
/** Name for a wireless keypad for a TTLock device. */
|
|
90135
90165
|
wireless_keypad_name: string;
|
|
90136
90166
|
}[] | undefined;
|
|
90167
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
90168
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
90137
90169
|
} | undefined;
|
|
90138
90170
|
/** Metadata for Seam Bridge. */
|
|
90139
90171
|
seam_bridge_metadata?: {
|
|
@@ -92607,6 +92639,8 @@ export type Routes = {
|
|
|
92607
92639
|
/** Name for a wireless keypad for a TTLock device. */
|
|
92608
92640
|
wireless_keypad_name: string;
|
|
92609
92641
|
}[] | undefined;
|
|
92642
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
92643
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
92610
92644
|
} | undefined;
|
|
92611
92645
|
/** Metadata for Seam Bridge. */
|
|
92612
92646
|
seam_bridge_metadata?: {
|
package/package.json
CHANGED
|
@@ -437,6 +437,13 @@ export const device_metadata = z
|
|
|
437
437
|
)
|
|
438
438
|
.optional()
|
|
439
439
|
.describe(`Wireless keypads for a TTLock device.`),
|
|
440
|
+
timezone_raw_offset_ms: z
|
|
441
|
+
.number()
|
|
442
|
+
.nullable()
|
|
443
|
+
.optional()
|
|
444
|
+
.describe(
|
|
445
|
+
`Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value.`,
|
|
446
|
+
),
|
|
440
447
|
})
|
|
441
448
|
.describe(`Metadata for a TTLock device.`),
|
|
442
449
|
|
|
@@ -13770,6 +13770,13 @@ const openapi: OpenAPISpec = {
|
|
|
13770
13770
|
format: 'float',
|
|
13771
13771
|
type: 'number',
|
|
13772
13772
|
},
|
|
13773
|
+
timezone_raw_offset_ms: {
|
|
13774
|
+
description:
|
|
13775
|
+
'Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock\'s wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value.',
|
|
13776
|
+
format: 'float',
|
|
13777
|
+
nullable: true,
|
|
13778
|
+
type: 'number',
|
|
13779
|
+
},
|
|
13773
13780
|
wireless_keypads: {
|
|
13774
13781
|
description:
|
|
13775
13782
|
'Wireless keypads for a TTLock device.',
|
|
@@ -13447,6 +13447,8 @@ export type Routes = {
|
|
|
13447
13447
|
wireless_keypad_name: string
|
|
13448
13448
|
}[]
|
|
13449
13449
|
| undefined
|
|
13450
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
13451
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
13450
13452
|
}
|
|
13451
13453
|
| undefined
|
|
13452
13454
|
/** Metadata for Seam Bridge. */
|
|
@@ -18716,6 +18718,8 @@ export type Routes = {
|
|
|
18716
18718
|
wireless_keypad_name: string
|
|
18717
18719
|
}[]
|
|
18718
18720
|
| undefined
|
|
18721
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
18722
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
18719
18723
|
}
|
|
18720
18724
|
| undefined
|
|
18721
18725
|
/** Metadata for Seam Bridge. */
|
|
@@ -38189,6 +38193,8 @@ export type Routes = {
|
|
|
38189
38193
|
wireless_keypad_name: string
|
|
38190
38194
|
}[]
|
|
38191
38195
|
| undefined
|
|
38196
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
38197
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
38192
38198
|
}
|
|
38193
38199
|
| undefined
|
|
38194
38200
|
/** Metadata for Seam Bridge. */
|
|
@@ -40080,6 +40086,8 @@ export type Routes = {
|
|
|
40080
40086
|
wireless_keypad_name: string
|
|
40081
40087
|
}[]
|
|
40082
40088
|
| undefined
|
|
40089
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
40090
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
40083
40091
|
}
|
|
40084
40092
|
| undefined
|
|
40085
40093
|
/** Metadata for Seam Bridge. */
|
|
@@ -52458,6 +52466,8 @@ export type Routes = {
|
|
|
52458
52466
|
wireless_keypad_name: string
|
|
52459
52467
|
}[]
|
|
52460
52468
|
| undefined
|
|
52469
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
52470
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
52461
52471
|
}
|
|
52462
52472
|
| undefined
|
|
52463
52473
|
/** Metadata for Seam Bridge. */
|
|
@@ -54116,6 +54126,8 @@ export type Routes = {
|
|
|
54116
54126
|
wireless_keypad_name: string
|
|
54117
54127
|
}[]
|
|
54118
54128
|
| undefined
|
|
54129
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
54130
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
54119
54131
|
}
|
|
54120
54132
|
| undefined
|
|
54121
54133
|
/** Metadata for Seam Bridge. */
|
|
@@ -55964,6 +55976,8 @@ export type Routes = {
|
|
|
55964
55976
|
wireless_keypad_name: string
|
|
55965
55977
|
}[]
|
|
55966
55978
|
| undefined
|
|
55979
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
55980
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
55967
55981
|
}
|
|
55968
55982
|
| undefined
|
|
55969
55983
|
/** Metadata for Seam Bridge. */
|
|
@@ -57621,6 +57635,8 @@ export type Routes = {
|
|
|
57621
57635
|
wireless_keypad_name: string
|
|
57622
57636
|
}[]
|
|
57623
57637
|
| undefined
|
|
57638
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
57639
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
57624
57640
|
}
|
|
57625
57641
|
| undefined
|
|
57626
57642
|
/** Metadata for Seam Bridge. */
|
|
@@ -65591,6 +65607,8 @@ export type Routes = {
|
|
|
65591
65607
|
wireless_keypad_name: string
|
|
65592
65608
|
}[]
|
|
65593
65609
|
| undefined
|
|
65610
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
65611
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
65594
65612
|
}
|
|
65595
65613
|
| undefined
|
|
65596
65614
|
/** Metadata for Seam Bridge. */
|
|
@@ -67248,6 +67266,8 @@ export type Routes = {
|
|
|
67248
67266
|
wireless_keypad_name: string
|
|
67249
67267
|
}[]
|
|
67250
67268
|
| undefined
|
|
67269
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
67270
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
67251
67271
|
}
|
|
67252
67272
|
| undefined
|
|
67253
67273
|
/** Metadata for Seam Bridge. */
|
|
@@ -82988,6 +83008,8 @@ export type Routes = {
|
|
|
82988
83008
|
wireless_keypad_name: string
|
|
82989
83009
|
}[]
|
|
82990
83010
|
| undefined
|
|
83011
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
83012
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
82991
83013
|
}
|
|
82992
83014
|
| undefined
|
|
82993
83015
|
/** Metadata for Seam Bridge. */
|
|
@@ -90304,6 +90326,8 @@ export type Routes = {
|
|
|
90304
90326
|
wireless_keypad_name: string
|
|
90305
90327
|
}[]
|
|
90306
90328
|
| undefined
|
|
90329
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
90330
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
90307
90331
|
}
|
|
90308
90332
|
| undefined
|
|
90309
90333
|
/** Metadata for Seam Bridge. */
|
|
@@ -95207,6 +95231,8 @@ export type Routes = {
|
|
|
95207
95231
|
wireless_keypad_name: string
|
|
95208
95232
|
}[]
|
|
95209
95233
|
| undefined
|
|
95234
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
95235
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
95210
95236
|
}
|
|
95211
95237
|
| undefined
|
|
95212
95238
|
/** Metadata for Seam Bridge. */
|
|
@@ -96864,6 +96890,8 @@ export type Routes = {
|
|
|
96864
96890
|
wireless_keypad_name: string
|
|
96865
96891
|
}[]
|
|
96866
96892
|
| undefined
|
|
96893
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
96894
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
96867
96895
|
}
|
|
96868
96896
|
| undefined
|
|
96869
96897
|
/** Metadata for Seam Bridge. */
|
|
@@ -105715,6 +105743,8 @@ export type Routes = {
|
|
|
105715
105743
|
wireless_keypad_name: string
|
|
105716
105744
|
}[]
|
|
105717
105745
|
| undefined
|
|
105746
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
105747
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
105718
105748
|
}
|
|
105719
105749
|
| undefined
|
|
105720
105750
|
/** Metadata for Seam Bridge. */
|
|
@@ -107374,6 +107404,8 @@ export type Routes = {
|
|
|
107374
107404
|
wireless_keypad_name: string
|
|
107375
107405
|
}[]
|
|
107376
107406
|
| undefined
|
|
107407
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
107408
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
107377
107409
|
}
|
|
107378
107410
|
| undefined
|
|
107379
107411
|
/** Metadata for Seam Bridge. */
|
|
@@ -110319,6 +110351,8 @@ export type Routes = {
|
|
|
110319
110351
|
wireless_keypad_name: string
|
|
110320
110352
|
}[]
|
|
110321
110353
|
| undefined
|
|
110354
|
+
/** Lock-side timezone offset in milliseconds east of UTC, as configured in the TTLock app. Source of truth for the lock's wall-clock interpretation of access code start/end times — a misconfigured value here is the typical cause of customer "codes offset by N hours" reports. Diagnostic only; Seam does not convert times based on this value. */
|
|
110355
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
110322
110356
|
}
|
|
110323
110357
|
| undefined
|
|
110324
110358
|
/** Metadata for Seam Bridge. */
|