@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.d.cts
CHANGED
|
@@ -84673,6 +84673,7 @@ declare const _default: {
|
|
|
84673
84673
|
schema: {
|
|
84674
84674
|
properties: {
|
|
84675
84675
|
connected_account_id: {
|
|
84676
|
+
description: string;
|
|
84676
84677
|
format: string;
|
|
84677
84678
|
type: string;
|
|
84678
84679
|
};
|
|
@@ -84711,14 +84712,22 @@ declare const _default: {
|
|
|
84711
84712
|
api_key: never[];
|
|
84712
84713
|
pat_with_workspace?: never;
|
|
84713
84714
|
console_session_with_workspace?: never;
|
|
84715
|
+
client_session_with_customer?: never;
|
|
84714
84716
|
} | {
|
|
84715
84717
|
pat_with_workspace: never[];
|
|
84716
84718
|
api_key?: never;
|
|
84717
84719
|
console_session_with_workspace?: never;
|
|
84720
|
+
client_session_with_customer?: never;
|
|
84718
84721
|
} | {
|
|
84719
84722
|
console_session_with_workspace: never[];
|
|
84720
84723
|
api_key?: never;
|
|
84721
84724
|
pat_with_workspace?: never;
|
|
84725
|
+
client_session_with_customer?: never;
|
|
84726
|
+
} | {
|
|
84727
|
+
client_session_with_customer: never[];
|
|
84728
|
+
api_key?: never;
|
|
84729
|
+
pat_with_workspace?: never;
|
|
84730
|
+
console_session_with_workspace?: never;
|
|
84722
84731
|
})[];
|
|
84723
84732
|
summary: string;
|
|
84724
84733
|
tags: string[];
|
|
@@ -138741,6 +138750,7 @@ type Routes = {
|
|
|
138741
138750
|
method: 'POST';
|
|
138742
138751
|
queryParams: {};
|
|
138743
138752
|
jsonBody: {
|
|
138753
|
+
/** ID of the connected account you want to simulate as disconnected. */
|
|
138744
138754
|
connected_account_id: string;
|
|
138745
138755
|
};
|
|
138746
138756
|
commonParams: {};
|
package/dist/index.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"],
|