@usecontextlayer/ctxs 0.3.2 → 0.3.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.
Files changed (2) hide show
  1. package/dist/cli.mjs +2 -2
  2. package/package.json +3 -3
package/dist/cli.mjs CHANGED
@@ -14850,7 +14850,7 @@ const portSchema = number().int().min(0).max(65535).default(7777);
14850
14850
  const envSchema = object({
14851
14851
  CLAUDE_CODE_OAUTH_TOKEN: nonEmptyStringSchema.optional(),
14852
14852
  CTXS_BRIDGE_PORT: portSchema,
14853
- CTXS_CLAUDE_IMAGE: nonEmptyStringSchema.default("ghcr.io/usecontextlayer/ctx-sandbox:0.3.2"),
14853
+ CTXS_CLAUDE_IMAGE: nonEmptyStringSchema.default("ghcr.io/usecontextlayer/ctx-sandbox:0.3.3"),
14854
14854
  CTXS_CLAUDE_MODEL: nonEmptyStringSchema.default("claude-opus-4-7"),
14855
14855
  CTXS_HOST_CLAUDE_CONFIG_DIR: nonEmptyStringSchema.default(() => path.join(os.homedir(), ".claude")),
14856
14856
  CTXS_HOST_CLAUDE_JSON_PATH: nonEmptyStringSchema.default(() => path.join(os.homedir(), ".claude.json"))
@@ -18606,7 +18606,7 @@ async function runBridgeUninstall() {
18606
18606
 
18607
18607
  //#endregion
18608
18608
  //#region package.json
18609
- var version = "0.3.2";
18609
+ var version = "0.3.3";
18610
18610
 
18611
18611
  //#endregion
18612
18612
  //#region cli.ts
package/package.json CHANGED
@@ -14,15 +14,15 @@
14
14
  "devDependencies": {
15
15
  "commander": "^14.0.3",
16
16
  "consola": "^3.4.2",
17
- "@usecontextlayer/shared": "0.3.2",
18
- "@usecontextlayer/slate-bridge": "0.3.2"
17
+ "@usecontextlayer/shared": "0.3.3",
18
+ "@usecontextlayer/slate-bridge": "0.3.3"
19
19
  },
20
20
  "files": [
21
21
  "dist"
22
22
  ],
23
23
  "name": "@usecontextlayer/ctxs",
24
24
  "type": "module",
25
- "version": "0.3.2",
25
+ "version": "0.3.3",
26
26
  "scripts": {
27
27
  "build": "npx tsdown",
28
28
  "clean": "rm -rf dist *.tsbuildinfo",