@vrplatform/api 1.3.1-stage.1989 → 1.3.1-stage.1990

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.
@@ -12353,6 +12353,8 @@ export interface operations {
12353
12353
  openingBalance?: boolean;
12354
12354
  /** @description Filter listings by setup issue code, "all" (all setup issues), or "any" (at least one setup issue) */
12355
12355
  issue?: "all" | "any" | "missingOwnershipOrDeactivation" | "missingFeesAndCommission" | "missingOpeningBalance";
12356
+ limit?: number;
12357
+ page?: number;
12356
12358
  };
12357
12359
  header?: never;
12358
12360
  path?: never;
@@ -12390,6 +12392,15 @@ export interface operations {
12390
12392
  updatedAt?: string | null;
12391
12393
  };
12392
12394
  }[];
12395
+ pagination: {
12396
+ /** @default 100 */
12397
+ limit: number;
12398
+ /** @default 1 */
12399
+ page: number;
12400
+ total: number;
12401
+ totalPage: number;
12402
+ nextPage?: number;
12403
+ };
12393
12404
  };
12394
12405
  };
12395
12406
  };