@emilgroup/payment-sdk 1.4.1-beta.3 → 1.4.1-beta.31
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 +12 -39
- package/README.md +2 -2
- package/api/bank-accounts-api.ts +497 -47
- package/api/bank-transaction-api.ts +128 -96
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api/payment-methods-api.ts +74 -203
- package/api/payment-reminders-api.ts +76 -66
- package/api/payment-setup-api.ts +29 -37
- package/api/payments-api.ts +66 -89
- package/api/refunds-api.ts +74 -84
- package/api/tenant-bank-account-api.ts +88 -62
- package/api/webhooks-api.ts +17 -13
- package/api.ts +3 -3
- package/base.ts +6 -2
- package/common.ts +2 -2
- package/configuration.ts +1 -1
- package/dist/api/bank-accounts-api.d.ts +297 -49
- package/dist/api/bank-accounts-api.js +416 -28
- package/dist/api/bank-transaction-api.d.ts +109 -91
- package/dist/api/bank-transaction-api.js +83 -68
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api/payment-methods-api.d.ts +66 -134
- package/dist/api/payment-methods-api.js +55 -157
- package/dist/api/payment-reminders-api.d.ts +72 -65
- package/dist/api/payment-reminders-api.js +48 -42
- package/dist/api/payment-setup-api.d.ts +19 -23
- package/dist/api/payment-setup-api.js +25 -25
- package/dist/api/payments-api.d.ts +64 -76
- package/dist/api/payments-api.js +47 -55
- package/dist/api/refunds-api.d.ts +74 -74
- package/dist/api/refunds-api.js +52 -48
- package/dist/api/tenant-bank-account-api.d.ts +89 -66
- package/dist/api/tenant-bank-account-api.js +59 -39
- package/dist/api/webhooks-api.d.ts +17 -13
- package/dist/api/webhooks-api.js +15 -11
- package/dist/api.d.ts +2 -2
- package/dist/api.js +2 -2
- package/dist/base.d.ts +2 -1
- package/dist/base.js +5 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/models/{bank-transaction-response-class.d.ts → bank-transaction-class-without-expand-properties.d.ts} +26 -34
- package/dist/models/{bank-account-class.js → bank-transaction-class-without-expand-properties.js} +1 -1
- package/dist/models/create-bank-account-request-dto.d.ts +15 -3
- package/dist/models/create-bank-account-request-dto.js +1 -1
- package/dist/models/create-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/create-payment-reminder-request-dto.js +1 -1
- package/dist/models/create-payment-request-dto.d.ts +4 -4
- package/dist/models/create-payment-request-dto.js +1 -1
- package/dist/models/create-refund-request-dto.d.ts +1 -1
- package/dist/models/create-refund-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.d.ts +1 -1
- package/dist/models/create-tenant-bank-account-request-dto.js +1 -1
- package/dist/models/create-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/{bank-transaction-response-class.js → create-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.d.ts +1 -1
- package/dist/models/deactivate-payment-reminder-request-dto.js +1 -1
- package/dist/models/get-tenant-bank-account-response-class.d.ts +5 -5
- package/dist/models/get-tenant-bank-account-response-class.js +1 -1
- package/dist/models/index.d.ts +11 -38
- package/dist/models/index.js +11 -38
- package/dist/models/inline-response200.d.ts +1 -1
- package/dist/models/inline-response200.js +1 -1
- package/dist/models/inline-response503.d.ts +1 -1
- package/dist/models/inline-response503.js +1 -1
- package/dist/models/link-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/{billing-profile-limited-response-dto.js → link-bank-transaction-request-dto-rest.js} +1 -1
- package/dist/models/list-tenant-bank-account-response-class.d.ts +31 -0
- package/dist/models/{billing-profile-dto.js → list-tenant-bank-account-response-class.js} +1 -1
- package/dist/models/set-primary-bank-account-request-dto-rest.d.ts +24 -0
- package/dist/models/set-primary-bank-account-request-dto-rest.js +15 -0
- package/dist/models/{tenant-bank-account-response-class.d.ts → tenant-bank-account-class-without-expand-properties.d.ts} +11 -11
- package/dist/models/tenant-bank-account-class-without-expand-properties.js +15 -0
- package/dist/models/tenant-bank-account-class.d.ts +73 -0
- package/dist/models/tenant-bank-account-class.js +15 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.d.ts +24 -0
- package/dist/models/unlink-bank-transaction-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto-rest.d.ts +30 -0
- package/dist/models/update-bank-account-request-dto-rest.js +15 -0
- package/dist/models/update-bank-account-request-dto.d.ts +36 -0
- package/dist/models/update-bank-account-request-dto.js +15 -0
- package/dist/models/update-tenant-bank-account-response-class.d.ts +25 -0
- package/dist/models/update-tenant-bank-account-response-class.js +15 -0
- package/dist/models/update-tenant-bank-account-rest-request-dto.d.ts +1 -1
- package/dist/models/update-tenant-bank-account-rest-request-dto.js +1 -1
- package/dist/models/validate-pspconfig-request-dto.d.ts +2 -9
- package/dist/models/validate-pspconfig-request-dto.js +1 -8
- package/index.ts +1 -1
- package/models/{bank-transaction-response-class.ts → bank-transaction-class-without-expand-properties.ts} +26 -34
- package/models/create-bank-account-request-dto.ts +15 -3
- package/models/create-payment-reminder-request-dto.ts +1 -1
- package/models/create-payment-request-dto.ts +4 -4
- package/models/create-refund-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-request-dto.ts +1 -1
- package/models/create-tenant-bank-account-response-class.ts +31 -0
- package/models/deactivate-payment-reminder-request-dto.ts +1 -1
- package/models/get-tenant-bank-account-response-class.ts +5 -5
- package/models/index.ts +11 -38
- package/models/inline-response200.ts +1 -1
- package/models/inline-response503.ts +1 -1
- package/models/link-bank-transaction-request-dto-rest.ts +30 -0
- package/models/list-tenant-bank-account-response-class.ts +37 -0
- package/models/set-primary-bank-account-request-dto-rest.ts +30 -0
- package/models/{tenant-bank-account-response-class.ts → tenant-bank-account-class-without-expand-properties.ts} +11 -11
- package/models/tenant-bank-account-class.ts +79 -0
- package/models/unlink-bank-transaction-request-dto-rest.ts +30 -0
- package/models/update-bank-account-request-dto-rest.ts +36 -0
- package/models/update-bank-account-request-dto.ts +42 -0
- package/models/update-tenant-bank-account-response-class.ts +31 -0
- package/models/update-tenant-bank-account-rest-request-dto.ts +1 -1
- package/models/validate-pspconfig-request-dto.ts +2 -12
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/bank-account-class.d.ts +0 -54
- package/dist/models/billing-profile-dto.d.ts +0 -38
- package/dist/models/billing-profile-limited-response-dto.d.ts +0 -54
- package/dist/models/complete-braintree-payment-setup-request-dto.d.ts +0 -48
- package/dist/models/complete-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/complete-payment-setup-request-dto.d.ts +0 -32
- package/dist/models/complete-payment-setup-request-dto.js +0 -15
- package/dist/models/complete-payment-setup-response-class.d.ts +0 -25
- package/dist/models/complete-payment-setup-response-class.js +0 -15
- package/dist/models/complete-stripe-payment-setup-request-dto.d.ts +0 -60
- package/dist/models/complete-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/create-payment-method-response-class.d.ts +0 -25
- package/dist/models/create-payment-method-response-class.js +0 -15
- package/dist/models/create-payment-response-class.d.ts +0 -25
- package/dist/models/create-payment-response-class.js +0 -15
- package/dist/models/create-psp-payment-method-request-dto.d.ts +0 -61
- package/dist/models/create-psp-payment-method-request-dto.js +0 -32
- package/dist/models/create-refund-response-class.d.ts +0 -25
- package/dist/models/create-refund-response-class.js +0 -15
- package/dist/models/deactivate-payment-reminder-response-class.d.ts +0 -25
- package/dist/models/deactivate-payment-reminder-response-class.js +0 -15
- package/dist/models/get-bank-transactions-response-class.d.ts +0 -25
- package/dist/models/get-bank-transactions-response-class.js +0 -15
- package/dist/models/get-payment-method-response-class.d.ts +0 -25
- package/dist/models/get-payment-method-response-class.js +0 -15
- package/dist/models/get-payment-response-class.d.ts +0 -25
- package/dist/models/get-payment-response-class.js +0 -15
- package/dist/models/get-refund-response-class.d.ts +0 -25
- package/dist/models/get-refund-response-class.js +0 -15
- package/dist/models/get-request-dto.d.ts +0 -30
- package/dist/models/get-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-braintree-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-braintree-payment-setup-response-class.d.ts +0 -24
- package/dist/models/initiate-braintree-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-payment-setup-request-dto.d.ts +0 -44
- package/dist/models/initiate-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-payment-setup-response-class.d.ts +0 -32
- package/dist/models/initiate-payment-setup-response-class.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-request-dto.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-request-dto.js +0 -15
- package/dist/models/initiate-stripe-payment-setup-response-class.d.ts +0 -30
- package/dist/models/initiate-stripe-payment-setup-response-class.js +0 -15
- package/dist/models/list-bank-accounts-response-class.d.ts +0 -31
- package/dist/models/list-bank-accounts-response-class.js +0 -15
- package/dist/models/list-bank-transactions-response-class.d.ts +0 -31
- package/dist/models/list-bank-transactions-response-class.js +0 -15
- package/dist/models/list-payment-methods-response-class.d.ts +0 -31
- package/dist/models/list-payment-methods-response-class.js +0 -15
- package/dist/models/list-payment-reminders-response-class.d.ts +0 -31
- package/dist/models/list-payment-reminders-response-class.js +0 -15
- package/dist/models/list-payments-response-class.d.ts +0 -31
- package/dist/models/list-payments-response-class.js +0 -15
- package/dist/models/list-refunds-response-class.d.ts +0 -31
- package/dist/models/list-refunds-response-class.js +0 -15
- package/dist/models/payment-class.d.ts +0 -103
- package/dist/models/payment-class.js +0 -15
- package/dist/models/payment-method-class.d.ts +0 -66
- package/dist/models/payment-method-class.js +0 -15
- package/dist/models/payment-reminder-class.d.ts +0 -112
- package/dist/models/payment-reminder-class.js +0 -36
- package/dist/models/refund-class.d.ts +0 -104
- package/dist/models/refund-class.js +0 -28
- package/dist/models/sepa-direct-dto.d.ts +0 -24
- package/dist/models/sepa-direct-dto.js +0 -15
- package/dist/models/symphony-profile-limited-response-dto.d.ts +0 -42
- package/dist/models/symphony-profile-limited-response-dto.js +0 -15
- package/dist/models/tenant-bank-account-response-class.js +0 -15
- package/dist/models/transaction-class.d.ts +0 -54
- package/dist/models/transaction-class.js +0 -15
- package/models/bank-account-class.ts +0 -60
- package/models/billing-profile-dto.ts +0 -44
- package/models/billing-profile-limited-response-dto.ts +0 -60
- package/models/complete-braintree-payment-setup-request-dto.ts +0 -54
- package/models/complete-payment-setup-request-dto.ts +0 -38
- package/models/complete-payment-setup-response-class.ts +0 -31
- package/models/complete-stripe-payment-setup-request-dto.ts +0 -66
- package/models/create-payment-method-response-class.ts +0 -31
- package/models/create-payment-response-class.ts +0 -31
- package/models/create-psp-payment-method-request-dto.ts +0 -70
- package/models/create-refund-response-class.ts +0 -31
- package/models/deactivate-payment-reminder-response-class.ts +0 -31
- package/models/get-bank-transactions-response-class.ts +0 -31
- package/models/get-payment-method-response-class.ts +0 -31
- package/models/get-payment-response-class.ts +0 -31
- package/models/get-refund-response-class.ts +0 -31
- package/models/get-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-request-dto.ts +0 -36
- package/models/initiate-braintree-payment-setup-response-class.ts +0 -30
- package/models/initiate-payment-setup-request-dto.ts +0 -50
- package/models/initiate-payment-setup-response-class.ts +0 -38
- package/models/initiate-stripe-payment-setup-request-dto.ts +0 -36
- package/models/initiate-stripe-payment-setup-response-class.ts +0 -36
- package/models/list-bank-accounts-response-class.ts +0 -37
- package/models/list-bank-transactions-response-class.ts +0 -37
- package/models/list-payment-methods-response-class.ts +0 -37
- package/models/list-payment-reminders-response-class.ts +0 -37
- package/models/list-payments-response-class.ts +0 -37
- package/models/list-refunds-response-class.ts +0 -37
- package/models/payment-class.ts +0 -109
- package/models/payment-method-class.ts +0 -72
- package/models/payment-reminder-class.ts +0 -122
- package/models/refund-class.ts +0 -114
- package/models/sepa-direct-dto.ts +0 -30
- package/models/symphony-profile-limited-response-dto.ts +0 -48
- package/models/transaction-class.ts +0 -60
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Emil Payment Service
|
|
3
|
-
* This service directly communicates with the various Payment Service Providers (PSPs)
|
|
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
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 1.0
|
|
6
6
|
* Contact: kontakt@emil.de
|
|
@@ -12,65 +12,67 @@
|
|
|
12
12
|
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
15
|
+
import { LinkBankTransactionRequestDtoRest } from '../models';
|
|
16
|
+
import { UnlinkBankTransactionRequestDtoRest } from '../models';
|
|
17
17
|
/**
|
|
18
18
|
* BankTransactionApi - axios parameter creator
|
|
19
19
|
* @export
|
|
20
20
|
*/
|
|
21
21
|
export declare const BankTransactionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* Retrieves the details of the
|
|
24
|
-
* @summary Retrieve the
|
|
25
|
-
* @param {string} code
|
|
23
|
+
* 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.
|
|
24
|
+
* @summary Retrieve the bank transaction
|
|
25
|
+
* @param {string} code Unique identifier for the object.
|
|
26
26
|
* @param {string} [authorization] Bearer Token
|
|
27
|
-
* @param {string} [expand] Expand the
|
|
27
|
+
* @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>
|
|
28
28
|
* @param {*} [options] Override http request option.
|
|
29
29
|
* @throws {RequiredError}
|
|
30
30
|
*/
|
|
31
31
|
getBankTransaction: (code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* This will import bank transactions from a swift MT940 file
|
|
34
34
|
* @summary Create the bank transactions
|
|
35
|
+
* @param {any} file Swift MT940 file to import bank transactions from. Extension must be .txt or .sta.<br/> Allowed Content Types: text/plain, application/octet-stream
|
|
35
36
|
* @param {string} [authorization] Bearer Token
|
|
36
|
-
* @param {any} [file]
|
|
37
37
|
* @param {*} [options] Override http request option.
|
|
38
38
|
* @throws {RequiredError}
|
|
39
39
|
*/
|
|
40
|
-
importBankTransactions: (
|
|
40
|
+
importBankTransactions: (file: any, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
41
41
|
/**
|
|
42
42
|
* Links a bank transaction with an invoice
|
|
43
|
-
* @summary Link
|
|
43
|
+
* @summary Link bank transaction
|
|
44
44
|
* @param {string} code Code of the bank transaction to link
|
|
45
|
+
* @param {LinkBankTransactionRequestDtoRest} linkBankTransactionRequestDtoRest
|
|
45
46
|
* @param {string} [authorization] Bearer Token
|
|
46
47
|
* @param {*} [options] Override http request option.
|
|
47
48
|
* @throws {RequiredError}
|
|
48
49
|
*/
|
|
49
|
-
linkBankTransaction: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
|
+
linkBankTransaction: (code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
50
51
|
/**
|
|
51
|
-
* Returns a list of bank transactions you have previously created.
|
|
52
|
+
* 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.
|
|
52
53
|
* @summary List bank transactions
|
|
53
54
|
* @param {string} [authorization] Bearer Token
|
|
54
55
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
55
56
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
56
|
-
* @param {
|
|
57
|
-
* @param {
|
|
58
|
-
* @param {
|
|
59
|
-
* @param {string} [expand] Expand the
|
|
60
|
-
* @param {
|
|
57
|
+
* @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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
58
|
+
* @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>
|
|
59
|
+
* @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, amount, transactionDate, entryDate</i>
|
|
60
|
+
* @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>
|
|
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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
61
62
|
* @param {*} [options] Override http request option.
|
|
62
63
|
* @throws {RequiredError}
|
|
63
64
|
*/
|
|
64
|
-
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
65
|
+
listBankTransactions: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
65
66
|
/**
|
|
66
67
|
* Unlinks an already linked bank transaction
|
|
67
|
-
* @summary Unlink
|
|
68
|
+
* @summary Unlink bank transaction
|
|
68
69
|
* @param {string} code Code of the bank transaction to unlink
|
|
70
|
+
* @param {UnlinkBankTransactionRequestDtoRest} unlinkBankTransactionRequestDtoRest
|
|
69
71
|
* @param {string} [authorization] Bearer Token
|
|
70
72
|
* @param {*} [options] Override http request option.
|
|
71
73
|
* @throws {RequiredError}
|
|
72
74
|
*/
|
|
73
|
-
unlinkBankTransaction: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
75
|
+
unlinkBankTransaction: (code: string, unlinkBankTransactionRequestDtoRest: UnlinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
76
|
};
|
|
75
77
|
/**
|
|
76
78
|
* BankTransactionApi - functional programming interface
|
|
@@ -78,57 +80,59 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
78
80
|
*/
|
|
79
81
|
export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
80
82
|
/**
|
|
81
|
-
* Retrieves the details of the
|
|
82
|
-
* @summary Retrieve the
|
|
83
|
-
* @param {string} code
|
|
83
|
+
* 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.
|
|
84
|
+
* @summary Retrieve the bank transaction
|
|
85
|
+
* @param {string} code Unique identifier for the object.
|
|
84
86
|
* @param {string} [authorization] Bearer Token
|
|
85
|
-
* @param {string} [expand] Expand the
|
|
87
|
+
* @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>
|
|
86
88
|
* @param {*} [options] Override http request option.
|
|
87
89
|
* @throws {RequiredError}
|
|
88
90
|
*/
|
|
89
|
-
getBankTransaction(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
91
|
+
getBankTransaction(code: string, authorization?: string, expand?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
90
92
|
/**
|
|
91
|
-
*
|
|
93
|
+
* This will import bank transactions from a swift MT940 file
|
|
92
94
|
* @summary Create the bank transactions
|
|
95
|
+
* @param {any} file Swift MT940 file to import bank transactions from. Extension must be .txt or .sta.<br/> Allowed Content Types: text/plain, application/octet-stream
|
|
93
96
|
* @param {string} [authorization] Bearer Token
|
|
94
|
-
* @param {any} [file]
|
|
95
97
|
* @param {*} [options] Override http request option.
|
|
96
98
|
* @throws {RequiredError}
|
|
97
99
|
*/
|
|
98
|
-
importBankTransactions(
|
|
100
|
+
importBankTransactions(file: any, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
99
101
|
/**
|
|
100
102
|
* Links a bank transaction with an invoice
|
|
101
|
-
* @summary Link
|
|
103
|
+
* @summary Link bank transaction
|
|
102
104
|
* @param {string} code Code of the bank transaction to link
|
|
105
|
+
* @param {LinkBankTransactionRequestDtoRest} linkBankTransactionRequestDtoRest
|
|
103
106
|
* @param {string} [authorization] Bearer Token
|
|
104
107
|
* @param {*} [options] Override http request option.
|
|
105
108
|
* @throws {RequiredError}
|
|
106
109
|
*/
|
|
107
|
-
linkBankTransaction(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
110
|
+
linkBankTransaction(code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
108
111
|
/**
|
|
109
|
-
* Returns a list of bank transactions you have previously created.
|
|
112
|
+
* 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.
|
|
110
113
|
* @summary List bank transactions
|
|
111
114
|
* @param {string} [authorization] Bearer Token
|
|
112
115
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
113
116
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
114
|
-
* @param {
|
|
115
|
-
* @param {
|
|
116
|
-
* @param {
|
|
117
|
-
* @param {string} [expand] Expand the
|
|
118
|
-
* @param {
|
|
117
|
+
* @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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
118
|
+
* @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>
|
|
119
|
+
* @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, amount, transactionDate, entryDate</i>
|
|
120
|
+
* @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>
|
|
121
|
+
* @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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
119
122
|
* @param {*} [options] Override http request option.
|
|
120
123
|
* @throws {RequiredError}
|
|
121
124
|
*/
|
|
122
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
125
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
123
126
|
/**
|
|
124
127
|
* Unlinks an already linked bank transaction
|
|
125
|
-
* @summary Unlink
|
|
128
|
+
* @summary Unlink bank transaction
|
|
126
129
|
* @param {string} code Code of the bank transaction to unlink
|
|
130
|
+
* @param {UnlinkBankTransactionRequestDtoRest} unlinkBankTransactionRequestDtoRest
|
|
127
131
|
* @param {string} [authorization] Bearer Token
|
|
128
132
|
* @param {*} [options] Override http request option.
|
|
129
133
|
* @throws {RequiredError}
|
|
130
134
|
*/
|
|
131
|
-
unlinkBankTransaction(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
135
|
+
unlinkBankTransaction(code: string, unlinkBankTransactionRequestDtoRest: UnlinkBankTransactionRequestDtoRest, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
132
136
|
};
|
|
133
137
|
/**
|
|
134
138
|
* BankTransactionApi - factory interface
|
|
@@ -136,57 +140,59 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
136
140
|
*/
|
|
137
141
|
export declare const BankTransactionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
138
142
|
/**
|
|
139
|
-
* Retrieves the details of the
|
|
140
|
-
* @summary Retrieve the
|
|
141
|
-
* @param {string} code
|
|
143
|
+
* 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.
|
|
144
|
+
* @summary Retrieve the bank transaction
|
|
145
|
+
* @param {string} code Unique identifier for the object.
|
|
142
146
|
* @param {string} [authorization] Bearer Token
|
|
143
|
-
* @param {string} [expand] Expand the
|
|
147
|
+
* @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>
|
|
144
148
|
* @param {*} [options] Override http request option.
|
|
145
149
|
* @throws {RequiredError}
|
|
146
150
|
*/
|
|
147
|
-
getBankTransaction(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<
|
|
151
|
+
getBankTransaction(code: string, authorization?: string, expand?: string, options?: any): AxiosPromise<void>;
|
|
148
152
|
/**
|
|
149
|
-
*
|
|
153
|
+
* This will import bank transactions from a swift MT940 file
|
|
150
154
|
* @summary Create the bank transactions
|
|
155
|
+
* @param {any} file Swift MT940 file to import bank transactions from. Extension must be .txt or .sta.<br/> Allowed Content Types: text/plain, application/octet-stream
|
|
151
156
|
* @param {string} [authorization] Bearer Token
|
|
152
|
-
* @param {any} [file]
|
|
153
157
|
* @param {*} [options] Override http request option.
|
|
154
158
|
* @throws {RequiredError}
|
|
155
159
|
*/
|
|
156
|
-
importBankTransactions(
|
|
160
|
+
importBankTransactions(file: any, authorization?: string, options?: any): AxiosPromise<void>;
|
|
157
161
|
/**
|
|
158
162
|
* Links a bank transaction with an invoice
|
|
159
|
-
* @summary Link
|
|
163
|
+
* @summary Link bank transaction
|
|
160
164
|
* @param {string} code Code of the bank transaction to link
|
|
165
|
+
* @param {LinkBankTransactionRequestDtoRest} linkBankTransactionRequestDtoRest
|
|
161
166
|
* @param {string} [authorization] Bearer Token
|
|
162
167
|
* @param {*} [options] Override http request option.
|
|
163
168
|
* @throws {RequiredError}
|
|
164
169
|
*/
|
|
165
|
-
linkBankTransaction(code: string, authorization?: string, options?: any): AxiosPromise<
|
|
170
|
+
linkBankTransaction(code: string, linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest, authorization?: string, options?: any): AxiosPromise<void>;
|
|
166
171
|
/**
|
|
167
|
-
* Returns a list of bank transactions you have previously created.
|
|
172
|
+
* 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.
|
|
168
173
|
* @summary List bank transactions
|
|
169
174
|
* @param {string} [authorization] Bearer Token
|
|
170
175
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
171
176
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
172
|
-
* @param {
|
|
173
|
-
* @param {
|
|
174
|
-
* @param {
|
|
175
|
-
* @param {string} [expand] Expand the
|
|
176
|
-
* @param {
|
|
177
|
+
* @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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
178
|
+
* @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, amount, transactionDate, entryDate</i>
|
|
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>
|
|
181
|
+
* @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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
177
182
|
* @param {*} [options] Override http request option.
|
|
178
183
|
* @throws {RequiredError}
|
|
179
184
|
*/
|
|
180
|
-
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?:
|
|
185
|
+
listBankTransactions(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<void>;
|
|
181
186
|
/**
|
|
182
187
|
* Unlinks an already linked bank transaction
|
|
183
|
-
* @summary Unlink
|
|
188
|
+
* @summary Unlink bank transaction
|
|
184
189
|
* @param {string} code Code of the bank transaction to unlink
|
|
190
|
+
* @param {UnlinkBankTransactionRequestDtoRest} unlinkBankTransactionRequestDtoRest
|
|
185
191
|
* @param {string} [authorization] Bearer Token
|
|
186
192
|
* @param {*} [options] Override http request option.
|
|
187
193
|
* @throws {RequiredError}
|
|
188
194
|
*/
|
|
189
|
-
unlinkBankTransaction(code: string, authorization?: string, options?: any): AxiosPromise<
|
|
195
|
+
unlinkBankTransaction(code: string, unlinkBankTransactionRequestDtoRest: UnlinkBankTransactionRequestDtoRest, authorization?: string, options?: any): AxiosPromise<void>;
|
|
190
196
|
};
|
|
191
197
|
/**
|
|
192
198
|
* Request parameters for getBankTransaction operation in BankTransactionApi.
|
|
@@ -195,7 +201,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
195
201
|
*/
|
|
196
202
|
export interface BankTransactionApiGetBankTransactionRequest {
|
|
197
203
|
/**
|
|
198
|
-
*
|
|
204
|
+
* Unique identifier for the object.
|
|
199
205
|
* @type {string}
|
|
200
206
|
* @memberof BankTransactionApiGetBankTransaction
|
|
201
207
|
*/
|
|
@@ -207,7 +213,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
207
213
|
*/
|
|
208
214
|
readonly authorization?: string;
|
|
209
215
|
/**
|
|
210
|
-
* Expand the
|
|
216
|
+
* 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>
|
|
211
217
|
* @type {string}
|
|
212
218
|
* @memberof BankTransactionApiGetBankTransaction
|
|
213
219
|
*/
|
|
@@ -220,17 +226,17 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
220
226
|
*/
|
|
221
227
|
export interface BankTransactionApiImportBankTransactionsRequest {
|
|
222
228
|
/**
|
|
223
|
-
*
|
|
224
|
-
* @type {
|
|
229
|
+
* Swift MT940 file to import bank transactions from. Extension must be .txt or .sta.<br/> Allowed Content Types: text/plain, application/octet-stream
|
|
230
|
+
* @type {any}
|
|
225
231
|
* @memberof BankTransactionApiImportBankTransactions
|
|
226
232
|
*/
|
|
227
|
-
readonly
|
|
233
|
+
readonly file: any;
|
|
228
234
|
/**
|
|
229
|
-
*
|
|
230
|
-
* @type {
|
|
235
|
+
* Bearer Token
|
|
236
|
+
* @type {string}
|
|
231
237
|
* @memberof BankTransactionApiImportBankTransactions
|
|
232
238
|
*/
|
|
233
|
-
readonly
|
|
239
|
+
readonly authorization?: string;
|
|
234
240
|
}
|
|
235
241
|
/**
|
|
236
242
|
* Request parameters for linkBankTransaction operation in BankTransactionApi.
|
|
@@ -244,6 +250,12 @@ export interface BankTransactionApiLinkBankTransactionRequest {
|
|
|
244
250
|
* @memberof BankTransactionApiLinkBankTransaction
|
|
245
251
|
*/
|
|
246
252
|
readonly code: string;
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @type {LinkBankTransactionRequestDtoRest}
|
|
256
|
+
* @memberof BankTransactionApiLinkBankTransaction
|
|
257
|
+
*/
|
|
258
|
+
readonly linkBankTransactionRequestDtoRest: LinkBankTransactionRequestDtoRest;
|
|
247
259
|
/**
|
|
248
260
|
* Bearer Token
|
|
249
261
|
* @type {string}
|
|
@@ -276,35 +288,35 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
276
288
|
*/
|
|
277
289
|
readonly pageToken?: any;
|
|
278
290
|
/**
|
|
279
|
-
* Filter the response by one or multiple fields.
|
|
280
|
-
* @type {
|
|
291
|
+
* 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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
292
|
+
* @type {string}
|
|
281
293
|
* @memberof BankTransactionApiListBankTransactions
|
|
282
294
|
*/
|
|
283
|
-
readonly filter?:
|
|
295
|
+
readonly filter?: string;
|
|
284
296
|
/**
|
|
285
|
-
* Search the
|
|
286
|
-
* @type {
|
|
297
|
+
* 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>
|
|
298
|
+
* @type {string}
|
|
287
299
|
* @memberof BankTransactionApiListBankTransactions
|
|
288
300
|
*/
|
|
289
|
-
readonly search?:
|
|
301
|
+
readonly search?: string;
|
|
290
302
|
/**
|
|
291
|
-
*
|
|
292
|
-
* @type {
|
|
303
|
+
* 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, amount, transactionDate, entryDate</i>
|
|
304
|
+
* @type {string}
|
|
293
305
|
* @memberof BankTransactionApiListBankTransactions
|
|
294
306
|
*/
|
|
295
|
-
readonly order?:
|
|
307
|
+
readonly order?: string;
|
|
296
308
|
/**
|
|
297
|
-
* Expand the
|
|
309
|
+
* 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>
|
|
298
310
|
* @type {string}
|
|
299
311
|
* @memberof BankTransactionApiListBankTransactions
|
|
300
312
|
*/
|
|
301
313
|
readonly expand?: string;
|
|
302
314
|
/**
|
|
303
|
-
* Filters the response by one or multiple fields.
|
|
304
|
-
* @type {
|
|
315
|
+
* 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, swiftMessageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
316
|
+
* @type {string}
|
|
305
317
|
* @memberof BankTransactionApiListBankTransactions
|
|
306
318
|
*/
|
|
307
|
-
readonly filters?:
|
|
319
|
+
readonly filters?: string;
|
|
308
320
|
}
|
|
309
321
|
/**
|
|
310
322
|
* Request parameters for unlinkBankTransaction operation in BankTransactionApi.
|
|
@@ -318,6 +330,12 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
318
330
|
* @memberof BankTransactionApiUnlinkBankTransaction
|
|
319
331
|
*/
|
|
320
332
|
readonly code: string;
|
|
333
|
+
/**
|
|
334
|
+
*
|
|
335
|
+
* @type {UnlinkBankTransactionRequestDtoRest}
|
|
336
|
+
* @memberof BankTransactionApiUnlinkBankTransaction
|
|
337
|
+
*/
|
|
338
|
+
readonly unlinkBankTransactionRequestDtoRest: UnlinkBankTransactionRequestDtoRest;
|
|
321
339
|
/**
|
|
322
340
|
* Bearer Token
|
|
323
341
|
* @type {string}
|
|
@@ -333,48 +351,48 @@ export interface BankTransactionApiUnlinkBankTransactionRequest {
|
|
|
333
351
|
*/
|
|
334
352
|
export declare class BankTransactionApi extends BaseAPI {
|
|
335
353
|
/**
|
|
336
|
-
* Retrieves the details of the
|
|
337
|
-
* @summary Retrieve the
|
|
354
|
+
* 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.
|
|
355
|
+
* @summary Retrieve the bank transaction
|
|
338
356
|
* @param {BankTransactionApiGetBankTransactionRequest} requestParameters Request parameters.
|
|
339
357
|
* @param {*} [options] Override http request option.
|
|
340
358
|
* @throws {RequiredError}
|
|
341
359
|
* @memberof BankTransactionApi
|
|
342
360
|
*/
|
|
343
|
-
getBankTransaction(requestParameters: BankTransactionApiGetBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
361
|
+
getBankTransaction(requestParameters: BankTransactionApiGetBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
344
362
|
/**
|
|
345
|
-
*
|
|
363
|
+
* This will import bank transactions from a swift MT940 file
|
|
346
364
|
* @summary Create the bank transactions
|
|
347
365
|
* @param {BankTransactionApiImportBankTransactionsRequest} requestParameters Request parameters.
|
|
348
366
|
* @param {*} [options] Override http request option.
|
|
349
367
|
* @throws {RequiredError}
|
|
350
368
|
* @memberof BankTransactionApi
|
|
351
369
|
*/
|
|
352
|
-
importBankTransactions(requestParameters
|
|
370
|
+
importBankTransactions(requestParameters: BankTransactionApiImportBankTransactionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
353
371
|
/**
|
|
354
372
|
* Links a bank transaction with an invoice
|
|
355
|
-
* @summary Link
|
|
373
|
+
* @summary Link bank transaction
|
|
356
374
|
* @param {BankTransactionApiLinkBankTransactionRequest} requestParameters Request parameters.
|
|
357
375
|
* @param {*} [options] Override http request option.
|
|
358
376
|
* @throws {RequiredError}
|
|
359
377
|
* @memberof BankTransactionApi
|
|
360
378
|
*/
|
|
361
|
-
linkBankTransaction(requestParameters: BankTransactionApiLinkBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
379
|
+
linkBankTransaction(requestParameters: BankTransactionApiLinkBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
362
380
|
/**
|
|
363
|
-
* Returns a list of bank transactions you have previously created.
|
|
381
|
+
* 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.
|
|
364
382
|
* @summary List bank transactions
|
|
365
383
|
* @param {BankTransactionApiListBankTransactionsRequest} requestParameters Request parameters.
|
|
366
384
|
* @param {*} [options] Override http request option.
|
|
367
385
|
* @throws {RequiredError}
|
|
368
386
|
* @memberof BankTransactionApi
|
|
369
387
|
*/
|
|
370
|
-
listBankTransactions(requestParameters?: BankTransactionApiListBankTransactionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
388
|
+
listBankTransactions(requestParameters?: BankTransactionApiListBankTransactionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
371
389
|
/**
|
|
372
390
|
* Unlinks an already linked bank transaction
|
|
373
|
-
* @summary Unlink
|
|
391
|
+
* @summary Unlink bank transaction
|
|
374
392
|
* @param {BankTransactionApiUnlinkBankTransactionRequest} requestParameters Request parameters.
|
|
375
393
|
* @param {*} [options] Override http request option.
|
|
376
394
|
* @throws {RequiredError}
|
|
377
395
|
* @memberof BankTransactionApi
|
|
378
396
|
*/
|
|
379
|
-
unlinkBankTransaction(requestParameters: BankTransactionApiUnlinkBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
397
|
+
unlinkBankTransaction(requestParameters: BankTransactionApiUnlinkBankTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
380
398
|
}
|