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 CHANGED
@@ -789,7 +789,7 @@ ${response.error.message}`);
789
789
  client: this.client,
790
790
  body: {
791
791
  // @ts-ignore
792
- repo: repo || repoUrl,
792
+ repo: repoUrl,
793
793
  repoId
794
794
  }
795
795
  });
package/dist/index.mjs CHANGED
@@ -787,7 +787,7 @@ ${response.error.message}`);
787
787
  client: this.client,
788
788
  body: {
789
789
  // @ts-ignore
790
- repo: repo || repoUrl,
790
+ repo: repoUrl,
791
791
  repoId
792
792
  }
793
793
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freestyle-sandboxes",
3
- "version": "0.0.54",
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: repo || repoUrl,
822
+ repo: repoUrl,
824
823
  repoId: repoId,
825
824
  },
826
825
  });