@seamapi/types 1.318.0 → 1.318.1
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 +10 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -12
- package/lib/seam/connect/models/acs/acs-system.js +6 -5
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -0
- package/lib/seam/connect/openapi.js +3 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -12
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +6 -7
- package/src/lib/seam/connect/openapi.ts +3 -1
- package/src/lib/seam/connect/route-types.ts +4 -12
package/dist/connect.cjs
CHANGED
|
@@ -1600,13 +1600,12 @@ var acs_system = zod.z.object({
|
|
|
1600
1600
|
workspace_id: zod.z.string().uuid().describe(
|
|
1601
1601
|
"ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_system`."
|
|
1602
1602
|
),
|
|
1603
|
-
connected_account_ids: zod.z.array(zod.z.string().uuid()).describe(
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
),
|
|
1603
|
+
connected_account_ids: zod.z.array(zod.z.string().uuid()).describe(`
|
|
1604
|
+
---
|
|
1605
|
+
deprecated: Use \`connected_account_id\`.
|
|
1606
|
+
---
|
|
1607
|
+
IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the \`acs_system\`.
|
|
1608
|
+
`),
|
|
1610
1609
|
connected_account_id: zod.z.string().uuid().describe(
|
|
1611
1610
|
"ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`."
|
|
1612
1611
|
),
|
|
@@ -3561,9 +3560,11 @@ var openapi_default = {
|
|
|
3561
3560
|
type: "string"
|
|
3562
3561
|
},
|
|
3563
3562
|
connected_account_ids: {
|
|
3564
|
-
|
|
3563
|
+
deprecated: true,
|
|
3564
|
+
description: "IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the `acs_system`.",
|
|
3565
3565
|
items: { format: "uuid", type: "string" },
|
|
3566
|
-
type: "array"
|
|
3566
|
+
type: "array",
|
|
3567
|
+
"x-deprecated": "Use `connected_account_id`."
|
|
3567
3568
|
},
|
|
3568
3569
|
created_at: {
|
|
3569
3570
|
description: "Date and time at which the `acs_system` was created.",
|