@osovitny/anatoly 3.17.126 → 3.17.127
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/esm2022/lib/billing/components/pm/paypal/paypal-button.component.mjs +2 -2
- package/esm2022/lib/billing/components/pm/paypal/paypal-subscribe-button.component.mjs +3 -2
- package/esm2022/lib/billing/components/pm/paypal/paypal.component.mjs +2 -1
- package/esm2022/lib/billing/models/paypal-models.mjs +1 -1
- package/fesm2022/osovitny-anatoly.mjs +4 -2
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/billing/components/index.d.ts +1 -1
- package/lib/billing/models/paypal-models.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, OrderSummaryComponent, PaymentMethodsComponent, PaymentOptionsComponent, BraintreeDialog, PaypalButtonComponent, PaypalSubscribeButtonComponent, PayPalComponent, StripeDialog } from "./exports";
|
|
2
|
-
export declare const COMPONENTS: (typeof
|
|
2
|
+
export declare const COMPONENTS: (typeof PayPalComponent | typeof PaypalSubscribeButtonComponent | typeof PaypalButtonComponent | typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof OrderSummaryComponent | typeof PaymentMethodsComponent | typeof PaymentOptionsComponent | typeof BraintreeDialog | typeof StripeDialog)[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { IQueryParam } from '../../core/models/qs';
|
|
2
2
|
export interface IPayPalConfig {
|
|
3
|
+
debug?: boolean;
|
|
3
4
|
/**
|
|
4
5
|
* Currency - Defaults to USD if not provided
|
|
5
6
|
*/
|
|
@@ -78,6 +79,7 @@ export interface IPayPalConfig {
|
|
|
78
79
|
}
|
|
79
80
|
export type TrueFalse = "true" | "false";
|
|
80
81
|
export interface IPayPalUrlConfig {
|
|
82
|
+
debug?: boolean;
|
|
81
83
|
clientId: string;
|
|
82
84
|
currency?: string;
|
|
83
85
|
funding?: boolean;
|