@seamapi/types 1.942.0 → 1.943.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 +116 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +436 -0
- package/dist/index.cjs +116 -0
- package/dist/index.cjs.map +1 -1
- 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 +123 -0
- package/lib/seam/connect/models/devices/device.js +24 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +47 -0
- package/lib/seam/connect/openapi.js +93 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device-metadata.ts +7 -0
- package/src/lib/seam/connect/models/devices/device.ts +26 -0
- package/src/lib/seam/connect/openapi.ts +110 -0
- package/src/lib/seam/connect/route-types.ts +354 -0
|
@@ -14112,6 +14112,8 @@ export type Routes = {
|
|
|
14112
14112
|
has_gateway: boolean
|
|
14113
14113
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
14114
14114
|
timezone_raw_offset_ms: number
|
|
14115
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
14116
|
+
time_zone?: (string | null) | undefined
|
|
14115
14117
|
}
|
|
14116
14118
|
| undefined
|
|
14117
14119
|
/** Metadata for a tado° device. */
|
|
@@ -15118,6 +15120,22 @@ export type Routes = {
|
|
|
15118
15120
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15119
15121
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
15120
15122
|
}
|
|
15123
|
+
| {
|
|
15124
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15125
|
+
message: string
|
|
15126
|
+
/** Date and time at which Seam created the warning. */
|
|
15127
|
+
created_at: string
|
|
15128
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15129
|
+
warning_code: 'time_zone_unknown'
|
|
15130
|
+
}
|
|
15131
|
+
| {
|
|
15132
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15133
|
+
message: string
|
|
15134
|
+
/** Date and time at which Seam created the warning. */
|
|
15135
|
+
created_at: string
|
|
15136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15137
|
+
warning_code: 'time_zone_mismatch'
|
|
15138
|
+
}
|
|
15121
15139
|
| {
|
|
15122
15140
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15123
15141
|
message: string
|
|
@@ -22020,6 +22038,8 @@ export type Routes = {
|
|
|
22020
22038
|
has_gateway: boolean
|
|
22021
22039
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
22022
22040
|
timezone_raw_offset_ms: number
|
|
22041
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
22042
|
+
time_zone?: (string | null) | undefined
|
|
22023
22043
|
}
|
|
22024
22044
|
| undefined
|
|
22025
22045
|
/** Metadata for a tado° device. */
|
|
@@ -23026,6 +23046,22 @@ export type Routes = {
|
|
|
23026
23046
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23027
23047
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
23028
23048
|
}
|
|
23049
|
+
| {
|
|
23050
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23051
|
+
message: string
|
|
23052
|
+
/** Date and time at which Seam created the warning. */
|
|
23053
|
+
created_at: string
|
|
23054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23055
|
+
warning_code: 'time_zone_unknown'
|
|
23056
|
+
}
|
|
23057
|
+
| {
|
|
23058
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23059
|
+
message: string
|
|
23060
|
+
/** Date and time at which Seam created the warning. */
|
|
23061
|
+
created_at: string
|
|
23062
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23063
|
+
warning_code: 'time_zone_mismatch'
|
|
23064
|
+
}
|
|
23029
23065
|
| {
|
|
23030
23066
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23031
23067
|
message: string
|
|
@@ -48297,6 +48333,8 @@ export type Routes = {
|
|
|
48297
48333
|
has_gateway: boolean
|
|
48298
48334
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
48299
48335
|
timezone_raw_offset_ms: number
|
|
48336
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
48337
|
+
time_zone?: (string | null) | undefined
|
|
48300
48338
|
}
|
|
48301
48339
|
| undefined
|
|
48302
48340
|
/** Metadata for a tado° device. */
|
|
@@ -49279,6 +49317,22 @@ export type Routes = {
|
|
|
49279
49317
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49280
49318
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
49281
49319
|
}
|
|
49320
|
+
| {
|
|
49321
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49322
|
+
message: string
|
|
49323
|
+
/** Date and time at which Seam created the warning. */
|
|
49324
|
+
created_at: string
|
|
49325
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49326
|
+
warning_code: 'time_zone_unknown'
|
|
49327
|
+
}
|
|
49328
|
+
| {
|
|
49329
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49330
|
+
message: string
|
|
49331
|
+
/** Date and time at which Seam created the warning. */
|
|
49332
|
+
created_at: string
|
|
49333
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49334
|
+
warning_code: 'time_zone_mismatch'
|
|
49335
|
+
}
|
|
49282
49336
|
| {
|
|
49283
49337
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49284
49338
|
message: string
|
|
@@ -50349,6 +50403,8 @@ export type Routes = {
|
|
|
50349
50403
|
has_gateway: boolean
|
|
50350
50404
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
50351
50405
|
timezone_raw_offset_ms: number
|
|
50406
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
50407
|
+
time_zone?: (string | null) | undefined
|
|
50352
50408
|
}
|
|
50353
50409
|
| undefined
|
|
50354
50410
|
/** Metadata for a tado° device. */
|
|
@@ -51331,6 +51387,22 @@ export type Routes = {
|
|
|
51331
51387
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51332
51388
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
51333
51389
|
}
|
|
51390
|
+
| {
|
|
51391
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51392
|
+
message: string
|
|
51393
|
+
/** Date and time at which Seam created the warning. */
|
|
51394
|
+
created_at: string
|
|
51395
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51396
|
+
warning_code: 'time_zone_unknown'
|
|
51397
|
+
}
|
|
51398
|
+
| {
|
|
51399
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51400
|
+
message: string
|
|
51401
|
+
/** Date and time at which Seam created the warning. */
|
|
51402
|
+
created_at: string
|
|
51403
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
51404
|
+
warning_code: 'time_zone_mismatch'
|
|
51405
|
+
}
|
|
51334
51406
|
| {
|
|
51335
51407
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
51336
51408
|
message: string
|
|
@@ -53444,6 +53516,22 @@ export type Routes = {
|
|
|
53444
53516
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53445
53517
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
53446
53518
|
}
|
|
53519
|
+
| {
|
|
53520
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53521
|
+
message: string
|
|
53522
|
+
/** Date and time at which Seam created the warning. */
|
|
53523
|
+
created_at: string
|
|
53524
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53525
|
+
warning_code: 'time_zone_unknown'
|
|
53526
|
+
}
|
|
53527
|
+
| {
|
|
53528
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53529
|
+
message: string
|
|
53530
|
+
/** Date and time at which Seam created the warning. */
|
|
53531
|
+
created_at: string
|
|
53532
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
53533
|
+
warning_code: 'time_zone_mismatch'
|
|
53534
|
+
}
|
|
53447
53535
|
| {
|
|
53448
53536
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
53449
53537
|
message: string
|
|
@@ -54279,6 +54367,22 @@ export type Routes = {
|
|
|
54279
54367
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54280
54368
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
54281
54369
|
}
|
|
54370
|
+
| {
|
|
54371
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54372
|
+
message: string
|
|
54373
|
+
/** Date and time at which Seam created the warning. */
|
|
54374
|
+
created_at: string
|
|
54375
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54376
|
+
warning_code: 'time_zone_unknown'
|
|
54377
|
+
}
|
|
54378
|
+
| {
|
|
54379
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54380
|
+
message: string
|
|
54381
|
+
/** Date and time at which Seam created the warning. */
|
|
54382
|
+
created_at: string
|
|
54383
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54384
|
+
warning_code: 'time_zone_mismatch'
|
|
54385
|
+
}
|
|
54282
54386
|
| {
|
|
54283
54387
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54284
54388
|
message: string
|
|
@@ -64330,6 +64434,8 @@ export type Routes = {
|
|
|
64330
64434
|
has_gateway: boolean
|
|
64331
64435
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
64332
64436
|
timezone_raw_offset_ms: number
|
|
64437
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
64438
|
+
time_zone?: (string | null) | undefined
|
|
64333
64439
|
}
|
|
64334
64440
|
| undefined
|
|
64335
64441
|
/** Metadata for a tado° device. */
|
|
@@ -65312,6 +65418,22 @@ export type Routes = {
|
|
|
65312
65418
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65313
65419
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
65314
65420
|
}
|
|
65421
|
+
| {
|
|
65422
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65423
|
+
message: string
|
|
65424
|
+
/** Date and time at which Seam created the warning. */
|
|
65425
|
+
created_at: string
|
|
65426
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65427
|
+
warning_code: 'time_zone_unknown'
|
|
65428
|
+
}
|
|
65429
|
+
| {
|
|
65430
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65431
|
+
message: string
|
|
65432
|
+
/** Date and time at which Seam created the warning. */
|
|
65433
|
+
created_at: string
|
|
65434
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
65435
|
+
warning_code: 'time_zone_mismatch'
|
|
65436
|
+
}
|
|
65315
65437
|
| {
|
|
65316
65438
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
65317
65439
|
message: string
|
|
@@ -66138,6 +66260,8 @@ export type Routes = {
|
|
|
66138
66260
|
has_gateway: boolean
|
|
66139
66261
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
66140
66262
|
timezone_raw_offset_ms: number
|
|
66263
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
66264
|
+
time_zone?: (string | null) | undefined
|
|
66141
66265
|
}
|
|
66142
66266
|
| undefined
|
|
66143
66267
|
/** Metadata for a tado° device. */
|
|
@@ -67120,6 +67244,22 @@ export type Routes = {
|
|
|
67120
67244
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67121
67245
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
67122
67246
|
}
|
|
67247
|
+
| {
|
|
67248
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67249
|
+
message: string
|
|
67250
|
+
/** Date and time at which Seam created the warning. */
|
|
67251
|
+
created_at: string
|
|
67252
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67253
|
+
warning_code: 'time_zone_unknown'
|
|
67254
|
+
}
|
|
67255
|
+
| {
|
|
67256
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67257
|
+
message: string
|
|
67258
|
+
/** Date and time at which Seam created the warning. */
|
|
67259
|
+
created_at: string
|
|
67260
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67261
|
+
warning_code: 'time_zone_mismatch'
|
|
67262
|
+
}
|
|
67123
67263
|
| {
|
|
67124
67264
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67125
67265
|
message: string
|
|
@@ -68143,6 +68283,8 @@ export type Routes = {
|
|
|
68143
68283
|
has_gateway: boolean
|
|
68144
68284
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
68145
68285
|
timezone_raw_offset_ms: number
|
|
68286
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
68287
|
+
time_zone?: (string | null) | undefined
|
|
68146
68288
|
}
|
|
68147
68289
|
| undefined
|
|
68148
68290
|
/** Metadata for a tado° device. */
|
|
@@ -69125,6 +69267,22 @@ export type Routes = {
|
|
|
69125
69267
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69126
69268
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
69127
69269
|
}
|
|
69270
|
+
| {
|
|
69271
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69272
|
+
message: string
|
|
69273
|
+
/** Date and time at which Seam created the warning. */
|
|
69274
|
+
created_at: string
|
|
69275
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69276
|
+
warning_code: 'time_zone_unknown'
|
|
69277
|
+
}
|
|
69278
|
+
| {
|
|
69279
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69280
|
+
message: string
|
|
69281
|
+
/** Date and time at which Seam created the warning. */
|
|
69282
|
+
created_at: string
|
|
69283
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
69284
|
+
warning_code: 'time_zone_mismatch'
|
|
69285
|
+
}
|
|
69128
69286
|
| {
|
|
69129
69287
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
69130
69288
|
message: string
|
|
@@ -69950,6 +70108,8 @@ export type Routes = {
|
|
|
69950
70108
|
has_gateway: boolean
|
|
69951
70109
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
69952
70110
|
timezone_raw_offset_ms: number
|
|
70111
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
70112
|
+
time_zone?: (string | null) | undefined
|
|
69953
70113
|
}
|
|
69954
70114
|
| undefined
|
|
69955
70115
|
/** Metadata for a tado° device. */
|
|
@@ -70932,6 +71092,22 @@ export type Routes = {
|
|
|
70932
71092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70933
71093
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
70934
71094
|
}
|
|
71095
|
+
| {
|
|
71096
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71097
|
+
message: string
|
|
71098
|
+
/** Date and time at which Seam created the warning. */
|
|
71099
|
+
created_at: string
|
|
71100
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71101
|
+
warning_code: 'time_zone_unknown'
|
|
71102
|
+
}
|
|
71103
|
+
| {
|
|
71104
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
71105
|
+
message: string
|
|
71106
|
+
/** Date and time at which Seam created the warning. */
|
|
71107
|
+
created_at: string
|
|
71108
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
71109
|
+
warning_code: 'time_zone_mismatch'
|
|
71110
|
+
}
|
|
70935
71111
|
| {
|
|
70936
71112
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70937
71113
|
message: string
|
|
@@ -79666,6 +79842,8 @@ export type Routes = {
|
|
|
79666
79842
|
has_gateway: boolean
|
|
79667
79843
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
79668
79844
|
timezone_raw_offset_ms: number
|
|
79845
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
79846
|
+
time_zone?: (string | null) | undefined
|
|
79669
79847
|
}
|
|
79670
79848
|
| undefined
|
|
79671
79849
|
/** Metadata for a tado° device. */
|
|
@@ -80648,6 +80826,22 @@ export type Routes = {
|
|
|
80648
80826
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80649
80827
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
80650
80828
|
}
|
|
80829
|
+
| {
|
|
80830
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80831
|
+
message: string
|
|
80832
|
+
/** Date and time at which Seam created the warning. */
|
|
80833
|
+
created_at: string
|
|
80834
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80835
|
+
warning_code: 'time_zone_unknown'
|
|
80836
|
+
}
|
|
80837
|
+
| {
|
|
80838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80839
|
+
message: string
|
|
80840
|
+
/** Date and time at which Seam created the warning. */
|
|
80841
|
+
created_at: string
|
|
80842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80843
|
+
warning_code: 'time_zone_mismatch'
|
|
80844
|
+
}
|
|
80651
80845
|
| {
|
|
80652
80846
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
80653
80847
|
message: string
|
|
@@ -81473,6 +81667,8 @@ export type Routes = {
|
|
|
81473
81667
|
has_gateway: boolean
|
|
81474
81668
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
81475
81669
|
timezone_raw_offset_ms: number
|
|
81670
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
81671
|
+
time_zone?: (string | null) | undefined
|
|
81476
81672
|
}
|
|
81477
81673
|
| undefined
|
|
81478
81674
|
/** Metadata for a tado° device. */
|
|
@@ -82455,6 +82651,22 @@ export type Routes = {
|
|
|
82455
82651
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82456
82652
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
82457
82653
|
}
|
|
82654
|
+
| {
|
|
82655
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82656
|
+
message: string
|
|
82657
|
+
/** Date and time at which Seam created the warning. */
|
|
82658
|
+
created_at: string
|
|
82659
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82660
|
+
warning_code: 'time_zone_unknown'
|
|
82661
|
+
}
|
|
82662
|
+
| {
|
|
82663
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82664
|
+
message: string
|
|
82665
|
+
/** Date and time at which Seam created the warning. */
|
|
82666
|
+
created_at: string
|
|
82667
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82668
|
+
warning_code: 'time_zone_mismatch'
|
|
82669
|
+
}
|
|
82458
82670
|
| {
|
|
82459
82671
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82460
82672
|
message: string
|
|
@@ -99742,6 +99954,8 @@ export type Routes = {
|
|
|
99742
99954
|
has_gateway: boolean
|
|
99743
99955
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
99744
99956
|
timezone_raw_offset_ms: number
|
|
99957
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
99958
|
+
time_zone?: (string | null) | undefined
|
|
99745
99959
|
}
|
|
99746
99960
|
| undefined
|
|
99747
99961
|
/** Metadata for a tado° device. */
|
|
@@ -100748,6 +100962,22 @@ export type Routes = {
|
|
|
100748
100962
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100749
100963
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
100750
100964
|
}
|
|
100965
|
+
| {
|
|
100966
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100967
|
+
message: string
|
|
100968
|
+
/** Date and time at which Seam created the warning. */
|
|
100969
|
+
created_at: string
|
|
100970
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100971
|
+
warning_code: 'time_zone_unknown'
|
|
100972
|
+
}
|
|
100973
|
+
| {
|
|
100974
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100975
|
+
message: string
|
|
100976
|
+
/** Date and time at which Seam created the warning. */
|
|
100977
|
+
created_at: string
|
|
100978
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100979
|
+
warning_code: 'time_zone_mismatch'
|
|
100980
|
+
}
|
|
100751
100981
|
| {
|
|
100752
100982
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
100753
100983
|
message: string
|
|
@@ -108547,6 +108777,8 @@ export type Routes = {
|
|
|
108547
108777
|
has_gateway: boolean
|
|
108548
108778
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
108549
108779
|
timezone_raw_offset_ms: number
|
|
108780
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
108781
|
+
time_zone?: (string | null) | undefined
|
|
108550
108782
|
}
|
|
108551
108783
|
| undefined
|
|
108552
108784
|
/** Metadata for a tado° device. */
|
|
@@ -109529,6 +109761,22 @@ export type Routes = {
|
|
|
109529
109761
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109530
109762
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
109531
109763
|
}
|
|
109764
|
+
| {
|
|
109765
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109766
|
+
message: string
|
|
109767
|
+
/** Date and time at which Seam created the warning. */
|
|
109768
|
+
created_at: string
|
|
109769
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109770
|
+
warning_code: 'time_zone_unknown'
|
|
109771
|
+
}
|
|
109772
|
+
| {
|
|
109773
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109774
|
+
message: string
|
|
109775
|
+
/** Date and time at which Seam created the warning. */
|
|
109776
|
+
created_at: string
|
|
109777
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
109778
|
+
warning_code: 'time_zone_mismatch'
|
|
109779
|
+
}
|
|
109532
109780
|
| {
|
|
109533
109781
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
109534
109782
|
message: string
|
|
@@ -114398,6 +114646,8 @@ export type Routes = {
|
|
|
114398
114646
|
has_gateway: boolean
|
|
114399
114647
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
114400
114648
|
timezone_raw_offset_ms: number
|
|
114649
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
114650
|
+
time_zone?: (string | null) | undefined
|
|
114401
114651
|
}
|
|
114402
114652
|
| undefined
|
|
114403
114653
|
/** Metadata for a tado° device. */
|
|
@@ -115380,6 +115630,22 @@ export type Routes = {
|
|
|
115380
115630
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115381
115631
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
115382
115632
|
}
|
|
115633
|
+
| {
|
|
115634
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115635
|
+
message: string
|
|
115636
|
+
/** Date and time at which Seam created the warning. */
|
|
115637
|
+
created_at: string
|
|
115638
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115639
|
+
warning_code: 'time_zone_unknown'
|
|
115640
|
+
}
|
|
115641
|
+
| {
|
|
115642
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115643
|
+
message: string
|
|
115644
|
+
/** Date and time at which Seam created the warning. */
|
|
115645
|
+
created_at: string
|
|
115646
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
115647
|
+
warning_code: 'time_zone_mismatch'
|
|
115648
|
+
}
|
|
115383
115649
|
| {
|
|
115384
115650
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
115385
115651
|
message: string
|
|
@@ -116205,6 +116471,8 @@ export type Routes = {
|
|
|
116205
116471
|
has_gateway: boolean
|
|
116206
116472
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
116207
116473
|
timezone_raw_offset_ms: number
|
|
116474
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
116475
|
+
time_zone?: (string | null) | undefined
|
|
116208
116476
|
}
|
|
116209
116477
|
| undefined
|
|
116210
116478
|
/** Metadata for a tado° device. */
|
|
@@ -117187,6 +117455,22 @@ export type Routes = {
|
|
|
117187
117455
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117188
117456
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
117189
117457
|
}
|
|
117458
|
+
| {
|
|
117459
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117460
|
+
message: string
|
|
117461
|
+
/** Date and time at which Seam created the warning. */
|
|
117462
|
+
created_at: string
|
|
117463
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117464
|
+
warning_code: 'time_zone_unknown'
|
|
117465
|
+
}
|
|
117466
|
+
| {
|
|
117467
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117468
|
+
message: string
|
|
117469
|
+
/** Date and time at which Seam created the warning. */
|
|
117470
|
+
created_at: string
|
|
117471
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
117472
|
+
warning_code: 'time_zone_mismatch'
|
|
117473
|
+
}
|
|
117190
117474
|
| {
|
|
117191
117475
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
117192
117476
|
message: string
|
|
@@ -126856,6 +127140,8 @@ export type Routes = {
|
|
|
126856
127140
|
has_gateway: boolean
|
|
126857
127141
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
126858
127142
|
timezone_raw_offset_ms: number
|
|
127143
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
127144
|
+
time_zone?: (string | null) | undefined
|
|
126859
127145
|
}
|
|
126860
127146
|
| undefined
|
|
126861
127147
|
/** Metadata for a tado° device. */
|
|
@@ -127838,6 +128124,22 @@ export type Routes = {
|
|
|
127838
128124
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127839
128125
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
127840
128126
|
}
|
|
128127
|
+
| {
|
|
128128
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128129
|
+
message: string
|
|
128130
|
+
/** Date and time at which Seam created the warning. */
|
|
128131
|
+
created_at: string
|
|
128132
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128133
|
+
warning_code: 'time_zone_unknown'
|
|
128134
|
+
}
|
|
128135
|
+
| {
|
|
128136
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128137
|
+
message: string
|
|
128138
|
+
/** Date and time at which Seam created the warning. */
|
|
128139
|
+
created_at: string
|
|
128140
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128141
|
+
warning_code: 'time_zone_mismatch'
|
|
128142
|
+
}
|
|
127841
128143
|
| {
|
|
127842
128144
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127843
128145
|
message: string
|
|
@@ -128665,6 +128967,8 @@ export type Routes = {
|
|
|
128665
128967
|
has_gateway: boolean
|
|
128666
128968
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
128667
128969
|
timezone_raw_offset_ms: number
|
|
128970
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
128971
|
+
time_zone?: (string | null) | undefined
|
|
128668
128972
|
}
|
|
128669
128973
|
| undefined
|
|
128670
128974
|
/** Metadata for a tado° device. */
|
|
@@ -129647,6 +129951,22 @@ export type Routes = {
|
|
|
129647
129951
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129648
129952
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
129649
129953
|
}
|
|
129954
|
+
| {
|
|
129955
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129956
|
+
message: string
|
|
129957
|
+
/** Date and time at which Seam created the warning. */
|
|
129958
|
+
created_at: string
|
|
129959
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129960
|
+
warning_code: 'time_zone_unknown'
|
|
129961
|
+
}
|
|
129962
|
+
| {
|
|
129963
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129964
|
+
message: string
|
|
129965
|
+
/** Date and time at which Seam created the warning. */
|
|
129966
|
+
created_at: string
|
|
129967
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129968
|
+
warning_code: 'time_zone_mismatch'
|
|
129969
|
+
}
|
|
129650
129970
|
| {
|
|
129651
129971
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129652
129972
|
message: string
|
|
@@ -131900,6 +132220,8 @@ export type Routes = {
|
|
|
131900
132220
|
has_gateway: boolean
|
|
131901
132221
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
131902
132222
|
timezone_raw_offset_ms: number
|
|
132223
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
132224
|
+
time_zone?: (string | null) | undefined
|
|
131903
132225
|
}
|
|
131904
132226
|
| undefined
|
|
131905
132227
|
/** Metadata for a tado° device. */
|
|
@@ -132906,6 +133228,22 @@ export type Routes = {
|
|
|
132906
133228
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
132907
133229
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
132908
133230
|
}
|
|
133231
|
+
| {
|
|
133232
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133233
|
+
message: string
|
|
133234
|
+
/** Date and time at which Seam created the warning. */
|
|
133235
|
+
created_at: string
|
|
133236
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133237
|
+
warning_code: 'time_zone_unknown'
|
|
133238
|
+
}
|
|
133239
|
+
| {
|
|
133240
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133241
|
+
message: string
|
|
133242
|
+
/** Date and time at which Seam created the warning. */
|
|
133243
|
+
created_at: string
|
|
133244
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133245
|
+
warning_code: 'time_zone_mismatch'
|
|
133246
|
+
}
|
|
132909
133247
|
| {
|
|
132910
133248
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
132911
133249
|
message: string
|
|
@@ -136876,6 +137214,22 @@ export type Routes = {
|
|
|
136876
137214
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
136877
137215
|
warning_code: 'ultraloq_time_zone_unknown'
|
|
136878
137216
|
}
|
|
137217
|
+
| {
|
|
137218
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137219
|
+
message: string
|
|
137220
|
+
/** Date and time at which Seam created the warning. */
|
|
137221
|
+
created_at: string
|
|
137222
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137223
|
+
warning_code: 'time_zone_unknown'
|
|
137224
|
+
}
|
|
137225
|
+
| {
|
|
137226
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137227
|
+
message: string
|
|
137228
|
+
/** Date and time at which Seam created the warning. */
|
|
137229
|
+
created_at: string
|
|
137230
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137231
|
+
warning_code: 'time_zone_mismatch'
|
|
137232
|
+
}
|
|
136879
137233
|
| {
|
|
136880
137234
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
136881
137235
|
message: string
|