@seamapi/types 1.824.0 → 1.826.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 +16 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +16 -16
- package/dist/index.cjs +16 -7
- 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 +14 -5
- 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 +14 -5
- 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: {
|
|
@@ -73039,7 +73039,10 @@ var openapi = {
|
|
|
73039
73039
|
400: { description: "Bad Request" },
|
|
73040
73040
|
401: { description: "Unauthorized" }
|
|
73041
73041
|
},
|
|
73042
|
-
security: [
|
|
73042
|
+
security: [
|
|
73043
|
+
{ client_session_with_customer: [] },
|
|
73044
|
+
{ console_session_with_workspace: [] }
|
|
73045
|
+
],
|
|
73043
73046
|
summary: "/seam/customer/v1/spaces/create",
|
|
73044
73047
|
tags: [],
|
|
73045
73048
|
"x-draft": "Early access.",
|
|
@@ -73107,7 +73110,10 @@ var openapi = {
|
|
|
73107
73110
|
400: { description: "Bad Request" },
|
|
73108
73111
|
401: { description: "Unauthorized" }
|
|
73109
73112
|
},
|
|
73110
|
-
security: [
|
|
73113
|
+
security: [
|
|
73114
|
+
{ client_session_with_customer: [] },
|
|
73115
|
+
{ console_session_with_workspace: [] }
|
|
73116
|
+
],
|
|
73111
73117
|
summary: "/seam/customer/v1/spaces/list",
|
|
73112
73118
|
tags: [],
|
|
73113
73119
|
"x-draft": "Early access.",
|
|
@@ -73170,7 +73176,10 @@ var openapi = {
|
|
|
73170
73176
|
400: { description: "Bad Request" },
|
|
73171
73177
|
401: { description: "Unauthorized" }
|
|
73172
73178
|
},
|
|
73173
|
-
security: [
|
|
73179
|
+
security: [
|
|
73180
|
+
{ client_session_with_customer: [] },
|
|
73181
|
+
{ console_session_with_workspace: [] }
|
|
73182
|
+
],
|
|
73174
73183
|
summary: "/seam/customer/v1/spaces/list",
|
|
73175
73184
|
tags: [],
|
|
73176
73185
|
"x-draft": "Early access.",
|