@spot-flow/checkout-inline-js 0.3.3 → 0.3.4-dev.1

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.
@@ -41,7 +41,7 @@ export declare class MerchantConfigService extends BaseService {
41
41
  * @param planId this is the planId for the subscriptions
42
42
  * @returns {Promise<GetMerchantPlanDetail>}
43
43
  */
44
- getMerchantConfig(planId: string, currency: string, subscriptionId?: string): Promise<GetMerchantPlanDetail>;
44
+ getMerchantConfig(planId: string, currency: string, subscriptionId?: string, enableDiscount?: boolean): Promise<GetMerchantPlanDetail>;
45
45
  }
46
46
  type BankServiceProps = Props;
47
47
  export declare class BankService extends BaseService {
@@ -31,6 +31,7 @@ declare class CheckoutForm {
31
31
  rawPaymentMethodTexts: Record<string, string>;
32
32
  currentLanguage: string;
33
33
  subscriptionId?: string;
34
+ enableDiscount?: boolean;
34
35
  constructor();
35
36
  closePayment(): void;
36
37
  getDeviceType(): "Mobile" | "Tablet" | "Desktop";