@ainyc/canonry 1.46.0 → 1.46.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
@@ -73,6 +73,16 @@ interface WordpressConnectionConfigEntry {
73
73
  interface WordpressConfigEntry {
74
74
  connections?: WordpressConnectionConfigEntry[];
75
75
  }
76
+ interface AgentConfigEntry {
77
+ /** Path to openclaw binary (auto-detected, persisted after bootstrap) */
78
+ binary?: string;
79
+ /** OpenClaw profile name (default: 'aero') */
80
+ profile?: string;
81
+ /** Start gateway automatically with `canonry serve` */
82
+ autoStart?: boolean;
83
+ /** Gateway port (persisted so restarts reuse same port) */
84
+ gatewayPort?: number;
85
+ }
76
86
  interface CanonryConfig {
77
87
  apiUrl: string;
78
88
  publicUrl?: string;
@@ -93,6 +103,7 @@ interface CanonryConfig {
93
103
  dashboardPasswordHash?: string;
94
104
  telemetry?: boolean;
95
105
  anonymousId?: string;
106
+ agent?: AgentConfigEntry;
96
107
  }
97
108
  declare function loadConfig(): CanonryConfig;
98
109
 
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createServer,
3
3
  loadConfig
4
- } from "./chunk-22RIKNII.js";
4
+ } from "./chunk-RMLIF47M.js";
5
5
  import "./chunk-HO22LHTY.js";
6
6
  export {
7
7
  createServer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ainyc/canonry",
3
- "version": "1.46.0",
3
+ "version": "1.46.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",
@@ -55,22 +55,22 @@
55
55
  "tsup": "^8.5.1",
56
56
  "tsx": "^4.19.0",
57
57
  "@ainyc/canonry-config": "0.0.0",
58
- "@ainyc/canonry-api-routes": "0.0.0",
59
58
  "@ainyc/canonry-db": "0.0.0",
60
59
  "@ainyc/canonry-intelligence": "0.0.0",
61
- "@ainyc/canonry-integration-bing": "0.0.0",
62
- "@ainyc/canonry-integration-google": "0.0.0",
63
60
  "@ainyc/canonry-contracts": "0.0.0",
61
+ "@ainyc/canonry-api-routes": "0.0.0",
62
+ "@ainyc/canonry-integration-google": "0.0.0",
63
+ "@ainyc/canonry-integration-bing": "0.0.0",
64
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
65
+ "@ainyc/canonry-provider-claude": "0.0.0",
64
66
  "@ainyc/canonry-provider-gemini": "0.0.0",
65
67
  "@ainyc/canonry-provider-cdp": "0.0.0",
68
+ "@ainyc/canonry-provider-openai": "0.0.0",
66
69
  "@ainyc/canonry-provider-local": "0.0.0",
67
- "@ainyc/canonry-integration-wordpress": "0.0.0",
68
- "@ainyc/canonry-provider-claude": "0.0.0",
69
- "@ainyc/canonry-provider-perplexity": "0.0.0",
70
- "@ainyc/canonry-provider-openai": "0.0.0"
70
+ "@ainyc/canonry-provider-perplexity": "0.0.0"
71
71
  },
72
72
  "scripts": {
73
- "build": "tsup && tsx build-web.ts",
73
+ "build": "tsx scripts/copy-agent-assets.ts && tsup && tsx build-web.ts",
74
74
  "build:web": "tsx build-web.ts",
75
75
  "typecheck": "tsc --noEmit -p tsconfig.json",
76
76
  "test": "vitest run",