@f5-sales-demo/xcsh-stats 19.51.2 → 19.51.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@f5-sales-demo/xcsh-stats",
4
- "version": "19.51.2",
4
+ "version": "19.51.3",
5
5
  "description": "Local observability dashboard for pi AI usage statistics",
6
6
  "homepage": "https://github.com/f5-sales-demo/xcsh",
7
7
  "author": "Can Boluk",
@@ -37,8 +37,8 @@
37
37
  "fmt": "biome format --write ."
38
38
  },
39
39
  "dependencies": {
40
- "@f5-sales-demo/pi-ai": "workspace:*",
41
- "@f5-sales-demo/pi-utils": "workspace:*",
40
+ "@f5-sales-demo/pi-ai": "19.51.3",
41
+ "@f5-sales-demo/pi-utils": "19.51.3",
42
42
  "@tailwindcss/node": "^4.2",
43
43
  "chart.js": "^4.5",
44
44
  "date-fns": "~4.1.0",
package/src/db.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Database } from "bun:sqlite";
2
2
  import * as fs from "node:fs/promises";
3
- import { getConfigRootDir, getStatsDbPath } from "@f5xc-salesdemos/pi-utils";
3
+ import { getConfigRootDir, getStatsDbPath } from "@f5-sales-demo/pi-utils";
4
4
  import type {
5
5
  AggregatedStats,
6
6
  FolderStats,
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env bun
2
2
 
3
3
  import { parseArgs } from "node:util";
4
- import { formatDuration, formatNumber, formatPercent } from "@f5xc-salesdemos/pi-utils";
4
+ import { formatDuration, formatNumber, formatPercent } from "@f5-sales-demo/pi-utils";
5
5
  import { getDashboardStats, getTotalMessageCount, syncAllSessions } from "./aggregator";
6
6
  import { closeDb } from "./db";
7
7
  import { startServer } from "./server";
package/src/parser.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as fs from "node:fs/promises";
2
2
  import * as path from "node:path";
3
- import type { AssistantMessage } from "@f5xc-salesdemos/pi-ai";
4
- import { getSessionsDir, isEnoent } from "@f5xc-salesdemos/pi-utils";
3
+ import type { AssistantMessage } from "@f5-sales-demo/pi-ai";
4
+ import { getSessionsDir, isEnoent } from "@f5-sales-demo/pi-utils";
5
5
  import type { MessageStats, SessionEntry, SessionMessageEntry } from "./types";
6
6
 
7
7
  /**
package/src/types.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { AssistantMessage, StopReason, Usage } from "@f5xc-salesdemos/pi-ai";
1
+ import type { AssistantMessage, StopReason, Usage } from "@f5-sales-demo/pi-ai";
2
2
 
3
3
  /**
4
4
  * Extracted stats from an assistant message.