@emilgroup/accounting-sdk-node 1.32.1-beta.18 → 1.32.1-beta.19

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 (53) hide show
  1. package/.openapi-generator/FILES +13 -2
  2. package/README.md +2 -2
  3. package/api/product-account-mappings-api.ts +1474 -0
  4. package/api.ts +2 -2
  5. package/dist/api/product-account-mappings-api.d.ts +851 -0
  6. package/dist/api/product-account-mappings-api.js +1228 -0
  7. package/dist/api.d.ts +1 -1
  8. package/dist/api.js +1 -1
  9. package/dist/models/index.d.ts +12 -1
  10. package/dist/models/index.js +12 -1
  11. package/dist/models/list-product-account-mappings-response-class.d.ts +43 -0
  12. package/dist/models/list-products-with-account-mappings-response-class.d.ts +43 -0
  13. package/dist/models/list-products-with-account-mappings-response-class.js +15 -0
  14. package/dist/models/premium-item-account-mapping-class.d.ts +37 -0
  15. package/dist/models/premium-item-account-mapping-class.js +15 -0
  16. package/dist/models/product-account-mapping-class.d.ts +61 -0
  17. package/dist/models/product-account-mapping-class.js +15 -0
  18. package/dist/models/product-account-mapping-detail-class.d.ts +50 -0
  19. package/dist/models/product-account-mapping-detail-class.js +15 -0
  20. package/dist/models/product-version-account-mapping-detail-class.d.ts +50 -0
  21. package/dist/models/product-version-account-mapping-detail-class.js +15 -0
  22. package/dist/models/product-version-with-account-mappings-class.d.ts +42 -0
  23. package/dist/models/product-version-with-account-mappings-class.js +15 -0
  24. package/dist/models/product-with-account-mappings-class.d.ts +49 -0
  25. package/dist/models/product-with-account-mappings-class.js +15 -0
  26. package/dist/models/put-premium-item-account-body-dto.d.ts +24 -0
  27. package/dist/models/put-premium-item-account-body-dto.js +15 -0
  28. package/dist/models/put-product-category-account-body-dto.d.ts +24 -0
  29. package/dist/models/put-product-category-account-body-dto.js +15 -0
  30. package/dist/models/put-product-version-category-account-body-dto.d.ts +24 -0
  31. package/dist/models/put-product-version-category-account-body-dto.js +15 -0
  32. package/dist/models/resolved-account-mapping-class.d.ts +31 -0
  33. package/dist/models/resolved-account-mapping-class.js +15 -0
  34. package/models/index.ts +12 -1
  35. package/models/list-product-account-mappings-response-class.ts +49 -0
  36. package/models/list-products-with-account-mappings-response-class.ts +49 -0
  37. package/models/premium-item-account-mapping-class.ts +43 -0
  38. package/models/product-account-mapping-class.ts +67 -0
  39. package/models/product-account-mapping-detail-class.ts +56 -0
  40. package/models/product-version-account-mapping-detail-class.ts +56 -0
  41. package/models/product-version-with-account-mappings-class.ts +48 -0
  42. package/models/product-with-account-mappings-class.ts +55 -0
  43. package/models/put-premium-item-account-body-dto.ts +30 -0
  44. package/models/put-product-category-account-body-dto.ts +30 -0
  45. package/models/put-product-version-category-account-body-dto.ts +30 -0
  46. package/models/resolved-account-mapping-class.ts +37 -0
  47. package/package.json +1 -1
  48. package/api/account-mappings-api.ts +0 -250
  49. package/dist/api/account-mappings-api.d.ts +0 -150
  50. package/dist/api/account-mappings-api.js +0 -264
  51. package/dist/models/list-account-mappings-response-class.d.ts +0 -31
  52. package/models/list-account-mappings-response-class.ts +0 -37
  53. /package/dist/models/{list-account-mappings-response-class.js → list-product-account-mappings-response-class.js} +0 -0
@@ -1,250 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL AccountingService
5
- * The EMIL AccountingService API description
6
- *
7
- * The version of the OpenAPI document: 1.0
8
- * Contact: kontakt@emil.de
9
- *
10
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
- * https://openapi-generator.tech
12
- * Do not edit the class manually.
13
- */
14
-
15
-
16
- import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
- import { Configuration } from '../configuration';
18
- // Some imports not used depending on template conditions
19
- // @ts-ignore
20
- import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
- // @ts-ignore
22
- import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
- // @ts-ignore
24
- import { ListAccountMappingsResponseClass } from '../models';
25
- // URLSearchParams not necessarily used
26
- // @ts-ignore
27
- import { URL, URLSearchParams } from 'url';
28
- const FormData = require('form-data');
29
- /**
30
- * AccountMappingsApi - axios parameter creator
31
- * @export
32
- */
33
- export const AccountMappingsApiAxiosParamCreator = function (configuration?: Configuration) {
34
- return {
35
- /**
36
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
37
- * @summary List Account Mappings
38
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
39
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
40
- * @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=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
41
- * @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: type, key, subKey</i>
42
- * @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
43
- * @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, type, key, subKey</i>
44
- * @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: financialAccount<i>
45
- * @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: type, key, subKey</i>
46
- * @param {*} [options] Override http request option.
47
- * @throws {RequiredError}
48
- */
49
- listAccountMappings: async (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
50
- const localVarPath = `/accountingservice/v1/account-mappings`;
51
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
52
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
53
- let baseOptions;
54
- let baseAccessToken;
55
- if (configuration) {
56
- baseOptions = configuration.baseOptions;
57
- baseAccessToken = configuration.accessToken;
58
- }
59
-
60
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
61
- const localVarHeaderParameter = {} as any;
62
- const localVarQueryParameter = {} as any;
63
-
64
- // authentication bearer required
65
- // http bearer authentication required
66
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
67
-
68
- if (pageSize !== undefined) {
69
- localVarQueryParameter['pageSize'] = pageSize;
70
- }
71
-
72
- if (pageToken !== undefined) {
73
- localVarQueryParameter['pageToken'] = pageToken;
74
- }
75
-
76
- if (filter !== undefined) {
77
- localVarQueryParameter['filter'] = filter;
78
- }
79
-
80
- if (search !== undefined) {
81
- localVarQueryParameter['search'] = search;
82
- }
83
-
84
- if (order !== undefined) {
85
- localVarQueryParameter['order'] = order;
86
- }
87
-
88
- if (expand !== undefined) {
89
- localVarQueryParameter['expand'] = expand;
90
- }
91
-
92
- if (filters !== undefined) {
93
- localVarQueryParameter['filters'] = filters;
94
- }
95
-
96
- if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
97
- localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
98
- }
99
-
100
-
101
-
102
- setSearchParams(localVarUrlObj, localVarQueryParameter);
103
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
104
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
105
-
106
- return {
107
- url: toPathString(localVarUrlObj),
108
- options: localVarRequestOptions,
109
- };
110
- },
111
- }
112
- };
113
-
114
- /**
115
- * AccountMappingsApi - functional programming interface
116
- * @export
117
- */
118
- export const AccountMappingsApiFp = function(configuration?: Configuration) {
119
- const localVarAxiosParamCreator = AccountMappingsApiAxiosParamCreator(configuration)
120
- return {
121
- /**
122
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
123
- * @summary List Account Mappings
124
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
125
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
126
- * @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.
127
- * @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: type, key, subKey&lt;/i&gt;
128
- * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
129
- * @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, type, key, subKey&lt;/i&gt;
130
- * @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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
131
- * @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: type, key, subKey&lt;/i&gt;
132
- * @param {*} [options] Override http request option.
133
- * @throws {RequiredError}
134
- */
135
- async listAccountMappings(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountMappingsResponseClass>> {
136
- const localVarAxiosArgs = await localVarAxiosParamCreator.listAccountMappings(authorization, pageSize, pageToken, filter, search, order, expand, filters, options);
137
- return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
138
- },
139
- }
140
- };
141
-
142
- /**
143
- * AccountMappingsApi - factory interface
144
- * @export
145
- */
146
- export const AccountMappingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
147
- const localVarFp = AccountMappingsApiFp(configuration)
148
- return {
149
- /**
150
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
151
- * @summary List Account Mappings
152
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
153
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
154
- * @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.
155
- * @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: type, key, subKey&lt;/i&gt;
156
- * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
157
- * @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, type, key, subKey&lt;/i&gt;
158
- * @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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
159
- * @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: type, key, subKey&lt;/i&gt;
160
- * @param {*} [options] Override http request option.
161
- * @throws {RequiredError}
162
- */
163
- listAccountMappings(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListAccountMappingsResponseClass> {
164
- return localVarFp.listAccountMappings(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
165
- },
166
- };
167
- };
168
-
169
- /**
170
- * Request parameters for listAccountMappings operation in AccountMappingsApi.
171
- * @export
172
- * @interface AccountMappingsApiListAccountMappingsRequest
173
- */
174
- export interface AccountMappingsApiListAccountMappingsRequest {
175
- /**
176
- * Bearer Token: provided by the login endpoint under the name accessToken.
177
- * @type {string}
178
- * @memberof AccountMappingsApiListAccountMappings
179
- */
180
- readonly authorization?: string
181
-
182
- /**
183
- * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
184
- * @type {number}
185
- * @memberof AccountMappingsApiListAccountMappings
186
- */
187
- readonly pageSize?: number
188
-
189
- /**
190
- * 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.
191
- * @type {string}
192
- * @memberof AccountMappingsApiListAccountMappings
193
- */
194
- readonly pageToken?: string
195
-
196
- /**
197
- * 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: type, key, subKey&lt;/i&gt;
198
- * @type {string}
199
- * @memberof AccountMappingsApiListAccountMappings
200
- */
201
- readonly filter?: string
202
-
203
- /**
204
- * To search the list by any field, pass search&#x3D;xxx to fetch the result.
205
- * @type {string}
206
- * @memberof AccountMappingsApiListAccountMappings
207
- */
208
- readonly search?: string
209
-
210
- /**
211
- * 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, type, key, subKey&lt;/i&gt;
212
- * @type {string}
213
- * @memberof AccountMappingsApiListAccountMappings
214
- */
215
- readonly order?: string
216
-
217
- /**
218
- * 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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
219
- * @type {string}
220
- * @memberof AccountMappingsApiListAccountMappings
221
- */
222
- readonly expand?: string
223
-
224
- /**
225
- * 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: type, key, subKey&lt;/i&gt;
226
- * @type {string}
227
- * @memberof AccountMappingsApiListAccountMappings
228
- */
229
- readonly filters?: string
230
- }
231
-
232
- /**
233
- * AccountMappingsApi - object-oriented interface
234
- * @export
235
- * @class AccountMappingsApi
236
- * @extends {BaseAPI}
237
- */
238
- export class AccountMappingsApi extends BaseAPI {
239
- /**
240
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
241
- * @summary List Account Mappings
242
- * @param {AccountMappingsApiListAccountMappingsRequest} requestParameters Request parameters.
243
- * @param {*} [options] Override http request option.
244
- * @throws {RequiredError}
245
- * @memberof AccountMappingsApi
246
- */
247
- public listAccountMappings(requestParameters: AccountMappingsApiListAccountMappingsRequest = {}, options?: AxiosRequestConfig) {
248
- return AccountMappingsApiFp(this.configuration).listAccountMappings(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then((request) => request(this.axios, this.basePath));
249
- }
250
- }
@@ -1,150 +0,0 @@
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 { ListAccountMappingsResponseClass } from '../models';
16
- /**
17
- * AccountMappingsApi - axios parameter creator
18
- * @export
19
- */
20
- export declare const AccountMappingsApiAxiosParamCreator: (configuration?: Configuration) => {
21
- /**
22
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
23
- * @summary List Account Mappings
24
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
25
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
26
- * @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.
27
- * @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: type, key, subKey&lt;/i&gt;
28
- * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
29
- * @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, type, key, subKey&lt;/i&gt;
30
- * @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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
31
- * @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: type, key, subKey&lt;/i&gt;
32
- * @param {*} [options] Override http request option.
33
- * @throws {RequiredError}
34
- */
35
- listAccountMappings: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
36
- };
37
- /**
38
- * AccountMappingsApi - functional programming interface
39
- * @export
40
- */
41
- export declare const AccountMappingsApiFp: (configuration?: Configuration) => {
42
- /**
43
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
44
- * @summary List Account Mappings
45
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
46
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
47
- * @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.
48
- * @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: type, key, subKey&lt;/i&gt;
49
- * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
50
- * @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, type, key, subKey&lt;/i&gt;
51
- * @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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
52
- * @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: type, key, subKey&lt;/i&gt;
53
- * @param {*} [options] Override http request option.
54
- * @throws {RequiredError}
55
- */
56
- listAccountMappings(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccountMappingsResponseClass>>;
57
- };
58
- /**
59
- * AccountMappingsApi - factory interface
60
- * @export
61
- */
62
- export declare const AccountMappingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
63
- /**
64
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
65
- * @summary List Account Mappings
66
- * @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
67
- * @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
68
- * @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.
69
- * @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: type, key, subKey&lt;/i&gt;
70
- * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
71
- * @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, type, key, subKey&lt;/i&gt;
72
- * @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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
73
- * @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: type, key, subKey&lt;/i&gt;
74
- * @param {*} [options] Override http request option.
75
- * @throws {RequiredError}
76
- */
77
- listAccountMappings(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListAccountMappingsResponseClass>;
78
- };
79
- /**
80
- * Request parameters for listAccountMappings operation in AccountMappingsApi.
81
- * @export
82
- * @interface AccountMappingsApiListAccountMappingsRequest
83
- */
84
- export interface AccountMappingsApiListAccountMappingsRequest {
85
- /**
86
- * Bearer Token: provided by the login endpoint under the name accessToken.
87
- * @type {string}
88
- * @memberof AccountMappingsApiListAccountMappings
89
- */
90
- readonly authorization?: string;
91
- /**
92
- * A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
93
- * @type {number}
94
- * @memberof AccountMappingsApiListAccountMappings
95
- */
96
- readonly pageSize?: number;
97
- /**
98
- * 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.
99
- * @type {string}
100
- * @memberof AccountMappingsApiListAccountMappings
101
- */
102
- readonly pageToken?: string;
103
- /**
104
- * 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: type, key, subKey&lt;/i&gt;
105
- * @type {string}
106
- * @memberof AccountMappingsApiListAccountMappings
107
- */
108
- readonly filter?: string;
109
- /**
110
- * To search the list by any field, pass search&#x3D;xxx to fetch the result.
111
- * @type {string}
112
- * @memberof AccountMappingsApiListAccountMappings
113
- */
114
- readonly search?: string;
115
- /**
116
- * 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, type, key, subKey&lt;/i&gt;
117
- * @type {string}
118
- * @memberof AccountMappingsApiListAccountMappings
119
- */
120
- readonly order?: string;
121
- /**
122
- * 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; &lt;i&gt;Allowed values: financialAccount&lt;i&gt;
123
- * @type {string}
124
- * @memberof AccountMappingsApiListAccountMappings
125
- */
126
- readonly expand?: string;
127
- /**
128
- * 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: type, key, subKey&lt;/i&gt;
129
- * @type {string}
130
- * @memberof AccountMappingsApiListAccountMappings
131
- */
132
- readonly filters?: string;
133
- }
134
- /**
135
- * AccountMappingsApi - object-oriented interface
136
- * @export
137
- * @class AccountMappingsApi
138
- * @extends {BaseAPI}
139
- */
140
- export declare class AccountMappingsApi extends BaseAPI {
141
- /**
142
- * Generic, read-only listing of override-mapping rows, filterable by `type`/`key`/`subKey`. Used internally for bulk badge lookups and for support/debugging; type-specific tabs (e.g. Products) expose their own purpose-built list/detail endpoints on top of this data. **Required Permissions** \"accounting-management.financial-accounts.view\"
143
- * @summary List Account Mappings
144
- * @param {AccountMappingsApiListAccountMappingsRequest} requestParameters Request parameters.
145
- * @param {*} [options] Override http request option.
146
- * @throws {RequiredError}
147
- * @memberof AccountMappingsApi
148
- */
149
- listAccountMappings(requestParameters?: AccountMappingsApiListAccountMappingsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountMappingsResponseClass, any, {}>>;
150
- }