freestyle-sandboxes 0.0.59 → 0.0.61

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/src/index.ts CHANGED
@@ -800,12 +800,14 @@ export class FreestyleSandboxes {
800
800
  async requestDevServer({
801
801
  repoUrl,
802
802
  repoId,
803
+ baseId,
803
804
  }: {
804
805
  /**
805
806
  * @deprecated
806
807
  */
807
808
  repoUrl?: string,
808
- repoId?: string, repo?: string
809
+ repoId?: string, repo?: string,
810
+ baseId?: string,
809
811
  }) {
810
812
  function formatHook(serverUrl: string, repoUrl: string) {
811
813
  const hook =
@@ -821,6 +823,7 @@ export class FreestyleSandboxes {
821
823
  // @ts-ignore
822
824
  repo: repoUrl,
823
825
  repoId: repoId,
826
+ baseId: baseId
824
827
  },
825
828
  });
826
829