@gpt-core/client 0.7.71 → 0.7.73

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
@@ -504,6 +504,12 @@ type Wallet = {
504
504
  * Field included by default.
505
505
  */
506
506
  storage_used_bytes: number;
507
+ /**
508
+ * Daily usage history entries. Field included by default.
509
+ */
510
+ usage_history?: Array<{
511
+ [key: string]: unknown;
512
+ }> | null | unknown;
507
513
  };
508
514
  id: string;
509
515
  /**
@@ -4515,7 +4521,7 @@ type PatchWalletCreditsResponses = {
4515
4521
  */
4516
4522
  200: {
4517
4523
  data?: Wallet;
4518
- included?: Array<unknown>;
4524
+ included?: Array<Plan>;
4519
4525
  meta?: {
4520
4526
  [key: string]: unknown;
4521
4527
  };
@@ -14474,7 +14480,7 @@ type PatchWalletAddonsResponses = {
14474
14480
  */
14475
14481
  200: {
14476
14482
  data?: Wallet;
14477
- included?: Array<unknown>;
14483
+ included?: Array<Plan>;
14478
14484
  meta?: {
14479
14485
  [key: string]: unknown;
14480
14486
  };
@@ -15744,7 +15750,7 @@ type PatchWalletAddonsByAddonSlugCancelResponses = {
15744
15750
  */
15745
15751
  200: {
15746
15752
  data?: Wallet;
15747
- included?: Array<unknown>;
15753
+ included?: Array<Plan>;
15748
15754
  meta?: {
15749
15755
  [key: string]: unknown;
15750
15756
  };
@@ -16534,7 +16540,7 @@ type PatchWalletPlanResponses = {
16534
16540
  */
16535
16541
  200: {
16536
16542
  data?: Wallet;
16537
- included?: Array<unknown>;
16543
+ included?: Array<Plan>;
16538
16544
  meta?: {
16539
16545
  [key: string]: unknown;
16540
16546
  };
@@ -21829,7 +21835,7 @@ type GetWalletResponses = {
21829
21835
  */
21830
21836
  200: {
21831
21837
  data?: Wallet;
21832
- included?: Array<unknown>;
21838
+ included?: Array<Plan>;
21833
21839
  meta?: {
21834
21840
  [key: string]: unknown;
21835
21841
  };
package/dist/index.d.ts CHANGED
@@ -504,6 +504,12 @@ type Wallet = {
504
504
  * Field included by default.
505
505
  */
506
506
  storage_used_bytes: number;
507
+ /**
508
+ * Daily usage history entries. Field included by default.
509
+ */
510
+ usage_history?: Array<{
511
+ [key: string]: unknown;
512
+ }> | null | unknown;
507
513
  };
508
514
  id: string;
509
515
  /**
@@ -4515,7 +4521,7 @@ type PatchWalletCreditsResponses = {
4515
4521
  */
4516
4522
  200: {
4517
4523
  data?: Wallet;
4518
- included?: Array<unknown>;
4524
+ included?: Array<Plan>;
4519
4525
  meta?: {
4520
4526
  [key: string]: unknown;
4521
4527
  };
@@ -14474,7 +14480,7 @@ type PatchWalletAddonsResponses = {
14474
14480
  */
14475
14481
  200: {
14476
14482
  data?: Wallet;
14477
- included?: Array<unknown>;
14483
+ included?: Array<Plan>;
14478
14484
  meta?: {
14479
14485
  [key: string]: unknown;
14480
14486
  };
@@ -15744,7 +15750,7 @@ type PatchWalletAddonsByAddonSlugCancelResponses = {
15744
15750
  */
15745
15751
  200: {
15746
15752
  data?: Wallet;
15747
- included?: Array<unknown>;
15753
+ included?: Array<Plan>;
15748
15754
  meta?: {
15749
15755
  [key: string]: unknown;
15750
15756
  };
@@ -16534,7 +16540,7 @@ type PatchWalletPlanResponses = {
16534
16540
  */
16535
16541
  200: {
16536
16542
  data?: Wallet;
16537
- included?: Array<unknown>;
16543
+ included?: Array<Plan>;
16538
16544
  meta?: {
16539
16545
  [key: string]: unknown;
16540
16546
  };
@@ -21829,7 +21835,7 @@ type GetWalletResponses = {
21829
21835
  */
21830
21836
  200: {
21831
21837
  data?: Wallet;
21832
- included?: Array<unknown>;
21838
+ included?: Array<Plan>;
21833
21839
  meta?: {
21834
21840
  [key: string]: unknown;
21835
21841
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/client",
3
- "version": "0.7.71",
3
+ "version": "0.7.73",
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",