@seamapi/types 1.309.0 → 1.310.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 CHANGED
@@ -1196,7 +1196,9 @@ var acs_entrance_assa_abloy_vostio_metadata = zod.z.object({
1196
1196
  pms_id: zod.z.string().optional()
1197
1197
  });
1198
1198
  var acs_entrance_dormakaba_community_metadata = zod.z.object({
1199
- access_point_name: zod.z.string()
1199
+ access_point_name: zod.z.string(),
1200
+ common_area_number: zod.z.number().optional(),
1201
+ inner_access_points_names: zod.z.array(zod.z.string()).optional()
1200
1202
  });
1201
1203
  var acs_entrance_latch_metadata = zod.z.object({
1202
1204
  accessibility_type: zod.z.string(),
@@ -1410,6 +1412,13 @@ var acs_encoder = zod.z.object({
1410
1412
  created_at: zod.z.string().datetime().describe("Date and time at which the `acs_encoder` was created."),
1411
1413
  display_name: zod.z.string().describe("Display name for the `acs_encoder`.")
1412
1414
  });
1415
+ var acs_entrance_salto_space_metadata = zod.z.object({
1416
+ door_name: zod.z.string(),
1417
+ ext_door_id: zod.z.string(),
1418
+ door_description: zod.z.string().optional()
1419
+ });
1420
+
1421
+ // src/lib/seam/connect/models/acs/acs-entrance.ts
1413
1422
  var acs_entrance = zod.z.object({
1414
1423
  acs_system_id: zod.z.string().uuid().describe("ID of the access control system that contains the entrance."),
1415
1424
  acs_entrance_id: zod.z.string().uuid().describe("ID of the entrance."),
@@ -1425,7 +1434,8 @@ var acs_entrance = zod.z.object({
1425
1434
  visionline_metadata: acs_entrance_visionline_metadata.optional(),
1426
1435
  salto_ks_metadata: acs_entrance_salto_ks_metadata.optional(),
1427
1436
  dormakaba_community_metadata: acs_entrance_dormakaba_community_metadata.optional(),
1428
- assa_abloy_vostio_metadata: acs_entrance_assa_abloy_vostio_metadata.optional()
1437
+ assa_abloy_vostio_metadata: acs_entrance_assa_abloy_vostio_metadata.optional(),
1438
+ salto_space_metadata: acs_entrance_salto_space_metadata.optional()
1429
1439
  }).describe(
1430
1440
  "Represents an [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) within an [access control system](https://docs.seam.co/latest/capability-guides/access-systems)."
1431
1441
  );
@@ -3437,7 +3447,14 @@ var openapi_default = {
3437
3447
  type: "string"
3438
3448
  },
3439
3449
  dormakaba_community_metadata: {
3440
- properties: { access_point_name: { type: "string" } },
3450
+ properties: {
3451
+ access_point_name: { type: "string" },
3452
+ common_area_number: { format: "float", type: "number" },
3453
+ inner_access_points_names: {
3454
+ items: { type: "string" },
3455
+ type: "array"
3456
+ }
3457
+ },
3441
3458
  required: ["access_point_name"],
3442
3459
  type: "object"
3443
3460
  },
@@ -3486,6 +3503,15 @@ var openapi_default = {
3486
3503
  ],
3487
3504
  type: "object"
3488
3505
  },
3506
+ salto_space_metadata: {
3507
+ properties: {
3508
+ door_description: { type: "string" },
3509
+ door_name: { type: "string" },
3510
+ ext_door_id: { type: "string" }
3511
+ },
3512
+ required: ["door_name", "ext_door_id"],
3513
+ type: "object"
3514
+ },
3489
3515
  visionline_metadata: {
3490
3516
  properties: {
3491
3517
  door_category: {