freestyle-sandboxes 0.0.30 → 0.0.31
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/ai/index.d.cts +1 -1
- package/dist/ai/index.d.mts +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/langgraph/index.d.cts +1 -1
- package/dist/langgraph/index.d.mts +1 -1
- package/dist/mastra/index.d.cts +1 -1
- package/dist/mastra/index.d.mts +1 -1
- package/dist/types.gen-uDTr6v-7.d.ts +731 -0
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/openapi/types.gen.ts +6 -0
- package/openapi.json +3016 -1
- package/package.json +1 -1
package/dist/utils/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as FreestyleDeployWebPayload, X as FreestyleFile } from '../types.gen-
|
|
1
|
+
import { U as FreestyleDeployWebPayload, X as FreestyleFile } from '../types.gen-uDTr6v-7.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<FreestyleDeployWebPayload["files"]>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => {
|
package/dist/utils/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { U as FreestyleDeployWebPayload, X as FreestyleFile } from '../types.gen-
|
|
1
|
+
import { U as FreestyleDeployWebPayload, X as FreestyleFile } from '../types.gen-uDTr6v-7.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<FreestyleDeployWebPayload["files"]>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => {
|
package/openapi/types.gen.ts
CHANGED
|
@@ -238,6 +238,12 @@ export type FreestyleExecuteScriptParamsConfiguration = {
|
|
|
238
238
|
*/
|
|
239
239
|
peerDependencyResolution?: boolean;
|
|
240
240
|
networkPermissions?: Array<FreestyleNetworkPermission> | null;
|
|
241
|
+
/**
|
|
242
|
+
* These headers will be added to every fetch request made through the script
|
|
243
|
+
*/
|
|
244
|
+
customHeaders?: {
|
|
245
|
+
[key: string]: (string);
|
|
246
|
+
};
|
|
241
247
|
};
|
|
242
248
|
|
|
243
249
|
export type FreestyleExecuteScriptResultSuccess = {
|