@ainyc/canonry 3.4.6 → 3.4.7

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.
@@ -7234,6 +7234,9 @@ function validateSiteUrl(siteUrl) {
7234
7234
  if (!siteUrl || typeof siteUrl !== "string" || siteUrl.trim().length === 0) {
7235
7235
  throw new GoogleApiError("Site URL is required and must be a non-empty string", 400);
7236
7236
  }
7237
+ if (/^\d+$/.test(siteUrl)) {
7238
+ return;
7239
+ }
7237
7240
  if (siteUrl.startsWith("sc-domain:")) {
7238
7241
  const domain = siteUrl.slice("sc-domain:".length);
7239
7242
  if (!domain) {
package/dist/cli.js CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  setGoogleAuthConfig,
18
18
  showFirstRunNotice,
19
19
  trackEvent
20
- } from "./chunk-UJRPODX3.js";
20
+ } from "./chunk-3WMODJE5.js";
21
21
  import {
22
22
  CliError,
23
23
  EXIT_SYSTEM_ERROR,
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createServer
3
- } from "./chunk-UJRPODX3.js";
3
+ } from "./chunk-3WMODJE5.js";
4
4
  import {
5
5
  loadConfig
6
6
  } from "./chunk-ZYESHCMF.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainyc/canonry",
3
- "version": "3.4.6",
3
+ "version": "3.4.7",
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",
@@ -59,21 +59,21 @@
59
59
  "@types/node-cron": "^3.0.11",
60
60
  "tsup": "^8.5.1",
61
61
  "tsx": "^4.19.0",
62
+ "@ainyc/canonry-api-routes": "0.0.0",
62
63
  "@ainyc/canonry-config": "0.0.0",
63
64
  "@ainyc/canonry-db": "0.0.0",
64
- "@ainyc/canonry-contracts": "0.0.0",
65
- "@ainyc/canonry-api-routes": "0.0.0",
66
65
  "@ainyc/canonry-intelligence": "0.0.0",
67
66
  "@ainyc/canonry-integration-bing": "0.0.0",
68
- "@ainyc/canonry-integration-commoncrawl": "0.0.0",
69
- "@ainyc/canonry-integration-wordpress": "0.0.0",
67
+ "@ainyc/canonry-contracts": "0.0.0",
70
68
  "@ainyc/canonry-integration-google": "0.0.0",
69
+ "@ainyc/canonry-integration-commoncrawl": "0.0.0",
71
70
  "@ainyc/canonry-provider-cdp": "0.0.0",
72
- "@ainyc/canonry-provider-claude": "0.0.0",
73
71
  "@ainyc/canonry-provider-gemini": "0.0.0",
72
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
73
+ "@ainyc/canonry-provider-claude": "0.0.0",
74
74
  "@ainyc/canonry-provider-local": "0.0.0",
75
- "@ainyc/canonry-provider-openai": "0.0.0",
76
- "@ainyc/canonry-provider-perplexity": "0.0.0"
75
+ "@ainyc/canonry-provider-perplexity": "0.0.0",
76
+ "@ainyc/canonry-provider-openai": "0.0.0"
77
77
  },
78
78
  "scripts": {
79
79
  "build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",