@seamapi/types 1.871.0 → 1.873.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 +367 -30
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +825 -0
- package/dist/index.cjs +367 -30
- 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/acs/acs-entrance.d.ts +48 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +236 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +98 -0
- package/lib/seam/connect/openapi.js +240 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +374 -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/models/acs/acs-entrance.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +282 -0
- package/src/lib/seam/connect/route-types.ts +418 -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. */
|
|
@@ -13661,6 +13886,13 @@ export type Routes = {
|
|
|
13661
13886
|
message: string;
|
|
13662
13887
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13663
13888
|
warning_code: 'entrance_setup_required';
|
|
13889
|
+
} | {
|
|
13890
|
+
/** Date and time at which Seam created the warning. */
|
|
13891
|
+
created_at: string;
|
|
13892
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
13893
|
+
message: string;
|
|
13894
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
13895
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
13664
13896
|
})[];
|
|
13665
13897
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
13666
13898
|
latch_metadata?: {
|
|
@@ -13779,6 +14011,8 @@ export type Routes = {
|
|
|
13779
14011
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
13780
14012
|
entry_relays_total_count: number;
|
|
13781
14013
|
} | undefined;
|
|
14014
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
14015
|
+
is_locked?: boolean | undefined;
|
|
13782
14016
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
13783
14017
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
13784
14018
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -18347,6 +18581,13 @@ export type Routes = {
|
|
|
18347
18581
|
message: string;
|
|
18348
18582
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18349
18583
|
warning_code: 'entrance_setup_required';
|
|
18584
|
+
} | {
|
|
18585
|
+
/** Date and time at which Seam created the warning. */
|
|
18586
|
+
created_at: string;
|
|
18587
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
18588
|
+
message: string;
|
|
18589
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
18590
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
18350
18591
|
})[];
|
|
18351
18592
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
18352
18593
|
latch_metadata?: {
|
|
@@ -18465,6 +18706,8 @@ export type Routes = {
|
|
|
18465
18706
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
18466
18707
|
entry_relays_total_count: number;
|
|
18467
18708
|
} | undefined;
|
|
18709
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
18710
|
+
is_locked?: boolean | undefined;
|
|
18468
18711
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
18469
18712
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
18470
18713
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -19781,6 +20024,13 @@ export type Routes = {
|
|
|
19781
20024
|
message: string;
|
|
19782
20025
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19783
20026
|
warning_code: 'entrance_setup_required';
|
|
20027
|
+
} | {
|
|
20028
|
+
/** Date and time at which Seam created the warning. */
|
|
20029
|
+
created_at: string;
|
|
20030
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
20031
|
+
message: string;
|
|
20032
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
20033
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
19784
20034
|
})[];
|
|
19785
20035
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
19786
20036
|
latch_metadata?: {
|
|
@@ -19899,6 +20149,8 @@ export type Routes = {
|
|
|
19899
20149
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
19900
20150
|
entry_relays_total_count: number;
|
|
19901
20151
|
} | undefined;
|
|
20152
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
20153
|
+
is_locked?: boolean | undefined;
|
|
19902
20154
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
19903
20155
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
19904
20156
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -21516,6 +21768,13 @@ export type Routes = {
|
|
|
21516
21768
|
message: string;
|
|
21517
21769
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21518
21770
|
warning_code: 'entrance_setup_required';
|
|
21771
|
+
} | {
|
|
21772
|
+
/** Date and time at which Seam created the warning. */
|
|
21773
|
+
created_at: string;
|
|
21774
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
21775
|
+
message: string;
|
|
21776
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
21777
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
21519
21778
|
})[];
|
|
21520
21779
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
21521
21780
|
latch_metadata?: {
|
|
@@ -21634,6 +21893,8 @@ export type Routes = {
|
|
|
21634
21893
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
21635
21894
|
entry_relays_total_count: number;
|
|
21636
21895
|
} | undefined;
|
|
21896
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
21897
|
+
is_locked?: boolean | undefined;
|
|
21637
21898
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
21638
21899
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
21639
21900
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -27068,6 +27329,13 @@ export type Routes = {
|
|
|
27068
27329
|
message: string;
|
|
27069
27330
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27070
27331
|
warning_code: 'entrance_setup_required';
|
|
27332
|
+
} | {
|
|
27333
|
+
/** Date and time at which Seam created the warning. */
|
|
27334
|
+
created_at: string;
|
|
27335
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27336
|
+
message: string;
|
|
27337
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27338
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
27071
27339
|
})[];
|
|
27072
27340
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27073
27341
|
latch_metadata?: {
|
|
@@ -27186,6 +27454,8 @@ export type Routes = {
|
|
|
27186
27454
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
27187
27455
|
entry_relays_total_count: number;
|
|
27188
27456
|
} | undefined;
|
|
27457
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
27458
|
+
is_locked?: boolean | undefined;
|
|
27189
27459
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
27190
27460
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
27191
27461
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -27289,6 +27559,13 @@ export type Routes = {
|
|
|
27289
27559
|
message: string;
|
|
27290
27560
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27291
27561
|
warning_code: 'entrance_setup_required';
|
|
27562
|
+
} | {
|
|
27563
|
+
/** Date and time at which Seam created the warning. */
|
|
27564
|
+
created_at: string;
|
|
27565
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
27566
|
+
message: string;
|
|
27567
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
27568
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
27292
27569
|
})[];
|
|
27293
27570
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
27294
27571
|
latch_metadata?: {
|
|
@@ -27407,6 +27684,8 @@ export type Routes = {
|
|
|
27407
27684
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
27408
27685
|
entry_relays_total_count: number;
|
|
27409
27686
|
} | undefined;
|
|
27687
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
27688
|
+
is_locked?: boolean | undefined;
|
|
27410
27689
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
27411
27690
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
27412
27691
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -30499,6 +30778,13 @@ export type Routes = {
|
|
|
30499
30778
|
message: string;
|
|
30500
30779
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30501
30780
|
warning_code: 'entrance_setup_required';
|
|
30781
|
+
} | {
|
|
30782
|
+
/** Date and time at which Seam created the warning. */
|
|
30783
|
+
created_at: string;
|
|
30784
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
30785
|
+
message: string;
|
|
30786
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
30787
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
30502
30788
|
})[];
|
|
30503
30789
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
30504
30790
|
latch_metadata?: {
|
|
@@ -30617,6 +30903,8 @@ export type Routes = {
|
|
|
30617
30903
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
30618
30904
|
entry_relays_total_count: number;
|
|
30619
30905
|
} | undefined;
|
|
30906
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
30907
|
+
is_locked?: boolean | undefined;
|
|
30620
30908
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
30621
30909
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
30622
30910
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -74247,6 +74535,13 @@ export type Routes = {
|
|
|
74247
74535
|
message: string;
|
|
74248
74536
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74249
74537
|
warning_code: 'entrance_setup_required';
|
|
74538
|
+
} | {
|
|
74539
|
+
/** Date and time at which Seam created the warning. */
|
|
74540
|
+
created_at: string;
|
|
74541
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
74542
|
+
message: string;
|
|
74543
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
74544
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
74250
74545
|
})[];
|
|
74251
74546
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
74252
74547
|
latch_metadata?: {
|
|
@@ -74365,6 +74660,8 @@ export type Routes = {
|
|
|
74365
74660
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
74366
74661
|
entry_relays_total_count: number;
|
|
74367
74662
|
} | undefined;
|
|
74663
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
74664
|
+
is_locked?: boolean | undefined;
|
|
74368
74665
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
74369
74666
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
74370
74667
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -76101,6 +76398,13 @@ export type Routes = {
|
|
|
76101
76398
|
message: string;
|
|
76102
76399
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76103
76400
|
warning_code: 'entrance_setup_required';
|
|
76401
|
+
} | {
|
|
76402
|
+
/** Date and time at which Seam created the warning. */
|
|
76403
|
+
created_at: string;
|
|
76404
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
76405
|
+
message: string;
|
|
76406
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
76407
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
76104
76408
|
})[];
|
|
76105
76409
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
76106
76410
|
latch_metadata?: {
|
|
@@ -76219,6 +76523,8 @@ export type Routes = {
|
|
|
76219
76523
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
76220
76524
|
entry_relays_total_count: number;
|
|
76221
76525
|
} | undefined;
|
|
76526
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
76527
|
+
is_locked?: boolean | undefined;
|
|
76222
76528
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
76223
76529
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
76224
76530
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -98386,6 +98692,13 @@ export type Routes = {
|
|
|
98386
98692
|
message: string;
|
|
98387
98693
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98388
98694
|
warning_code: 'entrance_setup_required';
|
|
98695
|
+
} | {
|
|
98696
|
+
/** Date and time at which Seam created the warning. */
|
|
98697
|
+
created_at: string;
|
|
98698
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
98699
|
+
message: string;
|
|
98700
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
98701
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
98389
98702
|
})[];
|
|
98390
98703
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
98391
98704
|
latch_metadata?: {
|
|
@@ -98504,6 +98817,8 @@ export type Routes = {
|
|
|
98504
98817
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
98505
98818
|
entry_relays_total_count: number;
|
|
98506
98819
|
} | undefined;
|
|
98820
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
98821
|
+
is_locked?: boolean | undefined;
|
|
98507
98822
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
98508
98823
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
98509
98824
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -100907,6 +101222,13 @@ export type Routes = {
|
|
|
100907
101222
|
message: string;
|
|
100908
101223
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
100909
101224
|
warning_code: 'entrance_setup_required';
|
|
101225
|
+
} | {
|
|
101226
|
+
/** Date and time at which Seam created the warning. */
|
|
101227
|
+
created_at: string;
|
|
101228
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
101229
|
+
message: string;
|
|
101230
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
101231
|
+
warning_code: 'salto_ks_privacy_mode';
|
|
100910
101232
|
})[];
|
|
100911
101233
|
/** Latch-specific metadata associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
100912
101234
|
latch_metadata?: {
|
|
@@ -101025,6 +101347,8 @@ export type Routes = {
|
|
|
101025
101347
|
/** Total count of entry relays for an Avigilon Alta system. */
|
|
101026
101348
|
entry_relays_total_count: number;
|
|
101027
101349
|
} | undefined;
|
|
101350
|
+
/** Indicates whether the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) is currently locked. */
|
|
101351
|
+
is_locked?: boolean | undefined;
|
|
101028
101352
|
/** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
|
|
101029
101353
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
101030
101354
|
/** Indicates whether the ACS entrance can be unlocked with card credentials. */
|
|
@@ -107585,6 +107909,15 @@ export type Routes = {
|
|
|
107585
107909
|
created_at: string;
|
|
107586
107910
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
107587
107911
|
errors: ({
|
|
107912
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107913
|
+
message: string;
|
|
107914
|
+
/** Indicates that this is an access code error. */
|
|
107915
|
+
is_access_code_error: true;
|
|
107916
|
+
/** Date and time at which Seam created the error. */
|
|
107917
|
+
created_at?: string | undefined;
|
|
107918
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107919
|
+
error_code: 'provider_issue';
|
|
107920
|
+
} | {
|
|
107588
107921
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107589
107922
|
message: string;
|
|
107590
107923
|
/** Indicates that this is an access code error. */
|
|
@@ -107725,6 +108058,15 @@ export type Routes = {
|
|
|
107725
108058
|
created_at?: string | undefined;
|
|
107726
108059
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107727
108060
|
error_code: 'august_lock_temporarily_offline';
|
|
108061
|
+
} | {
|
|
108062
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108063
|
+
message: string;
|
|
108064
|
+
/** Indicates that this is an access code error. */
|
|
108065
|
+
is_access_code_error: true;
|
|
108066
|
+
/** Date and time at which Seam created the error. */
|
|
108067
|
+
created_at?: string | undefined;
|
|
108068
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108069
|
+
error_code: 'access_code_inactive';
|
|
107728
108070
|
} | {
|
|
107729
108071
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107730
108072
|
message: string;
|
|
@@ -107932,6 +108274,13 @@ export type Routes = {
|
|
|
107932
108274
|
})[];
|
|
107933
108275
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
107934
108276
|
warnings: ({
|
|
108277
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108278
|
+
message: string;
|
|
108279
|
+
/** Date and time at which Seam created the warning. */
|
|
108280
|
+
created_at?: string | undefined;
|
|
108281
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108282
|
+
warning_code: 'provider_issue';
|
|
108283
|
+
} | {
|
|
107935
108284
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
107936
108285
|
message: string;
|
|
107937
108286
|
/** Date and time at which Seam created the warning. */
|
|
@@ -108110,6 +108459,15 @@ export type Routes = {
|
|
|
108110
108459
|
created_at: string;
|
|
108111
108460
|
/** Errors associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
108112
108461
|
errors: ({
|
|
108462
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108463
|
+
message: string;
|
|
108464
|
+
/** Indicates that this is an access code error. */
|
|
108465
|
+
is_access_code_error: true;
|
|
108466
|
+
/** Date and time at which Seam created the error. */
|
|
108467
|
+
created_at?: string | undefined;
|
|
108468
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108469
|
+
error_code: 'provider_issue';
|
|
108470
|
+
} | {
|
|
108113
108471
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108114
108472
|
message: string;
|
|
108115
108473
|
/** Indicates that this is an access code error. */
|
|
@@ -108250,6 +108608,15 @@ export type Routes = {
|
|
|
108250
108608
|
created_at?: string | undefined;
|
|
108251
108609
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108252
108610
|
error_code: 'august_lock_temporarily_offline';
|
|
108611
|
+
} | {
|
|
108612
|
+
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108613
|
+
message: string;
|
|
108614
|
+
/** Indicates that this is an access code error. */
|
|
108615
|
+
is_access_code_error: true;
|
|
108616
|
+
/** Date and time at which Seam created the error. */
|
|
108617
|
+
created_at?: string | undefined;
|
|
108618
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108619
|
+
error_code: 'access_code_inactive';
|
|
108253
108620
|
} | {
|
|
108254
108621
|
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108255
108622
|
message: string;
|
|
@@ -108457,6 +108824,13 @@ export type Routes = {
|
|
|
108457
108824
|
})[];
|
|
108458
108825
|
/** Warnings associated with the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
|
|
108459
108826
|
warnings: ({
|
|
108827
|
+
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108828
|
+
message: string;
|
|
108829
|
+
/** Date and time at which Seam created the warning. */
|
|
108830
|
+
created_at?: string | undefined;
|
|
108831
|
+
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
108832
|
+
warning_code: 'provider_issue';
|
|
108833
|
+
} | {
|
|
108460
108834
|
/** Detailed description of the warning. Provides insights into the issue and potentially how to rectify it. */
|
|
108461
108835
|
message: string;
|
|
108462
108836
|
/** Date and time at which Seam created the warning. */
|