@seamapi/types 1.212.1 → 1.214.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.d.cts
CHANGED
|
@@ -16914,6 +16914,7 @@ declare const _default: {
|
|
|
16914
16914
|
};
|
|
16915
16915
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
16916
16916
|
post: {
|
|
16917
|
+
description: string;
|
|
16917
16918
|
operationId: string;
|
|
16918
16919
|
requestBody: {
|
|
16919
16920
|
content: {
|
|
@@ -16921,6 +16922,7 @@ declare const _default: {
|
|
|
16921
16922
|
schema: {
|
|
16922
16923
|
properties: {
|
|
16923
16924
|
acs_system_id: {
|
|
16925
|
+
description: string;
|
|
16924
16926
|
format: string;
|
|
16925
16927
|
type: string;
|
|
16926
16928
|
};
|
|
@@ -16979,6 +16981,8 @@ declare const _default: {
|
|
|
16979
16981
|
'x-fern-sdk-group-name': string[];
|
|
16980
16982
|
'x-fern-sdk-method-name': string;
|
|
16981
16983
|
'x-fern-sdk-return-value': string;
|
|
16984
|
+
'x-response-key': string;
|
|
16985
|
+
'x-title': string;
|
|
16982
16986
|
};
|
|
16983
16987
|
};
|
|
16984
16988
|
'/acs/users/add_to_access_group': {
|
|
@@ -29084,6 +29088,7 @@ interface Routes {
|
|
|
29084
29088
|
queryParams: {};
|
|
29085
29089
|
jsonBody: {};
|
|
29086
29090
|
commonParams: {
|
|
29091
|
+
/** ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems. */
|
|
29087
29092
|
acs_system_id: string;
|
|
29088
29093
|
};
|
|
29089
29094
|
formData: {};
|
|
@@ -7550,6 +7550,7 @@ declare const _default: {
|
|
|
7550
7550
|
};
|
|
7551
7551
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
7552
7552
|
post: {
|
|
7553
|
+
description: string;
|
|
7553
7554
|
operationId: string;
|
|
7554
7555
|
requestBody: {
|
|
7555
7556
|
content: {
|
|
@@ -7557,6 +7558,7 @@ declare const _default: {
|
|
|
7557
7558
|
schema: {
|
|
7558
7559
|
properties: {
|
|
7559
7560
|
acs_system_id: {
|
|
7561
|
+
description: string;
|
|
7560
7562
|
format: string;
|
|
7561
7563
|
type: string;
|
|
7562
7564
|
};
|
|
@@ -7615,6 +7617,8 @@ declare const _default: {
|
|
|
7615
7617
|
'x-fern-sdk-group-name': string[];
|
|
7616
7618
|
'x-fern-sdk-method-name': string;
|
|
7617
7619
|
'x-fern-sdk-return-value': string;
|
|
7620
|
+
'x-response-key': string;
|
|
7621
|
+
'x-title': string;
|
|
7618
7622
|
};
|
|
7619
7623
|
};
|
|
7620
7624
|
'/acs/users/add_to_access_group': {
|
|
@@ -6700,13 +6700,18 @@ export default {
|
|
|
6700
6700
|
},
|
|
6701
6701
|
'/acs/systems/list_compatible_credential_manager_acs_systems': {
|
|
6702
6702
|
post: {
|
|
6703
|
+
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.',
|
|
6703
6704
|
operationId: 'acsSystemsListCompatibleCredentialManagerAcsSystemsPost',
|
|
6704
6705
|
requestBody: {
|
|
6705
6706
|
content: {
|
|
6706
6707
|
'application/json': {
|
|
6707
6708
|
schema: {
|
|
6708
6709
|
properties: {
|
|
6709
|
-
acs_system_id: {
|
|
6710
|
+
acs_system_id: {
|
|
6711
|
+
description: 'ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems.',
|
|
6712
|
+
format: 'uuid',
|
|
6713
|
+
type: 'string',
|
|
6714
|
+
},
|
|
6710
6715
|
},
|
|
6711
6716
|
required: ['acs_system_id'],
|
|
6712
6717
|
type: 'object',
|
|
@@ -6746,6 +6751,8 @@ export default {
|
|
|
6746
6751
|
'x-fern-sdk-group-name': ['acs', 'systems'],
|
|
6747
6752
|
'x-fern-sdk-method-name': 'list_compatible_credential_manager_acs_systems',
|
|
6748
6753
|
'x-fern-sdk-return-value': 'acs_systems',
|
|
6754
|
+
'x-response-key': 'acs_systems',
|
|
6755
|
+
'x-title': 'List Compatible Credential Manager ACS Systems',
|
|
6749
6756
|
},
|
|
6750
6757
|
},
|
|
6751
6758
|
'/acs/users/add_to_access_group': {
|