@axiom-lattice/gateway 2.1.58 → 2.1.59
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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +8 -0
- package/dist/index.js +3 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/controllers/workspace.ts +3 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @axiom-lattice/gateway@2.1.
|
|
2
|
+
> @axiom-lattice/gateway@2.1.59 build /home/runner/work/agentic/agentic/packages/gateway
|
|
3
3
|
> tsup src/index.ts --format cjs,esm --dts --clean --sourcemap
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -18,13 +18,13 @@
|
|
|
18
18
|
You need to set the output format to "esm" for "import.meta" to work correctly.
|
|
19
19
|
|
|
20
20
|
|
|
21
|
-
[32mCJS[39m [1mdist/index.js [22m[32m188.
|
|
22
|
-
[32mCJS[39m [1mdist/index.js.map [22m[32m404.
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in
|
|
24
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m185.
|
|
25
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m405.
|
|
26
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m [1mdist/index.js [22m[32m188.71 KB[39m
|
|
22
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m404.62 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 378ms
|
|
24
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m185.41 KB[39m
|
|
25
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m405.19 KB[39m
|
|
26
|
+
[32mESM[39m ⚡️ Build success in 380ms
|
|
27
27
|
[34mDTS[39m Build start
|
|
28
|
-
[32mDTS[39m ⚡️ Build success in
|
|
28
|
+
[32mDTS[39m ⚡️ Build success in 13346ms
|
|
29
29
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m3.76 KB[39m
|
|
30
30
|
[32mDTS[39m [1mdist/index.d.mts [22m[32m3.76 KB[39m
|
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2557,12 +2557,9 @@ var WorkspaceController = class {
|
|
|
2557
2557
|
workspaceId,
|
|
2558
2558
|
projectId
|
|
2559
2559
|
};
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
return { backend: volumeBackend, workspace };
|
|
2564
|
-
}
|
|
2565
|
-
} catch {
|
|
2560
|
+
const volumeBackend = await sandboxManager.getVolumeBackend(volumeConfig);
|
|
2561
|
+
if (volumeBackend) {
|
|
2562
|
+
return { backend: volumeBackend, workspace };
|
|
2566
2563
|
}
|
|
2567
2564
|
const sandbox = await sandboxManager.getSandboxFromConfig(volumeConfig);
|
|
2568
2565
|
return {
|