@emilgroup/payment-sdk-node 1.23.1-beta.40 → 1.23.1-beta.41
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 +2 -2
- package/dist/models/payment-request-class.d.ts +2 -2
- package/dist/models/payment-request-class.js +1 -1
- package/dist/models/update-payment-request-request-dto.d.ts +2 -2
- package/dist/models/update-payment-request-request-dto.js +1 -1
- package/models/payment-request-class.ts +2 -2
- package/models/update-payment-request-request-dto.ts +2 -2
- package/package.json +1 -1
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.41 --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.41
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -89,7 +89,7 @@ export interface PaymentRequestClass {
|
|
|
89
89
|
*/
|
|
90
90
|
'domainEntityType': PaymentRequestClassDomainEntityTypeEnum;
|
|
91
91
|
/**
|
|
92
|
-
* Current status of the payment request. Valid statuses: open, approved, pending,
|
|
92
|
+
* Current status of the payment request. Valid statuses: open, approved, pending, paid, failed, withdrawn.
|
|
93
93
|
* @type {string}
|
|
94
94
|
* @memberof PaymentRequestClass
|
|
95
95
|
*/
|
|
@@ -146,7 +146,7 @@ export declare const PaymentRequestClassStatusEnum: {
|
|
|
146
146
|
readonly Open: "open";
|
|
147
147
|
readonly Approved: "approved";
|
|
148
148
|
readonly Pending: "pending";
|
|
149
|
-
readonly
|
|
149
|
+
readonly Paid: "paid";
|
|
150
150
|
readonly Failed: "failed";
|
|
151
151
|
readonly Withdrawn: "withdrawn";
|
|
152
152
|
};
|
|
@@ -22,7 +22,7 @@ export interface UpdatePaymentRequestRequestDto {
|
|
|
22
22
|
*/
|
|
23
23
|
'code': string;
|
|
24
24
|
/**
|
|
25
|
-
* New status for the payment request. Valid statuses: open, approved, pending,
|
|
25
|
+
* New status for the payment request. Valid statuses: open, approved, pending, paid, failed, withdrawn
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof UpdatePaymentRequestRequestDto
|
|
28
28
|
*/
|
|
@@ -32,7 +32,7 @@ export declare const UpdatePaymentRequestRequestDtoStatusEnum: {
|
|
|
32
32
|
readonly Open: "open";
|
|
33
33
|
readonly Approved: "approved";
|
|
34
34
|
readonly Pending: "pending";
|
|
35
|
-
readonly
|
|
35
|
+
readonly Paid: "paid";
|
|
36
36
|
readonly Failed: "failed";
|
|
37
37
|
readonly Withdrawn: "withdrawn";
|
|
38
38
|
};
|
|
@@ -94,7 +94,7 @@ export interface PaymentRequestClass {
|
|
|
94
94
|
*/
|
|
95
95
|
'domainEntityType': PaymentRequestClassDomainEntityTypeEnum;
|
|
96
96
|
/**
|
|
97
|
-
* Current status of the payment request. Valid statuses: open, approved, pending,
|
|
97
|
+
* Current status of the payment request. Valid statuses: open, approved, pending, paid, failed, withdrawn.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof PaymentRequestClass
|
|
100
100
|
*/
|
|
@@ -155,7 +155,7 @@ export const PaymentRequestClassStatusEnum = {
|
|
|
155
155
|
Open: 'open',
|
|
156
156
|
Approved: 'approved',
|
|
157
157
|
Pending: 'pending',
|
|
158
|
-
|
|
158
|
+
Paid: 'paid',
|
|
159
159
|
Failed: 'failed',
|
|
160
160
|
Withdrawn: 'withdrawn'
|
|
161
161
|
} as const;
|
|
@@ -27,7 +27,7 @@ export interface UpdatePaymentRequestRequestDto {
|
|
|
27
27
|
*/
|
|
28
28
|
'code': string;
|
|
29
29
|
/**
|
|
30
|
-
* New status for the payment request. Valid statuses: open, approved, pending,
|
|
30
|
+
* New status for the payment request. Valid statuses: open, approved, pending, paid, failed, withdrawn
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof UpdatePaymentRequestRequestDto
|
|
33
33
|
*/
|
|
@@ -38,7 +38,7 @@ export const UpdatePaymentRequestRequestDtoStatusEnum = {
|
|
|
38
38
|
Open: 'open',
|
|
39
39
|
Approved: 'approved',
|
|
40
40
|
Pending: 'pending',
|
|
41
|
-
|
|
41
|
+
Paid: 'paid',
|
|
42
42
|
Failed: 'failed',
|
|
43
43
|
Withdrawn: 'withdrawn'
|
|
44
44
|
} as const;
|