@osovitny/anatoly 3.17.127 → 3.17.128
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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { IQueryParam } from '../../core/models/qs';
|
|
2
2
|
export interface IPayPalConfig {
|
|
3
|
-
debug?: boolean;
|
|
4
3
|
/**
|
|
5
4
|
* Currency - Defaults to USD if not provided
|
|
6
5
|
*/
|
|
@@ -76,10 +75,10 @@ export interface IPayPalConfig {
|
|
|
76
75
|
vault?: TrueFalse;
|
|
77
76
|
intent?: OrderIntent;
|
|
78
77
|
fundingSource?: "PAYPAL" | "CARD" | "PAYLATER" | "CREDIT" | "VENMO";
|
|
78
|
+
debug?: boolean;
|
|
79
79
|
}
|
|
80
80
|
export type TrueFalse = "true" | "false";
|
|
81
81
|
export interface IPayPalUrlConfig {
|
|
82
|
-
debug?: boolean;
|
|
83
82
|
clientId: string;
|
|
84
83
|
currency?: string;
|
|
85
84
|
funding?: boolean;
|
|
@@ -88,6 +87,7 @@ export interface IPayPalUrlConfig {
|
|
|
88
87
|
intent?: OrderIntent;
|
|
89
88
|
locale?: string;
|
|
90
89
|
extraParams?: IQueryParam[];
|
|
90
|
+
debug?: boolean;
|
|
91
91
|
}
|
|
92
92
|
export interface IOrderDetails {
|
|
93
93
|
create_time: string;
|