@seamapi/types 1.857.0 → 1.859.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 +442 -111
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -489
- package/dist/index.cjs +442 -111
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -129
- package/lib/seam/connect/models/access-codes/managed-access-code.js +0 -22
- 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 -47
- package/lib/seam/connect/models/batch.d.ts +0 -144
- package/lib/seam/connect/models/devices/device-metadata.d.ts +0 -5
- package/lib/seam/connect/models/devices/device-metadata.js +0 -4
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -5
- package/lib/seam/connect/openapi.js +442 -98
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +5 -210
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +0 -24
- package/src/lib/seam/connect/models/devices/device-metadata.ts +0 -6
- package/src/lib/seam/connect/openapi.ts +443 -117
- package/src/lib/seam/connect/route-types.ts +436 -232
|
@@ -1689,15 +1689,6 @@ export type Routes = {
|
|
|
1689
1689
|
created_at?: string | undefined;
|
|
1690
1690
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1691
1691
|
error_code: 'august_lock_invalid_code_length';
|
|
1692
|
-
} | {
|
|
1693
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1694
|
-
message: string;
|
|
1695
|
-
/** Indicates that this is an access code error. */
|
|
1696
|
-
is_access_code_error: true;
|
|
1697
|
-
/** Date and time at which Seam created the error. */
|
|
1698
|
-
created_at?: string | undefined;
|
|
1699
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1700
|
-
error_code: 'august_device_programming_delay';
|
|
1701
1692
|
} | {
|
|
1702
1693
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1703
1694
|
message: string;
|
|
@@ -1978,13 +1969,6 @@ export type Routes = {
|
|
|
1978
1969
|
created_at?: string | undefined;
|
|
1979
1970
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1980
1971
|
warning_code: 'third_party_integration_detected';
|
|
1981
|
-
} | {
|
|
1982
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1983
|
-
message: string;
|
|
1984
|
-
/** Date and time at which Seam created the warning. */
|
|
1985
|
-
created_at?: string | undefined;
|
|
1986
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1987
|
-
warning_code: 'august_device_programming_delay';
|
|
1988
1972
|
} | {
|
|
1989
1973
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1990
1974
|
message: string;
|
|
@@ -2330,15 +2314,6 @@ export type Routes = {
|
|
|
2330
2314
|
created_at?: string | undefined;
|
|
2331
2315
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2332
2316
|
error_code: 'august_lock_invalid_code_length';
|
|
2333
|
-
} | {
|
|
2334
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2335
|
-
message: string;
|
|
2336
|
-
/** Indicates that this is an access code error. */
|
|
2337
|
-
is_access_code_error: true;
|
|
2338
|
-
/** Date and time at which Seam created the error. */
|
|
2339
|
-
created_at?: string | undefined;
|
|
2340
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2341
|
-
error_code: 'august_device_programming_delay';
|
|
2342
2317
|
} | {
|
|
2343
2318
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2344
2319
|
message: string;
|
|
@@ -2619,13 +2594,6 @@ export type Routes = {
|
|
|
2619
2594
|
created_at?: string | undefined;
|
|
2620
2595
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2621
2596
|
warning_code: 'third_party_integration_detected';
|
|
2622
|
-
} | {
|
|
2623
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2624
|
-
message: string;
|
|
2625
|
-
/** Date and time at which Seam created the warning. */
|
|
2626
|
-
created_at?: string | undefined;
|
|
2627
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2628
|
-
warning_code: 'august_device_programming_delay';
|
|
2629
2597
|
} | {
|
|
2630
2598
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2631
2599
|
message: string;
|
|
@@ -4491,15 +4459,6 @@ export type Routes = {
|
|
|
4491
4459
|
created_at?: string | undefined;
|
|
4492
4460
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4493
4461
|
error_code: 'august_lock_invalid_code_length';
|
|
4494
|
-
} | {
|
|
4495
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4496
|
-
message: string;
|
|
4497
|
-
/** Indicates that this is an access code error. */
|
|
4498
|
-
is_access_code_error: true;
|
|
4499
|
-
/** Date and time at which Seam created the error. */
|
|
4500
|
-
created_at?: string | undefined;
|
|
4501
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4502
|
-
error_code: 'august_device_programming_delay';
|
|
4503
4462
|
} | {
|
|
4504
4463
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4505
4464
|
message: string;
|
|
@@ -4780,13 +4739,6 @@ export type Routes = {
|
|
|
4780
4739
|
created_at?: string | undefined;
|
|
4781
4740
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4782
4741
|
warning_code: 'third_party_integration_detected';
|
|
4783
|
-
} | {
|
|
4784
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4785
|
-
message: string;
|
|
4786
|
-
/** Date and time at which Seam created the warning. */
|
|
4787
|
-
created_at?: string | undefined;
|
|
4788
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4789
|
-
warning_code: 'august_device_programming_delay';
|
|
4790
4742
|
} | {
|
|
4791
4743
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4792
4744
|
message: string;
|
|
@@ -5178,15 +5130,6 @@ export type Routes = {
|
|
|
5178
5130
|
created_at?: string | undefined;
|
|
5179
5131
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5180
5132
|
error_code: 'august_lock_invalid_code_length';
|
|
5181
|
-
} | {
|
|
5182
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5183
|
-
message: string;
|
|
5184
|
-
/** Indicates that this is an access code error. */
|
|
5185
|
-
is_access_code_error: true;
|
|
5186
|
-
/** Date and time at which Seam created the error. */
|
|
5187
|
-
created_at?: string | undefined;
|
|
5188
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5189
|
-
error_code: 'august_device_programming_delay';
|
|
5190
5133
|
} | {
|
|
5191
5134
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5192
5135
|
message: string;
|
|
@@ -5467,13 +5410,6 @@ export type Routes = {
|
|
|
5467
5410
|
created_at?: string | undefined;
|
|
5468
5411
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5469
5412
|
warning_code: 'third_party_integration_detected';
|
|
5470
|
-
} | {
|
|
5471
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5472
|
-
message: string;
|
|
5473
|
-
/** Date and time at which Seam created the warning. */
|
|
5474
|
-
created_at?: string | undefined;
|
|
5475
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5476
|
-
warning_code: 'august_device_programming_delay';
|
|
5477
5413
|
} | {
|
|
5478
5414
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5479
5415
|
message: string;
|
|
@@ -5808,15 +5744,6 @@ export type Routes = {
|
|
|
5808
5744
|
created_at?: string | undefined;
|
|
5809
5745
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5810
5746
|
error_code: 'august_lock_invalid_code_length';
|
|
5811
|
-
} | {
|
|
5812
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5813
|
-
message: string;
|
|
5814
|
-
/** Indicates that this is an access code error. */
|
|
5815
|
-
is_access_code_error: true;
|
|
5816
|
-
/** Date and time at which Seam created the error. */
|
|
5817
|
-
created_at?: string | undefined;
|
|
5818
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5819
|
-
error_code: 'august_device_programming_delay';
|
|
5820
5747
|
} | {
|
|
5821
5748
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5822
5749
|
message: string;
|
|
@@ -6097,13 +6024,6 @@ export type Routes = {
|
|
|
6097
6024
|
created_at?: string | undefined;
|
|
6098
6025
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6099
6026
|
warning_code: 'third_party_integration_detected';
|
|
6100
|
-
} | {
|
|
6101
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6102
|
-
message: string;
|
|
6103
|
-
/** Date and time at which Seam created the warning. */
|
|
6104
|
-
created_at?: string | undefined;
|
|
6105
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6106
|
-
warning_code: 'august_device_programming_delay';
|
|
6107
6027
|
} | {
|
|
6108
6028
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6109
6029
|
message: string;
|
|
@@ -6415,15 +6335,6 @@ export type Routes = {
|
|
|
6415
6335
|
created_at?: string | undefined;
|
|
6416
6336
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6417
6337
|
error_code: 'august_lock_invalid_code_length';
|
|
6418
|
-
} | {
|
|
6419
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6420
|
-
message: string;
|
|
6421
|
-
/** Indicates that this is an access code error. */
|
|
6422
|
-
is_access_code_error: true;
|
|
6423
|
-
/** Date and time at which Seam created the error. */
|
|
6424
|
-
created_at?: string | undefined;
|
|
6425
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6426
|
-
error_code: 'august_device_programming_delay';
|
|
6427
6338
|
} | {
|
|
6428
6339
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6429
6340
|
message: string;
|
|
@@ -6704,13 +6615,6 @@ export type Routes = {
|
|
|
6704
6615
|
created_at?: string | undefined;
|
|
6705
6616
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6706
6617
|
warning_code: 'third_party_integration_detected';
|
|
6707
|
-
} | {
|
|
6708
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6709
|
-
message: string;
|
|
6710
|
-
/** Date and time at which Seam created the warning. */
|
|
6711
|
-
created_at?: string | undefined;
|
|
6712
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6713
|
-
warning_code: 'august_device_programming_delay';
|
|
6714
6618
|
} | {
|
|
6715
6619
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6716
6620
|
message: string;
|
|
@@ -7057,15 +6961,6 @@ export type Routes = {
|
|
|
7057
6961
|
created_at?: string | undefined;
|
|
7058
6962
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7059
6963
|
error_code: 'august_lock_invalid_code_length';
|
|
7060
|
-
} | {
|
|
7061
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7062
|
-
message: string;
|
|
7063
|
-
/** Indicates that this is an access code error. */
|
|
7064
|
-
is_access_code_error: true;
|
|
7065
|
-
/** Date and time at which Seam created the error. */
|
|
7066
|
-
created_at?: string | undefined;
|
|
7067
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7068
|
-
error_code: 'august_device_programming_delay';
|
|
7069
6964
|
} | {
|
|
7070
6965
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7071
6966
|
message: string;
|
|
@@ -7346,13 +7241,6 @@ export type Routes = {
|
|
|
7346
7241
|
created_at?: string | undefined;
|
|
7347
7242
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7348
7243
|
warning_code: 'third_party_integration_detected';
|
|
7349
|
-
} | {
|
|
7350
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7351
|
-
message: string;
|
|
7352
|
-
/** Date and time at which Seam created the warning. */
|
|
7353
|
-
created_at?: string | undefined;
|
|
7354
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7355
|
-
warning_code: 'august_device_programming_delay';
|
|
7356
7244
|
} | {
|
|
7357
7245
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7358
7246
|
message: string;
|
|
@@ -9129,15 +9017,6 @@ export type Routes = {
|
|
|
9129
9017
|
created_at?: string | undefined;
|
|
9130
9018
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9131
9019
|
error_code: 'august_lock_invalid_code_length';
|
|
9132
|
-
} | {
|
|
9133
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9134
|
-
message: string;
|
|
9135
|
-
/** Indicates that this is an access code error. */
|
|
9136
|
-
is_access_code_error: true;
|
|
9137
|
-
/** Date and time at which Seam created the error. */
|
|
9138
|
-
created_at?: string | undefined;
|
|
9139
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9140
|
-
error_code: 'august_device_programming_delay';
|
|
9141
9020
|
} | {
|
|
9142
9021
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9143
9022
|
message: string;
|
|
@@ -9418,13 +9297,6 @@ export type Routes = {
|
|
|
9418
9297
|
created_at?: string | undefined;
|
|
9419
9298
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9420
9299
|
warning_code: 'third_party_integration_detected';
|
|
9421
|
-
} | {
|
|
9422
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9423
|
-
message: string;
|
|
9424
|
-
/** Date and time at which Seam created the warning. */
|
|
9425
|
-
created_at?: string | undefined;
|
|
9426
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9427
|
-
warning_code: 'august_device_programming_delay';
|
|
9428
9300
|
} | {
|
|
9429
9301
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9430
9302
|
message: string;
|
|
@@ -9657,15 +9529,6 @@ export type Routes = {
|
|
|
9657
9529
|
created_at?: string | undefined;
|
|
9658
9530
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9659
9531
|
error_code: 'august_lock_invalid_code_length';
|
|
9660
|
-
} | {
|
|
9661
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9662
|
-
message: string;
|
|
9663
|
-
/** Indicates that this is an access code error. */
|
|
9664
|
-
is_access_code_error: true;
|
|
9665
|
-
/** Date and time at which Seam created the error. */
|
|
9666
|
-
created_at?: string | undefined;
|
|
9667
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9668
|
-
error_code: 'august_device_programming_delay';
|
|
9669
9532
|
} | {
|
|
9670
9533
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9671
9534
|
message: string;
|
|
@@ -9946,13 +9809,6 @@ export type Routes = {
|
|
|
9946
9809
|
created_at?: string | undefined;
|
|
9947
9810
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9948
9811
|
warning_code: 'third_party_integration_detected';
|
|
9949
|
-
} | {
|
|
9950
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9951
|
-
message: string;
|
|
9952
|
-
/** Date and time at which Seam created the warning. */
|
|
9953
|
-
created_at?: string | undefined;
|
|
9954
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9955
|
-
warning_code: 'august_device_programming_delay';
|
|
9956
9812
|
} | {
|
|
9957
9813
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9958
9814
|
message: string;
|
|
@@ -12706,8 +12562,6 @@ export type Routes = {
|
|
|
12706
12562
|
has_gateway: boolean;
|
|
12707
12563
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
12708
12564
|
timezone_raw_offset_ms: number;
|
|
12709
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
12710
|
-
time_zone?: string | undefined;
|
|
12711
12565
|
} | undefined;
|
|
12712
12566
|
/** Metadata for a tado° device. */
|
|
12713
12567
|
tado_metadata?: {
|
|
@@ -17388,8 +17242,6 @@ export type Routes = {
|
|
|
17388
17242
|
has_gateway: boolean;
|
|
17389
17243
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
17390
17244
|
timezone_raw_offset_ms: number;
|
|
17391
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
17392
|
-
time_zone?: string | undefined;
|
|
17393
17245
|
} | undefined;
|
|
17394
17246
|
/** Metadata for a tado° device. */
|
|
17395
17247
|
tado_metadata?: {
|
|
@@ -36781,8 +36633,6 @@ export type Routes = {
|
|
|
36781
36633
|
has_gateway: boolean;
|
|
36782
36634
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
36783
36635
|
timezone_raw_offset_ms: number;
|
|
36784
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
36785
|
-
time_zone?: string | undefined;
|
|
36786
36636
|
} | undefined;
|
|
36787
36637
|
/** Metadata for a tado° device. */
|
|
36788
36638
|
tado_metadata?: {
|
|
@@ -38180,8 +38030,6 @@ export type Routes = {
|
|
|
38180
38030
|
has_gateway: boolean;
|
|
38181
38031
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
38182
38032
|
timezone_raw_offset_ms: number;
|
|
38183
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
38184
|
-
time_zone?: string | undefined;
|
|
38185
38033
|
} | undefined;
|
|
38186
38034
|
/** Metadata for a tado° device. */
|
|
38187
38035
|
tado_metadata?: {
|
|
@@ -39050,6 +38898,11 @@ export type Routes = {
|
|
|
39050
38898
|
/** IANA timezone for the Schlage device */
|
|
39051
38899
|
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
39052
38900
|
} | undefined;
|
|
38901
|
+
/** Omnitec-specific metadata to update */
|
|
38902
|
+
omnitec_metadata?: {
|
|
38903
|
+
/** IANA timezone for the Omnitec device */
|
|
38904
|
+
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
38905
|
+
} | undefined;
|
|
39053
38906
|
}[];
|
|
39054
38907
|
};
|
|
39055
38908
|
formData: {};
|
|
@@ -47961,8 +47814,6 @@ export type Routes = {
|
|
|
47961
47814
|
has_gateway: boolean;
|
|
47962
47815
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
47963
47816
|
timezone_raw_offset_ms: number;
|
|
47964
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
47965
|
-
time_zone?: string | undefined;
|
|
47966
47817
|
} | undefined;
|
|
47967
47818
|
/** Metadata for a tado° device. */
|
|
47968
47819
|
tado_metadata?: {
|
|
@@ -49310,8 +49161,6 @@ export type Routes = {
|
|
|
49310
49161
|
has_gateway: boolean;
|
|
49311
49162
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
49312
49163
|
timezone_raw_offset_ms: number;
|
|
49313
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
49314
|
-
time_zone?: string | undefined;
|
|
49315
49164
|
} | undefined;
|
|
49316
49165
|
/** Metadata for a tado° device. */
|
|
49317
49166
|
tado_metadata?: {
|
|
@@ -50709,8 +50558,6 @@ export type Routes = {
|
|
|
50709
50558
|
has_gateway: boolean;
|
|
50710
50559
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
50711
50560
|
timezone_raw_offset_ms: number;
|
|
50712
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
50713
|
-
time_zone?: string | undefined;
|
|
50714
50561
|
} | undefined;
|
|
50715
50562
|
/** Metadata for a tado° device. */
|
|
50716
50563
|
tado_metadata?: {
|
|
@@ -52057,8 +51904,6 @@ export type Routes = {
|
|
|
52057
51904
|
has_gateway: boolean;
|
|
52058
51905
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
52059
51906
|
timezone_raw_offset_ms: number;
|
|
52060
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
52061
|
-
time_zone?: string | undefined;
|
|
52062
51907
|
} | undefined;
|
|
52063
51908
|
/** Metadata for a tado° device. */
|
|
52064
51909
|
tado_metadata?: {
|
|
@@ -59518,8 +59363,6 @@ export type Routes = {
|
|
|
59518
59363
|
has_gateway: boolean;
|
|
59519
59364
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
59520
59365
|
timezone_raw_offset_ms: number;
|
|
59521
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
59522
|
-
time_zone?: string | undefined;
|
|
59523
59366
|
} | undefined;
|
|
59524
59367
|
/** Metadata for a tado° device. */
|
|
59525
59368
|
tado_metadata?: {
|
|
@@ -60866,8 +60709,6 @@ export type Routes = {
|
|
|
60866
60709
|
has_gateway: boolean;
|
|
60867
60710
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
60868
60711
|
timezone_raw_offset_ms: number;
|
|
60869
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
60870
|
-
time_zone?: string | undefined;
|
|
60871
60712
|
} | undefined;
|
|
60872
60713
|
/** Metadata for a tado° device. */
|
|
60873
60714
|
tado_metadata?: {
|
|
@@ -75131,8 +74972,6 @@ export type Routes = {
|
|
|
75131
74972
|
has_gateway: boolean;
|
|
75132
74973
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
75133
74974
|
timezone_raw_offset_ms: number;
|
|
75134
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
75135
|
-
time_zone?: string | undefined;
|
|
75136
74975
|
} | undefined;
|
|
75137
74976
|
/** Metadata for a tado° device. */
|
|
75138
74977
|
tado_metadata?: {
|
|
@@ -81909,8 +81748,6 @@ export type Routes = {
|
|
|
81909
81748
|
has_gateway: boolean;
|
|
81910
81749
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
81911
81750
|
timezone_raw_offset_ms: number;
|
|
81912
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
81913
|
-
time_zone?: string | undefined;
|
|
81914
81751
|
} | undefined;
|
|
81915
81752
|
/** Metadata for a tado° device. */
|
|
81916
81753
|
tado_metadata?: {
|
|
@@ -86352,8 +86189,6 @@ export type Routes = {
|
|
|
86352
86189
|
has_gateway: boolean;
|
|
86353
86190
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
86354
86191
|
timezone_raw_offset_ms: number;
|
|
86355
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
86356
|
-
time_zone?: string | undefined;
|
|
86357
86192
|
} | undefined;
|
|
86358
86193
|
/** Metadata for a tado° device. */
|
|
86359
86194
|
tado_metadata?: {
|
|
@@ -87700,8 +87535,6 @@ export type Routes = {
|
|
|
87700
87535
|
has_gateway: boolean;
|
|
87701
87536
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
87702
87537
|
timezone_raw_offset_ms: number;
|
|
87703
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
87704
|
-
time_zone?: string | undefined;
|
|
87705
87538
|
} | undefined;
|
|
87706
87539
|
/** Metadata for a tado° device. */
|
|
87707
87540
|
tado_metadata?: {
|
|
@@ -96058,8 +95891,6 @@ export type Routes = {
|
|
|
96058
95891
|
has_gateway: boolean;
|
|
96059
95892
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
96060
95893
|
timezone_raw_offset_ms: number;
|
|
96061
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
96062
|
-
time_zone?: string | undefined;
|
|
96063
95894
|
} | undefined;
|
|
96064
95895
|
/** Metadata for a tado° device. */
|
|
96065
95896
|
tado_metadata?: {
|
|
@@ -97408,8 +97239,6 @@ export type Routes = {
|
|
|
97408
97239
|
has_gateway: boolean;
|
|
97409
97240
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
97410
97241
|
timezone_raw_offset_ms: number;
|
|
97411
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
97412
|
-
time_zone?: string | undefined;
|
|
97413
97242
|
} | undefined;
|
|
97414
97243
|
/** Metadata for a tado° device. */
|
|
97415
97244
|
tado_metadata?: {
|
|
@@ -99945,8 +99774,6 @@ export type Routes = {
|
|
|
99945
99774
|
has_gateway: boolean;
|
|
99946
99775
|
/** Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST. */
|
|
99947
99776
|
timezone_raw_offset_ms: number;
|
|
99948
|
-
/** IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment. */
|
|
99949
|
-
time_zone?: string | undefined;
|
|
99950
99777
|
} | undefined;
|
|
99951
99778
|
/** Metadata for a tado° device. */
|
|
99952
99779
|
tado_metadata?: {
|
|
@@ -107570,15 +107397,6 @@ export type Routes = {
|
|
|
107570
107397
|
created_at?: string | undefined;
|
|
107571
107398
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107572
107399
|
error_code: 'august_lock_invalid_code_length';
|
|
107573
|
-
} | {
|
|
107574
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107575
|
-
message: string;
|
|
107576
|
-
/** Indicates that this is an access code error. */
|
|
107577
|
-
is_access_code_error: true;
|
|
107578
|
-
/** Date and time at which Seam created the error. */
|
|
107579
|
-
created_at?: string | undefined;
|
|
107580
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107581
|
-
error_code: 'august_device_programming_delay';
|
|
107582
107400
|
} | {
|
|
107583
107401
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107584
107402
|
message: string;
|
|
@@ -107859,13 +107677,6 @@ export type Routes = {
|
|
|
107859
107677
|
created_at?: string | undefined;
|
|
107860
107678
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107861
107679
|
warning_code: 'third_party_integration_detected';
|
|
107862
|
-
} | {
|
|
107863
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107864
|
-
message: string;
|
|
107865
|
-
/** Date and time at which Seam created the warning. */
|
|
107866
|
-
created_at?: string | undefined;
|
|
107867
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
107868
|
-
warning_code: 'august_device_programming_delay';
|
|
107869
107680
|
} | {
|
|
107870
107681
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107871
107682
|
message: string;
|
|
@@ -108082,15 +107893,6 @@ export type Routes = {
|
|
|
108082
107893
|
created_at?: string | undefined;
|
|
108083
107894
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108084
107895
|
error_code: 'august_lock_invalid_code_length';
|
|
108085
|
-
} | {
|
|
108086
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108087
|
-
message: string;
|
|
108088
|
-
/** Indicates that this is an access code error. */
|
|
108089
|
-
is_access_code_error: true;
|
|
108090
|
-
/** Date and time at which Seam created the error. */
|
|
108091
|
-
created_at?: string | undefined;
|
|
108092
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108093
|
-
error_code: 'august_device_programming_delay';
|
|
108094
107896
|
} | {
|
|
108095
107897
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108096
107898
|
message: string;
|
|
@@ -108371,13 +108173,6 @@ export type Routes = {
|
|
|
108371
108173
|
created_at?: string | undefined;
|
|
108372
108174
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108373
108175
|
warning_code: 'third_party_integration_detected';
|
|
108374
|
-
} | {
|
|
108375
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108376
|
-
message: string;
|
|
108377
|
-
/** Date and time at which Seam created the warning. */
|
|
108378
|
-
created_at?: string | undefined;
|
|
108379
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108380
|
-
warning_code: 'august_device_programming_delay';
|
|
108381
108176
|
} | {
|
|
108382
108177
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108383
108178
|
message: string;
|
package/package.json
CHANGED
|
@@ -139,14 +139,6 @@ const august_lock_invalid_code_length = common_access_code_error
|
|
|
139
139
|
})
|
|
140
140
|
.describe('Invalid code length for August lock.')
|
|
141
141
|
|
|
142
|
-
const august_device_programming_delay_error = common_access_code_error
|
|
143
|
-
.extend({
|
|
144
|
-
error_code: z
|
|
145
|
-
.literal('august_device_programming_delay')
|
|
146
|
-
.describe(error_code_description),
|
|
147
|
-
})
|
|
148
|
-
.describe('Access code has not yet been fully moved to the device.')
|
|
149
|
-
|
|
150
142
|
const august_lock_temporarily_offline_error = common_access_code_error
|
|
151
143
|
.extend({
|
|
152
144
|
error_code: z
|
|
@@ -238,7 +230,6 @@ const access_code_error = z
|
|
|
238
230
|
kwikset_unable_to_confirm_deletion,
|
|
239
231
|
code_modified_external_to_seam_error,
|
|
240
232
|
august_lock_invalid_code_length,
|
|
241
|
-
august_device_programming_delay_error,
|
|
242
233
|
august_lock_missing_keypad,
|
|
243
234
|
august_lock_temporarily_offline_error,
|
|
244
235
|
salto_ks_user_not_subscribed,
|
|
@@ -289,9 +280,6 @@ const _access_code_error_map = z.object({
|
|
|
289
280
|
august_lock_invalid_code_length: august_lock_invalid_code_length
|
|
290
281
|
.optional()
|
|
291
282
|
.nullable(),
|
|
292
|
-
august_device_programming_delay: august_device_programming_delay_error
|
|
293
|
-
.optional()
|
|
294
|
-
.nullable(),
|
|
295
283
|
august_lock_temporarily_offline: august_lock_temporarily_offline_error
|
|
296
284
|
.optional()
|
|
297
285
|
.nullable(),
|
|
@@ -340,14 +328,6 @@ const smartthings_failed_to_set_access_code_warning = common_access_code_warning
|
|
|
340
328
|
})
|
|
341
329
|
.describe('Failed to set code on SmartThings device.')
|
|
342
330
|
|
|
343
|
-
const august_device_programming_delay_warning = common_access_code_warning
|
|
344
|
-
.extend({
|
|
345
|
-
warning_code: z
|
|
346
|
-
.literal('august_device_programming_delay')
|
|
347
|
-
.describe(warning_code_description),
|
|
348
|
-
})
|
|
349
|
-
.describe('Access code has not yet been fully moved to the device.')
|
|
350
|
-
|
|
351
331
|
const august_lock_temporarily_offline_warning = common_access_code_warning
|
|
352
332
|
.extend({
|
|
353
333
|
warning_code: z
|
|
@@ -479,7 +459,6 @@ const access_code_warning = z
|
|
|
479
459
|
delay_in_setting_on_device,
|
|
480
460
|
delay_in_removing_from_device,
|
|
481
461
|
third_party_integration_detected,
|
|
482
|
-
august_device_programming_delay_warning,
|
|
483
462
|
august_lock_temporarily_offline_warning,
|
|
484
463
|
igloo_algopin_must_be_used_within_24_hours,
|
|
485
464
|
management_transferred,
|
|
@@ -511,9 +490,6 @@ const _access_code_warning_map = z.object({
|
|
|
511
490
|
third_party_integration_detected: third_party_integration_detected
|
|
512
491
|
.optional()
|
|
513
492
|
.nullable(),
|
|
514
|
-
august_device_programming_delay: august_device_programming_delay_warning
|
|
515
|
-
.optional()
|
|
516
|
-
.nullable(),
|
|
517
493
|
august_lock_temporarily_offline: august_lock_temporarily_offline_warning
|
|
518
494
|
.optional()
|
|
519
495
|
.nullable(),
|
|
@@ -650,12 +650,6 @@ export const device_metadata = z
|
|
|
650
650
|
.describe(
|
|
651
651
|
`Static UTC offset of the Omnitec lock in milliseconds. Does not account for DST.`,
|
|
652
652
|
),
|
|
653
|
-
time_zone: z
|
|
654
|
-
.string()
|
|
655
|
-
.optional()
|
|
656
|
-
.describe(
|
|
657
|
-
`IANA timezone of the Omnitec lock, set during connect webview. Used for DST-aware timestamp adjustment.`,
|
|
658
|
-
),
|
|
659
653
|
})
|
|
660
654
|
.describe(`Metadata for an Omnitec device.`),
|
|
661
655
|
|