@ainyc/canonry 4.11.0 → 4.12.1
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/assets/{index-DOcemxPD.js → index-CCC1E6ji.js} +106 -106
- package/assets/index.html +1 -1
- package/dist/{chunk-5G6WYP2S.js → chunk-DCE3B6KD.js} +177 -2
- package/dist/{chunk-NG2PJHVL.js → chunk-L4KKHRVQ.js} +1222 -143
- package/dist/{chunk-ZR4AVT4T.js → chunk-LNRDWAG3.js} +16 -1
- package/dist/{chunk-WWU65YPN.js → chunk-YDGT5CAY.js} +65 -2
- package/dist/cli.js +269 -103
- package/dist/index.d.ts +19 -0
- package/dist/index.js +4 -4
- package/dist/{intelligence-service-ZFIYBHLQ.js → intelligence-service-NT24OLLA.js} +2 -2
- package/dist/mcp.js +2 -2
- package/package.json +6 -4
package/dist/index.d.ts
CHANGED
|
@@ -59,6 +59,24 @@ interface Ga4ConnectionConfigEntry {
|
|
|
59
59
|
interface Ga4ConfigEntry {
|
|
60
60
|
connections?: Ga4ConnectionConfigEntry[];
|
|
61
61
|
}
|
|
62
|
+
type CloudRunAuthMode = 'oauth' | 'service-account';
|
|
63
|
+
interface CloudRunConnectionConfigEntry {
|
|
64
|
+
projectName: string;
|
|
65
|
+
gcpProjectId: string;
|
|
66
|
+
serviceName?: string;
|
|
67
|
+
location?: string;
|
|
68
|
+
authMode: CloudRunAuthMode;
|
|
69
|
+
clientEmail?: string;
|
|
70
|
+
privateKey?: string;
|
|
71
|
+
refreshToken?: string;
|
|
72
|
+
tokenExpiresAt?: string;
|
|
73
|
+
scopes?: string[];
|
|
74
|
+
createdAt: string;
|
|
75
|
+
updatedAt: string;
|
|
76
|
+
}
|
|
77
|
+
interface CloudRunConfigEntry {
|
|
78
|
+
connections?: CloudRunConnectionConfigEntry[];
|
|
79
|
+
}
|
|
62
80
|
type WordpressEnv = 'live' | 'staging';
|
|
63
81
|
interface WordpressConnectionConfigEntry {
|
|
64
82
|
projectName: string;
|
|
@@ -93,6 +111,7 @@ interface CanonryConfig {
|
|
|
93
111
|
google?: GoogleConfigEntry;
|
|
94
112
|
bing?: BingConfigEntry;
|
|
95
113
|
ga4?: Ga4ConfigEntry;
|
|
114
|
+
cloudRun?: CloudRunConfigEntry;
|
|
96
115
|
wordpress?: WordpressConfigEntry;
|
|
97
116
|
dashboardPasswordHash?: string;
|
|
98
117
|
telemetry?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-L4KKHRVQ.js";
|
|
4
4
|
import {
|
|
5
5
|
loadConfig
|
|
6
|
-
} from "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
6
|
+
} from "./chunk-LNRDWAG3.js";
|
|
7
|
+
import "./chunk-DCE3B6KD.js";
|
|
8
|
+
import "./chunk-YDGT5CAY.js";
|
|
9
9
|
export {
|
|
10
10
|
createServer,
|
|
11
11
|
loadConfig
|
package/dist/mcp.js
CHANGED
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
CliError,
|
|
3
3
|
canonryMcpTools,
|
|
4
4
|
createApiClient
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-LNRDWAG3.js";
|
|
6
|
+
import "./chunk-YDGT5CAY.js";
|
|
7
7
|
|
|
8
8
|
// src/mcp/cli.ts
|
|
9
9
|
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ainyc/canonry",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.1",
|
|
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,23 @@
|
|
|
59
59
|
"@types/node-cron": "^3.0.11",
|
|
60
60
|
"tsup": "^8.5.1",
|
|
61
61
|
"tsx": "^4.19.0",
|
|
62
|
-
"@ainyc/canonry-config": "0.0.0",
|
|
63
62
|
"@ainyc/canonry-api-routes": "0.0.0",
|
|
64
63
|
"@ainyc/canonry-db": "0.0.0",
|
|
64
|
+
"@ainyc/canonry-config": "0.0.0",
|
|
65
65
|
"@ainyc/canonry-contracts": "0.0.0",
|
|
66
66
|
"@ainyc/canonry-intelligence": "0.0.0",
|
|
67
67
|
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
68
68
|
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
69
|
+
"@ainyc/canonry-integration-cloud-run": "0.0.0",
|
|
69
70
|
"@ainyc/canonry-integration-google": "0.0.0",
|
|
71
|
+
"@ainyc/canonry-integration-traffic": "0.0.0",
|
|
70
72
|
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
71
73
|
"@ainyc/canonry-provider-cdp": "0.0.0",
|
|
72
74
|
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
75
|
+
"@ainyc/canonry-provider-local": "0.0.0",
|
|
73
76
|
"@ainyc/canonry-provider-openai": "0.0.0",
|
|
74
77
|
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
75
|
-
"@ainyc/canonry-provider-perplexity": "0.0.0"
|
|
76
|
-
"@ainyc/canonry-provider-local": "0.0.0"
|
|
78
|
+
"@ainyc/canonry-provider-perplexity": "0.0.0"
|
|
77
79
|
},
|
|
78
80
|
"scripts": {
|
|
79
81
|
"build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",
|