@seamapi/types 1.205.0 → 1.206.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 +8 -16
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +11 -1
- package/lib/seam/connect/models/acs/acs-system.js +5 -9
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +9 -1
- package/lib/seam/connect/openapi.js +3 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +5 -11
- package/src/lib/seam/connect/openapi.ts +3 -6
- package/src/lib/seam/connect/route-types.ts +2 -0
package/dist/connect.cjs
CHANGED
|
@@ -1198,13 +1198,7 @@ zod.z.object({
|
|
|
1198
1198
|
seam_bridge_disconnected: seam_bridge_disconnected.optional().nullable(),
|
|
1199
1199
|
visionline_instance_unreachable: visionline_instance_unreachable.optional().nullable()
|
|
1200
1200
|
});
|
|
1201
|
-
var acs_system_warning = zod.z.object({})
|
|
1202
|
-
`
|
|
1203
|
-
---
|
|
1204
|
-
undocumented: Currently, no warnings defined for \`acs_system\`s.
|
|
1205
|
-
---
|
|
1206
|
-
`
|
|
1207
|
-
);
|
|
1201
|
+
var acs_system_warning = zod.z.object({});
|
|
1208
1202
|
zod.z.object({});
|
|
1209
1203
|
var acs_system = zod.z.object({
|
|
1210
1204
|
acs_system_id: zod.z.string().uuid().describe("ID of the `acs_system`."),
|
|
@@ -1237,10 +1231,10 @@ var acs_system = zod.z.object({
|
|
|
1237
1231
|
errors: zod.z.array(acs_system_error).describe("Errors associated with the `acs_system`."),
|
|
1238
1232
|
warnings: zod.z.array(acs_system_warning).describe(
|
|
1239
1233
|
`
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1234
|
+
---
|
|
1235
|
+
undocumented: Currently, no warnings defined for \`acs_system\`s.
|
|
1236
|
+
---
|
|
1237
|
+
`
|
|
1244
1238
|
)
|
|
1245
1239
|
}).merge(acs_system_capability_flags).describe(
|
|
1246
1240
|
"Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems)."
|
|
@@ -2709,11 +2703,7 @@ var openapi_default = {
|
|
|
2709
2703
|
"x-deprecated": "Use `external_type_display_name`."
|
|
2710
2704
|
},
|
|
2711
2705
|
warnings: {
|
|
2712
|
-
items: {
|
|
2713
|
-
description: "\n ---\n undocumented: Currently, no warnings defined for `acs_system`s.\n ---\n ",
|
|
2714
|
-
properties: {},
|
|
2715
|
-
type: "object"
|
|
2716
|
-
},
|
|
2706
|
+
items: { properties: {}, type: "object" },
|
|
2717
2707
|
type: "array",
|
|
2718
2708
|
"x-undocumented": "Currently, no warnings defined for `acs_system`s."
|
|
2719
2709
|
},
|
|
@@ -9128,6 +9118,8 @@ var openapi_default = {
|
|
|
9128
9118
|
schema: {
|
|
9129
9119
|
properties: {
|
|
9130
9120
|
acs_system_id: { format: "uuid", type: "string" },
|
|
9121
|
+
created_before: { format: "date-time", type: "string" },
|
|
9122
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
9131
9123
|
user_identity_email_address: { type: "string" },
|
|
9132
9124
|
user_identity_id: { format: "uuid", type: "string" },
|
|
9133
9125
|
user_identity_phone_number: { type: "string" }
|