@seamapi/types 1.206.0 → 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.
@@ -15303,6 +15303,7 @@ declare const _default: {
15303
15303
  };
15304
15304
  '/acs/systems/list': {
15305
15305
  post: {
15306
+ description: string;
15306
15307
  operationId: string;
15307
15308
  requestBody: {
15308
15309
  content: {
@@ -15310,6 +15311,7 @@ declare const _default: {
15310
15311
  schema: {
15311
15312
  properties: {
15312
15313
  connected_account_id: {
15314
+ description: string;
15313
15315
  format: string;
15314
15316
  type: string;
15315
15317
  };
@@ -15375,6 +15377,7 @@ declare const _default: {
15375
15377
  'x-fern-sdk-group-name': string[];
15376
15378
  'x-fern-sdk-method-name': string;
15377
15379
  'x-fern-sdk-return-value': string;
15380
+ 'x-title': string;
15378
15381
  };
15379
15382
  };
15380
15383
  '/acs/systems/list_compatible_credential_manager_acs_systems': {
@@ -27311,6 +27314,7 @@ interface Routes {
27311
27314
  queryParams: {};
27312
27315
  jsonBody: {};
27313
27316
  commonParams: {
27317
+ /** ID of the connected account by which to filter the list of returned access control systems. */
27314
27318
  connected_account_id?: string | undefined;
27315
27319
  };
27316
27320
  formData: {};
@@ -7435,6 +7435,7 @@ declare const _default: {
7435
7435
  };
7436
7436
  '/acs/systems/list': {
7437
7437
  post: {
7438
+ description: string;
7438
7439
  operationId: string;
7439
7440
  requestBody: {
7440
7441
  content: {
@@ -7442,6 +7443,7 @@ declare const _default: {
7442
7443
  schema: {
7443
7444
  properties: {
7444
7445
  connected_account_id: {
7446
+ description: string;
7445
7447
  format: string;
7446
7448
  type: string;
7447
7449
  };
@@ -7507,6 +7509,7 @@ declare const _default: {
7507
7509
  'x-fern-sdk-group-name': string[];
7508
7510
  'x-fern-sdk-method-name': string;
7509
7511
  'x-fern-sdk-return-value': string;
7512
+ 'x-title': string;
7510
7513
  };
7511
7514
  };
7512
7515
  '/acs/systems/list_compatible_credential_manager_acs_systems': {
@@ -6621,13 +6621,18 @@ export default {
6621
6621
  },
6622
6622
  '/acs/systems/list': {
6623
6623
  post: {
6624
+ 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.',
6624
6625
  operationId: 'acsSystemsListPost',
6625
6626
  requestBody: {
6626
6627
  content: {
6627
6628
  'application/json': {
6628
6629
  schema: {
6629
6630
  properties: {
6630
- connected_account_id: { format: 'uuid', type: 'string' },
6631
+ connected_account_id: {
6632
+ description: 'ID of the connected account by which to filter the list of returned access control systems.',
6633
+ format: 'uuid',
6634
+ type: 'string',
6635
+ },
6631
6636
  },
6632
6637
  type: 'object',
6633
6638
  },
@@ -6667,6 +6672,7 @@ export default {
6667
6672
  'x-fern-sdk-group-name': ['acs', 'systems'],
6668
6673
  'x-fern-sdk-method-name': 'list',
6669
6674
  'x-fern-sdk-return-value': 'acs_systems',
6675
+ 'x-title': 'List ACS Systems',
6670
6676
  },
6671
6677
  },
6672
6678
  '/acs/systems/list_compatible_credential_manager_acs_systems': {