@seamapi/types 1.259.1 → 1.260.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
@@ -1215,10 +1215,10 @@ var unmanaged_acs_credential = common_acs_credential.merge(
1215
1215
  })
1216
1216
  );
1217
1217
  var acs_entrance = zod.z.object({
1218
- acs_system_id: zod.z.string().uuid(),
1219
- acs_entrance_id: zod.z.string().uuid(),
1220
- created_at: zod.z.string().datetime(),
1221
- display_name: zod.z.string(),
1218
+ acs_system_id: zod.z.string().uuid().describe("ID of the access control system that contains the entrance."),
1219
+ acs_entrance_id: zod.z.string().uuid().describe("ID of the entrance."),
1220
+ created_at: zod.z.string().datetime().describe("Date and time at which the entrance was created."),
1221
+ display_name: zod.z.string().describe("Display name for the entrance."),
1222
1222
  errors: zod.z.array(
1223
1223
  zod.z.object({
1224
1224
  error_code: zod.z.string(),
@@ -2853,10 +2853,25 @@ var openapi_default = {
2853
2853
  },
2854
2854
  acs_entrance: {
2855
2855
  properties: {
2856
- acs_entrance_id: { format: "uuid", type: "string" },
2857
- acs_system_id: { format: "uuid", type: "string" },
2858
- created_at: { format: "date-time", type: "string" },
2859
- display_name: { type: "string" },
2856
+ acs_entrance_id: {
2857
+ description: "ID of the entrance.",
2858
+ format: "uuid",
2859
+ type: "string"
2860
+ },
2861
+ acs_system_id: {
2862
+ description: "ID of the access control system that contains the entrance.",
2863
+ format: "uuid",
2864
+ type: "string"
2865
+ },
2866
+ created_at: {
2867
+ description: "Date and time at which the entrance was created.",
2868
+ format: "date-time",
2869
+ type: "string"
2870
+ },
2871
+ display_name: {
2872
+ description: "Display name for the entrance.",
2873
+ type: "string"
2874
+ },
2860
2875
  errors: {
2861
2876
  items: {
2862
2877
  properties: {