@vrplatform/api 1.3.1-6279 → 1.3.1-6284

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-6279",
6
+ "version": "1.3.1-6284",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -5104,7 +5104,7 @@ export interface paths {
5104
5104
  get?: never;
5105
5105
  put?: never;
5106
5106
  /**
5107
- * @description Preview owner statement payout plans without creating transactions. Returns authoritative per-owner allocations after server rounding, default bank accounts, ACH payment-method readiness, exact Ramp funding-source readiness, completed Ramp Category-account synchronization readiness, and typed blockers for the submitted owner selections and payout date. A statement-period-locked date returns `statementPeriodLocked` with `openFrom`. An unconfigured Ramp transfer flow is eligible but remains unchanged until payment. `POST /statements/pay` revalidates the same rules; the preview is advisory.
5107
+ * @description Preview owner statement payout plans without creating transactions. Returns authoritative per-owner allocations after server rounding, default bank accounts, ACH payment-method readiness, exact Ramp funding-source readiness, completed Ramp Category-account synchronization readiness, typed blockers for the submitted owner selections and payout date, and a non-blocking `amountExceedsAvailableBalance` warning for an explicit overpayment. A statement-period-locked date returns `statementPeriodLocked` with `openFrom`. An unconfigured Ramp transfer flow is eligible but remains unchanged until payment. `POST /statements/pay` revalidates the same blocking rules; the preview is advisory and overpayment remains allowed.
5108
5108
  *
5109
5109
  * Required scope: statements:read
5110
5110
  */
@@ -107792,6 +107792,16 @@ export interface operations {
107792
107792
  /** @description First date available for a statement-period-locked payout. */
107793
107793
  openFrom?: string;
107794
107794
  }[];
107795
+ warnings: {
107796
+ /** @constant */
107797
+ code: "amountExceedsAvailableBalance";
107798
+ /** @constant */
107799
+ message: "Payout amount exceeds statement available balance";
107800
+ /** @description Signed remaining statement balance before the requested payout: expected payment minus received payment. */
107801
+ availableBalance: number;
107802
+ /** @description Positive amount by which the requested payout exceeds the remaining statement balance. */
107803
+ excessAmount: number;
107804
+ }[];
107795
107805
  }[];
107796
107806
  };
107797
107807
  };