@seamapi/types 1.847.0 → 1.848.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
@@ -3193,7 +3193,8 @@ var acs_access_group_external_type = zod.z.enum([
3193
3193
  "brivo_group",
3194
3194
  "salto_space_group",
3195
3195
  "dormakaba_community_access_group",
3196
- "dormakaba_ambiance_access_group"
3196
+ "dormakaba_ambiance_access_group",
3197
+ "avigilon_alta_group"
3197
3198
  ]);
3198
3199
  var common_acs_access_group_error = zod.z.object({
3199
3200
  created_at: zod.z.string().datetime().describe("Date and time at which Seam created the error."),
@@ -3727,13 +3728,20 @@ var salto_ks_entrance_access_code_support_removed = common_acs_entrance_warning.
3727
3728
  }).describe(
3728
3729
  "Indicates that a change in the reported device model has been detected for this Salto KS entrance, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps."
3729
3730
  );
3731
+ var entrance_shares_zone = common_acs_entrance_warning.extend({
3732
+ warning_code: zod.z.literal("entrance_shares_zone").describe(warning_code_description8)
3733
+ }).describe(
3734
+ "Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually."
3735
+ );
3730
3736
  var acs_entrance_warning = zod.z.discriminatedUnion("warning_code", [
3731
- salto_ks_entrance_access_code_support_removed
3737
+ salto_ks_entrance_access_code_support_removed,
3738
+ entrance_shares_zone
3732
3739
  ]).describe(
3733
3740
  "Warning associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
3734
3741
  );
3735
3742
  zod.z.object({
3736
- salto_ks_entrance_access_code_support_removed: salto_ks_entrance_access_code_support_removed.optional().nullable()
3743
+ salto_ks_entrance_access_code_support_removed: salto_ks_entrance_access_code_support_removed.optional().nullable(),
3744
+ entrance_shares_zone: entrance_shares_zone.optional().nullable()
3737
3745
  });
3738
3746
  var acs_entrance_capability_flags = zod.z.object({
3739
3747
  can_unlock_with_mobile_key: zod.z.boolean().optional().describe(
@@ -9752,7 +9760,8 @@ var openapi = {
9752
9760
  "brivo_group",
9753
9761
  "salto_space_group",
9754
9762
  "dormakaba_community_access_group",
9755
- "dormakaba_ambiance_access_group"
9763
+ "dormakaba_ambiance_access_group",
9764
+ "avigilon_alta_group"
9756
9765
  ],
9757
9766
  type: "string",
9758
9767
  "x-deprecated": "Use `external_type`."
@@ -9841,7 +9850,8 @@ var openapi = {
9841
9850
  "brivo_group",
9842
9851
  "salto_space_group",
9843
9852
  "dormakaba_community_access_group",
9844
- "dormakaba_ambiance_access_group"
9853
+ "dormakaba_ambiance_access_group",
9854
+ "avigilon_alta_group"
9845
9855
  ],
9846
9856
  type: "string"
9847
9857
  },
@@ -11116,6 +11126,27 @@ var openapi = {
11116
11126
  },
11117
11127
  required: ["created_at", "message", "warning_code"],
11118
11128
  type: "object"
11129
+ },
11130
+ {
11131
+ description: "Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually.",
11132
+ properties: {
11133
+ created_at: {
11134
+ description: "Date and time at which Seam created the warning.",
11135
+ format: "date-time",
11136
+ type: "string"
11137
+ },
11138
+ message: {
11139
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
11140
+ type: "string"
11141
+ },
11142
+ warning_code: {
11143
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
11144
+ enum: ["entrance_shares_zone"],
11145
+ type: "string"
11146
+ }
11147
+ },
11148
+ required: ["created_at", "message", "warning_code"],
11149
+ type: "object"
11119
11150
  }
11120
11151
  ]
11121
11152
  },
@@ -29915,6 +29946,31 @@ var openapi = {
29915
29946
  "warning_code"
29916
29947
  ],
29917
29948
  type: "object"
29949
+ },
29950
+ {
29951
+ description: "Indicates that this entrance shares a zone with other entrances in Avigilon Alta and cannot be added to an access group individually.",
29952
+ properties: {
29953
+ created_at: {
29954
+ description: "Date and time at which Seam created the warning.",
29955
+ format: "date-time",
29956
+ type: "string"
29957
+ },
29958
+ message: {
29959
+ description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
29960
+ type: "string"
29961
+ },
29962
+ warning_code: {
29963
+ description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
29964
+ enum: ["entrance_shares_zone"],
29965
+ type: "string"
29966
+ }
29967
+ },
29968
+ required: [
29969
+ "created_at",
29970
+ "message",
29971
+ "warning_code"
29972
+ ],
29973
+ type: "object"
29918
29974
  }
29919
29975
  ]
29920
29976
  },
@@ -32403,7 +32459,8 @@ var openapi = {
32403
32459
  "brivo_group",
32404
32460
  "salto_space_group",
32405
32461
  "dormakaba_community_access_group",
32406
- "dormakaba_ambiance_access_group"
32462
+ "dormakaba_ambiance_access_group",
32463
+ "avigilon_alta_group"
32407
32464
  ],
32408
32465
  type: "string",
32409
32466
  "x-deprecated": "Use `external_type`."
@@ -32492,7 +32549,8 @@ var openapi = {
32492
32549
  "brivo_group",
32493
32550
  "salto_space_group",
32494
32551
  "dormakaba_community_access_group",
32495
- "dormakaba_ambiance_access_group"
32552
+ "dormakaba_ambiance_access_group",
32553
+ "avigilon_alta_group"
32496
32554
  ],
32497
32555
  type: "string"
32498
32556
  },