@seamapi/types 1.871.0 → 1.872.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 +301 -28
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +668 -0
- package/dist/index.cjs +301 -28
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +210 -10
- package/lib/seam/connect/models/access-codes/managed-access-code.js +85 -10
- 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 +73 -0
- package/lib/seam/connect/models/batch.d.ts +202 -0
- package/lib/seam/connect/openapi.js +186 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +275 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +110 -10
- package/src/lib/seam/connect/openapi.ts +218 -0
- package/src/lib/seam/connect/route-types.ts +308 -0
|
@@ -1830,6 +1830,16 @@ export type Routes = {
|
|
|
1830
1830
|
created_at: string
|
|
1831
1831
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
1832
1832
|
errors: (
|
|
1833
|
+
| {
|
|
1834
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1835
|
+
message: string
|
|
1836
|
+
/** Indicates that this is an access code error. */
|
|
1837
|
+
is_access_code_error: true
|
|
1838
|
+
/** Date and time at which Seam created the error. */
|
|
1839
|
+
created_at?: string | undefined
|
|
1840
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1841
|
+
error_code: 'provider_issue'
|
|
1842
|
+
}
|
|
1833
1843
|
| {
|
|
1834
1844
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1835
1845
|
message: string
|
|
@@ -1987,6 +1997,16 @@ export type Routes = {
|
|
|
1987
1997
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1988
1998
|
error_code: 'august_lock_temporarily_offline'
|
|
1989
1999
|
}
|
|
2000
|
+
| {
|
|
2001
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2002
|
+
message: string
|
|
2003
|
+
/** Indicates that this is an access code error. */
|
|
2004
|
+
is_access_code_error: true
|
|
2005
|
+
/** Date and time at which Seam created the error. */
|
|
2006
|
+
created_at?: string | undefined
|
|
2007
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2008
|
+
error_code: 'access_code_inactive'
|
|
2009
|
+
}
|
|
1990
2010
|
| {
|
|
1991
2011
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1992
2012
|
message: string
|
|
@@ -2216,6 +2236,14 @@ export type Routes = {
|
|
|
2216
2236
|
)[]
|
|
2217
2237
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
2218
2238
|
warnings: (
|
|
2239
|
+
| {
|
|
2240
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2241
|
+
message: string
|
|
2242
|
+
/** Date and time at which Seam created the warning. */
|
|
2243
|
+
created_at?: string | undefined
|
|
2244
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2245
|
+
warning_code: 'provider_issue'
|
|
2246
|
+
}
|
|
2219
2247
|
| {
|
|
2220
2248
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2221
2249
|
message: string
|
|
@@ -2551,6 +2579,16 @@ export type Routes = {
|
|
|
2551
2579
|
created_at: string
|
|
2552
2580
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
2553
2581
|
errors: (
|
|
2582
|
+
| {
|
|
2583
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2584
|
+
message: string
|
|
2585
|
+
/** Indicates that this is an access code error. */
|
|
2586
|
+
is_access_code_error: true
|
|
2587
|
+
/** Date and time at which Seam created the error. */
|
|
2588
|
+
created_at?: string | undefined
|
|
2589
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2590
|
+
error_code: 'provider_issue'
|
|
2591
|
+
}
|
|
2554
2592
|
| {
|
|
2555
2593
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2556
2594
|
message: string
|
|
@@ -2708,6 +2746,16 @@ export type Routes = {
|
|
|
2708
2746
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2709
2747
|
error_code: 'august_lock_temporarily_offline'
|
|
2710
2748
|
}
|
|
2749
|
+
| {
|
|
2750
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2751
|
+
message: string
|
|
2752
|
+
/** Indicates that this is an access code error. */
|
|
2753
|
+
is_access_code_error: true
|
|
2754
|
+
/** Date and time at which Seam created the error. */
|
|
2755
|
+
created_at?: string | undefined
|
|
2756
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2757
|
+
error_code: 'access_code_inactive'
|
|
2758
|
+
}
|
|
2711
2759
|
| {
|
|
2712
2760
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2713
2761
|
message: string
|
|
@@ -2937,6 +2985,14 @@ export type Routes = {
|
|
|
2937
2985
|
)[]
|
|
2938
2986
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
2939
2987
|
warnings: (
|
|
2988
|
+
| {
|
|
2989
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2990
|
+
message: string
|
|
2991
|
+
/** Date and time at which Seam created the warning. */
|
|
2992
|
+
created_at?: string | undefined
|
|
2993
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2994
|
+
warning_code: 'provider_issue'
|
|
2995
|
+
}
|
|
2940
2996
|
| {
|
|
2941
2997
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2942
2998
|
message: string
|
|
@@ -5044,6 +5100,16 @@ export type Routes = {
|
|
|
5044
5100
|
created_at: string
|
|
5045
5101
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5046
5102
|
errors: (
|
|
5103
|
+
| {
|
|
5104
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5105
|
+
message: string
|
|
5106
|
+
/** Indicates that this is an access code error. */
|
|
5107
|
+
is_access_code_error: true
|
|
5108
|
+
/** Date and time at which Seam created the error. */
|
|
5109
|
+
created_at?: string | undefined
|
|
5110
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5111
|
+
error_code: 'provider_issue'
|
|
5112
|
+
}
|
|
5047
5113
|
| {
|
|
5048
5114
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5049
5115
|
message: string
|
|
@@ -5201,6 +5267,16 @@ export type Routes = {
|
|
|
5201
5267
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5202
5268
|
error_code: 'august_lock_temporarily_offline'
|
|
5203
5269
|
}
|
|
5270
|
+
| {
|
|
5271
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5272
|
+
message: string
|
|
5273
|
+
/** Indicates that this is an access code error. */
|
|
5274
|
+
is_access_code_error: true
|
|
5275
|
+
/** Date and time at which Seam created the error. */
|
|
5276
|
+
created_at?: string | undefined
|
|
5277
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5278
|
+
error_code: 'access_code_inactive'
|
|
5279
|
+
}
|
|
5204
5280
|
| {
|
|
5205
5281
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5206
5282
|
message: string
|
|
@@ -5430,6 +5506,14 @@ export type Routes = {
|
|
|
5430
5506
|
)[]
|
|
5431
5507
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5432
5508
|
warnings: (
|
|
5509
|
+
| {
|
|
5510
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5511
|
+
message: string
|
|
5512
|
+
/** Date and time at which Seam created the warning. */
|
|
5513
|
+
created_at?: string | undefined
|
|
5514
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5515
|
+
warning_code: 'provider_issue'
|
|
5516
|
+
}
|
|
5433
5517
|
| {
|
|
5434
5518
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5435
5519
|
message: string
|
|
@@ -5852,6 +5936,16 @@ export type Routes = {
|
|
|
5852
5936
|
created_at: string
|
|
5853
5937
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5854
5938
|
errors: (
|
|
5939
|
+
| {
|
|
5940
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5941
|
+
message: string
|
|
5942
|
+
/** Indicates that this is an access code error. */
|
|
5943
|
+
is_access_code_error: true
|
|
5944
|
+
/** Date and time at which Seam created the error. */
|
|
5945
|
+
created_at?: string | undefined
|
|
5946
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5947
|
+
error_code: 'provider_issue'
|
|
5948
|
+
}
|
|
5855
5949
|
| {
|
|
5856
5950
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5857
5951
|
message: string
|
|
@@ -6009,6 +6103,16 @@ export type Routes = {
|
|
|
6009
6103
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6010
6104
|
error_code: 'august_lock_temporarily_offline'
|
|
6011
6105
|
}
|
|
6106
|
+
| {
|
|
6107
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6108
|
+
message: string
|
|
6109
|
+
/** Indicates that this is an access code error. */
|
|
6110
|
+
is_access_code_error: true
|
|
6111
|
+
/** Date and time at which Seam created the error. */
|
|
6112
|
+
created_at?: string | undefined
|
|
6113
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6114
|
+
error_code: 'access_code_inactive'
|
|
6115
|
+
}
|
|
6012
6116
|
| {
|
|
6013
6117
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6014
6118
|
message: string
|
|
@@ -6238,6 +6342,14 @@ export type Routes = {
|
|
|
6238
6342
|
)[]
|
|
6239
6343
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6240
6344
|
warnings: (
|
|
6345
|
+
| {
|
|
6346
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6347
|
+
message: string
|
|
6348
|
+
/** Date and time at which Seam created the warning. */
|
|
6349
|
+
created_at?: string | undefined
|
|
6350
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6351
|
+
warning_code: 'provider_issue'
|
|
6352
|
+
}
|
|
6241
6353
|
| {
|
|
6242
6354
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6243
6355
|
message: string
|
|
@@ -6562,6 +6674,16 @@ export type Routes = {
|
|
|
6562
6674
|
created_at: string
|
|
6563
6675
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6564
6676
|
errors: (
|
|
6677
|
+
| {
|
|
6678
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6679
|
+
message: string
|
|
6680
|
+
/** Indicates that this is an access code error. */
|
|
6681
|
+
is_access_code_error: true
|
|
6682
|
+
/** Date and time at which Seam created the error. */
|
|
6683
|
+
created_at?: string | undefined
|
|
6684
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6685
|
+
error_code: 'provider_issue'
|
|
6686
|
+
}
|
|
6565
6687
|
| {
|
|
6566
6688
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6567
6689
|
message: string
|
|
@@ -6719,6 +6841,16 @@ export type Routes = {
|
|
|
6719
6841
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6720
6842
|
error_code: 'august_lock_temporarily_offline'
|
|
6721
6843
|
}
|
|
6844
|
+
| {
|
|
6845
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6846
|
+
message: string
|
|
6847
|
+
/** Indicates that this is an access code error. */
|
|
6848
|
+
is_access_code_error: true
|
|
6849
|
+
/** Date and time at which Seam created the error. */
|
|
6850
|
+
created_at?: string | undefined
|
|
6851
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6852
|
+
error_code: 'access_code_inactive'
|
|
6853
|
+
}
|
|
6722
6854
|
| {
|
|
6723
6855
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6724
6856
|
message: string
|
|
@@ -6948,6 +7080,14 @@ export type Routes = {
|
|
|
6948
7080
|
)[]
|
|
6949
7081
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6950
7082
|
warnings: (
|
|
7083
|
+
| {
|
|
7084
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7085
|
+
message: string
|
|
7086
|
+
/** Date and time at which Seam created the warning. */
|
|
7087
|
+
created_at?: string | undefined
|
|
7088
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7089
|
+
warning_code: 'provider_issue'
|
|
7090
|
+
}
|
|
6951
7091
|
| {
|
|
6952
7092
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6953
7093
|
message: string
|
|
@@ -7249,6 +7389,16 @@ export type Routes = {
|
|
|
7249
7389
|
created_at: string
|
|
7250
7390
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
7251
7391
|
errors: (
|
|
7392
|
+
| {
|
|
7393
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7394
|
+
message: string
|
|
7395
|
+
/** Indicates that this is an access code error. */
|
|
7396
|
+
is_access_code_error: true
|
|
7397
|
+
/** Date and time at which Seam created the error. */
|
|
7398
|
+
created_at?: string | undefined
|
|
7399
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7400
|
+
error_code: 'provider_issue'
|
|
7401
|
+
}
|
|
7252
7402
|
| {
|
|
7253
7403
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7254
7404
|
message: string
|
|
@@ -7406,6 +7556,16 @@ export type Routes = {
|
|
|
7406
7556
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7407
7557
|
error_code: 'august_lock_temporarily_offline'
|
|
7408
7558
|
}
|
|
7559
|
+
| {
|
|
7560
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7561
|
+
message: string
|
|
7562
|
+
/** Indicates that this is an access code error. */
|
|
7563
|
+
is_access_code_error: true
|
|
7564
|
+
/** Date and time at which Seam created the error. */
|
|
7565
|
+
created_at?: string | undefined
|
|
7566
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7567
|
+
error_code: 'access_code_inactive'
|
|
7568
|
+
}
|
|
7409
7569
|
| {
|
|
7410
7570
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7411
7571
|
message: string
|
|
@@ -7635,6 +7795,14 @@ export type Routes = {
|
|
|
7635
7795
|
)[]
|
|
7636
7796
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
7637
7797
|
warnings: (
|
|
7798
|
+
| {
|
|
7799
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7800
|
+
message: string
|
|
7801
|
+
/** Date and time at which Seam created the warning. */
|
|
7802
|
+
created_at?: string | undefined
|
|
7803
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7804
|
+
warning_code: 'provider_issue'
|
|
7805
|
+
}
|
|
7638
7806
|
| {
|
|
7639
7807
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7640
7808
|
message: string
|
|
@@ -7971,6 +8139,16 @@ export type Routes = {
|
|
|
7971
8139
|
created_at: string
|
|
7972
8140
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
7973
8141
|
errors: (
|
|
8142
|
+
| {
|
|
8143
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8144
|
+
message: string
|
|
8145
|
+
/** Indicates that this is an access code error. */
|
|
8146
|
+
is_access_code_error: true
|
|
8147
|
+
/** Date and time at which Seam created the error. */
|
|
8148
|
+
created_at?: string | undefined
|
|
8149
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8150
|
+
error_code: 'provider_issue'
|
|
8151
|
+
}
|
|
7974
8152
|
| {
|
|
7975
8153
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7976
8154
|
message: string
|
|
@@ -8128,6 +8306,16 @@ export type Routes = {
|
|
|
8128
8306
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8129
8307
|
error_code: 'august_lock_temporarily_offline'
|
|
8130
8308
|
}
|
|
8309
|
+
| {
|
|
8310
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8311
|
+
message: string
|
|
8312
|
+
/** Indicates that this is an access code error. */
|
|
8313
|
+
is_access_code_error: true
|
|
8314
|
+
/** Date and time at which Seam created the error. */
|
|
8315
|
+
created_at?: string | undefined
|
|
8316
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
8317
|
+
error_code: 'access_code_inactive'
|
|
8318
|
+
}
|
|
8131
8319
|
| {
|
|
8132
8320
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
8133
8321
|
message: string
|
|
@@ -8357,6 +8545,14 @@ export type Routes = {
|
|
|
8357
8545
|
)[]
|
|
8358
8546
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
8359
8547
|
warnings: (
|
|
8548
|
+
| {
|
|
8549
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8550
|
+
message: string
|
|
8551
|
+
/** Date and time at which Seam created the warning. */
|
|
8552
|
+
created_at?: string | undefined
|
|
8553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
8554
|
+
warning_code: 'provider_issue'
|
|
8555
|
+
}
|
|
8360
8556
|
| {
|
|
8361
8557
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
8362
8558
|
message: string
|
|
@@ -10368,6 +10564,16 @@ export type Routes = {
|
|
|
10368
10564
|
created_at: string
|
|
10369
10565
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
10370
10566
|
errors: (
|
|
10567
|
+
| {
|
|
10568
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10569
|
+
message: string
|
|
10570
|
+
/** Indicates that this is an access code error. */
|
|
10571
|
+
is_access_code_error: true
|
|
10572
|
+
/** Date and time at which Seam created the error. */
|
|
10573
|
+
created_at?: string | undefined
|
|
10574
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10575
|
+
error_code: 'provider_issue'
|
|
10576
|
+
}
|
|
10371
10577
|
| {
|
|
10372
10578
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10373
10579
|
message: string
|
|
@@ -10525,6 +10731,16 @@ export type Routes = {
|
|
|
10525
10731
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10526
10732
|
error_code: 'august_lock_temporarily_offline'
|
|
10527
10733
|
}
|
|
10734
|
+
| {
|
|
10735
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10736
|
+
message: string
|
|
10737
|
+
/** Indicates that this is an access code error. */
|
|
10738
|
+
is_access_code_error: true
|
|
10739
|
+
/** Date and time at which Seam created the error. */
|
|
10740
|
+
created_at?: string | undefined
|
|
10741
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10742
|
+
error_code: 'access_code_inactive'
|
|
10743
|
+
}
|
|
10528
10744
|
| {
|
|
10529
10745
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10530
10746
|
message: string
|
|
@@ -10754,6 +10970,14 @@ export type Routes = {
|
|
|
10754
10970
|
)[]
|
|
10755
10971
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
10756
10972
|
warnings: (
|
|
10973
|
+
| {
|
|
10974
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10975
|
+
message: string
|
|
10976
|
+
/** Date and time at which Seam created the warning. */
|
|
10977
|
+
created_at?: string | undefined
|
|
10978
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10979
|
+
warning_code: 'provider_issue'
|
|
10980
|
+
}
|
|
10757
10981
|
| {
|
|
10758
10982
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10759
10983
|
message: string
|
|
@@ -10969,6 +11193,16 @@ export type Routes = {
|
|
|
10969
11193
|
created_at: string
|
|
10970
11194
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
10971
11195
|
errors: (
|
|
11196
|
+
| {
|
|
11197
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11198
|
+
message: string
|
|
11199
|
+
/** Indicates that this is an access code error. */
|
|
11200
|
+
is_access_code_error: true
|
|
11201
|
+
/** Date and time at which Seam created the error. */
|
|
11202
|
+
created_at?: string | undefined
|
|
11203
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11204
|
+
error_code: 'provider_issue'
|
|
11205
|
+
}
|
|
10972
11206
|
| {
|
|
10973
11207
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10974
11208
|
message: string
|
|
@@ -11126,6 +11360,16 @@ export type Routes = {
|
|
|
11126
11360
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11127
11361
|
error_code: 'august_lock_temporarily_offline'
|
|
11128
11362
|
}
|
|
11363
|
+
| {
|
|
11364
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11365
|
+
message: string
|
|
11366
|
+
/** Indicates that this is an access code error. */
|
|
11367
|
+
is_access_code_error: true
|
|
11368
|
+
/** Date and time at which Seam created the error. */
|
|
11369
|
+
created_at?: string | undefined
|
|
11370
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
11371
|
+
error_code: 'access_code_inactive'
|
|
11372
|
+
}
|
|
11129
11373
|
| {
|
|
11130
11374
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
11131
11375
|
message: string
|
|
@@ -11355,6 +11599,14 @@ export type Routes = {
|
|
|
11355
11599
|
)[]
|
|
11356
11600
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
11357
11601
|
warnings: (
|
|
11602
|
+
| {
|
|
11603
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11604
|
+
message: string
|
|
11605
|
+
/** Date and time at which Seam created the warning. */
|
|
11606
|
+
created_at?: string | undefined
|
|
11607
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
11608
|
+
warning_code: 'provider_issue'
|
|
11609
|
+
}
|
|
11358
11610
|
| {
|
|
11359
11611
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
11360
11612
|
message: string
|
|
@@ -128690,6 +128942,16 @@ export type Routes = {
|
|
|
128690
128942
|
created_at: string
|
|
128691
128943
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
128692
128944
|
errors: (
|
|
128945
|
+
| {
|
|
128946
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128947
|
+
message: string
|
|
128948
|
+
/** Indicates that this is an access code error. */
|
|
128949
|
+
is_access_code_error: true
|
|
128950
|
+
/** Date and time at which Seam created the error. */
|
|
128951
|
+
created_at?: string | undefined
|
|
128952
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128953
|
+
error_code: 'provider_issue'
|
|
128954
|
+
}
|
|
128693
128955
|
| {
|
|
128694
128956
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128695
128957
|
message: string
|
|
@@ -128847,6 +129109,16 @@ export type Routes = {
|
|
|
128847
129109
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
128848
129110
|
error_code: 'august_lock_temporarily_offline'
|
|
128849
129111
|
}
|
|
129112
|
+
| {
|
|
129113
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129114
|
+
message: string
|
|
129115
|
+
/** Indicates that this is an access code error. */
|
|
129116
|
+
is_access_code_error: true
|
|
129117
|
+
/** Date and time at which Seam created the error. */
|
|
129118
|
+
created_at?: string | undefined
|
|
129119
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129120
|
+
error_code: 'access_code_inactive'
|
|
129121
|
+
}
|
|
128850
129122
|
| {
|
|
128851
129123
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
128852
129124
|
message: string
|
|
@@ -129076,6 +129348,14 @@ export type Routes = {
|
|
|
129076
129348
|
)[]
|
|
129077
129349
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
129078
129350
|
warnings: (
|
|
129351
|
+
| {
|
|
129352
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129353
|
+
message: string
|
|
129354
|
+
/** Date and time at which Seam created the warning. */
|
|
129355
|
+
created_at?: string | undefined
|
|
129356
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129357
|
+
warning_code: 'provider_issue'
|
|
129358
|
+
}
|
|
129079
129359
|
| {
|
|
129080
129360
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129081
129361
|
message: string
|
|
@@ -129277,6 +129557,16 @@ export type Routes = {
|
|
|
129277
129557
|
created_at: string
|
|
129278
129558
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
129279
129559
|
errors: (
|
|
129560
|
+
| {
|
|
129561
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129562
|
+
message: string
|
|
129563
|
+
/** Indicates that this is an access code error. */
|
|
129564
|
+
is_access_code_error: true
|
|
129565
|
+
/** Date and time at which Seam created the error. */
|
|
129566
|
+
created_at?: string | undefined
|
|
129567
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129568
|
+
error_code: 'provider_issue'
|
|
129569
|
+
}
|
|
129280
129570
|
| {
|
|
129281
129571
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129282
129572
|
message: string
|
|
@@ -129434,6 +129724,16 @@ export type Routes = {
|
|
|
129434
129724
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129435
129725
|
error_code: 'august_lock_temporarily_offline'
|
|
129436
129726
|
}
|
|
129727
|
+
| {
|
|
129728
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129729
|
+
message: string
|
|
129730
|
+
/** Indicates that this is an access code error. */
|
|
129731
|
+
is_access_code_error: true
|
|
129732
|
+
/** Date and time at which Seam created the error. */
|
|
129733
|
+
created_at?: string | undefined
|
|
129734
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
129735
|
+
error_code: 'access_code_inactive'
|
|
129736
|
+
}
|
|
129437
129737
|
| {
|
|
129438
129738
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
129439
129739
|
message: string
|
|
@@ -129663,6 +129963,14 @@ export type Routes = {
|
|
|
129663
129963
|
)[]
|
|
129664
129964
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
129665
129965
|
warnings: (
|
|
129966
|
+
| {
|
|
129967
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129968
|
+
message: string
|
|
129969
|
+
/** Date and time at which Seam created the warning. */
|
|
129970
|
+
created_at?: string | undefined
|
|
129971
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
129972
|
+
warning_code: 'provider_issue'
|
|
129973
|
+
}
|
|
129666
129974
|
| {
|
|
129667
129975
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
129668
129976
|
message: string
|