freestyle-sandboxes 0.0.54 → 0.0.55
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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
- package/src/index.ts +1 -2
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "freestyle-sandboxes",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -106,4 +106,4 @@
|
|
|
106
106
|
"zod": "^3.24.1"
|
|
107
107
|
},
|
|
108
108
|
"packageManager": "pnpm@9.11.0+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b"
|
|
109
|
-
}
|
|
109
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -807,7 +807,6 @@ export class FreestyleSandboxes {
|
|
|
807
807
|
repoUrl?: string,
|
|
808
808
|
repoId?: string, repo?: string
|
|
809
809
|
}) {
|
|
810
|
-
|
|
811
810
|
function formatHook(serverUrl: string, repoUrl: string) {
|
|
812
811
|
const hook =
|
|
813
812
|
serverUrl +
|
|
@@ -820,7 +819,7 @@ export class FreestyleSandboxes {
|
|
|
820
819
|
client: this.client,
|
|
821
820
|
body: {
|
|
822
821
|
// @ts-ignore
|
|
823
|
-
repo:
|
|
822
|
+
repo: repoUrl,
|
|
824
823
|
repoId: repoId,
|
|
825
824
|
},
|
|
826
825
|
});
|