@seamapi/types 1.209.0 → 1.210.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +72 -4
- package/lib/seam/connect/models/acs/acs-system.d.ts +23 -0
- package/lib/seam/connect/models/acs/acs-system.js +7 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +34 -4
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +56 -10
package/dist/connect.cjs
CHANGED
|
@@ -1206,6 +1206,11 @@ var acs_system = zod.z.object({
|
|
|
1206
1206
|
external_type_display_name: zod.z.string().describe(
|
|
1207
1207
|
"Display name that corresponds to the brand-specific terminology for the `acs_system` type."
|
|
1208
1208
|
).optional(),
|
|
1209
|
+
visionline_metadata: zod.z.object({
|
|
1210
|
+
mobile_access_uuid: zod.z.string(),
|
|
1211
|
+
system_id: zod.z.string(),
|
|
1212
|
+
lan_address: zod.z.string()
|
|
1213
|
+
}).optional(),
|
|
1209
1214
|
system_type: acs_system_external_type.describe(
|
|
1210
1215
|
`
|
|
1211
1216
|
---
|
|
@@ -2718,6 +2723,15 @@ var openapi_default = {
|
|
|
2718
2723
|
type: "string",
|
|
2719
2724
|
"x-deprecated": "Use `external_type_display_name`."
|
|
2720
2725
|
},
|
|
2726
|
+
visionline_metadata: {
|
|
2727
|
+
properties: {
|
|
2728
|
+
lan_address: { type: "string" },
|
|
2729
|
+
mobile_access_uuid: { type: "string" },
|
|
2730
|
+
system_id: { type: "string" }
|
|
2731
|
+
},
|
|
2732
|
+
required: ["mobile_access_uuid", "system_id", "lan_address"],
|
|
2733
|
+
type: "object"
|
|
2734
|
+
},
|
|
2721
2735
|
warnings: {
|
|
2722
2736
|
items: { properties: {}, type: "object" },
|
|
2723
2737
|
type: "array",
|