@emilgroup/payment-sdk 1.9.0 → 1.11.1-beta.0
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/base.ts +1 -0
- package/dist/base.d.ts +1 -0
- package/dist/base.js +1 -0
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +8 -2
- package/dist/models/bank-transaction-class.d.ts +8 -2
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +8 -2
- package/models/bank-transaction-class-without-expand-properties.ts +8 -2
- package/models/bank-transaction-class.ts +8 -2
- package/models/unlinked-bank-transaction-response-class.ts +8 -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@1.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.11.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.11.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
package/base.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface LoginClass {
|
|
|
40
40
|
export enum Environment {
|
|
41
41
|
Production = 'https://apiv2.emil.de',
|
|
42
42
|
Test = 'https://apiv2-test.emil.de',
|
|
43
|
+
Staging = 'https://apiv2-staging.emil.de',
|
|
43
44
|
Development = 'https://apiv2-dev.emil.de',
|
|
44
45
|
ProductionZurich = 'https://eu-central-2.apiv2.emil.de',
|
|
45
46
|
}
|
package/dist/base.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export interface LoginClass {
|
|
|
29
29
|
export declare enum Environment {
|
|
30
30
|
Production = "https://apiv2.emil.de",
|
|
31
31
|
Test = "https://apiv2-test.emil.de",
|
|
32
|
+
Staging = "https://apiv2-staging.emil.de",
|
|
32
33
|
Development = "https://apiv2-dev.emil.de",
|
|
33
34
|
ProductionZurich = "https://eu-central-2.apiv2.emil.de"
|
|
34
35
|
}
|
package/dist/base.js
CHANGED
|
@@ -99,6 +99,7 @@ var Environment;
|
|
|
99
99
|
(function (Environment) {
|
|
100
100
|
Environment["Production"] = "https://apiv2.emil.de";
|
|
101
101
|
Environment["Test"] = "https://apiv2-test.emil.de";
|
|
102
|
+
Environment["Staging"] = "https://apiv2-staging.emil.de";
|
|
102
103
|
Environment["Development"] = "https://apiv2-dev.emil.de";
|
|
103
104
|
Environment["ProductionZurich"] = "https://eu-central-2.apiv2.emil.de";
|
|
104
105
|
})(Environment = exports.Environment || (exports.Environment = {}));
|
|
@@ -40,11 +40,11 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
40
40
|
*/
|
|
41
41
|
'bankAccountNumber': string;
|
|
42
42
|
/**
|
|
43
|
-
* Reference number derived from the MT940
|
|
43
|
+
* Reference number derived from the MT940 or CAMT file
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'messageReference'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Currency of the transaction.
|
|
50
50
|
* @type {string}
|
|
@@ -105,6 +105,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
105
105
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
106
106
|
*/
|
|
107
107
|
'isLinked': boolean;
|
|
108
|
+
/**
|
|
109
|
+
* The file format of the bank transaction
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
112
|
+
*/
|
|
113
|
+
'importedFrom': string;
|
|
108
114
|
/**
|
|
109
115
|
* Time at which the object was created.
|
|
110
116
|
* @type {string}
|
|
@@ -42,11 +42,11 @@ export interface BankTransactionClass {
|
|
|
42
42
|
*/
|
|
43
43
|
'bankAccountNumber': string;
|
|
44
44
|
/**
|
|
45
|
-
* Reference number derived from the MT940
|
|
45
|
+
* Reference number derived from the MT940 or CAMT file
|
|
46
46
|
* @type {string}
|
|
47
47
|
* @memberof BankTransactionClass
|
|
48
48
|
*/
|
|
49
|
-
'
|
|
49
|
+
'messageReference'?: string;
|
|
50
50
|
/**
|
|
51
51
|
* Currency of the transaction.
|
|
52
52
|
* @type {string}
|
|
@@ -119,6 +119,12 @@ export interface BankTransactionClass {
|
|
|
119
119
|
* @memberof BankTransactionClass
|
|
120
120
|
*/
|
|
121
121
|
'linkedTransaction'?: SharedTransactionClass;
|
|
122
|
+
/**
|
|
123
|
+
* The file format of the bank transaction
|
|
124
|
+
* @type {string}
|
|
125
|
+
* @memberof BankTransactionClass
|
|
126
|
+
*/
|
|
127
|
+
'importedFrom': string;
|
|
122
128
|
/**
|
|
123
129
|
* Time at which the object was created.
|
|
124
130
|
* @type {string}
|
|
@@ -40,11 +40,11 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
40
40
|
*/
|
|
41
41
|
'bankAccountNumber': string;
|
|
42
42
|
/**
|
|
43
|
-
* Reference number derived from the MT940
|
|
43
|
+
* Reference number derived from the MT940 or CAMT file
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
46
46
|
*/
|
|
47
|
-
'
|
|
47
|
+
'messageReference'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Currency of the transaction.
|
|
50
50
|
* @type {string}
|
|
@@ -87,6 +87,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
87
87
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
88
88
|
*/
|
|
89
89
|
'isLinked': boolean;
|
|
90
|
+
/**
|
|
91
|
+
* The file format of the bank transaction
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
94
|
+
*/
|
|
95
|
+
'importedFrom': string;
|
|
90
96
|
/**
|
|
91
97
|
* Time at which the object was created.
|
|
92
98
|
* @type {string}
|
|
@@ -45,11 +45,11 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
45
45
|
*/
|
|
46
46
|
'bankAccountNumber': string;
|
|
47
47
|
/**
|
|
48
|
-
* Reference number derived from the MT940
|
|
48
|
+
* Reference number derived from the MT940 or CAMT file
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'messageReference'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Currency of the transaction.
|
|
55
55
|
* @type {string}
|
|
@@ -110,6 +110,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
110
110
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
111
111
|
*/
|
|
112
112
|
'isLinked': boolean;
|
|
113
|
+
/**
|
|
114
|
+
* The file format of the bank transaction
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
117
|
+
*/
|
|
118
|
+
'importedFrom': string;
|
|
113
119
|
/**
|
|
114
120
|
* Time at which the object was created.
|
|
115
121
|
* @type {string}
|
|
@@ -47,11 +47,11 @@ export interface BankTransactionClass {
|
|
|
47
47
|
*/
|
|
48
48
|
'bankAccountNumber': string;
|
|
49
49
|
/**
|
|
50
|
-
* Reference number derived from the MT940
|
|
50
|
+
* Reference number derived from the MT940 or CAMT file
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof BankTransactionClass
|
|
53
53
|
*/
|
|
54
|
-
'
|
|
54
|
+
'messageReference'?: string;
|
|
55
55
|
/**
|
|
56
56
|
* Currency of the transaction.
|
|
57
57
|
* @type {string}
|
|
@@ -124,6 +124,12 @@ export interface BankTransactionClass {
|
|
|
124
124
|
* @memberof BankTransactionClass
|
|
125
125
|
*/
|
|
126
126
|
'linkedTransaction'?: SharedTransactionClass;
|
|
127
|
+
/**
|
|
128
|
+
* The file format of the bank transaction
|
|
129
|
+
* @type {string}
|
|
130
|
+
* @memberof BankTransactionClass
|
|
131
|
+
*/
|
|
132
|
+
'importedFrom': string;
|
|
127
133
|
/**
|
|
128
134
|
* Time at which the object was created.
|
|
129
135
|
* @type {string}
|
|
@@ -45,11 +45,11 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
45
45
|
*/
|
|
46
46
|
'bankAccountNumber': string;
|
|
47
47
|
/**
|
|
48
|
-
* Reference number derived from the MT940
|
|
48
|
+
* Reference number derived from the MT940 or CAMT file
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
51
51
|
*/
|
|
52
|
-
'
|
|
52
|
+
'messageReference'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Currency of the transaction.
|
|
55
55
|
* @type {string}
|
|
@@ -92,6 +92,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
92
92
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
93
93
|
*/
|
|
94
94
|
'isLinked': boolean;
|
|
95
|
+
/**
|
|
96
|
+
* The file format of the bank transaction
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
99
|
+
*/
|
|
100
|
+
'importedFrom': string;
|
|
95
101
|
/**
|
|
96
102
|
* Time at which the object was created.
|
|
97
103
|
* @type {string}
|