@seamapi/types 1.482.0 → 1.484.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 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +30 -8
- package/dist/index.cjs +14 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +736 -212
- package/lib/seam/connect/models/batch.js +1 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +3 -3
- package/lib/seam/connect/models/connected-accounts/connected-account.js +0 -1
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +11 -0
- package/lib/seam/connect/openapi.js +10 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +16 -5
- package/package.json +1 -1
- package/src/lib/seam/connect/models/batch.ts +1 -0
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +0 -1
- package/src/lib/seam/connect/openapi.ts +11 -2
- package/src/lib/seam/connect/route-types.ts +16 -5
package/dist/connect.cjs
CHANGED
|
@@ -679,7 +679,7 @@ zod.z.object({
|
|
|
679
679
|
salto_ks_subscription_limit_almost_reached: salto_ks_subscription_limit_almost_reached.nullable().optional()
|
|
680
680
|
});
|
|
681
681
|
var connected_account = zod.z.object({
|
|
682
|
-
connected_account_id: zod.z.string().uuid().
|
|
682
|
+
connected_account_id: zod.z.string().uuid().describe("ID of the connected account."),
|
|
683
683
|
created_at: zod.z.string().datetime().optional().describe("Date and time at which the connected account was created."),
|
|
684
684
|
user_identifier: zod.z.object({
|
|
685
685
|
username: zod.z.string().optional().describe(
|
|
@@ -4207,6 +4207,7 @@ zod.z.object({
|
|
|
4207
4207
|
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
4208
4208
|
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
4209
4209
|
unmanaged_devices: unmanaged_device.array().optional(),
|
|
4210
|
+
connected_accounts: connected_account.array().optional(),
|
|
4210
4211
|
connect_webviews: connect_webview.array().optional(),
|
|
4211
4212
|
access_methods: access_method.array().optional(),
|
|
4212
4213
|
access_grants: access_grant.array().optional()
|
|
@@ -13624,6 +13625,7 @@ var openapi_default = {
|
|
|
13624
13625
|
}
|
|
13625
13626
|
},
|
|
13626
13627
|
required: [
|
|
13628
|
+
"connected_account_id",
|
|
13627
13629
|
"account_type_display_name",
|
|
13628
13630
|
"errors",
|
|
13629
13631
|
"warnings",
|
|
@@ -33922,9 +33924,10 @@ var openapi_default = {
|
|
|
33922
33924
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
33923
33925
|
type: "array"
|
|
33924
33926
|
},
|
|
33925
|
-
ok: { type: "boolean" }
|
|
33927
|
+
ok: { type: "boolean" },
|
|
33928
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
33926
33929
|
},
|
|
33927
|
-
required: ["acs_credentials", "ok"],
|
|
33930
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
33928
33931
|
type: "object"
|
|
33929
33932
|
}
|
|
33930
33933
|
}
|
|
@@ -34026,6 +34029,11 @@ var openapi_default = {
|
|
|
34026
34029
|
description: "Number of credentials to return.",
|
|
34027
34030
|
format: "float",
|
|
34028
34031
|
type: "number"
|
|
34032
|
+
},
|
|
34033
|
+
page_cursor: {
|
|
34034
|
+
description: "Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`.",
|
|
34035
|
+
nullable: true,
|
|
34036
|
+
type: "string"
|
|
34029
34037
|
}
|
|
34030
34038
|
},
|
|
34031
34039
|
type: "object"
|
|
@@ -34045,9 +34053,10 @@ var openapi_default = {
|
|
|
34045
34053
|
items: { $ref: "#/components/schemas/acs_credential" },
|
|
34046
34054
|
type: "array"
|
|
34047
34055
|
},
|
|
34048
|
-
ok: { type: "boolean" }
|
|
34056
|
+
ok: { type: "boolean" },
|
|
34057
|
+
pagination: { $ref: "#/components/schemas/pagination" }
|
|
34049
34058
|
},
|
|
34050
|
-
required: ["acs_credentials", "ok"],
|
|
34059
|
+
required: ["acs_credentials", "pagination", "ok"],
|
|
34051
34060
|
type: "object"
|
|
34052
34061
|
}
|
|
34053
34062
|
}
|