@seamapi/types 1.833.0 → 1.835.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 +24 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +62 -0
- package/dist/index.cjs +24 -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 +20 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -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 +23 -0
- package/src/lib/seam/connect/route-types.ts +36 -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?: {
|
|
@@ -68918,6 +68938,8 @@ export type Routes = {
|
|
|
68918
68938
|
customer_key?: string | undefined;
|
|
68919
68939
|
/** Collection key. */
|
|
68920
68940
|
collection_key?: string | undefined;
|
|
68941
|
+
/** Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account. */
|
|
68942
|
+
connected_account_id?: string | undefined;
|
|
68921
68943
|
};
|
|
68922
68944
|
formData: {};
|
|
68923
68945
|
jsonResponse: {
|
|
@@ -69555,6 +69577,8 @@ export type Routes = {
|
|
|
69555
69577
|
/** Name for a wireless keypad for a TTLock device. */
|
|
69556
69578
|
wireless_keypad_name: string;
|
|
69557
69579
|
}[] | undefined;
|
|
69580
|
+
/** 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. */
|
|
69581
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
69558
69582
|
} | undefined;
|
|
69559
69583
|
/** Metadata for Seam Bridge. */
|
|
69560
69584
|
seam_bridge_metadata?: {
|
|
@@ -75751,6 +75775,8 @@ export type Routes = {
|
|
|
75751
75775
|
/** Name for a wireless keypad for a TTLock device. */
|
|
75752
75776
|
wireless_keypad_name: string;
|
|
75753
75777
|
}[] | undefined;
|
|
75778
|
+
/** 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. */
|
|
75779
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
75754
75780
|
} | undefined;
|
|
75755
75781
|
/** Metadata for Seam Bridge. */
|
|
75756
75782
|
seam_bridge_metadata?: {
|
|
@@ -79829,6 +79855,8 @@ export type Routes = {
|
|
|
79829
79855
|
/** Name for a wireless keypad for a TTLock device. */
|
|
79830
79856
|
wireless_keypad_name: string;
|
|
79831
79857
|
}[] | undefined;
|
|
79858
|
+
/** 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. */
|
|
79859
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
79832
79860
|
} | undefined;
|
|
79833
79861
|
/** Metadata for Seam Bridge. */
|
|
79834
79862
|
seam_bridge_metadata?: {
|
|
@@ -81160,6 +81188,8 @@ export type Routes = {
|
|
|
81160
81188
|
/** Name for a wireless keypad for a TTLock device. */
|
|
81161
81189
|
wireless_keypad_name: string;
|
|
81162
81190
|
}[] | undefined;
|
|
81191
|
+
/** 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. */
|
|
81192
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
81163
81193
|
} | undefined;
|
|
81164
81194
|
/** Metadata for Seam Bridge. */
|
|
81165
81195
|
seam_bridge_metadata?: {
|
|
@@ -88801,6 +88831,8 @@ export type Routes = {
|
|
|
88801
88831
|
/** Name for a wireless keypad for a TTLock device. */
|
|
88802
88832
|
wireless_keypad_name: string;
|
|
88803
88833
|
}[] | undefined;
|
|
88834
|
+
/** 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. */
|
|
88835
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
88804
88836
|
} | undefined;
|
|
88805
88837
|
/** Metadata for Seam Bridge. */
|
|
88806
88838
|
seam_bridge_metadata?: {
|
|
@@ -90134,6 +90166,8 @@ export type Routes = {
|
|
|
90134
90166
|
/** Name for a wireless keypad for a TTLock device. */
|
|
90135
90167
|
wireless_keypad_name: string;
|
|
90136
90168
|
}[] | undefined;
|
|
90169
|
+
/** 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. */
|
|
90170
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
90137
90171
|
} | undefined;
|
|
90138
90172
|
/** Metadata for Seam Bridge. */
|
|
90139
90173
|
seam_bridge_metadata?: {
|
|
@@ -92607,6 +92641,8 @@ export type Routes = {
|
|
|
92607
92641
|
/** Name for a wireless keypad for a TTLock device. */
|
|
92608
92642
|
wireless_keypad_name: string;
|
|
92609
92643
|
}[] | undefined;
|
|
92644
|
+
/** 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. */
|
|
92645
|
+
timezone_raw_offset_ms?: (number | null) | undefined;
|
|
92610
92646
|
} | undefined;
|
|
92611
92647
|
/** Metadata for Seam Bridge. */
|
|
92612
92648
|
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.',
|
|
@@ -73435,6 +73442,16 @@ const openapi: OpenAPISpec = {
|
|
|
73435
73442
|
name: 'collection_key',
|
|
73436
73443
|
schema: { description: 'Collection key.', type: 'string' },
|
|
73437
73444
|
},
|
|
73445
|
+
{
|
|
73446
|
+
in: 'query',
|
|
73447
|
+
name: 'connected_account_id',
|
|
73448
|
+
schema: {
|
|
73449
|
+
description:
|
|
73450
|
+
'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
|
|
73451
|
+
format: 'uuid',
|
|
73452
|
+
type: 'string',
|
|
73453
|
+
},
|
|
73454
|
+
},
|
|
73438
73455
|
],
|
|
73439
73456
|
responses: {
|
|
73440
73457
|
200: {
|
|
@@ -73550,6 +73567,12 @@ const openapi: OpenAPISpec = {
|
|
|
73550
73567
|
description: 'Collection key.',
|
|
73551
73568
|
type: 'string',
|
|
73552
73569
|
},
|
|
73570
|
+
connected_account_id: {
|
|
73571
|
+
description:
|
|
73572
|
+
'Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account.',
|
|
73573
|
+
format: 'uuid',
|
|
73574
|
+
type: 'string',
|
|
73575
|
+
},
|
|
73553
73576
|
customer_key: {
|
|
73554
73577
|
description: 'Customer key for which to auto-map spaces.',
|
|
73555
73578
|
type: 'string',
|
|
@@ -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. */
|
|
@@ -82219,6 +82239,8 @@ export type Routes = {
|
|
|
82219
82239
|
customer_key?: string | undefined
|
|
82220
82240
|
/** Collection key. */
|
|
82221
82241
|
collection_key?: string | undefined
|
|
82242
|
+
/** Connected account to scope auto-mapping to. Filters partner resources by the matching connector and limits available devices/entrances to this account. */
|
|
82243
|
+
connected_account_id?: string | undefined
|
|
82222
82244
|
}
|
|
82223
82245
|
formData: {}
|
|
82224
82246
|
jsonResponse: {
|
|
@@ -82988,6 +83010,8 @@ export type Routes = {
|
|
|
82988
83010
|
wireless_keypad_name: string
|
|
82989
83011
|
}[]
|
|
82990
83012
|
| undefined
|
|
83013
|
+
/** 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. */
|
|
83014
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
82991
83015
|
}
|
|
82992
83016
|
| undefined
|
|
82993
83017
|
/** Metadata for Seam Bridge. */
|
|
@@ -90304,6 +90328,8 @@ export type Routes = {
|
|
|
90304
90328
|
wireless_keypad_name: string
|
|
90305
90329
|
}[]
|
|
90306
90330
|
| undefined
|
|
90331
|
+
/** 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. */
|
|
90332
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
90307
90333
|
}
|
|
90308
90334
|
| undefined
|
|
90309
90335
|
/** Metadata for Seam Bridge. */
|
|
@@ -95207,6 +95233,8 @@ export type Routes = {
|
|
|
95207
95233
|
wireless_keypad_name: string
|
|
95208
95234
|
}[]
|
|
95209
95235
|
| undefined
|
|
95236
|
+
/** 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. */
|
|
95237
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
95210
95238
|
}
|
|
95211
95239
|
| undefined
|
|
95212
95240
|
/** Metadata for Seam Bridge. */
|
|
@@ -96864,6 +96892,8 @@ export type Routes = {
|
|
|
96864
96892
|
wireless_keypad_name: string
|
|
96865
96893
|
}[]
|
|
96866
96894
|
| undefined
|
|
96895
|
+
/** 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. */
|
|
96896
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
96867
96897
|
}
|
|
96868
96898
|
| undefined
|
|
96869
96899
|
/** Metadata for Seam Bridge. */
|
|
@@ -105715,6 +105745,8 @@ export type Routes = {
|
|
|
105715
105745
|
wireless_keypad_name: string
|
|
105716
105746
|
}[]
|
|
105717
105747
|
| undefined
|
|
105748
|
+
/** 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. */
|
|
105749
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
105718
105750
|
}
|
|
105719
105751
|
| undefined
|
|
105720
105752
|
/** Metadata for Seam Bridge. */
|
|
@@ -107374,6 +107406,8 @@ export type Routes = {
|
|
|
107374
107406
|
wireless_keypad_name: string
|
|
107375
107407
|
}[]
|
|
107376
107408
|
| undefined
|
|
107409
|
+
/** 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. */
|
|
107410
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
107377
107411
|
}
|
|
107378
107412
|
| undefined
|
|
107379
107413
|
/** Metadata for Seam Bridge. */
|
|
@@ -110319,6 +110353,8 @@ export type Routes = {
|
|
|
110319
110353
|
wireless_keypad_name: string
|
|
110320
110354
|
}[]
|
|
110321
110355
|
| undefined
|
|
110356
|
+
/** 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. */
|
|
110357
|
+
timezone_raw_offset_ms?: (number | null) | undefined
|
|
110322
110358
|
}
|
|
110323
110359
|
| undefined
|
|
110324
110360
|
/** Metadata for Seam Bridge. */
|