@emilgroup/payment-sdk-node 1.23.1-beta.72 → 1.23.1-beta.73
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-node@1.23.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk-node@1.23.1-beta.73 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk-node@1.23.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk-node@1.23.1-beta.73
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -75,6 +75,12 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
75
75
|
* @memberof CreatePaymentRequestRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'settlementCode'?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Code of the partner the payment request was created for.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'partnerCode': string;
|
|
78
84
|
/**
|
|
79
85
|
* Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
|
|
80
86
|
* @type {string}
|
|
@@ -100,6 +100,12 @@ export interface PaymentRequestClass {
|
|
|
100
100
|
* @memberof PaymentRequestClass
|
|
101
101
|
*/
|
|
102
102
|
'settlementCode'?: string;
|
|
103
|
+
/**
|
|
104
|
+
* Code of the partner the payment request was created for.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof PaymentRequestClass
|
|
107
|
+
*/
|
|
108
|
+
'partnerCode': string;
|
|
103
109
|
/**
|
|
104
110
|
* Code of the payment method used for this payment request.
|
|
105
111
|
* @type {string}
|
|
@@ -80,6 +80,12 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
80
80
|
* @memberof CreatePaymentRequestRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'settlementCode'?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Code of the partner the payment request was created for.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreatePaymentRequestRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'partnerCode': string;
|
|
83
89
|
/**
|
|
84
90
|
* Code of the payment method to be used for this payment request. If not provided, a default payment method may be selected.
|
|
85
91
|
* @type {string}
|
|
@@ -105,6 +105,12 @@ export interface PaymentRequestClass {
|
|
|
105
105
|
* @memberof PaymentRequestClass
|
|
106
106
|
*/
|
|
107
107
|
'settlementCode'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* Code of the partner the payment request was created for.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof PaymentRequestClass
|
|
112
|
+
*/
|
|
113
|
+
'partnerCode': string;
|
|
108
114
|
/**
|
|
109
115
|
* Code of the payment method used for this payment request.
|
|
110
116
|
* @type {string}
|