@seamapi/types 1.938.0 → 1.939.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 +18 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +44 -0
- package/dist/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/access-code.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js +5 -0
- package/lib/seam/connect/models/devices/capability-properties/access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/access-code.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +16 -0
- package/src/lib/seam/connect/route-types.ts +44 -0
|
@@ -12603,6 +12603,8 @@ export type Routes = {
|
|
|
12603
12603
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
12604
12604
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
12605
12605
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
12606
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
12607
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
12606
12608
|
/** Indicates whether the device supports native entry events. */
|
|
12607
12609
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
12608
12610
|
/** Indicates whether the lock is locked. */
|
|
@@ -19316,6 +19318,8 @@ export type Routes = {
|
|
|
19316
19318
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
19317
19319
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
19318
19320
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
19321
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
19322
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
19319
19323
|
/** Indicates whether the device supports native entry events. */
|
|
19320
19324
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
19321
19325
|
/** Indicates whether the lock is locked. */
|
|
@@ -41801,6 +41805,8 @@ export type Routes = {
|
|
|
41801
41805
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
41802
41806
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
41803
41807
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
41808
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
41809
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
41804
41810
|
/** Indicates whether the device supports native entry events. */
|
|
41805
41811
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
41806
41812
|
/** Indicates whether the lock is locked. */
|
|
@@ -43308,6 +43314,8 @@ export type Routes = {
|
|
|
43308
43314
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
43309
43315
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
43310
43316
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
43317
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
43318
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
43311
43319
|
/** Indicates whether the device supports native entry events. */
|
|
43312
43320
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
43313
43321
|
/** Indicates whether the lock is locked. */
|
|
@@ -45301,6 +45309,8 @@ export type Routes = {
|
|
|
45301
45309
|
custom_metadata?: {
|
|
45302
45310
|
[x: string]: string | boolean | null;
|
|
45303
45311
|
} | undefined;
|
|
45312
|
+
/** Indicates whether the device's [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is enabled. Set to `false` to disable the pool: Seam stops refilling it and removes any backup codes that have not yet been pulled into active use. */
|
|
45313
|
+
backup_access_code_pool_enabled?: boolean | undefined;
|
|
45304
45314
|
};
|
|
45305
45315
|
formData: {};
|
|
45306
45316
|
jsonResponse: {};
|
|
@@ -53882,6 +53892,8 @@ export type Routes = {
|
|
|
53882
53892
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
53883
53893
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
53884
53894
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
53895
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
53896
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
53885
53897
|
/** Indicates whether the device supports native entry events. */
|
|
53886
53898
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
53887
53899
|
/** Indicates whether the lock is locked. */
|
|
@@ -55339,6 +55351,8 @@ export type Routes = {
|
|
|
55339
55351
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
55340
55352
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
55341
55353
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
55354
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
55355
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
55342
55356
|
/** Indicates whether the device supports native entry events. */
|
|
55343
55357
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
55344
55358
|
/** Indicates whether the lock is locked. */
|
|
@@ -56846,6 +56860,8 @@ export type Routes = {
|
|
|
56846
56860
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
56847
56861
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
56848
56862
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
56863
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
56864
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
56849
56865
|
/** Indicates whether the device supports native entry events. */
|
|
56850
56866
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
56851
56867
|
/** Indicates whether the lock is locked. */
|
|
@@ -58302,6 +58318,8 @@ export type Routes = {
|
|
|
58302
58318
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
58303
58319
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
58304
58320
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
58321
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
58322
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
58305
58323
|
/** Indicates whether the device supports native entry events. */
|
|
58306
58324
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
58307
58325
|
/** Indicates whether the lock is locked. */
|
|
@@ -66535,6 +66553,8 @@ export type Routes = {
|
|
|
66535
66553
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
66536
66554
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
66537
66555
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
66556
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
66557
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
66538
66558
|
/** Indicates whether the device supports native entry events. */
|
|
66539
66559
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
66540
66560
|
/** Indicates whether the lock is locked. */
|
|
@@ -67991,6 +68011,8 @@ export type Routes = {
|
|
|
67991
68011
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
67992
68012
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
67993
68013
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
68014
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
68015
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
67994
68016
|
/** Indicates whether the device supports native entry events. */
|
|
67995
68017
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
67996
68018
|
/** Indicates whether the lock is locked. */
|
|
@@ -83516,6 +83538,8 @@ export type Routes = {
|
|
|
83516
83538
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
83517
83539
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
83518
83540
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
83541
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
83542
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
83519
83543
|
/** Indicates whether the device supports native entry events. */
|
|
83520
83544
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
83521
83545
|
/** Indicates whether the lock is locked. */
|
|
@@ -90980,6 +91004,8 @@ export type Routes = {
|
|
|
90980
91004
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
90981
91005
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
90982
91006
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
91007
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
91008
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
90983
91009
|
/** Indicates whether the device supports native entry events. */
|
|
90984
91010
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
90985
91011
|
/** Indicates whether the lock is locked. */
|
|
@@ -95863,6 +95889,8 @@ export type Routes = {
|
|
|
95863
95889
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
95864
95890
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
95865
95891
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
95892
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
95893
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
95866
95894
|
/** Indicates whether the device supports native entry events. */
|
|
95867
95895
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
95868
95896
|
/** Indicates whether the lock is locked. */
|
|
@@ -97319,6 +97347,8 @@ export type Routes = {
|
|
|
97319
97347
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
97320
97348
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
97321
97349
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
97350
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
97351
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
97322
97352
|
/** Indicates whether the device supports native entry events. */
|
|
97323
97353
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
97324
97354
|
/** Indicates whether the lock is locked. */
|
|
@@ -106491,6 +106521,8 @@ export type Routes = {
|
|
|
106491
106521
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
106492
106522
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
106493
106523
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
106524
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
106525
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
106494
106526
|
/** Indicates whether the device supports native entry events. */
|
|
106495
106527
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
106496
106528
|
/** Indicates whether the lock is locked. */
|
|
@@ -107949,6 +107981,8 @@ export type Routes = {
|
|
|
107949
107981
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
107950
107982
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
107951
107983
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
107984
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
107985
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
107952
107986
|
/** Indicates whether the device supports native entry events. */
|
|
107953
107987
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
107954
107988
|
/** Indicates whether the lock is locked. */
|
|
@@ -110662,6 +110696,8 @@ export type Routes = {
|
|
|
110662
110696
|
max_active_codes_supported?: (number | undefined) | undefined;
|
|
110663
110697
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
110664
110698
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined;
|
|
110699
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
110700
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined;
|
|
110665
110701
|
/** Indicates whether the device supports native entry events. */
|
|
110666
110702
|
has_native_entry_events?: (boolean | undefined) | undefined;
|
|
110667
110703
|
/** Indicates whether the lock is locked. */
|
package/package.json
CHANGED
|
@@ -153,6 +153,11 @@ export const access_code_capability_properties = z.object({
|
|
|
153
153
|
property_group_key: access_codes
|
|
154
154
|
---
|
|
155
155
|
Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes).`),
|
|
156
|
+
backup_access_code_pool_enabled: z.boolean().optional().describe(`
|
|
157
|
+
---
|
|
158
|
+
property_group_key: access_codes
|
|
159
|
+
---
|
|
160
|
+
Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to \`false\` using [/devices/update](https://docs.seam.co/api/devices/update).`),
|
|
156
161
|
has_native_entry_events: z.boolean().optional().describe(`
|
|
157
162
|
---
|
|
158
163
|
property_group_key: access_codes
|
|
@@ -15456,6 +15456,12 @@ const openapi: OpenAPISpec = {
|
|
|
15456
15456
|
type: 'boolean',
|
|
15457
15457
|
'x-property-group-key': 'locks',
|
|
15458
15458
|
},
|
|
15459
|
+
backup_access_code_pool_enabled: {
|
|
15460
|
+
description:
|
|
15461
|
+
'Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update).',
|
|
15462
|
+
type: 'boolean',
|
|
15463
|
+
'x-property-group-key': 'access_codes',
|
|
15464
|
+
},
|
|
15459
15465
|
code_constraints: {
|
|
15460
15466
|
description:
|
|
15461
15467
|
'Constraints on access codes for the device. Seam represents each constraint as an object with a `constraint_type` property. Depending on the constraint type, there may also be additional properties. Note that some constraints are manufacturer- or device-specific.',
|
|
@@ -60555,6 +60561,11 @@ const openapi: OpenAPISpec = {
|
|
|
60555
60561
|
'application/json': {
|
|
60556
60562
|
schema: {
|
|
60557
60563
|
properties: {
|
|
60564
|
+
backup_access_code_pool_enabled: {
|
|
60565
|
+
description:
|
|
60566
|
+
"Indicates whether the device's [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is enabled. Set to `false` to disable the pool: Seam stops refilling it and removes any backup codes that have not yet been pulled into active use.",
|
|
60567
|
+
type: 'boolean',
|
|
60568
|
+
},
|
|
60558
60569
|
custom_metadata: {
|
|
60559
60570
|
additionalProperties: {
|
|
60560
60571
|
nullable: true,
|
|
@@ -60639,6 +60650,11 @@ const openapi: OpenAPISpec = {
|
|
|
60639
60650
|
'application/json': {
|
|
60640
60651
|
schema: {
|
|
60641
60652
|
properties: {
|
|
60653
|
+
backup_access_code_pool_enabled: {
|
|
60654
|
+
description:
|
|
60655
|
+
"Indicates whether the device's [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is enabled. Set to `false` to disable the pool: Seam stops refilling it and removes any backup codes that have not yet been pulled into active use.",
|
|
60656
|
+
type: 'boolean',
|
|
60657
|
+
},
|
|
60642
60658
|
custom_metadata: {
|
|
60643
60659
|
additionalProperties: {
|
|
60644
60660
|
nullable: true,
|
|
@@ -14444,6 +14444,10 @@ export type Routes = {
|
|
|
14444
14444
|
supports_backup_access_code_pool?:
|
|
14445
14445
|
| (boolean | undefined)
|
|
14446
14446
|
| undefined
|
|
14447
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
14448
|
+
backup_access_code_pool_enabled?:
|
|
14449
|
+
| (boolean | undefined)
|
|
14450
|
+
| undefined
|
|
14447
14451
|
/** Indicates whether the device supports native entry events. */
|
|
14448
14452
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
14449
14453
|
/** Indicates whether the lock is locked. */
|
|
@@ -22348,6 +22352,10 @@ export type Routes = {
|
|
|
22348
22352
|
supports_backup_access_code_pool?:
|
|
22349
22353
|
| (boolean | undefined)
|
|
22350
22354
|
| undefined
|
|
22355
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
22356
|
+
backup_access_code_pool_enabled?:
|
|
22357
|
+
| (boolean | undefined)
|
|
22358
|
+
| undefined
|
|
22351
22359
|
/** Indicates whether the device supports native entry events. */
|
|
22352
22360
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
22353
22361
|
/** Indicates whether the lock is locked. */
|
|
@@ -48615,6 +48623,8 @@ export type Routes = {
|
|
|
48615
48623
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
48616
48624
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
48617
48625
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
48626
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
48627
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
48618
48628
|
/** Indicates whether the device supports native entry events. */
|
|
48619
48629
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
48620
48630
|
/** Indicates whether the lock is locked. */
|
|
@@ -50665,6 +50675,8 @@ export type Routes = {
|
|
|
50665
50675
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
50666
50676
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
50667
50677
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
50678
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
50679
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
50668
50680
|
/** Indicates whether the device supports native entry events. */
|
|
50669
50681
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
50670
50682
|
/** Indicates whether the lock is locked. */
|
|
@@ -54610,6 +54622,8 @@ export type Routes = {
|
|
|
54610
54622
|
[x: string]: string | boolean | null
|
|
54611
54623
|
}
|
|
54612
54624
|
| undefined
|
|
54625
|
+
/** Indicates whether the device's [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is enabled. Set to `false` to disable the pool: Seam stops refilling it and removes any backup codes that have not yet been pulled into active use. */
|
|
54626
|
+
backup_access_code_pool_enabled?: boolean | undefined
|
|
54613
54627
|
}
|
|
54614
54628
|
formData: {}
|
|
54615
54629
|
jsonResponse: {}
|
|
@@ -64642,6 +64656,8 @@ export type Routes = {
|
|
|
64642
64656
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
64643
64657
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
64644
64658
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
64659
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
64660
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
64645
64661
|
/** Indicates whether the device supports native entry events. */
|
|
64646
64662
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
64647
64663
|
/** Indicates whether the lock is locked. */
|
|
@@ -66448,6 +66464,8 @@ export type Routes = {
|
|
|
66448
66464
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
66449
66465
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
66450
66466
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
66467
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
66468
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
66451
66469
|
/** Indicates whether the device supports native entry events. */
|
|
66452
66470
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
66453
66471
|
/** Indicates whether the lock is locked. */
|
|
@@ -68451,6 +68469,8 @@ export type Routes = {
|
|
|
68451
68469
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
68452
68470
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
68453
68471
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
68472
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
68473
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
68454
68474
|
/** Indicates whether the device supports native entry events. */
|
|
68455
68475
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
68456
68476
|
/** Indicates whether the lock is locked. */
|
|
@@ -70256,6 +70276,8 @@ export type Routes = {
|
|
|
70256
70276
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
70257
70277
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
70258
70278
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
70279
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
70280
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
70259
70281
|
/** Indicates whether the device supports native entry events. */
|
|
70260
70282
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
70261
70283
|
/** Indicates whether the lock is locked. */
|
|
@@ -79970,6 +79992,8 @@ export type Routes = {
|
|
|
79970
79992
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
79971
79993
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
79972
79994
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
79995
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
79996
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
79973
79997
|
/** Indicates whether the device supports native entry events. */
|
|
79974
79998
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
79975
79999
|
/** Indicates whether the lock is locked. */
|
|
@@ -81775,6 +81799,8 @@ export type Routes = {
|
|
|
81775
81799
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
81776
81800
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
81777
81801
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
81802
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
81803
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
81778
81804
|
/** Indicates whether the device supports native entry events. */
|
|
81779
81805
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
81780
81806
|
/** Indicates whether the lock is locked. */
|
|
@@ -99921,6 +99947,10 @@ export type Routes = {
|
|
|
99921
99947
|
supports_backup_access_code_pool?:
|
|
99922
99948
|
| (boolean | undefined)
|
|
99923
99949
|
| undefined
|
|
99950
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
99951
|
+
backup_access_code_pool_enabled?:
|
|
99952
|
+
| (boolean | undefined)
|
|
99953
|
+
| undefined
|
|
99924
99954
|
/** Indicates whether the device supports native entry events. */
|
|
99925
99955
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
99926
99956
|
/** Indicates whether the lock is locked. */
|
|
@@ -108716,6 +108746,8 @@ export type Routes = {
|
|
|
108716
108746
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
108717
108747
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
108718
108748
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
108749
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
108750
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
108719
108751
|
/** Indicates whether the device supports native entry events. */
|
|
108720
108752
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
108721
108753
|
/** Indicates whether the lock is locked. */
|
|
@@ -114565,6 +114597,8 @@ export type Routes = {
|
|
|
114565
114597
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
114566
114598
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
114567
114599
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
114600
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
114601
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
114568
114602
|
/** Indicates whether the device supports native entry events. */
|
|
114569
114603
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
114570
114604
|
/** Indicates whether the lock is locked. */
|
|
@@ -116370,6 +116404,8 @@ export type Routes = {
|
|
|
116370
116404
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
116371
116405
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
116372
116406
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
116407
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
116408
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
116373
116409
|
/** Indicates whether the device supports native entry events. */
|
|
116374
116410
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
116375
116411
|
/** Indicates whether the lock is locked. */
|
|
@@ -127019,6 +127055,8 @@ export type Routes = {
|
|
|
127019
127055
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
127020
127056
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
127021
127057
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
127058
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
127059
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
127022
127060
|
/** Indicates whether the device supports native entry events. */
|
|
127023
127061
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
127024
127062
|
/** Indicates whether the lock is locked. */
|
|
@@ -128826,6 +128864,8 @@ export type Routes = {
|
|
|
128826
128864
|
max_active_codes_supported?: (number | undefined) | undefined
|
|
128827
128865
|
/** Indicates whether the device supports a [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes). */
|
|
128828
128866
|
supports_backup_access_code_pool?: (boolean | undefined) | undefined
|
|
128867
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
128868
|
+
backup_access_code_pool_enabled?: (boolean | undefined) | undefined
|
|
128829
128869
|
/** Indicates whether the device supports native entry events. */
|
|
128830
128870
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
128831
128871
|
/** Indicates whether the lock is locked. */
|
|
@@ -132065,6 +132105,10 @@ export type Routes = {
|
|
|
132065
132105
|
supports_backup_access_code_pool?:
|
|
132066
132106
|
| (boolean | undefined)
|
|
132067
132107
|
| undefined
|
|
132108
|
+
/** Indicates whether the [backup access code pool](https://docs.seam.co/low-level-apis/smart-locks/access-codes/backup-access-codes) is currently enabled for the device. To disable it, set this to `false` using [/devices/update](https://docs.seam.co/api/devices/update). */
|
|
132109
|
+
backup_access_code_pool_enabled?:
|
|
132110
|
+
| (boolean | undefined)
|
|
132111
|
+
| undefined
|
|
132068
132112
|
/** Indicates whether the device supports native entry events. */
|
|
132069
132113
|
has_native_entry_events?: (boolean | undefined) | undefined
|
|
132070
132114
|
/** Indicates whether the lock is locked. */
|