@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.
@@ -26291,6 +26291,7 @@ export type Routes = {
26291
26291
  method: 'POST';
26292
26292
  queryParams: {};
26293
26293
  jsonBody: {
26294
+ /** ID of the connected account you want to simulate as disconnected. */
26294
26295
  connected_account_id: string;
26295
26296
  };
26296
26297
  commonParams: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.660.0",
3
+ "version": "1.661.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -40929,7 +40929,12 @@ export default {
40929
40929
  'application/json': {
40930
40930
  schema: {
40931
40931
  properties: {
40932
- connected_account_id: { format: 'uuid', type: 'string' },
40932
+ connected_account_id: {
40933
+ description:
40934
+ 'ID of the connected account you want to simulate as disconnected.',
40935
+ format: 'uuid',
40936
+ type: 'string',
40937
+ },
40933
40938
  },
40934
40939
  required: ['connected_account_id'],
40935
40940
  type: 'object',
@@ -40957,6 +40962,7 @@ export default {
40957
40962
  { api_key: [] },
40958
40963
  { pat_with_workspace: [] },
40959
40964
  { console_session_with_workspace: [] },
40965
+ { client_session_with_customer: [] },
40960
40966
  ],
40961
40967
  summary: '/connected_accounts/simulate/disconnect',
40962
40968
  tags: ['/connected_accounts'],
@@ -30426,6 +30426,7 @@ export type Routes = {
30426
30426
  method: 'POST'
30427
30427
  queryParams: {}
30428
30428
  jsonBody: {
30429
+ /** ID of the connected account you want to simulate as disconnected. */
30429
30430
  connected_account_id: string
30430
30431
  }
30431
30432
  commonParams: {}