@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
|
@@ -1578,6 +1578,15 @@ export type Routes = {
|
|
|
1578
1578
|
created_at: string;
|
|
1579
1579
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
1580
1580
|
errors: ({
|
|
1581
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1582
|
+
message: string;
|
|
1583
|
+
/** Indicates that this is an access code error. */
|
|
1584
|
+
is_access_code_error: true;
|
|
1585
|
+
/** Date and time at which Seam created the error. */
|
|
1586
|
+
created_at?: string | undefined;
|
|
1587
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1588
|
+
error_code: 'provider_issue';
|
|
1589
|
+
} | {
|
|
1581
1590
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1582
1591
|
message: string;
|
|
1583
1592
|
/** Indicates that this is an access code error. */
|
|
@@ -1718,6 +1727,15 @@ export type Routes = {
|
|
|
1718
1727
|
created_at?: string | undefined;
|
|
1719
1728
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1720
1729
|
error_code: 'august_lock_temporarily_offline';
|
|
1730
|
+
} | {
|
|
1731
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1732
|
+
message: string;
|
|
1733
|
+
/** Indicates that this is an access code error. */
|
|
1734
|
+
is_access_code_error: true;
|
|
1735
|
+
/** Date and time at which Seam created the error. */
|
|
1736
|
+
created_at?: string | undefined;
|
|
1737
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
1738
|
+
error_code: 'access_code_inactive';
|
|
1721
1739
|
} | {
|
|
1722
1740
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
1723
1741
|
message: string;
|
|
@@ -1925,6 +1943,13 @@ export type Routes = {
|
|
|
1925
1943
|
})[];
|
|
1926
1944
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
1927
1945
|
warnings: ({
|
|
1946
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1947
|
+
message: string;
|
|
1948
|
+
/** Date and time at which Seam created the warning. */
|
|
1949
|
+
created_at?: string | undefined;
|
|
1950
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
1951
|
+
warning_code: 'provider_issue';
|
|
1952
|
+
} | {
|
|
1928
1953
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
1929
1954
|
message: string;
|
|
1930
1955
|
/** Date and time at which Seam created the warning. */
|
|
@@ -2232,6 +2257,15 @@ export type Routes = {
|
|
|
2232
2257
|
created_at: string;
|
|
2233
2258
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
2234
2259
|
errors: ({
|
|
2260
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2261
|
+
message: string;
|
|
2262
|
+
/** Indicates that this is an access code error. */
|
|
2263
|
+
is_access_code_error: true;
|
|
2264
|
+
/** Date and time at which Seam created the error. */
|
|
2265
|
+
created_at?: string | undefined;
|
|
2266
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2267
|
+
error_code: 'provider_issue';
|
|
2268
|
+
} | {
|
|
2235
2269
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2236
2270
|
message: string;
|
|
2237
2271
|
/** Indicates that this is an access code error. */
|
|
@@ -2372,6 +2406,15 @@ export type Routes = {
|
|
|
2372
2406
|
created_at?: string | undefined;
|
|
2373
2407
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2374
2408
|
error_code: 'august_lock_temporarily_offline';
|
|
2409
|
+
} | {
|
|
2410
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2411
|
+
message: string;
|
|
2412
|
+
/** Indicates that this is an access code error. */
|
|
2413
|
+
is_access_code_error: true;
|
|
2414
|
+
/** Date and time at which Seam created the error. */
|
|
2415
|
+
created_at?: string | undefined;
|
|
2416
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
2417
|
+
error_code: 'access_code_inactive';
|
|
2375
2418
|
} | {
|
|
2376
2419
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
2377
2420
|
message: string;
|
|
@@ -2579,6 +2622,13 @@ export type Routes = {
|
|
|
2579
2622
|
})[];
|
|
2580
2623
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
2581
2624
|
warnings: ({
|
|
2625
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2626
|
+
message: string;
|
|
2627
|
+
/** Date and time at which Seam created the warning. */
|
|
2628
|
+
created_at?: string | undefined;
|
|
2629
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
2630
|
+
warning_code: 'provider_issue';
|
|
2631
|
+
} | {
|
|
2582
2632
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
2583
2633
|
message: string;
|
|
2584
2634
|
/** Date and time at which Seam created the warning. */
|
|
@@ -4406,6 +4456,15 @@ export type Routes = {
|
|
|
4406
4456
|
created_at: string;
|
|
4407
4457
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
4408
4458
|
errors: ({
|
|
4459
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4460
|
+
message: string;
|
|
4461
|
+
/** Indicates that this is an access code error. */
|
|
4462
|
+
is_access_code_error: true;
|
|
4463
|
+
/** Date and time at which Seam created the error. */
|
|
4464
|
+
created_at?: string | undefined;
|
|
4465
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4466
|
+
error_code: 'provider_issue';
|
|
4467
|
+
} | {
|
|
4409
4468
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4410
4469
|
message: string;
|
|
4411
4470
|
/** Indicates that this is an access code error. */
|
|
@@ -4546,6 +4605,15 @@ export type Routes = {
|
|
|
4546
4605
|
created_at?: string | undefined;
|
|
4547
4606
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4548
4607
|
error_code: 'august_lock_temporarily_offline';
|
|
4608
|
+
} | {
|
|
4609
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4610
|
+
message: string;
|
|
4611
|
+
/** Indicates that this is an access code error. */
|
|
4612
|
+
is_access_code_error: true;
|
|
4613
|
+
/** Date and time at which Seam created the error. */
|
|
4614
|
+
created_at?: string | undefined;
|
|
4615
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
4616
|
+
error_code: 'access_code_inactive';
|
|
4549
4617
|
} | {
|
|
4550
4618
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
4551
4619
|
message: string;
|
|
@@ -4753,6 +4821,13 @@ export type Routes = {
|
|
|
4753
4821
|
})[];
|
|
4754
4822
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
4755
4823
|
warnings: ({
|
|
4824
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4825
|
+
message: string;
|
|
4826
|
+
/** Date and time at which Seam created the warning. */
|
|
4827
|
+
created_at?: string | undefined;
|
|
4828
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
4829
|
+
warning_code: 'provider_issue';
|
|
4830
|
+
} | {
|
|
4756
4831
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
4757
4832
|
message: string;
|
|
4758
4833
|
/** Date and time at which Seam created the warning. */
|
|
@@ -5106,6 +5181,15 @@ export type Routes = {
|
|
|
5106
5181
|
created_at: string;
|
|
5107
5182
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5108
5183
|
errors: ({
|
|
5184
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5185
|
+
message: string;
|
|
5186
|
+
/** Indicates that this is an access code error. */
|
|
5187
|
+
is_access_code_error: true;
|
|
5188
|
+
/** Date and time at which Seam created the error. */
|
|
5189
|
+
created_at?: string | undefined;
|
|
5190
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5191
|
+
error_code: 'provider_issue';
|
|
5192
|
+
} | {
|
|
5109
5193
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5110
5194
|
message: string;
|
|
5111
5195
|
/** Indicates that this is an access code error. */
|
|
@@ -5246,6 +5330,15 @@ export type Routes = {
|
|
|
5246
5330
|
created_at?: string | undefined;
|
|
5247
5331
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5248
5332
|
error_code: 'august_lock_temporarily_offline';
|
|
5333
|
+
} | {
|
|
5334
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5335
|
+
message: string;
|
|
5336
|
+
/** Indicates that this is an access code error. */
|
|
5337
|
+
is_access_code_error: true;
|
|
5338
|
+
/** Date and time at which Seam created the error. */
|
|
5339
|
+
created_at?: string | undefined;
|
|
5340
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5341
|
+
error_code: 'access_code_inactive';
|
|
5249
5342
|
} | {
|
|
5250
5343
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5251
5344
|
message: string;
|
|
@@ -5453,6 +5546,13 @@ export type Routes = {
|
|
|
5453
5546
|
})[];
|
|
5454
5547
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5455
5548
|
warnings: ({
|
|
5549
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5550
|
+
message: string;
|
|
5551
|
+
/** Date and time at which Seam created the warning. */
|
|
5552
|
+
created_at?: string | undefined;
|
|
5553
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
5554
|
+
warning_code: 'provider_issue';
|
|
5555
|
+
} | {
|
|
5456
5556
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
5457
5557
|
message: string;
|
|
5458
5558
|
/** Date and time at which Seam created the warning. */
|
|
@@ -5749,6 +5849,15 @@ export type Routes = {
|
|
|
5749
5849
|
created_at: string;
|
|
5750
5850
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
5751
5851
|
errors: ({
|
|
5852
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5853
|
+
message: string;
|
|
5854
|
+
/** Indicates that this is an access code error. */
|
|
5855
|
+
is_access_code_error: true;
|
|
5856
|
+
/** Date and time at which Seam created the error. */
|
|
5857
|
+
created_at?: string | undefined;
|
|
5858
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5859
|
+
error_code: 'provider_issue';
|
|
5860
|
+
} | {
|
|
5752
5861
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5753
5862
|
message: string;
|
|
5754
5863
|
/** Indicates that this is an access code error. */
|
|
@@ -5889,6 +5998,15 @@ export type Routes = {
|
|
|
5889
5998
|
created_at?: string | undefined;
|
|
5890
5999
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
5891
6000
|
error_code: 'august_lock_temporarily_offline';
|
|
6001
|
+
} | {
|
|
6002
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6003
|
+
message: string;
|
|
6004
|
+
/** Indicates that this is an access code error. */
|
|
6005
|
+
is_access_code_error: true;
|
|
6006
|
+
/** Date and time at which Seam created the error. */
|
|
6007
|
+
created_at?: string | undefined;
|
|
6008
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6009
|
+
error_code: 'access_code_inactive';
|
|
5892
6010
|
} | {
|
|
5893
6011
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
5894
6012
|
message: string;
|
|
@@ -6096,6 +6214,13 @@ export type Routes = {
|
|
|
6096
6214
|
})[];
|
|
6097
6215
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6098
6216
|
warnings: ({
|
|
6217
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6218
|
+
message: string;
|
|
6219
|
+
/** Date and time at which Seam created the warning. */
|
|
6220
|
+
created_at?: string | undefined;
|
|
6221
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6222
|
+
warning_code: 'provider_issue';
|
|
6223
|
+
} | {
|
|
6099
6224
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6100
6225
|
message: string;
|
|
6101
6226
|
/** Date and time at which Seam created the warning. */
|
|
@@ -6369,6 +6494,15 @@ export type Routes = {
|
|
|
6369
6494
|
created_at: string;
|
|
6370
6495
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6371
6496
|
errors: ({
|
|
6497
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6498
|
+
message: string;
|
|
6499
|
+
/** Indicates that this is an access code error. */
|
|
6500
|
+
is_access_code_error: true;
|
|
6501
|
+
/** Date and time at which Seam created the error. */
|
|
6502
|
+
created_at?: string | undefined;
|
|
6503
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6504
|
+
error_code: 'provider_issue';
|
|
6505
|
+
} | {
|
|
6372
6506
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6373
6507
|
message: string;
|
|
6374
6508
|
/** Indicates that this is an access code error. */
|
|
@@ -6509,6 +6643,15 @@ export type Routes = {
|
|
|
6509
6643
|
created_at?: string | undefined;
|
|
6510
6644
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6511
6645
|
error_code: 'august_lock_temporarily_offline';
|
|
6646
|
+
} | {
|
|
6647
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6648
|
+
message: string;
|
|
6649
|
+
/** Indicates that this is an access code error. */
|
|
6650
|
+
is_access_code_error: true;
|
|
6651
|
+
/** Date and time at which Seam created the error. */
|
|
6652
|
+
created_at?: string | undefined;
|
|
6653
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
6654
|
+
error_code: 'access_code_inactive';
|
|
6512
6655
|
} | {
|
|
6513
6656
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
6514
6657
|
message: string;
|
|
@@ -6716,6 +6859,13 @@ export type Routes = {
|
|
|
6716
6859
|
})[];
|
|
6717
6860
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
6718
6861
|
warnings: ({
|
|
6862
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6863
|
+
message: string;
|
|
6864
|
+
/** Date and time at which Seam created the warning. */
|
|
6865
|
+
created_at?: string | undefined;
|
|
6866
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
6867
|
+
warning_code: 'provider_issue';
|
|
6868
|
+
} | {
|
|
6719
6869
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
6720
6870
|
message: string;
|
|
6721
6871
|
/** Date and time at which Seam created the warning. */
|
|
@@ -7024,6 +7174,15 @@ export type Routes = {
|
|
|
7024
7174
|
created_at: string;
|
|
7025
7175
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
7026
7176
|
errors: ({
|
|
7177
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7178
|
+
message: string;
|
|
7179
|
+
/** Indicates that this is an access code error. */
|
|
7180
|
+
is_access_code_error: true;
|
|
7181
|
+
/** Date and time at which Seam created the error. */
|
|
7182
|
+
created_at?: string | undefined;
|
|
7183
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7184
|
+
error_code: 'provider_issue';
|
|
7185
|
+
} | {
|
|
7027
7186
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7028
7187
|
message: string;
|
|
7029
7188
|
/** Indicates that this is an access code error. */
|
|
@@ -7164,6 +7323,15 @@ export type Routes = {
|
|
|
7164
7323
|
created_at?: string | undefined;
|
|
7165
7324
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
7166
7325
|
error_code: 'august_lock_temporarily_offline';
|
|
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_inactive';
|
|
7167
7335
|
} | {
|
|
7168
7336
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
7169
7337
|
message: string;
|
|
@@ -7371,6 +7539,13 @@ export type Routes = {
|
|
|
7371
7539
|
})[];
|
|
7372
7540
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
7373
7541
|
warnings: ({
|
|
7542
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7543
|
+
message: string;
|
|
7544
|
+
/** Date and time at which Seam created the warning. */
|
|
7545
|
+
created_at?: string | undefined;
|
|
7546
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
7547
|
+
warning_code: 'provider_issue';
|
|
7548
|
+
} | {
|
|
7374
7549
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
7375
7550
|
message: string;
|
|
7376
7551
|
/** Date and time at which Seam created the warning. */
|
|
@@ -9109,6 +9284,15 @@ export type Routes = {
|
|
|
9109
9284
|
created_at: string;
|
|
9110
9285
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
9111
9286
|
errors: ({
|
|
9287
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9288
|
+
message: string;
|
|
9289
|
+
/** Indicates that this is an access code error. */
|
|
9290
|
+
is_access_code_error: true;
|
|
9291
|
+
/** Date and time at which Seam created the error. */
|
|
9292
|
+
created_at?: string | undefined;
|
|
9293
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9294
|
+
error_code: 'provider_issue';
|
|
9295
|
+
} | {
|
|
9112
9296
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9113
9297
|
message: string;
|
|
9114
9298
|
/** Indicates that this is an access code error. */
|
|
@@ -9249,6 +9433,15 @@ export type Routes = {
|
|
|
9249
9433
|
created_at?: string | undefined;
|
|
9250
9434
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9251
9435
|
error_code: 'august_lock_temporarily_offline';
|
|
9436
|
+
} | {
|
|
9437
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9438
|
+
message: string;
|
|
9439
|
+
/** Indicates that this is an access code error. */
|
|
9440
|
+
is_access_code_error: true;
|
|
9441
|
+
/** Date and time at which Seam created the error. */
|
|
9442
|
+
created_at?: string | undefined;
|
|
9443
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9444
|
+
error_code: 'access_code_inactive';
|
|
9252
9445
|
} | {
|
|
9253
9446
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9254
9447
|
message: string;
|
|
@@ -9456,6 +9649,13 @@ export type Routes = {
|
|
|
9456
9649
|
})[];
|
|
9457
9650
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
9458
9651
|
warnings: ({
|
|
9652
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9653
|
+
message: string;
|
|
9654
|
+
/** Date and time at which Seam created the warning. */
|
|
9655
|
+
created_at?: string | undefined;
|
|
9656
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
9657
|
+
warning_code: 'provider_issue';
|
|
9658
|
+
} | {
|
|
9459
9659
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
9460
9660
|
message: string;
|
|
9461
9661
|
/** Date and time at which Seam created the warning. */
|
|
@@ -9650,6 +9850,15 @@ export type Routes = {
|
|
|
9650
9850
|
created_at: string;
|
|
9651
9851
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
9652
9852
|
errors: ({
|
|
9853
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9854
|
+
message: string;
|
|
9855
|
+
/** Indicates that this is an access code error. */
|
|
9856
|
+
is_access_code_error: true;
|
|
9857
|
+
/** Date and time at which Seam created the error. */
|
|
9858
|
+
created_at?: string | undefined;
|
|
9859
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9860
|
+
error_code: 'provider_issue';
|
|
9861
|
+
} | {
|
|
9653
9862
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9654
9863
|
message: string;
|
|
9655
9864
|
/** Indicates that this is an access code error. */
|
|
@@ -9790,6 +9999,15 @@ export type Routes = {
|
|
|
9790
9999
|
created_at?: string | undefined;
|
|
9791
10000
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
9792
10001
|
error_code: 'august_lock_temporarily_offline';
|
|
10002
|
+
} | {
|
|
10003
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
10004
|
+
message: string;
|
|
10005
|
+
/** Indicates that this is an access code error. */
|
|
10006
|
+
is_access_code_error: true;
|
|
10007
|
+
/** Date and time at which Seam created the error. */
|
|
10008
|
+
created_at?: string | undefined;
|
|
10009
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
10010
|
+
error_code: 'access_code_inactive';
|
|
9793
10011
|
} | {
|
|
9794
10012
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
9795
10013
|
message: string;
|
|
@@ -9997,6 +10215,13 @@ export type Routes = {
|
|
|
9997
10215
|
})[];
|
|
9998
10216
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
9999
10217
|
warnings: ({
|
|
10218
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10219
|
+
message: string;
|
|
10220
|
+
/** Date and time at which Seam created the warning. */
|
|
10221
|
+
created_at?: string | undefined;
|
|
10222
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
10223
|
+
warning_code: 'provider_issue';
|
|
10224
|
+
} | {
|
|
10000
10225
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
10001
10226
|
message: string;
|
|
10002
10227
|
/** Date and time at which Seam created the warning. */
|
|
@@ -107585,6 +107810,15 @@ export type Routes = {
|
|
|
107585
107810
|
created_at: string;
|
|
107586
107811
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
107587
107812
|
errors: ({
|
|
107813
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107814
|
+
message: string;
|
|
107815
|
+
/** Indicates that this is an access code error. */
|
|
107816
|
+
is_access_code_error: true;
|
|
107817
|
+
/** Date and time at which Seam created the error. */
|
|
107818
|
+
created_at?: string | undefined;
|
|
107819
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107820
|
+
error_code: 'provider_issue';
|
|
107821
|
+
} | {
|
|
107588
107822
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107589
107823
|
message: string;
|
|
107590
107824
|
/** Indicates that this is an access code error. */
|
|
@@ -107725,6 +107959,15 @@ export type Routes = {
|
|
|
107725
107959
|
created_at?: string | undefined;
|
|
107726
107960
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107727
107961
|
error_code: 'august_lock_temporarily_offline';
|
|
107962
|
+
} | {
|
|
107963
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107964
|
+
message: string;
|
|
107965
|
+
/** Indicates that this is an access code error. */
|
|
107966
|
+
is_access_code_error: true;
|
|
107967
|
+
/** Date and time at which Seam created the error. */
|
|
107968
|
+
created_at?: string | undefined;
|
|
107969
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107970
|
+
error_code: 'access_code_inactive';
|
|
107728
107971
|
} | {
|
|
107729
107972
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107730
107973
|
message: string;
|
|
@@ -107932,6 +108175,13 @@ export type Routes = {
|
|
|
107932
108175
|
})[];
|
|
107933
108176
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
107934
108177
|
warnings: ({
|
|
108178
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108179
|
+
message: string;
|
|
108180
|
+
/** Date and time at which Seam created the warning. */
|
|
108181
|
+
created_at?: string | undefined;
|
|
108182
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108183
|
+
warning_code: 'provider_issue';
|
|
108184
|
+
} | {
|
|
107935
108185
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107936
108186
|
message: string;
|
|
107937
108187
|
/** Date and time at which Seam created the warning. */
|
|
@@ -108110,6 +108360,15 @@ export type Routes = {
|
|
|
108110
108360
|
created_at: string;
|
|
108111
108361
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
108112
108362
|
errors: ({
|
|
108363
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108364
|
+
message: string;
|
|
108365
|
+
/** Indicates that this is an access code error. */
|
|
108366
|
+
is_access_code_error: true;
|
|
108367
|
+
/** Date and time at which Seam created the error. */
|
|
108368
|
+
created_at?: string | undefined;
|
|
108369
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108370
|
+
error_code: 'provider_issue';
|
|
108371
|
+
} | {
|
|
108113
108372
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108114
108373
|
message: string;
|
|
108115
108374
|
/** Indicates that this is an access code error. */
|
|
@@ -108250,6 +108509,15 @@ export type Routes = {
|
|
|
108250
108509
|
created_at?: string | undefined;
|
|
108251
108510
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108252
108511
|
error_code: 'august_lock_temporarily_offline';
|
|
108512
|
+
} | {
|
|
108513
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108514
|
+
message: string;
|
|
108515
|
+
/** Indicates that this is an access code error. */
|
|
108516
|
+
is_access_code_error: true;
|
|
108517
|
+
/** Date and time at which Seam created the error. */
|
|
108518
|
+
created_at?: string | undefined;
|
|
108519
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108520
|
+
error_code: 'access_code_inactive';
|
|
108253
108521
|
} | {
|
|
108254
108522
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108255
108523
|
message: string;
|
|
@@ -108457,6 +108725,13 @@ export type Routes = {
|
|
|
108457
108725
|
})[];
|
|
108458
108726
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
108459
108727
|
warnings: ({
|
|
108728
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108729
|
+
message: string;
|
|
108730
|
+
/** Date and time at which Seam created the warning. */
|
|
108731
|
+
created_at?: string | undefined;
|
|
108732
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108733
|
+
warning_code: 'provider_issue';
|
|
108734
|
+
} | {
|
|
108460
108735
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108461
108736
|
message: string;
|
|
108462
108737
|
/** Date and time at which Seam created the warning. */
|