@emilgroup/payment-sdk 1.13.1-beta.4 → 1.13.1-beta.6
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/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 +14 -0
- package/dist/models/bank-transaction-class.d.ts +14 -0
- 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 +14 -0
- package/models/bank-transaction-class-without-expand-properties.ts +14 -0
- package/models/bank-transaction-class.ts +14 -0
- 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 +14 -0
- package/package.json +1 -1
|
@@ -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.
|
|
@@ -92,12 +92,60 @@ var base_1 = require("../base");
|
|
|
92
92
|
var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
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: function (code, authorization, options) {
|
|
104
|
+
if (options === void 0) { options = {}; }
|
|
105
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
106
|
+
var localVarPath, localVarUrlObj, baseOptions, baseAccessToken, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
107
|
+
return __generator(this, function (_a) {
|
|
108
|
+
switch (_a.label) {
|
|
109
|
+
case 0:
|
|
110
|
+
// verify required parameter 'code' is not null or undefined
|
|
111
|
+
(0, common_1.assertParamExists)('generateInvoiceMatchSuggestion', 'code', code);
|
|
112
|
+
localVarPath = "/paymentservice/v1/tenant/bank-transactions/{code}/generate-invoice-match-suggestion"
|
|
113
|
+
.replace("{".concat("code", "}"), encodeURIComponent(String(code)));
|
|
114
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
115
|
+
if (configuration) {
|
|
116
|
+
baseOptions = configuration.baseOptions;
|
|
117
|
+
baseAccessToken = configuration.accessToken;
|
|
118
|
+
}
|
|
119
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
120
|
+
localVarHeaderParameter = {};
|
|
121
|
+
localVarQueryParameter = {};
|
|
122
|
+
// authentication bearer required
|
|
123
|
+
// http bearer authentication required
|
|
124
|
+
return [4 /*yield*/, (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration)];
|
|
125
|
+
case 1:
|
|
126
|
+
// authentication bearer required
|
|
127
|
+
// http bearer authentication required
|
|
128
|
+
_a.sent();
|
|
129
|
+
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
130
|
+
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
131
|
+
}
|
|
132
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
133
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
135
|
+
return [2 /*return*/, {
|
|
136
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
137
|
+
options: localVarRequestOptions,
|
|
138
|
+
}];
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
});
|
|
142
|
+
},
|
|
95
143
|
/**
|
|
96
144
|
* 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\"
|
|
97
145
|
* @summary Retrieve the bank transaction
|
|
98
146
|
* @param {string} code
|
|
99
147
|
* @param {string} [authorization] Bearer Token
|
|
100
|
-
* @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>
|
|
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, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
101
149
|
* @param {*} [options] Override http request option.
|
|
102
150
|
* @throws {RequiredError}
|
|
103
151
|
*/
|
|
@@ -145,9 +193,9 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
145
193
|
});
|
|
146
194
|
},
|
|
147
195
|
/**
|
|
148
|
-
* This will import bank transactions from a
|
|
196
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
149
197
|
* @summary Create the bank transactions
|
|
150
|
-
* @param {any} file
|
|
198
|
+
* @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
|
|
151
199
|
* @param {string} [authorization] Bearer Token
|
|
152
200
|
* @param {*} [options] Override http request option.
|
|
153
201
|
* @throws {RequiredError}
|
|
@@ -253,11 +301,11 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
253
301
|
* 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\"
|
|
254
302
|
* @summary List bank transactions
|
|
255
303
|
* @param {string} [authorization] Bearer Token
|
|
256
|
-
* @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,
|
|
257
|
-
* @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,
|
|
304
|
+
* @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>
|
|
305
|
+
* @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>
|
|
258
306
|
* @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>
|
|
259
|
-
* @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,
|
|
260
|
-
* @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>
|
|
307
|
+
* @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>
|
|
308
|
+
* @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>
|
|
261
309
|
* @param {*} [options] Override http request option.
|
|
262
310
|
* @throws {RequiredError}
|
|
263
311
|
*/
|
|
@@ -376,12 +424,33 @@ exports.BankTransactionApiAxiosParamCreator = BankTransactionApiAxiosParamCreato
|
|
|
376
424
|
var BankTransactionApiFp = function (configuration) {
|
|
377
425
|
var localVarAxiosParamCreator = (0, exports.BankTransactionApiAxiosParamCreator)(configuration);
|
|
378
426
|
return {
|
|
427
|
+
/**
|
|
428
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
429
|
+
* @summary Invoice Match Suggestion
|
|
430
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
431
|
+
* @param {string} [authorization] Bearer Token
|
|
432
|
+
* @param {*} [options] Override http request option.
|
|
433
|
+
* @throws {RequiredError}
|
|
434
|
+
*/
|
|
435
|
+
generateInvoiceMatchSuggestion: function (code, authorization, options) {
|
|
436
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
437
|
+
var localVarAxiosArgs;
|
|
438
|
+
return __generator(this, function (_a) {
|
|
439
|
+
switch (_a.label) {
|
|
440
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.generateInvoiceMatchSuggestion(code, authorization, options)];
|
|
441
|
+
case 1:
|
|
442
|
+
localVarAxiosArgs = _a.sent();
|
|
443
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
444
|
+
}
|
|
445
|
+
});
|
|
446
|
+
});
|
|
447
|
+
},
|
|
379
448
|
/**
|
|
380
449
|
* 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\"
|
|
381
450
|
* @summary Retrieve the bank transaction
|
|
382
451
|
* @param {string} code
|
|
383
452
|
* @param {string} [authorization] Bearer Token
|
|
384
|
-
* @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>
|
|
453
|
+
* @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>
|
|
385
454
|
* @param {*} [options] Override http request option.
|
|
386
455
|
* @throws {RequiredError}
|
|
387
456
|
*/
|
|
@@ -399,9 +468,9 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
399
468
|
});
|
|
400
469
|
},
|
|
401
470
|
/**
|
|
402
|
-
* This will import bank transactions from a
|
|
471
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
403
472
|
* @summary Create the bank transactions
|
|
404
|
-
* @param {any} file
|
|
473
|
+
* @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
|
|
405
474
|
* @param {string} [authorization] Bearer Token
|
|
406
475
|
* @param {*} [options] Override http request option.
|
|
407
476
|
* @throws {RequiredError}
|
|
@@ -445,11 +514,11 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
445
514
|
* 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\"
|
|
446
515
|
* @summary List bank transactions
|
|
447
516
|
* @param {string} [authorization] Bearer Token
|
|
448
|
-
* @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,
|
|
449
|
-
* @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,
|
|
517
|
+
* @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>
|
|
518
|
+
* @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>
|
|
450
519
|
* @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>
|
|
451
|
-
* @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,
|
|
452
|
-
* @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>
|
|
520
|
+
* @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>
|
|
521
|
+
* @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>
|
|
453
522
|
* @param {*} [options] Override http request option.
|
|
454
523
|
* @throws {RequiredError}
|
|
455
524
|
*/
|
|
@@ -498,12 +567,23 @@ exports.BankTransactionApiFp = BankTransactionApiFp;
|
|
|
498
567
|
var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
499
568
|
var localVarFp = (0, exports.BankTransactionApiFp)(configuration);
|
|
500
569
|
return {
|
|
570
|
+
/**
|
|
571
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
572
|
+
* @summary Invoice Match Suggestion
|
|
573
|
+
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
574
|
+
* @param {string} [authorization] Bearer Token
|
|
575
|
+
* @param {*} [options] Override http request option.
|
|
576
|
+
* @throws {RequiredError}
|
|
577
|
+
*/
|
|
578
|
+
generateInvoiceMatchSuggestion: function (code, authorization, options) {
|
|
579
|
+
return localVarFp.generateInvoiceMatchSuggestion(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
580
|
+
},
|
|
501
581
|
/**
|
|
502
582
|
* 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\"
|
|
503
583
|
* @summary Retrieve the bank transaction
|
|
504
584
|
* @param {string} code
|
|
505
585
|
* @param {string} [authorization] Bearer Token
|
|
506
|
-
* @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>
|
|
586
|
+
* @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>
|
|
507
587
|
* @param {*} [options] Override http request option.
|
|
508
588
|
* @throws {RequiredError}
|
|
509
589
|
*/
|
|
@@ -511,9 +591,9 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
511
591
|
return localVarFp.getBankTransaction(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
512
592
|
},
|
|
513
593
|
/**
|
|
514
|
-
* This will import bank transactions from a
|
|
594
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
515
595
|
* @summary Create the bank transactions
|
|
516
|
-
* @param {any} file
|
|
596
|
+
* @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
|
|
517
597
|
* @param {string} [authorization] Bearer Token
|
|
518
598
|
* @param {*} [options] Override http request option.
|
|
519
599
|
* @throws {RequiredError}
|
|
@@ -537,11 +617,11 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
537
617
|
* 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\"
|
|
538
618
|
* @summary List bank transactions
|
|
539
619
|
* @param {string} [authorization] Bearer Token
|
|
540
|
-
* @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,
|
|
541
|
-
* @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,
|
|
620
|
+
* @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>
|
|
621
|
+
* @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>
|
|
542
622
|
* @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>
|
|
543
|
-
* @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,
|
|
544
|
-
* @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>
|
|
623
|
+
* @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>
|
|
624
|
+
* @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>
|
|
545
625
|
* @param {*} [options] Override http request option.
|
|
546
626
|
* @throws {RequiredError}
|
|
547
627
|
*/
|
|
@@ -574,6 +654,18 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
574
654
|
function BankTransactionApi() {
|
|
575
655
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
576
656
|
}
|
|
657
|
+
/**
|
|
658
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
659
|
+
* @summary Invoice Match Suggestion
|
|
660
|
+
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
661
|
+
* @param {*} [options] Override http request option.
|
|
662
|
+
* @throws {RequiredError}
|
|
663
|
+
* @memberof BankTransactionApi
|
|
664
|
+
*/
|
|
665
|
+
BankTransactionApi.prototype.generateInvoiceMatchSuggestion = function (requestParameters, options) {
|
|
666
|
+
var _this = this;
|
|
667
|
+
return (0, exports.BankTransactionApiFp)(this.configuration).generateInvoiceMatchSuggestion(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
668
|
+
};
|
|
577
669
|
/**
|
|
578
670
|
* 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\"
|
|
579
671
|
* @summary Retrieve the bank transaction
|
|
@@ -587,7 +679,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
587
679
|
return (0, exports.BankTransactionApiFp)(this.configuration).getBankTransaction(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
588
680
|
};
|
|
589
681
|
/**
|
|
590
|
-
* This will import bank transactions from a
|
|
682
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
591
683
|
* @summary Create the bank transactions
|
|
592
684
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
593
685
|
* @param {*} [options] Override http request option.
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
13
|
+
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
12
14
|
/**
|
|
13
15
|
*
|
|
14
16
|
* @export
|
|
@@ -129,4 +131,16 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
129
131
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
130
132
|
*/
|
|
131
133
|
'updatedBy': string;
|
|
134
|
+
/**
|
|
135
|
+
* The match suggestions for invoices
|
|
136
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
137
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
138
|
+
*/
|
|
139
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
140
|
+
/**
|
|
141
|
+
* The progress of the suggestion generation
|
|
142
|
+
* @type {SuggestionGenerationProgressClass}
|
|
143
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
144
|
+
*/
|
|
145
|
+
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
132
146
|
}
|
|
@@ -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
|
*
|
|
@@ -143,4 +145,16 @@ export interface BankTransactionClass {
|
|
|
143
145
|
* @memberof BankTransactionClass
|
|
144
146
|
*/
|
|
145
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;
|
|
146
160
|
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Emil Payment Service
|
|
3
|
+
* This service directly communicates with the various Payment Service Providers (PSPs) in order to charge or refund customers. This service will automatically connect to the PSP linked in your admin configuration; meaning if you configured Stripe, it will automatically create a payment on Stripe when you create it in Emil.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GenerateInvoiceMatchSuggestionsResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GenerateInvoiceMatchSuggestionsResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* List of invoice match suggestions
|
|
21
|
+
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
22
|
+
* @memberof GenerateInvoiceMatchSuggestionsResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
25
|
+
}
|