@canonry/canonry 4.172.3 → 4.174.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/assets/agent-workspace/skills/canonry/references/server-side-traffic.md +9 -7
- package/assets/assets/{AuditHistoryPanel-DF8utxHN.js → AuditHistoryPanel-BRh-VMv0.js} +1 -1
- package/assets/assets/{BacklinksPage-Hz5fjTP-.js → BacklinksPage-C2jbDAhv.js} +1 -1
- package/assets/assets/{HistoryPage-EeNWcnRk.js → HistoryPage-Dtr3UICp.js} +1 -1
- package/assets/assets/{MeasurementPropertyPage-CWvVMiIo.js → MeasurementPropertyPage-D-z4CVyy.js} +1 -1
- package/assets/assets/ProjectPage-BAiCXEdR.js +9 -0
- package/assets/assets/{RunRow-CLwmqMWg.js → RunRow-t5iSzB9b.js} +1 -1
- package/assets/assets/{RunsPage-Cxc9xDm9.js → RunsPage-DR8qc686.js} +1 -1
- package/assets/assets/{SettingsPage-gg7QM6am.js → SettingsPage-CCqitKyF.js} +1 -1
- package/assets/assets/{SiteHealthSection-DhpNThBa.js → SiteHealthSection-vGzpNzMx.js} +3 -3
- package/assets/assets/TrafficPage-DpFRbcIy.js +1 -0
- package/assets/assets/{TrafficSourceDetailPage-gyh7Kxb3.js → TrafficSourceDetailPage-CToOAg5Y.js} +1 -1
- package/assets/assets/{extract-error-message-DVQ46FzX.js → extract-error-message-p-Yg_eOO.js} +1 -1
- package/assets/assets/{index-ClNW_gZV.js → index-CQ2ysGTv.js} +16 -16
- package/assets/assets/index-DQVTRT9J.css +1 -0
- package/assets/assets/{react-sigma_core.esm.min-BhFLGF9e.js → react-sigma_core.esm.min-BTa1NiIz.js} +1 -1
- package/assets/index.html +2 -2
- package/dist/{chunk-OHSUOEVB.js → chunk-DSGX2IAI.js} +178 -168
- package/dist/{chunk-WFVK3XC7.js → chunk-HYKZOCBT.js} +2 -2
- package/dist/{chunk-XEWBDO5L.js → chunk-J3RVQCCQ.js} +12967 -1256
- package/dist/{chunk-WGN2VT7L.js → chunk-OSMUOPBR.js} +17 -1
- package/dist/{chunk-BZDNTUCZ.js → chunk-TIEHKR6K.js} +1 -1
- package/dist/cli.js +5 -5
- package/dist/index.js +4 -4
- package/dist/{intelligence-service-PPYG6NJP.js → intelligence-service-RSZTVVX2.js} +2 -2
- package/dist/mcp.js +3 -3
- package/package.json +8 -8
- package/assets/assets/ProjectPage-CBVwd4DJ.js +0 -9
- package/assets/assets/TrafficPage-BkDwv0uO.js +0 -1
- package/assets/assets/index-D1mXm81Z.css +0 -1
|
@@ -3338,8 +3338,24 @@ function normalizeUrlPath(input) {
|
|
|
3338
3338
|
var WORD_SEGMENTER = new Intl.Segmenter("en", { granularity: "word" });
|
|
3339
3339
|
var NON_WORD = /[^\p{L}\p{N}]+/gu;
|
|
3340
3340
|
var WORD_RUNS = /[\p{L}\p{N}]+/gu;
|
|
3341
|
+
var ACCENT_BEARING_SCRIPT = /[\p{Script=Latin}\p{Script=Greek}\p{Script=Cyrillic}]/u;
|
|
3342
|
+
var NON_ASCII = new RegExp("\\P{ASCII}", "u");
|
|
3343
|
+
function foldAccents(value) {
|
|
3344
|
+
if (!NON_ASCII.test(value)) return value;
|
|
3345
|
+
let folded = "";
|
|
3346
|
+
for (const character of value) {
|
|
3347
|
+
if (character.charCodeAt(0) < 128) {
|
|
3348
|
+
folded += character;
|
|
3349
|
+
continue;
|
|
3350
|
+
}
|
|
3351
|
+
const decomposed = character.normalize("NFD");
|
|
3352
|
+
const base = decomposed[0];
|
|
3353
|
+
folded += decomposed.length > 1 && ACCENT_BEARING_SCRIPT.test(base) ? base : character;
|
|
3354
|
+
}
|
|
3355
|
+
return folded;
|
|
3356
|
+
}
|
|
3341
3357
|
function normalizeForMatch(value) {
|
|
3342
|
-
return value.normalize("NFKC").toLocaleLowerCase("en");
|
|
3358
|
+
return foldAccents(value.normalize("NFKC")).toLocaleLowerCase("en");
|
|
3343
3359
|
}
|
|
3344
3360
|
function wordsOfNormalized(normalized) {
|
|
3345
3361
|
const words = [];
|
package/dist/cli.js
CHANGED
|
@@ -26,11 +26,11 @@ import {
|
|
|
26
26
|
showFirstRunNotice,
|
|
27
27
|
trackCliCommandFinished,
|
|
28
28
|
trackEvent
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-DSGX2IAI.js";
|
|
30
30
|
import {
|
|
31
31
|
autoSyncSkills,
|
|
32
32
|
formatAutoSyncNotice
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-HYKZOCBT.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-
|
|
58
|
+
} from "./chunk-TIEHKR6K.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-
|
|
72
|
+
} from "./chunk-J3RVQCCQ.js";
|
|
73
73
|
import {
|
|
74
74
|
AdsDeliverySnapshotStatuses,
|
|
75
75
|
AdsHistoricalCampaignRollupStatuses,
|
|
@@ -137,7 +137,7 @@ import {
|
|
|
137
137
|
providerQuotaPolicySchema,
|
|
138
138
|
resolveProviderInput,
|
|
139
139
|
winnabilityClassSchema
|
|
140
|
-
} from "./chunk-
|
|
140
|
+
} from "./chunk-OSMUOPBR.js";
|
|
141
141
|
|
|
142
142
|
// src/cli.ts
|
|
143
143
|
import { pathToFileURL } from "url";
|
package/dist/index.js
CHANGED
|
@@ -3,12 +3,12 @@ import {
|
|
|
3
3
|
createGoogleMarketingCredentialStore,
|
|
4
4
|
createGoogleMarketingRuntime,
|
|
5
5
|
createServer
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-DSGX2IAI.js";
|
|
7
7
|
import {
|
|
8
8
|
loadConfig
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import "./chunk-
|
|
9
|
+
} from "./chunk-TIEHKR6K.js";
|
|
10
|
+
import "./chunk-J3RVQCCQ.js";
|
|
11
|
+
import "./chunk-OSMUOPBR.js";
|
|
12
12
|
export {
|
|
13
13
|
GoogleMarketingRuntimeError,
|
|
14
14
|
createGoogleMarketingCredentialStore,
|
package/dist/mcp.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
autoSyncSkills
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-HYKZOCBT.js";
|
|
4
4
|
import {
|
|
5
5
|
CliError,
|
|
6
6
|
PACKAGE_VERSION,
|
|
7
7
|
canonryMcpTools,
|
|
8
8
|
createApiClient
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-TIEHKR6K.js";
|
|
10
10
|
import {
|
|
11
11
|
isReadOnlyKey
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-OSMUOPBR.js";
|
|
13
13
|
|
|
14
14
|
// src/mcp/cli.ts
|
|
15
15
|
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.
|
|
3
|
+
"version": "4.174.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent-first open-source AEO operating platform - track how answer engines cite your domain",
|
|
6
6
|
"license": "FSL-1.1-ALv2",
|
|
@@ -70,28 +70,28 @@
|
|
|
70
70
|
"@types/node-cron": "^3.0.11",
|
|
71
71
|
"tsup": "^8.5.1",
|
|
72
72
|
"tsx": "^4.19.0",
|
|
73
|
+
"@ainyc/canonry-api-routes": "0.0.0",
|
|
73
74
|
"@ainyc/canonry-api-client": "0.0.0",
|
|
74
75
|
"@ainyc/canonry-contracts": "0.0.0",
|
|
76
|
+
"@ainyc/canonry-config": "0.0.0",
|
|
75
77
|
"@ainyc/canonry-db": "0.0.0",
|
|
76
78
|
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
77
79
|
"@ainyc/canonry-integration-cloudflare-queue": "0.0.0",
|
|
78
|
-
"@ainyc/canonry-api-routes": "0.0.0",
|
|
79
80
|
"@ainyc/canonry-integration-cloudflare-worker": "0.0.0",
|
|
80
|
-
"@ainyc/canonry-integration-openai-ads": "0.0.0",
|
|
81
81
|
"@ainyc/canonry-integration-cloud-run": "0.0.0",
|
|
82
|
-
"@ainyc/canonry-integration-google": "0.0.0",
|
|
83
82
|
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
83
|
+
"@ainyc/canonry-integration-openai-ads": "0.0.0",
|
|
84
|
+
"@ainyc/canonry-integration-google": "0.0.0",
|
|
84
85
|
"@ainyc/canonry-integration-google-business-profile": "0.0.0",
|
|
85
|
-
"@ainyc/canonry-integration-google-ads": "0.0.0",
|
|
86
|
-
"@ainyc/canonry-config": "0.0.0",
|
|
87
86
|
"@ainyc/canonry-integration-google-places": "0.0.0",
|
|
87
|
+
"@ainyc/canonry-integration-google-ads": "0.0.0",
|
|
88
88
|
"@ainyc/canonry-integration-google-tag-manager": "0.0.0",
|
|
89
|
-
"@ainyc/canonry-intelligence": "0.0.0",
|
|
90
89
|
"@ainyc/canonry-integration-traffic": "0.0.0",
|
|
91
90
|
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
91
|
+
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
92
|
+
"@ainyc/canonry-intelligence": "0.0.0",
|
|
92
93
|
"@ainyc/canonry-provider-cdp": "0.0.0",
|
|
93
94
|
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
94
|
-
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
95
95
|
"@ainyc/canonry-provider-local": "0.0.0",
|
|
96
96
|
"@ainyc/canonry-provider-openai": "0.0.0",
|
|
97
97
|
"@ainyc/canonry-provider-perplexity": "0.0.0"
|