@seamapi/types 1.259.0 → 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 +28 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +27 -2
- package/lib/seam/connect/models/acs/acs-entrance.js +10 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +5 -0
- package/lib/seam/connect/openapi.js +24 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +10 -4
- package/src/lib/seam/connect/openapi.ts +25 -5
- package/src/lib/seam/connect/route-types.ts +22 -2
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: {
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
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: {
|
|
@@ -6319,7 +6334,11 @@ var openapi_default = {
|
|
|
6319
6334
|
hvac_mode_setting: { type: "string" },
|
|
6320
6335
|
is_fallback_climate_preset: { type: "boolean" },
|
|
6321
6336
|
occurred_at: { format: "date-time", type: "string" },
|
|
6322
|
-
thermostat_schedule_id: {
|
|
6337
|
+
thermostat_schedule_id: {
|
|
6338
|
+
format: "uuid",
|
|
6339
|
+
nullable: true,
|
|
6340
|
+
type: "string"
|
|
6341
|
+
},
|
|
6323
6342
|
workspace_id: { format: "uuid", type: "string" }
|
|
6324
6343
|
},
|
|
6325
6344
|
required: [
|