@seamapi/types 1.213.0 → 1.215.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 +9 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -0
- package/lib/seam/connect/openapi.d.ts +4 -0
- package/lib/seam/connect/openapi.js +8 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +2 -2
- package/src/lib/seam/connect/openapi.ts +10 -1
- package/src/lib/seam/connect/route-types.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -8870,13 +8870,18 @@ var openapi_default = {
|
|
|
8870
8870
|
},
|
|
8871
8871
|
"/acs/systems/list_compatible_credential_manager_acs_systems": {
|
|
8872
8872
|
post: {
|
|
8873
|
+
description: "Returns a list of all credential manager ACS systems that are compatible with a specified \n[access control system](https://docs.seam.co/latest/capability-guides/access-systems).\n\nSpecify the ACS system for which you want to retrieve all compatible credential manager ACS \nsystems by including the corresponding `acs_system_id` in the request body.",
|
|
8873
8874
|
operationId: "acsSystemsListCompatibleCredentialManagerAcsSystemsPost",
|
|
8874
8875
|
requestBody: {
|
|
8875
8876
|
content: {
|
|
8876
8877
|
"application/json": {
|
|
8877
8878
|
schema: {
|
|
8878
8879
|
properties: {
|
|
8879
|
-
acs_system_id: {
|
|
8880
|
+
acs_system_id: {
|
|
8881
|
+
description: "ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems.",
|
|
8882
|
+
format: "uuid",
|
|
8883
|
+
type: "string"
|
|
8884
|
+
}
|
|
8880
8885
|
},
|
|
8881
8886
|
required: ["acs_system_id"],
|
|
8882
8887
|
type: "object"
|
|
@@ -8915,7 +8920,9 @@ var openapi_default = {
|
|
|
8915
8920
|
tags: ["/acs"],
|
|
8916
8921
|
"x-fern-sdk-group-name": ["acs", "systems"],
|
|
8917
8922
|
"x-fern-sdk-method-name": "list_compatible_credential_manager_acs_systems",
|
|
8918
|
-
"x-fern-sdk-return-value": "acs_systems"
|
|
8923
|
+
"x-fern-sdk-return-value": "acs_systems",
|
|
8924
|
+
"x-response-key": "acs_systems",
|
|
8925
|
+
"x-title": "List Compatible Credential Manager ACS Systems"
|
|
8919
8926
|
}
|
|
8920
8927
|
},
|
|
8921
8928
|
"/acs/users/add_to_access_group": {
|