@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
package/dist/connect.d.cts
CHANGED
|
@@ -83136,6 +83136,10 @@ declare const _default: {
|
|
|
83136
83136
|
description: string;
|
|
83137
83137
|
type: string;
|
|
83138
83138
|
};
|
|
83139
|
+
use_backup_access_code_pool: {
|
|
83140
|
+
description: string;
|
|
83141
|
+
type: string;
|
|
83142
|
+
};
|
|
83139
83143
|
};
|
|
83140
83144
|
required: string[];
|
|
83141
83145
|
type: string;
|
|
@@ -83274,6 +83278,10 @@ declare const _default: {
|
|
|
83274
83278
|
description: string;
|
|
83275
83279
|
type: string;
|
|
83276
83280
|
};
|
|
83281
|
+
use_backup_access_code_pool: {
|
|
83282
|
+
description: string;
|
|
83283
|
+
type: string;
|
|
83284
|
+
};
|
|
83277
83285
|
};
|
|
83278
83286
|
required: string[];
|
|
83279
83287
|
type: string;
|
|
@@ -139630,6 +139638,8 @@ type Routes = {
|
|
|
139630
139638
|
allow_external_modification?: boolean | undefined;
|
|
139631
139639
|
/** Indicates whether [external modification](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#external-modification) of the code is allowed. Default: `false`. */
|
|
139632
139640
|
is_external_modification_allowed?: boolean | undefined;
|
|
139641
|
+
/** 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). */
|
|
139642
|
+
use_backup_access_code_pool?: boolean | undefined;
|
|
139633
139643
|
};
|
|
139634
139644
|
commonParams: {};
|
|
139635
139645
|
formData: {};
|
package/dist/index.cjs
CHANGED
|
@@ -35305,6 +35305,10 @@ var openapi_default = {
|
|
|
35305
35305
|
starts_at: {
|
|
35306
35306
|
description: "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.",
|
|
35307
35307
|
type: "string"
|
|
35308
|
+
},
|
|
35309
|
+
use_backup_access_code_pool: {
|
|
35310
|
+
description: "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).",
|
|
35311
|
+
type: "boolean"
|
|
35308
35312
|
}
|
|
35309
35313
|
},
|
|
35310
35314
|
required: ["device_ids"],
|
|
@@ -35408,6 +35412,10 @@ var openapi_default = {
|
|
|
35408
35412
|
starts_at: {
|
|
35409
35413
|
description: "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.",
|
|
35410
35414
|
type: "string"
|
|
35415
|
+
},
|
|
35416
|
+
use_backup_access_code_pool: {
|
|
35417
|
+
description: "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).",
|
|
35418
|
+
type: "boolean"
|
|
35411
35419
|
}
|
|
35412
35420
|
},
|
|
35413
35421
|
required: ["device_ids"],
|