@emilgroup/payment-sdk-node 1.23.1-beta.58 → 1.23.1-beta.62
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.62 --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.62
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -83,10 +83,12 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
83
83
|
'paymentMethodCode'?: string;
|
|
84
84
|
/**
|
|
85
85
|
* Optional field containing extra information about the payment request.
|
|
86
|
-
* @type {object}
|
|
86
|
+
* @type {{ [key: string]: object; }}
|
|
87
87
|
* @memberof CreatePaymentRequestRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'metadata'?:
|
|
89
|
+
'metadata'?: {
|
|
90
|
+
[key: string]: object;
|
|
91
|
+
};
|
|
90
92
|
}
|
|
91
93
|
export declare const CreatePaymentRequestRequestDtoDirectionEnum: {
|
|
92
94
|
readonly Collect: "collect";
|
|
@@ -120,10 +120,12 @@ export interface PaymentRequestClass {
|
|
|
120
120
|
'paymentMethodPsp'?: string;
|
|
121
121
|
/**
|
|
122
122
|
* Optional field containing extra information about the payment request.
|
|
123
|
-
* @type {object}
|
|
123
|
+
* @type {{ [key: string]: object; }}
|
|
124
124
|
* @memberof PaymentRequestClass
|
|
125
125
|
*/
|
|
126
|
-
'metadata'?:
|
|
126
|
+
'metadata'?: {
|
|
127
|
+
[key: string]: object;
|
|
128
|
+
};
|
|
127
129
|
/**
|
|
128
130
|
* The list of payment receipts.
|
|
129
131
|
* @type {Array<PaymentReceiptClass>}
|
|
@@ -88,10 +88,10 @@ export interface CreatePaymentRequestRequestDto {
|
|
|
88
88
|
'paymentMethodCode'?: string;
|
|
89
89
|
/**
|
|
90
90
|
* Optional field containing extra information about the payment request.
|
|
91
|
-
* @type {object}
|
|
91
|
+
* @type {{ [key: string]: object; }}
|
|
92
92
|
* @memberof CreatePaymentRequestRequestDto
|
|
93
93
|
*/
|
|
94
|
-
'metadata'?: object;
|
|
94
|
+
'metadata'?: { [key: string]: object; };
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
export const CreatePaymentRequestRequestDtoDirectionEnum = {
|
|
@@ -125,10 +125,10 @@ export interface PaymentRequestClass {
|
|
|
125
125
|
'paymentMethodPsp'?: string;
|
|
126
126
|
/**
|
|
127
127
|
* Optional field containing extra information about the payment request.
|
|
128
|
-
* @type {object}
|
|
128
|
+
* @type {{ [key: string]: object; }}
|
|
129
129
|
* @memberof PaymentRequestClass
|
|
130
130
|
*/
|
|
131
|
-
'metadata'?: object;
|
|
131
|
+
'metadata'?: { [key: string]: object; };
|
|
132
132
|
/**
|
|
133
133
|
* The list of payment receipts.
|
|
134
134
|
* @type {Array<PaymentReceiptClass>}
|