@emilgroup/payment-sdk 1.13.1-beta.49 → 1.13.1-beta.50
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 +8 -8
- package/dist/api/bank-transaction-api.d.ts +8 -8
- package/dist/api/bank-transaction-api.js +6 -6
- package/dist/models/bank-transaction-class-without-expand-properties.d.ts +18 -0
- package/dist/models/bank-transaction-class-without-expand-properties.js +5 -0
- package/dist/models/bank-transaction-class.d.ts +18 -0
- package/dist/models/bank-transaction-class.js +5 -0
- package/dist/models/unlinked-bank-transaction-response-class.d.ts +18 -0
- package/dist/models/unlinked-bank-transaction-response-class.js +5 -0
- package/models/bank-transaction-class-without-expand-properties.ts +21 -0
- package/models/bank-transaction-class.ts +21 -0
- package/models/unlinked-bank-transaction-response-class.ts +21 -0
- 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.50 --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.50
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PaymentsApi`.
|
|
@@ -92,7 +92,7 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
|
|
|
92
92
|
* @summary Retrieve the bank transaction
|
|
93
93
|
* @param {string} code
|
|
94
94
|
* @param {string} [authorization] Bearer Token
|
|
95
|
-
* @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>
|
|
95
|
+
* @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, linkedBankOrder<i>
|
|
96
96
|
* @param {*} [options] Override http request option.
|
|
97
97
|
* @throws {RequiredError}
|
|
98
98
|
*/
|
|
@@ -249,7 +249,7 @@ export const BankTransactionApiAxiosParamCreator = function (configuration?: Con
|
|
|
249
249
|
* @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>
|
|
250
250
|
* @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>
|
|
251
251
|
* @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>
|
|
252
|
-
* @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
|
+
* @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, linkedBankOrder<i>
|
|
253
253
|
* @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>
|
|
254
254
|
* @param {*} [options] Override http request option.
|
|
255
255
|
* @throws {RequiredError}
|
|
@@ -394,7 +394,7 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
394
394
|
* @summary Retrieve the bank transaction
|
|
395
395
|
* @param {string} code
|
|
396
396
|
* @param {string} [authorization] Bearer Token
|
|
397
|
-
* @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>
|
|
397
|
+
* @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, linkedBankOrder<i>
|
|
398
398
|
* @param {*} [options] Override http request option.
|
|
399
399
|
* @throws {RequiredError}
|
|
400
400
|
*/
|
|
@@ -436,7 +436,7 @@ export const BankTransactionApiFp = function(configuration?: Configuration) {
|
|
|
436
436
|
* @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>
|
|
437
437
|
* @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>
|
|
438
438
|
* @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>
|
|
439
|
-
* @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>
|
|
439
|
+
* @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, linkedBankOrder<i>
|
|
440
440
|
* @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>
|
|
441
441
|
* @param {*} [options] Override http request option.
|
|
442
442
|
* @throws {RequiredError}
|
|
@@ -484,7 +484,7 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
484
484
|
* @summary Retrieve the bank transaction
|
|
485
485
|
* @param {string} code
|
|
486
486
|
* @param {string} [authorization] Bearer Token
|
|
487
|
-
* @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>
|
|
487
|
+
* @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, linkedBankOrder<i>
|
|
488
488
|
* @param {*} [options] Override http request option.
|
|
489
489
|
* @throws {RequiredError}
|
|
490
490
|
*/
|
|
@@ -523,7 +523,7 @@ export const BankTransactionApiFactory = function (configuration?: Configuration
|
|
|
523
523
|
* @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>
|
|
524
524
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: id, createdAt, amount</i>
|
|
525
525
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, transactionDate, entryDate</i>
|
|
526
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
526
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress, linkedBankOrder<i>
|
|
527
527
|
* @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>
|
|
528
528
|
* @param {*} [options] Override http request option.
|
|
529
529
|
* @throws {RequiredError}
|
|
@@ -588,7 +588,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
588
588
|
readonly authorization?: string
|
|
589
589
|
|
|
590
590
|
/**
|
|
591
|
-
* 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>
|
|
591
|
+
* 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, linkedBankOrder<i>
|
|
592
592
|
* @type {string}
|
|
593
593
|
* @memberof BankTransactionApiGetBankTransaction
|
|
594
594
|
*/
|
|
@@ -693,7 +693,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
693
693
|
readonly order?: string
|
|
694
694
|
|
|
695
695
|
/**
|
|
696
|
-
* 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>
|
|
696
|
+
* 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, linkedBankOrder<i>
|
|
697
697
|
* @type {string}
|
|
698
698
|
* @memberof BankTransactionApiListBankTransactions
|
|
699
699
|
*/
|
|
@@ -39,7 +39,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
39
39
|
* @summary Retrieve the bank transaction
|
|
40
40
|
* @param {string} code
|
|
41
41
|
* @param {string} [authorization] Bearer Token
|
|
42
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
42
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress, linkedBankOrder<i>
|
|
43
43
|
* @param {*} [options] Override http request option.
|
|
44
44
|
* @throws {RequiredError}
|
|
45
45
|
*/
|
|
@@ -72,7 +72,7 @@ export declare const BankTransactionApiAxiosParamCreator: (configuration?: Confi
|
|
|
72
72
|
* @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>
|
|
73
73
|
* @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>
|
|
74
74
|
* @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>
|
|
75
|
-
* @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
|
+
* @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, linkedBankOrder<i>
|
|
76
76
|
* @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>
|
|
77
77
|
* @param {*} [options] Override http request option.
|
|
78
78
|
* @throws {RequiredError}
|
|
@@ -108,7 +108,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
108
108
|
* @summary Retrieve the bank transaction
|
|
109
109
|
* @param {string} code
|
|
110
110
|
* @param {string} [authorization] Bearer Token
|
|
111
|
-
* @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>
|
|
111
|
+
* @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, linkedBankOrder<i>
|
|
112
112
|
* @param {*} [options] Override http request option.
|
|
113
113
|
* @throws {RequiredError}
|
|
114
114
|
*/
|
|
@@ -141,7 +141,7 @@ export declare const BankTransactionApiFp: (configuration?: Configuration) => {
|
|
|
141
141
|
* @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>
|
|
142
142
|
* @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>
|
|
143
143
|
* @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>
|
|
144
|
-
* @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>
|
|
144
|
+
* @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, linkedBankOrder<i>
|
|
145
145
|
* @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>
|
|
146
146
|
* @param {*} [options] Override http request option.
|
|
147
147
|
* @throws {RequiredError}
|
|
@@ -177,7 +177,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
177
177
|
* @summary Retrieve the bank transaction
|
|
178
178
|
* @param {string} code
|
|
179
179
|
* @param {string} [authorization] Bearer Token
|
|
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, invoiceMatchSuggestions, suggestionGenerationProgress<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, invoiceMatchSuggestions, suggestionGenerationProgress, linkedBankOrder<i>
|
|
181
181
|
* @param {*} [options] Override http request option.
|
|
182
182
|
* @throws {RequiredError}
|
|
183
183
|
*/
|
|
@@ -210,7 +210,7 @@ export declare const BankTransactionApiFactory: (configuration?: Configuration,
|
|
|
210
210
|
* @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>
|
|
211
211
|
* @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>
|
|
212
212
|
* @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>
|
|
213
|
-
* @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>
|
|
213
|
+
* @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, linkedBankOrder<i>
|
|
214
214
|
* @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>
|
|
215
215
|
* @param {*} [options] Override http request option.
|
|
216
216
|
* @throws {RequiredError}
|
|
@@ -265,7 +265,7 @@ export interface BankTransactionApiGetBankTransactionRequest {
|
|
|
265
265
|
*/
|
|
266
266
|
readonly authorization?: string;
|
|
267
267
|
/**
|
|
268
|
-
* 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>
|
|
268
|
+
* 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, linkedBankOrder<i>
|
|
269
269
|
* @type {string}
|
|
270
270
|
* @memberof BankTransactionApiGetBankTransaction
|
|
271
271
|
*/
|
|
@@ -358,7 +358,7 @@ export interface BankTransactionApiListBankTransactionsRequest {
|
|
|
358
358
|
*/
|
|
359
359
|
readonly order?: string;
|
|
360
360
|
/**
|
|
361
|
-
* 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>
|
|
361
|
+
* 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, linkedBankOrder<i>
|
|
362
362
|
* @type {string}
|
|
363
363
|
* @memberof BankTransactionApiListBankTransactions
|
|
364
364
|
*/
|
|
@@ -145,7 +145,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
* @summary Retrieve the bank transaction
|
|
146
146
|
* @param {string} code
|
|
147
147
|
* @param {string} [authorization] Bearer Token
|
|
148
|
-
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress<i>
|
|
148
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: bankAccount, transaction, invoiceMatchSuggestions, suggestionGenerationProgress, linkedBankOrder<i>
|
|
149
149
|
* @param {*} [options] Override http request option.
|
|
150
150
|
* @throws {RequiredError}
|
|
151
151
|
*/
|
|
@@ -306,7 +306,7 @@ var BankTransactionApiAxiosParamCreator = function (configuration) {
|
|
|
306
306
|
* @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>
|
|
307
307
|
* @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>
|
|
308
308
|
* @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>
|
|
309
|
-
* @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
|
+
* @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, linkedBankOrder<i>
|
|
310
310
|
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, bankAccountId, bankAccountNumber, messageReference, amount, currency, transactionReference, transactionDate, entryDate, isLinked</i>
|
|
311
311
|
* @param {*} [options] Override http request option.
|
|
312
312
|
* @throws {RequiredError}
|
|
@@ -458,7 +458,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
458
458
|
* @summary Retrieve the bank transaction
|
|
459
459
|
* @param {string} code
|
|
460
460
|
* @param {string} [authorization] Bearer Token
|
|
461
|
-
* @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>
|
|
461
|
+
* @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, linkedBankOrder<i>
|
|
462
462
|
* @param {*} [options] Override http request option.
|
|
463
463
|
* @throws {RequiredError}
|
|
464
464
|
*/
|
|
@@ -527,7 +527,7 @@ var BankTransactionApiFp = function (configuration) {
|
|
|
527
527
|
* @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>
|
|
528
528
|
* @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>
|
|
529
529
|
* @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>
|
|
530
|
-
* @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>
|
|
530
|
+
* @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, linkedBankOrder<i>
|
|
531
531
|
* @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>
|
|
532
532
|
* @param {*} [options] Override http request option.
|
|
533
533
|
* @throws {RequiredError}
|
|
@@ -593,7 +593,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
593
593
|
* @summary Retrieve the bank transaction
|
|
594
594
|
* @param {string} code
|
|
595
595
|
* @param {string} [authorization] Bearer Token
|
|
596
|
-
* @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>
|
|
596
|
+
* @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, linkedBankOrder<i>
|
|
597
597
|
* @param {*} [options] Override http request option.
|
|
598
598
|
* @throws {RequiredError}
|
|
599
599
|
*/
|
|
@@ -632,7 +632,7 @@ var BankTransactionApiFactory = function (configuration, basePath, axios) {
|
|
|
632
632
|
* @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>
|
|
633
633
|
* @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>
|
|
634
634
|
* @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>
|
|
635
|
-
* @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>
|
|
635
|
+
* @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, linkedBankOrder<i>
|
|
636
636
|
* @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>
|
|
637
637
|
* @param {*} [options] Override http request option.
|
|
638
638
|
* @throws {RequiredError}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -45,6 +46,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
45
46
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
46
47
|
*/
|
|
47
48
|
'messageReference'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Label of the transaction
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
53
|
+
*/
|
|
54
|
+
'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
|
|
48
55
|
/**
|
|
49
56
|
* Currency of the transaction.
|
|
50
57
|
* @type {string}
|
|
@@ -105,6 +112,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
105
112
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
106
113
|
*/
|
|
107
114
|
'isLinked': boolean;
|
|
115
|
+
/**
|
|
116
|
+
* The linked bank order object
|
|
117
|
+
* @type {BankOrderClass}
|
|
118
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
119
|
+
*/
|
|
120
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
108
121
|
/**
|
|
109
122
|
* The file format of the bank transaction
|
|
110
123
|
* @type {string}
|
|
@@ -130,3 +143,8 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
130
143
|
*/
|
|
131
144
|
'updatedBy': string;
|
|
132
145
|
}
|
|
146
|
+
export declare const BankTransactionClassWithoutExpandPropertiesLabelEnum: {
|
|
147
|
+
readonly Automated: "automated";
|
|
148
|
+
readonly Manual: "manual";
|
|
149
|
+
};
|
|
150
|
+
export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = void 0;
|
|
17
|
+
exports.BankTransactionClassWithoutExpandPropertiesLabelEnum = {
|
|
18
|
+
Automated: 'automated',
|
|
19
|
+
Manual: 'manual'
|
|
20
|
+
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
12
13
|
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
13
14
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
14
15
|
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
@@ -49,6 +50,12 @@ export interface BankTransactionClass {
|
|
|
49
50
|
* @memberof BankTransactionClass
|
|
50
51
|
*/
|
|
51
52
|
'messageReference'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Label of the transaction
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof BankTransactionClass
|
|
57
|
+
*/
|
|
58
|
+
'label'?: BankTransactionClassLabelEnum;
|
|
52
59
|
/**
|
|
53
60
|
* Currency of the transaction.
|
|
54
61
|
* @type {string}
|
|
@@ -121,6 +128,12 @@ export interface BankTransactionClass {
|
|
|
121
128
|
* @memberof BankTransactionClass
|
|
122
129
|
*/
|
|
123
130
|
'linkedTransaction'?: SharedTransactionClass;
|
|
131
|
+
/**
|
|
132
|
+
* The linked bank order object
|
|
133
|
+
* @type {BankOrderClass}
|
|
134
|
+
* @memberof BankTransactionClass
|
|
135
|
+
*/
|
|
136
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
124
137
|
/**
|
|
125
138
|
* The file format of the bank transaction
|
|
126
139
|
* @type {string}
|
|
@@ -158,3 +171,8 @@ export interface BankTransactionClass {
|
|
|
158
171
|
*/
|
|
159
172
|
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
160
173
|
}
|
|
174
|
+
export declare const BankTransactionClassLabelEnum: {
|
|
175
|
+
readonly Automated: "automated";
|
|
176
|
+
readonly Manual: "manual";
|
|
177
|
+
};
|
|
178
|
+
export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { BankOrderClass } from './bank-order-class';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -45,6 +46,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
45
46
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
46
47
|
*/
|
|
47
48
|
'messageReference'?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Label of the transaction
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
53
|
+
*/
|
|
54
|
+
'label'?: UnlinkedBankTransactionResponseClassLabelEnum;
|
|
48
55
|
/**
|
|
49
56
|
* Currency of the transaction.
|
|
50
57
|
* @type {string}
|
|
@@ -87,6 +94,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
87
94
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
88
95
|
*/
|
|
89
96
|
'isLinked': boolean;
|
|
97
|
+
/**
|
|
98
|
+
* The linked bank order object
|
|
99
|
+
* @type {BankOrderClass}
|
|
100
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
101
|
+
*/
|
|
102
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
90
103
|
/**
|
|
91
104
|
* The file format of the bank transaction
|
|
92
105
|
* @type {string}
|
|
@@ -112,3 +125,8 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
112
125
|
*/
|
|
113
126
|
'updatedBy': string;
|
|
114
127
|
}
|
|
128
|
+
export declare const UnlinkedBankTransactionResponseClassLabelEnum: {
|
|
129
|
+
readonly Automated: "automated";
|
|
130
|
+
readonly Manual: "manual";
|
|
131
|
+
};
|
|
132
|
+
export type UnlinkedBankTransactionResponseClassLabelEnum = typeof UnlinkedBankTransactionResponseClassLabelEnum[keyof typeof UnlinkedBankTransactionResponseClassLabelEnum];
|
|
@@ -13,3 +13,8 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UnlinkedBankTransactionResponseClassLabelEnum = void 0;
|
|
17
|
+
exports.UnlinkedBankTransactionResponseClassLabelEnum = {
|
|
18
|
+
Automated: 'automated',
|
|
19
|
+
Manual: 'manual'
|
|
20
|
+
};
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankOrderClass } from './bank-order-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -50,6 +51,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
50
51
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
51
52
|
*/
|
|
52
53
|
'messageReference'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Label of the transaction
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
58
|
+
*/
|
|
59
|
+
'label'?: BankTransactionClassWithoutExpandPropertiesLabelEnum;
|
|
53
60
|
/**
|
|
54
61
|
* Currency of the transaction.
|
|
55
62
|
* @type {string}
|
|
@@ -110,6 +117,12 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
110
117
|
* @memberof BankTransactionClassWithoutExpandProperties
|
|
111
118
|
*/
|
|
112
119
|
'isLinked': boolean;
|
|
120
|
+
/**
|
|
121
|
+
* The linked bank order object
|
|
122
|
+
* @type {BankOrderClass}
|
|
123
|
+
* @memberof BankTransactionClassWithoutExpandProperties
|
|
124
|
+
*/
|
|
125
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
113
126
|
/**
|
|
114
127
|
* The file format of the bank transaction
|
|
115
128
|
* @type {string}
|
|
@@ -136,3 +149,11 @@ export interface BankTransactionClassWithoutExpandProperties {
|
|
|
136
149
|
'updatedBy': string;
|
|
137
150
|
}
|
|
138
151
|
|
|
152
|
+
export const BankTransactionClassWithoutExpandPropertiesLabelEnum = {
|
|
153
|
+
Automated: 'automated',
|
|
154
|
+
Manual: 'manual'
|
|
155
|
+
} as const;
|
|
156
|
+
|
|
157
|
+
export type BankTransactionClassWithoutExpandPropertiesLabelEnum = typeof BankTransactionClassWithoutExpandPropertiesLabelEnum[keyof typeof BankTransactionClassWithoutExpandPropertiesLabelEnum];
|
|
158
|
+
|
|
159
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankOrderClass } from './bank-order-class';
|
|
16
17
|
import { InvoiceMatchSuggestionClass } from './invoice-match-suggestion-class';
|
|
17
18
|
import { SharedTransactionClass } from './shared-transaction-class';
|
|
18
19
|
import { SuggestionGenerationProgressClass } from './suggestion-generation-progress-class';
|
|
@@ -54,6 +55,12 @@ export interface BankTransactionClass {
|
|
|
54
55
|
* @memberof BankTransactionClass
|
|
55
56
|
*/
|
|
56
57
|
'messageReference'?: string;
|
|
58
|
+
/**
|
|
59
|
+
* Label of the transaction
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof BankTransactionClass
|
|
62
|
+
*/
|
|
63
|
+
'label'?: BankTransactionClassLabelEnum;
|
|
57
64
|
/**
|
|
58
65
|
* Currency of the transaction.
|
|
59
66
|
* @type {string}
|
|
@@ -126,6 +133,12 @@ export interface BankTransactionClass {
|
|
|
126
133
|
* @memberof BankTransactionClass
|
|
127
134
|
*/
|
|
128
135
|
'linkedTransaction'?: SharedTransactionClass;
|
|
136
|
+
/**
|
|
137
|
+
* The linked bank order object
|
|
138
|
+
* @type {BankOrderClass}
|
|
139
|
+
* @memberof BankTransactionClass
|
|
140
|
+
*/
|
|
141
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
129
142
|
/**
|
|
130
143
|
* The file format of the bank transaction
|
|
131
144
|
* @type {string}
|
|
@@ -164,3 +177,11 @@ export interface BankTransactionClass {
|
|
|
164
177
|
'suggestionGenerationProgress'?: SuggestionGenerationProgressClass;
|
|
165
178
|
}
|
|
166
179
|
|
|
180
|
+
export const BankTransactionClassLabelEnum = {
|
|
181
|
+
Automated: 'automated',
|
|
182
|
+
Manual: 'manual'
|
|
183
|
+
} as const;
|
|
184
|
+
|
|
185
|
+
export type BankTransactionClassLabelEnum = typeof BankTransactionClassLabelEnum[keyof typeof BankTransactionClassLabelEnum];
|
|
186
|
+
|
|
187
|
+
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { BankOrderClass } from './bank-order-class';
|
|
16
17
|
|
|
17
18
|
/**
|
|
18
19
|
*
|
|
@@ -50,6 +51,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
50
51
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
51
52
|
*/
|
|
52
53
|
'messageReference'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Label of the transaction
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
58
|
+
*/
|
|
59
|
+
'label'?: UnlinkedBankTransactionResponseClassLabelEnum;
|
|
53
60
|
/**
|
|
54
61
|
* Currency of the transaction.
|
|
55
62
|
* @type {string}
|
|
@@ -92,6 +99,12 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
92
99
|
* @memberof UnlinkedBankTransactionResponseClass
|
|
93
100
|
*/
|
|
94
101
|
'isLinked': boolean;
|
|
102
|
+
/**
|
|
103
|
+
* The linked bank order object
|
|
104
|
+
* @type {BankOrderClass}
|
|
105
|
+
* @memberof UnlinkedBankTransactionResponseClass
|
|
106
|
+
*/
|
|
107
|
+
'linkedBankOrder'?: BankOrderClass;
|
|
95
108
|
/**
|
|
96
109
|
* The file format of the bank transaction
|
|
97
110
|
* @type {string}
|
|
@@ -118,3 +131,11 @@ export interface UnlinkedBankTransactionResponseClass {
|
|
|
118
131
|
'updatedBy': string;
|
|
119
132
|
}
|
|
120
133
|
|
|
134
|
+
export const UnlinkedBankTransactionResponseClassLabelEnum = {
|
|
135
|
+
Automated: 'automated',
|
|
136
|
+
Manual: 'manual'
|
|
137
|
+
} as const;
|
|
138
|
+
|
|
139
|
+
export type UnlinkedBankTransactionResponseClassLabelEnum = typeof UnlinkedBankTransactionResponseClassLabelEnum[keyof typeof UnlinkedBankTransactionResponseClassLabelEnum];
|
|
140
|
+
|
|
141
|
+
|