@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
package/dist/connect.cjs
CHANGED
|
@@ -43162,7 +43162,11 @@ var openapi_default = {
|
|
|
43162
43162
|
"application/json": {
|
|
43163
43163
|
schema: {
|
|
43164
43164
|
properties: {
|
|
43165
|
-
connected_account_id: {
|
|
43165
|
+
connected_account_id: {
|
|
43166
|
+
description: "ID of the connected account you want to simulate as disconnected.",
|
|
43167
|
+
format: "uuid",
|
|
43168
|
+
type: "string"
|
|
43169
|
+
}
|
|
43166
43170
|
},
|
|
43167
43171
|
required: ["connected_account_id"],
|
|
43168
43172
|
type: "object"
|
|
@@ -43189,7 +43193,8 @@ var openapi_default = {
|
|
|
43189
43193
|
security: [
|
|
43190
43194
|
{ api_key: [] },
|
|
43191
43195
|
{ pat_with_workspace: [] },
|
|
43192
|
-
{ console_session_with_workspace: [] }
|
|
43196
|
+
{ console_session_with_workspace: [] },
|
|
43197
|
+
{ client_session_with_customer: [] }
|
|
43193
43198
|
],
|
|
43194
43199
|
summary: "/connected_accounts/simulate/disconnect",
|
|
43195
43200
|
tags: ["/connected_accounts"],
|