@emilgroup/payment-sdk 1.8.1-beta.0 → 1.9.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 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.8.1-beta.0 --save
20
+ npm install @emilgroup/payment-sdk@1.9.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/payment-sdk@1.8.1-beta.0
24
+ yarn add @emilgroup/payment-sdk@1.9.0
25
25
  ```
26
26
 
27
27
  And then you can import `PaymentsApi`.
@@ -40,11 +40,11 @@ export interface BankTransactionClassWithoutExpandProperties {
40
40
  */
41
41
  'bankAccountNumber': string;
42
42
  /**
43
- * Reference number derived from the MT940 or CAMT file
43
+ * Reference number derived from the MT940 swift Insturctions
44
44
  * @type {string}
45
45
  * @memberof BankTransactionClassWithoutExpandProperties
46
46
  */
47
- 'messageReference'?: string;
47
+ 'swiftMessageReference'?: string;
48
48
  /**
49
49
  * Currency of the transaction.
50
50
  * @type {string}
@@ -105,12 +105,6 @@ 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;
114
108
  /**
115
109
  * Time at which the object was created.
116
110
  * @type {string}
@@ -42,11 +42,11 @@ export interface BankTransactionClass {
42
42
  */
43
43
  'bankAccountNumber': string;
44
44
  /**
45
- * Reference number derived from the MT940 or CAMT file
45
+ * Reference number derived from the MT940 swift Insturctions
46
46
  * @type {string}
47
47
  * @memberof BankTransactionClass
48
48
  */
49
- 'messageReference'?: string;
49
+ 'swiftMessageReference'?: string;
50
50
  /**
51
51
  * Currency of the transaction.
52
52
  * @type {string}
@@ -119,12 +119,6 @@ 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;
128
122
  /**
129
123
  * Time at which the object was created.
130
124
  * @type {string}
@@ -40,11 +40,11 @@ export interface UnlinkedBankTransactionResponseClass {
40
40
  */
41
41
  'bankAccountNumber': string;
42
42
  /**
43
- * Reference number derived from the MT940 or CAMT file
43
+ * Reference number derived from the MT940 swift Insturctions
44
44
  * @type {string}
45
45
  * @memberof UnlinkedBankTransactionResponseClass
46
46
  */
47
- 'messageReference'?: string;
47
+ 'swiftMessageReference'?: string;
48
48
  /**
49
49
  * Currency of the transaction.
50
50
  * @type {string}
@@ -87,12 +87,6 @@ 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;
96
90
  /**
97
91
  * Time at which the object was created.
98
92
  * @type {string}
@@ -45,11 +45,11 @@ export interface BankTransactionClassWithoutExpandProperties {
45
45
  */
46
46
  'bankAccountNumber': string;
47
47
  /**
48
- * Reference number derived from the MT940 or CAMT file
48
+ * Reference number derived from the MT940 swift Insturctions
49
49
  * @type {string}
50
50
  * @memberof BankTransactionClassWithoutExpandProperties
51
51
  */
52
- 'messageReference'?: string;
52
+ 'swiftMessageReference'?: string;
53
53
  /**
54
54
  * Currency of the transaction.
55
55
  * @type {string}
@@ -110,12 +110,6 @@ 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;
119
113
  /**
120
114
  * Time at which the object was created.
121
115
  * @type {string}
@@ -47,11 +47,11 @@ export interface BankTransactionClass {
47
47
  */
48
48
  'bankAccountNumber': string;
49
49
  /**
50
- * Reference number derived from the MT940 or CAMT file
50
+ * Reference number derived from the MT940 swift Insturctions
51
51
  * @type {string}
52
52
  * @memberof BankTransactionClass
53
53
  */
54
- 'messageReference'?: string;
54
+ 'swiftMessageReference'?: string;
55
55
  /**
56
56
  * Currency of the transaction.
57
57
  * @type {string}
@@ -124,12 +124,6 @@ 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;
133
127
  /**
134
128
  * Time at which the object was created.
135
129
  * @type {string}
@@ -45,11 +45,11 @@ export interface UnlinkedBankTransactionResponseClass {
45
45
  */
46
46
  'bankAccountNumber': string;
47
47
  /**
48
- * Reference number derived from the MT940 or CAMT file
48
+ * Reference number derived from the MT940 swift Insturctions
49
49
  * @type {string}
50
50
  * @memberof UnlinkedBankTransactionResponseClass
51
51
  */
52
- 'messageReference'?: string;
52
+ 'swiftMessageReference'?: string;
53
53
  /**
54
54
  * Currency of the transaction.
55
55
  * @type {string}
@@ -92,12 +92,6 @@ 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;
101
95
  /**
102
96
  * Time at which the object was created.
103
97
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/payment-sdk",
3
- "version": "1.8.1-beta.0",
3
+ "version": "1.9.0",
4
4
  "description": "OpenAPI client for @emilgroup/payment-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [