freestyle-sandboxes 0.0.71 → 0.0.73
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/inde.d.cts +1 -1
- package/dist/inde.d.mts +1 -1
- package/dist/index-BBXyg0JQ.cjs +3253 -0
- package/dist/index-BQHqnjZK.mjs +3231 -0
- package/dist/index-CEEa9WHp.cjs +3238 -0
- package/dist/index-D1ulQeJR.mjs +3247 -0
- package/dist/index-DCF70Xbq.mjs +3246 -0
- package/dist/index-H7UNEAjs.cjs +3254 -0
- package/dist/index.cjs +3 -1
- package/dist/index.d-CXx1AdyW.d.ts +4210 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +3 -1
- package/dist/types.gen-1sd31qLV.d.ts +172 -0
- package/dist/{types.gen-wmZuN8DG.d.ts → types.gen-627pxroW.d.ts} +3 -370
- package/dist/types.gen-BCdfx7yt.d.ts +760 -0
- package/dist/types.gen-BaMKzqxQ.d.ts +233 -0
- package/dist/types.gen-BtK6PMQy.d.ts +195 -0
- package/dist/types.gen-BuhQ5LpB.d.ts +764 -0
- package/dist/types.gen-BzRtj_TA.d.ts +725 -0
- package/dist/types.gen-C03gaIPq.d.ts +297 -0
- package/dist/types.gen-CMuCas4r.d.ts +183 -0
- package/dist/types.gen-CZUnqmzP.d.ts +789 -0
- package/dist/types.gen-CnEkmbco.d.ts +314 -0
- package/dist/types.gen-DDYpuDzZ.d.ts +764 -0
- package/dist/types.gen-DHmdEOOa.d.ts +172 -0
- package/dist/types.gen-DLYohMJT.d.ts +382 -0
- package/dist/types.gen-DbTb_SrD.d.ts +156 -0
- package/dist/types.gen-DkQ-Dbs1.d.ts +764 -0
- package/dist/{types.gen-BoJEFWW-.d.ts → types.gen-DyY7Deri.d.ts} +55 -1
- package/dist/types.gen-MBZCvIhE.d.ts +311 -0
- package/dist/types.gen-YhJAHBw8.d.ts +233 -0
- package/dist/types.gen-cCnnhnB6.d.ts +182 -0
- package/dist/types.gen-mg_JNXrq.d.ts +830 -0
- package/dist/types.gen-uDTr6v-7.d.ts +731 -0
- package/package.json +2 -2
- package/src/index.ts +10 -2
- package/.env +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "freestyle-sandboxes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.73",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -108,4 +108,4 @@
|
|
|
108
108
|
"zod": "^3.24.1"
|
|
109
109
|
},
|
|
110
110
|
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
|
|
111
|
-
}
|
|
111
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -31,7 +31,13 @@ import type {
|
|
|
31
31
|
ListGitTokensResponseSuccess,
|
|
32
32
|
ListPermissionResponseSuccess,
|
|
33
33
|
} from "../openapi/index.ts";
|
|
34
|
-
|
|
34
|
+
|
|
35
|
+
import {
|
|
36
|
+
FreestyleDevServer,
|
|
37
|
+
FreestyleDevServerFilesystem,
|
|
38
|
+
} from "./dev-server.ts";
|
|
39
|
+
|
|
40
|
+
export type { FreestyleDevServer, FreestyleDevServerFilesystem };
|
|
35
41
|
|
|
36
42
|
export type {
|
|
37
43
|
AccessLevel,
|
|
@@ -1091,7 +1097,9 @@ export class FreestyleSandboxes {
|
|
|
1091
1097
|
});
|
|
1092
1098
|
|
|
1093
1099
|
if (response.error) {
|
|
1094
|
-
throw new Error(
|
|
1100
|
+
throw new Error(
|
|
1101
|
+
`Failed to write file: ${JSON.stringify(response.error)}`
|
|
1102
|
+
);
|
|
1095
1103
|
}
|
|
1096
1104
|
},
|
|
1097
1105
|
},
|
package/.env
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
FREESTYLE_API_KEY=RoZ4n8eAY4ChcgdKV89LjY-Fhvp6Rzqx27bZ4BjHaVf7qpEw7vA7MekK84DdGgZYkR2
|