@canonry/canonry 4.178.0 → 4.178.2

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 (27) hide show
  1. package/assets/agent-workspace/skills/canonry/references/canonry-cli.md +1 -1
  2. package/assets/assets/{AuditHistoryPanel-BmKdyRrR.js → AuditHistoryPanel-BCtMrEMF.js} +1 -1
  3. package/assets/assets/{BacklinksPage-DtqKPVLV.js → BacklinksPage-CIo2hA0i.js} +1 -1
  4. package/assets/assets/{HistoryPage-yyJsQiJQ.js → HistoryPage-D24U8cUG.js} +1 -1
  5. package/assets/assets/{MeasurementPropertyPage-hjW4iYtr.js → MeasurementPropertyPage-BKDdv-jJ.js} +1 -1
  6. package/assets/assets/{ProjectPage-DZKpnPvq.js → ProjectPage-DrIs_ZuR.js} +1 -1
  7. package/assets/assets/{RunRow-BZeBFb22.js → RunRow-B39IK7hK.js} +1 -1
  8. package/assets/assets/{RunsPage-tnXHsK_R.js → RunsPage-R4W1kD0B.js} +1 -1
  9. package/assets/assets/{SettingsPage-Djj5k8vv.js → SettingsPage-BAOGyt1F.js} +1 -1
  10. package/assets/assets/{SiteHealthSection-BkDncS11.js → SiteHealthSection-Bx7yVNMQ.js} +3 -3
  11. package/assets/assets/{TrafficPage-nJggXVh-.js → TrafficPage-DL8RvM2R.js} +1 -1
  12. package/assets/assets/{TrafficSourceDetailPage-zxONbSn-.js → TrafficSourceDetailPage-COzjakZa.js} +1 -1
  13. package/assets/assets/{extract-error-message-NpQu2vBm.js → extract-error-message-B3TERCQ-.js} +1 -1
  14. package/assets/assets/index-xtxQtZRo.js +83 -0
  15. package/assets/assets/{react-sigma_core.esm.min-CxMdd8U8.js → react-sigma_core.esm.min-CbXAujub.js} +1 -1
  16. package/assets/index.html +1 -1
  17. package/dist/{chunk-YIQMTOEZ.js → chunk-5KI5WVWS.js} +86 -7
  18. package/dist/{chunk-A7FB2BVW.js → chunk-EAUE2RRY.js} +2 -2
  19. package/dist/{chunk-O7J5WFVZ.js → chunk-LMI72WZP.js} +101 -41
  20. package/dist/{chunk-T4JH77O6.js → chunk-OYDIND7Q.js} +71 -1
  21. package/dist/{chunk-SXKA4OXZ.js → chunk-P6JVZJO5.js} +3 -3
  22. package/dist/cli.js +6 -6
  23. package/dist/index.js +4 -4
  24. package/dist/{intelligence-service-YISV327N.js → intelligence-service-KYIQZBEO.js} +2 -2
  25. package/dist/mcp.js +3 -3
  26. package/package.json +11 -11
  27. package/assets/assets/index-Dwwnkd_V.js +0 -83
package/dist/cli.js CHANGED
@@ -26,11 +26,11 @@ import {
26
26
  showFirstRunNotice,
27
27
  trackCliCommandFinished,
28
28
  trackEvent
29
- } from "./chunk-O7J5WFVZ.js";
29
+ } from "./chunk-LMI72WZP.js";
30
30
  import {
31
31
  autoSyncSkills,
32
32
  formatAutoSyncNotice
33
- } from "./chunk-A7FB2BVW.js";
33
+ } from "./chunk-EAUE2RRY.js";
34
34
  import {
35
35
  CliError,
36
36
  EXIT_SYSTEM_ERROR,
@@ -55,7 +55,7 @@ import {
55
55
  saveConfigPatch,
56
56
  systemError,
57
57
  usageError
58
- } from "./chunk-SXKA4OXZ.js";
58
+ } from "./chunk-P6JVZJO5.js";
59
59
  import {
60
60
  CLOUDFLARE_WORKER_BINDINGS,
61
61
  CLOUDFLARE_WORKER_GENERATED_MARKER,
@@ -69,7 +69,7 @@ import {
69
69
  projects,
70
70
  queries,
71
71
  renderReportHtml
72
- } from "./chunk-YIQMTOEZ.js";
72
+ } from "./chunk-5KI5WVWS.js";
73
73
  import {
74
74
  AdsDeliverySnapshotStatuses,
75
75
  AdsHistoricalCampaignRollupStatuses,
@@ -138,7 +138,7 @@ import {
138
138
  providerQuotaPolicySchema,
139
139
  resolveProviderInput,
140
140
  winnabilityClassSchema
141
- } from "./chunk-T4JH77O6.js";
141
+ } from "./chunk-OYDIND7Q.js";
142
142
 
143
143
  // src/cli.ts
144
144
  import { pathToFileURL } from "url";
@@ -18537,7 +18537,7 @@ var MEASUREMENT_PLAN_CLI_COMMANDS = [
18537
18537
  await showMeasurementPlan(requireProject(input, "measurement-plan.show", "canonry measurement-plan show <project> [--revision N]"), revision);
18538
18538
  } },
18539
18539
  { path: ["measurement-plan", "versions"], usage: "canonry measurement-plan versions <project> [--format json]", run: (input) => listMeasurementPlanVersions(requireProject(input, "measurement-plan.versions", "canonry measurement-plan versions <project>")) },
18540
- { path: ["measurement-plan", "publish"], usage: "canonry measurement-plan publish <project> <yaml|json|-> [--format json]", run: (input) => {
18540
+ { path: ["measurement-plan", "publish"], usage: "canonry measurement-plan publish <project> <yaml|json|-> [--format json] (legacy schema v1 only; refuses over an active v2 plan; for Advanced Measurement use: canonry measurement-plan advanced <project> draft-action)", run: (input) => {
18541
18541
  const project = requireProject(input, "measurement-plan.publish", "canonry measurement-plan publish <project> <yaml|json|->");
18542
18542
  const source = input.positionals[1];
18543
18543
  if (!source) throw usageError("plan file path or - is required");
package/dist/index.js CHANGED
@@ -3,12 +3,12 @@ import {
3
3
  createGoogleMarketingCredentialStore,
4
4
  createGoogleMarketingRuntime,
5
5
  createServer
6
- } from "./chunk-O7J5WFVZ.js";
6
+ } from "./chunk-LMI72WZP.js";
7
7
  import {
8
8
  loadConfig
9
- } from "./chunk-SXKA4OXZ.js";
10
- import "./chunk-YIQMTOEZ.js";
11
- import "./chunk-T4JH77O6.js";
9
+ } from "./chunk-P6JVZJO5.js";
10
+ import "./chunk-5KI5WVWS.js";
11
+ import "./chunk-OYDIND7Q.js";
12
12
  export {
13
13
  GoogleMarketingRuntimeError,
14
14
  createGoogleMarketingCredentialStore,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  IntelligenceService
3
- } from "./chunk-YIQMTOEZ.js";
4
- import "./chunk-T4JH77O6.js";
3
+ } from "./chunk-5KI5WVWS.js";
4
+ import "./chunk-OYDIND7Q.js";
5
5
  export {
6
6
  IntelligenceService
7
7
  };
package/dist/mcp.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  autoSyncSkills
3
- } from "./chunk-A7FB2BVW.js";
3
+ } from "./chunk-EAUE2RRY.js";
4
4
  import {
5
5
  createApiClient,
6
6
  createCanonryMcpServer
7
- } from "./chunk-SXKA4OXZ.js";
7
+ } from "./chunk-P6JVZJO5.js";
8
8
  import {
9
9
  isReadOnlyKey
10
- } from "./chunk-T4JH77O6.js";
10
+ } from "./chunk-OYDIND7Q.js";
11
11
 
12
12
  // src/mcp/cli.ts
13
13
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canonry/canonry",
3
- "version": "4.178.0",
3
+ "version": "4.178.2",
4
4
  "type": "module",
5
5
  "description": "Self-hosted AI visibility (AEO) platform: track how ChatGPT, Claude, Gemini, and Perplexity cite your domain, join it with Search Console, GA4, server-side traffic, and paid media, and fix what you find through agent tools (CLI, REST, MCP). Local SQLite.",
6
6
  "license": "FSL-1.1-ALv2",
@@ -73,28 +73,28 @@
73
73
  "@ainyc/canonry-api-client": "0.0.0",
74
74
  "@ainyc/canonry-api-routes": "0.0.0",
75
75
  "@ainyc/canonry-config": "0.0.0",
76
- "@ainyc/canonry-contracts": "0.0.0",
77
76
  "@ainyc/canonry-db": "0.0.0",
78
- "@ainyc/canonry-integration-bing": "0.0.0",
77
+ "@ainyc/canonry-contracts": "0.0.0",
79
78
  "@ainyc/canonry-integration-cloud-run": "0.0.0",
79
+ "@ainyc/canonry-integration-bing": "0.0.0",
80
80
  "@ainyc/canonry-integration-cloudflare-queue": "0.0.0",
81
- "@ainyc/canonry-integration-commoncrawl": "0.0.0",
82
81
  "@ainyc/canonry-integration-cloudflare-worker": "0.0.0",
83
- "@ainyc/canonry-integration-google-ads": "0.0.0",
82
+ "@ainyc/canonry-integration-commoncrawl": "0.0.0",
84
83
  "@ainyc/canonry-integration-google": "0.0.0",
85
- "@ainyc/canonry-integration-google-business-profile": "0.0.0",
84
+ "@ainyc/canonry-integration-google-ads": "0.0.0",
86
85
  "@ainyc/canonry-integration-google-places": "0.0.0",
86
+ "@ainyc/canonry-integration-google-business-profile": "0.0.0",
87
+ "@ainyc/canonry-integration-openai-ads": "0.0.0",
87
88
  "@ainyc/canonry-integration-google-tag-manager": "0.0.0",
88
89
  "@ainyc/canonry-integration-traffic": "0.0.0",
89
90
  "@ainyc/canonry-integration-wordpress": "0.0.0",
90
- "@ainyc/canonry-integration-openai-ads": "0.0.0",
91
+ "@ainyc/canonry-provider-claude": "0.0.0",
92
+ "@ainyc/canonry-provider-gemini": "0.0.0",
91
93
  "@ainyc/canonry-intelligence": "0.0.0",
92
94
  "@ainyc/canonry-provider-cdp": "0.0.0",
93
- "@ainyc/canonry-provider-claude": "0.0.0",
94
95
  "@ainyc/canonry-provider-local": "0.0.0",
95
- "@ainyc/canonry-provider-openai": "0.0.0",
96
- "@ainyc/canonry-provider-gemini": "0.0.0",
97
- "@ainyc/canonry-provider-perplexity": "0.0.0"
96
+ "@ainyc/canonry-provider-perplexity": "0.0.0",
97
+ "@ainyc/canonry-provider-openai": "0.0.0"
98
98
  },
99
99
  "scripts": {
100
100
  "build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",