@seamapi/types 1.942.0 → 1.943.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14658,6 +14658,32 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
14658
14658
  }>, z.ZodObject<{
14659
14659
  message: z.ZodString;
14660
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;
14661
14687
  } & {
14662
14688
  warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
14663
14689
  }, "strip", z.ZodTypeAny, {
@@ -15724,12 +15750,14 @@ declare const device: z.ZodObject<{
15724
15750
  lock_mac: z.ZodString;
15725
15751
  has_gateway: z.ZodBoolean;
15726
15752
  timezone_raw_offset_ms: z.ZodNumber;
15753
+ time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15727
15754
  }, "strip", z.ZodTypeAny, {
15728
15755
  lock_id: number;
15729
15756
  lock_name: string;
15730
15757
  has_gateway: boolean;
15731
15758
  timezone_raw_offset_ms: number;
15732
15759
  lock_mac: string;
15760
+ time_zone?: string | null | undefined;
15733
15761
  lock_alias?: string | undefined;
15734
15762
  }, {
15735
15763
  lock_id: number;
@@ -15737,6 +15765,7 @@ declare const device: z.ZodObject<{
15737
15765
  has_gateway: boolean;
15738
15766
  timezone_raw_offset_ms: number;
15739
15767
  lock_mac: string;
15768
+ time_zone?: string | null | undefined;
15740
15769
  lock_alias?: string | undefined;
15741
15770
  }>>;
15742
15771
  tado_metadata: z.ZodOptional<z.ZodObject<{
@@ -16135,6 +16164,7 @@ declare const device: z.ZodObject<{
16135
16164
  has_gateway: boolean;
16136
16165
  timezone_raw_offset_ms: number;
16137
16166
  lock_mac: string;
16167
+ time_zone?: string | null | undefined;
16138
16168
  lock_alias?: string | undefined;
16139
16169
  } | undefined;
16140
16170
  tado_metadata?: {
@@ -16429,6 +16459,7 @@ declare const device: z.ZodObject<{
16429
16459
  has_gateway: boolean;
16430
16460
  timezone_raw_offset_ms: number;
16431
16461
  lock_mac: string;
16462
+ time_zone?: string | null | undefined;
16432
16463
  lock_alias?: string | undefined;
16433
16464
  } | undefined;
16434
16465
  tado_metadata?: {
@@ -17982,6 +18013,32 @@ declare const device: z.ZodObject<{
17982
18013
  }>, z.ZodObject<{
17983
18014
  message: z.ZodString;
17984
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;
17985
18042
  } & {
17986
18043
  warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
17987
18044
  }, "strip", z.ZodTypeAny, {
@@ -18328,6 +18385,14 @@ declare const device: z.ZodObject<{
18328
18385
  message: string;
18329
18386
  created_at: string;
18330
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";
18331
18396
  } | {
18332
18397
  message: string;
18333
18398
  created_at: string;
@@ -18652,6 +18717,7 @@ declare const device: z.ZodObject<{
18652
18717
  has_gateway: boolean;
18653
18718
  timezone_raw_offset_ms: number;
18654
18719
  lock_mac: string;
18720
+ time_zone?: string | null | undefined;
18655
18721
  lock_alias?: string | undefined;
18656
18722
  } | undefined;
18657
18723
  tado_metadata?: {
@@ -19119,6 +19185,14 @@ declare const device: z.ZodObject<{
19119
19185
  message: string;
19120
19186
  created_at: string;
19121
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";
19122
19196
  } | {
19123
19197
  message: string;
19124
19198
  created_at: string;
@@ -19443,6 +19517,7 @@ declare const device: z.ZodObject<{
19443
19517
  has_gateway: boolean;
19444
19518
  timezone_raw_offset_ms: number;
19445
19519
  lock_mac: string;
19520
+ time_zone?: string | null | undefined;
19446
19521
  lock_alias?: string | undefined;
19447
19522
  } | undefined;
19448
19523
  tado_metadata?: {
@@ -20828,12 +20903,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
20828
20903
  lock_mac: z.ZodString;
20829
20904
  has_gateway: z.ZodBoolean;
20830
20905
  timezone_raw_offset_ms: z.ZodNumber;
20906
+ time_zone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20831
20907
  }, "strip", z.ZodTypeAny, {
20832
20908
  lock_id: number;
20833
20909
  lock_name: string;
20834
20910
  has_gateway: boolean;
20835
20911
  timezone_raw_offset_ms: number;
20836
20912
  lock_mac: string;
20913
+ time_zone?: string | null | undefined;
20837
20914
  lock_alias?: string | undefined;
20838
20915
  }, {
20839
20916
  lock_id: number;
@@ -20841,6 +20918,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
20841
20918
  has_gateway: boolean;
20842
20919
  timezone_raw_offset_ms: number;
20843
20920
  lock_mac: string;
20921
+ time_zone?: string | null | undefined;
20844
20922
  lock_alias?: string | undefined;
20845
20923
  }>>;
20846
20924
  tado_metadata: z.ZodOptional<z.ZodObject<{
@@ -21239,6 +21317,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21239
21317
  has_gateway: boolean;
21240
21318
  timezone_raw_offset_ms: number;
21241
21319
  lock_mac: string;
21320
+ time_zone?: string | null | undefined;
21242
21321
  lock_alias?: string | undefined;
21243
21322
  } | undefined;
21244
21323
  tado_metadata?: {
@@ -21533,6 +21612,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21533
21612
  has_gateway: boolean;
21534
21613
  timezone_raw_offset_ms: number;
21535
21614
  lock_mac: string;
21615
+ time_zone?: string | null | undefined;
21536
21616
  lock_alias?: string | undefined;
21537
21617
  } | undefined;
21538
21618
  tado_metadata?: {
@@ -23086,6 +23166,32 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23086
23166
  }>, z.ZodObject<{
23087
23167
  message: z.ZodString;
23088
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;
23089
23195
  } & {
23090
23196
  warning_code: z.ZodLiteral<"two_n_device_missing_timezone">;
23091
23197
  }, "strip", z.ZodTypeAny, {
@@ -23588,6 +23694,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23588
23694
  message: string;
23589
23695
  created_at: string;
23590
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";
23591
23705
  } | {
23592
23706
  message: string;
23593
23707
  created_at: string;
@@ -23869,6 +23983,14 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23869
23983
  message: string;
23870
23984
  created_at: string;
23871
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";
23872
23994
  } | {
23873
23995
  message: string;
23874
23996
  created_at: string;
@@ -42168,6 +42290,8 @@ type Routes = {
42168
42290
  has_gateway: boolean;
42169
42291
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
42170
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;
42171
42295
  } | undefined;
42172
42296
  /** Metadata for a tado° device. */
42173
42297
  tado_metadata?: {
@@ -42944,6 +43068,20 @@ type Routes = {
42944
43068
  created_at: string;
42945
43069
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
42946
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';
42947
43085
  } | {
42948
43086
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
42949
43087
  message: string;
@@ -48883,6 +49021,8 @@ type Routes = {
48883
49021
  has_gateway: boolean;
48884
49022
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
48885
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;
48886
49026
  } | undefined;
48887
49027
  /** Metadata for a tado° device. */
48888
49028
  tado_metadata?: {
@@ -49659,6 +49799,20 @@ type Routes = {
49659
49799
  created_at: string;
49660
49800
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
49661
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';
49662
49816
  } | {
49663
49817
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
49664
49818
  message: string;
@@ -71370,6 +71524,8 @@ type Routes = {
71370
71524
  has_gateway: boolean;
71371
71525
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
71372
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;
71373
71529
  } | undefined;
71374
71530
  /** Metadata for a tado° device. */
71375
71531
  tado_metadata?: {
@@ -72146,6 +72302,20 @@ type Routes = {
72146
72302
  created_at: string;
72147
72303
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
72148
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';
72149
72319
  } | {
72150
72320
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
72151
72321
  message: string;
@@ -72879,6 +73049,8 @@ type Routes = {
72879
73049
  has_gateway: boolean;
72880
73050
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
72881
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;
72882
73054
  } | undefined;
72883
73055
  /** Metadata for a tado° device. */
72884
73056
  tado_metadata?: {
@@ -73655,6 +73827,20 @@ type Routes = {
73655
73827
  created_at: string;
73656
73828
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
73657
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';
73658
73844
  } | {
73659
73845
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
73660
73846
  message: string;
@@ -74290,6 +74476,20 @@ type Routes = {
74290
74476
  created_at: string;
74291
74477
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74292
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';
74293
74493
  } | {
74294
74494
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74295
74495
  message: string;
@@ -74827,6 +75027,20 @@ type Routes = {
74827
75027
  created_at: string;
74828
75028
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
74829
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';
74830
75044
  } | {
74831
75045
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
74832
75046
  message: string;
@@ -83457,6 +83671,8 @@ type Routes = {
83457
83671
  has_gateway: boolean;
83458
83672
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
83459
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;
83460
83676
  } | undefined;
83461
83677
  /** Metadata for a tado° device. */
83462
83678
  tado_metadata?: {
@@ -84233,6 +84449,20 @@ type Routes = {
84233
84449
  created_at: string;
84234
84450
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
84235
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';
84236
84466
  } | {
84237
84467
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
84238
84468
  message: string;
@@ -84916,6 +85146,8 @@ type Routes = {
84916
85146
  has_gateway: boolean;
84917
85147
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
84918
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;
84919
85151
  } | undefined;
84920
85152
  /** Metadata for a tado° device. */
84921
85153
  tado_metadata?: {
@@ -85692,6 +85924,20 @@ type Routes = {
85692
85924
  created_at: string;
85693
85925
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
85694
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';
85695
85941
  } | {
85696
85942
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
85697
85943
  message: string;
@@ -86425,6 +86671,8 @@ type Routes = {
86425
86671
  has_gateway: boolean;
86426
86672
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
86427
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;
86428
86676
  } | undefined;
86429
86677
  /** Metadata for a tado° device. */
86430
86678
  tado_metadata?: {
@@ -87201,6 +87449,20 @@ type Routes = {
87201
87449
  created_at: string;
87202
87450
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
87203
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';
87204
87466
  } | {
87205
87467
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
87206
87468
  message: string;
@@ -87883,6 +88145,8 @@ type Routes = {
87883
88145
  has_gateway: boolean;
87884
88146
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
87885
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;
87886
88150
  } | undefined;
87887
88151
  /** Metadata for a tado° device. */
87888
88152
  tado_metadata?: {
@@ -88659,6 +88923,20 @@ type Routes = {
88659
88923
  created_at: string;
88660
88924
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
88661
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';
88662
88940
  } | {
88663
88941
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
88664
88942
  message: string;
@@ -96118,6 +96396,8 @@ type Routes = {
96118
96396
  has_gateway: boolean;
96119
96397
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
96120
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;
96121
96401
  } | undefined;
96122
96402
  /** Metadata for a tado° device. */
96123
96403
  tado_metadata?: {
@@ -96894,6 +97174,20 @@ type Routes = {
96894
97174
  created_at: string;
96895
97175
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
96896
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';
96897
97191
  } | {
96898
97192
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
96899
97193
  message: string;
@@ -97576,6 +97870,8 @@ type Routes = {
97576
97870
  has_gateway: boolean;
97577
97871
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
97578
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;
97579
97875
  } | undefined;
97580
97876
  /** Metadata for a tado° device. */
97581
97877
  tado_metadata?: {
@@ -98352,6 +98648,20 @@ type Routes = {
98352
98648
  created_at: string;
98353
98649
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
98354
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';
98355
98665
  } | {
98356
98666
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
98357
98667
  message: string;
@@ -113216,6 +113526,8 @@ type Routes = {
113216
113526
  has_gateway: boolean;
113217
113527
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
113218
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;
113219
113531
  } | undefined;
113220
113532
  /** Metadata for a tado° device. */
113221
113533
  tado_metadata?: {
@@ -113992,6 +114304,20 @@ type Routes = {
113992
114304
  created_at: string;
113993
114305
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
113994
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';
113995
114321
  } | {
113996
114322
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
113997
114323
  message: string;
@@ -120682,6 +121008,8 @@ type Routes = {
120682
121008
  has_gateway: boolean;
120683
121009
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
120684
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;
120685
121013
  } | undefined;
120686
121014
  /** Metadata for a tado° device. */
120687
121015
  tado_metadata?: {
@@ -121458,6 +121786,20 @@ type Routes = {
121458
121786
  created_at: string;
121459
121787
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
121460
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';
121461
121803
  } | {
121462
121804
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
121463
121805
  message: string;
@@ -125567,6 +125909,8 @@ type Routes = {
125567
125909
  has_gateway: boolean;
125568
125910
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
125569
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;
125570
125914
  } | undefined;
125571
125915
  /** Metadata for a tado° device. */
125572
125916
  tado_metadata?: {
@@ -126343,6 +126687,20 @@ type Routes = {
126343
126687
  created_at: string;
126344
126688
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
126345
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';
126346
126704
  } | {
126347
126705
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
126348
126706
  message: string;
@@ -127025,6 +127383,8 @@ type Routes = {
127025
127383
  has_gateway: boolean;
127026
127384
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
127027
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;
127028
127388
  } | undefined;
127029
127389
  /** Metadata for a tado° device. */
127030
127390
  tado_metadata?: {
@@ -127801,6 +128161,20 @@ type Routes = {
127801
128161
  created_at: string;
127802
128162
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
127803
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';
127804
128178
  } | {
127805
128179
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
127806
128180
  message: string;
@@ -136199,6 +136573,8 @@ type Routes = {
136199
136573
  has_gateway: boolean;
136200
136574
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
136201
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;
136202
136578
  } | undefined;
136203
136579
  /** Metadata for a tado° device. */
136204
136580
  tado_metadata?: {
@@ -136975,6 +137351,20 @@ type Routes = {
136975
137351
  created_at: string;
136976
137352
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
136977
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';
136978
137368
  } | {
136979
137369
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
136980
137370
  message: string;
@@ -137659,6 +138049,8 @@ type Routes = {
137659
138049
  has_gateway: boolean;
137660
138050
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
137661
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;
137662
138054
  } | undefined;
137663
138055
  /** Metadata for a tado° device. */
137664
138056
  tado_metadata?: {
@@ -138435,6 +138827,20 @@ type Routes = {
138435
138827
  created_at: string;
138436
138828
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
138437
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';
138438
138844
  } | {
138439
138845
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
138440
138846
  message: string;
@@ -140374,6 +140780,8 @@ type Routes = {
140374
140780
  has_gateway: boolean;
140375
140781
  /** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
140376
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;
140377
140785
  } | undefined;
140378
140786
  /** Metadata for a tado° device. */
140379
140787
  tado_metadata?: {
@@ -141150,6 +141558,20 @@ type Routes = {
141150
141558
  created_at: string;
141151
141559
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
141152
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';
141153
141575
  } | {
141154
141576
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
141155
141577
  message: string;
@@ -144452,6 +144874,20 @@ type Routes = {
144452
144874
  created_at: string;
144453
144875
  /** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
144454
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';
144455
144891
  } | {
144456
144892
  /** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
144457
144893
  message: string;