@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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.807.0",
3
+ "version": "1.808.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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: {}