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/dist/ai/inde.d.cts +1 -1
- package/dist/ai/inde.d.mts +1 -1
- package/dist/ai/index.d.cts +1 -1
- package/dist/ai/index.d.mts +1 -1
- package/dist/inde.d.cts +4 -3
- package/dist/inde.d.mts +4 -3
- package/dist/index.cjs +4 -2
- package/dist/index.d.cts +4 -3
- package/dist/index.d.mts +4 -3
- package/dist/index.mjs +4 -2
- package/dist/langgraph/inde.d.cts +1 -1
- package/dist/langgraph/inde.d.mts +1 -1
- package/dist/langgraph/index.d.cts +1 -1
- package/dist/langgraph/index.d.mts +1 -1
- package/dist/mastra/inde.d.cts +1 -1
- package/dist/mastra/inde.d.mts +1 -1
- package/dist/mastra/index.d.cts +1 -1
- package/dist/mastra/index.d.mts +1 -1
- package/dist/types.gen-BbekD8Sd.d.ts +1119 -0
- package/dist/utils/inde.d.cts +1 -1
- package/dist/utils/inde.d.mts +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.mts +1 -1
- package/openapi/sdk.gen.ts +98 -1
- package/openapi/types.gen.ts +329 -5
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +4 -1
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
|
|