@emilgroup/accounting-sdk-node 1.27.1-beta.3 → 1.27.1-beta.30

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 (102) hide show
  1. package/.openapi-generator/FILES +24 -0
  2. package/README.md +2 -2
  3. package/api/accounting-configs-api.ts +1234 -0
  4. package/api/financial-accounts-api.ts +12 -12
  5. package/api.ts +2 -0
  6. package/base.ts +1 -0
  7. package/dist/api/accounting-configs-api.d.ts +671 -0
  8. package/dist/api/accounting-configs-api.js +1125 -0
  9. package/dist/api/financial-accounts-api.d.ts +12 -12
  10. package/dist/api/financial-accounts-api.js +9 -9
  11. package/dist/api.d.ts +1 -0
  12. package/dist/api.js +1 -0
  13. package/dist/base.d.ts +2 -1
  14. package/dist/base.js +1 -0
  15. package/dist/models/accounting-category-class.d.ts +45 -0
  16. package/dist/models/accounting-category-class.js +24 -0
  17. package/dist/models/accounting-config-class.d.ts +67 -0
  18. package/dist/models/accounting-config-class.js +15 -0
  19. package/dist/models/accounting-config-data-class.d.ts +45 -0
  20. package/dist/models/accounting-config-data-class.js +15 -0
  21. package/dist/models/accounting-configuration-class.d.ts +36 -0
  22. package/dist/models/accounting-configuration-class.js +15 -0
  23. package/dist/models/chart-of-accounts-config-class.d.ts +25 -0
  24. package/dist/models/chart-of-accounts-config-class.js +15 -0
  25. package/dist/models/chart-of-accounts-item-class.d.ts +71 -0
  26. package/dist/models/chart-of-accounts-item-class.js +38 -0
  27. package/dist/models/create-accounting-config-data-dto-accounting-configuration.d.ts +46 -0
  28. package/dist/models/create-accounting-config-data-dto-accounting-configuration.js +24 -0
  29. package/dist/models/create-accounting-config-data-dto-chart-of-accounts-config-items.d.ts +59 -0
  30. package/dist/models/create-accounting-config-data-dto-chart-of-accounts-config-items.js +38 -0
  31. package/dist/models/create-accounting-config-data-dto-chart-of-accounts-config.d.ts +25 -0
  32. package/dist/models/create-accounting-config-data-dto-chart-of-accounts-config.js +15 -0
  33. package/dist/models/create-accounting-config-data-dto-opening-balances-opening-balances.d.ts +65 -0
  34. package/dist/models/create-accounting-config-data-dto-opening-balances-opening-balances.js +38 -0
  35. package/dist/models/create-accounting-config-data-dto-opening-balances.d.ts +25 -0
  36. package/dist/models/create-accounting-config-data-dto-opening-balances.js +15 -0
  37. package/dist/models/create-accounting-config-data-dto.d.ts +45 -0
  38. package/dist/models/create-accounting-config-data-dto.js +15 -0
  39. package/dist/models/create-accounting-config-request-dto.d.ts +31 -0
  40. package/dist/models/create-accounting-config-request-dto.js +15 -0
  41. package/dist/models/create-accounting-config-response-class.d.ts +25 -0
  42. package/dist/models/create-accounting-config-response-class.js +15 -0
  43. package/dist/models/create-financial-account-request-dto.d.ts +36 -1
  44. package/dist/models/create-financial-account-request-dto.js +24 -2
  45. package/dist/models/create-number-range-request-dto.d.ts +4 -4
  46. package/dist/models/create-number-range-request-dto.js +4 -4
  47. package/dist/models/create-personal-account-request-dto.d.ts +10 -4
  48. package/dist/models/create-personal-account-request-dto.js +3 -3
  49. package/dist/models/financial-account-class.d.ts +20 -2
  50. package/dist/models/financial-account-class.js +1 -1
  51. package/dist/models/get-accounting-categories-response-class.d.ts +25 -0
  52. package/dist/models/get-accounting-categories-response-class.js +15 -0
  53. package/dist/models/get-accounting-config-response-class.d.ts +25 -0
  54. package/dist/models/get-accounting-config-response-class.js +15 -0
  55. package/dist/models/index.d.ts +23 -0
  56. package/dist/models/index.js +23 -0
  57. package/dist/models/inline-object2.d.ts +24 -0
  58. package/dist/models/inline-object2.js +15 -0
  59. package/dist/models/list-accounting-configs-response-class.d.ts +43 -0
  60. package/dist/models/list-accounting-configs-response-class.js +15 -0
  61. package/dist/models/opening-balance-class.d.ts +65 -0
  62. package/dist/models/opening-balance-class.js +38 -0
  63. package/dist/models/opening-balances-class.d.ts +25 -0
  64. package/dist/models/opening-balances-class.js +15 -0
  65. package/dist/models/personal-account-class.d.ts +8 -2
  66. package/dist/models/personal-account-class.js +1 -1
  67. package/dist/models/update-chart-of-accounts-response-class.d.ts +25 -0
  68. package/dist/models/update-chart-of-accounts-response-class.js +15 -0
  69. package/dist/models/validate-accounting-config-request-dto.d.ts +25 -0
  70. package/dist/models/validate-accounting-config-request-dto.js +15 -0
  71. package/dist/models/validate-accounting-config-response-class.d.ts +30 -0
  72. package/dist/models/validate-accounting-config-response-class.js +15 -0
  73. package/models/accounting-category-class.ts +54 -0
  74. package/models/accounting-config-class.ts +73 -0
  75. package/models/accounting-config-data-class.ts +51 -0
  76. package/models/accounting-configuration-class.ts +42 -0
  77. package/models/chart-of-accounts-config-class.ts +31 -0
  78. package/models/chart-of-accounts-item-class.ts +80 -0
  79. package/models/create-accounting-config-data-dto-accounting-configuration.ts +56 -0
  80. package/models/create-accounting-config-data-dto-chart-of-accounts-config-items.ts +68 -0
  81. package/models/create-accounting-config-data-dto-chart-of-accounts-config.ts +31 -0
  82. package/models/create-accounting-config-data-dto-opening-balances-opening-balances.ts +74 -0
  83. package/models/create-accounting-config-data-dto-opening-balances.ts +31 -0
  84. package/models/create-accounting-config-data-dto.ts +51 -0
  85. package/models/create-accounting-config-request-dto.ts +37 -0
  86. package/models/create-accounting-config-response-class.ts +31 -0
  87. package/models/create-financial-account-request-dto.ts +37 -1
  88. package/models/create-number-range-request-dto.ts +4 -4
  89. package/models/create-personal-account-request-dto.ts +10 -4
  90. package/models/financial-account-class.ts +20 -2
  91. package/models/get-accounting-categories-response-class.ts +31 -0
  92. package/models/get-accounting-config-response-class.ts +31 -0
  93. package/models/index.ts +23 -0
  94. package/models/inline-object2.ts +30 -0
  95. package/models/list-accounting-configs-response-class.ts +49 -0
  96. package/models/opening-balance-class.ts +74 -0
  97. package/models/opening-balances-class.ts +31 -0
  98. package/models/personal-account-class.ts +8 -2
  99. package/models/update-chart-of-accounts-response-class.ts +31 -0
  100. package/models/validate-accounting-config-request-dto.ts +31 -0
  101. package/models/validate-accounting-config-response-class.ts +36 -0
  102. package/package.json +2 -2
@@ -0,0 +1,671 @@
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 { CreateAccountingConfigRequestDto } from '../models';
16
+ import { CreateAccountingConfigResponseClass } from '../models';
17
+ import { GetAccountingCategoriesResponseClass } from '../models';
18
+ import { GetAccountingConfigResponseClass } from '../models';
19
+ import { InlineObject2 } from '../models';
20
+ import { ListAccountingConfigsResponseClass } from '../models';
21
+ import { UpdateChartOfAccountsResponseClass } from '../models';
22
+ import { ValidateAccountingConfigRequestDto } from '../models';
23
+ import { ValidateAccountingConfigResponseClass } from '../models';
24
+ /**
25
+ * AccountingConfigsApi - axios parameter creator
26
+ * @export
27
+ */
28
+ export declare const AccountingConfigsApiAxiosParamCreator: (configuration?: Configuration) => {
29
+ /**
30
+ * This will create accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
31
+ * @summary Create the accounting config
32
+ * @param {CreateAccountingConfigRequestDto} createAccountingConfigRequestDto
33
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
34
+ * @param {*} [options] Override http request option.
35
+ * @throws {RequiredError}
36
+ */
37
+ createAccountingConfig: (createAccountingConfigRequestDto: CreateAccountingConfigRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
38
+ /**
39
+ * This will create accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
40
+ * @summary Create the accounting config from file
41
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
42
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
43
+ * @param {*} [options] Override http request option.
44
+ * @throws {RequiredError}
45
+ */
46
+ createAccountingConfigFromFile: (file: any, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
47
+ /**
48
+ * This will delete accounting config. **Required Permissions** \"accounting-management.financial-accounts.delete\"
49
+ * @summary Delete the accounting config
50
+ * @param {string} code Unique identifier for the object.
51
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
52
+ * @param {*} [options] Override http request option.
53
+ * @throws {RequiredError}
54
+ */
55
+ deleteAccountingConfig: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
56
+ /**
57
+ * This will get the accounting categories. **Required Permissions** \"accounting-management.financial-accounts.view\"
58
+ * @summary Retrieve the accounting categories
59
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
60
+ * @param {*} [options] Override http request option.
61
+ * @throws {RequiredError}
62
+ */
63
+ getAccountingCategories: (authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
64
+ /**
65
+ * This will get accounting config. **Required Permissions** \"accounting-management.financial-accounts.view\"
66
+ * @summary Retrieve the accounting config
67
+ * @param {string} code
68
+ * @param {string} expand
69
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
70
+ * @param {*} [options] Override http request option.
71
+ * @throws {RequiredError}
72
+ */
73
+ getAccountingConfig: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
74
+ /**
75
+ * Retrieves a list of accountingconfigs. **Required Permissions** \"accounting-management.financial-accounts.view\"
76
+ * @summary List accounting configs
77
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
78
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
79
+ * @param {string} [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.
80
+ * @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: id, code, createdAt&lt;/i&gt;
81
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
82
+ * @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: createdAt&lt;/i&gt;
83
+ * @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.&lt;br/&gt; &lt;br/&gt;
84
+ * @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: id, code, createdAt&lt;/i&gt;
85
+ * @param {*} [options] Override http request option.
86
+ * @throws {RequiredError}
87
+ */
88
+ listAccountingConfigs: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
89
+ /**
90
+ * This will update the chart of accounts. **Required Permissions** \"accounting-management.financial-accounts.update\"
91
+ * @summary Update the chart of accounts
92
+ * @param {string} code
93
+ * @param {InlineObject2} inlineObject2
94
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
95
+ * @param {*} [options] Override http request option.
96
+ * @throws {RequiredError}
97
+ */
98
+ updateChartOfAccounts: (code: string, inlineObject2: InlineObject2, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
99
+ /**
100
+ * This will update the chart of accounts from a file. **Required Permissions** \"accounting-management.financial-accounts.update\"
101
+ * @summary Update the chart of accounts from file
102
+ * @param {string} code
103
+ * @param {any} file JSON or YAML file containing the chart of accounts config. Supported formats: .json, .yaml, .yml
104
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
105
+ * @param {*} [options] Override http request option.
106
+ * @throws {RequiredError}
107
+ */
108
+ updateChartOfAccountsFromFile: (code: string, file: any, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
109
+ /**
110
+ * This will validate accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
111
+ * @summary Create the validate accounting config
112
+ * @param {ValidateAccountingConfigRequestDto} validateAccountingConfigRequestDto
113
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
114
+ * @param {*} [options] Override http request option.
115
+ * @throws {RequiredError}
116
+ */
117
+ validateAccountingConfig: (validateAccountingConfigRequestDto: ValidateAccountingConfigRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
118
+ /**
119
+ * This will validate accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
120
+ * @summary Create the validate accounting config from file
121
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
122
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
123
+ * @param {*} [options] Override http request option.
124
+ * @throws {RequiredError}
125
+ */
126
+ validateAccountingConfigFromFile: (file: any, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
127
+ };
128
+ /**
129
+ * AccountingConfigsApi - functional programming interface
130
+ * @export
131
+ */
132
+ export declare const AccountingConfigsApiFp: (configuration?: Configuration) => {
133
+ /**
134
+ * This will create accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
135
+ * @summary Create the accounting config
136
+ * @param {CreateAccountingConfigRequestDto} createAccountingConfigRequestDto
137
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
138
+ * @param {*} [options] Override http request option.
139
+ * @throws {RequiredError}
140
+ */
141
+ createAccountingConfig(createAccountingConfigRequestDto: CreateAccountingConfigRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountingConfigResponseClass>>;
142
+ /**
143
+ * This will create accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
144
+ * @summary Create the accounting config from file
145
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
146
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
147
+ * @param {*} [options] Override http request option.
148
+ * @throws {RequiredError}
149
+ */
150
+ createAccountingConfigFromFile(file: any, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountingConfigResponseClass>>;
151
+ /**
152
+ * This will delete accounting config. **Required Permissions** \"accounting-management.financial-accounts.delete\"
153
+ * @summary Delete the accounting config
154
+ * @param {string} code Unique identifier for the object.
155
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
156
+ * @param {*} [options] Override http request option.
157
+ * @throws {RequiredError}
158
+ */
159
+ deleteAccountingConfig(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
160
+ /**
161
+ * This will get the accounting categories. **Required Permissions** \"accounting-management.financial-accounts.view\"
162
+ * @summary Retrieve the accounting categories
163
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
164
+ * @param {*} [options] Override http request option.
165
+ * @throws {RequiredError}
166
+ */
167
+ getAccountingCategories(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountingCategoriesResponseClass>>;
168
+ /**
169
+ * This will get accounting config. **Required Permissions** \"accounting-management.financial-accounts.view\"
170
+ * @summary Retrieve the accounting config
171
+ * @param {string} code
172
+ * @param {string} expand
173
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
174
+ * @param {*} [options] Override http request option.
175
+ * @throws {RequiredError}
176
+ */
177
+ getAccountingConfig(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountingConfigResponseClass>>;
178
+ /**
179
+ * Retrieves a list of accountingconfigs. **Required Permissions** \"accounting-management.financial-accounts.view\"
180
+ * @summary List accounting configs
181
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
182
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
183
+ * @param {string} [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.
184
+ * @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: id, code, createdAt&lt;/i&gt;
185
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
186
+ * @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: createdAt&lt;/i&gt;
187
+ * @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.&lt;br/&gt; &lt;br/&gt;
188
+ * @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: id, code, createdAt&lt;/i&gt;
189
+ * @param {*} [options] Override http request option.
190
+ * @throws {RequiredError}
191
+ */
192
+ listAccountingConfigs(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountingConfigsResponseClass>>;
193
+ /**
194
+ * This will update the chart of accounts. **Required Permissions** \"accounting-management.financial-accounts.update\"
195
+ * @summary Update the chart of accounts
196
+ * @param {string} code
197
+ * @param {InlineObject2} inlineObject2
198
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
199
+ * @param {*} [options] Override http request option.
200
+ * @throws {RequiredError}
201
+ */
202
+ updateChartOfAccounts(code: string, inlineObject2: InlineObject2, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateChartOfAccountsResponseClass>>;
203
+ /**
204
+ * This will update the chart of accounts from a file. **Required Permissions** \"accounting-management.financial-accounts.update\"
205
+ * @summary Update the chart of accounts from file
206
+ * @param {string} code
207
+ * @param {any} file JSON or YAML file containing the chart of accounts config. Supported formats: .json, .yaml, .yml
208
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
209
+ * @param {*} [options] Override http request option.
210
+ * @throws {RequiredError}
211
+ */
212
+ updateChartOfAccountsFromFile(code: string, file: any, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateChartOfAccountsResponseClass>>;
213
+ /**
214
+ * This will validate accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
215
+ * @summary Create the validate accounting config
216
+ * @param {ValidateAccountingConfigRequestDto} validateAccountingConfigRequestDto
217
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
218
+ * @param {*} [options] Override http request option.
219
+ * @throws {RequiredError}
220
+ */
221
+ validateAccountingConfig(validateAccountingConfigRequestDto: ValidateAccountingConfigRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateAccountingConfigResponseClass>>;
222
+ /**
223
+ * This will validate accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
224
+ * @summary Create the validate accounting config from file
225
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
226
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
227
+ * @param {*} [options] Override http request option.
228
+ * @throws {RequiredError}
229
+ */
230
+ validateAccountingConfigFromFile(file: any, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateAccountingConfigResponseClass>>;
231
+ };
232
+ /**
233
+ * AccountingConfigsApi - factory interface
234
+ * @export
235
+ */
236
+ export declare const AccountingConfigsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
237
+ /**
238
+ * This will create accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
239
+ * @summary Create the accounting config
240
+ * @param {CreateAccountingConfigRequestDto} createAccountingConfigRequestDto
241
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
242
+ * @param {*} [options] Override http request option.
243
+ * @throws {RequiredError}
244
+ */
245
+ createAccountingConfig(createAccountingConfigRequestDto: CreateAccountingConfigRequestDto, authorization?: string, options?: any): AxiosPromise<CreateAccountingConfigResponseClass>;
246
+ /**
247
+ * This will create accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
248
+ * @summary Create the accounting config from file
249
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
250
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
251
+ * @param {*} [options] Override http request option.
252
+ * @throws {RequiredError}
253
+ */
254
+ createAccountingConfigFromFile(file: any, authorization?: string, options?: any): AxiosPromise<CreateAccountingConfigResponseClass>;
255
+ /**
256
+ * This will delete accounting config. **Required Permissions** \"accounting-management.financial-accounts.delete\"
257
+ * @summary Delete the accounting config
258
+ * @param {string} code Unique identifier for the object.
259
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
260
+ * @param {*} [options] Override http request option.
261
+ * @throws {RequiredError}
262
+ */
263
+ deleteAccountingConfig(code: string, authorization?: string, options?: any): AxiosPromise<void>;
264
+ /**
265
+ * This will get the accounting categories. **Required Permissions** \"accounting-management.financial-accounts.view\"
266
+ * @summary Retrieve the accounting categories
267
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
268
+ * @param {*} [options] Override http request option.
269
+ * @throws {RequiredError}
270
+ */
271
+ getAccountingCategories(authorization?: string, options?: any): AxiosPromise<GetAccountingCategoriesResponseClass>;
272
+ /**
273
+ * This will get accounting config. **Required Permissions** \"accounting-management.financial-accounts.view\"
274
+ * @summary Retrieve the accounting config
275
+ * @param {string} code
276
+ * @param {string} expand
277
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
278
+ * @param {*} [options] Override http request option.
279
+ * @throws {RequiredError}
280
+ */
281
+ getAccountingConfig(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetAccountingConfigResponseClass>;
282
+ /**
283
+ * Retrieves a list of accountingconfigs. **Required Permissions** \"accounting-management.financial-accounts.view\"
284
+ * @summary List accounting configs
285
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
286
+ * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
287
+ * @param {string} [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.
288
+ * @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: id, code, createdAt&lt;/i&gt;
289
+ * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
290
+ * @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: createdAt&lt;/i&gt;
291
+ * @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.&lt;br/&gt; &lt;br/&gt;
292
+ * @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: id, code, createdAt&lt;/i&gt;
293
+ * @param {*} [options] Override http request option.
294
+ * @throws {RequiredError}
295
+ */
296
+ listAccountingConfigs(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListAccountingConfigsResponseClass>;
297
+ /**
298
+ * This will update the chart of accounts. **Required Permissions** \"accounting-management.financial-accounts.update\"
299
+ * @summary Update the chart of accounts
300
+ * @param {string} code
301
+ * @param {InlineObject2} inlineObject2
302
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
303
+ * @param {*} [options] Override http request option.
304
+ * @throws {RequiredError}
305
+ */
306
+ updateChartOfAccounts(code: string, inlineObject2: InlineObject2, authorization?: string, options?: any): AxiosPromise<UpdateChartOfAccountsResponseClass>;
307
+ /**
308
+ * This will update the chart of accounts from a file. **Required Permissions** \"accounting-management.financial-accounts.update\"
309
+ * @summary Update the chart of accounts from file
310
+ * @param {string} code
311
+ * @param {any} file JSON or YAML file containing the chart of accounts config. Supported formats: .json, .yaml, .yml
312
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
313
+ * @param {*} [options] Override http request option.
314
+ * @throws {RequiredError}
315
+ */
316
+ updateChartOfAccountsFromFile(code: string, file: any, authorization?: string, options?: any): AxiosPromise<UpdateChartOfAccountsResponseClass>;
317
+ /**
318
+ * This will validate accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
319
+ * @summary Create the validate accounting config
320
+ * @param {ValidateAccountingConfigRequestDto} validateAccountingConfigRequestDto
321
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
322
+ * @param {*} [options] Override http request option.
323
+ * @throws {RequiredError}
324
+ */
325
+ validateAccountingConfig(validateAccountingConfigRequestDto: ValidateAccountingConfigRequestDto, authorization?: string, options?: any): AxiosPromise<ValidateAccountingConfigResponseClass>;
326
+ /**
327
+ * This will validate accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
328
+ * @summary Create the validate accounting config from file
329
+ * @param {any} file JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
330
+ * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
331
+ * @param {*} [options] Override http request option.
332
+ * @throws {RequiredError}
333
+ */
334
+ validateAccountingConfigFromFile(file: any, authorization?: string, options?: any): AxiosPromise<ValidateAccountingConfigResponseClass>;
335
+ };
336
+ /**
337
+ * Request parameters for createAccountingConfig operation in AccountingConfigsApi.
338
+ * @export
339
+ * @interface AccountingConfigsApiCreateAccountingConfigRequest
340
+ */
341
+ export interface AccountingConfigsApiCreateAccountingConfigRequest {
342
+ /**
343
+ *
344
+ * @type {CreateAccountingConfigRequestDto}
345
+ * @memberof AccountingConfigsApiCreateAccountingConfig
346
+ */
347
+ readonly createAccountingConfigRequestDto: CreateAccountingConfigRequestDto;
348
+ /**
349
+ * Bearer Token: provided by the login endpoint under the name accessToken.
350
+ * @type {string}
351
+ * @memberof AccountingConfigsApiCreateAccountingConfig
352
+ */
353
+ readonly authorization?: string;
354
+ }
355
+ /**
356
+ * Request parameters for createAccountingConfigFromFile operation in AccountingConfigsApi.
357
+ * @export
358
+ * @interface AccountingConfigsApiCreateAccountingConfigFromFileRequest
359
+ */
360
+ export interface AccountingConfigsApiCreateAccountingConfigFromFileRequest {
361
+ /**
362
+ * JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
363
+ * @type {any}
364
+ * @memberof AccountingConfigsApiCreateAccountingConfigFromFile
365
+ */
366
+ readonly file: any;
367
+ /**
368
+ * Bearer Token: provided by the login endpoint under the name accessToken.
369
+ * @type {string}
370
+ * @memberof AccountingConfigsApiCreateAccountingConfigFromFile
371
+ */
372
+ readonly authorization?: string;
373
+ }
374
+ /**
375
+ * Request parameters for deleteAccountingConfig operation in AccountingConfigsApi.
376
+ * @export
377
+ * @interface AccountingConfigsApiDeleteAccountingConfigRequest
378
+ */
379
+ export interface AccountingConfigsApiDeleteAccountingConfigRequest {
380
+ /**
381
+ * Unique identifier for the object.
382
+ * @type {string}
383
+ * @memberof AccountingConfigsApiDeleteAccountingConfig
384
+ */
385
+ readonly code: string;
386
+ /**
387
+ * Bearer Token: provided by the login endpoint under the name accessToken.
388
+ * @type {string}
389
+ * @memberof AccountingConfigsApiDeleteAccountingConfig
390
+ */
391
+ readonly authorization?: string;
392
+ }
393
+ /**
394
+ * Request parameters for getAccountingCategories operation in AccountingConfigsApi.
395
+ * @export
396
+ * @interface AccountingConfigsApiGetAccountingCategoriesRequest
397
+ */
398
+ export interface AccountingConfigsApiGetAccountingCategoriesRequest {
399
+ /**
400
+ * Bearer Token: provided by the login endpoint under the name accessToken.
401
+ * @type {string}
402
+ * @memberof AccountingConfigsApiGetAccountingCategories
403
+ */
404
+ readonly authorization?: string;
405
+ }
406
+ /**
407
+ * Request parameters for getAccountingConfig operation in AccountingConfigsApi.
408
+ * @export
409
+ * @interface AccountingConfigsApiGetAccountingConfigRequest
410
+ */
411
+ export interface AccountingConfigsApiGetAccountingConfigRequest {
412
+ /**
413
+ *
414
+ * @type {string}
415
+ * @memberof AccountingConfigsApiGetAccountingConfig
416
+ */
417
+ readonly code: string;
418
+ /**
419
+ *
420
+ * @type {string}
421
+ * @memberof AccountingConfigsApiGetAccountingConfig
422
+ */
423
+ readonly expand: string;
424
+ /**
425
+ * Bearer Token: provided by the login endpoint under the name accessToken.
426
+ * @type {string}
427
+ * @memberof AccountingConfigsApiGetAccountingConfig
428
+ */
429
+ readonly authorization?: string;
430
+ }
431
+ /**
432
+ * Request parameters for listAccountingConfigs operation in AccountingConfigsApi.
433
+ * @export
434
+ * @interface AccountingConfigsApiListAccountingConfigsRequest
435
+ */
436
+ export interface AccountingConfigsApiListAccountingConfigsRequest {
437
+ /**
438
+ * Bearer Token: provided by the login endpoint under the name accessToken.
439
+ * @type {string}
440
+ * @memberof AccountingConfigsApiListAccountingConfigs
441
+ */
442
+ readonly authorization?: string;
443
+ /**
444
+ * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
445
+ * @type {number}
446
+ * @memberof AccountingConfigsApiListAccountingConfigs
447
+ */
448
+ readonly pageSize?: number;
449
+ /**
450
+ * 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.
451
+ * @type {string}
452
+ * @memberof AccountingConfigsApiListAccountingConfigs
453
+ */
454
+ readonly pageToken?: string;
455
+ /**
456
+ * 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: id, code, createdAt&lt;/i&gt;
457
+ * @type {string}
458
+ * @memberof AccountingConfigsApiListAccountingConfigs
459
+ */
460
+ readonly filter?: string;
461
+ /**
462
+ * To search the list by any field, pass search&#x3D;xxx to fetch the result.
463
+ * @type {string}
464
+ * @memberof AccountingConfigsApiListAccountingConfigs
465
+ */
466
+ readonly search?: string;
467
+ /**
468
+ * 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: createdAt&lt;/i&gt;
469
+ * @type {string}
470
+ * @memberof AccountingConfigsApiListAccountingConfigs
471
+ */
472
+ readonly order?: string;
473
+ /**
474
+ * 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.&lt;br/&gt; &lt;br/&gt;
475
+ * @type {string}
476
+ * @memberof AccountingConfigsApiListAccountingConfigs
477
+ */
478
+ readonly expand?: string;
479
+ /**
480
+ * 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: id, code, createdAt&lt;/i&gt;
481
+ * @type {string}
482
+ * @memberof AccountingConfigsApiListAccountingConfigs
483
+ */
484
+ readonly filters?: string;
485
+ }
486
+ /**
487
+ * Request parameters for updateChartOfAccounts operation in AccountingConfigsApi.
488
+ * @export
489
+ * @interface AccountingConfigsApiUpdateChartOfAccountsRequest
490
+ */
491
+ export interface AccountingConfigsApiUpdateChartOfAccountsRequest {
492
+ /**
493
+ *
494
+ * @type {string}
495
+ * @memberof AccountingConfigsApiUpdateChartOfAccounts
496
+ */
497
+ readonly code: string;
498
+ /**
499
+ *
500
+ * @type {InlineObject2}
501
+ * @memberof AccountingConfigsApiUpdateChartOfAccounts
502
+ */
503
+ readonly inlineObject2: InlineObject2;
504
+ /**
505
+ * Bearer Token: provided by the login endpoint under the name accessToken.
506
+ * @type {string}
507
+ * @memberof AccountingConfigsApiUpdateChartOfAccounts
508
+ */
509
+ readonly authorization?: string;
510
+ }
511
+ /**
512
+ * Request parameters for updateChartOfAccountsFromFile operation in AccountingConfigsApi.
513
+ * @export
514
+ * @interface AccountingConfigsApiUpdateChartOfAccountsFromFileRequest
515
+ */
516
+ export interface AccountingConfigsApiUpdateChartOfAccountsFromFileRequest {
517
+ /**
518
+ *
519
+ * @type {string}
520
+ * @memberof AccountingConfigsApiUpdateChartOfAccountsFromFile
521
+ */
522
+ readonly code: string;
523
+ /**
524
+ * JSON or YAML file containing the chart of accounts config. Supported formats: .json, .yaml, .yml
525
+ * @type {any}
526
+ * @memberof AccountingConfigsApiUpdateChartOfAccountsFromFile
527
+ */
528
+ readonly file: any;
529
+ /**
530
+ * Bearer Token: provided by the login endpoint under the name accessToken.
531
+ * @type {string}
532
+ * @memberof AccountingConfigsApiUpdateChartOfAccountsFromFile
533
+ */
534
+ readonly authorization?: string;
535
+ }
536
+ /**
537
+ * Request parameters for validateAccountingConfig operation in AccountingConfigsApi.
538
+ * @export
539
+ * @interface AccountingConfigsApiValidateAccountingConfigRequest
540
+ */
541
+ export interface AccountingConfigsApiValidateAccountingConfigRequest {
542
+ /**
543
+ *
544
+ * @type {ValidateAccountingConfigRequestDto}
545
+ * @memberof AccountingConfigsApiValidateAccountingConfig
546
+ */
547
+ readonly validateAccountingConfigRequestDto: ValidateAccountingConfigRequestDto;
548
+ /**
549
+ * Bearer Token: provided by the login endpoint under the name accessToken.
550
+ * @type {string}
551
+ * @memberof AccountingConfigsApiValidateAccountingConfig
552
+ */
553
+ readonly authorization?: string;
554
+ }
555
+ /**
556
+ * Request parameters for validateAccountingConfigFromFile operation in AccountingConfigsApi.
557
+ * @export
558
+ * @interface AccountingConfigsApiValidateAccountingConfigFromFileRequest
559
+ */
560
+ export interface AccountingConfigsApiValidateAccountingConfigFromFileRequest {
561
+ /**
562
+ * JSON or YAML file containing the config. Supported formats: .json, .yaml, .yml
563
+ * @type {any}
564
+ * @memberof AccountingConfigsApiValidateAccountingConfigFromFile
565
+ */
566
+ readonly file: any;
567
+ /**
568
+ * Bearer Token: provided by the login endpoint under the name accessToken.
569
+ * @type {string}
570
+ * @memberof AccountingConfigsApiValidateAccountingConfigFromFile
571
+ */
572
+ readonly authorization?: string;
573
+ }
574
+ /**
575
+ * AccountingConfigsApi - object-oriented interface
576
+ * @export
577
+ * @class AccountingConfigsApi
578
+ * @extends {BaseAPI}
579
+ */
580
+ export declare class AccountingConfigsApi extends BaseAPI {
581
+ /**
582
+ * This will create accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
583
+ * @summary Create the accounting config
584
+ * @param {AccountingConfigsApiCreateAccountingConfigRequest} requestParameters Request parameters.
585
+ * @param {*} [options] Override http request option.
586
+ * @throws {RequiredError}
587
+ * @memberof AccountingConfigsApi
588
+ */
589
+ createAccountingConfig(requestParameters: AccountingConfigsApiCreateAccountingConfigRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountingConfigResponseClass, any, {}>>;
590
+ /**
591
+ * This will create accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
592
+ * @summary Create the accounting config from file
593
+ * @param {AccountingConfigsApiCreateAccountingConfigFromFileRequest} requestParameters Request parameters.
594
+ * @param {*} [options] Override http request option.
595
+ * @throws {RequiredError}
596
+ * @memberof AccountingConfigsApi
597
+ */
598
+ createAccountingConfigFromFile(requestParameters: AccountingConfigsApiCreateAccountingConfigFromFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountingConfigResponseClass, any, {}>>;
599
+ /**
600
+ * This will delete accounting config. **Required Permissions** \"accounting-management.financial-accounts.delete\"
601
+ * @summary Delete the accounting config
602
+ * @param {AccountingConfigsApiDeleteAccountingConfigRequest} requestParameters Request parameters.
603
+ * @param {*} [options] Override http request option.
604
+ * @throws {RequiredError}
605
+ * @memberof AccountingConfigsApi
606
+ */
607
+ deleteAccountingConfig(requestParameters: AccountingConfigsApiDeleteAccountingConfigRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
608
+ /**
609
+ * This will get the accounting categories. **Required Permissions** \"accounting-management.financial-accounts.view\"
610
+ * @summary Retrieve the accounting categories
611
+ * @param {AccountingConfigsApiGetAccountingCategoriesRequest} requestParameters Request parameters.
612
+ * @param {*} [options] Override http request option.
613
+ * @throws {RequiredError}
614
+ * @memberof AccountingConfigsApi
615
+ */
616
+ getAccountingCategories(requestParameters?: AccountingConfigsApiGetAccountingCategoriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountingCategoriesResponseClass, any, {}>>;
617
+ /**
618
+ * This will get accounting config. **Required Permissions** \"accounting-management.financial-accounts.view\"
619
+ * @summary Retrieve the accounting config
620
+ * @param {AccountingConfigsApiGetAccountingConfigRequest} requestParameters Request parameters.
621
+ * @param {*} [options] Override http request option.
622
+ * @throws {RequiredError}
623
+ * @memberof AccountingConfigsApi
624
+ */
625
+ getAccountingConfig(requestParameters: AccountingConfigsApiGetAccountingConfigRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountingConfigResponseClass, any, {}>>;
626
+ /**
627
+ * Retrieves a list of accountingconfigs. **Required Permissions** \"accounting-management.financial-accounts.view\"
628
+ * @summary List accounting configs
629
+ * @param {AccountingConfigsApiListAccountingConfigsRequest} requestParameters Request parameters.
630
+ * @param {*} [options] Override http request option.
631
+ * @throws {RequiredError}
632
+ * @memberof AccountingConfigsApi
633
+ */
634
+ listAccountingConfigs(requestParameters?: AccountingConfigsApiListAccountingConfigsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountingConfigsResponseClass, any, {}>>;
635
+ /**
636
+ * This will update the chart of accounts. **Required Permissions** \"accounting-management.financial-accounts.update\"
637
+ * @summary Update the chart of accounts
638
+ * @param {AccountingConfigsApiUpdateChartOfAccountsRequest} requestParameters Request parameters.
639
+ * @param {*} [options] Override http request option.
640
+ * @throws {RequiredError}
641
+ * @memberof AccountingConfigsApi
642
+ */
643
+ updateChartOfAccounts(requestParameters: AccountingConfigsApiUpdateChartOfAccountsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateChartOfAccountsResponseClass, any, {}>>;
644
+ /**
645
+ * This will update the chart of accounts from a file. **Required Permissions** \"accounting-management.financial-accounts.update\"
646
+ * @summary Update the chart of accounts from file
647
+ * @param {AccountingConfigsApiUpdateChartOfAccountsFromFileRequest} requestParameters Request parameters.
648
+ * @param {*} [options] Override http request option.
649
+ * @throws {RequiredError}
650
+ * @memberof AccountingConfigsApi
651
+ */
652
+ updateChartOfAccountsFromFile(requestParameters: AccountingConfigsApiUpdateChartOfAccountsFromFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateChartOfAccountsResponseClass, any, {}>>;
653
+ /**
654
+ * This will validate accounting config. **Required Permissions** \"accounting-management.financial-accounts.create\"
655
+ * @summary Create the validate accounting config
656
+ * @param {AccountingConfigsApiValidateAccountingConfigRequest} requestParameters Request parameters.
657
+ * @param {*} [options] Override http request option.
658
+ * @throws {RequiredError}
659
+ * @memberof AccountingConfigsApi
660
+ */
661
+ validateAccountingConfig(requestParameters: AccountingConfigsApiValidateAccountingConfigRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateAccountingConfigResponseClass, any, {}>>;
662
+ /**
663
+ * This will validate accounting config from a file. **Required Permissions** \"accounting-management.financial-accounts.create\"
664
+ * @summary Create the validate accounting config from file
665
+ * @param {AccountingConfigsApiValidateAccountingConfigFromFileRequest} requestParameters Request parameters.
666
+ * @param {*} [options] Override http request option.
667
+ * @throws {RequiredError}
668
+ * @memberof AccountingConfigsApi
669
+ */
670
+ validateAccountingConfigFromFile(requestParameters: AccountingConfigsApiValidateAccountingConfigFromFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateAccountingConfigResponseClass, any, {}>>;
671
+ }