@seamapi/types 1.629.0 → 1.630.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 +1 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +6 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +6 -2
- package/lib/seam/connect/openapi.js +1 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +1 -1
|
@@ -43793,9 +43793,13 @@ declare const _default: {
|
|
|
43793
43793
|
description: string;
|
|
43794
43794
|
};
|
|
43795
43795
|
};
|
|
43796
|
-
security: {
|
|
43796
|
+
security: ({
|
|
43797
43797
|
api_key: never[];
|
|
43798
|
-
|
|
43798
|
+
console_session_with_workspace?: never;
|
|
43799
|
+
} | {
|
|
43800
|
+
console_session_with_workspace: never[];
|
|
43801
|
+
api_key?: never;
|
|
43802
|
+
})[];
|
|
43799
43803
|
summary: string;
|
|
43800
43804
|
tags: never[];
|
|
43801
43805
|
'x-fern-sdk-group-name': string[];
|
|
@@ -48613,7 +48613,7 @@ export default {
|
|
|
48613
48613
|
400: { description: 'Bad Request' },
|
|
48614
48614
|
401: { description: 'Unauthorized' },
|
|
48615
48615
|
},
|
|
48616
|
-
security: [{ api_key: [] }],
|
|
48616
|
+
security: [{ api_key: [] }, { console_session_with_workspace: [] }],
|
|
48617
48617
|
summary: '/seam/customer/v1/connectors/sync',
|
|
48618
48618
|
tags: [],
|
|
48619
48619
|
'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'connectors'],
|