@gpt-core/client 0.9.18 → 0.9.19

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
@@ -19550,12 +19550,6 @@ type GetWalletInvoicesData = {
19550
19550
  * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
19551
19551
  */
19552
19552
  sort?: string;
19553
- /**
19554
- * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
19555
- */
19556
- page?: {
19557
- [key: string]: unknown;
19558
- };
19559
19553
  /**
19560
19554
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19561
19555
  */
@@ -36526,11 +36520,7 @@ declare const postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = fals
36526
36520
  /**
36527
36521
  * List invoices
36528
36522
  *
36529
- * Lists resources with optional filtering, sorting, and pagination.
36530
- *
36531
- * **Authentication:** Required - Bearer token or API key
36532
- * **Rate Limit:** 100 requests per minute
36533
- *
36523
+ * Read all invoices for the current tenant
36534
36524
  */
36535
36525
  declare const getWalletInvoices: <ThrowOnError extends boolean = false>(options: Options<GetWalletInvoicesData, ThrowOnError>) => RequestResult<GetWalletInvoicesResponses, GetWalletInvoicesErrors, ThrowOnError, "fields">;
36536
36526
  /**
package/dist/index.d.ts CHANGED
@@ -19550,12 +19550,6 @@ type GetWalletInvoicesData = {
19550
19550
  * Sort results by one or more fields. Prefix with '-' for descending order. Separate multiple fields with commas.
19551
19551
  */
19552
19552
  sort?: string;
19553
- /**
19554
- * JSON:API pagination parameters (use flat query string format: page[limit]=20&page[offset]=0)
19555
- */
19556
- page?: {
19557
- [key: string]: unknown;
19558
- };
19559
19553
  /**
19560
19554
  * Include related resources in the response. Comma-separated list of relationship names to eager-load.
19561
19555
  */
@@ -36526,11 +36520,7 @@ declare const postTenantsByIdRemoveStorage: <ThrowOnError extends boolean = fals
36526
36520
  /**
36527
36521
  * List invoices
36528
36522
  *
36529
- * Lists resources with optional filtering, sorting, and pagination.
36530
- *
36531
- * **Authentication:** Required - Bearer token or API key
36532
- * **Rate Limit:** 100 requests per minute
36533
- *
36523
+ * Read all invoices for the current tenant
36534
36524
  */
36535
36525
  declare const getWalletInvoices: <ThrowOnError extends boolean = false>(options: Options<GetWalletInvoicesData, ThrowOnError>) => RequestResult<GetWalletInvoicesResponses, GetWalletInvoicesErrors, ThrowOnError, "fields">;
36536
36526
  /**
package/dist/index.js CHANGED
@@ -3192,7 +3192,6 @@ var getWalletInvoices = (options) => (options.client ?? client).get({
3192
3192
  querySerializer: {
3193
3193
  parameters: {
3194
3194
  filter: { object: { style: "form" } },
3195
- page: { object: { style: "form" } },
3196
3195
  fields: { object: { style: "form" } }
3197
3196
  }
3198
3197
  },
package/dist/index.mjs CHANGED
@@ -2761,7 +2761,6 @@ var getWalletInvoices = (options) => (options.client ?? client).get({
2761
2761
  querySerializer: {
2762
2762
  parameters: {
2763
2763
  filter: { object: { style: "form" } },
2764
- page: { object: { style: "form" } },
2765
2764
  fields: { object: { style: "form" } }
2766
2765
  }
2767
2766
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/client",
3
- "version": "0.9.18",
3
+ "version": "0.9.19",
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",