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