@iflow-ai/iflow-cli 0.1.7-beta.2 → 0.1.7-beta.3

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.
@@ -29,7 +29,7 @@
29
29
  (allow network-inbound (local ip "localhost:9229"))
30
30
 
31
31
  ;; deny all outbound network traffic EXCEPT through proxy on localhost:8877
32
- ;; set `GEMINI_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
32
+ ;; set `IFLOW_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
33
33
  ;; proxy must listen on :::8877 (see docs/examples/proxy-script.md)
34
34
  (deny network-outbound)
35
35
  (allow network-outbound (remote tcp "localhost:8877"))
@@ -93,6 +93,6 @@
93
93
  (allow network-inbound (local ip "localhost:9229"))
94
94
 
95
95
  ;; allow outbound network traffic through proxy on localhost:8877
96
- ;; set `GEMINI_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
96
+ ;; set `IFLOW_SANDBOX_PROXY_COMMAND=<command>` to run proxy alongside sandbox
97
97
  ;; proxy must listen on :::8877 (see docs/examples/proxy-script.md)
98
98
  (allow network-outbound (remote tcp "localhost:8877"))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iflow-ai/iflow-cli",
3
- "version": "0.1.7-beta.2",
3
+ "version": "0.1.7-beta.3",
4
4
  "engines": {
5
5
  "node": ">=20.0.0"
6
6
  },
@@ -31,9 +31,9 @@
31
31
  "test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts",
32
32
  "test:e2e": "npm run test:integration:sandbox:none -- --verbose --keep-output",
33
33
  "test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",
34
- "test:integration:sandbox:none": "GEMINI_SANDBOX=false node integration-tests/run-tests.js",
35
- "test:integration:sandbox:docker": "GEMINI_SANDBOX=docker node integration-tests/run-tests.js",
36
- "test:integration:sandbox:podman": "GEMINI_SANDBOX=podman node integration-tests/run-tests.js",
34
+ "test:integration:sandbox:none": "IFLOW_SANDBOX=false node integration-tests/run-tests.js",
35
+ "test:integration:sandbox:docker": "IFLOW_SANDBOX=docker node integration-tests/run-tests.js",
36
+ "test:integration:sandbox:podman": "IFLOW_SANDBOX=podman node integration-tests/run-tests.js",
37
37
  "lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
38
38
  "lint:fix": "eslint . --fix && eslint integration-tests --fix",
39
39
  "lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
@@ -89,6 +89,9 @@
89
89
  "gaxios": "^6.7.1",
90
90
  "jsonrepair": "^3.13.0"
91
91
  },
92
+ "config": {
93
+ "sandboxImageUri": "iflow-cli-sandbox"
94
+ },
92
95
  "publishConfig": {
93
96
  "registry": "https://registry.npmjs.org",
94
97
  "access": "public"