@seamapi/types 1.643.0 → 1.644.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.
@@ -31665,6 +31665,17 @@ export type Routes = {
31665
31665
  };
31666
31666
  };
31667
31667
  };
31668
+ '/connected_accounts/simulate/disconnect': {
31669
+ route: '/connected_accounts/simulate/disconnect';
31670
+ method: 'POST';
31671
+ queryParams: {};
31672
+ jsonBody: {
31673
+ connected_account_id: string;
31674
+ };
31675
+ commonParams: {};
31676
+ formData: {};
31677
+ jsonResponse: {};
31678
+ };
31668
31679
  '/connected_accounts/sync': {
31669
31680
  route: '/connected_accounts/sync';
31670
31681
  method: 'POST';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.643.0",
3
+ "version": "1.644.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -40947,6 +40947,53 @@ export default {
40947
40947
  'x-title': 'List Connected Accounts',
40948
40948
  },
40949
40949
  },
40950
+ '/connected_accounts/simulate/disconnect': {
40951
+ post: {
40952
+ description:
40953
+ 'Simulates a connected account becoming disconnected from Seam. Only applicable for [sandbox workspaces](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces).',
40954
+ operationId: 'connectedAccountsSimulateDisconnectPost',
40955
+ requestBody: {
40956
+ content: {
40957
+ 'application/json': {
40958
+ schema: {
40959
+ properties: {
40960
+ connected_account_id: { format: 'uuid', type: 'string' },
40961
+ },
40962
+ required: ['connected_account_id'],
40963
+ type: 'object',
40964
+ },
40965
+ },
40966
+ },
40967
+ },
40968
+ responses: {
40969
+ 200: {
40970
+ content: {
40971
+ 'application/json': {
40972
+ schema: {
40973
+ properties: { ok: { type: 'boolean' } },
40974
+ required: ['ok'],
40975
+ type: 'object',
40976
+ },
40977
+ },
40978
+ },
40979
+ description: 'OK',
40980
+ },
40981
+ 400: { description: 'Bad Request' },
40982
+ 401: { description: 'Unauthorized' },
40983
+ },
40984
+ security: [
40985
+ { api_key: [] },
40986
+ { pat_with_workspace: [] },
40987
+ { console_session_with_workspace: [] },
40988
+ ],
40989
+ summary: '/connected_accounts/simulate/disconnect',
40990
+ tags: ['/connected_accounts'],
40991
+ 'x-fern-sdk-group-name': ['connected_accounts', 'simulate'],
40992
+ 'x-fern-sdk-method-name': 'disconnect',
40993
+ 'x-response-key': null,
40994
+ 'x-title': 'Simulate Connected Account Disconnection',
40995
+ },
40996
+ },
40950
40997
  '/connected_accounts/sync': {
40951
40998
  post: {
40952
40999
  description:
@@ -36781,6 +36781,17 @@ export type Routes = {
36781
36781
  }
36782
36782
  }
36783
36783
  }
36784
+ '/connected_accounts/simulate/disconnect': {
36785
+ route: '/connected_accounts/simulate/disconnect'
36786
+ method: 'POST'
36787
+ queryParams: {}
36788
+ jsonBody: {
36789
+ connected_account_id: string
36790
+ }
36791
+ commonParams: {}
36792
+ formData: {}
36793
+ jsonResponse: {}
36794
+ }
36784
36795
  '/connected_accounts/sync': {
36785
36796
  route: '/connected_accounts/sync'
36786
36797
  method: 'POST'