@wix/auto_sdk_subscription_subscriptions 1.0.17 → 1.0.18
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/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +8 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +8 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +8 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +8 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +8 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/cjs/meta.d.ts
CHANGED
|
@@ -629,6 +629,7 @@ interface Totals {
|
|
|
629
629
|
/**
|
|
630
630
|
* Total price of the subscription that the customer must pay per billing
|
|
631
631
|
* cycle. Calculated as: `subtotal + tax + shippingFee + applicationFee + extraCharge - discount - credit`
|
|
632
|
+
* Note: platformFee is NOT included in this calculation as it is absorbed by the merchant and does not affect the customer's total.
|
|
632
633
|
* @format DECIMAL_VALUE
|
|
633
634
|
* @readonly
|
|
634
635
|
*/
|
|
@@ -682,6 +683,13 @@ interface Totals {
|
|
|
682
683
|
* @readonly
|
|
683
684
|
*/
|
|
684
685
|
prorationTax?: string | null;
|
|
686
|
+
/**
|
|
687
|
+
* Platform fee calculated based on vertical-specific billing settings configuration.
|
|
688
|
+
* @format DECIMAL_VALUE
|
|
689
|
+
* @decimalValue options { gte:0.00, maxScale:2 }
|
|
690
|
+
* @readonly
|
|
691
|
+
*/
|
|
692
|
+
platformFee?: string | null;
|
|
685
693
|
}
|
|
686
694
|
interface PaymentTaxData {
|
|
687
695
|
/**
|