@gpt-core/client 0.7.73 → 0.7.74

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.mts CHANGED
@@ -510,6 +510,18 @@ type Wallet = {
510
510
  usage_history?: Array<{
511
511
  [key: string]: unknown;
512
512
  }> | null | unknown;
513
+ /**
514
+ * Storage breakdown by workspace (Top 3 + Others). Field included by default.
515
+ */
516
+ workspace_storage?: Array<{
517
+ [key: string]: unknown;
518
+ }> | null | unknown;
519
+ /**
520
+ * Usage breakdown by workspace (Top 3 + Others). Field included by default.
521
+ */
522
+ workspace_usage?: Array<{
523
+ [key: string]: unknown;
524
+ }> | null | unknown;
513
525
  };
514
526
  id: string;
515
527
  /**
package/dist/index.d.ts CHANGED
@@ -510,6 +510,18 @@ type Wallet = {
510
510
  usage_history?: Array<{
511
511
  [key: string]: unknown;
512
512
  }> | null | unknown;
513
+ /**
514
+ * Storage breakdown by workspace (Top 3 + Others). Field included by default.
515
+ */
516
+ workspace_storage?: Array<{
517
+ [key: string]: unknown;
518
+ }> | null | unknown;
519
+ /**
520
+ * Usage breakdown by workspace (Top 3 + Others). Field included by default.
521
+ */
522
+ workspace_usage?: Array<{
523
+ [key: string]: unknown;
524
+ }> | null | unknown;
513
525
  };
514
526
  id: string;
515
527
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/client",
3
- "version": "0.7.73",
3
+ "version": "0.7.74",
4
4
  "description": "TypeScript SDK for GPT Core Client API - Document extraction, AI agents, and workspace management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",