@seamapi/types 1.824.0 → 1.825.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 +4 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -16
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +3 -3
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +2 -2
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +5 -5
- package/lib/seam/connect/openapi.js +2 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +8 -8
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +2 -2
- package/src/lib/seam/connect/openapi.ts +2 -2
- package/src/lib/seam/connect/route-types.ts +8 -8
package/dist/connect.cjs
CHANGED
|
@@ -2627,8 +2627,8 @@ var unmanaged_access_code = access_code.pick({
|
|
|
2627
2627
|
ends_at: true
|
|
2628
2628
|
}).extend({
|
|
2629
2629
|
is_managed: zod.z.literal(false).describe("Indicates that Seam does not manage the access code."),
|
|
2630
|
-
status: zod.z.enum(["set"]).describe(
|
|
2631
|
-
"Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational."
|
|
2630
|
+
status: zod.z.enum(["set", "unset"]).describe(
|
|
2631
|
+
"Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device."
|
|
2632
2632
|
),
|
|
2633
2633
|
dormakaba_oracode_metadata: dormakaba_oracode_access_code_metadata.nullable().optional().describe(
|
|
2634
2634
|
"Metadata for a dormakaba Oracode unmanaged access code. Only present for unmanaged access codes from dormakaba Oracode devices."
|
|
@@ -31613,8 +31613,8 @@ var openapi = {
|
|
|
31613
31613
|
type: "string"
|
|
31614
31614
|
},
|
|
31615
31615
|
status: {
|
|
31616
|
-
description: "Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational.",
|
|
31617
|
-
enum: ["set"],
|
|
31616
|
+
description: "Current status of the access code within the operational lifecycle. `set` indicates that the code is active and operational. `unset` indicates that the code exists on the provider but is not usable on the device.",
|
|
31617
|
+
enum: ["set", "unset"],
|
|
31618
31618
|
type: "string"
|
|
31619
31619
|
},
|
|
31620
31620
|
type: {
|