@seamapi/types 1.869.0 → 1.871.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 +283 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +1075 -0
- package/dist/index.cjs +283 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +333 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +61 -3
- 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 +123 -0
- package/lib/seam/connect/models/batch.d.ts +330 -0
- package/lib/seam/connect/openapi.js +222 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +418 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -3
- package/src/lib/seam/connect/openapi.ts +256 -0
- package/src/lib/seam/connect/route-types.ts +484 -0
|
@@ -1904,6 +1904,16 @@ export type Routes = {
|
|
|
1904
1904
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1905
1905
|
error_code: 'no_space_for_access_code_on_device'
|
|
1906
1906
|
}
|
|
1907
|
+
| {
|
|
1908
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1909
|
+
message: string
|
|
1910
|
+
/** Indicates that this is an access code error. */
|
|
1911
|
+
is_access_code_error: true
|
|
1912
|
+
/** Date and time at which Seam created the error. */
|
|
1913
|
+
created_at?: string | undefined
|
|
1914
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1915
|
+
error_code: 'access_code_state_unconfirmed'
|
|
1916
|
+
}
|
|
1907
1917
|
| {
|
|
1908
1918
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1909
1919
|
message: string
|
|
@@ -1933,6 +1943,19 @@ export type Routes = {
|
|
|
1933
1943
|
created_at?: string | undefined
|
|
1934
1944
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1935
1945
|
error_code: 'code_modified_external_to_seam'
|
|
1946
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
1947
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
1948
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
1949
|
+
modified_fields?:
|
|
1950
|
+
| {
|
|
1951
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
1952
|
+
field: string
|
|
1953
|
+
/** The previous value of the field. */
|
|
1954
|
+
from: string | null
|
|
1955
|
+
/** The new value of the field. */
|
|
1956
|
+
to: string | null
|
|
1957
|
+
}[]
|
|
1958
|
+
| undefined
|
|
1936
1959
|
}
|
|
1937
1960
|
| {
|
|
1938
1961
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2232,6 +2255,19 @@ export type Routes = {
|
|
|
2232
2255
|
created_at?: string | undefined
|
|
2233
2256
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2234
2257
|
warning_code: 'code_modified_external_to_seam'
|
|
2258
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
2259
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
2260
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
2261
|
+
modified_fields?:
|
|
2262
|
+
| {
|
|
2263
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
2264
|
+
field: string
|
|
2265
|
+
/** The previous value of the field. */
|
|
2266
|
+
from: string | null
|
|
2267
|
+
/** The new value of the field. */
|
|
2268
|
+
to: string | null
|
|
2269
|
+
}[]
|
|
2270
|
+
| undefined
|
|
2235
2271
|
}
|
|
2236
2272
|
| {
|
|
2237
2273
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2289,6 +2325,14 @@ export type Routes = {
|
|
|
2289
2325
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2290
2326
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
2291
2327
|
}
|
|
2328
|
+
| {
|
|
2329
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2330
|
+
message: string
|
|
2331
|
+
/** Date and time at which Seam created the warning. */
|
|
2332
|
+
created_at?: string | undefined
|
|
2333
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2334
|
+
warning_code: 'access_code_inactive'
|
|
2335
|
+
}
|
|
2292
2336
|
| {
|
|
2293
2337
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2294
2338
|
message: string
|
|
@@ -2581,6 +2625,16 @@ export type Routes = {
|
|
|
2581
2625
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2582
2626
|
error_code: 'no_space_for_access_code_on_device'
|
|
2583
2627
|
}
|
|
2628
|
+
| {
|
|
2629
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2630
|
+
message: string
|
|
2631
|
+
/** Indicates that this is an access code error. */
|
|
2632
|
+
is_access_code_error: true
|
|
2633
|
+
/** Date and time at which Seam created the error. */
|
|
2634
|
+
created_at?: string | undefined
|
|
2635
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2636
|
+
error_code: 'access_code_state_unconfirmed'
|
|
2637
|
+
}
|
|
2584
2638
|
| {
|
|
2585
2639
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2586
2640
|
message: string
|
|
@@ -2610,6 +2664,19 @@ export type Routes = {
|
|
|
2610
2664
|
created_at?: string | undefined
|
|
2611
2665
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2612
2666
|
error_code: 'code_modified_external_to_seam'
|
|
2667
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
2668
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
2669
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
2670
|
+
modified_fields?:
|
|
2671
|
+
| {
|
|
2672
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
2673
|
+
field: string
|
|
2674
|
+
/** The previous value of the field. */
|
|
2675
|
+
from: string | null
|
|
2676
|
+
/** The new value of the field. */
|
|
2677
|
+
to: string | null
|
|
2678
|
+
}[]
|
|
2679
|
+
| undefined
|
|
2613
2680
|
}
|
|
2614
2681
|
| {
|
|
2615
2682
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2909,6 +2976,19 @@ export type Routes = {
|
|
|
2909
2976
|
created_at?: string | undefined
|
|
2910
2977
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2911
2978
|
warning_code: 'code_modified_external_to_seam'
|
|
2979
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
2980
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
2981
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
2982
|
+
modified_fields?:
|
|
2983
|
+
| {
|
|
2984
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
2985
|
+
field: string
|
|
2986
|
+
/** The previous value of the field. */
|
|
2987
|
+
from: string | null
|
|
2988
|
+
/** The new value of the field. */
|
|
2989
|
+
to: string | null
|
|
2990
|
+
}[]
|
|
2991
|
+
| undefined
|
|
2912
2992
|
}
|
|
2913
2993
|
| {
|
|
2914
2994
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -2966,6 +3046,14 @@ export type Routes = {
|
|
|
2966
3046
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2967
3047
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
2968
3048
|
}
|
|
3049
|
+
| {
|
|
3050
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
3051
|
+
message: string
|
|
3052
|
+
/** Date and time at which Seam created the warning. */
|
|
3053
|
+
created_at?: string | undefined
|
|
3054
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
3055
|
+
warning_code: 'access_code_inactive'
|
|
3056
|
+
}
|
|
2969
3057
|
| {
|
|
2970
3058
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2971
3059
|
message: string
|
|
@@ -5030,6 +5118,16 @@ export type Routes = {
|
|
|
5030
5118
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5031
5119
|
error_code: 'no_space_for_access_code_on_device'
|
|
5032
5120
|
}
|
|
5121
|
+
| {
|
|
5122
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5123
|
+
message: string
|
|
5124
|
+
/** Indicates that this is an access code error. */
|
|
5125
|
+
is_access_code_error: true
|
|
5126
|
+
/** Date and time at which Seam created the error. */
|
|
5127
|
+
created_at?: string | undefined
|
|
5128
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5129
|
+
error_code: 'access_code_state_unconfirmed'
|
|
5130
|
+
}
|
|
5033
5131
|
| {
|
|
5034
5132
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5035
5133
|
message: string
|
|
@@ -5059,6 +5157,19 @@ export type Routes = {
|
|
|
5059
5157
|
created_at?: string | undefined
|
|
5060
5158
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5061
5159
|
error_code: 'code_modified_external_to_seam'
|
|
5160
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
5161
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
5162
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
5163
|
+
modified_fields?:
|
|
5164
|
+
| {
|
|
5165
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
5166
|
+
field: string
|
|
5167
|
+
/** The previous value of the field. */
|
|
5168
|
+
from: string | null
|
|
5169
|
+
/** The new value of the field. */
|
|
5170
|
+
to: string | null
|
|
5171
|
+
}[]
|
|
5172
|
+
| undefined
|
|
5062
5173
|
}
|
|
5063
5174
|
| {
|
|
5064
5175
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -5358,6 +5469,19 @@ export type Routes = {
|
|
|
5358
5469
|
created_at?: string | undefined
|
|
5359
5470
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5360
5471
|
warning_code: 'code_modified_external_to_seam'
|
|
5472
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
5473
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
5474
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
5475
|
+
modified_fields?:
|
|
5476
|
+
| {
|
|
5477
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
5478
|
+
field: string
|
|
5479
|
+
/** The previous value of the field. */
|
|
5480
|
+
from: string | null
|
|
5481
|
+
/** The new value of the field. */
|
|
5482
|
+
to: string | null
|
|
5483
|
+
}[]
|
|
5484
|
+
| undefined
|
|
5361
5485
|
}
|
|
5362
5486
|
| {
|
|
5363
5487
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -5415,6 +5539,14 @@ export type Routes = {
|
|
|
5415
5539
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5416
5540
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
5417
5541
|
}
|
|
5542
|
+
| {
|
|
5543
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5544
|
+
message: string
|
|
5545
|
+
/** Date and time at which Seam created the warning. */
|
|
5546
|
+
created_at?: string | undefined
|
|
5547
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5548
|
+
warning_code: 'access_code_inactive'
|
|
5549
|
+
}
|
|
5418
5550
|
| {
|
|
5419
5551
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5420
5552
|
message: string
|
|
@@ -5794,6 +5926,16 @@ export type Routes = {
|
|
|
5794
5926
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5795
5927
|
error_code: 'no_space_for_access_code_on_device'
|
|
5796
5928
|
}
|
|
5929
|
+
| {
|
|
5930
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5931
|
+
message: string
|
|
5932
|
+
/** Indicates that this is an access code error. */
|
|
5933
|
+
is_access_code_error: true
|
|
5934
|
+
/** Date and time at which Seam created the error. */
|
|
5935
|
+
created_at?: string | undefined
|
|
5936
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5937
|
+
error_code: 'access_code_state_unconfirmed'
|
|
5938
|
+
}
|
|
5797
5939
|
| {
|
|
5798
5940
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5799
5941
|
message: string
|
|
@@ -5823,6 +5965,19 @@ export type Routes = {
|
|
|
5823
5965
|
created_at?: string | undefined
|
|
5824
5966
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5825
5967
|
error_code: 'code_modified_external_to_seam'
|
|
5968
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
5969
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
5970
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
5971
|
+
modified_fields?:
|
|
5972
|
+
| {
|
|
5973
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
5974
|
+
field: string
|
|
5975
|
+
/** The previous value of the field. */
|
|
5976
|
+
from: string | null
|
|
5977
|
+
/** The new value of the field. */
|
|
5978
|
+
to: string | null
|
|
5979
|
+
}[]
|
|
5980
|
+
| undefined
|
|
5826
5981
|
}
|
|
5827
5982
|
| {
|
|
5828
5983
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6122,6 +6277,19 @@ export type Routes = {
|
|
|
6122
6277
|
created_at?: string | undefined
|
|
6123
6278
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6124
6279
|
warning_code: 'code_modified_external_to_seam'
|
|
6280
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
6281
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
6282
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
6283
|
+
modified_fields?:
|
|
6284
|
+
| {
|
|
6285
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
6286
|
+
field: string
|
|
6287
|
+
/** The previous value of the field. */
|
|
6288
|
+
from: string | null
|
|
6289
|
+
/** The new value of the field. */
|
|
6290
|
+
to: string | null
|
|
6291
|
+
}[]
|
|
6292
|
+
| undefined
|
|
6125
6293
|
}
|
|
6126
6294
|
| {
|
|
6127
6295
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6179,6 +6347,14 @@ export type Routes = {
|
|
|
6179
6347
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6180
6348
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
6181
6349
|
}
|
|
6350
|
+
| {
|
|
6351
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6352
|
+
message: string
|
|
6353
|
+
/** Date and time at which Seam created the warning. */
|
|
6354
|
+
created_at?: string | undefined
|
|
6355
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6356
|
+
warning_code: 'access_code_inactive'
|
|
6357
|
+
}
|
|
6182
6358
|
| {
|
|
6183
6359
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6184
6360
|
message: string
|
|
@@ -6460,6 +6636,16 @@ export type Routes = {
|
|
|
6460
6636
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6461
6637
|
error_code: 'no_space_for_access_code_on_device'
|
|
6462
6638
|
}
|
|
6639
|
+
| {
|
|
6640
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6641
|
+
message: string
|
|
6642
|
+
/** Indicates that this is an access code error. */
|
|
6643
|
+
is_access_code_error: true
|
|
6644
|
+
/** Date and time at which Seam created the error. */
|
|
6645
|
+
created_at?: string | undefined
|
|
6646
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6647
|
+
error_code: 'access_code_state_unconfirmed'
|
|
6648
|
+
}
|
|
6463
6649
|
| {
|
|
6464
6650
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6465
6651
|
message: string
|
|
@@ -6489,6 +6675,19 @@ export type Routes = {
|
|
|
6489
6675
|
created_at?: string | undefined
|
|
6490
6676
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6491
6677
|
error_code: 'code_modified_external_to_seam'
|
|
6678
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
6679
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
6680
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
6681
|
+
modified_fields?:
|
|
6682
|
+
| {
|
|
6683
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
6684
|
+
field: string
|
|
6685
|
+
/** The previous value of the field. */
|
|
6686
|
+
from: string | null
|
|
6687
|
+
/** The new value of the field. */
|
|
6688
|
+
to: string | null
|
|
6689
|
+
}[]
|
|
6690
|
+
| undefined
|
|
6492
6691
|
}
|
|
6493
6692
|
| {
|
|
6494
6693
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6788,6 +6987,19 @@ export type Routes = {
|
|
|
6788
6987
|
created_at?: string | undefined
|
|
6789
6988
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6790
6989
|
warning_code: 'code_modified_external_to_seam'
|
|
6990
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
6991
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
6992
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
6993
|
+
modified_fields?:
|
|
6994
|
+
| {
|
|
6995
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
6996
|
+
field: string
|
|
6997
|
+
/** The previous value of the field. */
|
|
6998
|
+
from: string | null
|
|
6999
|
+
/** The new value of the field. */
|
|
7000
|
+
to: string | null
|
|
7001
|
+
}[]
|
|
7002
|
+
| undefined
|
|
6791
7003
|
}
|
|
6792
7004
|
| {
|
|
6793
7005
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -6845,6 +7057,14 @@ export type Routes = {
|
|
|
6845
7057
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6846
7058
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
6847
7059
|
}
|
|
7060
|
+
| {
|
|
7061
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7062
|
+
message: string
|
|
7063
|
+
/** Date and time at which Seam created the warning. */
|
|
7064
|
+
created_at?: string | undefined
|
|
7065
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7066
|
+
warning_code: 'access_code_inactive'
|
|
7067
|
+
}
|
|
6848
7068
|
| {
|
|
6849
7069
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6850
7070
|
message: string
|
|
@@ -7103,6 +7323,16 @@ export type Routes = {
|
|
|
7103
7323
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7104
7324
|
error_code: 'no_space_for_access_code_on_device'
|
|
7105
7325
|
}
|
|
7326
|
+
| {
|
|
7327
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7328
|
+
message: string
|
|
7329
|
+
/** Indicates that this is an access code error. */
|
|
7330
|
+
is_access_code_error: true
|
|
7331
|
+
/** Date and time at which Seam created the error. */
|
|
7332
|
+
created_at?: string | undefined
|
|
7333
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7334
|
+
error_code: 'access_code_state_unconfirmed'
|
|
7335
|
+
}
|
|
7106
7336
|
| {
|
|
7107
7337
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7108
7338
|
message: string
|
|
@@ -7132,6 +7362,19 @@ export type Routes = {
|
|
|
7132
7362
|
created_at?: string | undefined
|
|
7133
7363
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7134
7364
|
error_code: 'code_modified_external_to_seam'
|
|
7365
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
7366
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
7367
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
7368
|
+
modified_fields?:
|
|
7369
|
+
| {
|
|
7370
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
7371
|
+
field: string
|
|
7372
|
+
/** The previous value of the field. */
|
|
7373
|
+
from: string | null
|
|
7374
|
+
/** The new value of the field. */
|
|
7375
|
+
to: string | null
|
|
7376
|
+
}[]
|
|
7377
|
+
| undefined
|
|
7135
7378
|
}
|
|
7136
7379
|
| {
|
|
7137
7380
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -7431,6 +7674,19 @@ export type Routes = {
|
|
|
7431
7674
|
created_at?: string | undefined
|
|
7432
7675
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7433
7676
|
warning_code: 'code_modified_external_to_seam'
|
|
7677
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
7678
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
7679
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
7680
|
+
modified_fields?:
|
|
7681
|
+
| {
|
|
7682
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
7683
|
+
field: string
|
|
7684
|
+
/** The previous value of the field. */
|
|
7685
|
+
from: string | null
|
|
7686
|
+
/** The new value of the field. */
|
|
7687
|
+
to: string | null
|
|
7688
|
+
}[]
|
|
7689
|
+
| undefined
|
|
7434
7690
|
}
|
|
7435
7691
|
| {
|
|
7436
7692
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -7488,6 +7744,14 @@ export type Routes = {
|
|
|
7488
7744
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7489
7745
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
7490
7746
|
}
|
|
7747
|
+
| {
|
|
7748
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7749
|
+
message: string
|
|
7750
|
+
/** Date and time at which Seam created the warning. */
|
|
7751
|
+
created_at?: string | undefined
|
|
7752
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7753
|
+
warning_code: 'access_code_inactive'
|
|
7754
|
+
}
|
|
7491
7755
|
| {
|
|
7492
7756
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7493
7757
|
message: string
|
|
@@ -7781,6 +8045,16 @@ export type Routes = {
|
|
|
7781
8045
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7782
8046
|
error_code: 'no_space_for_access_code_on_device'
|
|
7783
8047
|
}
|
|
8048
|
+
| {
|
|
8049
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8050
|
+
message: string
|
|
8051
|
+
/** Indicates that this is an access code error. */
|
|
8052
|
+
is_access_code_error: true
|
|
8053
|
+
/** Date and time at which Seam created the error. */
|
|
8054
|
+
created_at?: string | undefined
|
|
8055
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8056
|
+
error_code: 'access_code_state_unconfirmed'
|
|
8057
|
+
}
|
|
7784
8058
|
| {
|
|
7785
8059
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7786
8060
|
message: string
|
|
@@ -7810,6 +8084,19 @@ export type Routes = {
|
|
|
7810
8084
|
created_at?: string | undefined
|
|
7811
8085
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7812
8086
|
error_code: 'code_modified_external_to_seam'
|
|
8087
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
8088
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
8089
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
8090
|
+
modified_fields?:
|
|
8091
|
+
| {
|
|
8092
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
8093
|
+
field: string
|
|
8094
|
+
/** The previous value of the field. */
|
|
8095
|
+
from: string | null
|
|
8096
|
+
/** The new value of the field. */
|
|
8097
|
+
to: string | null
|
|
8098
|
+
}[]
|
|
8099
|
+
| undefined
|
|
7813
8100
|
}
|
|
7814
8101
|
| {
|
|
7815
8102
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -8109,6 +8396,19 @@ export type Routes = {
|
|
|
8109
8396
|
created_at?: string | undefined
|
|
8110
8397
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8111
8398
|
warning_code: 'code_modified_external_to_seam'
|
|
8399
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
8400
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
8401
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
8402
|
+
modified_fields?:
|
|
8403
|
+
| {
|
|
8404
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
8405
|
+
field: string
|
|
8406
|
+
/** The previous value of the field. */
|
|
8407
|
+
from: string | null
|
|
8408
|
+
/** The new value of the field. */
|
|
8409
|
+
to: string | null
|
|
8410
|
+
}[]
|
|
8411
|
+
| undefined
|
|
8112
8412
|
}
|
|
8113
8413
|
| {
|
|
8114
8414
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -8166,6 +8466,14 @@ export type Routes = {
|
|
|
8166
8466
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8167
8467
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
8168
8468
|
}
|
|
8469
|
+
| {
|
|
8470
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8471
|
+
message: string
|
|
8472
|
+
/** Date and time at which Seam created the warning. */
|
|
8473
|
+
created_at?: string | undefined
|
|
8474
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8475
|
+
warning_code: 'access_code_inactive'
|
|
8476
|
+
}
|
|
8169
8477
|
| {
|
|
8170
8478
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8171
8479
|
message: string
|
|
@@ -10134,6 +10442,16 @@ export type Routes = {
|
|
|
10134
10442
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10135
10443
|
error_code: 'no_space_for_access_code_on_device'
|
|
10136
10444
|
}
|
|
10445
|
+
| {
|
|
10446
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10447
|
+
message: string
|
|
10448
|
+
/** Indicates that this is an access code error. */
|
|
10449
|
+
is_access_code_error: true
|
|
10450
|
+
/** Date and time at which Seam created the error. */
|
|
10451
|
+
created_at?: string | undefined
|
|
10452
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10453
|
+
error_code: 'access_code_state_unconfirmed'
|
|
10454
|
+
}
|
|
10137
10455
|
| {
|
|
10138
10456
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10139
10457
|
message: string
|
|
@@ -10163,6 +10481,19 @@ export type Routes = {
|
|
|
10163
10481
|
created_at?: string | undefined
|
|
10164
10482
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10165
10483
|
error_code: 'code_modified_external_to_seam'
|
|
10484
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
10485
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
10486
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
10487
|
+
modified_fields?:
|
|
10488
|
+
| {
|
|
10489
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
10490
|
+
field: string
|
|
10491
|
+
/** The previous value of the field. */
|
|
10492
|
+
from: string | null
|
|
10493
|
+
/** The new value of the field. */
|
|
10494
|
+
to: string | null
|
|
10495
|
+
}[]
|
|
10496
|
+
| undefined
|
|
10166
10497
|
}
|
|
10167
10498
|
| {
|
|
10168
10499
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -10462,6 +10793,19 @@ export type Routes = {
|
|
|
10462
10793
|
created_at?: string | undefined
|
|
10463
10794
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10464
10795
|
warning_code: 'code_modified_external_to_seam'
|
|
10796
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
10797
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
10798
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
10799
|
+
modified_fields?:
|
|
10800
|
+
| {
|
|
10801
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
10802
|
+
field: string
|
|
10803
|
+
/** The previous value of the field. */
|
|
10804
|
+
from: string | null
|
|
10805
|
+
/** The new value of the field. */
|
|
10806
|
+
to: string | null
|
|
10807
|
+
}[]
|
|
10808
|
+
| undefined
|
|
10465
10809
|
}
|
|
10466
10810
|
| {
|
|
10467
10811
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -10519,6 +10863,14 @@ export type Routes = {
|
|
|
10519
10863
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10520
10864
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
10521
10865
|
}
|
|
10866
|
+
| {
|
|
10867
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10868
|
+
message: string
|
|
10869
|
+
/** Date and time at which Seam created the warning. */
|
|
10870
|
+
created_at?: string | undefined
|
|
10871
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10872
|
+
warning_code: 'access_code_inactive'
|
|
10873
|
+
}
|
|
10522
10874
|
| {
|
|
10523
10875
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10524
10876
|
message: string
|
|
@@ -10691,6 +11043,16 @@ export type Routes = {
|
|
|
10691
11043
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10692
11044
|
error_code: 'no_space_for_access_code_on_device'
|
|
10693
11045
|
}
|
|
11046
|
+
| {
|
|
11047
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11048
|
+
message: string
|
|
11049
|
+
/** Indicates that this is an access code error. */
|
|
11050
|
+
is_access_code_error: true
|
|
11051
|
+
/** Date and time at which Seam created the error. */
|
|
11052
|
+
created_at?: string | undefined
|
|
11053
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11054
|
+
error_code: 'access_code_state_unconfirmed'
|
|
11055
|
+
}
|
|
10694
11056
|
| {
|
|
10695
11057
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10696
11058
|
message: string
|
|
@@ -10720,6 +11082,19 @@ export type Routes = {
|
|
|
10720
11082
|
created_at?: string | undefined
|
|
10721
11083
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10722
11084
|
error_code: 'code_modified_external_to_seam'
|
|
11085
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
11086
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
11087
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
11088
|
+
modified_fields?:
|
|
11089
|
+
| {
|
|
11090
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
11091
|
+
field: string
|
|
11092
|
+
/** The previous value of the field. */
|
|
11093
|
+
from: string | null
|
|
11094
|
+
/** The new value of the field. */
|
|
11095
|
+
to: string | null
|
|
11096
|
+
}[]
|
|
11097
|
+
| undefined
|
|
10723
11098
|
}
|
|
10724
11099
|
| {
|
|
10725
11100
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -11019,6 +11394,19 @@ export type Routes = {
|
|
|
11019
11394
|
created_at?: string | undefined
|
|
11020
11395
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11021
11396
|
warning_code: 'code_modified_external_to_seam'
|
|
11397
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
11398
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
11399
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
11400
|
+
modified_fields?:
|
|
11401
|
+
| {
|
|
11402
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
11403
|
+
field: string
|
|
11404
|
+
/** The previous value of the field. */
|
|
11405
|
+
from: string | null
|
|
11406
|
+
/** The new value of the field. */
|
|
11407
|
+
to: string | null
|
|
11408
|
+
}[]
|
|
11409
|
+
| undefined
|
|
11022
11410
|
}
|
|
11023
11411
|
| {
|
|
11024
11412
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -11076,6 +11464,14 @@ export type Routes = {
|
|
|
11076
11464
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11077
11465
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
11078
11466
|
}
|
|
11467
|
+
| {
|
|
11468
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11469
|
+
message: string
|
|
11470
|
+
/** Date and time at which Seam created the warning. */
|
|
11471
|
+
created_at?: string | undefined
|
|
11472
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11473
|
+
warning_code: 'access_code_inactive'
|
|
11474
|
+
}
|
|
11079
11475
|
| {
|
|
11080
11476
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11081
11477
|
message: string
|
|
@@ -128368,6 +128764,16 @@ export type Routes = {
|
|
|
128368
128764
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128369
128765
|
error_code: 'no_space_for_access_code_on_device'
|
|
128370
128766
|
}
|
|
128767
|
+
| {
|
|
128768
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128769
|
+
message: string
|
|
128770
|
+
/** Indicates that this is an access code error. */
|
|
128771
|
+
is_access_code_error: true
|
|
128772
|
+
/** Date and time at which Seam created the error. */
|
|
128773
|
+
created_at?: string | undefined
|
|
128774
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128775
|
+
error_code: 'access_code_state_unconfirmed'
|
|
128776
|
+
}
|
|
128371
128777
|
| {
|
|
128372
128778
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128373
128779
|
message: string
|
|
@@ -128397,6 +128803,19 @@ export type Routes = {
|
|
|
128397
128803
|
created_at?: string | undefined
|
|
128398
128804
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128399
128805
|
error_code: 'code_modified_external_to_seam'
|
|
128806
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
128807
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
128808
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
128809
|
+
modified_fields?:
|
|
128810
|
+
| {
|
|
128811
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
128812
|
+
field: string
|
|
128813
|
+
/** The previous value of the field. */
|
|
128814
|
+
from: string | null
|
|
128815
|
+
/** The new value of the field. */
|
|
128816
|
+
to: string | null
|
|
128817
|
+
}[]
|
|
128818
|
+
| undefined
|
|
128400
128819
|
}
|
|
128401
128820
|
| {
|
|
128402
128821
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -128696,6 +129115,19 @@ export type Routes = {
|
|
|
128696
129115
|
created_at?: string | undefined
|
|
128697
129116
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128698
129117
|
warning_code: 'code_modified_external_to_seam'
|
|
129118
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
129119
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
129120
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
129121
|
+
modified_fields?:
|
|
129122
|
+
| {
|
|
129123
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
129124
|
+
field: string
|
|
129125
|
+
/** The previous value of the field. */
|
|
129126
|
+
from: string | null
|
|
129127
|
+
/** The new value of the field. */
|
|
129128
|
+
to: string | null
|
|
129129
|
+
}[]
|
|
129130
|
+
| undefined
|
|
128699
129131
|
}
|
|
128700
129132
|
| {
|
|
128701
129133
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -128753,6 +129185,14 @@ export type Routes = {
|
|
|
128753
129185
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
128754
129186
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
128755
129187
|
}
|
|
129188
|
+
| {
|
|
129189
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129190
|
+
message: string
|
|
129191
|
+
/** Date and time at which Seam created the warning. */
|
|
129192
|
+
created_at?: string | undefined
|
|
129193
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129194
|
+
warning_code: 'access_code_inactive'
|
|
129195
|
+
}
|
|
128756
129196
|
| {
|
|
128757
129197
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
128758
129198
|
message: string
|
|
@@ -128911,6 +129351,16 @@ export type Routes = {
|
|
|
128911
129351
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128912
129352
|
error_code: 'no_space_for_access_code_on_device'
|
|
128913
129353
|
}
|
|
129354
|
+
| {
|
|
129355
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129356
|
+
message: string
|
|
129357
|
+
/** Indicates that this is an access code error. */
|
|
129358
|
+
is_access_code_error: true
|
|
129359
|
+
/** Date and time at which Seam created the error. */
|
|
129360
|
+
created_at?: string | undefined
|
|
129361
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129362
|
+
error_code: 'access_code_state_unconfirmed'
|
|
129363
|
+
}
|
|
128914
129364
|
| {
|
|
128915
129365
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128916
129366
|
message: string
|
|
@@ -128940,6 +129390,19 @@ export type Routes = {
|
|
|
128940
129390
|
created_at?: string | undefined
|
|
128941
129391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128942
129392
|
error_code: 'code_modified_external_to_seam'
|
|
129393
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
129394
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
129395
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
129396
|
+
modified_fields?:
|
|
129397
|
+
| {
|
|
129398
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
129399
|
+
field: string
|
|
129400
|
+
/** The previous value of the field. */
|
|
129401
|
+
from: string | null
|
|
129402
|
+
/** The new value of the field. */
|
|
129403
|
+
to: string | null
|
|
129404
|
+
}[]
|
|
129405
|
+
| undefined
|
|
128943
129406
|
}
|
|
128944
129407
|
| {
|
|
128945
129408
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -129239,6 +129702,19 @@ export type Routes = {
|
|
|
129239
129702
|
created_at?: string | undefined
|
|
129240
129703
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129241
129704
|
warning_code: 'code_modified_external_to_seam'
|
|
129705
|
+
/** Indicates the type of external modification. `modified` means the code's PIN or schedule was changed. `removed` means the code was deleted from the device. */
|
|
129706
|
+
change_type?: ('modified' | 'removed') | undefined
|
|
129707
|
+
/** List of fields that were changed externally, with their previous and new values. */
|
|
129708
|
+
modified_fields?:
|
|
129709
|
+
| {
|
|
129710
|
+
/** The name of the field that was changed (e.g. `code`, `starts_at`, `ends_at`). */
|
|
129711
|
+
field: string
|
|
129712
|
+
/** The previous value of the field. */
|
|
129713
|
+
from: string | null
|
|
129714
|
+
/** The new value of the field. */
|
|
129715
|
+
to: string | null
|
|
129716
|
+
}[]
|
|
129717
|
+
| undefined
|
|
129242
129718
|
}
|
|
129243
129719
|
| {
|
|
129244
129720
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
@@ -129296,6 +129772,14 @@ export type Routes = {
|
|
|
129296
129772
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129297
129773
|
warning_code: 'kwikset_unable_to_confirm_code'
|
|
129298
129774
|
}
|
|
129775
|
+
| {
|
|
129776
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129777
|
+
message: string
|
|
129778
|
+
/** Date and time at which Seam created the warning. */
|
|
129779
|
+
created_at?: string | undefined
|
|
129780
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129781
|
+
warning_code: 'access_code_inactive'
|
|
129782
|
+
}
|
|
129299
129783
|
| {
|
|
129300
129784
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129301
129785
|
message: string
|