@seamapi/types 1.856.0 → 1.857.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
@@ -3752,15 +3752,22 @@ var entrance_shares_zone = common_acs_entrance_warning.extend({
3752
3752
  }).describe(
3753
3753
  "Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually."
3754
3754
  );
3755
+ var entrance_setup_required = common_acs_entrance_warning.extend({
3756
+ warning_code: zod.z.literal("entrance_setup_required").describe(warning_code_description8)
3757
+ }).describe(
3758
+ "Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it."
3759
+ );
3755
3760
  var acs_entrance_warning = zod.z.discriminatedUnion("warning_code", [
3756
3761
  salto_ks_entrance_access_code_support_removed,
3757
- entrance_shares_zone
3762
+ entrance_shares_zone,
3763
+ entrance_setup_required
3758
3764
  ]).describe(
3759
3765
  "Warning associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
3760
3766
  );
3761
3767
  zod.z.object({
3762
3768
  salto_ks_entrance_access_code_support_removed: salto_ks_entrance_access_code_support_removed.optional().nullable(),
3763
- entrance_shares_zone: entrance_shares_zone.optional().nullable()
3769
+ entrance_shares_zone: entrance_shares_zone.optional().nullable(),
3770
+ entrance_setup_required: entrance_setup_required.optional().nullable()
3764
3771
  });
3765
3772
  var acs_entrance_capability_flags = zod.z.object({
3766
3773
  can_unlock_with_mobile_key: zod.z.boolean().optional().describe(
@@ -11211,6 +11218,27 @@ var openapi = {
11211
11218
  },
11212
11219
  required: ["created_at", "message", "warning_code"],
11213
11220
  type: "object"
11221
+ },
11222
+ {
11223
+ description: "Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.",
11224
+ properties: {
11225
+ created_at: {
11226
+ description: "Date and time at which Seam created the warning.",
11227
+ format: "date-time",
11228
+ type: "string"
11229
+ },
11230
+ message: {
11231
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
11232
+ type: "string"
11233
+ },
11234
+ warning_code: {
11235
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
11236
+ enum: ["entrance_setup_required"],
11237
+ type: "string"
11238
+ }
11239
+ },
11240
+ required: ["created_at", "message", "warning_code"],
11241
+ type: "object"
11214
11242
  }
11215
11243
  ]
11216
11244
  },
@@ -30600,6 +30628,31 @@ var openapi = {
30600
30628
  "warning_code"
30601
30629
  ],
30602
30630
  type: "object"
30631
+ },
30632
+ {
30633
+ description: "Indicates that this entrance requires additional configuration in the access control system before Seam can fully manage it.",
30634
+ properties: {
30635
+ created_at: {
30636
+ description: "Date and time at which Seam created the warning.",
30637
+ format: "date-time",
30638
+ type: "string"
30639
+ },
30640
+ message: {
30641
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
30642
+ type: "string"
30643
+ },
30644
+ warning_code: {
30645
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
30646
+ enum: ["entrance_setup_required"],
30647
+ type: "string"
30648
+ }
30649
+ },
30650
+ required: [
30651
+ "created_at",
30652
+ "message",
30653
+ "warning_code"
30654
+ ],
30655
+ type: "object"
30603
30656
  }
30604
30657
  ]
30605
30658
  },