reasonix 0.30.1 → 0.30.2
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/dashboard/dist/app.js +18 -6
- package/dashboard/dist/app.js.map +1 -1
- package/dist/cli/index.js +126 -29
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1341,6 +1341,8 @@ interface SessionMeta {
|
|
|
1341
1341
|
turnCount?: number;
|
|
1342
1342
|
/** Absolute path of the workspace root the session was created/used in. */
|
|
1343
1343
|
workspace?: string;
|
|
1344
|
+
/** Wallet currency at last save — used to format `totalCostUsd` in the picker without re-fetching balance. */
|
|
1345
|
+
balanceCurrency?: string;
|
|
1344
1346
|
}
|
|
1345
1347
|
declare function sessionsDir(): string;
|
|
1346
1348
|
declare function sessionPath(name: string): string;
|