@emilgroup/payment-sdk-node 1.21.1-beta.8 → 1.21.1-beta.9
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/.openapi-generator/FILES +3 -0
- package/README.md +2 -2
- package/api/bank-transaction-api.ts +131 -28
- package/base.ts +1 -1
- package/dist/api/bank-transaction-api.d.ts +84 -28
- package/dist/api/bank-transaction-api.js +114 -22
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +8 -2
- package/dist/models/bank-transaction-class.d.ts +22 -2
- package/dist/models/generate-invoice-match-suggestions-response-class.d.ts +25 -0
- package/dist/models/generate-invoice-match-suggestions-response-class.js +15 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/invoice-match-suggestion-class.d.ts +60 -0
- package/dist/models/invoice-match-suggestion-class.js +15 -0
- package/dist/models/suggestion-generation-progress-class.d.ts +43 -0
- package/dist/models/suggestion-generation-progress-class.js +22 -0
- 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 +22 -2
- package/models/generate-invoice-match-suggestions-response-class.ts +31 -0
- package/models/index.ts +3 -0
- package/models/invoice-match-suggestion-class.ts +66 -0
- package/models/suggestion-generation-progress-class.ts +52 -0
- package/models/unlinked-bank-transaction-response-class.ts +8 -2
- package/package.json +1 -1
- package/tsconfig.json +1 -0
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { GenerateInvoiceMatchSuggestionsResponseClass } from '../models';
|
|
15
16
|
import { GetBankTransactionsResponseClass } from '../models';
|
|
16
17
|
import { ImportBankTransactionsResponseClass } from '../models';
|
|
17
18
|
import { LinkBankTransactionRequestDtoRest } from '../models';
|
|
@@ -24,20 +25,29 @@ import { UnlinkBankTransactionsResponseClass } from '../models';
|
|
|
24
25
|
* @export
|
|
25
26
|
*/
|
|
26
27
|
export declare const BankTransactionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
|
+
/**
|
|
29
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
30
|
+
* @summary Invoice Match Suggestion
|
|
31
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
32
|
+
* @param {string} [authorization] Bearer Token
|
|
33
|
+
* @param {*} [options] Override http request option.
|
|
34
|
+
* @throws {RequiredError}
|
|
35
|
+
*/
|
|
36
|
+
generateInvoiceMatchSuggestion: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27
37
|
/**
|
|
28
38
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
29
39
|
* @summary Retrieve the bank transaction
|
|
30
40
|
* @param {string} code
|
|
31
41
|
* @param {string} [authorization] Bearer Token
|
|
32
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
42
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
33
43
|
* @param {*} [options] Override http request option.
|
|
34
44
|
* @throws {RequiredError}
|
|
35
45
|
*/
|
|
36
46
|
getBankTransaction: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
47
|
/**
|
|
38
|
-
* This will import bank transactions from a
|
|
48
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
39
49
|
* @summary Create the bank transactions
|
|
40
|
-
* @param {any} file
|
|
50
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
41
51
|
* @param {string} [authorization] Bearer Token
|
|
42
52
|
* @param {*} [options] Override http request option.
|
|
43
53
|
* @throws {RequiredError}
|
|
@@ -57,11 +67,11 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
57
67
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
58
68
|
* @summary List bank transactions
|
|
59
69
|
* @param {string} [authorization] Bearer Token
|
|
60
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
61
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
70
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
71
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
62
72
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
63
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
64
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
73
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
74
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
65
75
|
* @param {*} [options] Override http request option.
|
|
66
76
|
* @throws {RequiredError}
|
|
67
77
|
*/
|
|
@@ -82,20 +92,29 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
82
92
|
* @export
|
|
83
93
|
*/
|
|
84
94
|
export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
95
|
+
/**
|
|
96
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
97
|
+
* @summary Invoice Match Suggestion
|
|
98
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
99
|
+
* @param {string} [authorization] Bearer Token
|
|
100
|
+
* @param {*} [options] Override http request option.
|
|
101
|
+
* @throws {RequiredError}
|
|
102
|
+
*/
|
|
103
|
+
generateInvoiceMatchSuggestion(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateInvoiceMatchSuggestionsResponseClass>>;
|
|
85
104
|
/**
|
|
86
105
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
87
106
|
* @summary Retrieve the bank transaction
|
|
88
107
|
* @param {string} code
|
|
89
108
|
* @param {string} [authorization] Bearer Token
|
|
90
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
109
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
91
110
|
* @param {*} [options] Override http request option.
|
|
92
111
|
* @throws {RequiredError}
|
|
93
112
|
*/
|
|
94
113
|
getBankTransaction(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBankTransactionsResponseClass>>;
|
|
95
114
|
/**
|
|
96
|
-
* This will import bank transactions from a
|
|
115
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
97
116
|
* @summary Create the bank transactions
|
|
98
|
-
* @param {any} file
|
|
117
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
99
118
|
* @param {string} [authorization] Bearer Token
|
|
100
119
|
* @param {*} [options] Override http request option.
|
|
101
120
|
* @throws {RequiredError}
|
|
@@ -115,11 +134,11 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
115
134
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
116
135
|
* @summary List bank transactions
|
|
117
136
|
* @param {string} [authorization] Bearer Token
|
|
118
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
119
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
137
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
138
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
120
139
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
121
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
122
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
140
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
141
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
123
142
|
* @param {*} [options] Override http request option.
|
|
124
143
|
* @throws {RequiredError}
|
|
125
144
|
*/
|
|
@@ -140,20 +159,29 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
140
159
|
* @export
|
|
141
160
|
*/
|
|
142
161
|
export declare const BankTransactionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
162
|
+
/**
|
|
163
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
164
|
+
* @summary Invoice Match Suggestion
|
|
165
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
166
|
+
* @param {string} [authorization] Bearer Token
|
|
167
|
+
* @param {*} [options] Override http request option.
|
|
168
|
+
* @throws {RequiredError}
|
|
169
|
+
*/
|
|
170
|
+
generateInvoiceMatchSuggestion(code: string, authorization?: string, options?: any): AxiosPromise<GenerateInvoiceMatchSuggestionsResponseClass>;
|
|
143
171
|
/**
|
|
144
172
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
145
173
|
* @summary Retrieve the bank transaction
|
|
146
174
|
* @param {string} code
|
|
147
175
|
* @param {string} [authorization] Bearer Token
|
|
148
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
176
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
149
177
|
* @param {*} [options] Override http request option.
|
|
150
178
|
* @throws {RequiredError}
|
|
151
179
|
*/
|
|
152
180
|
getBankTransaction(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetBankTransactionsResponseClass>;
|
|
153
181
|
/**
|
|
154
|
-
* This will import bank transactions from a
|
|
182
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
155
183
|
* @summary Create the bank transactions
|
|
156
|
-
* @param {any} file
|
|
184
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
157
185
|
* @param {string} [authorization] Bearer Token
|
|
158
186
|
* @param {*} [options] Override http request option.
|
|
159
187
|
* @throws {RequiredError}
|
|
@@ -173,11 +201,11 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
173
201
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
174
202
|
* @summary List bank transactions
|
|
175
203
|
* @param {string} [authorization] Bearer Token
|
|
176
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
177
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
204
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
205
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
178
206
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
179
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
180
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
207
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
208
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
181
209
|
* @param {*} [options] Override http request option.
|
|
182
210
|
* @throws {RequiredError}
|
|
183
211
|
*/
|
|
@@ -193,6 +221,25 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
193
221
|
*/
|
|
194
222
|
unlinkBankTransaction(code: string, unlinkBankTransactionRequestDtoRest: UnlinkBankTransactionRequestDtoRest, authorization?: string, options?: any): AxiosPromise<UnlinkBankTransactionsResponseClass>;
|
|
195
223
|
};
|
|
224
|
+
/**
|
|
225
|
+
* Request parameters for generateInvoiceMatchSuggestion operation in BankTransactionApi.
|
|
226
|
+
* @export
|
|
227
|
+
* @interface BankTransactionApiGenerateInvoiceMatchSuggestionRequest
|
|
228
|
+
*/
|
|
229
|
+
export interface BankTransactionApiGenerateInvoiceMatchSuggestionRequest {
|
|
230
|
+
/**
|
|
231
|
+
* Code of the bank transaction to generate match suggestions for
|
|
232
|
+
* @type {string}
|
|
233
|
+
* @memberof BankTransactionApiGenerateInvoiceMatchSuggestion
|
|
234
|
+
*/
|
|
235
|
+
readonly code: string;
|
|
236
|
+
/**
|
|
237
|
+
* Bearer Token
|
|
238
|
+
* @type {string}
|
|
239
|
+
* @memberof BankTransactionApiGenerateInvoiceMatchSuggestion
|
|
240
|
+
*/
|
|
241
|
+
readonly authorization?: string;
|
|
242
|
+
}
|
|
196
243
|
/**
|
|
197
244
|
* Request parameters for getBankTransaction operation in BankTransactionApi.
|
|
198
245
|
* @export
|
|
@@ -212,7 +259,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
212
259
|
*/
|
|
213
260
|
readonly authorization?: string;
|
|
214
261
|
/**
|
|
215
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
262
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
216
263
|
* @type {string}
|
|
217
264
|
* @memberof BankTransactionApiGetBankTransaction
|
|
218
265
|
*/
|
|
@@ -225,7 +272,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
225
272
|
*/
|
|
226
273
|
export interface BankTransactionApiImportBankTransactionsRequest {
|
|
227
274
|
/**
|
|
228
|
-
*
|
|
275
|
+
* MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
229
276
|
* @type {any}
|
|
230
277
|
* @memberof BankTransactionApiImportBankTransactions
|
|
231
278
|
*/
|
|
@@ -275,13 +322,13 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
275
322
|
*/
|
|
276
323
|
readonly authorization?: string;
|
|
277
324
|
/**
|
|
278
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
325
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
279
326
|
* @type {string}
|
|
280
327
|
* @memberof BankTransactionApiListBankTransactions
|
|
281
328
|
*/
|
|
282
329
|
readonly filter?: string;
|
|
283
330
|
/**
|
|
284
|
-
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
331
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
285
332
|
* @type {string}
|
|
286
333
|
* @memberof BankTransactionApiListBankTransactions
|
|
287
334
|
*/
|
|
@@ -293,13 +340,13 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
293
340
|
*/
|
|
294
341
|
readonly search?: string;
|
|
295
342
|
/**
|
|
296
|
-
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
343
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
297
344
|
* @type {string}
|
|
298
345
|
* @memberof BankTransactionApiListBankTransactions
|
|
299
346
|
*/
|
|
300
347
|
readonly order?: string;
|
|
301
348
|
/**
|
|
302
|
-
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
349
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
303
350
|
* @type {string}
|
|
304
351
|
* @memberof BankTransactionApiListBankTransactions
|
|
305
352
|
*/
|
|
@@ -337,6 +384,15 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
337
384
|
* @extends {BaseAPI}
|
|
338
385
|
*/
|
|
339
386
|
export declare class BankTransactionApi extends BaseAPI {
|
|
387
|
+
/**
|
|
388
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
389
|
+
* @summary Invoice Match Suggestion
|
|
390
|
+
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @throws {RequiredError}
|
|
393
|
+
* @memberof BankTransactionApi
|
|
394
|
+
*/
|
|
395
|
+
generateInvoiceMatchSuggestion(requestParameters: BankTransactionApiGenerateInvoiceMatchSuggestionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateInvoiceMatchSuggestionsResponseClass, any>>;
|
|
340
396
|
/**
|
|
341
397
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
342
398
|
* @summary Retrieve the bank transaction
|
|
@@ -347,7 +403,7 @@ export declare class BankTransactionApi extends BaseAPI {
|
|
|
347
403
|
*/
|
|
348
404
|
getBankTransaction(requestParameters: BankTransactionApiGetBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBankTransactionsResponseClass, any>>;
|
|
349
405
|
/**
|
|
350
|
-
* This will import bank transactions from a
|
|
406
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
351
407
|
* @summary Create the bank transactions
|
|
352
408
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
353
409
|
* @param {*} [options] Override http request option.
|
|
@@ -96,12 +96,60 @@ var FormData = require('form-data');
|
|
|
96
96
|
var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
|
+
/**
|
|
100
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
101
|
+
* @summary Invoice Match Suggestion
|
|
102
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
103
|
+
* @param {string} [authorization] Bearer Token
|
|
104
|
+
* @param {*} [options] Override http request option.
|
|
105
|
+
* @throws {RequiredError}
|
|
106
|
+
*/
|
|
107
|
+
generateInvoiceMatchSuggestion: function (code, authorization, options) {
|
|
108
|
+
if (options === void 0) { options = {}; }
|
|
109
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
110
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
111
|
+
return __generator(this, function (_a) {
|
|
112
|
+
switch (_a.label) {
|
|
113
|
+
case 0:
|
|
114
|
+
// verify required parameter 'code' is not null or undefined
|
|
115
|
+
(0, common_1.assertParamExists)('generateInvoiceMatchSuggestion', 'code', code);
|
|
116
|
+
localVarPath = "/paymentservice/v1/tenant/bank-transactions/{code}/generate-invoice-match-suggestion"
|
|
117
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
118
|
+
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
119
|
+
if (configuration) {
|
|
120
|
+
baseOptions = configuration.baseOptions;
|
|
121
|
+
baseAccessToken = configuration.accessToken;
|
|
122
|
+
}
|
|
123
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
124
|
+
localVarHeaderParameter = {};
|
|
125
|
+
localVarQueryParameter = {};
|
|
126
|
+
// authentication bearer required
|
|
127
|
+
// http bearer authentication required
|
|
128
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
129
|
+
case 1:
|
|
130
|
+
// authentication bearer required
|
|
131
|
+
// http bearer authentication required
|
|
132
|
+
_a.sent();
|
|
133
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
134
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
135
|
+
}
|
|
136
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
137
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
138
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
139
|
+
return [2 /*return*/, {
|
|
140
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
141
|
+
options: localVarRequestOptions,
|
|
142
|
+
}];
|
|
143
|
+
}
|
|
144
|
+
});
|
|
145
|
+
});
|
|
146
|
+
},
|
|
99
147
|
/**
|
|
100
148
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
101
149
|
* @summary Retrieve the bank transaction
|
|
102
150
|
* @param {string} code
|
|
103
151
|
* @param {string} [authorization] Bearer Token
|
|
104
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
152
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
105
153
|
* @param {*} [options] Override http request option.
|
|
106
154
|
* @throws {RequiredError}
|
|
107
155
|
*/
|
|
@@ -149,9 +197,9 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
149
197
|
});
|
|
150
198
|
},
|
|
151
199
|
/**
|
|
152
|
-
* This will import bank transactions from a
|
|
200
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
153
201
|
* @summary Create the bank transactions
|
|
154
|
-
* @param {any} file
|
|
202
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
155
203
|
* @param {string} [authorization] Bearer Token
|
|
156
204
|
* @param {*} [options] Override http request option.
|
|
157
205
|
* @throws {RequiredError}
|
|
@@ -258,11 +306,11 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
258
306
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
259
307
|
* @summary List bank transactions
|
|
260
308
|
* @param {string} [authorization] Bearer Token
|
|
261
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
262
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
309
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
310
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
263
311
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
264
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
265
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
312
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
313
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
266
314
|
* @param {*} [options] Override http request option.
|
|
267
315
|
* @throws {RequiredError}
|
|
268
316
|
*/
|
|
@@ -381,12 +429,33 @@ exports.BankTransactionApiAxiosParamCreator = BankTransactionApiAxiosParamCreato
|
|
|
381
429
|
var BankTransactionApiFp = function (configuration) {
|
|
382
430
|
var localVarAxiosParamCreator = (0, exports.BankTransactionApiAxiosParamCreator)(configuration);
|
|
383
431
|
return {
|
|
432
|
+
/**
|
|
433
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
434
|
+
* @summary Invoice Match Suggestion
|
|
435
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
436
|
+
* @param {string} [authorization] Bearer Token
|
|
437
|
+
* @param {*} [options] Override http request option.
|
|
438
|
+
* @throws {RequiredError}
|
|
439
|
+
*/
|
|
440
|
+
generateInvoiceMatchSuggestion: function (code, authorization, options) {
|
|
441
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
442
|
+
var localVarAxiosArgs;
|
|
443
|
+
return __generator(this, function (_a) {
|
|
444
|
+
switch (_a.label) {
|
|
445
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.generateInvoiceMatchSuggestion(code, authorization, options)];
|
|
446
|
+
case 1:
|
|
447
|
+
localVarAxiosArgs = _a.sent();
|
|
448
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
449
|
+
}
|
|
450
|
+
});
|
|
451
|
+
});
|
|
452
|
+
},
|
|
384
453
|
/**
|
|
385
454
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
386
455
|
* @summary Retrieve the bank transaction
|
|
387
456
|
* @param {string} code
|
|
388
457
|
* @param {string} [authorization] Bearer Token
|
|
389
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
458
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
390
459
|
* @param {*} [options] Override http request option.
|
|
391
460
|
* @throws {RequiredError}
|
|
392
461
|
*/
|
|
@@ -404,9 +473,9 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
404
473
|
});
|
|
405
474
|
},
|
|
406
475
|
/**
|
|
407
|
-
* This will import bank transactions from a
|
|
476
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
408
477
|
* @summary Create the bank transactions
|
|
409
|
-
* @param {any} file
|
|
478
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
410
479
|
* @param {string} [authorization] Bearer Token
|
|
411
480
|
* @param {*} [options] Override http request option.
|
|
412
481
|
* @throws {RequiredError}
|
|
@@ -450,11 +519,11 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
450
519
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
451
520
|
* @summary List bank transactions
|
|
452
521
|
* @param {string} [authorization] Bearer Token
|
|
453
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
454
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
522
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
523
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
455
524
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
456
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
457
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
525
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
526
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
458
527
|
* @param {*} [options] Override http request option.
|
|
459
528
|
* @throws {RequiredError}
|
|
460
529
|
*/
|
|
@@ -503,12 +572,23 @@ exports.BankTransactionApiFp = BankTransactionApiFp;
|
|
|
503
572
|
var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
504
573
|
var localVarFp = (0, exports.BankTransactionApiFp)(configuration);
|
|
505
574
|
return {
|
|
575
|
+
/**
|
|
576
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
577
|
+
* @summary Invoice Match Suggestion
|
|
578
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
579
|
+
* @param {string} [authorization] Bearer Token
|
|
580
|
+
* @param {*} [options] Override http request option.
|
|
581
|
+
* @throws {RequiredError}
|
|
582
|
+
*/
|
|
583
|
+
generateInvoiceMatchSuggestion: function (code, authorization, options) {
|
|
584
|
+
return localVarFp.generateInvoiceMatchSuggestion(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
585
|
+
},
|
|
506
586
|
/**
|
|
507
587
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
508
588
|
* @summary Retrieve the bank transaction
|
|
509
589
|
* @param {string} code
|
|
510
590
|
* @param {string} [authorization] Bearer Token
|
|
511
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
591
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
512
592
|
* @param {*} [options] Override http request option.
|
|
513
593
|
* @throws {RequiredError}
|
|
514
594
|
*/
|
|
@@ -516,9 +596,9 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
516
596
|
return localVarFp.getBankTransaction(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
517
597
|
},
|
|
518
598
|
/**
|
|
519
|
-
* This will import bank transactions from a
|
|
599
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
520
600
|
* @summary Create the bank transactions
|
|
521
|
-
* @param {any} file
|
|
601
|
+
* @param {any} file MT940/CAMT.053 file to import bank transactions from. Extension must be .txt .sta or .xml.<br/> Allowed Content Types: text/plain, application/octet-stream, application/xml
|
|
522
602
|
* @param {string} [authorization] Bearer Token
|
|
523
603
|
* @param {*} [options] Override http request option.
|
|
524
604
|
* @throws {RequiredError}
|
|
@@ -542,11 +622,11 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
542
622
|
* Returns a list of bank transactions you have previously created. The bank transactions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
543
623
|
* @summary List bank transactions
|
|
544
624
|
* @param {string} [authorization] Bearer Token
|
|
545
|
-
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
546
|
-
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber,
|
|
625
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
626
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
547
627
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
548
|
-
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt,
|
|
549
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction<i>
|
|
628
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
629
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
550
630
|
* @param {*} [options] Override http request option.
|
|
551
631
|
* @throws {RequiredError}
|
|
552
632
|
*/
|
|
@@ -579,6 +659,18 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
579
659
|
function BankTransactionApi() {
|
|
580
660
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
581
661
|
}
|
|
662
|
+
/**
|
|
663
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
664
|
+
* @summary Invoice Match Suggestion
|
|
665
|
+
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
666
|
+
* @param {*} [options] Override http request option.
|
|
667
|
+
* @throws {RequiredError}
|
|
668
|
+
* @memberof BankTransactionApi
|
|
669
|
+
*/
|
|
670
|
+
BankTransactionApi.prototype.generateInvoiceMatchSuggestion = function (requestParameters, options) {
|
|
671
|
+
var _this = this;
|
|
672
|
+
return (0, exports.BankTransactionApiFp)(this.configuration).generateInvoiceMatchSuggestion(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
673
|
+
};
|
|
582
674
|
/**
|
|
583
675
|
* Retrieves the details of the bank transaction that was previously created. Supply the unique bank transaction code that was returned when you created it and Emil Api will return the corresponding bank transaction information. **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
584
676
|
* @summary Retrieve the bank transaction
|
|
@@ -592,7 +684,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
592
684
|
return (0, exports.BankTransactionApiFp)(this.configuration).getBankTransaction(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
593
685
|
};
|
|
594
686
|
/**
|
|
595
|
-
* This will import bank transactions from a
|
|
687
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
596
688
|
* @summary Create the bank transactions
|
|
597
689
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
598
690
|
* @param {*} [options] Override http request option.
|
|
@@ -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}
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
12
13
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
14
|
+
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
13
15
|
import { TenantBankAccountClassWithoutExpandProperties } from './tenant-bank-account-class-without-expand-properties';
|
|
14
16
|
/**
|
|
15
17
|
*
|
|
@@ -42,11 +44,11 @@ export interface BankTransactionClass {
|
|
|
42
44
|
*/
|
|
43
45
|
'bankAccountNumber': string;
|
|
44
46
|
/**
|
|
45
|
-
* Reference number derived from the MT940
|
|
47
|
+
* Reference number derived from the MT940 or CAMT file
|
|
46
48
|
* @type {string}
|
|
47
49
|
* @memberof BankTransactionClass
|
|
48
50
|
*/
|
|
49
|
-
'
|
|
51
|
+
'messageReference'?: string;
|
|
50
52
|
/**
|
|
51
53
|
* Currency of the transaction.
|
|
52
54
|
* @type {string}
|
|
@@ -119,6 +121,12 @@ export interface BankTransactionClass {
|
|
|
119
121
|
* @memberof BankTransactionClass
|
|
120
122
|
*/
|
|
121
123
|
'linkedTransaction'?: SharedTransactionClass;
|
|
124
|
+
/**
|
|
125
|
+
* The file format of the bank transaction
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof BankTransactionClass
|
|
128
|
+
*/
|
|
129
|
+
'importedFrom': string;
|
|
122
130
|
/**
|
|
123
131
|
* Time at which the object was created.
|
|
124
132
|
* @type {string}
|
|
@@ -137,4 +145,16 @@ export interface BankTransactionClass {
|
|
|
137
145
|
* @memberof BankTransactionClass
|
|
138
146
|
*/
|
|
139
147
|
'updatedBy': string;
|
|
148
|
+
/**
|
|
149
|
+
* The match suggestions for invoices
|
|
150
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
151
|
+
* @memberof BankTransactionClass
|
|
152
|
+
*/
|
|
153
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
154
|
+
/**
|
|
155
|
+
* The progress of the suggestion generation
|
|
156
|
+
* @type {SuggestionGenerationProgressClass}
|
|
157
|
+
* @memberof BankTransactionClass
|
|
158
|
+
*/
|
|
159
|
+
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
140
160
|
}
|