@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.
- package/dist/connect.cjs +7 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +6 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +7 -1
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -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
|
@@ -40929,7 +40929,12 @@ export default {
|
|
|
40929
40929
|
'application/json': {
|
|
40930
40930
|
schema: {
|
|
40931
40931
|
properties: {
|
|
40932
|
-
connected_account_id: {
|
|
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: {}
|