@seamapi/types 1.959.0 → 1.961.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 +51 -519
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -1392
- package/dist/index.cjs +51 -519
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -78
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- 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 +21 -78
- package/lib/seam/connect/models/devices/device.d.ts +0 -319
- package/lib/seam/connect/models/devices/device.js +0 -59
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -99
- package/lib/seam/connect/openapi.js +42 -468
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -977
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/devices/device.ts +0 -63
- package/src/lib/seam/connect/openapi.ts +55 -543
- package/src/lib/seam/connect/route-types.ts +88 -1090
|
@@ -2266,26 +2266,6 @@ export type Routes = {
|
|
|
2266
2266
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2267
2267
|
error_code: 'august_lock_not_authorized'
|
|
2268
2268
|
}
|
|
2269
|
-
| {
|
|
2270
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2271
|
-
message: string
|
|
2272
|
-
/** Indicates that the error is a device error. */
|
|
2273
|
-
is_device_error: true
|
|
2274
|
-
/** Date and time at which Seam created the error. */
|
|
2275
|
-
created_at: string
|
|
2276
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2277
|
-
error_code: 'august_lock_missing_bridge'
|
|
2278
|
-
}
|
|
2279
|
-
| {
|
|
2280
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2281
|
-
message: string
|
|
2282
|
-
/** Indicates that the error is a device error. */
|
|
2283
|
-
is_device_error: true
|
|
2284
|
-
/** Date and time at which Seam created the error. */
|
|
2285
|
-
created_at: string
|
|
2286
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2287
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2288
|
-
}
|
|
2289
2269
|
| {
|
|
2290
2270
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2291
2271
|
message: string
|
|
@@ -2316,16 +2296,6 @@ export type Routes = {
|
|
|
2316
2296
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2317
2297
|
error_code: 'subscription_required'
|
|
2318
2298
|
}
|
|
2319
|
-
| {
|
|
2320
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2321
|
-
message: string
|
|
2322
|
-
/** Indicates that the error is a device error. */
|
|
2323
|
-
is_device_error: true
|
|
2324
|
-
/** Date and time at which Seam created the error. */
|
|
2325
|
-
created_at: string
|
|
2326
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2327
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
2328
|
-
}
|
|
2329
2299
|
| {
|
|
2330
2300
|
/** Date and time at which Seam created the error. */
|
|
2331
2301
|
created_at: string
|
|
@@ -2434,6 +2404,14 @@ export type Routes = {
|
|
|
2434
2404
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2435
2405
|
warning_code: 'being_deleted'
|
|
2436
2406
|
}
|
|
2407
|
+
| {
|
|
2408
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2409
|
+
message: string
|
|
2410
|
+
/** Date and time at which Seam created the warning. */
|
|
2411
|
+
created_at?: string | undefined
|
|
2412
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2413
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
2414
|
+
}
|
|
2437
2415
|
)[]
|
|
2438
2416
|
/** Indicates whether Seam manages the access code. */
|
|
2439
2417
|
is_managed: true
|
|
@@ -2821,26 +2799,6 @@ export type Routes = {
|
|
|
2821
2799
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2822
2800
|
error_code: 'august_lock_not_authorized'
|
|
2823
2801
|
}
|
|
2824
|
-
| {
|
|
2825
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2826
|
-
message: string
|
|
2827
|
-
/** Indicates that the error is a device error. */
|
|
2828
|
-
is_device_error: true
|
|
2829
|
-
/** Date and time at which Seam created the error. */
|
|
2830
|
-
created_at: string
|
|
2831
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2832
|
-
error_code: 'august_lock_missing_bridge'
|
|
2833
|
-
}
|
|
2834
|
-
| {
|
|
2835
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2836
|
-
message: string
|
|
2837
|
-
/** Indicates that the error is a device error. */
|
|
2838
|
-
is_device_error: true
|
|
2839
|
-
/** Date and time at which Seam created the error. */
|
|
2840
|
-
created_at: string
|
|
2841
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2842
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
2843
|
-
}
|
|
2844
2802
|
| {
|
|
2845
2803
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2846
2804
|
message: string
|
|
@@ -2871,16 +2829,6 @@ export type Routes = {
|
|
|
2871
2829
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2872
2830
|
error_code: 'subscription_required'
|
|
2873
2831
|
}
|
|
2874
|
-
| {
|
|
2875
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2876
|
-
message: string
|
|
2877
|
-
/** Indicates that the error is a device error. */
|
|
2878
|
-
is_device_error: true
|
|
2879
|
-
/** Date and time at which Seam created the error. */
|
|
2880
|
-
created_at: string
|
|
2881
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2882
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
2883
|
-
}
|
|
2884
2832
|
| {
|
|
2885
2833
|
/** Date and time at which Seam created the error. */
|
|
2886
2834
|
created_at: string
|
|
@@ -2989,6 +2937,14 @@ export type Routes = {
|
|
|
2989
2937
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2990
2938
|
warning_code: 'being_deleted'
|
|
2991
2939
|
}
|
|
2940
|
+
| {
|
|
2941
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2942
|
+
message: string
|
|
2943
|
+
/** Date and time at which Seam created the warning. */
|
|
2944
|
+
created_at?: string | undefined
|
|
2945
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2946
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
2947
|
+
}
|
|
2992
2948
|
)[]
|
|
2993
2949
|
/** Indicates whether Seam manages the access code. */
|
|
2994
2950
|
is_managed: true
|
|
@@ -5391,26 +5347,6 @@ export type Routes = {
|
|
|
5391
5347
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5392
5348
|
error_code: 'august_lock_not_authorized'
|
|
5393
5349
|
}
|
|
5394
|
-
| {
|
|
5395
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5396
|
-
message: string
|
|
5397
|
-
/** Indicates that the error is a device error. */
|
|
5398
|
-
is_device_error: true
|
|
5399
|
-
/** Date and time at which Seam created the error. */
|
|
5400
|
-
created_at: string
|
|
5401
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5402
|
-
error_code: 'august_lock_missing_bridge'
|
|
5403
|
-
}
|
|
5404
|
-
| {
|
|
5405
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5406
|
-
message: string
|
|
5407
|
-
/** Indicates that the error is a device error. */
|
|
5408
|
-
is_device_error: true
|
|
5409
|
-
/** Date and time at which Seam created the error. */
|
|
5410
|
-
created_at: string
|
|
5411
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5412
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
5413
|
-
}
|
|
5414
5350
|
| {
|
|
5415
5351
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5416
5352
|
message: string
|
|
@@ -5441,16 +5377,6 @@ export type Routes = {
|
|
|
5441
5377
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5442
5378
|
error_code: 'subscription_required'
|
|
5443
5379
|
}
|
|
5444
|
-
| {
|
|
5445
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5446
|
-
message: string
|
|
5447
|
-
/** Indicates that the error is a device error. */
|
|
5448
|
-
is_device_error: true
|
|
5449
|
-
/** Date and time at which Seam created the error. */
|
|
5450
|
-
created_at: string
|
|
5451
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5452
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
5453
|
-
}
|
|
5454
5380
|
| {
|
|
5455
5381
|
/** Date and time at which Seam created the error. */
|
|
5456
5382
|
created_at: string
|
|
@@ -5559,6 +5485,14 @@ export type Routes = {
|
|
|
5559
5485
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5560
5486
|
warning_code: 'being_deleted'
|
|
5561
5487
|
}
|
|
5488
|
+
| {
|
|
5489
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5490
|
+
message: string
|
|
5491
|
+
/** Date and time at which Seam created the warning. */
|
|
5492
|
+
created_at?: string | undefined
|
|
5493
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5494
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
5495
|
+
}
|
|
5562
5496
|
)[]
|
|
5563
5497
|
/** Indicates whether Seam manages the access code. */
|
|
5564
5498
|
is_managed: true
|
|
@@ -6047,26 +5981,6 @@ export type Routes = {
|
|
|
6047
5981
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6048
5982
|
error_code: 'august_lock_not_authorized'
|
|
6049
5983
|
}
|
|
6050
|
-
| {
|
|
6051
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6052
|
-
message: string
|
|
6053
|
-
/** Indicates that the error is a device error. */
|
|
6054
|
-
is_device_error: true
|
|
6055
|
-
/** Date and time at which Seam created the error. */
|
|
6056
|
-
created_at: string
|
|
6057
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6058
|
-
error_code: 'august_lock_missing_bridge'
|
|
6059
|
-
}
|
|
6060
|
-
| {
|
|
6061
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6062
|
-
message: string
|
|
6063
|
-
/** Indicates that the error is a device error. */
|
|
6064
|
-
is_device_error: true
|
|
6065
|
-
/** Date and time at which Seam created the error. */
|
|
6066
|
-
created_at: string
|
|
6067
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6068
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
6069
|
-
}
|
|
6070
5984
|
| {
|
|
6071
5985
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6072
5986
|
message: string
|
|
@@ -6097,16 +6011,6 @@ export type Routes = {
|
|
|
6097
6011
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6098
6012
|
error_code: 'subscription_required'
|
|
6099
6013
|
}
|
|
6100
|
-
| {
|
|
6101
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6102
|
-
message: string
|
|
6103
|
-
/** Indicates that the error is a device error. */
|
|
6104
|
-
is_device_error: true
|
|
6105
|
-
/** Date and time at which Seam created the error. */
|
|
6106
|
-
created_at: string
|
|
6107
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6108
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
6109
|
-
}
|
|
6110
6014
|
| {
|
|
6111
6015
|
/** Date and time at which Seam created the error. */
|
|
6112
6016
|
created_at: string
|
|
@@ -6215,6 +6119,14 @@ export type Routes = {
|
|
|
6215
6119
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6216
6120
|
warning_code: 'being_deleted'
|
|
6217
6121
|
}
|
|
6122
|
+
| {
|
|
6123
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6124
|
+
message: string
|
|
6125
|
+
/** Date and time at which Seam created the warning. */
|
|
6126
|
+
created_at?: string | undefined
|
|
6127
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6128
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
6129
|
+
}
|
|
6218
6130
|
)[]
|
|
6219
6131
|
/** Indicates whether Seam manages the access code. */
|
|
6220
6132
|
is_managed: true
|
|
@@ -6593,26 +6505,6 @@ export type Routes = {
|
|
|
6593
6505
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6594
6506
|
error_code: 'august_lock_not_authorized'
|
|
6595
6507
|
}
|
|
6596
|
-
| {
|
|
6597
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6598
|
-
message: string
|
|
6599
|
-
/** Indicates that the error is a device error. */
|
|
6600
|
-
is_device_error: true
|
|
6601
|
-
/** Date and time at which Seam created the error. */
|
|
6602
|
-
created_at: string
|
|
6603
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6604
|
-
error_code: 'august_lock_missing_bridge'
|
|
6605
|
-
}
|
|
6606
|
-
| {
|
|
6607
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6608
|
-
message: string
|
|
6609
|
-
/** Indicates that the error is a device error. */
|
|
6610
|
-
is_device_error: true
|
|
6611
|
-
/** Date and time at which Seam created the error. */
|
|
6612
|
-
created_at: string
|
|
6613
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6614
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
6615
|
-
}
|
|
6616
6508
|
| {
|
|
6617
6509
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6618
6510
|
message: string
|
|
@@ -6643,16 +6535,6 @@ export type Routes = {
|
|
|
6643
6535
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6644
6536
|
error_code: 'subscription_required'
|
|
6645
6537
|
}
|
|
6646
|
-
| {
|
|
6647
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6648
|
-
message: string
|
|
6649
|
-
/** Indicates that the error is a device error. */
|
|
6650
|
-
is_device_error: true
|
|
6651
|
-
/** Date and time at which Seam created the error. */
|
|
6652
|
-
created_at: string
|
|
6653
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6654
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
6655
|
-
}
|
|
6656
6538
|
| {
|
|
6657
6539
|
/** Date and time at which Seam created the error. */
|
|
6658
6540
|
created_at: string
|
|
@@ -6761,6 +6643,14 @@ export type Routes = {
|
|
|
6761
6643
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6762
6644
|
warning_code: 'being_deleted'
|
|
6763
6645
|
}
|
|
6646
|
+
| {
|
|
6647
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6648
|
+
message: string
|
|
6649
|
+
/** Date and time at which Seam created the warning. */
|
|
6650
|
+
created_at?: string | undefined
|
|
6651
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6652
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
6653
|
+
}
|
|
6764
6654
|
)[]
|
|
6765
6655
|
/** Indicates whether Seam manages the access code. */
|
|
6766
6656
|
is_managed: true
|
|
@@ -7116,26 +7006,6 @@ export type Routes = {
|
|
|
7116
7006
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7117
7007
|
error_code: 'august_lock_not_authorized'
|
|
7118
7008
|
}
|
|
7119
|
-
| {
|
|
7120
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7121
|
-
message: string
|
|
7122
|
-
/** Indicates that the error is a device error. */
|
|
7123
|
-
is_device_error: true
|
|
7124
|
-
/** Date and time at which Seam created the error. */
|
|
7125
|
-
created_at: string
|
|
7126
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7127
|
-
error_code: 'august_lock_missing_bridge'
|
|
7128
|
-
}
|
|
7129
|
-
| {
|
|
7130
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7131
|
-
message: string
|
|
7132
|
-
/** Indicates that the error is a device error. */
|
|
7133
|
-
is_device_error: true
|
|
7134
|
-
/** Date and time at which Seam created the error. */
|
|
7135
|
-
created_at: string
|
|
7136
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7137
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
7138
|
-
}
|
|
7139
7009
|
| {
|
|
7140
7010
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7141
7011
|
message: string
|
|
@@ -7166,16 +7036,6 @@ export type Routes = {
|
|
|
7166
7036
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7167
7037
|
error_code: 'subscription_required'
|
|
7168
7038
|
}
|
|
7169
|
-
| {
|
|
7170
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7171
|
-
message: string
|
|
7172
|
-
/** Indicates that the error is a device error. */
|
|
7173
|
-
is_device_error: true
|
|
7174
|
-
/** Date and time at which Seam created the error. */
|
|
7175
|
-
created_at: string
|
|
7176
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7177
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
7178
|
-
}
|
|
7179
7039
|
| {
|
|
7180
7040
|
/** Date and time at which Seam created the error. */
|
|
7181
7041
|
created_at: string
|
|
@@ -7284,6 +7144,14 @@ export type Routes = {
|
|
|
7284
7144
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7285
7145
|
warning_code: 'being_deleted'
|
|
7286
7146
|
}
|
|
7147
|
+
| {
|
|
7148
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7149
|
+
message: string
|
|
7150
|
+
/** Date and time at which Seam created the warning. */
|
|
7151
|
+
created_at?: string | undefined
|
|
7152
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7153
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
7154
|
+
}
|
|
7287
7155
|
)[]
|
|
7288
7156
|
/** Indicates whether Seam manages the access code. */
|
|
7289
7157
|
is_managed: true
|
|
@@ -7672,26 +7540,6 @@ export type Routes = {
|
|
|
7672
7540
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7673
7541
|
error_code: 'august_lock_not_authorized'
|
|
7674
7542
|
}
|
|
7675
|
-
| {
|
|
7676
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7677
|
-
message: string
|
|
7678
|
-
/** Indicates that the error is a device error. */
|
|
7679
|
-
is_device_error: true
|
|
7680
|
-
/** Date and time at which Seam created the error. */
|
|
7681
|
-
created_at: string
|
|
7682
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7683
|
-
error_code: 'august_lock_missing_bridge'
|
|
7684
|
-
}
|
|
7685
|
-
| {
|
|
7686
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7687
|
-
message: string
|
|
7688
|
-
/** Indicates that the error is a device error. */
|
|
7689
|
-
is_device_error: true
|
|
7690
|
-
/** Date and time at which Seam created the error. */
|
|
7691
|
-
created_at: string
|
|
7692
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7693
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
7694
|
-
}
|
|
7695
7543
|
| {
|
|
7696
7544
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7697
7545
|
message: string
|
|
@@ -7722,16 +7570,6 @@ export type Routes = {
|
|
|
7722
7570
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7723
7571
|
error_code: 'subscription_required'
|
|
7724
7572
|
}
|
|
7725
|
-
| {
|
|
7726
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7727
|
-
message: string
|
|
7728
|
-
/** Indicates that the error is a device error. */
|
|
7729
|
-
is_device_error: true
|
|
7730
|
-
/** Date and time at which Seam created the error. */
|
|
7731
|
-
created_at: string
|
|
7732
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7733
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
7734
|
-
}
|
|
7735
7573
|
| {
|
|
7736
7574
|
/** Date and time at which Seam created the error. */
|
|
7737
7575
|
created_at: string
|
|
@@ -7840,6 +7678,14 @@ export type Routes = {
|
|
|
7840
7678
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7841
7679
|
warning_code: 'being_deleted'
|
|
7842
7680
|
}
|
|
7681
|
+
| {
|
|
7682
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7683
|
+
message: string
|
|
7684
|
+
/** Date and time at which Seam created the warning. */
|
|
7685
|
+
created_at?: string | undefined
|
|
7686
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7687
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
7688
|
+
}
|
|
7843
7689
|
)[]
|
|
7844
7690
|
/** Indicates that Seam does not manage the access code. */
|
|
7845
7691
|
is_managed: false
|
|
@@ -10144,26 +9990,6 @@ export type Routes = {
|
|
|
10144
9990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10145
9991
|
error_code: 'august_lock_not_authorized'
|
|
10146
9992
|
}
|
|
10147
|
-
| {
|
|
10148
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10149
|
-
message: string
|
|
10150
|
-
/** Indicates that the error is a device error. */
|
|
10151
|
-
is_device_error: true
|
|
10152
|
-
/** Date and time at which Seam created the error. */
|
|
10153
|
-
created_at: string
|
|
10154
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10155
|
-
error_code: 'august_lock_missing_bridge'
|
|
10156
|
-
}
|
|
10157
|
-
| {
|
|
10158
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10159
|
-
message: string
|
|
10160
|
-
/** Indicates that the error is a device error. */
|
|
10161
|
-
is_device_error: true
|
|
10162
|
-
/** Date and time at which Seam created the error. */
|
|
10163
|
-
created_at: string
|
|
10164
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10165
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
10166
|
-
}
|
|
10167
9993
|
| {
|
|
10168
9994
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10169
9995
|
message: string
|
|
@@ -10194,16 +10020,6 @@ export type Routes = {
|
|
|
10194
10020
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10195
10021
|
error_code: 'subscription_required'
|
|
10196
10022
|
}
|
|
10197
|
-
| {
|
|
10198
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10199
|
-
message: string
|
|
10200
|
-
/** Indicates that the error is a device error. */
|
|
10201
|
-
is_device_error: true
|
|
10202
|
-
/** Date and time at which Seam created the error. */
|
|
10203
|
-
created_at: string
|
|
10204
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10205
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
10206
|
-
}
|
|
10207
10023
|
| {
|
|
10208
10024
|
/** Date and time at which Seam created the error. */
|
|
10209
10025
|
created_at: string
|
|
@@ -10312,6 +10128,14 @@ export type Routes = {
|
|
|
10312
10128
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10313
10129
|
warning_code: 'being_deleted'
|
|
10314
10130
|
}
|
|
10131
|
+
| {
|
|
10132
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10133
|
+
message: string
|
|
10134
|
+
/** Date and time at which Seam created the warning. */
|
|
10135
|
+
created_at?: string | undefined
|
|
10136
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10137
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
10138
|
+
}
|
|
10315
10139
|
)[]
|
|
10316
10140
|
/** Indicates that Seam does not manage the access code. */
|
|
10317
10141
|
is_managed: false
|
|
@@ -10579,26 +10403,6 @@ export type Routes = {
|
|
|
10579
10403
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10580
10404
|
error_code: 'august_lock_not_authorized'
|
|
10581
10405
|
}
|
|
10582
|
-
| {
|
|
10583
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10584
|
-
message: string
|
|
10585
|
-
/** Indicates that the error is a device error. */
|
|
10586
|
-
is_device_error: true
|
|
10587
|
-
/** Date and time at which Seam created the error. */
|
|
10588
|
-
created_at: string
|
|
10589
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10590
|
-
error_code: 'august_lock_missing_bridge'
|
|
10591
|
-
}
|
|
10592
|
-
| {
|
|
10593
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10594
|
-
message: string
|
|
10595
|
-
/** Indicates that the error is a device error. */
|
|
10596
|
-
is_device_error: true
|
|
10597
|
-
/** Date and time at which Seam created the error. */
|
|
10598
|
-
created_at: string
|
|
10599
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10600
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
10601
|
-
}
|
|
10602
10406
|
| {
|
|
10603
10407
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10604
10408
|
message: string
|
|
@@ -10629,16 +10433,6 @@ export type Routes = {
|
|
|
10629
10433
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10630
10434
|
error_code: 'subscription_required'
|
|
10631
10435
|
}
|
|
10632
|
-
| {
|
|
10633
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10634
|
-
message: string
|
|
10635
|
-
/** Indicates that the error is a device error. */
|
|
10636
|
-
is_device_error: true
|
|
10637
|
-
/** Date and time at which Seam created the error. */
|
|
10638
|
-
created_at: string
|
|
10639
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10640
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
10641
|
-
}
|
|
10642
10436
|
| {
|
|
10643
10437
|
/** Date and time at which Seam created the error. */
|
|
10644
10438
|
created_at: string
|
|
@@ -10747,6 +10541,14 @@ export type Routes = {
|
|
|
10747
10541
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10748
10542
|
warning_code: 'being_deleted'
|
|
10749
10543
|
}
|
|
10544
|
+
| {
|
|
10545
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10546
|
+
message: string
|
|
10547
|
+
/** Date and time at which Seam created the warning. */
|
|
10548
|
+
created_at?: string | undefined
|
|
10549
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10550
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
10551
|
+
}
|
|
10750
10552
|
)[]
|
|
10751
10553
|
/** Indicates that Seam does not manage the access code. */
|
|
10752
10554
|
is_managed: false
|
|
@@ -15044,26 +14846,6 @@ export type Routes = {
|
|
|
15044
14846
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15045
14847
|
error_code: 'august_lock_not_authorized'
|
|
15046
14848
|
}
|
|
15047
|
-
| {
|
|
15048
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15049
|
-
message: string
|
|
15050
|
-
/** Indicates that the error is a device error. */
|
|
15051
|
-
is_device_error: true
|
|
15052
|
-
/** Date and time at which Seam created the error. */
|
|
15053
|
-
created_at: string
|
|
15054
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15055
|
-
error_code: 'august_lock_missing_bridge'
|
|
15056
|
-
}
|
|
15057
|
-
| {
|
|
15058
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15059
|
-
message: string
|
|
15060
|
-
/** Indicates that the error is a device error. */
|
|
15061
|
-
is_device_error: true
|
|
15062
|
-
/** Date and time at which Seam created the error. */
|
|
15063
|
-
created_at: string
|
|
15064
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15065
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
15066
|
-
}
|
|
15067
14849
|
| {
|
|
15068
14850
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15069
14851
|
message: string
|
|
@@ -15094,16 +14876,6 @@ export type Routes = {
|
|
|
15094
14876
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15095
14877
|
error_code: 'subscription_required'
|
|
15096
14878
|
}
|
|
15097
|
-
| {
|
|
15098
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
15099
|
-
message: string
|
|
15100
|
-
/** Indicates that the error is a device error. */
|
|
15101
|
-
is_device_error: true
|
|
15102
|
-
/** Date and time at which Seam created the error. */
|
|
15103
|
-
created_at: string
|
|
15104
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
15105
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
15106
|
-
}
|
|
15107
14879
|
| {
|
|
15108
14880
|
/** Date and time at which Seam created the error. */
|
|
15109
14881
|
created_at: string
|
|
@@ -15135,14 +14907,6 @@ export type Routes = {
|
|
|
15135
14907
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15136
14908
|
warning_code: 'many_active_backup_codes'
|
|
15137
14909
|
}
|
|
15138
|
-
| {
|
|
15139
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15140
|
-
message: string
|
|
15141
|
-
/** Date and time at which Seam created the warning. */
|
|
15142
|
-
created_at: string
|
|
15143
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15144
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
15145
|
-
}
|
|
15146
14910
|
| {
|
|
15147
14911
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
15148
14912
|
message: string
|
|
@@ -23231,26 +22995,6 @@ export type Routes = {
|
|
|
23231
22995
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23232
22996
|
error_code: 'august_lock_not_authorized'
|
|
23233
22997
|
}
|
|
23234
|
-
| {
|
|
23235
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23236
|
-
message: string
|
|
23237
|
-
/** Indicates that the error is a device error. */
|
|
23238
|
-
is_device_error: true
|
|
23239
|
-
/** Date and time at which Seam created the error. */
|
|
23240
|
-
created_at: string
|
|
23241
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23242
|
-
error_code: 'august_lock_missing_bridge'
|
|
23243
|
-
}
|
|
23244
|
-
| {
|
|
23245
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23246
|
-
message: string
|
|
23247
|
-
/** Indicates that the error is a device error. */
|
|
23248
|
-
is_device_error: true
|
|
23249
|
-
/** Date and time at which Seam created the error. */
|
|
23250
|
-
created_at: string
|
|
23251
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23252
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
23253
|
-
}
|
|
23254
22998
|
| {
|
|
23255
22999
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23256
23000
|
message: string
|
|
@@ -23281,16 +23025,6 @@ export type Routes = {
|
|
|
23281
23025
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23282
23026
|
error_code: 'subscription_required'
|
|
23283
23027
|
}
|
|
23284
|
-
| {
|
|
23285
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
23286
|
-
message: string
|
|
23287
|
-
/** Indicates that the error is a device error. */
|
|
23288
|
-
is_device_error: true
|
|
23289
|
-
/** Date and time at which Seam created the error. */
|
|
23290
|
-
created_at: string
|
|
23291
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
23292
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
23293
|
-
}
|
|
23294
23028
|
| {
|
|
23295
23029
|
/** Date and time at which Seam created the error. */
|
|
23296
23030
|
created_at: string
|
|
@@ -23322,14 +23056,6 @@ export type Routes = {
|
|
|
23322
23056
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23323
23057
|
warning_code: 'many_active_backup_codes'
|
|
23324
23058
|
}
|
|
23325
|
-
| {
|
|
23326
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23327
|
-
message: string
|
|
23328
|
-
/** Date and time at which Seam created the warning. */
|
|
23329
|
-
created_at: string
|
|
23330
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
23331
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
23332
|
-
}
|
|
23333
23059
|
| {
|
|
23334
23060
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
23335
23061
|
message: string
|
|
@@ -50171,26 +49897,6 @@ export type Routes = {
|
|
|
50171
49897
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50172
49898
|
error_code: 'august_lock_not_authorized'
|
|
50173
49899
|
}
|
|
50174
|
-
| {
|
|
50175
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50176
|
-
message: string
|
|
50177
|
-
/** Indicates that the error is a device error. */
|
|
50178
|
-
is_device_error: true
|
|
50179
|
-
/** Date and time at which Seam created the error. */
|
|
50180
|
-
created_at: string
|
|
50181
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50182
|
-
error_code: 'august_lock_missing_bridge'
|
|
50183
|
-
}
|
|
50184
|
-
| {
|
|
50185
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50186
|
-
message: string
|
|
50187
|
-
/** Indicates that the error is a device error. */
|
|
50188
|
-
is_device_error: true
|
|
50189
|
-
/** Date and time at which Seam created the error. */
|
|
50190
|
-
created_at: string
|
|
50191
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50192
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
50193
|
-
}
|
|
50194
49900
|
| {
|
|
50195
49901
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50196
49902
|
message: string
|
|
@@ -50221,16 +49927,6 @@ export type Routes = {
|
|
|
50221
49927
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50222
49928
|
error_code: 'subscription_required'
|
|
50223
49929
|
}
|
|
50224
|
-
| {
|
|
50225
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
50226
|
-
message: string
|
|
50227
|
-
/** Indicates that the error is a device error. */
|
|
50228
|
-
is_device_error: true
|
|
50229
|
-
/** Date and time at which Seam created the error. */
|
|
50230
|
-
created_at: string
|
|
50231
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
50232
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
50233
|
-
}
|
|
50234
49930
|
| {
|
|
50235
49931
|
/** Date and time at which Seam created the error. */
|
|
50236
49932
|
created_at: string
|
|
@@ -50262,14 +49958,6 @@ export type Routes = {
|
|
|
50262
49958
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50263
49959
|
warning_code: 'many_active_backup_codes'
|
|
50264
49960
|
}
|
|
50265
|
-
| {
|
|
50266
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
50267
|
-
message: string
|
|
50268
|
-
/** Date and time at which Seam created the warning. */
|
|
50269
|
-
created_at: string
|
|
50270
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
50271
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
50272
|
-
}
|
|
50273
49961
|
| {
|
|
50274
49962
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
50275
49963
|
message: string
|
|
@@ -52296,26 +51984,6 @@ export type Routes = {
|
|
|
52296
51984
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52297
51985
|
error_code: 'august_lock_not_authorized'
|
|
52298
51986
|
}
|
|
52299
|
-
| {
|
|
52300
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52301
|
-
message: string
|
|
52302
|
-
/** Indicates that the error is a device error. */
|
|
52303
|
-
is_device_error: true
|
|
52304
|
-
/** Date and time at which Seam created the error. */
|
|
52305
|
-
created_at: string
|
|
52306
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52307
|
-
error_code: 'august_lock_missing_bridge'
|
|
52308
|
-
}
|
|
52309
|
-
| {
|
|
52310
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52311
|
-
message: string
|
|
52312
|
-
/** Indicates that the error is a device error. */
|
|
52313
|
-
is_device_error: true
|
|
52314
|
-
/** Date and time at which Seam created the error. */
|
|
52315
|
-
created_at: string
|
|
52316
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52317
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
52318
|
-
}
|
|
52319
51987
|
| {
|
|
52320
51988
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52321
51989
|
message: string
|
|
@@ -52346,16 +52014,6 @@ export type Routes = {
|
|
|
52346
52014
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52347
52015
|
error_code: 'subscription_required'
|
|
52348
52016
|
}
|
|
52349
|
-
| {
|
|
52350
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
52351
|
-
message: string
|
|
52352
|
-
/** Indicates that the error is a device error. */
|
|
52353
|
-
is_device_error: true
|
|
52354
|
-
/** Date and time at which Seam created the error. */
|
|
52355
|
-
created_at: string
|
|
52356
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
52357
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
52358
|
-
}
|
|
52359
52017
|
| {
|
|
52360
52018
|
/** Date and time at which Seam created the error. */
|
|
52361
52019
|
created_at: string
|
|
@@ -52387,14 +52045,6 @@ export type Routes = {
|
|
|
52387
52045
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52388
52046
|
warning_code: 'many_active_backup_codes'
|
|
52389
52047
|
}
|
|
52390
|
-
| {
|
|
52391
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52392
|
-
message: string
|
|
52393
|
-
/** Date and time at which Seam created the warning. */
|
|
52394
|
-
created_at: string
|
|
52395
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
52396
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
52397
|
-
}
|
|
52398
52048
|
| {
|
|
52399
52049
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
52400
52050
|
message: string
|
|
@@ -54433,26 +54083,6 @@ export type Routes = {
|
|
|
54433
54083
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54434
54084
|
error_code: 'august_lock_not_authorized'
|
|
54435
54085
|
}
|
|
54436
|
-
| {
|
|
54437
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54438
|
-
message: string
|
|
54439
|
-
/** Indicates that the error is a device error. */
|
|
54440
|
-
is_device_error: true
|
|
54441
|
-
/** Date and time at which Seam created the error. */
|
|
54442
|
-
created_at: string
|
|
54443
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54444
|
-
error_code: 'august_lock_missing_bridge'
|
|
54445
|
-
}
|
|
54446
|
-
| {
|
|
54447
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54448
|
-
message: string
|
|
54449
|
-
/** Indicates that the error is a device error. */
|
|
54450
|
-
is_device_error: true
|
|
54451
|
-
/** Date and time at which Seam created the error. */
|
|
54452
|
-
created_at: string
|
|
54453
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54454
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
54455
|
-
}
|
|
54456
54086
|
| {
|
|
54457
54087
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54458
54088
|
message: string
|
|
@@ -54483,16 +54113,6 @@ export type Routes = {
|
|
|
54483
54113
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54484
54114
|
error_code: 'subscription_required'
|
|
54485
54115
|
}
|
|
54486
|
-
| {
|
|
54487
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
54488
|
-
message: string
|
|
54489
|
-
/** Indicates that the error is a device error. */
|
|
54490
|
-
is_device_error: true
|
|
54491
|
-
/** Date and time at which Seam created the error. */
|
|
54492
|
-
created_at: string
|
|
54493
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
54494
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
54495
|
-
}
|
|
54496
54116
|
| {
|
|
54497
54117
|
/** Date and time at which Seam created the error. */
|
|
54498
54118
|
created_at: string
|
|
@@ -54524,14 +54144,6 @@ export type Routes = {
|
|
|
54524
54144
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54525
54145
|
warning_code: 'many_active_backup_codes'
|
|
54526
54146
|
}
|
|
54527
|
-
| {
|
|
54528
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54529
|
-
message: string
|
|
54530
|
-
/** Date and time at which Seam created the warning. */
|
|
54531
|
-
created_at: string
|
|
54532
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
54533
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
54534
|
-
}
|
|
54535
54147
|
| {
|
|
54536
54148
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
54537
54149
|
message: string
|
|
@@ -55292,26 +54904,6 @@ export type Routes = {
|
|
|
55292
54904
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55293
54905
|
error_code: 'august_lock_not_authorized'
|
|
55294
54906
|
}
|
|
55295
|
-
| {
|
|
55296
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55297
|
-
message: string
|
|
55298
|
-
/** Indicates that the error is a device error. */
|
|
55299
|
-
is_device_error: true
|
|
55300
|
-
/** Date and time at which Seam created the error. */
|
|
55301
|
-
created_at: string
|
|
55302
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55303
|
-
error_code: 'august_lock_missing_bridge'
|
|
55304
|
-
}
|
|
55305
|
-
| {
|
|
55306
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55307
|
-
message: string
|
|
55308
|
-
/** Indicates that the error is a device error. */
|
|
55309
|
-
is_device_error: true
|
|
55310
|
-
/** Date and time at which Seam created the error. */
|
|
55311
|
-
created_at: string
|
|
55312
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55313
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
55314
|
-
}
|
|
55315
54907
|
| {
|
|
55316
54908
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55317
54909
|
message: string
|
|
@@ -55342,16 +54934,6 @@ export type Routes = {
|
|
|
55342
54934
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55343
54935
|
error_code: 'subscription_required'
|
|
55344
54936
|
}
|
|
55345
|
-
| {
|
|
55346
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
55347
|
-
message: string
|
|
55348
|
-
/** Indicates that the error is a device error. */
|
|
55349
|
-
is_device_error: true
|
|
55350
|
-
/** Date and time at which Seam created the error. */
|
|
55351
|
-
created_at: string
|
|
55352
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
55353
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
55354
|
-
}
|
|
55355
54937
|
| {
|
|
55356
54938
|
/** Date and time at which Seam created the error. */
|
|
55357
54939
|
created_at: string
|
|
@@ -55383,14 +54965,6 @@ export type Routes = {
|
|
|
55383
54965
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55384
54966
|
warning_code: 'many_active_backup_codes'
|
|
55385
54967
|
}
|
|
55386
|
-
| {
|
|
55387
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55388
|
-
message: string
|
|
55389
|
-
/** Date and time at which Seam created the warning. */
|
|
55390
|
-
created_at: string
|
|
55391
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
55392
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
55393
|
-
}
|
|
55394
54968
|
| {
|
|
55395
54969
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
55396
54970
|
message: string
|
|
@@ -66912,26 +66486,6 @@ export type Routes = {
|
|
|
66912
66486
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66913
66487
|
error_code: 'august_lock_not_authorized'
|
|
66914
66488
|
}
|
|
66915
|
-
| {
|
|
66916
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66917
|
-
message: string
|
|
66918
|
-
/** Indicates that the error is a device error. */
|
|
66919
|
-
is_device_error: true
|
|
66920
|
-
/** Date and time at which Seam created the error. */
|
|
66921
|
-
created_at: string
|
|
66922
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66923
|
-
error_code: 'august_lock_missing_bridge'
|
|
66924
|
-
}
|
|
66925
|
-
| {
|
|
66926
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66927
|
-
message: string
|
|
66928
|
-
/** Indicates that the error is a device error. */
|
|
66929
|
-
is_device_error: true
|
|
66930
|
-
/** Date and time at which Seam created the error. */
|
|
66931
|
-
created_at: string
|
|
66932
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66933
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
66934
|
-
}
|
|
66935
66489
|
| {
|
|
66936
66490
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66937
66491
|
message: string
|
|
@@ -66962,16 +66516,6 @@ export type Routes = {
|
|
|
66962
66516
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66963
66517
|
error_code: 'subscription_required'
|
|
66964
66518
|
}
|
|
66965
|
-
| {
|
|
66966
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
66967
|
-
message: string
|
|
66968
|
-
/** Indicates that the error is a device error. */
|
|
66969
|
-
is_device_error: true
|
|
66970
|
-
/** Date and time at which Seam created the error. */
|
|
66971
|
-
created_at: string
|
|
66972
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
66973
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
66974
|
-
}
|
|
66975
66519
|
| {
|
|
66976
66520
|
/** Date and time at which Seam created the error. */
|
|
66977
66521
|
created_at: string
|
|
@@ -67003,14 +66547,6 @@ export type Routes = {
|
|
|
67003
66547
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67004
66548
|
warning_code: 'many_active_backup_codes'
|
|
67005
66549
|
}
|
|
67006
|
-
| {
|
|
67007
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67008
|
-
message: string
|
|
67009
|
-
/** Date and time at which Seam created the warning. */
|
|
67010
|
-
created_at: string
|
|
67011
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
67012
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
67013
|
-
}
|
|
67014
66550
|
| {
|
|
67015
66551
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
67016
66552
|
message: string
|
|
@@ -68793,26 +68329,6 @@ export type Routes = {
|
|
|
68793
68329
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68794
68330
|
error_code: 'august_lock_not_authorized'
|
|
68795
68331
|
}
|
|
68796
|
-
| {
|
|
68797
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68798
|
-
message: string
|
|
68799
|
-
/** Indicates that the error is a device error. */
|
|
68800
|
-
is_device_error: true
|
|
68801
|
-
/** Date and time at which Seam created the error. */
|
|
68802
|
-
created_at: string
|
|
68803
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68804
|
-
error_code: 'august_lock_missing_bridge'
|
|
68805
|
-
}
|
|
68806
|
-
| {
|
|
68807
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68808
|
-
message: string
|
|
68809
|
-
/** Indicates that the error is a device error. */
|
|
68810
|
-
is_device_error: true
|
|
68811
|
-
/** Date and time at which Seam created the error. */
|
|
68812
|
-
created_at: string
|
|
68813
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68814
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
68815
|
-
}
|
|
68816
68332
|
| {
|
|
68817
68333
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68818
68334
|
message: string
|
|
@@ -68843,16 +68359,6 @@ export type Routes = {
|
|
|
68843
68359
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68844
68360
|
error_code: 'subscription_required'
|
|
68845
68361
|
}
|
|
68846
|
-
| {
|
|
68847
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
68848
|
-
message: string
|
|
68849
|
-
/** Indicates that the error is a device error. */
|
|
68850
|
-
is_device_error: true
|
|
68851
|
-
/** Date and time at which Seam created the error. */
|
|
68852
|
-
created_at: string
|
|
68853
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
68854
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
68855
|
-
}
|
|
68856
68362
|
| {
|
|
68857
68363
|
/** Date and time at which Seam created the error. */
|
|
68858
68364
|
created_at: string
|
|
@@ -68884,14 +68390,6 @@ export type Routes = {
|
|
|
68884
68390
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68885
68391
|
warning_code: 'many_active_backup_codes'
|
|
68886
68392
|
}
|
|
68887
|
-
| {
|
|
68888
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68889
|
-
message: string
|
|
68890
|
-
/** Date and time at which Seam created the warning. */
|
|
68891
|
-
created_at: string
|
|
68892
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
68893
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
68894
|
-
}
|
|
68895
68393
|
| {
|
|
68896
68394
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
68897
68395
|
message: string
|
|
@@ -70871,26 +70369,6 @@ export type Routes = {
|
|
|
70871
70369
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70872
70370
|
error_code: 'august_lock_not_authorized'
|
|
70873
70371
|
}
|
|
70874
|
-
| {
|
|
70875
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70876
|
-
message: string
|
|
70877
|
-
/** Indicates that the error is a device error. */
|
|
70878
|
-
is_device_error: true
|
|
70879
|
-
/** Date and time at which Seam created the error. */
|
|
70880
|
-
created_at: string
|
|
70881
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70882
|
-
error_code: 'august_lock_missing_bridge'
|
|
70883
|
-
}
|
|
70884
|
-
| {
|
|
70885
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70886
|
-
message: string
|
|
70887
|
-
/** Indicates that the error is a device error. */
|
|
70888
|
-
is_device_error: true
|
|
70889
|
-
/** Date and time at which Seam created the error. */
|
|
70890
|
-
created_at: string
|
|
70891
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70892
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
70893
|
-
}
|
|
70894
70372
|
| {
|
|
70895
70373
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70896
70374
|
message: string
|
|
@@ -70921,16 +70399,6 @@ export type Routes = {
|
|
|
70921
70399
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70922
70400
|
error_code: 'subscription_required'
|
|
70923
70401
|
}
|
|
70924
|
-
| {
|
|
70925
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
70926
|
-
message: string
|
|
70927
|
-
/** Indicates that the error is a device error. */
|
|
70928
|
-
is_device_error: true
|
|
70929
|
-
/** Date and time at which Seam created the error. */
|
|
70930
|
-
created_at: string
|
|
70931
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
70932
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
70933
|
-
}
|
|
70934
70402
|
| {
|
|
70935
70403
|
/** Date and time at which Seam created the error. */
|
|
70936
70404
|
created_at: string
|
|
@@ -70962,14 +70430,6 @@ export type Routes = {
|
|
|
70962
70430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70963
70431
|
warning_code: 'many_active_backup_codes'
|
|
70964
70432
|
}
|
|
70965
|
-
| {
|
|
70966
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70967
|
-
message: string
|
|
70968
|
-
/** Date and time at which Seam created the warning. */
|
|
70969
|
-
created_at: string
|
|
70970
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
70971
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
70972
|
-
}
|
|
70973
70433
|
| {
|
|
70974
70434
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
70975
70435
|
message: string
|
|
@@ -72751,26 +72211,6 @@ export type Routes = {
|
|
|
72751
72211
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72752
72212
|
error_code: 'august_lock_not_authorized'
|
|
72753
72213
|
}
|
|
72754
|
-
| {
|
|
72755
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72756
|
-
message: string
|
|
72757
|
-
/** Indicates that the error is a device error. */
|
|
72758
|
-
is_device_error: true
|
|
72759
|
-
/** Date and time at which Seam created the error. */
|
|
72760
|
-
created_at: string
|
|
72761
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72762
|
-
error_code: 'august_lock_missing_bridge'
|
|
72763
|
-
}
|
|
72764
|
-
| {
|
|
72765
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72766
|
-
message: string
|
|
72767
|
-
/** Indicates that the error is a device error. */
|
|
72768
|
-
is_device_error: true
|
|
72769
|
-
/** Date and time at which Seam created the error. */
|
|
72770
|
-
created_at: string
|
|
72771
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72772
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
72773
|
-
}
|
|
72774
72214
|
| {
|
|
72775
72215
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72776
72216
|
message: string
|
|
@@ -72801,16 +72241,6 @@ export type Routes = {
|
|
|
72801
72241
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72802
72242
|
error_code: 'subscription_required'
|
|
72803
72243
|
}
|
|
72804
|
-
| {
|
|
72805
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
72806
|
-
message: string
|
|
72807
|
-
/** Indicates that the error is a device error. */
|
|
72808
|
-
is_device_error: true
|
|
72809
|
-
/** Date and time at which Seam created the error. */
|
|
72810
|
-
created_at: string
|
|
72811
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
72812
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
72813
|
-
}
|
|
72814
72244
|
| {
|
|
72815
72245
|
/** Date and time at which Seam created the error. */
|
|
72816
72246
|
created_at: string
|
|
@@ -72842,14 +72272,6 @@ export type Routes = {
|
|
|
72842
72272
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72843
72273
|
warning_code: 'many_active_backup_codes'
|
|
72844
72274
|
}
|
|
72845
|
-
| {
|
|
72846
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72847
|
-
message: string
|
|
72848
|
-
/** Date and time at which Seam created the warning. */
|
|
72849
|
-
created_at: string
|
|
72850
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
72851
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
72852
|
-
}
|
|
72853
72275
|
| {
|
|
72854
72276
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
72855
72277
|
message: string
|
|
@@ -82764,26 +82186,6 @@ export type Routes = {
|
|
|
82764
82186
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82765
82187
|
error_code: 'august_lock_not_authorized'
|
|
82766
82188
|
}
|
|
82767
|
-
| {
|
|
82768
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82769
|
-
message: string
|
|
82770
|
-
/** Indicates that the error is a device error. */
|
|
82771
|
-
is_device_error: true
|
|
82772
|
-
/** Date and time at which Seam created the error. */
|
|
82773
|
-
created_at: string
|
|
82774
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82775
|
-
error_code: 'august_lock_missing_bridge'
|
|
82776
|
-
}
|
|
82777
|
-
| {
|
|
82778
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82779
|
-
message: string
|
|
82780
|
-
/** Indicates that the error is a device error. */
|
|
82781
|
-
is_device_error: true
|
|
82782
|
-
/** Date and time at which Seam created the error. */
|
|
82783
|
-
created_at: string
|
|
82784
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82785
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
82786
|
-
}
|
|
82787
82189
|
| {
|
|
82788
82190
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82789
82191
|
message: string
|
|
@@ -82814,16 +82216,6 @@ export type Routes = {
|
|
|
82814
82216
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82815
82217
|
error_code: 'subscription_required'
|
|
82816
82218
|
}
|
|
82817
|
-
| {
|
|
82818
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
82819
|
-
message: string
|
|
82820
|
-
/** Indicates that the error is a device error. */
|
|
82821
|
-
is_device_error: true
|
|
82822
|
-
/** Date and time at which Seam created the error. */
|
|
82823
|
-
created_at: string
|
|
82824
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
82825
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
82826
|
-
}
|
|
82827
82219
|
| {
|
|
82828
82220
|
/** Date and time at which Seam created the error. */
|
|
82829
82221
|
created_at: string
|
|
@@ -82855,14 +82247,6 @@ export type Routes = {
|
|
|
82855
82247
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82856
82248
|
warning_code: 'many_active_backup_codes'
|
|
82857
82249
|
}
|
|
82858
|
-
| {
|
|
82859
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82860
|
-
message: string
|
|
82861
|
-
/** Date and time at which Seam created the warning. */
|
|
82862
|
-
created_at: string
|
|
82863
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
82864
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
82865
|
-
}
|
|
82866
82250
|
| {
|
|
82867
82251
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
82868
82252
|
message: string
|
|
@@ -84644,26 +84028,6 @@ export type Routes = {
|
|
|
84644
84028
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84645
84029
|
error_code: 'august_lock_not_authorized'
|
|
84646
84030
|
}
|
|
84647
|
-
| {
|
|
84648
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84649
|
-
message: string
|
|
84650
|
-
/** Indicates that the error is a device error. */
|
|
84651
|
-
is_device_error: true
|
|
84652
|
-
/** Date and time at which Seam created the error. */
|
|
84653
|
-
created_at: string
|
|
84654
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84655
|
-
error_code: 'august_lock_missing_bridge'
|
|
84656
|
-
}
|
|
84657
|
-
| {
|
|
84658
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84659
|
-
message: string
|
|
84660
|
-
/** Indicates that the error is a device error. */
|
|
84661
|
-
is_device_error: true
|
|
84662
|
-
/** Date and time at which Seam created the error. */
|
|
84663
|
-
created_at: string
|
|
84664
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84665
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
84666
|
-
}
|
|
84667
84031
|
| {
|
|
84668
84032
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84669
84033
|
message: string
|
|
@@ -84694,16 +84058,6 @@ export type Routes = {
|
|
|
84694
84058
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84695
84059
|
error_code: 'subscription_required'
|
|
84696
84060
|
}
|
|
84697
|
-
| {
|
|
84698
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
84699
|
-
message: string
|
|
84700
|
-
/** Indicates that the error is a device error. */
|
|
84701
|
-
is_device_error: true
|
|
84702
|
-
/** Date and time at which Seam created the error. */
|
|
84703
|
-
created_at: string
|
|
84704
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84705
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
84706
|
-
}
|
|
84707
84061
|
| {
|
|
84708
84062
|
/** Date and time at which Seam created the error. */
|
|
84709
84063
|
created_at: string
|
|
@@ -84735,14 +84089,6 @@ export type Routes = {
|
|
|
84735
84089
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84736
84090
|
warning_code: 'many_active_backup_codes'
|
|
84737
84091
|
}
|
|
84738
|
-
| {
|
|
84739
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84740
|
-
message: string
|
|
84741
|
-
/** Date and time at which Seam created the warning. */
|
|
84742
|
-
created_at: string
|
|
84743
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
84744
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
84745
|
-
}
|
|
84746
84092
|
| {
|
|
84747
84093
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
84748
84094
|
message: string
|
|
@@ -104065,26 +103411,6 @@ export type Routes = {
|
|
|
104065
103411
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104066
103412
|
error_code: 'august_lock_not_authorized'
|
|
104067
103413
|
}
|
|
104068
|
-
| {
|
|
104069
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104070
|
-
message: string
|
|
104071
|
-
/** Indicates that the error is a device error. */
|
|
104072
|
-
is_device_error: true
|
|
104073
|
-
/** Date and time at which Seam created the error. */
|
|
104074
|
-
created_at: string
|
|
104075
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104076
|
-
error_code: 'august_lock_missing_bridge'
|
|
104077
|
-
}
|
|
104078
|
-
| {
|
|
104079
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104080
|
-
message: string
|
|
104081
|
-
/** Indicates that the error is a device error. */
|
|
104082
|
-
is_device_error: true
|
|
104083
|
-
/** Date and time at which Seam created the error. */
|
|
104084
|
-
created_at: string
|
|
104085
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104086
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
104087
|
-
}
|
|
104088
103414
|
| {
|
|
104089
103415
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104090
103416
|
message: string
|
|
@@ -104115,16 +103441,6 @@ export type Routes = {
|
|
|
104115
103441
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104116
103442
|
error_code: 'subscription_required'
|
|
104117
103443
|
}
|
|
104118
|
-
| {
|
|
104119
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
104120
|
-
message: string
|
|
104121
|
-
/** Indicates that the error is a device error. */
|
|
104122
|
-
is_device_error: true
|
|
104123
|
-
/** Date and time at which Seam created the error. */
|
|
104124
|
-
created_at: string
|
|
104125
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
104126
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
104127
|
-
}
|
|
104128
103444
|
| {
|
|
104129
103445
|
/** Date and time at which Seam created the error. */
|
|
104130
103446
|
created_at: string
|
|
@@ -104156,14 +103472,6 @@ export type Routes = {
|
|
|
104156
103472
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104157
103473
|
warning_code: 'many_active_backup_codes'
|
|
104158
103474
|
}
|
|
104159
|
-
| {
|
|
104160
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104161
|
-
message: string
|
|
104162
|
-
/** Date and time at which Seam created the warning. */
|
|
104163
|
-
created_at: string
|
|
104164
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
104165
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
104166
|
-
}
|
|
104167
103475
|
| {
|
|
104168
103476
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
104169
103477
|
message: string
|
|
@@ -113129,26 +112437,6 @@ export type Routes = {
|
|
|
113129
112437
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113130
112438
|
error_code: 'august_lock_not_authorized'
|
|
113131
112439
|
}
|
|
113132
|
-
| {
|
|
113133
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113134
|
-
message: string
|
|
113135
|
-
/** Indicates that the error is a device error. */
|
|
113136
|
-
is_device_error: true
|
|
113137
|
-
/** Date and time at which Seam created the error. */
|
|
113138
|
-
created_at: string
|
|
113139
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113140
|
-
error_code: 'august_lock_missing_bridge'
|
|
113141
|
-
}
|
|
113142
|
-
| {
|
|
113143
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113144
|
-
message: string
|
|
113145
|
-
/** Indicates that the error is a device error. */
|
|
113146
|
-
is_device_error: true
|
|
113147
|
-
/** Date and time at which Seam created the error. */
|
|
113148
|
-
created_at: string
|
|
113149
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113150
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
113151
|
-
}
|
|
113152
112440
|
| {
|
|
113153
112441
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113154
112442
|
message: string
|
|
@@ -113179,16 +112467,6 @@ export type Routes = {
|
|
|
113179
112467
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113180
112468
|
error_code: 'subscription_required'
|
|
113181
112469
|
}
|
|
113182
|
-
| {
|
|
113183
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
113184
|
-
message: string
|
|
113185
|
-
/** Indicates that the error is a device error. */
|
|
113186
|
-
is_device_error: true
|
|
113187
|
-
/** Date and time at which Seam created the error. */
|
|
113188
|
-
created_at: string
|
|
113189
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
113190
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
113191
|
-
}
|
|
113192
112470
|
| {
|
|
113193
112471
|
/** Date and time at which Seam created the error. */
|
|
113194
112472
|
created_at: string
|
|
@@ -113220,14 +112498,6 @@ export type Routes = {
|
|
|
113220
112498
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113221
112499
|
warning_code: 'many_active_backup_codes'
|
|
113222
112500
|
}
|
|
113223
|
-
| {
|
|
113224
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
113225
|
-
message: string
|
|
113226
|
-
/** Date and time at which Seam created the warning. */
|
|
113227
|
-
created_at: string
|
|
113228
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113229
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
113230
|
-
}
|
|
113231
112501
|
| {
|
|
113232
112502
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
113233
112503
|
message: string
|
|
@@ -119165,26 +118435,6 @@ export type Routes = {
|
|
|
119165
118435
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119166
118436
|
error_code: 'august_lock_not_authorized'
|
|
119167
118437
|
}
|
|
119168
|
-
| {
|
|
119169
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119170
|
-
message: string
|
|
119171
|
-
/** Indicates that the error is a device error. */
|
|
119172
|
-
is_device_error: true
|
|
119173
|
-
/** Date and time at which Seam created the error. */
|
|
119174
|
-
created_at: string
|
|
119175
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119176
|
-
error_code: 'august_lock_missing_bridge'
|
|
119177
|
-
}
|
|
119178
|
-
| {
|
|
119179
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119180
|
-
message: string
|
|
119181
|
-
/** Indicates that the error is a device error. */
|
|
119182
|
-
is_device_error: true
|
|
119183
|
-
/** Date and time at which Seam created the error. */
|
|
119184
|
-
created_at: string
|
|
119185
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119186
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
119187
|
-
}
|
|
119188
118438
|
| {
|
|
119189
118439
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119190
118440
|
message: string
|
|
@@ -119215,16 +118465,6 @@ export type Routes = {
|
|
|
119215
118465
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119216
118466
|
error_code: 'subscription_required'
|
|
119217
118467
|
}
|
|
119218
|
-
| {
|
|
119219
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
119220
|
-
message: string
|
|
119221
|
-
/** Indicates that the error is a device error. */
|
|
119222
|
-
is_device_error: true
|
|
119223
|
-
/** Date and time at which Seam created the error. */
|
|
119224
|
-
created_at: string
|
|
119225
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
119226
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
119227
|
-
}
|
|
119228
118468
|
| {
|
|
119229
118469
|
/** Date and time at which Seam created the error. */
|
|
119230
118470
|
created_at: string
|
|
@@ -119256,14 +118496,6 @@ export type Routes = {
|
|
|
119256
118496
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
119257
118497
|
warning_code: 'many_active_backup_codes'
|
|
119258
118498
|
}
|
|
119259
|
-
| {
|
|
119260
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
119261
|
-
message: string
|
|
119262
|
-
/** Date and time at which Seam created the warning. */
|
|
119263
|
-
created_at: string
|
|
119264
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
119265
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
119266
|
-
}
|
|
119267
118499
|
| {
|
|
119268
118500
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
119269
118501
|
message: string
|
|
@@ -121045,26 +120277,6 @@ export type Routes = {
|
|
|
121045
120277
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121046
120278
|
error_code: 'august_lock_not_authorized'
|
|
121047
120279
|
}
|
|
121048
|
-
| {
|
|
121049
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121050
|
-
message: string
|
|
121051
|
-
/** Indicates that the error is a device error. */
|
|
121052
|
-
is_device_error: true
|
|
121053
|
-
/** Date and time at which Seam created the error. */
|
|
121054
|
-
created_at: string
|
|
121055
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121056
|
-
error_code: 'august_lock_missing_bridge'
|
|
121057
|
-
}
|
|
121058
|
-
| {
|
|
121059
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121060
|
-
message: string
|
|
121061
|
-
/** Indicates that the error is a device error. */
|
|
121062
|
-
is_device_error: true
|
|
121063
|
-
/** Date and time at which Seam created the error. */
|
|
121064
|
-
created_at: string
|
|
121065
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121066
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
121067
|
-
}
|
|
121068
120280
|
| {
|
|
121069
120281
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121070
120282
|
message: string
|
|
@@ -121095,16 +120307,6 @@ export type Routes = {
|
|
|
121095
120307
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121096
120308
|
error_code: 'subscription_required'
|
|
121097
120309
|
}
|
|
121098
|
-
| {
|
|
121099
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
121100
|
-
message: string
|
|
121101
|
-
/** Indicates that the error is a device error. */
|
|
121102
|
-
is_device_error: true
|
|
121103
|
-
/** Date and time at which Seam created the error. */
|
|
121104
|
-
created_at: string
|
|
121105
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
121106
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
121107
|
-
}
|
|
121108
120310
|
| {
|
|
121109
120311
|
/** Date and time at which Seam created the error. */
|
|
121110
120312
|
created_at: string
|
|
@@ -121136,14 +120338,6 @@ export type Routes = {
|
|
|
121136
120338
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121137
120339
|
warning_code: 'many_active_backup_codes'
|
|
121138
120340
|
}
|
|
121139
|
-
| {
|
|
121140
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121141
|
-
message: string
|
|
121142
|
-
/** Date and time at which Seam created the warning. */
|
|
121143
|
-
created_at: string
|
|
121144
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
121145
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
121146
|
-
}
|
|
121147
120341
|
| {
|
|
121148
120342
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
121149
120343
|
message: string
|
|
@@ -131993,26 +131187,6 @@ export type Routes = {
|
|
|
131993
131187
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
131994
131188
|
error_code: 'august_lock_not_authorized'
|
|
131995
131189
|
}
|
|
131996
|
-
| {
|
|
131997
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
131998
|
-
message: string
|
|
131999
|
-
/** Indicates that the error is a device error. */
|
|
132000
|
-
is_device_error: true
|
|
132001
|
-
/** Date and time at which Seam created the error. */
|
|
132002
|
-
created_at: string
|
|
132003
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
132004
|
-
error_code: 'august_lock_missing_bridge'
|
|
132005
|
-
}
|
|
132006
|
-
| {
|
|
132007
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
132008
|
-
message: string
|
|
132009
|
-
/** Indicates that the error is a device error. */
|
|
132010
|
-
is_device_error: true
|
|
132011
|
-
/** Date and time at which Seam created the error. */
|
|
132012
|
-
created_at: string
|
|
132013
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
132014
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
132015
|
-
}
|
|
132016
131190
|
| {
|
|
132017
131191
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
132018
131192
|
message: string
|
|
@@ -132043,16 +131217,6 @@ export type Routes = {
|
|
|
132043
131217
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
132044
131218
|
error_code: 'subscription_required'
|
|
132045
131219
|
}
|
|
132046
|
-
| {
|
|
132047
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
132048
|
-
message: string
|
|
132049
|
-
/** Indicates that the error is a device error. */
|
|
132050
|
-
is_device_error: true
|
|
132051
|
-
/** Date and time at which Seam created the error. */
|
|
132052
|
-
created_at: string
|
|
132053
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
132054
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
132055
|
-
}
|
|
132056
131220
|
| {
|
|
132057
131221
|
/** Date and time at which Seam created the error. */
|
|
132058
131222
|
created_at: string
|
|
@@ -132084,14 +131248,6 @@ export type Routes = {
|
|
|
132084
131248
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
132085
131249
|
warning_code: 'many_active_backup_codes'
|
|
132086
131250
|
}
|
|
132087
|
-
| {
|
|
132088
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
132089
|
-
message: string
|
|
132090
|
-
/** Date and time at which Seam created the warning. */
|
|
132091
|
-
created_at: string
|
|
132092
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
132093
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
132094
|
-
}
|
|
132095
131251
|
| {
|
|
132096
131252
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
132097
131253
|
message: string
|
|
@@ -133875,26 +133031,6 @@ export type Routes = {
|
|
|
133875
133031
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
133876
133032
|
error_code: 'august_lock_not_authorized'
|
|
133877
133033
|
}
|
|
133878
|
-
| {
|
|
133879
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133880
|
-
message: string
|
|
133881
|
-
/** Indicates that the error is a device error. */
|
|
133882
|
-
is_device_error: true
|
|
133883
|
-
/** Date and time at which Seam created the error. */
|
|
133884
|
-
created_at: string
|
|
133885
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
133886
|
-
error_code: 'august_lock_missing_bridge'
|
|
133887
|
-
}
|
|
133888
|
-
| {
|
|
133889
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133890
|
-
message: string
|
|
133891
|
-
/** Indicates that the error is a device error. */
|
|
133892
|
-
is_device_error: true
|
|
133893
|
-
/** Date and time at which Seam created the error. */
|
|
133894
|
-
created_at: string
|
|
133895
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
133896
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
133897
|
-
}
|
|
133898
133034
|
| {
|
|
133899
133035
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133900
133036
|
message: string
|
|
@@ -133925,16 +133061,6 @@ export type Routes = {
|
|
|
133925
133061
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
133926
133062
|
error_code: 'subscription_required'
|
|
133927
133063
|
}
|
|
133928
|
-
| {
|
|
133929
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
133930
|
-
message: string
|
|
133931
|
-
/** Indicates that the error is a device error. */
|
|
133932
|
-
is_device_error: true
|
|
133933
|
-
/** Date and time at which Seam created the error. */
|
|
133934
|
-
created_at: string
|
|
133935
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
133936
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
133937
|
-
}
|
|
133938
133064
|
| {
|
|
133939
133065
|
/** Date and time at which Seam created the error. */
|
|
133940
133066
|
created_at: string
|
|
@@ -133966,14 +133092,6 @@ export type Routes = {
|
|
|
133966
133092
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133967
133093
|
warning_code: 'many_active_backup_codes'
|
|
133968
133094
|
}
|
|
133969
|
-
| {
|
|
133970
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133971
|
-
message: string
|
|
133972
|
-
/** Date and time at which Seam created the warning. */
|
|
133973
|
-
created_at: string
|
|
133974
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
133975
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
133976
|
-
}
|
|
133977
133095
|
| {
|
|
133978
133096
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
133979
133097
|
message: string
|
|
@@ -137279,26 +136397,6 @@ export type Routes = {
|
|
|
137279
136397
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137280
136398
|
error_code: 'august_lock_not_authorized'
|
|
137281
136399
|
}
|
|
137282
|
-
| {
|
|
137283
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137284
|
-
message: string
|
|
137285
|
-
/** Indicates that the error is a device error. */
|
|
137286
|
-
is_device_error: true
|
|
137287
|
-
/** Date and time at which Seam created the error. */
|
|
137288
|
-
created_at: string
|
|
137289
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137290
|
-
error_code: 'august_lock_missing_bridge'
|
|
137291
|
-
}
|
|
137292
|
-
| {
|
|
137293
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137294
|
-
message: string
|
|
137295
|
-
/** Indicates that the error is a device error. */
|
|
137296
|
-
is_device_error: true
|
|
137297
|
-
/** Date and time at which Seam created the error. */
|
|
137298
|
-
created_at: string
|
|
137299
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137300
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
137301
|
-
}
|
|
137302
136400
|
| {
|
|
137303
136401
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137304
136402
|
message: string
|
|
@@ -137329,16 +136427,6 @@ export type Routes = {
|
|
|
137329
136427
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137330
136428
|
error_code: 'subscription_required'
|
|
137331
136429
|
}
|
|
137332
|
-
| {
|
|
137333
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137334
|
-
message: string
|
|
137335
|
-
/** Indicates that the error is a device error. */
|
|
137336
|
-
is_device_error: true
|
|
137337
|
-
/** Date and time at which Seam created the error. */
|
|
137338
|
-
created_at: string
|
|
137339
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137340
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
137341
|
-
}
|
|
137342
136430
|
| {
|
|
137343
136431
|
/** Date and time at which Seam created the error. */
|
|
137344
136432
|
created_at: string
|
|
@@ -137370,14 +136458,6 @@ export type Routes = {
|
|
|
137370
136458
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137371
136459
|
warning_code: 'many_active_backup_codes'
|
|
137372
136460
|
}
|
|
137373
|
-
| {
|
|
137374
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137375
|
-
message: string
|
|
137376
|
-
/** Date and time at which Seam created the warning. */
|
|
137377
|
-
created_at: string
|
|
137378
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
137379
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
137380
|
-
}
|
|
137381
136461
|
| {
|
|
137382
136462
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
137383
136463
|
message: string
|
|
@@ -141371,26 +140451,6 @@ export type Routes = {
|
|
|
141371
140451
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141372
140452
|
error_code: 'august_lock_not_authorized'
|
|
141373
140453
|
}
|
|
141374
|
-
| {
|
|
141375
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141376
|
-
message: string
|
|
141377
|
-
/** Indicates that the error is a device error. */
|
|
141378
|
-
is_device_error: true
|
|
141379
|
-
/** Date and time at which Seam created the error. */
|
|
141380
|
-
created_at: string
|
|
141381
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141382
|
-
error_code: 'august_lock_missing_bridge'
|
|
141383
|
-
}
|
|
141384
|
-
| {
|
|
141385
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141386
|
-
message: string
|
|
141387
|
-
/** Indicates that the error is a device error. */
|
|
141388
|
-
is_device_error: true
|
|
141389
|
-
/** Date and time at which Seam created the error. */
|
|
141390
|
-
created_at: string
|
|
141391
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141392
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
141393
|
-
}
|
|
141394
140454
|
| {
|
|
141395
140455
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141396
140456
|
message: string
|
|
@@ -141421,16 +140481,6 @@ export type Routes = {
|
|
|
141421
140481
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141422
140482
|
error_code: 'subscription_required'
|
|
141423
140483
|
}
|
|
141424
|
-
| {
|
|
141425
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
141426
|
-
message: string
|
|
141427
|
-
/** Indicates that the error is a device error. */
|
|
141428
|
-
is_device_error: true
|
|
141429
|
-
/** Date and time at which Seam created the error. */
|
|
141430
|
-
created_at: string
|
|
141431
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
141432
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
141433
|
-
}
|
|
141434
140484
|
| {
|
|
141435
140485
|
/** Date and time at which Seam created the error. */
|
|
141436
140486
|
created_at: string
|
|
@@ -141462,14 +140512,6 @@ export type Routes = {
|
|
|
141462
140512
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141463
140513
|
warning_code: 'many_active_backup_codes'
|
|
141464
140514
|
}
|
|
141465
|
-
| {
|
|
141466
|
-
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141467
|
-
message: string
|
|
141468
|
-
/** Date and time at which Seam created the warning. */
|
|
141469
|
-
created_at: string
|
|
141470
|
-
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
141471
|
-
warning_code: 'wyze_device_missing_gateway'
|
|
141472
|
-
}
|
|
141473
140515
|
| {
|
|
141474
140516
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
141475
140517
|
message: string
|
|
@@ -146651,26 +145693,6 @@ export type Routes = {
|
|
|
146651
145693
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146652
145694
|
error_code: 'august_lock_not_authorized'
|
|
146653
145695
|
}
|
|
146654
|
-
| {
|
|
146655
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146656
|
-
message: string
|
|
146657
|
-
/** Indicates that the error is a device error. */
|
|
146658
|
-
is_device_error: true
|
|
146659
|
-
/** Date and time at which Seam created the error. */
|
|
146660
|
-
created_at: string
|
|
146661
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146662
|
-
error_code: 'august_lock_missing_bridge'
|
|
146663
|
-
}
|
|
146664
|
-
| {
|
|
146665
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146666
|
-
message: string
|
|
146667
|
-
/** Indicates that the error is a device error. */
|
|
146668
|
-
is_device_error: true
|
|
146669
|
-
/** Date and time at which Seam created the error. */
|
|
146670
|
-
created_at: string
|
|
146671
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146672
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
146673
|
-
}
|
|
146674
145696
|
| {
|
|
146675
145697
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146676
145698
|
message: string
|
|
@@ -146701,16 +145723,6 @@ export type Routes = {
|
|
|
146701
145723
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146702
145724
|
error_code: 'subscription_required'
|
|
146703
145725
|
}
|
|
146704
|
-
| {
|
|
146705
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146706
|
-
message: string
|
|
146707
|
-
/** Indicates that the error is a device error. */
|
|
146708
|
-
is_device_error: true
|
|
146709
|
-
/** Date and time at which Seam created the error. */
|
|
146710
|
-
created_at: string
|
|
146711
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146712
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
146713
|
-
}
|
|
146714
145726
|
| {
|
|
146715
145727
|
/** Date and time at which Seam created the error. */
|
|
146716
145728
|
created_at: string
|
|
@@ -146819,6 +145831,14 @@ export type Routes = {
|
|
|
146819
145831
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
146820
145832
|
warning_code: 'being_deleted'
|
|
146821
145833
|
}
|
|
145834
|
+
| {
|
|
145835
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
145836
|
+
message: string
|
|
145837
|
+
/** Date and time at which Seam created the warning. */
|
|
145838
|
+
created_at?: string | undefined
|
|
145839
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
145840
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
145841
|
+
}
|
|
146822
145842
|
)[]
|
|
146823
145843
|
/** Indicates that Seam does not manage the access code. */
|
|
146824
145844
|
is_managed: false
|
|
@@ -147072,26 +146092,6 @@ export type Routes = {
|
|
|
147072
146092
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147073
146093
|
error_code: 'august_lock_not_authorized'
|
|
147074
146094
|
}
|
|
147075
|
-
| {
|
|
147076
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147077
|
-
message: string
|
|
147078
|
-
/** Indicates that the error is a device error. */
|
|
147079
|
-
is_device_error: true
|
|
147080
|
-
/** Date and time at which Seam created the error. */
|
|
147081
|
-
created_at: string
|
|
147082
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147083
|
-
error_code: 'august_lock_missing_bridge'
|
|
147084
|
-
}
|
|
147085
|
-
| {
|
|
147086
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147087
|
-
message: string
|
|
147088
|
-
/** Indicates that the error is a device error. */
|
|
147089
|
-
is_device_error: true
|
|
147090
|
-
/** Date and time at which Seam created the error. */
|
|
147091
|
-
created_at: string
|
|
147092
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147093
|
-
error_code: 'ttlock_lock_not_paired_to_gateway'
|
|
147094
|
-
}
|
|
147095
146095
|
| {
|
|
147096
146096
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147097
146097
|
message: string
|
|
@@ -147122,16 +146122,6 @@ export type Routes = {
|
|
|
147122
146122
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147123
146123
|
error_code: 'subscription_required'
|
|
147124
146124
|
}
|
|
147125
|
-
| {
|
|
147126
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147127
|
-
message: string
|
|
147128
|
-
/** Indicates that the error is a device error. */
|
|
147129
|
-
is_device_error: true
|
|
147130
|
-
/** Date and time at which Seam created the error. */
|
|
147131
|
-
created_at: string
|
|
147132
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147133
|
-
error_code: 'lockly_missing_wifi_bridge'
|
|
147134
|
-
}
|
|
147135
146125
|
| {
|
|
147136
146126
|
/** Date and time at which Seam created the error. */
|
|
147137
146127
|
created_at: string
|
|
@@ -147240,6 +146230,14 @@ export type Routes = {
|
|
|
147240
146230
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
147241
146231
|
warning_code: 'being_deleted'
|
|
147242
146232
|
}
|
|
146233
|
+
| {
|
|
146234
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
146235
|
+
message: string
|
|
146236
|
+
/** Date and time at which Seam created the warning. */
|
|
146237
|
+
created_at?: string | undefined
|
|
146238
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
146239
|
+
warning_code: 'unknown_issue_with_access_code'
|
|
146240
|
+
}
|
|
147243
146241
|
)[]
|
|
147244
146242
|
/** Indicates whether Seam manages the access code. */
|
|
147245
146243
|
is_managed: true
|