careervivid 1.1.11 → 1.1.12

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/dist/api.js CHANGED
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import { getApiKey, getApiUrl } from "./config.js";
8
8
  // ── Helpers ───────────────────────────────────────────────────────────────────
9
- const CLI_VERSION = "1.1.11";
9
+ const CLI_VERSION = "1.1.12";
10
10
  function requireApiKey() {
11
11
  const key = getApiKey();
12
12
  if (!key) {
@@ -22,7 +22,7 @@ function getVerifyUrl() {
22
22
  // The verify endpoint lives at a fixed Cloud Function URL, separate from the publish endpoint.
23
23
  // Use env override if set.
24
24
  return (process.env.CV_VERIFY_URL ||
25
- "https://us-west1-careervivid-prod.cloudfunctions.net/verifyAuth");
25
+ "https://us-west1-jastalk-firebase.cloudfunctions.net/verifyAuth");
26
26
  }
27
27
  async function apiRequest(method, path, body, key) {
28
28
  const apiKey = key ?? requireApiKey();
package/dist/index.js CHANGED
@@ -34,7 +34,7 @@ const program = new Command();
34
34
  program
35
35
  .name("cv")
36
36
  .description("CareerVivid CLI — publish articles, diagrams, and portfolio updates from your terminal or AI agent")
37
- .version("1.1.11", "-v, --version", "Print CLI version")
37
+ .version("1.1.12", "-v, --version", "Print CLI version")
38
38
  .addHelpText("before", getHelpHeader())
39
39
  .helpOption("-h, --help", "Show help");
40
40
  registerAuthCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "careervivid",
3
- "version": "1.1.11",
3
+ "version": "1.1.12",
4
4
  "description": "Official CLI for CareerVivid — publish articles, diagrams, and portfolio updates from your terminal or AI agent",
5
5
  "type": "module",
6
6
  "bin": {