@seamapi/types 1.205.1 → 1.207.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 +10 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +15 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +9 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +3 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +11 -1
- package/src/lib/seam/connect/route-types.ts +3 -0
package/dist/connect.cjs
CHANGED
|
@@ -8770,13 +8770,18 @@ var openapi_default = {
|
|
|
8770
8770
|
},
|
|
8771
8771
|
"/acs/systems/list": {
|
|
8772
8772
|
post: {
|
|
8773
|
+
description: "Returns a list of all [access control systems](https://docs.seam.co/latest/capability-guides/access-systems).\n\nTo filter the list of returned access control systems by a specific connected account ID, include the \n`connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the \nresponse includes all access control systems connected to your workspace.",
|
|
8773
8774
|
operationId: "acsSystemsListPost",
|
|
8774
8775
|
requestBody: {
|
|
8775
8776
|
content: {
|
|
8776
8777
|
"application/json": {
|
|
8777
8778
|
schema: {
|
|
8778
8779
|
properties: {
|
|
8779
|
-
connected_account_id: {
|
|
8780
|
+
connected_account_id: {
|
|
8781
|
+
description: "ID of the connected account by which to filter the list of returned access control systems.",
|
|
8782
|
+
format: "uuid",
|
|
8783
|
+
type: "string"
|
|
8784
|
+
}
|
|
8780
8785
|
},
|
|
8781
8786
|
type: "object"
|
|
8782
8787
|
}
|
|
@@ -8815,7 +8820,8 @@ var openapi_default = {
|
|
|
8815
8820
|
tags: ["/acs"],
|
|
8816
8821
|
"x-fern-sdk-group-name": ["acs", "systems"],
|
|
8817
8822
|
"x-fern-sdk-method-name": "list",
|
|
8818
|
-
"x-fern-sdk-return-value": "acs_systems"
|
|
8823
|
+
"x-fern-sdk-return-value": "acs_systems",
|
|
8824
|
+
"x-title": "List ACS Systems"
|
|
8819
8825
|
}
|
|
8820
8826
|
},
|
|
8821
8827
|
"/acs/systems/list_compatible_credential_manager_acs_systems": {
|
|
@@ -9118,6 +9124,8 @@ var openapi_default = {
|
|
|
9118
9124
|
schema: {
|
|
9119
9125
|
properties: {
|
|
9120
9126
|
acs_system_id: { format: "uuid", type: "string" },
|
|
9127
|
+
created_before: { format: "date-time", type: "string" },
|
|
9128
|
+
limit: { default: 500, format: "float", type: "number" },
|
|
9121
9129
|
user_identity_email_address: { type: "string" },
|
|
9122
9130
|
user_identity_id: { format: "uuid", type: "string" },
|
|
9123
9131
|
user_identity_phone_number: { type: "string" }
|