@ainyc/canonry 1.27.2 → 1.28.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,20 @@ interface Ga4ConnectionConfigEntry {
59
59
  interface Ga4ConfigEntry {
60
60
  connections?: Ga4ConnectionConfigEntry[];
61
61
  }
62
+ type WordpressEnv = 'live' | 'staging';
63
+ interface WordpressConnectionConfigEntry {
64
+ projectName: string;
65
+ url: string;
66
+ stagingUrl?: string;
67
+ username: string;
68
+ appPassword: string;
69
+ defaultEnv: WordpressEnv;
70
+ createdAt: string;
71
+ updatedAt: string;
72
+ }
73
+ interface WordpressConfigEntry {
74
+ connections?: WordpressConnectionConfigEntry[];
75
+ }
62
76
  interface CanonryConfig {
63
77
  apiUrl: string;
64
78
  publicUrl?: string;
@@ -75,6 +89,7 @@ interface CanonryConfig {
75
89
  google?: GoogleConfigEntry;
76
90
  bing?: BingConfigEntry;
77
91
  ga4?: Ga4ConfigEntry;
92
+ wordpress?: WordpressConfigEntry;
78
93
  dashboardPasswordHash?: string;
79
94
  telemetry?: boolean;
80
95
  anonymousId?: string;
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createServer,
3
3
  loadConfig
4
- } from "./chunk-727N35MW.js";
4
+ } from "./chunk-2WEJYH27.js";
5
5
  export {
6
6
  createServer,
7
7
  loadConfig
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainyc/canonry",
3
- "version": "1.27.2",
3
+ "version": "1.28.1",
4
4
  "type": "module",
5
5
  "description": "The ultimate open-source AEO monitoring tool - track how answer engines cite your domain",
6
6
  "license": "FSL-1.1-ALv2",
@@ -36,8 +36,7 @@
36
36
  "dependencies": {
37
37
  "@anthropic-ai/sdk": "^0.78.0",
38
38
  "@fastify/static": "^8.1.0",
39
- "@google-cloud/vertexai": "^1.10.3",
40
- "@google/generative-ai": "^0.24.1",
39
+ "@google/genai": "^1.46.0",
41
40
  "better-sqlite3": "^12.6.2",
42
41
  "drizzle-orm": "^0.45.1",
43
42
  "fastify": "^5.4.0",
@@ -53,18 +52,19 @@
53
52
  "@types/node-cron": "^3.0.11",
54
53
  "tsup": "^8.5.1",
55
54
  "tsx": "^4.19.0",
55
+ "@ainyc/canonry-config": "0.0.0",
56
56
  "@ainyc/canonry-api-routes": "0.0.0",
57
+ "@ainyc/canonry-db": "0.0.0",
57
58
  "@ainyc/canonry-provider-claude": "0.0.0",
58
- "@ainyc/canonry-contracts": "0.0.0",
59
59
  "@ainyc/canonry-provider-gemini": "0.0.0",
60
- "@ainyc/canonry-config": "0.0.0",
61
- "@ainyc/canonry-provider-local": "0.0.0",
62
- "@ainyc/canonry-db": "0.0.0",
60
+ "@ainyc/canonry-contracts": "0.0.0",
63
61
  "@ainyc/canonry-provider-cdp": "0.0.0",
62
+ "@ainyc/canonry-provider-local": "0.0.0",
63
+ "@ainyc/canonry-integration-bing": "0.0.0",
64
64
  "@ainyc/canonry-integration-google": "0.0.0",
65
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
65
66
  "@ainyc/canonry-provider-perplexity": "0.0.0",
66
- "@ainyc/canonry-provider-openai": "0.0.0",
67
- "@ainyc/canonry-integration-bing": "0.0.0"
67
+ "@ainyc/canonry-provider-openai": "0.0.0"
68
68
  },
69
69
  "scripts": {
70
70
  "build": "tsup && tsx build-web.ts",