@leaflow/sdk 0.75.0 → 0.76.0
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/dist/billing/v1/schema.d.ts +1 -17
- package/package.json +1 -1
|
@@ -2029,7 +2029,7 @@ export interface components {
|
|
|
2029
2029
|
id: string;
|
|
2030
2030
|
/** Format: int64 */
|
|
2031
2031
|
billing_account_id: number;
|
|
2032
|
-
payment_gateway
|
|
2032
|
+
payment_gateway: string;
|
|
2033
2033
|
brand?: string;
|
|
2034
2034
|
last4?: string;
|
|
2035
2035
|
exp_month?: number | null;
|
|
@@ -2403,15 +2403,6 @@ export interface components {
|
|
|
2403
2403
|
requested_amount: components["schemas"]["Money"];
|
|
2404
2404
|
/** @description What has actually been returned. */
|
|
2405
2405
|
settled_amount?: components["schemas"]["Money"];
|
|
2406
|
-
/**
|
|
2407
|
-
* @description Withheld from what reaches the payer. It applies only to cash returned to a payment
|
|
2408
|
-
* method, so it is zero when `destination` is `balance`, and it is never taken out of
|
|
2409
|
-
* credit or a voucher.
|
|
2410
|
-
*
|
|
2411
|
-
* `settled_amount` is the amount put back against what was paid; the payer receives
|
|
2412
|
-
* that less this.
|
|
2413
|
-
*/
|
|
2414
|
-
fee_amount?: components["schemas"]["Money"];
|
|
2415
2406
|
currency: string;
|
|
2416
2407
|
/**
|
|
2417
2408
|
* @description Where the cash went.
|
|
@@ -2448,13 +2439,6 @@ export interface components {
|
|
|
2448
2439
|
RefundQuote: {
|
|
2449
2440
|
/** @description The most that can still be returned, before any fee. */
|
|
2450
2441
|
refundable_amount: components["schemas"]["Money"];
|
|
2451
|
-
/**
|
|
2452
|
-
* @description Withheld from the cash part. Zero when `destination` is `balance`, and never taken
|
|
2453
|
-
* out of credit or a voucher.
|
|
2454
|
-
*/
|
|
2455
|
-
fee_amount: components["schemas"]["Money"];
|
|
2456
|
-
/** @description `refundable_amount` less `fee_amount`. */
|
|
2457
|
-
net_amount: components["schemas"]["Money"];
|
|
2458
2442
|
currency: string;
|
|
2459
2443
|
/**
|
|
2460
2444
|
* @description Where the cash part would go. `gateway` returns it to the method it was paid
|