@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
package/dist/connect.d.cts
CHANGED
|
@@ -95694,9 +95694,13 @@ declare const _default: {
|
|
|
95694
95694
|
description: string;
|
|
95695
95695
|
};
|
|
95696
95696
|
};
|
|
95697
|
-
security: {
|
|
95697
|
+
security: ({
|
|
95698
95698
|
api_key: never[];
|
|
95699
|
-
|
|
95699
|
+
console_session_with_workspace?: never;
|
|
95700
|
+
} | {
|
|
95701
|
+
console_session_with_workspace: never[];
|
|
95702
|
+
api_key?: never;
|
|
95703
|
+
})[];
|
|
95700
95704
|
summary: string;
|
|
95701
95705
|
tags: never[];
|
|
95702
95706
|
'x-fern-sdk-group-name': string[];
|
package/dist/index.cjs
CHANGED
|
@@ -54490,7 +54490,7 @@ var openapi_default = {
|
|
|
54490
54490
|
400: { description: "Bad Request" },
|
|
54491
54491
|
401: { description: "Unauthorized" }
|
|
54492
54492
|
},
|
|
54493
|
-
security: [{ api_key: [] }],
|
|
54493
|
+
security: [{ api_key: [] }, { console_session_with_workspace: [] }],
|
|
54494
54494
|
summary: "/seam/customer/v1/connectors/sync",
|
|
54495
54495
|
tags: [],
|
|
54496
54496
|
"x-fern-sdk-group-name": ["seam", "customer", "v1", "connectors"],
|