@applica-software-guru/persona-sdk 0.1.34 → 0.1.35
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 +4 -0
- package/package.json +1 -1
- package/src/billing/types.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -1297,6 +1297,10 @@ export declare interface UsageStats {
|
|
|
1297
1297
|
byModel: UsageModelEntry[];
|
|
1298
1298
|
availableModels: string[];
|
|
1299
1299
|
hasCostData?: boolean;
|
|
1300
|
+
costDataMode?: 'actual' | 'estimated_price' | 'mixed' | 'none';
|
|
1301
|
+
hasEstimatedPriceData?: boolean;
|
|
1302
|
+
hasActualCostData?: boolean;
|
|
1303
|
+
costDataWarningCode?: string | null;
|
|
1300
1304
|
}
|
|
1301
1305
|
|
|
1302
1306
|
export declare interface UsageTotals {
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@applica-software-guru/persona-sdk",
|
|
3
3
|
"description": "Official TypeScript SDK for the Persona API — manage agents, sessions, projects, knowledge bases, workflows, triggers and more.",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.35",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"dev": "vite",
|
package/src/billing/types.ts
CHANGED
|
@@ -138,4 +138,8 @@ export interface UsageStats {
|
|
|
138
138
|
byModel: UsageModelEntry[];
|
|
139
139
|
availableModels: string[];
|
|
140
140
|
hasCostData?: boolean;
|
|
141
|
+
costDataMode?: 'actual' | 'estimated_price' | 'mixed' | 'none';
|
|
142
|
+
hasEstimatedPriceData?: boolean;
|
|
143
|
+
hasActualCostData?: boolean;
|
|
144
|
+
costDataWarningCode?: string | null;
|
|
141
145
|
}
|