@seamapi/types 1.213.0 → 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.
@@ -2897,6 +2897,7 @@ export interface Routes {
2897
2897
  queryParams: {};
2898
2898
  jsonBody: {};
2899
2899
  commonParams: {
2900
+ /** ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems. */
2900
2901
  acs_system_id: string;
2901
2902
  };
2902
2903
  formData: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.213.0",
3
+ "version": "1.214.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -6801,13 +6801,20 @@ export default {
6801
6801
  },
6802
6802
  '/acs/systems/list_compatible_credential_manager_acs_systems': {
6803
6803
  post: {
6804
+ description:
6805
+ '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.',
6804
6806
  operationId: 'acsSystemsListCompatibleCredentialManagerAcsSystemsPost',
6805
6807
  requestBody: {
6806
6808
  content: {
6807
6809
  'application/json': {
6808
6810
  schema: {
6809
6811
  properties: {
6810
- acs_system_id: { format: 'uuid', type: 'string' },
6812
+ acs_system_id: {
6813
+ description:
6814
+ 'ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems.',
6815
+ format: 'uuid',
6816
+ type: 'string',
6817
+ },
6811
6818
  },
6812
6819
  required: ['acs_system_id'],
6813
6820
  type: 'object',
@@ -6848,6 +6855,8 @@ export default {
6848
6855
  'x-fern-sdk-method-name':
6849
6856
  'list_compatible_credential_manager_acs_systems',
6850
6857
  'x-fern-sdk-return-value': 'acs_systems',
6858
+ 'x-response-key': 'acs_systems',
6859
+ 'x-title': 'List Compatible Credential Manager ACS Systems',
6851
6860
  },
6852
6861
  },
6853
6862
  '/acs/users/add_to_access_group': {
@@ -3294,6 +3294,7 @@ export interface Routes {
3294
3294
  queryParams: {}
3295
3295
  jsonBody: {}
3296
3296
  commonParams: {
3297
+ /** ID of the ACS system for which you want to retrieve all compatible credential manager ACS systems. */
3297
3298
  acs_system_id: string
3298
3299
  }
3299
3300
  formData: {}