@seamapi/types 1.941.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 -64
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +436 -167
- package/dist/index.cjs +116 -64
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -71
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -14
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -26
- 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 -54
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +314 -99
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -15
- 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 -64
- package/src/lib/seam/connect/route-types.ts +354 -110
package/dist/connect.d.cts
CHANGED
|
@@ -106,22 +106,6 @@ declare const access_code_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObj
|
|
|
106
106
|
message: z.ZodString;
|
|
107
107
|
is_access_code_error: z.ZodLiteral<true>;
|
|
108
108
|
created_at: z.ZodOptional<z.ZodString>;
|
|
109
|
-
} & {
|
|
110
|
-
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
111
|
-
}, "strip", z.ZodTypeAny, {
|
|
112
|
-
message: string;
|
|
113
|
-
error_code: "access_code_state_unconfirmed";
|
|
114
|
-
is_access_code_error: true;
|
|
115
|
-
created_at?: string | undefined;
|
|
116
|
-
}, {
|
|
117
|
-
message: string;
|
|
118
|
-
error_code: "access_code_state_unconfirmed";
|
|
119
|
-
is_access_code_error: true;
|
|
120
|
-
created_at?: string | undefined;
|
|
121
|
-
}>, z.ZodObject<{
|
|
122
|
-
message: z.ZodString;
|
|
123
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
124
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
125
109
|
} & {
|
|
126
110
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
127
111
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
@@ -485,22 +469,6 @@ declare const access_code: z.ZodObject<{
|
|
|
485
469
|
message: z.ZodString;
|
|
486
470
|
is_access_code_error: z.ZodLiteral<true>;
|
|
487
471
|
created_at: z.ZodOptional<z.ZodString>;
|
|
488
|
-
} & {
|
|
489
|
-
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
490
|
-
}, "strip", z.ZodTypeAny, {
|
|
491
|
-
message: string;
|
|
492
|
-
error_code: "access_code_state_unconfirmed";
|
|
493
|
-
is_access_code_error: true;
|
|
494
|
-
created_at?: string | undefined;
|
|
495
|
-
}, {
|
|
496
|
-
message: string;
|
|
497
|
-
error_code: "access_code_state_unconfirmed";
|
|
498
|
-
is_access_code_error: true;
|
|
499
|
-
created_at?: string | undefined;
|
|
500
|
-
}>, z.ZodObject<{
|
|
501
|
-
message: z.ZodString;
|
|
502
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
503
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
504
472
|
} & {
|
|
505
473
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
506
474
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
@@ -1487,11 +1455,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1487
1455
|
error_code: "no_space_for_access_code_on_device";
|
|
1488
1456
|
is_access_code_error: true;
|
|
1489
1457
|
created_at?: string | undefined;
|
|
1490
|
-
} | {
|
|
1491
|
-
message: string;
|
|
1492
|
-
error_code: "access_code_state_unconfirmed";
|
|
1493
|
-
is_access_code_error: true;
|
|
1494
|
-
created_at?: string | undefined;
|
|
1495
1458
|
} | {
|
|
1496
1459
|
message: string;
|
|
1497
1460
|
error_code: "insufficient_permissions";
|
|
@@ -1785,11 +1748,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1785
1748
|
error_code: "no_space_for_access_code_on_device";
|
|
1786
1749
|
is_access_code_error: true;
|
|
1787
1750
|
created_at?: string | undefined;
|
|
1788
|
-
} | {
|
|
1789
|
-
message: string;
|
|
1790
|
-
error_code: "access_code_state_unconfirmed";
|
|
1791
|
-
is_access_code_error: true;
|
|
1792
|
-
created_at?: string | undefined;
|
|
1793
1751
|
} | {
|
|
1794
1752
|
message: string;
|
|
1795
1753
|
error_code: "insufficient_permissions";
|
|
@@ -2040,22 +1998,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2040
1998
|
message: z.ZodString;
|
|
2041
1999
|
is_access_code_error: z.ZodLiteral<true>;
|
|
2042
2000
|
created_at: z.ZodOptional<z.ZodString>;
|
|
2043
|
-
} & {
|
|
2044
|
-
error_code: z.ZodLiteral<"access_code_state_unconfirmed">;
|
|
2045
|
-
}, "strip", z.ZodTypeAny, {
|
|
2046
|
-
message: string;
|
|
2047
|
-
error_code: "access_code_state_unconfirmed";
|
|
2048
|
-
is_access_code_error: true;
|
|
2049
|
-
created_at?: string | undefined;
|
|
2050
|
-
}, {
|
|
2051
|
-
message: string;
|
|
2052
|
-
error_code: "access_code_state_unconfirmed";
|
|
2053
|
-
is_access_code_error: true;
|
|
2054
|
-
created_at?: string | undefined;
|
|
2055
|
-
}>, z.ZodObject<{
|
|
2056
|
-
message: z.ZodString;
|
|
2057
|
-
is_access_code_error: z.ZodLiteral<true>;
|
|
2058
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
2059
2001
|
} & {
|
|
2060
2002
|
error_code: z.ZodLiteral<"code_modified_external_to_seam">;
|
|
2061
2003
|
change_type: z.ZodOptional<z.ZodEnum<["modified", "removed"]>>;
|
|
@@ -2868,11 +2810,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2868
2810
|
error_code: "no_space_for_access_code_on_device";
|
|
2869
2811
|
is_access_code_error: true;
|
|
2870
2812
|
created_at?: string | undefined;
|
|
2871
|
-
} | {
|
|
2872
|
-
message: string;
|
|
2873
|
-
error_code: "access_code_state_unconfirmed";
|
|
2874
|
-
is_access_code_error: true;
|
|
2875
|
-
created_at?: string | undefined;
|
|
2876
2813
|
} | {
|
|
2877
2814
|
message: string;
|
|
2878
2815
|
error_code: "insufficient_permissions";
|
|
@@ -3113,11 +3050,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3113
3050
|
error_code: "no_space_for_access_code_on_device";
|
|
3114
3051
|
is_access_code_error: true;
|
|
3115
3052
|
created_at?: string | undefined;
|
|
3116
|
-
} | {
|
|
3117
|
-
message: string;
|
|
3118
|
-
error_code: "access_code_state_unconfirmed";
|
|
3119
|
-
is_access_code_error: true;
|
|
3120
|
-
created_at?: string | undefined;
|
|
3121
3053
|
} | {
|
|
3122
3054
|
message: string;
|
|
3123
3055
|
error_code: "insufficient_permissions";
|
|
@@ -14726,6 +14658,32 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
|
|
|
14726
14658
|
}>, z.ZodObject<{
|
|
14727
14659
|
message: z.ZodString;
|
|
14728
14660
|
created_at: z.ZodString;
|
|
14661
|
+
} & {
|
|
14662
|
+
warning_code: z.ZodLiteral<"time_zone_unknown">;
|
|
14663
|
+
}, "strip", z.ZodTypeAny, {
|
|
14664
|
+
message: string;
|
|
14665
|
+
created_at: string;
|
|
14666
|
+
warning_code: "time_zone_unknown";
|
|
14667
|
+
}, {
|
|
14668
|
+
message: string;
|
|
14669
|
+
created_at: string;
|
|
14670
|
+
warning_code: "time_zone_unknown";
|
|
14671
|
+
}>, z.ZodObject<{
|
|
14672
|
+
message: z.ZodString;
|
|
14673
|
+
created_at: z.ZodString;
|
|
14674
|
+
} & {
|
|
14675
|
+
warning_code: z.ZodLiteral<"time_zone_mismatch">;
|
|
14676
|
+
}, "strip", z.ZodTypeAny, {
|
|
14677
|
+
message: string;
|
|
14678
|
+
created_at: string;
|
|
14679
|
+
warning_code: "time_zone_mismatch";
|
|
14680
|
+
}, {
|
|
14681
|
+
message: string;
|
|
14682
|
+
created_at: string;
|
|
14683
|
+
warning_code: "time_zone_mismatch";
|
|
14684
|
+
}>, z.ZodObject<{
|
|
14685
|
+
message: z.ZodString;
|
|
14686
|
+
created_at: z.ZodString;
|
|
14729
14687
|
} & {
|
|
14730
14688
|
warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
|
|
14731
14689
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15792,12 +15750,14 @@ declare const device: z.ZodObject<{
|
|
|
15792
15750
|
lock_mac: z.ZodString;
|
|
15793
15751
|
has_gateway: z.ZodBoolean;
|
|
15794
15752
|
timezone_raw_offset_ms: z.ZodNumber;
|
|
15753
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15795
15754
|
}, "strip", z.ZodTypeAny, {
|
|
15796
15755
|
lock_id: number;
|
|
15797
15756
|
lock_name: string;
|
|
15798
15757
|
has_gateway: boolean;
|
|
15799
15758
|
timezone_raw_offset_ms: number;
|
|
15800
15759
|
lock_mac: string;
|
|
15760
|
+
time_zone?: string | null | undefined;
|
|
15801
15761
|
lock_alias?: string | undefined;
|
|
15802
15762
|
}, {
|
|
15803
15763
|
lock_id: number;
|
|
@@ -15805,6 +15765,7 @@ declare const device: z.ZodObject<{
|
|
|
15805
15765
|
has_gateway: boolean;
|
|
15806
15766
|
timezone_raw_offset_ms: number;
|
|
15807
15767
|
lock_mac: string;
|
|
15768
|
+
time_zone?: string | null | undefined;
|
|
15808
15769
|
lock_alias?: string | undefined;
|
|
15809
15770
|
}>>;
|
|
15810
15771
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -16203,6 +16164,7 @@ declare const device: z.ZodObject<{
|
|
|
16203
16164
|
has_gateway: boolean;
|
|
16204
16165
|
timezone_raw_offset_ms: number;
|
|
16205
16166
|
lock_mac: string;
|
|
16167
|
+
time_zone?: string | null | undefined;
|
|
16206
16168
|
lock_alias?: string | undefined;
|
|
16207
16169
|
} | undefined;
|
|
16208
16170
|
tado_metadata?: {
|
|
@@ -16497,6 +16459,7 @@ declare const device: z.ZodObject<{
|
|
|
16497
16459
|
has_gateway: boolean;
|
|
16498
16460
|
timezone_raw_offset_ms: number;
|
|
16499
16461
|
lock_mac: string;
|
|
16462
|
+
time_zone?: string | null | undefined;
|
|
16500
16463
|
lock_alias?: string | undefined;
|
|
16501
16464
|
} | undefined;
|
|
16502
16465
|
tado_metadata?: {
|
|
@@ -18050,6 +18013,32 @@ declare const device: z.ZodObject<{
|
|
|
18050
18013
|
}>, z.ZodObject<{
|
|
18051
18014
|
message: z.ZodString;
|
|
18052
18015
|
created_at: z.ZodString;
|
|
18016
|
+
} & {
|
|
18017
|
+
warning_code: z.ZodLiteral<"time_zone_unknown">;
|
|
18018
|
+
}, "strip", z.ZodTypeAny, {
|
|
18019
|
+
message: string;
|
|
18020
|
+
created_at: string;
|
|
18021
|
+
warning_code: "time_zone_unknown";
|
|
18022
|
+
}, {
|
|
18023
|
+
message: string;
|
|
18024
|
+
created_at: string;
|
|
18025
|
+
warning_code: "time_zone_unknown";
|
|
18026
|
+
}>, z.ZodObject<{
|
|
18027
|
+
message: z.ZodString;
|
|
18028
|
+
created_at: z.ZodString;
|
|
18029
|
+
} & {
|
|
18030
|
+
warning_code: z.ZodLiteral<"time_zone_mismatch">;
|
|
18031
|
+
}, "strip", z.ZodTypeAny, {
|
|
18032
|
+
message: string;
|
|
18033
|
+
created_at: string;
|
|
18034
|
+
warning_code: "time_zone_mismatch";
|
|
18035
|
+
}, {
|
|
18036
|
+
message: string;
|
|
18037
|
+
created_at: string;
|
|
18038
|
+
warning_code: "time_zone_mismatch";
|
|
18039
|
+
}>, z.ZodObject<{
|
|
18040
|
+
message: z.ZodString;
|
|
18041
|
+
created_at: z.ZodString;
|
|
18053
18042
|
} & {
|
|
18054
18043
|
warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
|
|
18055
18044
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -18396,6 +18385,14 @@ declare const device: z.ZodObject<{
|
|
|
18396
18385
|
message: string;
|
|
18397
18386
|
created_at: string;
|
|
18398
18387
|
warning_code: "ultraloq_time_zone_unknown";
|
|
18388
|
+
} | {
|
|
18389
|
+
message: string;
|
|
18390
|
+
created_at: string;
|
|
18391
|
+
warning_code: "time_zone_unknown";
|
|
18392
|
+
} | {
|
|
18393
|
+
message: string;
|
|
18394
|
+
created_at: string;
|
|
18395
|
+
warning_code: "time_zone_mismatch";
|
|
18399
18396
|
} | {
|
|
18400
18397
|
message: string;
|
|
18401
18398
|
created_at: string;
|
|
@@ -18720,6 +18717,7 @@ declare const device: z.ZodObject<{
|
|
|
18720
18717
|
has_gateway: boolean;
|
|
18721
18718
|
timezone_raw_offset_ms: number;
|
|
18722
18719
|
lock_mac: string;
|
|
18720
|
+
time_zone?: string | null | undefined;
|
|
18723
18721
|
lock_alias?: string | undefined;
|
|
18724
18722
|
} | undefined;
|
|
18725
18723
|
tado_metadata?: {
|
|
@@ -19187,6 +19185,14 @@ declare const device: z.ZodObject<{
|
|
|
19187
19185
|
message: string;
|
|
19188
19186
|
created_at: string;
|
|
19189
19187
|
warning_code: "ultraloq_time_zone_unknown";
|
|
19188
|
+
} | {
|
|
19189
|
+
message: string;
|
|
19190
|
+
created_at: string;
|
|
19191
|
+
warning_code: "time_zone_unknown";
|
|
19192
|
+
} | {
|
|
19193
|
+
message: string;
|
|
19194
|
+
created_at: string;
|
|
19195
|
+
warning_code: "time_zone_mismatch";
|
|
19190
19196
|
} | {
|
|
19191
19197
|
message: string;
|
|
19192
19198
|
created_at: string;
|
|
@@ -19511,6 +19517,7 @@ declare const device: z.ZodObject<{
|
|
|
19511
19517
|
has_gateway: boolean;
|
|
19512
19518
|
timezone_raw_offset_ms: number;
|
|
19513
19519
|
lock_mac: string;
|
|
19520
|
+
time_zone?: string | null | undefined;
|
|
19514
19521
|
lock_alias?: string | undefined;
|
|
19515
19522
|
} | undefined;
|
|
19516
19523
|
tado_metadata?: {
|
|
@@ -20896,12 +20903,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20896
20903
|
lock_mac: z.ZodString;
|
|
20897
20904
|
has_gateway: z.ZodBoolean;
|
|
20898
20905
|
timezone_raw_offset_ms: z.ZodNumber;
|
|
20906
|
+
time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20899
20907
|
}, "strip", z.ZodTypeAny, {
|
|
20900
20908
|
lock_id: number;
|
|
20901
20909
|
lock_name: string;
|
|
20902
20910
|
has_gateway: boolean;
|
|
20903
20911
|
timezone_raw_offset_ms: number;
|
|
20904
20912
|
lock_mac: string;
|
|
20913
|
+
time_zone?: string | null | undefined;
|
|
20905
20914
|
lock_alias?: string | undefined;
|
|
20906
20915
|
}, {
|
|
20907
20916
|
lock_id: number;
|
|
@@ -20909,6 +20918,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
20909
20918
|
has_gateway: boolean;
|
|
20910
20919
|
timezone_raw_offset_ms: number;
|
|
20911
20920
|
lock_mac: string;
|
|
20921
|
+
time_zone?: string | null | undefined;
|
|
20912
20922
|
lock_alias?: string | undefined;
|
|
20913
20923
|
}>>;
|
|
20914
20924
|
tado_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -21307,6 +21317,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21307
21317
|
has_gateway: boolean;
|
|
21308
21318
|
timezone_raw_offset_ms: number;
|
|
21309
21319
|
lock_mac: string;
|
|
21320
|
+
time_zone?: string | null | undefined;
|
|
21310
21321
|
lock_alias?: string | undefined;
|
|
21311
21322
|
} | undefined;
|
|
21312
21323
|
tado_metadata?: {
|
|
@@ -21601,6 +21612,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
21601
21612
|
has_gateway: boolean;
|
|
21602
21613
|
timezone_raw_offset_ms: number;
|
|
21603
21614
|
lock_mac: string;
|
|
21615
|
+
time_zone?: string | null | undefined;
|
|
21604
21616
|
lock_alias?: string | undefined;
|
|
21605
21617
|
} | undefined;
|
|
21606
21618
|
tado_metadata?: {
|
|
@@ -23154,6 +23166,32 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23154
23166
|
}>, z.ZodObject<{
|
|
23155
23167
|
message: z.ZodString;
|
|
23156
23168
|
created_at: z.ZodString;
|
|
23169
|
+
} & {
|
|
23170
|
+
warning_code: z.ZodLiteral<"time_zone_unknown">;
|
|
23171
|
+
}, "strip", z.ZodTypeAny, {
|
|
23172
|
+
message: string;
|
|
23173
|
+
created_at: string;
|
|
23174
|
+
warning_code: "time_zone_unknown";
|
|
23175
|
+
}, {
|
|
23176
|
+
message: string;
|
|
23177
|
+
created_at: string;
|
|
23178
|
+
warning_code: "time_zone_unknown";
|
|
23179
|
+
}>, z.ZodObject<{
|
|
23180
|
+
message: z.ZodString;
|
|
23181
|
+
created_at: z.ZodString;
|
|
23182
|
+
} & {
|
|
23183
|
+
warning_code: z.ZodLiteral<"time_zone_mismatch">;
|
|
23184
|
+
}, "strip", z.ZodTypeAny, {
|
|
23185
|
+
message: string;
|
|
23186
|
+
created_at: string;
|
|
23187
|
+
warning_code: "time_zone_mismatch";
|
|
23188
|
+
}, {
|
|
23189
|
+
message: string;
|
|
23190
|
+
created_at: string;
|
|
23191
|
+
warning_code: "time_zone_mismatch";
|
|
23192
|
+
}>, z.ZodObject<{
|
|
23193
|
+
message: z.ZodString;
|
|
23194
|
+
created_at: z.ZodString;
|
|
23157
23195
|
} & {
|
|
23158
23196
|
warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
|
|
23159
23197
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23656,6 +23694,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23656
23694
|
message: string;
|
|
23657
23695
|
created_at: string;
|
|
23658
23696
|
warning_code: "ultraloq_time_zone_unknown";
|
|
23697
|
+
} | {
|
|
23698
|
+
message: string;
|
|
23699
|
+
created_at: string;
|
|
23700
|
+
warning_code: "time_zone_unknown";
|
|
23701
|
+
} | {
|
|
23702
|
+
message: string;
|
|
23703
|
+
created_at: string;
|
|
23704
|
+
warning_code: "time_zone_mismatch";
|
|
23659
23705
|
} | {
|
|
23660
23706
|
message: string;
|
|
23661
23707
|
created_at: string;
|
|
@@ -23937,6 +23983,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
23937
23983
|
message: string;
|
|
23938
23984
|
created_at: string;
|
|
23939
23985
|
warning_code: "ultraloq_time_zone_unknown";
|
|
23986
|
+
} | {
|
|
23987
|
+
message: string;
|
|
23988
|
+
created_at: string;
|
|
23989
|
+
warning_code: "time_zone_unknown";
|
|
23990
|
+
} | {
|
|
23991
|
+
message: string;
|
|
23992
|
+
created_at: string;
|
|
23993
|
+
warning_code: "time_zone_mismatch";
|
|
23940
23994
|
} | {
|
|
23941
23995
|
message: string;
|
|
23942
23996
|
created_at: string;
|
|
@@ -31701,15 +31755,6 @@ type Routes = {
|
|
|
31701
31755
|
created_at?: string | undefined;
|
|
31702
31756
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31703
31757
|
error_code: 'no_space_for_access_code_on_device';
|
|
31704
|
-
} | {
|
|
31705
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31706
|
-
message: string;
|
|
31707
|
-
/** Indicates that this is an access code error. */
|
|
31708
|
-
is_access_code_error: true;
|
|
31709
|
-
/** Date and time at which Seam created the error. */
|
|
31710
|
-
created_at?: string | undefined;
|
|
31711
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
31712
|
-
error_code: 'access_code_state_unconfirmed';
|
|
31713
31758
|
} | {
|
|
31714
31759
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
31715
31760
|
message: string;
|
|
@@ -32234,15 +32279,6 @@ type Routes = {
|
|
|
32234
32279
|
created_at?: string | undefined;
|
|
32235
32280
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32236
32281
|
error_code: 'no_space_for_access_code_on_device';
|
|
32237
|
-
} | {
|
|
32238
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32239
|
-
message: string;
|
|
32240
|
-
/** Indicates that this is an access code error. */
|
|
32241
|
-
is_access_code_error: true;
|
|
32242
|
-
/** Date and time at which Seam created the error. */
|
|
32243
|
-
created_at?: string | undefined;
|
|
32244
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
32245
|
-
error_code: 'access_code_state_unconfirmed';
|
|
32246
32282
|
} | {
|
|
32247
32283
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
32248
32284
|
message: string;
|
|
@@ -34455,15 +34491,6 @@ type Routes = {
|
|
|
34455
34491
|
created_at?: string | undefined;
|
|
34456
34492
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34457
34493
|
error_code: 'no_space_for_access_code_on_device';
|
|
34458
|
-
} | {
|
|
34459
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34460
|
-
message: string;
|
|
34461
|
-
/** Indicates that this is an access code error. */
|
|
34462
|
-
is_access_code_error: true;
|
|
34463
|
-
/** Date and time at which Seam created the error. */
|
|
34464
|
-
created_at?: string | undefined;
|
|
34465
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
34466
|
-
error_code: 'access_code_state_unconfirmed';
|
|
34467
34494
|
} | {
|
|
34468
34495
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
34469
34496
|
message: string;
|
|
@@ -35034,15 +35061,6 @@ type Routes = {
|
|
|
35034
35061
|
created_at?: string | undefined;
|
|
35035
35062
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35036
35063
|
error_code: 'no_space_for_access_code_on_device';
|
|
35037
|
-
} | {
|
|
35038
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35039
|
-
message: string;
|
|
35040
|
-
/** Indicates that this is an access code error. */
|
|
35041
|
-
is_access_code_error: true;
|
|
35042
|
-
/** Date and time at which Seam created the error. */
|
|
35043
|
-
created_at?: string | undefined;
|
|
35044
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35045
|
-
error_code: 'access_code_state_unconfirmed';
|
|
35046
35064
|
} | {
|
|
35047
35065
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35048
35066
|
message: string;
|
|
@@ -35558,15 +35576,6 @@ type Routes = {
|
|
|
35558
35576
|
created_at?: string | undefined;
|
|
35559
35577
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35560
35578
|
error_code: 'no_space_for_access_code_on_device';
|
|
35561
|
-
} | {
|
|
35562
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35563
|
-
message: string;
|
|
35564
|
-
/** Indicates that this is an access code error. */
|
|
35565
|
-
is_access_code_error: true;
|
|
35566
|
-
/** Date and time at which Seam created the error. */
|
|
35567
|
-
created_at?: string | undefined;
|
|
35568
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
35569
|
-
error_code: 'access_code_state_unconfirmed';
|
|
35570
35579
|
} | {
|
|
35571
35580
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
35572
35581
|
message: string;
|
|
@@ -36059,15 +36068,6 @@ type Routes = {
|
|
|
36059
36068
|
created_at?: string | undefined;
|
|
36060
36069
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36061
36070
|
error_code: 'no_space_for_access_code_on_device';
|
|
36062
|
-
} | {
|
|
36063
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36064
|
-
message: string;
|
|
36065
|
-
/** Indicates that this is an access code error. */
|
|
36066
|
-
is_access_code_error: true;
|
|
36067
|
-
/** Date and time at which Seam created the error. */
|
|
36068
|
-
created_at?: string | undefined;
|
|
36069
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36070
|
-
error_code: 'access_code_state_unconfirmed';
|
|
36071
36071
|
} | {
|
|
36072
36072
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36073
36073
|
message: string;
|
|
@@ -36593,15 +36593,6 @@ type Routes = {
|
|
|
36593
36593
|
created_at?: string | undefined;
|
|
36594
36594
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36595
36595
|
error_code: 'no_space_for_access_code_on_device';
|
|
36596
|
-
} | {
|
|
36597
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36598
|
-
message: string;
|
|
36599
|
-
/** Indicates that this is an access code error. */
|
|
36600
|
-
is_access_code_error: true;
|
|
36601
|
-
/** Date and time at which Seam created the error. */
|
|
36602
|
-
created_at?: string | undefined;
|
|
36603
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
36604
|
-
error_code: 'access_code_state_unconfirmed';
|
|
36605
36596
|
} | {
|
|
36606
36597
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
36607
36598
|
message: string;
|
|
@@ -38723,15 +38714,6 @@ type Routes = {
|
|
|
38723
38714
|
created_at?: string | undefined;
|
|
38724
38715
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38725
38716
|
error_code: 'no_space_for_access_code_on_device';
|
|
38726
|
-
} | {
|
|
38727
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38728
|
-
message: string;
|
|
38729
|
-
/** Indicates that this is an access code error. */
|
|
38730
|
-
is_access_code_error: true;
|
|
38731
|
-
/** Date and time at which Seam created the error. */
|
|
38732
|
-
created_at?: string | undefined;
|
|
38733
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
38734
|
-
error_code: 'access_code_state_unconfirmed';
|
|
38735
38717
|
} | {
|
|
38736
38718
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
38737
38719
|
message: string;
|
|
@@ -39143,15 +39125,6 @@ type Routes = {
|
|
|
39143
39125
|
created_at?: string | undefined;
|
|
39144
39126
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39145
39127
|
error_code: 'no_space_for_access_code_on_device';
|
|
39146
|
-
} | {
|
|
39147
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39148
|
-
message: string;
|
|
39149
|
-
/** Indicates that this is an access code error. */
|
|
39150
|
-
is_access_code_error: true;
|
|
39151
|
-
/** Date and time at which Seam created the error. */
|
|
39152
|
-
created_at?: string | undefined;
|
|
39153
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
39154
|
-
error_code: 'access_code_state_unconfirmed';
|
|
39155
39128
|
} | {
|
|
39156
39129
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
39157
39130
|
message: string;
|
|
@@ -42317,6 +42290,8 @@ type Routes = {
|
|
|
42317
42290
|
has_gateway: boolean;
|
|
42318
42291
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
42319
42292
|
timezone_raw_offset_ms: number;
|
|
42293
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
42294
|
+
time_zone?: (string | null) | undefined;
|
|
42320
42295
|
} | undefined;
|
|
42321
42296
|
/** Metadata for a tado° device. */
|
|
42322
42297
|
tado_metadata?: {
|
|
@@ -43093,6 +43068,20 @@ type Routes = {
|
|
|
43093
43068
|
created_at: string;
|
|
43094
43069
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43095
43070
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
43071
|
+
} | {
|
|
43072
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43073
|
+
message: string;
|
|
43074
|
+
/** Date and time at which Seam created the warning. */
|
|
43075
|
+
created_at: string;
|
|
43076
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43077
|
+
warning_code: 'time_zone_unknown';
|
|
43078
|
+
} | {
|
|
43079
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43080
|
+
message: string;
|
|
43081
|
+
/** Date and time at which Seam created the warning. */
|
|
43082
|
+
created_at: string;
|
|
43083
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
43084
|
+
warning_code: 'time_zone_mismatch';
|
|
43096
43085
|
} | {
|
|
43097
43086
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
43098
43087
|
message: string;
|
|
@@ -49032,6 +49021,8 @@ type Routes = {
|
|
|
49032
49021
|
has_gateway: boolean;
|
|
49033
49022
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
49034
49023
|
timezone_raw_offset_ms: number;
|
|
49024
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
49025
|
+
time_zone?: (string | null) | undefined;
|
|
49035
49026
|
} | undefined;
|
|
49036
49027
|
/** Metadata for a tado° device. */
|
|
49037
49028
|
tado_metadata?: {
|
|
@@ -49808,6 +49799,20 @@ type Routes = {
|
|
|
49808
49799
|
created_at: string;
|
|
49809
49800
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49810
49801
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
49802
|
+
} | {
|
|
49803
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49804
|
+
message: string;
|
|
49805
|
+
/** Date and time at which Seam created the warning. */
|
|
49806
|
+
created_at: string;
|
|
49807
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49808
|
+
warning_code: 'time_zone_unknown';
|
|
49809
|
+
} | {
|
|
49810
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49811
|
+
message: string;
|
|
49812
|
+
/** Date and time at which Seam created the warning. */
|
|
49813
|
+
created_at: string;
|
|
49814
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
49815
|
+
warning_code: 'time_zone_mismatch';
|
|
49811
49816
|
} | {
|
|
49812
49817
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
49813
49818
|
message: string;
|
|
@@ -71519,6 +71524,8 @@ type Routes = {
|
|
|
71519
71524
|
has_gateway: boolean;
|
|
71520
71525
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
71521
71526
|
timezone_raw_offset_ms: number;
|
|
71527
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
71528
|
+
time_zone?: (string | null) | undefined;
|
|
71522
71529
|
} | undefined;
|
|
71523
71530
|
/** Metadata for a tado° device. */
|
|
71524
71531
|
tado_metadata?: {
|
|
@@ -72295,6 +72302,20 @@ type Routes = {
|
|
|
72295
72302
|
created_at: string;
|
|
72296
72303
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72297
72304
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
72305
|
+
} | {
|
|
72306
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72307
|
+
message: string;
|
|
72308
|
+
/** Date and time at which Seam created the warning. */
|
|
72309
|
+
created_at: string;
|
|
72310
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72311
|
+
warning_code: 'time_zone_unknown';
|
|
72312
|
+
} | {
|
|
72313
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72314
|
+
message: string;
|
|
72315
|
+
/** Date and time at which Seam created the warning. */
|
|
72316
|
+
created_at: string;
|
|
72317
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72318
|
+
warning_code: 'time_zone_mismatch';
|
|
72298
72319
|
} | {
|
|
72299
72320
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72300
72321
|
message: string;
|
|
@@ -73028,6 +73049,8 @@ type Routes = {
|
|
|
73028
73049
|
has_gateway: boolean;
|
|
73029
73050
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
73030
73051
|
timezone_raw_offset_ms: number;
|
|
73052
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
73053
|
+
time_zone?: (string | null) | undefined;
|
|
73031
73054
|
} | undefined;
|
|
73032
73055
|
/** Metadata for a tado° device. */
|
|
73033
73056
|
tado_metadata?: {
|
|
@@ -73804,6 +73827,20 @@ type Routes = {
|
|
|
73804
73827
|
created_at: string;
|
|
73805
73828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73806
73829
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
73830
|
+
} | {
|
|
73831
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73832
|
+
message: string;
|
|
73833
|
+
/** Date and time at which Seam created the warning. */
|
|
73834
|
+
created_at: string;
|
|
73835
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73836
|
+
warning_code: 'time_zone_unknown';
|
|
73837
|
+
} | {
|
|
73838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73839
|
+
message: string;
|
|
73840
|
+
/** Date and time at which Seam created the warning. */
|
|
73841
|
+
created_at: string;
|
|
73842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73843
|
+
warning_code: 'time_zone_mismatch';
|
|
73807
73844
|
} | {
|
|
73808
73845
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
73809
73846
|
message: string;
|
|
@@ -74439,6 +74476,20 @@ type Routes = {
|
|
|
74439
74476
|
created_at: string;
|
|
74440
74477
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74441
74478
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
74479
|
+
} | {
|
|
74480
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74481
|
+
message: string;
|
|
74482
|
+
/** Date and time at which Seam created the warning. */
|
|
74483
|
+
created_at: string;
|
|
74484
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74485
|
+
warning_code: 'time_zone_unknown';
|
|
74486
|
+
} | {
|
|
74487
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74488
|
+
message: string;
|
|
74489
|
+
/** Date and time at which Seam created the warning. */
|
|
74490
|
+
created_at: string;
|
|
74491
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74492
|
+
warning_code: 'time_zone_mismatch';
|
|
74442
74493
|
} | {
|
|
74443
74494
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74444
74495
|
message: string;
|
|
@@ -74976,6 +75027,20 @@ type Routes = {
|
|
|
74976
75027
|
created_at: string;
|
|
74977
75028
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74978
75029
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
75030
|
+
} | {
|
|
75031
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75032
|
+
message: string;
|
|
75033
|
+
/** Date and time at which Seam created the warning. */
|
|
75034
|
+
created_at: string;
|
|
75035
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75036
|
+
warning_code: 'time_zone_unknown';
|
|
75037
|
+
} | {
|
|
75038
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
75039
|
+
message: string;
|
|
75040
|
+
/** Date and time at which Seam created the warning. */
|
|
75041
|
+
created_at: string;
|
|
75042
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
75043
|
+
warning_code: 'time_zone_mismatch';
|
|
74979
75044
|
} | {
|
|
74980
75045
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74981
75046
|
message: string;
|
|
@@ -83606,6 +83671,8 @@ type Routes = {
|
|
|
83606
83671
|
has_gateway: boolean;
|
|
83607
83672
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
83608
83673
|
timezone_raw_offset_ms: number;
|
|
83674
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
83675
|
+
time_zone?: (string | null) | undefined;
|
|
83609
83676
|
} | undefined;
|
|
83610
83677
|
/** Metadata for a tado° device. */
|
|
83611
83678
|
tado_metadata?: {
|
|
@@ -84382,6 +84449,20 @@ type Routes = {
|
|
|
84382
84449
|
created_at: string;
|
|
84383
84450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84384
84451
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
84452
|
+
} | {
|
|
84453
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84454
|
+
message: string;
|
|
84455
|
+
/** Date and time at which Seam created the warning. */
|
|
84456
|
+
created_at: string;
|
|
84457
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84458
|
+
warning_code: 'time_zone_unknown';
|
|
84459
|
+
} | {
|
|
84460
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84461
|
+
message: string;
|
|
84462
|
+
/** Date and time at which Seam created the warning. */
|
|
84463
|
+
created_at: string;
|
|
84464
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84465
|
+
warning_code: 'time_zone_mismatch';
|
|
84385
84466
|
} | {
|
|
84386
84467
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84387
84468
|
message: string;
|
|
@@ -85065,6 +85146,8 @@ type Routes = {
|
|
|
85065
85146
|
has_gateway: boolean;
|
|
85066
85147
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
85067
85148
|
timezone_raw_offset_ms: number;
|
|
85149
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
85150
|
+
time_zone?: (string | null) | undefined;
|
|
85068
85151
|
} | undefined;
|
|
85069
85152
|
/** Metadata for a tado° device. */
|
|
85070
85153
|
tado_metadata?: {
|
|
@@ -85841,6 +85924,20 @@ type Routes = {
|
|
|
85841
85924
|
created_at: string;
|
|
85842
85925
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85843
85926
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
85927
|
+
} | {
|
|
85928
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85929
|
+
message: string;
|
|
85930
|
+
/** Date and time at which Seam created the warning. */
|
|
85931
|
+
created_at: string;
|
|
85932
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85933
|
+
warning_code: 'time_zone_unknown';
|
|
85934
|
+
} | {
|
|
85935
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85936
|
+
message: string;
|
|
85937
|
+
/** Date and time at which Seam created the warning. */
|
|
85938
|
+
created_at: string;
|
|
85939
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
85940
|
+
warning_code: 'time_zone_mismatch';
|
|
85844
85941
|
} | {
|
|
85845
85942
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
85846
85943
|
message: string;
|
|
@@ -86574,6 +86671,8 @@ type Routes = {
|
|
|
86574
86671
|
has_gateway: boolean;
|
|
86575
86672
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
86576
86673
|
timezone_raw_offset_ms: number;
|
|
86674
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
86675
|
+
time_zone?: (string | null) | undefined;
|
|
86577
86676
|
} | undefined;
|
|
86578
86677
|
/** Metadata for a tado° device. */
|
|
86579
86678
|
tado_metadata?: {
|
|
@@ -87350,6 +87449,20 @@ type Routes = {
|
|
|
87350
87449
|
created_at: string;
|
|
87351
87450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87352
87451
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
87452
|
+
} | {
|
|
87453
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87454
|
+
message: string;
|
|
87455
|
+
/** Date and time at which Seam created the warning. */
|
|
87456
|
+
created_at: string;
|
|
87457
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87458
|
+
warning_code: 'time_zone_unknown';
|
|
87459
|
+
} | {
|
|
87460
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87461
|
+
message: string;
|
|
87462
|
+
/** Date and time at which Seam created the warning. */
|
|
87463
|
+
created_at: string;
|
|
87464
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
87465
|
+
warning_code: 'time_zone_mismatch';
|
|
87353
87466
|
} | {
|
|
87354
87467
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
87355
87468
|
message: string;
|
|
@@ -88032,6 +88145,8 @@ type Routes = {
|
|
|
88032
88145
|
has_gateway: boolean;
|
|
88033
88146
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
88034
88147
|
timezone_raw_offset_ms: number;
|
|
88148
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
88149
|
+
time_zone?: (string | null) | undefined;
|
|
88035
88150
|
} | undefined;
|
|
88036
88151
|
/** Metadata for a tado° device. */
|
|
88037
88152
|
tado_metadata?: {
|
|
@@ -88808,6 +88923,20 @@ type Routes = {
|
|
|
88808
88923
|
created_at: string;
|
|
88809
88924
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88810
88925
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
88926
|
+
} | {
|
|
88927
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88928
|
+
message: string;
|
|
88929
|
+
/** Date and time at which Seam created the warning. */
|
|
88930
|
+
created_at: string;
|
|
88931
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88932
|
+
warning_code: 'time_zone_unknown';
|
|
88933
|
+
} | {
|
|
88934
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88935
|
+
message: string;
|
|
88936
|
+
/** Date and time at which Seam created the warning. */
|
|
88937
|
+
created_at: string;
|
|
88938
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
88939
|
+
warning_code: 'time_zone_mismatch';
|
|
88811
88940
|
} | {
|
|
88812
88941
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
88813
88942
|
message: string;
|
|
@@ -96267,6 +96396,8 @@ type Routes = {
|
|
|
96267
96396
|
has_gateway: boolean;
|
|
96268
96397
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
96269
96398
|
timezone_raw_offset_ms: number;
|
|
96399
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
96400
|
+
time_zone?: (string | null) | undefined;
|
|
96270
96401
|
} | undefined;
|
|
96271
96402
|
/** Metadata for a tado° device. */
|
|
96272
96403
|
tado_metadata?: {
|
|
@@ -97043,6 +97174,20 @@ type Routes = {
|
|
|
97043
97174
|
created_at: string;
|
|
97044
97175
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97045
97176
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
97177
|
+
} | {
|
|
97178
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97179
|
+
message: string;
|
|
97180
|
+
/** Date and time at which Seam created the warning. */
|
|
97181
|
+
created_at: string;
|
|
97182
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97183
|
+
warning_code: 'time_zone_unknown';
|
|
97184
|
+
} | {
|
|
97185
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97186
|
+
message: string;
|
|
97187
|
+
/** Date and time at which Seam created the warning. */
|
|
97188
|
+
created_at: string;
|
|
97189
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
97190
|
+
warning_code: 'time_zone_mismatch';
|
|
97046
97191
|
} | {
|
|
97047
97192
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
97048
97193
|
message: string;
|
|
@@ -97725,6 +97870,8 @@ type Routes = {
|
|
|
97725
97870
|
has_gateway: boolean;
|
|
97726
97871
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97727
97872
|
timezone_raw_offset_ms: number;
|
|
97873
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
97874
|
+
time_zone?: (string | null) | undefined;
|
|
97728
97875
|
} | undefined;
|
|
97729
97876
|
/** Metadata for a tado° device. */
|
|
97730
97877
|
tado_metadata?: {
|
|
@@ -98501,6 +98648,20 @@ type Routes = {
|
|
|
98501
98648
|
created_at: string;
|
|
98502
98649
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98503
98650
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
98651
|
+
} | {
|
|
98652
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98653
|
+
message: string;
|
|
98654
|
+
/** Date and time at which Seam created the warning. */
|
|
98655
|
+
created_at: string;
|
|
98656
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98657
|
+
warning_code: 'time_zone_unknown';
|
|
98658
|
+
} | {
|
|
98659
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98660
|
+
message: string;
|
|
98661
|
+
/** Date and time at which Seam created the warning. */
|
|
98662
|
+
created_at: string;
|
|
98663
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98664
|
+
warning_code: 'time_zone_mismatch';
|
|
98504
98665
|
} | {
|
|
98505
98666
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98506
98667
|
message: string;
|
|
@@ -113365,6 +113526,8 @@ type Routes = {
|
|
|
113365
113526
|
has_gateway: boolean;
|
|
113366
113527
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
113367
113528
|
timezone_raw_offset_ms: number;
|
|
113529
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
113530
|
+
time_zone?: (string | null) | undefined;
|
|
113368
113531
|
} | undefined;
|
|
113369
113532
|
/** Metadata for a tado° device. */
|
|
113370
113533
|
tado_metadata?: {
|
|
@@ -114141,6 +114304,20 @@ type Routes = {
|
|
|
114141
114304
|
created_at: string;
|
|
114142
114305
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114143
114306
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
114307
|
+
} | {
|
|
114308
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114309
|
+
message: string;
|
|
114310
|
+
/** Date and time at which Seam created the warning. */
|
|
114311
|
+
created_at: string;
|
|
114312
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114313
|
+
warning_code: 'time_zone_unknown';
|
|
114314
|
+
} | {
|
|
114315
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114316
|
+
message: string;
|
|
114317
|
+
/** Date and time at which Seam created the warning. */
|
|
114318
|
+
created_at: string;
|
|
114319
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
114320
|
+
warning_code: 'time_zone_mismatch';
|
|
114144
114321
|
} | {
|
|
114145
114322
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
114146
114323
|
message: string;
|
|
@@ -120831,6 +121008,8 @@ type Routes = {
|
|
|
120831
121008
|
has_gateway: boolean;
|
|
120832
121009
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
120833
121010
|
timezone_raw_offset_ms: number;
|
|
121011
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
121012
|
+
time_zone?: (string | null) | undefined;
|
|
120834
121013
|
} | undefined;
|
|
120835
121014
|
/** Metadata for a tado° device. */
|
|
120836
121015
|
tado_metadata?: {
|
|
@@ -121607,6 +121786,20 @@ type Routes = {
|
|
|
121607
121786
|
created_at: string;
|
|
121608
121787
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121609
121788
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
121789
|
+
} | {
|
|
121790
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121791
|
+
message: string;
|
|
121792
|
+
/** Date and time at which Seam created the warning. */
|
|
121793
|
+
created_at: string;
|
|
121794
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121795
|
+
warning_code: 'time_zone_unknown';
|
|
121796
|
+
} | {
|
|
121797
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121798
|
+
message: string;
|
|
121799
|
+
/** Date and time at which Seam created the warning. */
|
|
121800
|
+
created_at: string;
|
|
121801
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121802
|
+
warning_code: 'time_zone_mismatch';
|
|
121610
121803
|
} | {
|
|
121611
121804
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121612
121805
|
message: string;
|
|
@@ -125716,6 +125909,8 @@ type Routes = {
|
|
|
125716
125909
|
has_gateway: boolean;
|
|
125717
125910
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
125718
125911
|
timezone_raw_offset_ms: number;
|
|
125912
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
125913
|
+
time_zone?: (string | null) | undefined;
|
|
125719
125914
|
} | undefined;
|
|
125720
125915
|
/** Metadata for a tado° device. */
|
|
125721
125916
|
tado_metadata?: {
|
|
@@ -126492,6 +126687,20 @@ type Routes = {
|
|
|
126492
126687
|
created_at: string;
|
|
126493
126688
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126494
126689
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
126690
|
+
} | {
|
|
126691
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126692
|
+
message: string;
|
|
126693
|
+
/** Date and time at which Seam created the warning. */
|
|
126694
|
+
created_at: string;
|
|
126695
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126696
|
+
warning_code: 'time_zone_unknown';
|
|
126697
|
+
} | {
|
|
126698
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126699
|
+
message: string;
|
|
126700
|
+
/** Date and time at which Seam created the warning. */
|
|
126701
|
+
created_at: string;
|
|
126702
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
126703
|
+
warning_code: 'time_zone_mismatch';
|
|
126495
126704
|
} | {
|
|
126496
126705
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
126497
126706
|
message: string;
|
|
@@ -127174,6 +127383,8 @@ type Routes = {
|
|
|
127174
127383
|
has_gateway: boolean;
|
|
127175
127384
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
127176
127385
|
timezone_raw_offset_ms: number;
|
|
127386
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
127387
|
+
time_zone?: (string | null) | undefined;
|
|
127177
127388
|
} | undefined;
|
|
127178
127389
|
/** Metadata for a tado° device. */
|
|
127179
127390
|
tado_metadata?: {
|
|
@@ -127950,6 +128161,20 @@ type Routes = {
|
|
|
127950
128161
|
created_at: string;
|
|
127951
128162
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
127952
128163
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
128164
|
+
} | {
|
|
128165
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128166
|
+
message: string;
|
|
128167
|
+
/** Date and time at which Seam created the warning. */
|
|
128168
|
+
created_at: string;
|
|
128169
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128170
|
+
warning_code: 'time_zone_unknown';
|
|
128171
|
+
} | {
|
|
128172
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128173
|
+
message: string;
|
|
128174
|
+
/** Date and time at which Seam created the warning. */
|
|
128175
|
+
created_at: string;
|
|
128176
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128177
|
+
warning_code: 'time_zone_mismatch';
|
|
127953
128178
|
} | {
|
|
127954
128179
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
127955
128180
|
message: string;
|
|
@@ -136348,6 +136573,8 @@ type Routes = {
|
|
|
136348
136573
|
has_gateway: boolean;
|
|
136349
136574
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
136350
136575
|
timezone_raw_offset_ms: number;
|
|
136576
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
136577
|
+
time_zone?: (string | null) | undefined;
|
|
136351
136578
|
} | undefined;
|
|
136352
136579
|
/** Metadata for a tado° device. */
|
|
136353
136580
|
tado_metadata?: {
|
|
@@ -137124,6 +137351,20 @@ type Routes = {
|
|
|
137124
137351
|
created_at: string;
|
|
137125
137352
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137126
137353
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
137354
|
+
} | {
|
|
137355
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137356
|
+
message: string;
|
|
137357
|
+
/** Date and time at which Seam created the warning. */
|
|
137358
|
+
created_at: string;
|
|
137359
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137360
|
+
warning_code: 'time_zone_unknown';
|
|
137361
|
+
} | {
|
|
137362
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137363
|
+
message: string;
|
|
137364
|
+
/** Date and time at which Seam created the warning. */
|
|
137365
|
+
created_at: string;
|
|
137366
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137367
|
+
warning_code: 'time_zone_mismatch';
|
|
137127
137368
|
} | {
|
|
137128
137369
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137129
137370
|
message: string;
|
|
@@ -137808,6 +138049,8 @@ type Routes = {
|
|
|
137808
138049
|
has_gateway: boolean;
|
|
137809
138050
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
137810
138051
|
timezone_raw_offset_ms: number;
|
|
138052
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
138053
|
+
time_zone?: (string | null) | undefined;
|
|
137811
138054
|
} | undefined;
|
|
137812
138055
|
/** Metadata for a tado° device. */
|
|
137813
138056
|
tado_metadata?: {
|
|
@@ -138584,6 +138827,20 @@ type Routes = {
|
|
|
138584
138827
|
created_at: string;
|
|
138585
138828
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138586
138829
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
138830
|
+
} | {
|
|
138831
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138832
|
+
message: string;
|
|
138833
|
+
/** Date and time at which Seam created the warning. */
|
|
138834
|
+
created_at: string;
|
|
138835
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138836
|
+
warning_code: 'time_zone_unknown';
|
|
138837
|
+
} | {
|
|
138838
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138839
|
+
message: string;
|
|
138840
|
+
/** Date and time at which Seam created the warning. */
|
|
138841
|
+
created_at: string;
|
|
138842
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
138843
|
+
warning_code: 'time_zone_mismatch';
|
|
138587
138844
|
} | {
|
|
138588
138845
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
138589
138846
|
message: string;
|
|
@@ -140523,6 +140780,8 @@ type Routes = {
|
|
|
140523
140780
|
has_gateway: boolean;
|
|
140524
140781
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
140525
140782
|
timezone_raw_offset_ms: number;
|
|
140783
|
+
/** IANA time zone for the Omnitec device, used to schedule time-bound access codes at the correct local time (accounting for DST). */
|
|
140784
|
+
time_zone?: (string | null) | undefined;
|
|
140526
140785
|
} | undefined;
|
|
140527
140786
|
/** Metadata for a tado° device. */
|
|
140528
140787
|
tado_metadata?: {
|
|
@@ -141299,6 +141558,20 @@ type Routes = {
|
|
|
141299
141558
|
created_at: string;
|
|
141300
141559
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141301
141560
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
141561
|
+
} | {
|
|
141562
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141563
|
+
message: string;
|
|
141564
|
+
/** Date and time at which Seam created the warning. */
|
|
141565
|
+
created_at: string;
|
|
141566
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141567
|
+
warning_code: 'time_zone_unknown';
|
|
141568
|
+
} | {
|
|
141569
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141570
|
+
message: string;
|
|
141571
|
+
/** Date and time at which Seam created the warning. */
|
|
141572
|
+
created_at: string;
|
|
141573
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141574
|
+
warning_code: 'time_zone_mismatch';
|
|
141302
141575
|
} | {
|
|
141303
141576
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141304
141577
|
message: string;
|
|
@@ -144601,6 +144874,20 @@ type Routes = {
|
|
|
144601
144874
|
created_at: string;
|
|
144602
144875
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144603
144876
|
warning_code: 'ultraloq_time_zone_unknown';
|
|
144877
|
+
} | {
|
|
144878
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144879
|
+
message: string;
|
|
144880
|
+
/** Date and time at which Seam created the warning. */
|
|
144881
|
+
created_at: string;
|
|
144882
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144883
|
+
warning_code: 'time_zone_unknown';
|
|
144884
|
+
} | {
|
|
144885
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144886
|
+
message: string;
|
|
144887
|
+
/** Date and time at which Seam created the warning. */
|
|
144888
|
+
created_at: string;
|
|
144889
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
144890
|
+
warning_code: 'time_zone_mismatch';
|
|
144604
144891
|
} | {
|
|
144605
144892
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
144606
144893
|
message: string;
|
|
@@ -148686,15 +148973,6 @@ type Routes = {
|
|
|
148686
148973
|
created_at?: string | undefined;
|
|
148687
148974
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
148688
148975
|
error_code: 'no_space_for_access_code_on_device';
|
|
148689
|
-
} | {
|
|
148690
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
148691
|
-
message: string;
|
|
148692
|
-
/** Indicates that this is an access code error. */
|
|
148693
|
-
is_access_code_error: true;
|
|
148694
|
-
/** Date and time at which Seam created the error. */
|
|
148695
|
-
created_at?: string | undefined;
|
|
148696
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
148697
|
-
error_code: 'access_code_state_unconfirmed';
|
|
148698
148976
|
} | {
|
|
148699
148977
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
148700
148978
|
message: string;
|
|
@@ -149090,15 +149368,6 @@ type Routes = {
|
|
|
149090
149368
|
created_at?: string | undefined;
|
|
149091
149369
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
149092
149370
|
error_code: 'no_space_for_access_code_on_device';
|
|
149093
|
-
} | {
|
|
149094
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
149095
|
-
message: string;
|
|
149096
|
-
/** Indicates that this is an access code error. */
|
|
149097
|
-
is_access_code_error: true;
|
|
149098
|
-
/** Date and time at which Seam created the error. */
|
|
149099
|
-
created_at?: string | undefined;
|
|
149100
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
149101
|
-
error_code: 'access_code_state_unconfirmed';
|
|
149102
149371
|
} | {
|
|
149103
149372
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
149104
149373
|
message: string;
|