@emilgroup/accounting-sdk-node 1.8.0 → 1.10.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/vbas-api.ts +8 -8
- package/api/vbus-api.ts +8 -8
- package/dist/api/vbas-api.d.ts +8 -8
- package/dist/api/vbas-api.js +6 -6
- package/dist/api/vbus-api.d.ts +8 -8
- package/dist/api/vbus-api.js +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/accounting-sdk-node@1.
|
|
20
|
+
npm install @emilgroup/accounting-sdk-node@1.10.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/accounting-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/accounting-sdk-node@1.10.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `FinancialAccountsApi`.
|
package/api/vbas-api.ts
CHANGED
|
@@ -143,9 +143,9 @@ export const VbasApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
143
143
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
144
144
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
145
145
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
146
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
146
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
147
147
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
148
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
148
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
149
149
|
* @param {any} [expand] No expanding supported
|
|
150
150
|
* @param {any} [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.
|
|
151
151
|
* @param {*} [options] Override http request option.
|
|
@@ -305,9 +305,9 @@ export const VbasApiFp = function(configuration?: Configuration) {
|
|
|
305
305
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
306
306
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
307
307
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
308
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
308
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
309
309
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
310
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
310
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
311
311
|
* @param {any} [expand] No expanding supported
|
|
312
312
|
* @param {any} [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.
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
@@ -369,9 +369,9 @@ export const VbasApiFactory = function (configuration?: Configuration, basePath?
|
|
|
369
369
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
370
370
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
371
371
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
372
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
372
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
373
373
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
374
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
374
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
375
375
|
* @param {any} [expand] No expanding supported
|
|
376
376
|
* @param {any} [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.
|
|
377
377
|
* @param {*} [options] Override http request option.
|
|
@@ -472,7 +472,7 @@ export interface VbasApiListVbasRequest {
|
|
|
472
472
|
readonly pageToken?: any
|
|
473
473
|
|
|
474
474
|
/**
|
|
475
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
475
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
476
476
|
* @type {any}
|
|
477
477
|
* @memberof VbasApiListVbas
|
|
478
478
|
*/
|
|
@@ -486,7 +486,7 @@ export interface VbasApiListVbasRequest {
|
|
|
486
486
|
readonly search?: any
|
|
487
487
|
|
|
488
488
|
/**
|
|
489
|
-
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
489
|
+
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
490
490
|
* @type {any}
|
|
491
491
|
* @memberof VbasApiListVbas
|
|
492
492
|
*/
|
package/api/vbus-api.ts
CHANGED
|
@@ -196,9 +196,9 @@ export const VbusApiAxiosParamCreator = function (configuration?: Configuration)
|
|
|
196
196
|
* @param {string} [authorization] Bearer Token
|
|
197
197
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
198
198
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
199
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
199
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
200
200
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
201
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
201
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
202
202
|
* @param {any} [expand] No expanding supported
|
|
203
203
|
* @param {any} [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.
|
|
204
204
|
* @param {*} [options] Override http request option.
|
|
@@ -370,9 +370,9 @@ export const VbusApiFp = function(configuration?: Configuration) {
|
|
|
370
370
|
* @param {string} [authorization] Bearer Token
|
|
371
371
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
372
372
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
373
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
373
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
374
374
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
375
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
375
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
376
376
|
* @param {any} [expand] No expanding supported
|
|
377
377
|
* @param {any} [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.
|
|
378
378
|
* @param {*} [options] Override http request option.
|
|
@@ -445,9 +445,9 @@ export const VbusApiFactory = function (configuration?: Configuration, basePath?
|
|
|
445
445
|
* @param {string} [authorization] Bearer Token
|
|
446
446
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
447
447
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
448
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
448
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
449
449
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
450
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
450
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
451
451
|
* @param {any} [expand] No expanding supported
|
|
452
452
|
* @param {any} [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.
|
|
453
453
|
* @param {*} [options] Override http request option.
|
|
@@ -569,7 +569,7 @@ export interface VbusApiListVbusRequest {
|
|
|
569
569
|
readonly pageToken?: any
|
|
570
570
|
|
|
571
571
|
/**
|
|
572
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
572
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
573
573
|
* @type {any}
|
|
574
574
|
* @memberof VbusApiListVbus
|
|
575
575
|
*/
|
|
@@ -583,7 +583,7 @@ export interface VbusApiListVbusRequest {
|
|
|
583
583
|
readonly search?: any
|
|
584
584
|
|
|
585
585
|
/**
|
|
586
|
-
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
586
|
+
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
587
587
|
* @type {any}
|
|
588
588
|
* @memberof VbusApiListVbus
|
|
589
589
|
*/
|
package/dist/api/vbas-api.d.ts
CHANGED
|
@@ -47,9 +47,9 @@ export declare const VbasApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
47
47
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
48
48
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
49
49
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
50
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
50
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
51
51
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
52
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
52
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
53
53
|
* @param {any} [expand] No expanding supported
|
|
54
54
|
* @param {any} [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.
|
|
55
55
|
* @param {*} [options] Override http request option.
|
|
@@ -97,9 +97,9 @@ export declare const VbasApiFp: (configuration?: Configuration) => {
|
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
98
98
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
99
99
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
100
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
100
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
101
101
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
102
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
102
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
103
103
|
* @param {any} [expand] No expanding supported
|
|
104
104
|
* @param {any} [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.
|
|
@@ -147,9 +147,9 @@ export declare const VbasApiFactory: (configuration?: Configuration, basePath?:
|
|
|
147
147
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
148
148
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
149
149
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
150
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
150
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
151
151
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
152
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
152
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
153
153
|
* @param {any} [expand] No expanding supported
|
|
154
154
|
* @param {any} [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.
|
|
155
155
|
* @param {*} [options] Override http request option.
|
|
@@ -236,7 +236,7 @@ export interface VbasApiListVbasRequest {
|
|
|
236
236
|
*/
|
|
237
237
|
readonly pageToken?: any;
|
|
238
238
|
/**
|
|
239
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
239
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
240
240
|
* @type {any}
|
|
241
241
|
* @memberof VbasApiListVbas
|
|
242
242
|
*/
|
|
@@ -248,7 +248,7 @@ export interface VbasApiListVbasRequest {
|
|
|
248
248
|
*/
|
|
249
249
|
readonly search?: any;
|
|
250
250
|
/**
|
|
251
|
-
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
251
|
+
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
252
252
|
* @type {any}
|
|
253
253
|
* @memberof VbasApiListVbas
|
|
254
254
|
*/
|
package/dist/api/vbas-api.js
CHANGED
|
@@ -203,9 +203,9 @@ var VbasApiAxiosParamCreator = function (configuration) {
|
|
|
203
203
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
204
204
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
205
205
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
206
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
206
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
207
207
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
208
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
208
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
209
209
|
* @param {any} [expand] No expanding supported
|
|
210
210
|
* @param {any} [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.
|
|
211
211
|
* @param {*} [options] Override http request option.
|
|
@@ -381,9 +381,9 @@ var VbasApiFp = function (configuration) {
|
|
|
381
381
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
382
382
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
383
383
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
384
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
384
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
385
385
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
386
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
386
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
387
387
|
* @param {any} [expand] No expanding supported
|
|
388
388
|
* @param {any} [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.
|
|
389
389
|
* @param {*} [options] Override http request option.
|
|
@@ -463,9 +463,9 @@ var VbasApiFactory = function (configuration, basePath, axios) {
|
|
|
463
463
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
464
464
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
465
465
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
466
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
466
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, policyCode, customerName, status, expiryDate, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
467
467
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
468
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt</i>
|
|
468
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, expiryDate, createdAt, updatedAt, status</i>
|
|
469
469
|
* @param {any} [expand] No expanding supported
|
|
470
470
|
* @param {any} [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.
|
|
471
471
|
* @param {*} [options] Override http request option.
|
package/dist/api/vbus-api.d.ts
CHANGED
|
@@ -59,9 +59,9 @@ export declare const VbusApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
59
59
|
* @param {string} [authorization] Bearer Token
|
|
60
60
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
61
61
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
62
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
62
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
63
63
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
64
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
64
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
65
65
|
* @param {any} [expand] No expanding supported
|
|
66
66
|
* @param {any} [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.
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
@@ -118,9 +118,9 @@ export declare const VbusApiFp: (configuration?: Configuration) => {
|
|
|
118
118
|
* @param {string} [authorization] Bearer Token
|
|
119
119
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
120
120
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
121
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
121
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
122
122
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
123
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
123
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
124
124
|
* @param {any} [expand] No expanding supported
|
|
125
125
|
* @param {any} [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.
|
|
126
126
|
* @param {*} [options] Override http request option.
|
|
@@ -177,9 +177,9 @@ export declare const VbusApiFactory: (configuration?: Configuration, basePath?:
|
|
|
177
177
|
* @param {string} [authorization] Bearer Token
|
|
178
178
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
179
179
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
180
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
180
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
181
181
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
182
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
182
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
183
183
|
* @param {any} [expand] No expanding supported
|
|
184
184
|
* @param {any} [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.
|
|
185
185
|
* @param {*} [options] Override http request option.
|
|
@@ -285,7 +285,7 @@ export interface VbusApiListVbusRequest {
|
|
|
285
285
|
*/
|
|
286
286
|
readonly pageToken?: any;
|
|
287
287
|
/**
|
|
288
|
-
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
288
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
289
289
|
* @type {any}
|
|
290
290
|
* @memberof VbusApiListVbus
|
|
291
291
|
*/
|
|
@@ -297,7 +297,7 @@ export interface VbusApiListVbusRequest {
|
|
|
297
297
|
*/
|
|
298
298
|
readonly search?: any;
|
|
299
299
|
/**
|
|
300
|
-
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
300
|
+
* Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
301
301
|
* @type {any}
|
|
302
302
|
* @memberof VbusApiListVbus
|
|
303
303
|
*/
|
package/dist/api/vbus-api.js
CHANGED
|
@@ -252,9 +252,9 @@ var VbusApiAxiosParamCreator = function (configuration) {
|
|
|
252
252
|
* @param {string} [authorization] Bearer Token
|
|
253
253
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
254
254
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
255
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
255
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
256
256
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
257
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
257
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
258
258
|
* @param {any} [expand] No expanding supported
|
|
259
259
|
* @param {any} [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.
|
|
260
260
|
* @param {*} [options] Override http request option.
|
|
@@ -451,9 +451,9 @@ var VbusApiFp = function (configuration) {
|
|
|
451
451
|
* @param {string} [authorization] Bearer Token
|
|
452
452
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
453
453
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
454
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
454
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
455
455
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
456
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
456
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
457
457
|
* @param {any} [expand] No expanding supported
|
|
458
458
|
* @param {any} [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.
|
|
459
459
|
* @param {*} [options] Override http request option.
|
|
@@ -544,9 +544,9 @@ var VbusApiFactory = function (configuration, basePath, axios) {
|
|
|
544
544
|
* @param {string} [authorization] Bearer Token
|
|
545
545
|
* @param {any} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
546
546
|
* @param {any} [pageToken] A cursor for use in pagination. pageToken is an ID that defines your place in the list. For instance, if you make a list request and receive 100 objects and pageToken=1, your subsequent call can include pageToken=2 in order to fetch the next page of the list.
|
|
547
|
-
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
547
|
+
* @param {any} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, leadNumber, policyNumber, leadCode, policyCode, customerName, status, transmissionStart, createdAt</i> <br/> <i>policyCode</i> is required, other filters are optional.
|
|
548
548
|
* @param {any} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
549
|
-
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt</i>
|
|
549
|
+
* @param {any} [order] Order allowing you to specify the desired order of entities retrieved from the server.<br/> <br/> <i>Allowed values: id, code, transmissionStart, createdAt, updatedAt, status</i>
|
|
550
550
|
* @param {any} [expand] No expanding supported
|
|
551
551
|
* @param {any} [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.
|
|
552
552
|
* @param {*} [options] Override http request option.
|