@emilgroup/accounting-sdk-node 1.0.1-beta.0

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.
Files changed (49) hide show
  1. package/.openapi-generator/FILES +21 -0
  2. package/.openapi-generator/VERSION +1 -0
  3. package/.openapi-generator-ignore +23 -0
  4. package/README.md +68 -0
  5. package/api/default-api.ts +128 -0
  6. package/api/financial-accounts-api.ts +571 -0
  7. package/api/transactions-api.ts +167 -0
  8. package/api.ts +35 -0
  9. package/base.ts +285 -0
  10. package/common.ts +199 -0
  11. package/configuration.ts +109 -0
  12. package/dist/api/default-api.d.ts +70 -0
  13. package/dist/api/default-api.js +204 -0
  14. package/dist/api/financial-accounts-api.d.ts +324 -0
  15. package/dist/api/financial-accounts-api.js +549 -0
  16. package/dist/api/transactions-api.d.ts +96 -0
  17. package/dist/api/transactions-api.js +228 -0
  18. package/dist/api.d.ts +14 -0
  19. package/dist/api.js +32 -0
  20. package/dist/base.d.ts +78 -0
  21. package/dist/base.js +394 -0
  22. package/dist/common.d.ts +92 -0
  23. package/dist/common.js +277 -0
  24. package/dist/configuration.d.ts +90 -0
  25. package/dist/configuration.js +44 -0
  26. package/dist/index.d.ts +15 -0
  27. package/dist/index.js +36 -0
  28. package/dist/models/create-financial-account-request-dto.d.ts +56 -0
  29. package/dist/models/create-financial-account-request-dto.js +23 -0
  30. package/dist/models/create-transaction-request-dto.d.ts +55 -0
  31. package/dist/models/create-transaction-request-dto.js +15 -0
  32. package/dist/models/entry-data-dto.d.ts +36 -0
  33. package/dist/models/entry-data-dto.js +15 -0
  34. package/dist/models/index.d.ts +5 -0
  35. package/dist/models/index.js +21 -0
  36. package/dist/models/inline-response200.d.ts +54 -0
  37. package/dist/models/inline-response200.js +15 -0
  38. package/dist/models/inline-response503.d.ts +54 -0
  39. package/dist/models/inline-response503.js +15 -0
  40. package/git_push.sh +57 -0
  41. package/index.ts +19 -0
  42. package/models/create-financial-account-request-dto.ts +65 -0
  43. package/models/create-transaction-request-dto.ts +61 -0
  44. package/models/entry-data-dto.ts +42 -0
  45. package/models/index.ts +5 -0
  46. package/models/inline-response200.ts +48 -0
  47. package/models/inline-response503.ts +48 -0
  48. package/package.json +29 -0
  49. package/tsconfig.json +22 -0
@@ -0,0 +1,324 @@
1
+ /**
2
+ * EMIL AccountingService
3
+ * The EMIL AccountingService API description
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ * Contact: kontakt@emil.de
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateFinancialAccountRequestDto } from '../models';
16
+ /**
17
+ * FinancialAccountsApi - axios parameter creator
18
+ * @export
19
+ */
20
+ export declare const FinancialAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
21
+ /**
22
+ * This will create an account in the database. The account will be created with the provided name, type, and account number. Optionally, you can provide a parent account ID to create a sub-account.
23
+ * @summary Create the account
24
+ * @param {CreateFinancialAccountRequestDto} createFinancialAccountRequestDto
25
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
26
+ * @param {*} [options] Override http request option.
27
+ * @throws {RequiredError}
28
+ */
29
+ createFinancialAccount: (createFinancialAccountRequestDto: CreateFinancialAccountRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
30
+ /**
31
+ * Permanently deletes the account. Supply the unique code that was returned when you created the account and this will delete it.
32
+ * @summary Delete the account
33
+ * @param {string} code Unique identifier for the object.
34
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
35
+ * @param {*} [options] Override http request option.
36
+ * @throws {RequiredError}
37
+ */
38
+ deleteFinancialAccount: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
39
+ /**
40
+ * Retrieves the details of the account that was previously created. Supply the unique account code that was returned when you created it and Emil Api will return the corresponding account information.
41
+ * @summary Retrieve the account
42
+ * @param {string} code Unique identifier for the object.
43
+ * @param {string} expand
44
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
45
+ * @param {*} [options] Override http request option.
46
+ * @throws {RequiredError}
47
+ */
48
+ getFinancialAccount: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
49
+ /**
50
+ * Returns a list of Financial Accounts you have previously created. The Financial Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
51
+ * @summary List Financial Accounts
52
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
53
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
54
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
55
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
56
+ * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
57
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, name, financialAccountNumber&lt;/i&gt;
58
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
59
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
60
+ * @param {*} [options] Override http request option.
61
+ * @throws {RequiredError}
62
+ */
63
+ listFinancialAccounts: (authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: any, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
64
+ };
65
+ /**
66
+ * FinancialAccountsApi - functional programming interface
67
+ * @export
68
+ */
69
+ export declare const FinancialAccountsApiFp: (configuration?: Configuration) => {
70
+ /**
71
+ * This will create an account in the database. The account will be created with the provided name, type, and account number. Optionally, you can provide a parent account ID to create a sub-account.
72
+ * @summary Create the account
73
+ * @param {CreateFinancialAccountRequestDto} createFinancialAccountRequestDto
74
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
75
+ * @param {*} [options] Override http request option.
76
+ * @throws {RequiredError}
77
+ */
78
+ createFinancialAccount(createFinancialAccountRequestDto: CreateFinancialAccountRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
79
+ /**
80
+ * Permanently deletes the account. Supply the unique code that was returned when you created the account and this will delete it.
81
+ * @summary Delete the account
82
+ * @param {string} code Unique identifier for the object.
83
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
84
+ * @param {*} [options] Override http request option.
85
+ * @throws {RequiredError}
86
+ */
87
+ deleteFinancialAccount(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
88
+ /**
89
+ * Retrieves the details of the account that was previously created. Supply the unique account code that was returned when you created it and Emil Api will return the corresponding account information.
90
+ * @summary Retrieve the account
91
+ * @param {string} code Unique identifier for the object.
92
+ * @param {string} expand
93
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
94
+ * @param {*} [options] Override http request option.
95
+ * @throws {RequiredError}
96
+ */
97
+ getFinancialAccount(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
98
+ /**
99
+ * Returns a list of Financial Accounts you have previously created. The Financial Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
100
+ * @summary List Financial Accounts
101
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
102
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
103
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
104
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
105
+ * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
106
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, name, financialAccountNumber&lt;/i&gt;
107
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
108
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
109
+ * @param {*} [options] Override http request option.
110
+ * @throws {RequiredError}
111
+ */
112
+ listFinancialAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: any, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
113
+ };
114
+ /**
115
+ * FinancialAccountsApi - factory interface
116
+ * @export
117
+ */
118
+ export declare const FinancialAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
119
+ /**
120
+ * This will create an account in the database. The account will be created with the provided name, type, and account number. Optionally, you can provide a parent account ID to create a sub-account.
121
+ * @summary Create the account
122
+ * @param {CreateFinancialAccountRequestDto} createFinancialAccountRequestDto
123
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
124
+ * @param {*} [options] Override http request option.
125
+ * @throws {RequiredError}
126
+ */
127
+ createFinancialAccount(createFinancialAccountRequestDto: CreateFinancialAccountRequestDto, authorization?: string, options?: any): AxiosPromise<void>;
128
+ /**
129
+ * Permanently deletes the account. Supply the unique code that was returned when you created the account and this will delete it.
130
+ * @summary Delete the account
131
+ * @param {string} code Unique identifier for the object.
132
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
133
+ * @param {*} [options] Override http request option.
134
+ * @throws {RequiredError}
135
+ */
136
+ deleteFinancialAccount(code: string, authorization?: string, options?: any): AxiosPromise<void>;
137
+ /**
138
+ * Retrieves the details of the account that was previously created. Supply the unique account code that was returned when you created it and Emil Api will return the corresponding account information.
139
+ * @summary Retrieve the account
140
+ * @param {string} code Unique identifier for the object.
141
+ * @param {string} expand
142
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
143
+ * @param {*} [options] Override http request option.
144
+ * @throws {RequiredError}
145
+ */
146
+ getFinancialAccount(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<void>;
147
+ /**
148
+ * Returns a list of Financial Accounts you have previously created. The Financial Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
149
+ * @summary List Financial Accounts
150
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
151
+ * @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
152
+ * @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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
153
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
154
+ * @param {any} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
155
+ * @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, name, financialAccountNumber&lt;/i&gt;
156
+ * @param {any} [expand] Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
157
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
158
+ * @param {*} [options] Override http request option.
159
+ * @throws {RequiredError}
160
+ */
161
+ listFinancialAccounts(authorization?: string, pageSize?: any, pageToken?: any, filter?: string, search?: any, order?: string, expand?: any, filters?: string, options?: any): AxiosPromise<void>;
162
+ };
163
+ /**
164
+ * Request parameters for createFinancialAccount operation in FinancialAccountsApi.
165
+ * @export
166
+ * @interface FinancialAccountsApiCreateFinancialAccountRequest
167
+ */
168
+ export interface FinancialAccountsApiCreateFinancialAccountRequest {
169
+ /**
170
+ *
171
+ * @type {CreateFinancialAccountRequestDto}
172
+ * @memberof FinancialAccountsApiCreateFinancialAccount
173
+ */
174
+ readonly createFinancialAccountRequestDto: CreateFinancialAccountRequestDto;
175
+ /**
176
+ * Bearer Token: provided by the login endpoint under the name accessToken.
177
+ * @type {string}
178
+ * @memberof FinancialAccountsApiCreateFinancialAccount
179
+ */
180
+ readonly authorization?: string;
181
+ }
182
+ /**
183
+ * Request parameters for deleteFinancialAccount operation in FinancialAccountsApi.
184
+ * @export
185
+ * @interface FinancialAccountsApiDeleteFinancialAccountRequest
186
+ */
187
+ export interface FinancialAccountsApiDeleteFinancialAccountRequest {
188
+ /**
189
+ * Unique identifier for the object.
190
+ * @type {string}
191
+ * @memberof FinancialAccountsApiDeleteFinancialAccount
192
+ */
193
+ readonly code: string;
194
+ /**
195
+ * Bearer Token: provided by the login endpoint under the name accessToken.
196
+ * @type {string}
197
+ * @memberof FinancialAccountsApiDeleteFinancialAccount
198
+ */
199
+ readonly authorization?: string;
200
+ }
201
+ /**
202
+ * Request parameters for getFinancialAccount operation in FinancialAccountsApi.
203
+ * @export
204
+ * @interface FinancialAccountsApiGetFinancialAccountRequest
205
+ */
206
+ export interface FinancialAccountsApiGetFinancialAccountRequest {
207
+ /**
208
+ * Unique identifier for the object.
209
+ * @type {string}
210
+ * @memberof FinancialAccountsApiGetFinancialAccount
211
+ */
212
+ readonly code: string;
213
+ /**
214
+ *
215
+ * @type {string}
216
+ * @memberof FinancialAccountsApiGetFinancialAccount
217
+ */
218
+ readonly expand: string;
219
+ /**
220
+ * Bearer Token: provided by the login endpoint under the name accessToken.
221
+ * @type {string}
222
+ * @memberof FinancialAccountsApiGetFinancialAccount
223
+ */
224
+ readonly authorization?: string;
225
+ }
226
+ /**
227
+ * Request parameters for listFinancialAccounts operation in FinancialAccountsApi.
228
+ * @export
229
+ * @interface FinancialAccountsApiListFinancialAccountsRequest
230
+ */
231
+ export interface FinancialAccountsApiListFinancialAccountsRequest {
232
+ /**
233
+ * Bearer Token: provided by the login endpoint under the name accessToken.
234
+ * @type {string}
235
+ * @memberof FinancialAccountsApiListFinancialAccounts
236
+ */
237
+ readonly authorization?: string;
238
+ /**
239
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
240
+ * @type {any}
241
+ * @memberof FinancialAccountsApiListFinancialAccounts
242
+ */
243
+ readonly pageSize?: any;
244
+ /**
245
+ * 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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
246
+ * @type {any}
247
+ * @memberof FinancialAccountsApiListFinancialAccounts
248
+ */
249
+ readonly pageToken?: any;
250
+ /**
251
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
252
+ * @type {string}
253
+ * @memberof FinancialAccountsApiListFinancialAccounts
254
+ */
255
+ readonly filter?: string;
256
+ /**
257
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
258
+ * @type {any}
259
+ * @memberof FinancialAccountsApiListFinancialAccounts
260
+ */
261
+ readonly search?: any;
262
+ /**
263
+ * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, createdAt, name, financialAccountNumber&lt;/i&gt;
264
+ * @type {string}
265
+ * @memberof FinancialAccountsApiListFinancialAccounts
266
+ */
267
+ readonly order?: string;
268
+ /**
269
+ * Use this parameter to fetch additional information about the list items. The expand query parameter increases the set of fields that appear in the response in addition to the default ones. Expanding resources can reduce the number of API calls required to accomplish a task. However, use this with parsimony as some expanded fields can drastically increase payload size.
270
+ * @type {any}
271
+ * @memberof FinancialAccountsApiListFinancialAccounts
272
+ */
273
+ readonly expand?: any;
274
+ /**
275
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: code, name, financialAccountNumber, createdAt, entityCode, type&lt;/i&gt;
276
+ * @type {string}
277
+ * @memberof FinancialAccountsApiListFinancialAccounts
278
+ */
279
+ readonly filters?: string;
280
+ }
281
+ /**
282
+ * FinancialAccountsApi - object-oriented interface
283
+ * @export
284
+ * @class FinancialAccountsApi
285
+ * @extends {BaseAPI}
286
+ */
287
+ export declare class FinancialAccountsApi extends BaseAPI {
288
+ /**
289
+ * This will create an account in the database. The account will be created with the provided name, type, and account number. Optionally, you can provide a parent account ID to create a sub-account.
290
+ * @summary Create the account
291
+ * @param {FinancialAccountsApiCreateFinancialAccountRequest} requestParameters Request parameters.
292
+ * @param {*} [options] Override http request option.
293
+ * @throws {RequiredError}
294
+ * @memberof FinancialAccountsApi
295
+ */
296
+ createFinancialAccount(requestParameters: FinancialAccountsApiCreateFinancialAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
297
+ /**
298
+ * Permanently deletes the account. Supply the unique code that was returned when you created the account and this will delete it.
299
+ * @summary Delete the account
300
+ * @param {FinancialAccountsApiDeleteFinancialAccountRequest} requestParameters Request parameters.
301
+ * @param {*} [options] Override http request option.
302
+ * @throws {RequiredError}
303
+ * @memberof FinancialAccountsApi
304
+ */
305
+ deleteFinancialAccount(requestParameters: FinancialAccountsApiDeleteFinancialAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
306
+ /**
307
+ * Retrieves the details of the account that was previously created. Supply the unique account code that was returned when you created it and Emil Api will return the corresponding account information.
308
+ * @summary Retrieve the account
309
+ * @param {FinancialAccountsApiGetFinancialAccountRequest} requestParameters Request parameters.
310
+ * @param {*} [options] Override http request option.
311
+ * @throws {RequiredError}
312
+ * @memberof FinancialAccountsApi
313
+ */
314
+ getFinancialAccount(requestParameters: FinancialAccountsApiGetFinancialAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
315
+ /**
316
+ * Returns a list of Financial Accounts you have previously created. The Financial Accounts are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
317
+ * @summary List Financial Accounts
318
+ * @param {FinancialAccountsApiListFinancialAccountsRequest} requestParameters Request parameters.
319
+ * @param {*} [options] Override http request option.
320
+ * @throws {RequiredError}
321
+ * @memberof FinancialAccountsApi
322
+ */
323
+ listFinancialAccounts(requestParameters?: FinancialAccountsApiListFinancialAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
324
+ }