@emilgroup/accounting-sdk-node 1.18.0 → 1.18.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.
- package/README.md +2 -2
- package/api/booking-entries-api.ts +52 -52
- package/api/financial-accounts-api.ts +35 -35
- package/api/financial-transactions-api.ts +48 -48
- package/api/number-ranges-api.ts +35 -35
- package/api/personal-accounts-api.ts +35 -35
- package/base.ts +1 -1
- package/dist/api/booking-entries-api.d.ts +52 -52
- package/dist/api/booking-entries-api.js +33 -33
- package/dist/api/financial-accounts-api.d.ts +35 -35
- package/dist/api/financial-accounts-api.js +25 -25
- package/dist/api/financial-transactions-api.d.ts +48 -48
- package/dist/api/financial-transactions-api.js +29 -29
- package/dist/api/number-ranges-api.d.ts +35 -35
- package/dist/api/number-ranges-api.js +25 -25
- package/dist/api/personal-accounts-api.d.ts +35 -35
- package/dist/api/personal-accounts-api.js +25 -25
- package/dist/base.js +1 -1
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ import { ListFinancialTransactionsResponseClass } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const FinancialTransactionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* This endpoint gets a financial transaction.
|
|
23
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
24
24
|
* @summary Retrieve the financial transaction
|
|
25
25
|
* @param {string} code
|
|
26
26
|
* @param {string} expand
|
|
@@ -30,20 +30,20 @@ export declare const FinancialTransactionsApiAxiosParamCreator: (configuration?:
|
|
|
30
30
|
*/
|
|
31
31
|
getFinancialTransaction: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32
32
|
/**
|
|
33
|
-
* This endpoint list financial transactions.
|
|
33
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
34
34
|
* @summary List financial transactions
|
|
35
35
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
36
|
-
* @param {
|
|
37
|
-
* @param {
|
|
38
|
-
* @param {
|
|
39
|
-
* @param {
|
|
40
|
-
* @param {
|
|
41
|
-
* @param {
|
|
42
|
-
* @param {
|
|
36
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
37
|
+
* @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.
|
|
38
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
39
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
40
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
41
|
+
* @param {string} [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.
|
|
42
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
43
43
|
* @param {*} [options] Override http request option.
|
|
44
44
|
* @throws {RequiredError}
|
|
45
45
|
*/
|
|
46
|
-
listFinancialTransactions: (authorization?: string, pageSize?:
|
|
46
|
+
listFinancialTransactions: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
47
47
|
};
|
|
48
48
|
/**
|
|
49
49
|
* FinancialTransactionsApi - functional programming interface
|
|
@@ -51,7 +51,7 @@ export declare const FinancialTransactionsApiAxiosParamCreator: (configuration?:
|
|
|
51
51
|
*/
|
|
52
52
|
export declare const FinancialTransactionsApiFp: (configuration?: Configuration) => {
|
|
53
53
|
/**
|
|
54
|
-
* This endpoint gets a financial transaction.
|
|
54
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
55
55
|
* @summary Retrieve the financial transaction
|
|
56
56
|
* @param {string} code
|
|
57
57
|
* @param {string} expand
|
|
@@ -61,20 +61,20 @@ export declare const FinancialTransactionsApiFp: (configuration?: Configuration)
|
|
|
61
61
|
*/
|
|
62
62
|
getFinancialTransaction(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFinancialTransactionResponseClass>>;
|
|
63
63
|
/**
|
|
64
|
-
* This endpoint list financial transactions.
|
|
64
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
65
65
|
* @summary List financial transactions
|
|
66
66
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
67
|
-
* @param {
|
|
68
|
-
* @param {
|
|
69
|
-
* @param {
|
|
70
|
-
* @param {
|
|
71
|
-
* @param {
|
|
72
|
-
* @param {
|
|
73
|
-
* @param {
|
|
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=1, your subsequent call can include pageToken=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.
|
|
70
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
71
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
72
|
+
* @param {string} [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.
|
|
73
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
74
74
|
* @param {*} [options] Override http request option.
|
|
75
75
|
* @throws {RequiredError}
|
|
76
76
|
*/
|
|
77
|
-
listFinancialTransactions(authorization?: string, pageSize?:
|
|
77
|
+
listFinancialTransactions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFinancialTransactionsResponseClass>>;
|
|
78
78
|
};
|
|
79
79
|
/**
|
|
80
80
|
* FinancialTransactionsApi - factory interface
|
|
@@ -82,7 +82,7 @@ export declare const FinancialTransactionsApiFp: (configuration?: Configuration)
|
|
|
82
82
|
*/
|
|
83
83
|
export declare const FinancialTransactionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
84
84
|
/**
|
|
85
|
-
* This endpoint gets a financial transaction.
|
|
85
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
86
86
|
* @summary Retrieve the financial transaction
|
|
87
87
|
* @param {string} code
|
|
88
88
|
* @param {string} expand
|
|
@@ -92,20 +92,20 @@ export declare const FinancialTransactionsApiFactory: (configuration?: Configura
|
|
|
92
92
|
*/
|
|
93
93
|
getFinancialTransaction(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetFinancialTransactionResponseClass>;
|
|
94
94
|
/**
|
|
95
|
-
* This endpoint list financial transactions.
|
|
95
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
96
96
|
* @summary List financial transactions
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
98
|
-
* @param {
|
|
99
|
-
* @param {
|
|
100
|
-
* @param {
|
|
101
|
-
* @param {
|
|
102
|
-
* @param {
|
|
103
|
-
* @param {
|
|
104
|
-
* @param {
|
|
98
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
99
|
+
* @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.
|
|
100
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
101
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
102
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
103
|
+
* @param {string} [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.
|
|
104
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
105
105
|
* @param {*} [options] Override http request option.
|
|
106
106
|
* @throws {RequiredError}
|
|
107
107
|
*/
|
|
108
|
-
listFinancialTransactions(authorization?: string, pageSize?:
|
|
108
|
+
listFinancialTransactions(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListFinancialTransactionsResponseClass>;
|
|
109
109
|
};
|
|
110
110
|
/**
|
|
111
111
|
* Request parameters for getFinancialTransaction operation in FinancialTransactionsApi.
|
|
@@ -146,46 +146,46 @@ export interface FinancialTransactionsApiListFinancialTransactionsRequest {
|
|
|
146
146
|
readonly authorization?: string;
|
|
147
147
|
/**
|
|
148
148
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
149
|
-
* @type {
|
|
149
|
+
* @type {number}
|
|
150
150
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
151
151
|
*/
|
|
152
|
-
readonly pageSize?:
|
|
152
|
+
readonly pageSize?: number;
|
|
153
153
|
/**
|
|
154
|
-
* 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,
|
|
155
|
-
* @type {
|
|
154
|
+
* 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.
|
|
155
|
+
* @type {string}
|
|
156
156
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
157
157
|
*/
|
|
158
|
-
readonly pageToken?:
|
|
158
|
+
readonly pageToken?: string;
|
|
159
159
|
/**
|
|
160
160
|
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
161
|
-
* @type {
|
|
161
|
+
* @type {string}
|
|
162
162
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
163
163
|
*/
|
|
164
|
-
readonly filter?:
|
|
164
|
+
readonly filter?: string;
|
|
165
165
|
/**
|
|
166
166
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
167
|
-
* @type {
|
|
167
|
+
* @type {string}
|
|
168
168
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
169
169
|
*/
|
|
170
|
-
readonly search?:
|
|
170
|
+
readonly search?: string;
|
|
171
171
|
/**
|
|
172
172
|
* The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
173
|
-
* @type {
|
|
173
|
+
* @type {string}
|
|
174
174
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
175
175
|
*/
|
|
176
|
-
readonly order?:
|
|
176
|
+
readonly order?: string;
|
|
177
177
|
/**
|
|
178
|
-
* 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
|
|
179
|
-
* @type {
|
|
178
|
+
* 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.
|
|
179
|
+
* @type {string}
|
|
180
180
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
181
181
|
*/
|
|
182
|
-
readonly expand?:
|
|
182
|
+
readonly expand?: string;
|
|
183
183
|
/**
|
|
184
184
|
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
185
|
-
* @type {
|
|
185
|
+
* @type {string}
|
|
186
186
|
* @memberof FinancialTransactionsApiListFinancialTransactions
|
|
187
187
|
*/
|
|
188
|
-
readonly filters?:
|
|
188
|
+
readonly filters?: string;
|
|
189
189
|
}
|
|
190
190
|
/**
|
|
191
191
|
* FinancialTransactionsApi - object-oriented interface
|
|
@@ -195,7 +195,7 @@ export interface FinancialTransactionsApiListFinancialTransactionsRequest {
|
|
|
195
195
|
*/
|
|
196
196
|
export declare class FinancialTransactionsApi extends BaseAPI {
|
|
197
197
|
/**
|
|
198
|
-
* This endpoint gets a financial transaction.
|
|
198
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
199
199
|
* @summary Retrieve the financial transaction
|
|
200
200
|
* @param {FinancialTransactionsApiGetFinancialTransactionRequest} requestParameters Request parameters.
|
|
201
201
|
* @param {*} [options] Override http request option.
|
|
@@ -204,7 +204,7 @@ export declare class FinancialTransactionsApi extends BaseAPI {
|
|
|
204
204
|
*/
|
|
205
205
|
getFinancialTransaction(requestParameters: FinancialTransactionsApiGetFinancialTransactionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFinancialTransactionResponseClass, any>>;
|
|
206
206
|
/**
|
|
207
|
-
* This endpoint list financial transactions.
|
|
207
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
208
208
|
* @summary List financial transactions
|
|
209
209
|
* @param {FinancialTransactionsApiListFinancialTransactionsRequest} requestParameters Request parameters.
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var FinancialTransactionsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* This endpoint gets a financial transaction.
|
|
100
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
101
101
|
* @summary Retrieve the financial transaction
|
|
102
102
|
* @param {string} code
|
|
103
103
|
* @param {string} expand
|
|
@@ -151,16 +151,16 @@ var FinancialTransactionsApiAxiosParamCreator = function (configuration) {
|
|
|
151
151
|
});
|
|
152
152
|
},
|
|
153
153
|
/**
|
|
154
|
-
* This endpoint list financial transactions.
|
|
154
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
155
155
|
* @summary List financial transactions
|
|
156
156
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
157
|
-
* @param {
|
|
158
|
-
* @param {
|
|
159
|
-
* @param {
|
|
160
|
-
* @param {
|
|
161
|
-
* @param {
|
|
162
|
-
* @param {
|
|
163
|
-
* @param {
|
|
157
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
158
|
+
* @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.
|
|
159
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
160
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
161
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
162
|
+
* @param {string} [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.
|
|
163
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
164
164
|
* @param {*} [options] Override http request option.
|
|
165
165
|
* @throws {RequiredError}
|
|
166
166
|
*/
|
|
@@ -233,7 +233,7 @@ var FinancialTransactionsApiFp = function (configuration) {
|
|
|
233
233
|
var localVarAxiosParamCreator = (0, exports.FinancialTransactionsApiAxiosParamCreator)(configuration);
|
|
234
234
|
return {
|
|
235
235
|
/**
|
|
236
|
-
* This endpoint gets a financial transaction.
|
|
236
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
237
237
|
* @summary Retrieve the financial transaction
|
|
238
238
|
* @param {string} code
|
|
239
239
|
* @param {string} expand
|
|
@@ -255,16 +255,16 @@ var FinancialTransactionsApiFp = function (configuration) {
|
|
|
255
255
|
});
|
|
256
256
|
},
|
|
257
257
|
/**
|
|
258
|
-
* This endpoint list financial transactions.
|
|
258
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
259
259
|
* @summary List financial transactions
|
|
260
260
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
261
|
-
* @param {
|
|
262
|
-
* @param {
|
|
263
|
-
* @param {
|
|
264
|
-
* @param {
|
|
265
|
-
* @param {
|
|
266
|
-
* @param {
|
|
267
|
-
* @param {
|
|
261
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
262
|
+
* @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.
|
|
263
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
264
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
265
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
266
|
+
* @param {string} [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.
|
|
267
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
268
268
|
* @param {*} [options] Override http request option.
|
|
269
269
|
* @throws {RequiredError}
|
|
270
270
|
*/
|
|
@@ -292,7 +292,7 @@ var FinancialTransactionsApiFactory = function (configuration, basePath, axios)
|
|
|
292
292
|
var localVarFp = (0, exports.FinancialTransactionsApiFp)(configuration);
|
|
293
293
|
return {
|
|
294
294
|
/**
|
|
295
|
-
* This endpoint gets a financial transaction.
|
|
295
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
296
296
|
* @summary Retrieve the financial transaction
|
|
297
297
|
* @param {string} code
|
|
298
298
|
* @param {string} expand
|
|
@@ -304,16 +304,16 @@ var FinancialTransactionsApiFactory = function (configuration, basePath, axios)
|
|
|
304
304
|
return localVarFp.getFinancialTransaction(code, expand, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
305
305
|
},
|
|
306
306
|
/**
|
|
307
|
-
* This endpoint list financial transactions.
|
|
307
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
308
308
|
* @summary List financial transactions
|
|
309
309
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
310
|
-
* @param {
|
|
311
|
-
* @param {
|
|
312
|
-
* @param {
|
|
313
|
-
* @param {
|
|
314
|
-
* @param {
|
|
315
|
-
* @param {
|
|
316
|
-
* @param {
|
|
310
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
311
|
+
* @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.
|
|
312
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
313
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
314
|
+
* @param {string} [order] The order parameter determines how the results should be sorted according to a specified field. It functions similarly to an SQL ORDER BY. Sorting can be performed in either ascending (ASC) or descending (DESC) order. Default: ASC.
|
|
315
|
+
* @param {string} [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.
|
|
316
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
|
|
317
317
|
* @param {*} [options] Override http request option.
|
|
318
318
|
* @throws {RequiredError}
|
|
319
319
|
*/
|
|
@@ -335,7 +335,7 @@ var FinancialTransactionsApi = /** @class */ (function (_super) {
|
|
|
335
335
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
336
336
|
}
|
|
337
337
|
/**
|
|
338
|
-
* This endpoint gets a financial transaction.
|
|
338
|
+
* This endpoint gets a financial transaction. **Required Permissions** \"accounting-management.accounts.view\"
|
|
339
339
|
* @summary Retrieve the financial transaction
|
|
340
340
|
* @param {FinancialTransactionsApiGetFinancialTransactionRequest} requestParameters Request parameters.
|
|
341
341
|
* @param {*} [options] Override http request option.
|
|
@@ -347,7 +347,7 @@ var FinancialTransactionsApi = /** @class */ (function (_super) {
|
|
|
347
347
|
return (0, exports.FinancialTransactionsApiFp)(this.configuration).getFinancialTransaction(requestParameters.code, requestParameters.expand, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
348
348
|
};
|
|
349
349
|
/**
|
|
350
|
-
* This endpoint list financial transactions.
|
|
350
|
+
* This endpoint list financial transactions. **Required Permissions** \"accounting-management.accounts.view\"
|
|
351
351
|
* @summary List financial transactions
|
|
352
352
|
* @param {FinancialTransactionsApiListFinancialTransactionsRequest} requestParameters Request parameters.
|
|
353
353
|
* @param {*} [options] Override http request option.
|
|
@@ -22,7 +22,7 @@ import { ListNumberRangeResponseClass } from '../models';
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const NumberRangesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24
24
|
/**
|
|
25
|
-
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account.
|
|
25
|
+
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account. **Required Permissions** \"accounting-management.accounts.create\"
|
|
26
26
|
* @summary Create the Number Range
|
|
27
27
|
* @param {CreateNumberRangeRequestDto} createNumberRangeRequestDto
|
|
28
28
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -31,7 +31,7 @@ export declare const NumberRangesApiAxiosParamCreator: (configuration?: Configur
|
|
|
31
31
|
*/
|
|
32
32
|
createNumberRange: (createNumberRangeRequestDto: CreateNumberRangeRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
33
33
|
/**
|
|
34
|
-
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it.
|
|
34
|
+
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it. **Required Permissions** \"accounting-management.accounts.delete\"
|
|
35
35
|
* @summary Delete the Personal Account
|
|
36
36
|
* @param {string} code Unique identifier for the object.
|
|
37
37
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -40,7 +40,7 @@ export declare const NumberRangesApiAxiosParamCreator: (configuration?: Configur
|
|
|
40
40
|
*/
|
|
41
41
|
deleteNumberRange: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
|
-
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information.
|
|
43
|
+
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information. **Required Permissions** \"accounting-management.accounts.view\"
|
|
44
44
|
* @summary Retrieve the Financial Account
|
|
45
45
|
* @param {string} code Unique identifier for the object.
|
|
46
46
|
* @param {string} expand
|
|
@@ -50,20 +50,20 @@ export declare const NumberRangesApiAxiosParamCreator: (configuration?: Configur
|
|
|
50
50
|
*/
|
|
51
51
|
getNumberRange: (code: string, expand: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
52
|
/**
|
|
53
|
-
* 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.
|
|
53
|
+
* 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. **Required Permissions** \"accounting-management.accounts.view\"
|
|
54
54
|
* @summary List Financial Accounts
|
|
55
55
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
56
|
-
* @param {
|
|
57
|
-
* @param {
|
|
56
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
57
|
+
* @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.
|
|
58
58
|
* @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: slug, createdAt, accountType</i>
|
|
59
|
-
* @param {
|
|
59
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
60
60
|
* @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, slug, accountType</i>
|
|
61
61
|
* @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/>
|
|
62
62
|
* @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: slug, createdAt, accountType</i>
|
|
63
63
|
* @param {*} [options] Override http request option.
|
|
64
64
|
* @throws {RequiredError}
|
|
65
65
|
*/
|
|
66
|
-
listNumberRanges: (authorization?: string, pageSize?:
|
|
66
|
+
listNumberRanges: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
69
|
* NumberRangesApi - functional programming interface
|
|
@@ -71,7 +71,7 @@ export declare const NumberRangesApiAxiosParamCreator: (configuration?: Configur
|
|
|
71
71
|
*/
|
|
72
72
|
export declare const NumberRangesApiFp: (configuration?: Configuration) => {
|
|
73
73
|
/**
|
|
74
|
-
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account.
|
|
74
|
+
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account. **Required Permissions** \"accounting-management.accounts.create\"
|
|
75
75
|
* @summary Create the Number Range
|
|
76
76
|
* @param {CreateNumberRangeRequestDto} createNumberRangeRequestDto
|
|
77
77
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -80,7 +80,7 @@ export declare const NumberRangesApiFp: (configuration?: Configuration) => {
|
|
|
80
80
|
*/
|
|
81
81
|
createNumberRange(createNumberRangeRequestDto: CreateNumberRangeRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateNumberRangeResponseClass>>;
|
|
82
82
|
/**
|
|
83
|
-
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it.
|
|
83
|
+
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it. **Required Permissions** \"accounting-management.accounts.delete\"
|
|
84
84
|
* @summary Delete the Personal Account
|
|
85
85
|
* @param {string} code Unique identifier for the object.
|
|
86
86
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -89,7 +89,7 @@ export declare const NumberRangesApiFp: (configuration?: Configuration) => {
|
|
|
89
89
|
*/
|
|
90
90
|
deleteNumberRange(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
91
91
|
/**
|
|
92
|
-
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information.
|
|
92
|
+
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information. **Required Permissions** \"accounting-management.accounts.view\"
|
|
93
93
|
* @summary Retrieve the Financial Account
|
|
94
94
|
* @param {string} code Unique identifier for the object.
|
|
95
95
|
* @param {string} expand
|
|
@@ -99,20 +99,20 @@ export declare const NumberRangesApiFp: (configuration?: Configuration) => {
|
|
|
99
99
|
*/
|
|
100
100
|
getNumberRange(code: string, expand: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetNumberRangeResponseClass>>;
|
|
101
101
|
/**
|
|
102
|
-
* 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.
|
|
102
|
+
* 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. **Required Permissions** \"accounting-management.accounts.view\"
|
|
103
103
|
* @summary List Financial Accounts
|
|
104
104
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
105
|
-
* @param {
|
|
106
|
-
* @param {
|
|
105
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
106
|
+
* @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.
|
|
107
107
|
* @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: slug, createdAt, accountType</i>
|
|
108
|
-
* @param {
|
|
108
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
109
109
|
* @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, slug, accountType</i>
|
|
110
110
|
* @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/>
|
|
111
111
|
* @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: slug, createdAt, accountType</i>
|
|
112
112
|
* @param {*} [options] Override http request option.
|
|
113
113
|
* @throws {RequiredError}
|
|
114
114
|
*/
|
|
115
|
-
listNumberRanges(authorization?: string, pageSize?:
|
|
115
|
+
listNumberRanges(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListNumberRangeResponseClass>>;
|
|
116
116
|
};
|
|
117
117
|
/**
|
|
118
118
|
* NumberRangesApi - factory interface
|
|
@@ -120,7 +120,7 @@ export declare const NumberRangesApiFp: (configuration?: Configuration) => {
|
|
|
120
120
|
*/
|
|
121
121
|
export declare const NumberRangesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
122
122
|
/**
|
|
123
|
-
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account.
|
|
123
|
+
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account. **Required Permissions** \"accounting-management.accounts.create\"
|
|
124
124
|
* @summary Create the Number Range
|
|
125
125
|
* @param {CreateNumberRangeRequestDto} createNumberRangeRequestDto
|
|
126
126
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -129,7 +129,7 @@ export declare const NumberRangesApiFactory: (configuration?: Configuration, bas
|
|
|
129
129
|
*/
|
|
130
130
|
createNumberRange(createNumberRangeRequestDto: CreateNumberRangeRequestDto, authorization?: string, options?: any): AxiosPromise<CreateNumberRangeResponseClass>;
|
|
131
131
|
/**
|
|
132
|
-
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it.
|
|
132
|
+
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it. **Required Permissions** \"accounting-management.accounts.delete\"
|
|
133
133
|
* @summary Delete the Personal Account
|
|
134
134
|
* @param {string} code Unique identifier for the object.
|
|
135
135
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -138,7 +138,7 @@ export declare const NumberRangesApiFactory: (configuration?: Configuration, bas
|
|
|
138
138
|
*/
|
|
139
139
|
deleteNumberRange(code: string, authorization?: string, options?: any): AxiosPromise<void>;
|
|
140
140
|
/**
|
|
141
|
-
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information.
|
|
141
|
+
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information. **Required Permissions** \"accounting-management.accounts.view\"
|
|
142
142
|
* @summary Retrieve the Financial Account
|
|
143
143
|
* @param {string} code Unique identifier for the object.
|
|
144
144
|
* @param {string} expand
|
|
@@ -148,20 +148,20 @@ export declare const NumberRangesApiFactory: (configuration?: Configuration, bas
|
|
|
148
148
|
*/
|
|
149
149
|
getNumberRange(code: string, expand: string, authorization?: string, options?: any): AxiosPromise<GetNumberRangeResponseClass>;
|
|
150
150
|
/**
|
|
151
|
-
* 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.
|
|
151
|
+
* 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. **Required Permissions** \"accounting-management.accounts.view\"
|
|
152
152
|
* @summary List Financial Accounts
|
|
153
153
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
154
|
-
* @param {
|
|
155
|
-
* @param {
|
|
154
|
+
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
155
|
+
* @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.
|
|
156
156
|
* @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: slug, createdAt, accountType</i>
|
|
157
|
-
* @param {
|
|
157
|
+
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
158
158
|
* @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, slug, accountType</i>
|
|
159
159
|
* @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/>
|
|
160
160
|
* @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: slug, createdAt, accountType</i>
|
|
161
161
|
* @param {*} [options] Override http request option.
|
|
162
162
|
* @throws {RequiredError}
|
|
163
163
|
*/
|
|
164
|
-
listNumberRanges(authorization?: string, pageSize?:
|
|
164
|
+
listNumberRanges(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListNumberRangeResponseClass>;
|
|
165
165
|
};
|
|
166
166
|
/**
|
|
167
167
|
* Request parameters for createNumberRange operation in NumberRangesApi.
|
|
@@ -240,16 +240,16 @@ export interface NumberRangesApiListNumberRangesRequest {
|
|
|
240
240
|
readonly authorization?: string;
|
|
241
241
|
/**
|
|
242
242
|
* A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
243
|
-
* @type {
|
|
243
|
+
* @type {number}
|
|
244
244
|
* @memberof NumberRangesApiListNumberRanges
|
|
245
245
|
*/
|
|
246
|
-
readonly pageSize?:
|
|
246
|
+
readonly pageSize?: number;
|
|
247
247
|
/**
|
|
248
|
-
* 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,
|
|
249
|
-
* @type {
|
|
248
|
+
* 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.
|
|
249
|
+
* @type {string}
|
|
250
250
|
* @memberof NumberRangesApiListNumberRanges
|
|
251
251
|
*/
|
|
252
|
-
readonly pageToken?:
|
|
252
|
+
readonly pageToken?: string;
|
|
253
253
|
/**
|
|
254
254
|
* 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: slug, createdAt, accountType</i>
|
|
255
255
|
* @type {string}
|
|
@@ -258,10 +258,10 @@ export interface NumberRangesApiListNumberRangesRequest {
|
|
|
258
258
|
readonly filter?: string;
|
|
259
259
|
/**
|
|
260
260
|
* To search the list by any field, pass search=xxx to fetch the result.
|
|
261
|
-
* @type {
|
|
261
|
+
* @type {string}
|
|
262
262
|
* @memberof NumberRangesApiListNumberRanges
|
|
263
263
|
*/
|
|
264
|
-
readonly search?:
|
|
264
|
+
readonly search?: string;
|
|
265
265
|
/**
|
|
266
266
|
* 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, slug, accountType</i>
|
|
267
267
|
* @type {string}
|
|
@@ -289,7 +289,7 @@ export interface NumberRangesApiListNumberRangesRequest {
|
|
|
289
289
|
*/
|
|
290
290
|
export declare class NumberRangesApi extends BaseAPI {
|
|
291
291
|
/**
|
|
292
|
-
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account.
|
|
292
|
+
* This will create an number range in the database. The number range will be created with the provided name, type, and account number. Optionally, you can provide a parent financial account ID to create a sub-account. **Required Permissions** \"accounting-management.accounts.create\"
|
|
293
293
|
* @summary Create the Number Range
|
|
294
294
|
* @param {NumberRangesApiCreateNumberRangeRequest} requestParameters Request parameters.
|
|
295
295
|
* @param {*} [options] Override http request option.
|
|
@@ -298,7 +298,7 @@ export declare class NumberRangesApi extends BaseAPI {
|
|
|
298
298
|
*/
|
|
299
299
|
createNumberRange(requestParameters: NumberRangesApiCreateNumberRangeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateNumberRangeResponseClass, any>>;
|
|
300
300
|
/**
|
|
301
|
-
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it.
|
|
301
|
+
* Permanently deletes the Personal Account. Supply the unique code that was returned when you created the Personal Account and this will delete it. **Required Permissions** \"accounting-management.accounts.delete\"
|
|
302
302
|
* @summary Delete the Personal Account
|
|
303
303
|
* @param {NumberRangesApiDeleteNumberRangeRequest} requestParameters Request parameters.
|
|
304
304
|
* @param {*} [options] Override http request option.
|
|
@@ -307,7 +307,7 @@ export declare class NumberRangesApi extends BaseAPI {
|
|
|
307
307
|
*/
|
|
308
308
|
deleteNumberRange(requestParameters: NumberRangesApiDeleteNumberRangeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
309
309
|
/**
|
|
310
|
-
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information.
|
|
310
|
+
* Retrieves the details of the Financial Account that was previously created. Supply the unique Financial Account code that was returned when you created it and Emil Api will return the corresponding Financial Account information. **Required Permissions** \"accounting-management.accounts.view\"
|
|
311
311
|
* @summary Retrieve the Financial Account
|
|
312
312
|
* @param {NumberRangesApiGetNumberRangeRequest} requestParameters Request parameters.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
@@ -316,7 +316,7 @@ export declare class NumberRangesApi extends BaseAPI {
|
|
|
316
316
|
*/
|
|
317
317
|
getNumberRange(requestParameters: NumberRangesApiGetNumberRangeRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetNumberRangeResponseClass, any>>;
|
|
318
318
|
/**
|
|
319
|
-
* 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.
|
|
319
|
+
* 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. **Required Permissions** \"accounting-management.accounts.view\"
|
|
320
320
|
* @summary List Financial Accounts
|
|
321
321
|
* @param {NumberRangesApiListNumberRangesRequest} requestParameters Request parameters.
|
|
322
322
|
* @param {*} [options] Override http request option.
|