@seamapi/types 1.457.1 → 1.458.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 +38 -7
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +256 -84
- package/dist/index.cjs +38 -7
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +25 -10
- package/lib/seam/connect/models/acs/metadata/salto-space.d.ts +15 -6
- package/lib/seam/connect/models/acs/metadata/salto-space.js +13 -4
- package/lib/seam/connect/models/acs/metadata/salto-space.js.map +1 -1
- package/lib/seam/connect/models/batches/access_grants.d.ts +35 -14
- package/lib/seam/connect/models/batches/access_methods.d.ts +35 -14
- package/lib/seam/connect/models/batches/batch.d.ts +105 -42
- package/lib/seam/connect/models/batches/spaces.d.ts +35 -14
- package/lib/seam/connect/models/phones/phone-session.d.ts +100 -40
- package/lib/seam/connect/openapi.d.ts +26 -2
- package/lib/seam/connect/openapi.js +28 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -30
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/metadata/salto-space.ts +13 -4
- package/src/lib/seam/connect/openapi.ts +31 -4
- package/src/lib/seam/connect/route-types.ts +100 -30
package/dist/connect.cjs
CHANGED
|
@@ -2687,10 +2687,17 @@ var acs_encoder = zod.z.object({
|
|
|
2687
2687
|
To verify if your access control system requires a card encoder, see the corresponding [system integration guide](https://docs.seam.co/latest/device-and-system-integration-guides/overview#access-control-systems).
|
|
2688
2688
|
`);
|
|
2689
2689
|
var acs_entrance_salto_space_metadata = zod.z.object({
|
|
2690
|
+
ext_door_id: zod.z.string().describe(`
|
|
2691
|
+
---
|
|
2692
|
+
deprecated: use door_id.
|
|
2693
|
+
---
|
|
2694
|
+
`),
|
|
2695
|
+
door_id: zod.z.string().describe("Door ID in the Salto Space access system."),
|
|
2690
2696
|
door_name: zod.z.string().describe("Name of the door in the Salto Space access system."),
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2697
|
+
door_description: zod.z.string().describe("Description of the door in the Salto Space access system."),
|
|
2698
|
+
room_name: zod.z.string().describe("Name of the room in the Salto Space access system."),
|
|
2699
|
+
room_description: zod.z.string().describe("Description of the room in the Salto Space access system.")
|
|
2700
|
+
}).partial().describe("Salto Space-specific metadata associated with the entrance.");
|
|
2694
2701
|
|
|
2695
2702
|
// src/lib/seam/connect/models/acs/acs-entrance.ts
|
|
2696
2703
|
var acs_entrance_capability_flags = zod.z.object({
|
|
@@ -7863,16 +7870,28 @@ var openapi_default = {
|
|
|
7863
7870
|
description: "Description of the door in the Salto Space access system.",
|
|
7864
7871
|
type: "string"
|
|
7865
7872
|
},
|
|
7873
|
+
door_id: {
|
|
7874
|
+
description: "Door ID in the Salto Space access system.",
|
|
7875
|
+
type: "string"
|
|
7876
|
+
},
|
|
7866
7877
|
door_name: {
|
|
7867
7878
|
description: "Name of the door in the Salto Space access system.",
|
|
7868
7879
|
type: "string"
|
|
7869
7880
|
},
|
|
7870
7881
|
ext_door_id: {
|
|
7871
|
-
|
|
7882
|
+
deprecated: true,
|
|
7883
|
+
type: "string",
|
|
7884
|
+
"x-deprecated": "use door_id."
|
|
7885
|
+
},
|
|
7886
|
+
room_description: {
|
|
7887
|
+
description: "Description of the room in the Salto Space access system.",
|
|
7888
|
+
type: "string"
|
|
7889
|
+
},
|
|
7890
|
+
room_name: {
|
|
7891
|
+
description: "Name of the room in the Salto Space access system.",
|
|
7872
7892
|
type: "string"
|
|
7873
7893
|
}
|
|
7874
7894
|
},
|
|
7875
|
-
required: ["door_name", "ext_door_id"],
|
|
7876
7895
|
type: "object"
|
|
7877
7896
|
},
|
|
7878
7897
|
visionline_metadata: {
|
|
@@ -22898,16 +22917,28 @@ var openapi_default = {
|
|
|
22898
22917
|
description: "Description of the door in the Salto Space access system.",
|
|
22899
22918
|
type: "string"
|
|
22900
22919
|
},
|
|
22920
|
+
door_id: {
|
|
22921
|
+
description: "Door ID in the Salto Space access system.",
|
|
22922
|
+
type: "string"
|
|
22923
|
+
},
|
|
22901
22924
|
door_name: {
|
|
22902
22925
|
description: "Name of the door in the Salto Space access system.",
|
|
22903
22926
|
type: "string"
|
|
22904
22927
|
},
|
|
22905
22928
|
ext_door_id: {
|
|
22906
|
-
|
|
22929
|
+
deprecated: true,
|
|
22930
|
+
type: "string",
|
|
22931
|
+
"x-deprecated": "use door_id."
|
|
22932
|
+
},
|
|
22933
|
+
room_description: {
|
|
22934
|
+
description: "Description of the room in the Salto Space access system.",
|
|
22935
|
+
type: "string"
|
|
22936
|
+
},
|
|
22937
|
+
room_name: {
|
|
22938
|
+
description: "Name of the room in the Salto Space access system.",
|
|
22907
22939
|
type: "string"
|
|
22908
22940
|
}
|
|
22909
22941
|
},
|
|
22910
|
-
required: ["door_name", "ext_door_id"],
|
|
22911
22942
|
type: "object"
|
|
22912
22943
|
},
|
|
22913
22944
|
visionline_metadata: {
|