@seamapi/types 1.660.0 → 1.661.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.
@@ -31988,6 +31988,7 @@ declare const _default: {
31988
31988
  schema: {
31989
31989
  properties: {
31990
31990
  connected_account_id: {
31991
+ description: string;
31991
31992
  format: string;
31992
31993
  type: string;
31993
31994
  };
@@ -32026,14 +32027,22 @@ declare const _default: {
32026
32027
  api_key: never[];
32027
32028
  pat_with_workspace?: never;
32028
32029
  console_session_with_workspace?: never;
32030
+ client_session_with_customer?: never;
32029
32031
  } | {
32030
32032
  pat_with_workspace: never[];
32031
32033
  api_key?: never;
32032
32034
  console_session_with_workspace?: never;
32035
+ client_session_with_customer?: never;
32033
32036
  } | {
32034
32037
  console_session_with_workspace: never[];
32035
32038
  api_key?: never;
32036
32039
  pat_with_workspace?: never;
32040
+ client_session_with_customer?: never;
32041
+ } | {
32042
+ client_session_with_customer: never[];
32043
+ api_key?: never;
32044
+ pat_with_workspace?: never;
32045
+ console_session_with_workspace?: never;
32037
32046
  })[];
32038
32047
  summary: string;
32039
32048
  tags: string[];
@@ -37314,7 +37314,11 @@ export default {
37314
37314
  'application/json': {
37315
37315
  schema: {
37316
37316
  properties: {
37317
- connected_account_id: { format: 'uuid', type: 'string' },
37317
+ connected_account_id: {
37318
+ description: 'ID of the connected account you want to simulate as disconnected.',
37319
+ format: 'uuid',
37320
+ type: 'string',
37321
+ },
37318
37322
  },
37319
37323
  required: ['connected_account_id'],
37320
37324
  type: 'object',
@@ -37342,6 +37346,7 @@ export default {
37342
37346
  { api_key: [] },
37343
37347
  { pat_with_workspace: [] },
37344
37348
  { console_session_with_workspace: [] },
37349
+ { client_session_with_customer: [] },
37345
37350
  ],
37346
37351
  summary: '/connected_accounts/simulate/disconnect',
37347
37352
  tags: ['/connected_accounts'],