@seamapi/types 1.942.0 → 1.944.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 +118 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +438 -2
- package/dist/index.cjs +118 -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 +95 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +316 -2
- 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 +112 -0
- package/src/lib/seam/connect/route-types.ts +356 -0
|
@@ -12338,6 +12338,8 @@ export type Routes = {
|
|
|
12338
12338
|
has_gateway: boolean;
|
|
12339
12339
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
12340
12340
|
timezone_raw_offset_ms: number;
|
|
12341
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
12342
|
+
time_zone?: (string | null) | undefined;
|
|
12341
12343
|
} | undefined;
|
|
12342
12344
|
/** Metadata for a tado° device. */
|
|
12343
12345
|
tado_metadata?: {
|
|
@@ -13114,6 +13116,20 @@ export type Routes = {
|
|
|
13114
13116
|
created_at: string;
|
|
13115
13117
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13116
13118
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
13119
|
+
} | {
|
|
13120
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13121
|
+
message: string;
|
|
13122
|
+
/** Date and time at which Seam created the warning. */
|
|
13123
|
+
created_at: string;
|
|
13124
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13125
|
+
warning_code: 'time_zone_unknown';
|
|
13126
|
+
} | {
|
|
13127
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13128
|
+
message: string;
|
|
13129
|
+
/** Date and time at which Seam created the warning. */
|
|
13130
|
+
created_at: string;
|
|
13131
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13132
|
+
warning_code: 'time_zone_mismatch';
|
|
13117
13133
|
} | {
|
|
13118
13134
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13119
13135
|
message: string;
|
|
@@ -19053,6 +19069,8 @@ export type Routes = {
|
|
|
19053
19069
|
has_gateway: boolean;
|
|
19054
19070
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
19055
19071
|
timezone_raw_offset_ms: number;
|
|
19072
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
19073
|
+
time_zone?: (string | null) | undefined;
|
|
19056
19074
|
} | undefined;
|
|
19057
19075
|
/** Metadata for a tado° device. */
|
|
19058
19076
|
tado_metadata?: {
|
|
@@ -19829,6 +19847,20 @@ export type Routes = {
|
|
|
19829
19847
|
created_at: string;
|
|
19830
19848
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19831
19849
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
19850
|
+
} | {
|
|
19851
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19852
|
+
message: string;
|
|
19853
|
+
/** Date and time at which Seam created the warning. */
|
|
19854
|
+
created_at: string;
|
|
19855
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19856
|
+
warning_code: 'time_zone_unknown';
|
|
19857
|
+
} | {
|
|
19858
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19859
|
+
message: string;
|
|
19860
|
+
/** Date and time at which Seam created the warning. */
|
|
19861
|
+
created_at: string;
|
|
19862
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19863
|
+
warning_code: 'time_zone_mismatch';
|
|
19832
19864
|
} | {
|
|
19833
19865
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
19834
19866
|
message: string;
|
|
@@ -41540,6 +41572,8 @@ export type Routes = {
|
|
|
41540
41572
|
has_gateway: boolean;
|
|
41541
41573
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
41542
41574
|
timezone_raw_offset_ms: number;
|
|
41575
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
41576
|
+
time_zone?: (string | null) | undefined;
|
|
41543
41577
|
} | undefined;
|
|
41544
41578
|
/** Metadata for a tado° device. */
|
|
41545
41579
|
tado_metadata?: {
|
|
@@ -42316,6 +42350,20 @@ export type Routes = {
|
|
|
42316
42350
|
created_at: string;
|
|
42317
42351
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42318
42352
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
42353
|
+
} | {
|
|
42354
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42355
|
+
message: string;
|
|
42356
|
+
/** Date and time at which Seam created the warning. */
|
|
42357
|
+
created_at: string;
|
|
42358
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42359
|
+
warning_code: 'time_zone_unknown';
|
|
42360
|
+
} | {
|
|
42361
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42362
|
+
message: string;
|
|
42363
|
+
/** Date and time at which Seam created the warning. */
|
|
42364
|
+
created_at: string;
|
|
42365
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
42366
|
+
warning_code: 'time_zone_mismatch';
|
|
42319
42367
|
} | {
|
|
42320
42368
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
42321
42369
|
message: string;
|
|
@@ -43049,6 +43097,8 @@ export type Routes = {
|
|
|
43049
43097
|
has_gateway: boolean;
|
|
43050
43098
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
43051
43099
|
timezone_raw_offset_ms: number;
|
|
43100
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
43101
|
+
time_zone?: (string | null) | undefined;
|
|
43052
43102
|
} | undefined;
|
|
43053
43103
|
/** Metadata for a tado° device. */
|
|
43054
43104
|
tado_metadata?: {
|
|
@@ -43825,6 +43875,20 @@ export type Routes = {
|
|
|
43825
43875
|
created_at: string;
|
|
43826
43876
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43827
43877
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
43878
|
+
} | {
|
|
43879
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43880
|
+
message: string;
|
|
43881
|
+
/** Date and time at which Seam created the warning. */
|
|
43882
|
+
created_at: string;
|
|
43883
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43884
|
+
warning_code: 'time_zone_unknown';
|
|
43885
|
+
} | {
|
|
43886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43887
|
+
message: string;
|
|
43888
|
+
/** Date and time at which Seam created the warning. */
|
|
43889
|
+
created_at: string;
|
|
43890
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43891
|
+
warning_code: 'time_zone_mismatch';
|
|
43828
43892
|
} | {
|
|
43829
43893
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43830
43894
|
message: string;
|
|
@@ -44460,6 +44524,20 @@ export type Routes = {
|
|
|
44460
44524
|
created_at: string;
|
|
44461
44525
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44462
44526
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
44527
|
+
} | {
|
|
44528
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44529
|
+
message: string;
|
|
44530
|
+
/** Date and time at which Seam created the warning. */
|
|
44531
|
+
created_at: string;
|
|
44532
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44533
|
+
warning_code: 'time_zone_unknown';
|
|
44534
|
+
} | {
|
|
44535
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44536
|
+
message: string;
|
|
44537
|
+
/** Date and time at which Seam created the warning. */
|
|
44538
|
+
created_at: string;
|
|
44539
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44540
|
+
warning_code: 'time_zone_mismatch';
|
|
44463
44541
|
} | {
|
|
44464
44542
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
44465
44543
|
message: string;
|
|
@@ -44997,6 +45075,20 @@ export type Routes = {
|
|
|
44997
45075
|
created_at: string;
|
|
44998
45076
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
44999
45077
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
45078
|
+
} | {
|
|
45079
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45080
|
+
message: string;
|
|
45081
|
+
/** Date and time at which Seam created the warning. */
|
|
45082
|
+
created_at: string;
|
|
45083
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45084
|
+
warning_code: 'time_zone_unknown';
|
|
45085
|
+
} | {
|
|
45086
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45087
|
+
message: string;
|
|
45088
|
+
/** Date and time at which Seam created the warning. */
|
|
45089
|
+
created_at: string;
|
|
45090
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
45091
|
+
warning_code: 'time_zone_mismatch';
|
|
45000
45092
|
} | {
|
|
45001
45093
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
45002
45094
|
message: string;
|
|
@@ -53627,6 +53719,8 @@ export type Routes = {
|
|
|
53627
53719
|
has_gateway: boolean;
|
|
53628
53720
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
53629
53721
|
timezone_raw_offset_ms: number;
|
|
53722
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
53723
|
+
time_zone?: (string | null) | undefined;
|
|
53630
53724
|
} | undefined;
|
|
53631
53725
|
/** Metadata for a tado° device. */
|
|
53632
53726
|
tado_metadata?: {
|
|
@@ -54403,6 +54497,20 @@ export type Routes = {
|
|
|
54403
54497
|
created_at: string;
|
|
54404
54498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54405
54499
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
54500
|
+
} | {
|
|
54501
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54502
|
+
message: string;
|
|
54503
|
+
/** Date and time at which Seam created the warning. */
|
|
54504
|
+
created_at: string;
|
|
54505
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54506
|
+
warning_code: 'time_zone_unknown';
|
|
54507
|
+
} | {
|
|
54508
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54509
|
+
message: string;
|
|
54510
|
+
/** Date and time at which Seam created the warning. */
|
|
54511
|
+
created_at: string;
|
|
54512
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54513
|
+
warning_code: 'time_zone_mismatch';
|
|
54406
54514
|
} | {
|
|
54407
54515
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54408
54516
|
message: string;
|
|
@@ -55086,6 +55194,8 @@ export type Routes = {
|
|
|
55086
55194
|
has_gateway: boolean;
|
|
55087
55195
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
55088
55196
|
timezone_raw_offset_ms: number;
|
|
55197
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
55198
|
+
time_zone?: (string | null) | undefined;
|
|
55089
55199
|
} | undefined;
|
|
55090
55200
|
/** Metadata for a tado° device. */
|
|
55091
55201
|
tado_metadata?: {
|
|
@@ -55862,6 +55972,20 @@ export type Routes = {
|
|
|
55862
55972
|
created_at: string;
|
|
55863
55973
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55864
55974
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
55975
|
+
} | {
|
|
55976
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55977
|
+
message: string;
|
|
55978
|
+
/** Date and time at which Seam created the warning. */
|
|
55979
|
+
created_at: string;
|
|
55980
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55981
|
+
warning_code: 'time_zone_unknown';
|
|
55982
|
+
} | {
|
|
55983
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55984
|
+
message: string;
|
|
55985
|
+
/** Date and time at which Seam created the warning. */
|
|
55986
|
+
created_at: string;
|
|
55987
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55988
|
+
warning_code: 'time_zone_mismatch';
|
|
55865
55989
|
} | {
|
|
55866
55990
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55867
55991
|
message: string;
|
|
@@ -56595,6 +56719,8 @@ export type Routes = {
|
|
|
56595
56719
|
has_gateway: boolean;
|
|
56596
56720
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
56597
56721
|
timezone_raw_offset_ms: number;
|
|
56722
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
56723
|
+
time_zone?: (string | null) | undefined;
|
|
56598
56724
|
} | undefined;
|
|
56599
56725
|
/** Metadata for a tado° device. */
|
|
56600
56726
|
tado_metadata?: {
|
|
@@ -57371,6 +57497,20 @@ export type Routes = {
|
|
|
57371
57497
|
created_at: string;
|
|
57372
57498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57373
57499
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
57500
|
+
} | {
|
|
57501
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57502
|
+
message: string;
|
|
57503
|
+
/** Date and time at which Seam created the warning. */
|
|
57504
|
+
created_at: string;
|
|
57505
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57506
|
+
warning_code: 'time_zone_unknown';
|
|
57507
|
+
} | {
|
|
57508
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57509
|
+
message: string;
|
|
57510
|
+
/** Date and time at which Seam created the warning. */
|
|
57511
|
+
created_at: string;
|
|
57512
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
57513
|
+
warning_code: 'time_zone_mismatch';
|
|
57374
57514
|
} | {
|
|
57375
57515
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
57376
57516
|
message: string;
|
|
@@ -58053,6 +58193,8 @@ export type Routes = {
|
|
|
58053
58193
|
has_gateway: boolean;
|
|
58054
58194
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
58055
58195
|
timezone_raw_offset_ms: number;
|
|
58196
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
58197
|
+
time_zone?: (string | null) | undefined;
|
|
58056
58198
|
} | undefined;
|
|
58057
58199
|
/** Metadata for a tado° device. */
|
|
58058
58200
|
tado_metadata?: {
|
|
@@ -58829,6 +58971,20 @@ export type Routes = {
|
|
|
58829
58971
|
created_at: string;
|
|
58830
58972
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58831
58973
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
58974
|
+
} | {
|
|
58975
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58976
|
+
message: string;
|
|
58977
|
+
/** Date and time at which Seam created the warning. */
|
|
58978
|
+
created_at: string;
|
|
58979
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58980
|
+
warning_code: 'time_zone_unknown';
|
|
58981
|
+
} | {
|
|
58982
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58983
|
+
message: string;
|
|
58984
|
+
/** Date and time at which Seam created the warning. */
|
|
58985
|
+
created_at: string;
|
|
58986
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
58987
|
+
warning_code: 'time_zone_mismatch';
|
|
58832
58988
|
} | {
|
|
58833
58989
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
58834
58990
|
message: string;
|
|
@@ -66288,6 +66444,8 @@ export type Routes = {
|
|
|
66288
66444
|
has_gateway: boolean;
|
|
66289
66445
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
66290
66446
|
timezone_raw_offset_ms: number;
|
|
66447
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
66448
|
+
time_zone?: (string | null) | undefined;
|
|
66291
66449
|
} | undefined;
|
|
66292
66450
|
/** Metadata for a tado° device. */
|
|
66293
66451
|
tado_metadata?: {
|
|
@@ -67064,6 +67222,20 @@ export type Routes = {
|
|
|
67064
67222
|
created_at: string;
|
|
67065
67223
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67066
67224
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
67225
|
+
} | {
|
|
67226
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67227
|
+
message: string;
|
|
67228
|
+
/** Date and time at which Seam created the warning. */
|
|
67229
|
+
created_at: string;
|
|
67230
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67231
|
+
warning_code: 'time_zone_unknown';
|
|
67232
|
+
} | {
|
|
67233
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67234
|
+
message: string;
|
|
67235
|
+
/** Date and time at which Seam created the warning. */
|
|
67236
|
+
created_at: string;
|
|
67237
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67238
|
+
warning_code: 'time_zone_mismatch';
|
|
67067
67239
|
} | {
|
|
67068
67240
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67069
67241
|
message: string;
|
|
@@ -67746,6 +67918,8 @@ export type Routes = {
|
|
|
67746
67918
|
has_gateway: boolean;
|
|
67747
67919
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
67748
67920
|
timezone_raw_offset_ms: number;
|
|
67921
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
67922
|
+
time_zone?: (string | null) | undefined;
|
|
67749
67923
|
} | undefined;
|
|
67750
67924
|
/** Metadata for a tado° device. */
|
|
67751
67925
|
tado_metadata?: {
|
|
@@ -68522,6 +68696,20 @@ export type Routes = {
|
|
|
68522
68696
|
created_at: string;
|
|
68523
68697
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68524
68698
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
68699
|
+
} | {
|
|
68700
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68701
|
+
message: string;
|
|
68702
|
+
/** Date and time at which Seam created the warning. */
|
|
68703
|
+
created_at: string;
|
|
68704
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68705
|
+
warning_code: 'time_zone_unknown';
|
|
68706
|
+
} | {
|
|
68707
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68708
|
+
message: string;
|
|
68709
|
+
/** Date and time at which Seam created the warning. */
|
|
68710
|
+
created_at: string;
|
|
68711
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68712
|
+
warning_code: 'time_zone_mismatch';
|
|
68525
68713
|
} | {
|
|
68526
68714
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68527
68715
|
message: string;
|
|
@@ -74940,14 +75128,14 @@ export type Routes = {
|
|
|
74940
75128
|
jsonBody: {};
|
|
74941
75129
|
commonParams: {
|
|
74942
75130
|
/** Name of the workspace feature flag to update. */
|
|
74943
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'LYNX_MIGRATION_ENABLED';
|
|
75131
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED';
|
|
74944
75132
|
/** Whether the feature flag should be enabled for the workspace. */
|
|
74945
75133
|
enabled: boolean;
|
|
74946
75134
|
};
|
|
74947
75135
|
formData: {};
|
|
74948
75136
|
jsonResponse: {
|
|
74949
75137
|
feature_flag: {
|
|
74950
|
-
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'LYNX_MIGRATION_ENABLED';
|
|
75138
|
+
feature_flag_name: 'RESERVATION_LEGACY' | 'EXPERIMENTAL_DASHBOARD_API_ENABLED' | 'ICAL_CONNECTOR' | 'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS' | 'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES' | 'MANAGE_DEVICES_CONFIRMATION_MODAL' | 'RECLAIM_ORPHANED_BACKUP_ACCESS_CODES' | 'LYNX_MIGRATION_ENABLED';
|
|
74951
75139
|
enabled: boolean;
|
|
74952
75140
|
};
|
|
74953
75141
|
};
|
|
@@ -83386,6 +83574,8 @@ export type Routes = {
|
|
|
83386
83574
|
has_gateway: boolean;
|
|
83387
83575
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
83388
83576
|
timezone_raw_offset_ms: number;
|
|
83577
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
83578
|
+
time_zone?: (string | null) | undefined;
|
|
83389
83579
|
} | undefined;
|
|
83390
83580
|
/** Metadata for a tado° device. */
|
|
83391
83581
|
tado_metadata?: {
|
|
@@ -84162,6 +84352,20 @@ export type Routes = {
|
|
|
84162
84352
|
created_at: string;
|
|
84163
84353
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84164
84354
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
84355
|
+
} | {
|
|
84356
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84357
|
+
message: string;
|
|
84358
|
+
/** Date and time at which Seam created the warning. */
|
|
84359
|
+
created_at: string;
|
|
84360
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84361
|
+
warning_code: 'time_zone_unknown';
|
|
84362
|
+
} | {
|
|
84363
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84364
|
+
message: string;
|
|
84365
|
+
/** Date and time at which Seam created the warning. */
|
|
84366
|
+
created_at: string;
|
|
84367
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84368
|
+
warning_code: 'time_zone_mismatch';
|
|
84165
84369
|
} | {
|
|
84166
84370
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84167
84371
|
message: string;
|
|
@@ -90852,6 +91056,8 @@ export type Routes = {
|
|
|
90852
91056
|
has_gateway: boolean;
|
|
90853
91057
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
90854
91058
|
timezone_raw_offset_ms: number;
|
|
91059
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
91060
|
+
time_zone?: (string | null) | undefined;
|
|
90855
91061
|
} | undefined;
|
|
90856
91062
|
/** Metadata for a tado° device. */
|
|
90857
91063
|
tado_metadata?: {
|
|
@@ -91628,6 +91834,20 @@ export type Routes = {
|
|
|
91628
91834
|
created_at: string;
|
|
91629
91835
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91630
91836
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
91837
|
+
} | {
|
|
91838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91839
|
+
message: string;
|
|
91840
|
+
/** Date and time at which Seam created the warning. */
|
|
91841
|
+
created_at: string;
|
|
91842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91843
|
+
warning_code: 'time_zone_unknown';
|
|
91844
|
+
} | {
|
|
91845
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91846
|
+
message: string;
|
|
91847
|
+
/** Date and time at which Seam created the warning. */
|
|
91848
|
+
created_at: string;
|
|
91849
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
91850
|
+
warning_code: 'time_zone_mismatch';
|
|
91631
91851
|
} | {
|
|
91632
91852
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
91633
91853
|
message: string;
|
|
@@ -95737,6 +95957,8 @@ export type Routes = {
|
|
|
95737
95957
|
has_gateway: boolean;
|
|
95738
95958
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
95739
95959
|
timezone_raw_offset_ms: number;
|
|
95960
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
95961
|
+
time_zone?: (string | null) | undefined;
|
|
95740
95962
|
} | undefined;
|
|
95741
95963
|
/** Metadata for a tado° device. */
|
|
95742
95964
|
tado_metadata?: {
|
|
@@ -96513,6 +96735,20 @@ export type Routes = {
|
|
|
96513
96735
|
created_at: string;
|
|
96514
96736
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96515
96737
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
96738
|
+
} | {
|
|
96739
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96740
|
+
message: string;
|
|
96741
|
+
/** Date and time at which Seam created the warning. */
|
|
96742
|
+
created_at: string;
|
|
96743
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96744
|
+
warning_code: 'time_zone_unknown';
|
|
96745
|
+
} | {
|
|
96746
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96747
|
+
message: string;
|
|
96748
|
+
/** Date and time at which Seam created the warning. */
|
|
96749
|
+
created_at: string;
|
|
96750
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
96751
|
+
warning_code: 'time_zone_mismatch';
|
|
96516
96752
|
} | {
|
|
96517
96753
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
96518
96754
|
message: string;
|
|
@@ -97195,6 +97431,8 @@ export type Routes = {
|
|
|
97195
97431
|
has_gateway: boolean;
|
|
97196
97432
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97197
97433
|
timezone_raw_offset_ms: number;
|
|
97434
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
97435
|
+
time_zone?: (string | null) | undefined;
|
|
97198
97436
|
} | undefined;
|
|
97199
97437
|
/** Metadata for a tado° device. */
|
|
97200
97438
|
tado_metadata?: {
|
|
@@ -97971,6 +98209,20 @@ export type Routes = {
|
|
|
97971
98209
|
created_at: string;
|
|
97972
98210
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97973
98211
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
98212
|
+
} | {
|
|
98213
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98214
|
+
message: string;
|
|
98215
|
+
/** Date and time at which Seam created the warning. */
|
|
98216
|
+
created_at: string;
|
|
98217
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98218
|
+
warning_code: 'time_zone_unknown';
|
|
98219
|
+
} | {
|
|
98220
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98221
|
+
message: string;
|
|
98222
|
+
/** Date and time at which Seam created the warning. */
|
|
98223
|
+
created_at: string;
|
|
98224
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98225
|
+
warning_code: 'time_zone_mismatch';
|
|
97974
98226
|
} | {
|
|
97975
98227
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97976
98228
|
message: string;
|
|
@@ -106369,6 +106621,8 @@ export type Routes = {
|
|
|
106369
106621
|
has_gateway: boolean;
|
|
106370
106622
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
106371
106623
|
timezone_raw_offset_ms: number;
|
|
106624
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
106625
|
+
time_zone?: (string | null) | undefined;
|
|
106372
106626
|
} | undefined;
|
|
106373
106627
|
/** Metadata for a tado° device. */
|
|
106374
106628
|
tado_metadata?: {
|
|
@@ -107145,6 +107399,20 @@ export type Routes = {
|
|
|
107145
107399
|
created_at: string;
|
|
107146
107400
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107147
107401
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
107402
|
+
} | {
|
|
107403
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107404
|
+
message: string;
|
|
107405
|
+
/** Date and time at which Seam created the warning. */
|
|
107406
|
+
created_at: string;
|
|
107407
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107408
|
+
warning_code: 'time_zone_unknown';
|
|
107409
|
+
} | {
|
|
107410
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107411
|
+
message: string;
|
|
107412
|
+
/** Date and time at which Seam created the warning. */
|
|
107413
|
+
created_at: string;
|
|
107414
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107415
|
+
warning_code: 'time_zone_mismatch';
|
|
107148
107416
|
} | {
|
|
107149
107417
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107150
107418
|
message: string;
|
|
@@ -107829,6 +108097,8 @@ export type Routes = {
|
|
|
107829
108097
|
has_gateway: boolean;
|
|
107830
108098
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
107831
108099
|
timezone_raw_offset_ms: number;
|
|
108100
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
108101
|
+
time_zone?: (string | null) | undefined;
|
|
107832
108102
|
} | undefined;
|
|
107833
108103
|
/** Metadata for a tado° device. */
|
|
107834
108104
|
tado_metadata?: {
|
|
@@ -108605,6 +108875,20 @@ export type Routes = {
|
|
|
108605
108875
|
created_at: string;
|
|
108606
108876
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108607
108877
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
108878
|
+
} | {
|
|
108879
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108880
|
+
message: string;
|
|
108881
|
+
/** Date and time at which Seam created the warning. */
|
|
108882
|
+
created_at: string;
|
|
108883
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108884
|
+
warning_code: 'time_zone_unknown';
|
|
108885
|
+
} | {
|
|
108886
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108887
|
+
message: string;
|
|
108888
|
+
/** Date and time at which Seam created the warning. */
|
|
108889
|
+
created_at: string;
|
|
108890
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108891
|
+
warning_code: 'time_zone_mismatch';
|
|
108608
108892
|
} | {
|
|
108609
108893
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108610
108894
|
message: string;
|
|
@@ -110544,6 +110828,8 @@ export type Routes = {
|
|
|
110544
110828
|
has_gateway: boolean;
|
|
110545
110829
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
110546
110830
|
timezone_raw_offset_ms: number;
|
|
110831
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
110832
|
+
time_zone?: (string | null) | undefined;
|
|
110547
110833
|
} | undefined;
|
|
110548
110834
|
/** Metadata for a tado° device. */
|
|
110549
110835
|
tado_metadata?: {
|
|
@@ -111320,6 +111606,20 @@ export type Routes = {
|
|
|
111320
111606
|
created_at: string;
|
|
111321
111607
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111322
111608
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
111609
|
+
} | {
|
|
111610
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
111611
|
+
message: string;
|
|
111612
|
+
/** Date and time at which Seam created the warning. */
|
|
111613
|
+
created_at: string;
|
|
111614
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111615
|
+
warning_code: 'time_zone_unknown';
|
|
111616
|
+
} | {
|
|
111617
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
111618
|
+
message: string;
|
|
111619
|
+
/** Date and time at which Seam created the warning. */
|
|
111620
|
+
created_at: string;
|
|
111621
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
111622
|
+
warning_code: 'time_zone_mismatch';
|
|
111323
111623
|
} | {
|
|
111324
111624
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
111325
111625
|
message: string;
|
|
@@ -114622,6 +114922,20 @@ export type Routes = {
|
|
|
114622
114922
|
created_at: string;
|
|
114623
114923
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114624
114924
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
114925
|
+
} | {
|
|
114926
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114927
|
+
message: string;
|
|
114928
|
+
/** Date and time at which Seam created the warning. */
|
|
114929
|
+
created_at: string;
|
|
114930
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114931
|
+
warning_code: 'time_zone_unknown';
|
|
114932
|
+
} | {
|
|
114933
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114934
|
+
message: string;
|
|
114935
|
+
/** Date and time at which Seam created the warning. */
|
|
114936
|
+
created_at: string;
|
|
114937
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114938
|
+
warning_code: 'time_zone_mismatch';
|
|
114625
114939
|
} | {
|
|
114626
114940
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114627
114941
|
message: string;
|
package/package.json
CHANGED
|
@@ -654,6 +654,13 @@ export const device_metadata = z
|
|
|
654
654
|
.describe(
|
|
655
655
|
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`,
|
|
656
656
|
),
|
|
657
|
+
time_zone: z
|
|
658
|
+
.string()
|
|
659
|
+
.nullable()
|
|
660
|
+
.optional()
|
|
661
|
+
.describe(
|
|
662
|
+
`IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST).`,
|
|
663
|
+
),
|
|
657
664
|
})
|
|
658
665
|
.describe(`Metadata for an Omnitec device.`),
|
|
659
666
|
|