@seamapi/types 1.807.0 → 1.808.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 +8 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/dist/index.cjs +8 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +10 -0
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -2012,6 +2012,8 @@ export type Routes = {
|
|
|
2012
2012
|
allow_external_modification?: boolean | undefined;
|
|
2013
2013
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2014
2014
|
is_external_modification_allowed?: boolean | undefined;
|
|
2015
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
2016
|
+
use_backup_access_code_pool?: boolean | undefined;
|
|
2015
2017
|
};
|
|
2016
2018
|
commonParams: {};
|
|
2017
2019
|
formData: {};
|
package/package.json
CHANGED
|
@@ -31801,6 +31801,11 @@ export default {
|
|
|
31801
31801
|
'Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
31802
31802
|
type: 'string',
|
|
31803
31803
|
},
|
|
31804
|
+
use_backup_access_code_pool: {
|
|
31805
|
+
description:
|
|
31806
|
+
'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
|
|
31807
|
+
type: 'boolean',
|
|
31808
|
+
},
|
|
31804
31809
|
},
|
|
31805
31810
|
required: ['device_ids'],
|
|
31806
31811
|
type: 'object',
|
|
@@ -31914,6 +31919,11 @@ export default {
|
|
|
31914
31919
|
'Date and time at which the validity of the new access code starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
31915
31920
|
type: 'string',
|
|
31916
31921
|
},
|
|
31922
|
+
use_backup_access_code_pool: {
|
|
31923
|
+
description:
|
|
31924
|
+
'Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code).',
|
|
31925
|
+
type: 'boolean',
|
|
31926
|
+
},
|
|
31917
31927
|
},
|
|
31918
31928
|
required: ['device_ids'],
|
|
31919
31929
|
type: 'object',
|
|
@@ -2288,6 +2288,8 @@ export type Routes = {
|
|
|
2288
2288
|
allow_external_modification?: boolean | undefined
|
|
2289
2289
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
2290
2290
|
is_external_modification_allowed?: boolean | undefined
|
|
2291
|
+
/** Indicates whether to use a [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#backup-access-codes) provided by Seam. If `true`, you can use [`/access_codes/pull_backup_access_code`](https://docs.seam.co/latest/api/access_codes/pull_backup_access_code). */
|
|
2292
|
+
use_backup_access_code_pool?: boolean | undefined
|
|
2291
2293
|
}
|
|
2292
2294
|
commonParams: {}
|
|
2293
2295
|
formData: {}
|