@ainyc/canonry 1.30.0 → 1.31.0

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/cli.js CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  setGoogleAuthConfig,
22
22
  showFirstRunNotice,
23
23
  trackEvent
24
- } from "./chunk-LMSO32GF.js";
24
+ } from "./chunk-YW4IZ34Z.js";
25
25
 
26
26
  // src/cli.ts
27
27
  import { pathToFileURL } from "url";
@@ -3792,11 +3792,10 @@ function printRunDetail(run) {
3792
3792
  if (run.finishedAt) console.log(` Finished: ${run.finishedAt}`);
3793
3793
  if (run.createdAt) console.log(` Created: ${run.createdAt}`);
3794
3794
  if (run.error) console.log(` Error: ${run.error}`);
3795
- const snapshots = run.snapshots;
3796
- if (snapshots && snapshots.length > 0) {
3795
+ if (run.snapshots && run.snapshots.length > 0) {
3797
3796
  console.log(`
3798
- Snapshots: ${snapshots.length}`);
3799
- for (const s of snapshots) {
3797
+ Snapshots: ${run.snapshots.length}`);
3798
+ for (const s of run.snapshots) {
3800
3799
  const state = s.citationState === "cited" ? " cited " : " not-cited";
3801
3800
  const modelLabel = s.model ? ` (${s.model})` : "";
3802
3801
  console.log(` ${state} ${s.provider}${modelLabel} ${s.keyword}`);
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createServer,
3
3
  loadConfig
4
- } from "./chunk-LMSO32GF.js";
4
+ } from "./chunk-YW4IZ34Z.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.30.0",
3
+ "version": "1.31.0",
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,18 +55,18 @@
55
55
  "tsup": "^8.5.1",
56
56
  "tsx": "^4.19.0",
57
57
  "@ainyc/canonry-api-routes": "0.0.0",
58
- "@ainyc/canonry-config": "0.0.0",
59
- "@ainyc/canonry-integration-google": "0.0.0",
60
58
  "@ainyc/canonry-contracts": "0.0.0",
61
- "@ainyc/canonry-integration-wordpress": "0.0.0",
59
+ "@ainyc/canonry-config": "0.0.0",
62
60
  "@ainyc/canonry-db": "0.0.0",
61
+ "@ainyc/canonry-integration-bing": "0.0.0",
62
+ "@ainyc/canonry-integration-google": "0.0.0",
63
63
  "@ainyc/canonry-provider-cdp": "0.0.0",
64
+ "@ainyc/canonry-integration-wordpress": "0.0.0",
64
65
  "@ainyc/canonry-provider-claude": "0.0.0",
66
+ "@ainyc/canonry-provider-local": "0.0.0",
65
67
  "@ainyc/canonry-provider-gemini": "0.0.0",
66
- "@ainyc/canonry-integration-bing": "0.0.0",
67
68
  "@ainyc/canonry-provider-openai": "0.0.0",
68
- "@ainyc/canonry-provider-perplexity": "0.0.0",
69
- "@ainyc/canonry-provider-local": "0.0.0"
69
+ "@ainyc/canonry-provider-perplexity": "0.0.0"
70
70
  },
71
71
  "scripts": {
72
72
  "build": "tsup && tsx build-web.ts",