@emilgroup/payment-sdk 1.13.1-beta.36 → 1.13.1-beta.38
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.13.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.13.1-beta.38 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.13.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.13.1-beta.38
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -16,19 +16,19 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface CompleteEisPaymentSetupRequestDto {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Unique identifier of the account that this object belongs to.
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
22
22
|
*/
|
|
23
23
|
'accountCode'?: string;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Unique identifier of the partner that this object belongs to.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
28
28
|
*/
|
|
29
29
|
'partnerCode'?: string;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Unique identifier of the lead that this object belongs to.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
34
34
|
*/
|
|
@@ -75,6 +75,12 @@ export interface PaymentMethodClass {
|
|
|
75
75
|
* @memberof PaymentMethodClass
|
|
76
76
|
*/
|
|
77
77
|
'details'?: object;
|
|
78
|
+
/**
|
|
79
|
+
* The account PSP customer associated to this payment method.
|
|
80
|
+
* @type {object}
|
|
81
|
+
* @memberof PaymentMethodClass
|
|
82
|
+
*/
|
|
83
|
+
'accountPspCustomer'?: object;
|
|
78
84
|
/**
|
|
79
85
|
* Optional field contain extra information
|
|
80
86
|
* @type {object}
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
*/
|
|
22
22
|
export interface CompleteEisPaymentSetupRequestDto {
|
|
23
23
|
/**
|
|
24
|
-
*
|
|
24
|
+
* Unique identifier of the account that this object belongs to.
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
27
27
|
*/
|
|
28
28
|
'accountCode'?: string;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
30
|
+
* Unique identifier of the partner that this object belongs to.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
33
33
|
*/
|
|
34
34
|
'partnerCode'?: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* Unique identifier of the lead that this object belongs to.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CompleteEisPaymentSetupRequestDto
|
|
39
39
|
*/
|
|
@@ -80,6 +80,12 @@ export interface PaymentMethodClass {
|
|
|
80
80
|
* @memberof PaymentMethodClass
|
|
81
81
|
*/
|
|
82
82
|
'details'?: object;
|
|
83
|
+
/**
|
|
84
|
+
* The account PSP customer associated to this payment method.
|
|
85
|
+
* @type {object}
|
|
86
|
+
* @memberof PaymentMethodClass
|
|
87
|
+
*/
|
|
88
|
+
'accountPspCustomer'?: object;
|
|
83
89
|
/**
|
|
84
90
|
* Optional field contain extra information
|
|
85
91
|
* @type {object}
|