@vrplatform/api 1.3.1-6283 → 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.
|
@@ -5103,7 +5103,7 @@ export interface paths {
|
|
|
5103
5103
|
get?: never;
|
|
5104
5104
|
put?: never;
|
|
5105
5105
|
/**
|
|
5106
|
-
* @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,
|
|
5106
|
+
* @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.
|
|
5107
5107
|
*
|
|
5108
5108
|
* Required scope: statements:read
|
|
5109
5109
|
*/
|
|
@@ -107791,6 +107791,16 @@ export interface operations {
|
|
|
107791
107791
|
/** @description First date available for a statement-period-locked payout. */
|
|
107792
107792
|
openFrom?: string;
|
|
107793
107793
|
}[];
|
|
107794
|
+
warnings: {
|
|
107795
|
+
/** @constant */
|
|
107796
|
+
code: "amountExceedsAvailableBalance";
|
|
107797
|
+
/** @constant */
|
|
107798
|
+
message: "Payout amount exceeds statement available balance";
|
|
107799
|
+
/** @description Signed remaining statement balance before the requested payout: expected payment minus received payment. */
|
|
107800
|
+
availableBalance: number;
|
|
107801
|
+
/** @description Positive amount by which the requested payout exceeds the remaining statement balance. */
|
|
107802
|
+
excessAmount: number;
|
|
107803
|
+
}[];
|
|
107794
107804
|
}[];
|
|
107795
107805
|
};
|
|
107796
107806
|
};
|