@axiom-lattice/gateway 2.1.61 → 2.1.62
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 +7 -7
- package/CHANGELOG.md +9 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiom-lattice/gateway",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.62",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"pg": "^8.11.0",
|
|
40
40
|
"redis": "^5.0.1",
|
|
41
41
|
"uuid": "^9.0.1",
|
|
42
|
-
"@axiom-lattice/core": "2.1.
|
|
43
|
-
"@axiom-lattice/pg-stores": "1.0.
|
|
42
|
+
"@axiom-lattice/core": "2.1.56",
|
|
43
|
+
"@axiom-lattice/pg-stores": "1.0.46",
|
|
44
44
|
"@axiom-lattice/protocols": "2.1.30",
|
|
45
45
|
"@axiom-lattice/queue-redis": "1.0.29"
|
|
46
46
|
},
|
package/src/index.ts
CHANGED
|
@@ -214,7 +214,7 @@ export interface LatticeGatewayConfig {
|
|
|
214
214
|
function getConfiguredSandboxProvider(): ReturnType<typeof createSandboxProvider> {
|
|
215
215
|
const sandboxProviderType =
|
|
216
216
|
(process.env.SANDBOX_PROVIDER_TYPE as CreateSandboxProviderConfig["type"] | undefined) ||
|
|
217
|
-
"microsandbox";
|
|
217
|
+
"microsandbox-remote";
|
|
218
218
|
|
|
219
219
|
return createSandboxProvider({
|
|
220
220
|
type: sandboxProviderType,
|