@ainyc/canonry 4.11.1 → 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/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-PBQ4Z4P4.js";
3
+ } from "./chunk-L4KKHRVQ.js";
4
4
  import {
5
5
  loadConfig
6
- } from "./chunk-5J5BVJF7.js";
7
- import "./chunk-3SFDZPKU.js";
8
- import "./chunk-565T7PMC.js";
6
+ } from "./chunk-LNRDWAG3.js";
7
+ import "./chunk-DCE3B6KD.js";
8
+ import "./chunk-YDGT5CAY.js";
9
9
  export {
10
10
  createServer,
11
11
  loadConfig
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  IntelligenceService
3
- } from "./chunk-3SFDZPKU.js";
4
- import "./chunk-565T7PMC.js";
3
+ } from "./chunk-DCE3B6KD.js";
4
+ import "./chunk-YDGT5CAY.js";
5
5
  export {
6
6
  IntelligenceService
7
7
  };
package/dist/mcp.js CHANGED
@@ -2,8 +2,8 @@ import {
2
2
  CliError,
3
3
  canonryMcpTools,
4
4
  createApiClient
5
- } from "./chunk-5J5BVJF7.js";
6
- import "./chunk-565T7PMC.js";
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.11.1",
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-contracts": "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
+ "@ainyc/canonry-contracts": "0.0.0",
65
66
  "@ainyc/canonry-intelligence": "0.0.0",
66
67
  "@ainyc/canonry-integration-bing": "0.0.0",
67
68
  "@ainyc/canonry-integration-commoncrawl": "0.0.0",
69
+ "@ainyc/canonry-integration-cloud-run": "0.0.0",
68
70
  "@ainyc/canonry-integration-google": "0.0.0",
71
+ "@ainyc/canonry-integration-traffic": "0.0.0",
69
72
  "@ainyc/canonry-integration-wordpress": "0.0.0",
70
- "@ainyc/canonry-config": "0.0.0",
71
73
  "@ainyc/canonry-provider-cdp": "0.0.0",
74
+ "@ainyc/canonry-provider-claude": "0.0.0",
72
75
  "@ainyc/canonry-provider-local": "0.0.0",
73
76
  "@ainyc/canonry-provider-openai": "0.0.0",
74
- "@ainyc/canonry-provider-perplexity": "0.0.0",
75
- "@ainyc/canonry-provider-claude": "0.0.0",
76
- "@ainyc/canonry-provider-gemini": "0.0.0"
77
+ "@ainyc/canonry-provider-gemini": "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",