@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.
@@ -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
  /**