freestyle-sandboxes 0.0.33 → 0.0.35
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-BuhQ5LpB.d.ts +764 -0
- package/dist/utils/index.cjs +4 -2
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.mjs +4 -2
- package/openapi/types.gen.ts +4 -0
- package/openapi.json +4453 -1
- package/package.json +1 -1
- package/src/utils/index.ts +2 -0
package/dist/utils/index.cjs
CHANGED
|
@@ -32,7 +32,8 @@ const prepareDirForDeployment = async (directory) => {
|
|
|
32
32
|
cwd: directory,
|
|
33
33
|
nodir: true,
|
|
34
34
|
ignore: ["**/node_modules/**"],
|
|
35
|
-
absolute: false
|
|
35
|
+
absolute: false,
|
|
36
|
+
dot: true
|
|
36
37
|
});
|
|
37
38
|
for (const relativePath of patterns) {
|
|
38
39
|
try {
|
|
@@ -57,7 +58,8 @@ const prepareDirForDeploymentSync = (directory) => {
|
|
|
57
58
|
cwd: directory,
|
|
58
59
|
nodir: true,
|
|
59
60
|
ignore: ["**/node_modules/**"],
|
|
60
|
-
absolute: false
|
|
61
|
+
absolute: false,
|
|
62
|
+
dot: true
|
|
61
63
|
});
|
|
62
64
|
for (const relativePath of patterns) {
|
|
63
65
|
try {
|
package/dist/utils/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen-
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-BuhQ5LpB.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|
package/dist/utils/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { D as DeploymentSource } from '../types.gen-
|
|
1
|
+
import { D as DeploymentSource } from '../types.gen-BuhQ5LpB.js';
|
|
2
2
|
|
|
3
3
|
declare const prepareDirForDeployment: (directory: string) => Promise<DeploymentSource>;
|
|
4
4
|
declare const prepareDirForDeploymentSync: (directory: string) => DeploymentSource;
|
package/dist/utils/index.mjs
CHANGED
|
@@ -9,7 +9,8 @@ const prepareDirForDeployment = async (directory) => {
|
|
|
9
9
|
cwd: directory,
|
|
10
10
|
nodir: true,
|
|
11
11
|
ignore: ["**/node_modules/**"],
|
|
12
|
-
absolute: false
|
|
12
|
+
absolute: false,
|
|
13
|
+
dot: true
|
|
13
14
|
});
|
|
14
15
|
for (const relativePath of patterns) {
|
|
15
16
|
try {
|
|
@@ -34,7 +35,8 @@ const prepareDirForDeploymentSync = (directory) => {
|
|
|
34
35
|
cwd: directory,
|
|
35
36
|
nodir: true,
|
|
36
37
|
ignore: ["**/node_modules/**"],
|
|
37
|
-
absolute: false
|
|
38
|
+
absolute: false,
|
|
39
|
+
dot: true
|
|
38
40
|
});
|
|
39
41
|
for (const relativePath of patterns) {
|
|
40
42
|
try {
|
package/openapi/types.gen.ts
CHANGED
|
@@ -271,6 +271,10 @@ export type FreestyleExecuteScriptParamsConfiguration = {
|
|
|
271
271
|
customHeaders?: {
|
|
272
272
|
[key: string]: (string);
|
|
273
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
* Proxy all outgoing requests through this URL
|
|
276
|
+
*/
|
|
277
|
+
proxy?: (string) | null;
|
|
274
278
|
};
|
|
275
279
|
|
|
276
280
|
export type FreestyleExecuteScriptResultSuccess = {
|