@emilgroup/payment-sdk 1.14.1-beta.60 → 1.14.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 +2 -2
- package/dist/models/bank-order-class.d.ts +3 -3
- package/dist/models/create-bank-order-request-dto.d.ts +3 -3
- package/dist/models/update-bank-order-request-dto.d.ts +3 -3
- package/models/bank-order-class.ts +3 -3
- package/models/create-bank-order-request-dto.ts +3 -3
- package/models/update-bank-order-request-dto.ts +3 -3
- 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@1.14.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.14.1-beta.62 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.14.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.14.1-beta.62
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -66,11 +66,11 @@ export interface BankOrderClass {
|
|
|
66
66
|
*/
|
|
67
67
|
'financialAccountCode': string;
|
|
68
68
|
/**
|
|
69
|
-
* List of
|
|
70
|
-
* @type {Array<
|
|
69
|
+
* List of entity codes associated with bank order.
|
|
70
|
+
* @type {Array<string>}
|
|
71
71
|
* @memberof BankOrderClass
|
|
72
72
|
*/
|
|
73
|
-
'
|
|
73
|
+
'entityCodes': Array<string>;
|
|
74
74
|
/**
|
|
75
75
|
* Day of execution of bank order.
|
|
76
76
|
* @type {string}
|
|
@@ -40,11 +40,11 @@ export interface CreateBankOrderRequestDto {
|
|
|
40
40
|
*/
|
|
41
41
|
'financialAccountCode': string;
|
|
42
42
|
/**
|
|
43
|
-
* List of
|
|
44
|
-
* @type {Array<
|
|
43
|
+
* List of entity codes associated with bank order.
|
|
44
|
+
* @type {Array<string>}
|
|
45
45
|
* @memberof CreateBankOrderRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'entityCodes': Array<string>;
|
|
48
48
|
/**
|
|
49
49
|
* Day of execution of bank order.
|
|
50
50
|
* @type {string}
|
|
@@ -34,11 +34,11 @@ export interface UpdateBankOrderRequestDto {
|
|
|
34
34
|
*/
|
|
35
35
|
'financialAccountCode': string;
|
|
36
36
|
/**
|
|
37
|
-
* List of
|
|
38
|
-
* @type {Array<
|
|
37
|
+
* List of entity codes associated with bank order.
|
|
38
|
+
* @type {Array<string>}
|
|
39
39
|
* @memberof UpdateBankOrderRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'
|
|
41
|
+
'entityCodes': Array<string>;
|
|
42
42
|
/**
|
|
43
43
|
* Day of execution of bank order.
|
|
44
44
|
* @type {string}
|
|
@@ -71,11 +71,11 @@ export interface BankOrderClass {
|
|
|
71
71
|
*/
|
|
72
72
|
'financialAccountCode': string;
|
|
73
73
|
/**
|
|
74
|
-
* List of
|
|
75
|
-
* @type {Array<
|
|
74
|
+
* List of entity codes associated with bank order.
|
|
75
|
+
* @type {Array<string>}
|
|
76
76
|
* @memberof BankOrderClass
|
|
77
77
|
*/
|
|
78
|
-
'
|
|
78
|
+
'entityCodes': Array<string>;
|
|
79
79
|
/**
|
|
80
80
|
* Day of execution of bank order.
|
|
81
81
|
* @type {string}
|
|
@@ -45,11 +45,11 @@ export interface CreateBankOrderRequestDto {
|
|
|
45
45
|
*/
|
|
46
46
|
'financialAccountCode': string;
|
|
47
47
|
/**
|
|
48
|
-
* List of
|
|
49
|
-
* @type {Array<
|
|
48
|
+
* List of entity codes associated with bank order.
|
|
49
|
+
* @type {Array<string>}
|
|
50
50
|
* @memberof CreateBankOrderRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'entityCodes': Array<string>;
|
|
53
53
|
/**
|
|
54
54
|
* Day of execution of bank order.
|
|
55
55
|
* @type {string}
|
|
@@ -39,11 +39,11 @@ export interface UpdateBankOrderRequestDto {
|
|
|
39
39
|
*/
|
|
40
40
|
'financialAccountCode': string;
|
|
41
41
|
/**
|
|
42
|
-
* List of
|
|
43
|
-
* @type {Array<
|
|
42
|
+
* List of entity codes associated with bank order.
|
|
43
|
+
* @type {Array<string>}
|
|
44
44
|
* @memberof UpdateBankOrderRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'entityCodes': Array<string>;
|
|
47
47
|
/**
|
|
48
48
|
* Day of execution of bank order.
|
|
49
49
|
* @type {string}
|