@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.
@@ -628,6 +628,7 @@ interface Totals {
628
628
  /**
629
629
  * Total price of the subscription that the customer must pay per billing
630
630
  * cycle. Calculated as: `subtotal + tax + shippingFee + applicationFee + extraCharge - discount - credit`
631
+ * Note: platformFee is NOT included in this calculation as it is absorbed by the merchant and does not affect the customer's total.
631
632
  * @format DECIMAL_VALUE
632
633
  * @readonly
633
634
  */
@@ -681,6 +682,13 @@ interface Totals {
681
682
  * @readonly
682
683
  */
683
684
  prorationTax?: string | null;
685
+ /**
686
+ * Platform fee calculated based on vertical-specific billing settings configuration.
687
+ * @format DECIMAL_VALUE
688
+ * @decimalValue options { gte:0.00, maxScale:2 }
689
+ * @readonly
690
+ */
691
+ platformFee?: string | null;
684
692
  }
685
693
  interface PaymentTaxData {
686
694
  /**