@emilgroup/payment-sdk 1.13.1-beta.5 → 1.13.1-beta.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/bank-transaction-api.ts +24 -24
- package/dist/api/bank-transaction-api.d.ts +24 -24
- package/dist/api/bank-transaction-api.js +20 -20
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +0 -14
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +0 -14
- package/models/bank-transaction-class-without-expand-properties.ts +0 -14
- package/models/unlinked-bank-transaction-response-class.ts +0 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/payment-sdk@1.13.1-beta.
|
|
20
|
+
npm install @emilgroup/payment-sdk@1.13.1-beta.7 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/payment-sdk@1.13.1-beta.
|
|
24
|
+
yarn add @emilgroup/payment-sdk@1.13.1-beta.7
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -43,7 +43,7 @@ import { UnlinkBankTransactionsResponseClass } from '../models';
|
|
|
43
43
|
export const BankTransactionApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
44
44
|
return {
|
|
45
45
|
/**
|
|
46
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
46
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
47
47
|
* @summary Invoice Match Suggestion
|
|
48
48
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
49
49
|
* @param {string} [authorization] Bearer Token
|
|
@@ -138,9 +138,9 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
|
|
|
138
138
|
};
|
|
139
139
|
},
|
|
140
140
|
/**
|
|
141
|
-
* This will import bank transactions from a
|
|
141
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
142
142
|
* @summary Create the bank transactions
|
|
143
|
-
* @param {any} file
|
|
143
|
+
* @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
|
|
144
144
|
* @param {string} [authorization] Bearer Token
|
|
145
145
|
* @param {*} [options] Override http request option.
|
|
146
146
|
* @throws {RequiredError}
|
|
@@ -244,10 +244,10 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
|
|
|
244
244
|
* 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\"
|
|
245
245
|
* @summary List bank transactions
|
|
246
246
|
* @param {string} [authorization] Bearer Token
|
|
247
|
-
* @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,
|
|
248
|
-
* @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,
|
|
247
|
+
* @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>
|
|
248
|
+
* @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>
|
|
249
249
|
* @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>
|
|
250
|
-
* @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,
|
|
250
|
+
* @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>
|
|
251
251
|
* @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>
|
|
252
252
|
* @param {*} [options] Override http request option.
|
|
253
253
|
* @throws {RequiredError}
|
|
@@ -368,7 +368,7 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
368
368
|
const localVarAxiosParamCreator = BankTransactionApiAxiosParamCreator(configuration)
|
|
369
369
|
return {
|
|
370
370
|
/**
|
|
371
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
371
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
372
372
|
* @summary Invoice Match Suggestion
|
|
373
373
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
374
374
|
* @param {string} [authorization] Bearer Token
|
|
@@ -393,9 +393,9 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
393
393
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
394
394
|
},
|
|
395
395
|
/**
|
|
396
|
-
* This will import bank transactions from a
|
|
396
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
397
397
|
* @summary Create the bank transactions
|
|
398
|
-
* @param {any} file
|
|
398
|
+
* @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
|
|
399
399
|
* @param {string} [authorization] Bearer Token
|
|
400
400
|
* @param {*} [options] Override http request option.
|
|
401
401
|
* @throws {RequiredError}
|
|
@@ -421,10 +421,10 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
421
421
|
* 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\"
|
|
422
422
|
* @summary List bank transactions
|
|
423
423
|
* @param {string} [authorization] Bearer Token
|
|
424
|
-
* @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,
|
|
425
|
-
* @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,
|
|
424
|
+
* @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>
|
|
425
|
+
* @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>
|
|
426
426
|
* @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>
|
|
427
|
-
* @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,
|
|
427
|
+
* @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>
|
|
428
428
|
* @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>
|
|
429
429
|
* @param {*} [options] Override http request option.
|
|
430
430
|
* @throws {RequiredError}
|
|
@@ -457,7 +457,7 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
457
457
|
const localVarFp = BankTransactionApiFp(configuration)
|
|
458
458
|
return {
|
|
459
459
|
/**
|
|
460
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
460
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
461
461
|
* @summary Invoice Match Suggestion
|
|
462
462
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
463
463
|
* @param {string} [authorization] Bearer Token
|
|
@@ -480,9 +480,9 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
480
480
|
return localVarFp.getBankTransaction(code, authorization, expand, options).then((request) => request(axios, basePath));
|
|
481
481
|
},
|
|
482
482
|
/**
|
|
483
|
-
* This will import bank transactions from a
|
|
483
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
484
484
|
* @summary Create the bank transactions
|
|
485
|
-
* @param {any} file
|
|
485
|
+
* @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
|
|
486
486
|
* @param {string} [authorization] Bearer Token
|
|
487
487
|
* @param {*} [options] Override http request option.
|
|
488
488
|
* @throws {RequiredError}
|
|
@@ -506,10 +506,10 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
506
506
|
* 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\"
|
|
507
507
|
* @summary List bank transactions
|
|
508
508
|
* @param {string} [authorization] Bearer Token
|
|
509
|
-
* @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,
|
|
510
|
-
* @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,
|
|
509
|
+
* @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>
|
|
510
|
+
* @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>
|
|
511
511
|
* @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>
|
|
512
|
-
* @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,
|
|
512
|
+
* @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>
|
|
513
513
|
* @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>
|
|
514
514
|
* @param {*} [options] Override http request option.
|
|
515
515
|
* @throws {RequiredError}
|
|
@@ -588,7 +588,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
588
588
|
*/
|
|
589
589
|
export interface BankTransactionApiImportBankTransactionsRequest {
|
|
590
590
|
/**
|
|
591
|
-
*
|
|
591
|
+
* 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
|
|
592
592
|
* @type {any}
|
|
593
593
|
* @memberof BankTransactionApiImportBankTransactions
|
|
594
594
|
*/
|
|
@@ -644,14 +644,14 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
644
644
|
readonly authorization?: string
|
|
645
645
|
|
|
646
646
|
/**
|
|
647
|
-
* 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,
|
|
647
|
+
* 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>
|
|
648
648
|
* @type {string}
|
|
649
649
|
* @memberof BankTransactionApiListBankTransactions
|
|
650
650
|
*/
|
|
651
651
|
readonly filter?: string
|
|
652
652
|
|
|
653
653
|
/**
|
|
654
|
-
* 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,
|
|
654
|
+
* 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>
|
|
655
655
|
* @type {string}
|
|
656
656
|
* @memberof BankTransactionApiListBankTransactions
|
|
657
657
|
*/
|
|
@@ -665,7 +665,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
665
665
|
readonly search?: string
|
|
666
666
|
|
|
667
667
|
/**
|
|
668
|
-
* 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,
|
|
668
|
+
* 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>
|
|
669
669
|
* @type {string}
|
|
670
670
|
* @memberof BankTransactionApiListBankTransactions
|
|
671
671
|
*/
|
|
@@ -715,7 +715,7 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
715
715
|
*/
|
|
716
716
|
export class BankTransactionApi extends BaseAPI {
|
|
717
717
|
/**
|
|
718
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
718
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
719
719
|
* @summary Invoice Match Suggestion
|
|
720
720
|
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
721
721
|
* @param {*} [options] Override http request option.
|
|
@@ -739,7 +739,7 @@ export class BankTransactionApi extends BaseAPI {
|
|
|
739
739
|
}
|
|
740
740
|
|
|
741
741
|
/**
|
|
742
|
-
* This will import bank transactions from a
|
|
742
|
+
* This will import bank transactions from a MT940/CAMT.053 file **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
743
743
|
* @summary Create the bank transactions
|
|
744
744
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
745
745
|
* @param {*} [options] Override http request option.
|
|
@@ -26,7 +26,7 @@ import { UnlinkBankTransactionsResponseClass } from '../models';
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const BankTransactionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
28
|
/**
|
|
29
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
29
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
30
30
|
* @summary Invoice Match Suggestion
|
|
31
31
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
32
32
|
* @param {string} [authorization] Bearer Token
|
|
@@ -45,9 +45,9 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
45
45
|
*/
|
|
46
46
|
getBankTransaction: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
47
47
|
/**
|
|
48
|
-
* 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\"
|
|
49
49
|
* @summary Create the bank transactions
|
|
50
|
-
* @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
|
|
51
51
|
* @param {string} [authorization] Bearer Token
|
|
52
52
|
* @param {*} [options] Override http request option.
|
|
53
53
|
* @throws {RequiredError}
|
|
@@ -67,10 +67,10 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
67
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\"
|
|
68
68
|
* @summary List bank transactions
|
|
69
69
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
72
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>
|
|
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,
|
|
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
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>
|
|
75
75
|
* @param {*} [options] Override http request option.
|
|
76
76
|
* @throws {RequiredError}
|
|
@@ -93,7 +93,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
93
93
|
*/
|
|
94
94
|
export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
95
95
|
/**
|
|
96
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
96
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
97
97
|
* @summary Invoice Match Suggestion
|
|
98
98
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -112,9 +112,9 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
112
112
|
*/
|
|
113
113
|
getBankTransaction(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBankTransactionsResponseClass>>;
|
|
114
114
|
/**
|
|
115
|
-
* 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\"
|
|
116
116
|
* @summary Create the bank transactions
|
|
117
|
-
* @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
|
|
118
118
|
* @param {string} [authorization] Bearer Token
|
|
119
119
|
* @param {*} [options] Override http request option.
|
|
120
120
|
* @throws {RequiredError}
|
|
@@ -134,10 +134,10 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
134
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\"
|
|
135
135
|
* @summary List bank transactions
|
|
136
136
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
139
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>
|
|
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,
|
|
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
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>
|
|
142
142
|
* @param {*} [options] Override http request option.
|
|
143
143
|
* @throws {RequiredError}
|
|
@@ -160,7 +160,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
160
160
|
*/
|
|
161
161
|
export declare const BankTransactionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
162
162
|
/**
|
|
163
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
163
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
164
164
|
* @summary Invoice Match Suggestion
|
|
165
165
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
166
166
|
* @param {string} [authorization] Bearer Token
|
|
@@ -179,9 +179,9 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
179
179
|
*/
|
|
180
180
|
getBankTransaction(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<GetBankTransactionsResponseClass>;
|
|
181
181
|
/**
|
|
182
|
-
* 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\"
|
|
183
183
|
* @summary Create the bank transactions
|
|
184
|
-
* @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
|
|
185
185
|
* @param {string} [authorization] Bearer Token
|
|
186
186
|
* @param {*} [options] Override http request option.
|
|
187
187
|
* @throws {RequiredError}
|
|
@@ -201,10 +201,10 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
201
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\"
|
|
202
202
|
* @summary List bank transactions
|
|
203
203
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
206
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>
|
|
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,
|
|
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
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>
|
|
209
209
|
* @param {*} [options] Override http request option.
|
|
210
210
|
* @throws {RequiredError}
|
|
@@ -272,7 +272,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
272
272
|
*/
|
|
273
273
|
export interface BankTransactionApiImportBankTransactionsRequest {
|
|
274
274
|
/**
|
|
275
|
-
*
|
|
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
|
|
276
276
|
* @type {any}
|
|
277
277
|
* @memberof BankTransactionApiImportBankTransactions
|
|
278
278
|
*/
|
|
@@ -322,13 +322,13 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
322
322
|
*/
|
|
323
323
|
readonly authorization?: string;
|
|
324
324
|
/**
|
|
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,
|
|
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>
|
|
326
326
|
* @type {string}
|
|
327
327
|
* @memberof BankTransactionApiListBankTransactions
|
|
328
328
|
*/
|
|
329
329
|
readonly filter?: string;
|
|
330
330
|
/**
|
|
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,
|
|
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>
|
|
332
332
|
* @type {string}
|
|
333
333
|
* @memberof BankTransactionApiListBankTransactions
|
|
334
334
|
*/
|
|
@@ -340,7 +340,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
340
340
|
*/
|
|
341
341
|
readonly search?: string;
|
|
342
342
|
/**
|
|
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,
|
|
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>
|
|
344
344
|
* @type {string}
|
|
345
345
|
* @memberof BankTransactionApiListBankTransactions
|
|
346
346
|
*/
|
|
@@ -385,7 +385,7 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
385
385
|
*/
|
|
386
386
|
export declare class BankTransactionApi extends BaseAPI {
|
|
387
387
|
/**
|
|
388
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
388
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
389
389
|
* @summary Invoice Match Suggestion
|
|
390
390
|
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
391
391
|
* @param {*} [options] Override http request option.
|
|
@@ -403,7 +403,7 @@ export declare class BankTransactionApi extends BaseAPI {
|
|
|
403
403
|
*/
|
|
404
404
|
getBankTransaction(requestParameters: BankTransactionApiGetBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBankTransactionsResponseClass, any>>;
|
|
405
405
|
/**
|
|
406
|
-
* 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\"
|
|
407
407
|
* @summary Create the bank transactions
|
|
408
408
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
409
409
|
* @param {*} [options] Override http request option.
|
|
@@ -93,7 +93,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
93
93
|
var _this = this;
|
|
94
94
|
return {
|
|
95
95
|
/**
|
|
96
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
96
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
97
97
|
* @summary Invoice Match Suggestion
|
|
98
98
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
99
99
|
* @param {string} [authorization] Bearer Token
|
|
@@ -193,9 +193,9 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
193
193
|
});
|
|
194
194
|
},
|
|
195
195
|
/**
|
|
196
|
-
* 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\"
|
|
197
197
|
* @summary Create the bank transactions
|
|
198
|
-
* @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
|
|
199
199
|
* @param {string} [authorization] Bearer Token
|
|
200
200
|
* @param {*} [options] Override http request option.
|
|
201
201
|
* @throws {RequiredError}
|
|
@@ -301,10 +301,10 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
301
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\"
|
|
302
302
|
* @summary List bank transactions
|
|
303
303
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
306
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>
|
|
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,
|
|
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
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>
|
|
309
309
|
* @param {*} [options] Override http request option.
|
|
310
310
|
* @throws {RequiredError}
|
|
@@ -425,7 +425,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
425
425
|
var localVarAxiosParamCreator = (0, exports.BankTransactionApiAxiosParamCreator)(configuration);
|
|
426
426
|
return {
|
|
427
427
|
/**
|
|
428
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
428
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
429
429
|
* @summary Invoice Match Suggestion
|
|
430
430
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
431
431
|
* @param {string} [authorization] Bearer Token
|
|
@@ -468,9 +468,9 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
468
468
|
});
|
|
469
469
|
},
|
|
470
470
|
/**
|
|
471
|
-
* 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\"
|
|
472
472
|
* @summary Create the bank transactions
|
|
473
|
-
* @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
|
|
474
474
|
* @param {string} [authorization] Bearer Token
|
|
475
475
|
* @param {*} [options] Override http request option.
|
|
476
476
|
* @throws {RequiredError}
|
|
@@ -514,10 +514,10 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
514
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\"
|
|
515
515
|
* @summary List bank transactions
|
|
516
516
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
519
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>
|
|
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,
|
|
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
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>
|
|
522
522
|
* @param {*} [options] Override http request option.
|
|
523
523
|
* @throws {RequiredError}
|
|
@@ -568,7 +568,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
568
568
|
var localVarFp = (0, exports.BankTransactionApiFp)(configuration);
|
|
569
569
|
return {
|
|
570
570
|
/**
|
|
571
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
571
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
572
572
|
* @summary Invoice Match Suggestion
|
|
573
573
|
* @param {string} code Code of the bank transaction to generate match suggestions for
|
|
574
574
|
* @param {string} [authorization] Bearer Token
|
|
@@ -591,9 +591,9 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
591
591
|
return localVarFp.getBankTransaction(code, authorization, expand, options).then(function (request) { return request(axios, basePath); });
|
|
592
592
|
},
|
|
593
593
|
/**
|
|
594
|
-
* 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\"
|
|
595
595
|
* @summary Create the bank transactions
|
|
596
|
-
* @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
|
|
597
597
|
* @param {string} [authorization] Bearer Token
|
|
598
598
|
* @param {*} [options] Override http request option.
|
|
599
599
|
* @throws {RequiredError}
|
|
@@ -617,10 +617,10 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
617
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\"
|
|
618
618
|
* @summary List bank transactions
|
|
619
619
|
* @param {string} [authorization] Bearer Token
|
|
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,
|
|
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,
|
|
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>
|
|
622
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>
|
|
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,
|
|
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
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>
|
|
625
625
|
* @param {*} [options] Override http request option.
|
|
626
626
|
* @throws {RequiredError}
|
|
@@ -655,7 +655,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
655
655
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
656
656
|
}
|
|
657
657
|
/**
|
|
658
|
-
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.
|
|
658
|
+
* Generate suggestion for matching a bank transaction with an Invoice **Required Permissions** \"payment-management.bank-accounts.view\"
|
|
659
659
|
* @summary Invoice Match Suggestion
|
|
660
660
|
* @param {BankTransactionApiGenerateInvoiceMatchSuggestionRequest} requestParameters Request parameters.
|
|
661
661
|
* @param {*} [options] Override http request option.
|
|
@@ -679,7 +679,7 @@ var BankTransactionApi = /** @class */ (function (_super) {
|
|
|
679
679
|
return (0, exports.BankTransactionApiFp)(this.configuration).getBankTransaction(requestParameters.code, requestParameters.authorization, requestParameters.expand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
680
680
|
};
|
|
681
681
|
/**
|
|
682
|
-
* 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\"
|
|
683
683
|
* @summary Create the bank transactions
|
|
684
684
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
685
685
|
* @param {*} [options] Override http request option.
|
|
@@ -9,8 +9,6 @@
|
|
|
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';
|
|
14
12
|
/**
|
|
15
13
|
*
|
|
16
14
|
* @export
|
|
@@ -131,16 +129,4 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
131
129
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
132
130
|
*/
|
|
133
131
|
'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;
|
|
146
132
|
}
|
|
@@ -9,8 +9,6 @@
|
|
|
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';
|
|
14
12
|
/**
|
|
15
13
|
*
|
|
16
14
|
* @export
|
|
@@ -113,16 +111,4 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
113
111
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
114
112
|
*/
|
|
115
113
|
'updatedBy': string;
|
|
116
|
-
/**
|
|
117
|
-
* The match suggestions for invoices
|
|
118
|
-
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
119
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
120
|
-
*/
|
|
121
|
-
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
122
|
-
/**
|
|
123
|
-
* The progress of the suggestion generation
|
|
124
|
-
* @type {SuggestionGenerationProgressClass}
|
|
125
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
126
|
-
*/
|
|
127
|
-
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
128
114
|
}
|
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
17
|
-
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
18
16
|
|
|
19
17
|
/**
|
|
20
18
|
*
|
|
@@ -136,17 +134,5 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
136
134
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
137
135
|
*/
|
|
138
136
|
'updatedBy': string;
|
|
139
|
-
/**
|
|
140
|
-
* The match suggestions for invoices
|
|
141
|
-
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
142
|
-
* @memberof BankTransactionClassWithoutExpandProperties
|
|
143
|
-
*/
|
|
144
|
-
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
145
|
-
/**
|
|
146
|
-
* The progress of the suggestion generation
|
|
147
|
-
* @type {SuggestionGenerationProgressClass}
|
|
148
|
-
* @memberof BankTransactionClassWithoutExpandProperties
|
|
149
|
-
*/
|
|
150
|
-
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
151
137
|
}
|
|
152
138
|
|
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
17
|
-
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
18
16
|
|
|
19
17
|
/**
|
|
20
18
|
*
|
|
@@ -118,17 +116,5 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
118
116
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
119
117
|
*/
|
|
120
118
|
'updatedBy': string;
|
|
121
|
-
/**
|
|
122
|
-
* The match suggestions for invoices
|
|
123
|
-
* @type {Array<InvoiceMatchSuggestionClass>}
|
|
124
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
125
|
-
*/
|
|
126
|
-
'invoiceMatchSuggestions': Array<InvoiceMatchSuggestionClass>;
|
|
127
|
-
/**
|
|
128
|
-
* The progress of the suggestion generation
|
|
129
|
-
* @type {SuggestionGenerationProgressClass}
|
|
130
|
-
* @memberof UnlinkedBankTransactionResponseClass
|
|
131
|
-
*/
|
|
132
|
-
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
133
119
|
}
|
|
134
120
|
|