@openmeter/sdk 1.0.0-beta.203 → 1.0.0-beta.204

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.
@@ -17,9 +17,9 @@ export declare class Apps {
17
17
  * @returns The apps
18
18
  */
19
19
  list(query?: operations['listApps']['parameters']['query'], options?: RequestOptions): Promise<{
20
+ totalCount: number;
20
21
  page: number;
21
22
  pageSize: number;
22
- totalCount: number;
23
23
  items: import("./schemas.cjs").components["schemas"]["App"][];
24
24
  }>;
25
25
  /**
@@ -205,9 +205,9 @@ export declare class AppMarketplace {
205
205
  * @returns The apps
206
206
  */
207
207
  list(query?: operations['listMarketplaceListings']['parameters']['query'], options?: RequestOptions): Promise<{
208
+ totalCount: number;
208
209
  page: number;
209
210
  pageSize: number;
210
- totalCount: number;
211
211
  items: import("./schemas.cjs").components["schemas"]["MarketplaceListing"][];
212
212
  }>;
213
213
  /**