@seamapi/types 1.662.0 → 1.663.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 +11 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +50 -0
- package/dist/index.cjs +11 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +10 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +3 -0
- package/lib/seam/connect/models/acs/metadata/salto-space.js +2 -1
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +14 -0
- 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 +18 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +2 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +18 -0
package/dist/connect.cjs
CHANGED
|
@@ -2635,10 +2635,11 @@ var acs_entrance_salto_space_metadata = zod.z.object({
|
|
|
2635
2635
|
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2636
2636
|
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2637
2637
|
var acs_user_salto_space_metadata = zod.z.object({
|
|
2638
|
-
|
|
2638
|
+
user_id: zod.z.string().describe("User ID in the Salto Space access system."),
|
|
2639
|
+
audit_openings: zod.z.boolean().describe(
|
|
2639
2640
|
"Indicates whether AuditOpenings is enabled for the user in the Salto Space access system."
|
|
2640
2641
|
)
|
|
2641
|
-
}).describe(
|
|
2642
|
+
}).partial().describe(
|
|
2642
2643
|
"Salto Space-specific metadata associated with the access system user."
|
|
2643
2644
|
);
|
|
2644
2645
|
var acs_entrance_visionline_metadata = zod.z.object({
|
|
@@ -9493,6 +9494,10 @@ var openapi_default = {
|
|
|
9493
9494
|
audit_openings: {
|
|
9494
9495
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
9495
9496
|
type: "boolean"
|
|
9497
|
+
},
|
|
9498
|
+
user_id: {
|
|
9499
|
+
description: "User ID in the Salto Space access system.",
|
|
9500
|
+
type: "string"
|
|
9496
9501
|
}
|
|
9497
9502
|
},
|
|
9498
9503
|
type: "object"
|
|
@@ -27656,6 +27661,10 @@ var openapi_default = {
|
|
|
27656
27661
|
audit_openings: {
|
|
27657
27662
|
description: "Indicates whether AuditOpenings is enabled for the user in the Salto Space access system.",
|
|
27658
27663
|
type: "boolean"
|
|
27664
|
+
},
|
|
27665
|
+
user_id: {
|
|
27666
|
+
description: "User ID in the Salto Space access system.",
|
|
27667
|
+
type: "string"
|
|
27659
27668
|
}
|
|
27660
27669
|
},
|
|
27661
27670
|
type: "object"
|