ckweb-cli 0.6.0-beta.1 → 0.6.0

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/README.md CHANGED
@@ -237,7 +237,7 @@ Install beta builds with:
237
237
  npm install -g ckweb-cli@beta
238
238
  ```
239
239
 
240
- Current status: verified on `dev` by Beta Release run `26148322508`, published as `ckweb-cli@0.6.0-beta.0` with npm dist-tag `beta`.
240
+ Current status: verified on `dev` by Beta Release run `26159614526`, published as `ckweb-cli@0.6.0-beta.1` with npm dist-tag `beta`.
241
241
  - no relevant commits → skipped
242
242
 
243
243
  The workflow bumps `package.json`, creates `chore(release): vX.Y.Z` commit + tag,
package/dist/index.js CHANGED
@@ -211,7 +211,7 @@ function buildUrl(path2, params) {
211
211
  }
212
212
  function buildHeaders(apiKey, hasBody) {
213
213
  const headers = {
214
- "User-Agent": `ckweb-cli/${"0.6.0-beta.1"}`
214
+ "User-Agent": `ckweb-cli/${"0.6.0"}`
215
215
  };
216
216
  if (hasBody) {
217
217
  headers["Content-Type"] = "application/json";
@@ -3133,7 +3133,7 @@ function registerAdminCommand(program2) {
3133
3133
  // src/index.ts
3134
3134
  loadDotenvFiles();
3135
3135
  var program = new Command();
3136
- program.name("ckweb").description("CLI for interacting with ClaudeKit.cc API").version("0.6.0-beta.1");
3136
+ program.name("ckweb").description("CLI for interacting with ClaudeKit.cc API").version("0.6.0");
3137
3137
  program.option("--json", "Output as JSON").option("--table", "Output as table").option("--quiet", "Minimal output");
3138
3138
  registerAuthCommand(program);
3139
3139
  registerHealthCommand(program);