@emilgroup/payment-sdk 1.6.1-beta.2 → 1.6.1-beta.4
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/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/payment-sdk@1.6.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.6.1-beta.4 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.6.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.6.1-beta.4
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -15,30 +15,6 @@
|
|
|
15
15
|
* @interface CompleteAdyenPaymentSetupRequestDto
|
|
16
16
|
*/
|
|
17
17
|
export interface CompleteAdyenPaymentSetupRequestDto {
|
|
18
|
-
/**
|
|
19
|
-
* Account email address
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
22
|
-
*/
|
|
23
|
-
'email': string;
|
|
24
|
-
/**
|
|
25
|
-
* Account first name
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
28
|
-
*/
|
|
29
|
-
'firstName': string;
|
|
30
|
-
/**
|
|
31
|
-
* Account last name
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
34
|
-
*/
|
|
35
|
-
'lastName': string;
|
|
36
|
-
/**
|
|
37
|
-
* Unique identifier of the lead that this object belongs to.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
40
|
-
*/
|
|
41
|
-
'leadCode'?: string;
|
|
42
18
|
/**
|
|
43
19
|
* Unique identifier for the shopper on Adyen.
|
|
44
20
|
* @type {string}
|
|
@@ -57,6 +33,12 @@ export interface CompleteAdyenPaymentSetupRequestDto {
|
|
|
57
33
|
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
58
34
|
*/
|
|
59
35
|
'paymentMethodType'?: CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the lead that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'leadCode'?: string;
|
|
60
42
|
}
|
|
61
43
|
export declare const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum: {
|
|
62
44
|
readonly Paypal: "paypal";
|
|
@@ -20,30 +20,6 @@
|
|
|
20
20
|
* @interface CompleteAdyenPaymentSetupRequestDto
|
|
21
21
|
*/
|
|
22
22
|
export interface CompleteAdyenPaymentSetupRequestDto {
|
|
23
|
-
/**
|
|
24
|
-
* Account email address
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
27
|
-
*/
|
|
28
|
-
'email': string;
|
|
29
|
-
/**
|
|
30
|
-
* Account first name
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
33
|
-
*/
|
|
34
|
-
'firstName': string;
|
|
35
|
-
/**
|
|
36
|
-
* Account last name
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
39
|
-
*/
|
|
40
|
-
'lastName': string;
|
|
41
|
-
/**
|
|
42
|
-
* Unique identifier of the lead that this object belongs to.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
45
|
-
*/
|
|
46
|
-
'leadCode'?: string;
|
|
47
23
|
/**
|
|
48
24
|
* Unique identifier for the shopper on Adyen.
|
|
49
25
|
* @type {string}
|
|
@@ -62,6 +38,12 @@ export interface CompleteAdyenPaymentSetupRequestDto {
|
|
|
62
38
|
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
63
39
|
*/
|
|
64
40
|
'paymentMethodType'?: CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier of the lead that this object belongs to.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof CompleteAdyenPaymentSetupRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'leadCode'?: string;
|
|
65
47
|
}
|
|
66
48
|
|
|
67
49
|
export const CompleteAdyenPaymentSetupRequestDtoPaymentMethodTypeEnum = {
|