@emilgroup/insurance-sdk-node 1.89.1-beta.30 → 1.90.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/.openapi-generator/FILES +0 -1
- package/README.md +2 -2
- package/api/booking-funnels-api.ts +20 -20
- package/dist/api/booking-funnels-api.d.ts +20 -20
- package/dist/api/booking-funnels-api.js +16 -16
- package/dist/models/booking-funnel-class.d.ts +1 -1
- package/dist/models/index.d.ts +0 -1
- package/dist/models/index.js +0 -1
- package/dist/models/list-booking-funnels-response-class.d.ts +3 -3
- package/models/booking-funnel-class.ts +1 -1
- package/models/index.ts +0 -1
- package/models/list-booking-funnels-response-class.ts +3 -3
- package/package.json +1 -1
- package/dist/models/list-booking-funnel-class.d.ts +0 -114
- package/dist/models/list-booking-funnel-class.js +0 -15
- package/models/list-booking-funnel-class.ts +0 -120
package/.openapi-generator/FILES
CHANGED
|
@@ -151,7 +151,6 @@ models/lead-status-class.ts
|
|
|
151
151
|
models/link-lead-partner-request-dto.ts
|
|
152
152
|
models/link-partner-request-dto.ts
|
|
153
153
|
models/link-partner-response-class.ts
|
|
154
|
-
models/list-booking-funnel-class.ts
|
|
155
154
|
models/list-booking-funnels-response-class.ts
|
|
156
155
|
models/list-commission-agreement-items-response-class.ts
|
|
157
156
|
models/list-commission-agreement-products-response-class.ts
|
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/insurance-sdk-node@1.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.90.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.90.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -186,16 +186,16 @@ export const BookingFunnelsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
186
186
|
};
|
|
187
187
|
},
|
|
188
188
|
/**
|
|
189
|
-
* Returns a list of booking funnels you have previously created.
|
|
189
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
190
190
|
* @summary List booking funnels
|
|
191
191
|
* @param {string} [authorization] Bearer Token
|
|
192
192
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
193
193
|
* @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.
|
|
194
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
194
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
195
195
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
196
|
-
* @param {string} [order]
|
|
197
|
-
* @param {string} [expand]
|
|
198
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
196
|
+
* @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.
|
|
197
|
+
* @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.
|
|
198
|
+
* @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.
|
|
199
199
|
* @param {*} [options] Override http request option.
|
|
200
200
|
* @throws {RequiredError}
|
|
201
201
|
*/
|
|
@@ -409,16 +409,16 @@ export const BookingFunnelsApiFp = function(configuration?: Configuration) {
|
|
|
409
409
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
410
410
|
},
|
|
411
411
|
/**
|
|
412
|
-
* Returns a list of booking funnels you have previously created.
|
|
412
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
413
413
|
* @summary List booking funnels
|
|
414
414
|
* @param {string} [authorization] Bearer Token
|
|
415
415
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
416
416
|
* @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.
|
|
417
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
417
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
418
418
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
419
|
-
* @param {string} [order]
|
|
420
|
-
* @param {string} [expand]
|
|
421
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
419
|
+
* @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.
|
|
420
|
+
* @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.
|
|
421
|
+
* @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.
|
|
422
422
|
* @param {*} [options] Override http request option.
|
|
423
423
|
* @throws {RequiredError}
|
|
424
424
|
*/
|
|
@@ -495,16 +495,16 @@ export const BookingFunnelsApiFactory = function (configuration?: Configuration,
|
|
|
495
495
|
return localVarFp.getBookingFunnel(code, authorization, options).then((request) => request(axios, basePath));
|
|
496
496
|
},
|
|
497
497
|
/**
|
|
498
|
-
* Returns a list of booking funnels you have previously created.
|
|
498
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
499
499
|
* @summary List booking funnels
|
|
500
500
|
* @param {string} [authorization] Bearer Token
|
|
501
501
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
502
502
|
* @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.
|
|
503
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
503
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
504
504
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
505
|
-
* @param {string} [order]
|
|
506
|
-
* @param {string} [expand]
|
|
507
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
505
|
+
* @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.
|
|
506
|
+
* @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.
|
|
507
|
+
* @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.
|
|
508
508
|
* @param {*} [options] Override http request option.
|
|
509
509
|
* @throws {RequiredError}
|
|
510
510
|
*/
|
|
@@ -628,7 +628,7 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
628
628
|
readonly pageToken?: string
|
|
629
629
|
|
|
630
630
|
/**
|
|
631
|
-
* Filter the response by one or multiple fields.
|
|
631
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
632
632
|
* @type {string}
|
|
633
633
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
634
634
|
*/
|
|
@@ -642,21 +642,21 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
642
642
|
readonly search?: string
|
|
643
643
|
|
|
644
644
|
/**
|
|
645
|
-
*
|
|
645
|
+
* 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.
|
|
646
646
|
* @type {string}
|
|
647
647
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
648
648
|
*/
|
|
649
649
|
readonly order?: string
|
|
650
650
|
|
|
651
651
|
/**
|
|
652
|
-
*
|
|
652
|
+
* 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.
|
|
653
653
|
* @type {string}
|
|
654
654
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
655
655
|
*/
|
|
656
656
|
readonly expand?: string
|
|
657
657
|
|
|
658
658
|
/**
|
|
659
|
-
* Filters the response by one or multiple fields.
|
|
659
|
+
* 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.
|
|
660
660
|
* @type {string}
|
|
661
661
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
662
662
|
*/
|
|
@@ -763,7 +763,7 @@ export class BookingFunnelsApi extends BaseAPI {
|
|
|
763
763
|
}
|
|
764
764
|
|
|
765
765
|
/**
|
|
766
|
-
* Returns a list of booking funnels you have previously created.
|
|
766
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
767
767
|
* @summary List booking funnels
|
|
768
768
|
* @param {BookingFunnelsApiListBookingFunnelsRequest} requestParameters Request parameters.
|
|
769
769
|
* @param {*} [options] Override http request option.
|
|
@@ -54,16 +54,16 @@ export declare const BookingFunnelsApiAxiosParamCreator: (configuration?: Config
|
|
|
54
54
|
*/
|
|
55
55
|
getBookingFunnel: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
56
|
/**
|
|
57
|
-
* Returns a list of booking funnels you have previously created.
|
|
57
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
58
58
|
* @summary List booking funnels
|
|
59
59
|
* @param {string} [authorization] Bearer Token
|
|
60
60
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
61
61
|
* @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.
|
|
62
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
62
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
63
63
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
64
|
-
* @param {string} [order]
|
|
65
|
-
* @param {string} [expand]
|
|
66
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
64
|
+
* @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.
|
|
65
|
+
* @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.
|
|
66
|
+
* @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.
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
68
68
|
* @throws {RequiredError}
|
|
69
69
|
*/
|
|
@@ -121,16 +121,16 @@ export declare const BookingFunnelsApiFp: (configuration?: Configuration) => {
|
|
|
121
121
|
*/
|
|
122
122
|
getBookingFunnel(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBookingFunnelResponseClass>>;
|
|
123
123
|
/**
|
|
124
|
-
* Returns a list of booking funnels you have previously created.
|
|
124
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
125
125
|
* @summary List booking funnels
|
|
126
126
|
* @param {string} [authorization] Bearer Token
|
|
127
127
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
128
128
|
* @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.
|
|
129
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
129
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
130
130
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
131
|
-
* @param {string} [order]
|
|
132
|
-
* @param {string} [expand]
|
|
133
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
131
|
+
* @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.
|
|
132
|
+
* @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.
|
|
133
|
+
* @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.
|
|
134
134
|
* @param {*} [options] Override http request option.
|
|
135
135
|
* @throws {RequiredError}
|
|
136
136
|
*/
|
|
@@ -188,16 +188,16 @@ export declare const BookingFunnelsApiFactory: (configuration?: Configuration, b
|
|
|
188
188
|
*/
|
|
189
189
|
getBookingFunnel(code: string, authorization?: string, options?: any): AxiosPromise<GetBookingFunnelResponseClass>;
|
|
190
190
|
/**
|
|
191
|
-
* Returns a list of booking funnels you have previously created.
|
|
191
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
192
192
|
* @summary List booking funnels
|
|
193
193
|
* @param {string} [authorization] Bearer Token
|
|
194
194
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
195
195
|
* @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.
|
|
196
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
196
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
197
197
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
198
|
-
* @param {string} [order]
|
|
199
|
-
* @param {string} [expand]
|
|
200
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
198
|
+
* @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.
|
|
199
|
+
* @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.
|
|
200
|
+
* @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.
|
|
201
201
|
* @param {*} [options] Override http request option.
|
|
202
202
|
* @throws {RequiredError}
|
|
203
203
|
*/
|
|
@@ -304,7 +304,7 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
304
304
|
*/
|
|
305
305
|
readonly pageToken?: string;
|
|
306
306
|
/**
|
|
307
|
-
* Filter the response by one or multiple fields.
|
|
307
|
+
* Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
308
308
|
* @type {string}
|
|
309
309
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
310
310
|
*/
|
|
@@ -316,19 +316,19 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
316
316
|
*/
|
|
317
317
|
readonly search?: string;
|
|
318
318
|
/**
|
|
319
|
-
*
|
|
319
|
+
* 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.
|
|
320
320
|
* @type {string}
|
|
321
321
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
322
322
|
*/
|
|
323
323
|
readonly order?: string;
|
|
324
324
|
/**
|
|
325
|
-
*
|
|
325
|
+
* 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.
|
|
326
326
|
* @type {string}
|
|
327
327
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
328
328
|
*/
|
|
329
329
|
readonly expand?: string;
|
|
330
330
|
/**
|
|
331
|
-
* Filters the response by one or multiple fields.
|
|
331
|
+
* 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.
|
|
332
332
|
* @type {string}
|
|
333
333
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
334
334
|
*/
|
|
@@ -419,7 +419,7 @@ export declare class BookingFunnelsApi extends BaseAPI {
|
|
|
419
419
|
*/
|
|
420
420
|
getBookingFunnel(requestParameters: BookingFunnelsApiGetBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingFunnelResponseClass, any, {}>>;
|
|
421
421
|
/**
|
|
422
|
-
* Returns a list of booking funnels you have previously created.
|
|
422
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
423
423
|
* @summary List booking funnels
|
|
424
424
|
* @param {BookingFunnelsApiListBookingFunnelsRequest} requestParameters Request parameters.
|
|
425
425
|
* @param {*} [options] Override http request option.
|
|
@@ -242,16 +242,16 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
242
242
|
});
|
|
243
243
|
},
|
|
244
244
|
/**
|
|
245
|
-
* Returns a list of booking funnels you have previously created.
|
|
245
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
246
246
|
* @summary List booking funnels
|
|
247
247
|
* @param {string} [authorization] Bearer Token
|
|
248
248
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
249
249
|
* @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.
|
|
250
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
250
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
251
251
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
252
|
-
* @param {string} [order]
|
|
253
|
-
* @param {string} [expand]
|
|
254
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
252
|
+
* @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.
|
|
253
|
+
* @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.
|
|
254
|
+
* @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.
|
|
255
255
|
* @param {*} [options] Override http request option.
|
|
256
256
|
* @throws {RequiredError}
|
|
257
257
|
*/
|
|
@@ -492,16 +492,16 @@ var BookingFunnelsApiFp = function (configuration) {
|
|
|
492
492
|
});
|
|
493
493
|
},
|
|
494
494
|
/**
|
|
495
|
-
* Returns a list of booking funnels you have previously created.
|
|
495
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
496
496
|
* @summary List booking funnels
|
|
497
497
|
* @param {string} [authorization] Bearer Token
|
|
498
498
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
499
499
|
* @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.
|
|
500
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
500
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
501
501
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
502
|
-
* @param {string} [order]
|
|
503
|
-
* @param {string} [expand]
|
|
504
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
502
|
+
* @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.
|
|
503
|
+
* @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.
|
|
504
|
+
* @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.
|
|
505
505
|
* @param {*} [options] Override http request option.
|
|
506
506
|
* @throws {RequiredError}
|
|
507
507
|
*/
|
|
@@ -605,16 +605,16 @@ var BookingFunnelsApiFactory = function (configuration, basePath, axios) {
|
|
|
605
605
|
return localVarFp.getBookingFunnel(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
606
606
|
},
|
|
607
607
|
/**
|
|
608
|
-
* Returns a list of booking funnels you have previously created.
|
|
608
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
609
609
|
* @summary List booking funnels
|
|
610
610
|
* @param {string} [authorization] Bearer Token
|
|
611
611
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
612
612
|
* @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.
|
|
613
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
613
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
|
|
614
614
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
615
|
-
* @param {string} [order]
|
|
616
|
-
* @param {string} [expand]
|
|
617
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
615
|
+
* @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.
|
|
616
|
+
* @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.
|
|
617
|
+
* @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.
|
|
618
618
|
* @param {*} [options] Override http request option.
|
|
619
619
|
* @throws {RequiredError}
|
|
620
620
|
*/
|
|
@@ -695,7 +695,7 @@ var BookingFunnelsApi = /** @class */ (function (_super) {
|
|
|
695
695
|
return (0, exports.BookingFunnelsApiFp)(this.configuration).getBookingFunnel(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
696
696
|
};
|
|
697
697
|
/**
|
|
698
|
-
* Returns a list of booking funnels you have previously created.
|
|
698
|
+
* Returns a list of booking funnels you have previously created. The booking funnels are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"policy-management.products.view\"
|
|
699
699
|
* @summary List booking funnels
|
|
700
700
|
* @param {BookingFunnelsApiListBookingFunnelsRequest} requestParameters Request parameters.
|
|
701
701
|
* @param {*} [options] Override http request option.
|
package/dist/models/index.d.ts
CHANGED
|
@@ -116,7 +116,6 @@ export * from './lead-status-class';
|
|
|
116
116
|
export * from './link-lead-partner-request-dto';
|
|
117
117
|
export * from './link-partner-request-dto';
|
|
118
118
|
export * from './link-partner-response-class';
|
|
119
|
-
export * from './list-booking-funnel-class';
|
|
120
119
|
export * from './list-booking-funnels-response-class';
|
|
121
120
|
export * from './list-commission-agreement-items-response-class';
|
|
122
121
|
export * from './list-commission-agreement-products-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -132,7 +132,6 @@ __exportStar(require("./lead-status-class"), exports);
|
|
|
132
132
|
__exportStar(require("./link-lead-partner-request-dto"), exports);
|
|
133
133
|
__exportStar(require("./link-partner-request-dto"), exports);
|
|
134
134
|
__exportStar(require("./link-partner-response-class"), exports);
|
|
135
|
-
__exportStar(require("./list-booking-funnel-class"), exports);
|
|
136
135
|
__exportStar(require("./list-booking-funnels-response-class"), exports);
|
|
137
136
|
__exportStar(require("./list-commission-agreement-items-response-class"), exports);
|
|
138
137
|
__exportStar(require("./list-commission-agreement-products-response-class"), exports);
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { BookingFunnelClass } from './booking-funnel-class';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -18,10 +18,10 @@ import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
|
18
18
|
export interface ListBookingFunnelsResponseClass {
|
|
19
19
|
/**
|
|
20
20
|
* BookingFunnels
|
|
21
|
-
* @type {Array<
|
|
21
|
+
* @type {Array<BookingFunnelClass>}
|
|
22
22
|
* @memberof ListBookingFunnelsResponseClass
|
|
23
23
|
*/
|
|
24
|
-
'items': Array<
|
|
24
|
+
'items': Array<BookingFunnelClass>;
|
|
25
25
|
/**
|
|
26
26
|
* Next page token.
|
|
27
27
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -116,7 +116,6 @@ export * from './lead-status-class';
|
|
|
116
116
|
export * from './link-lead-partner-request-dto';
|
|
117
117
|
export * from './link-partner-request-dto';
|
|
118
118
|
export * from './link-partner-response-class';
|
|
119
|
-
export * from './list-booking-funnel-class';
|
|
120
119
|
export * from './list-booking-funnels-response-class';
|
|
121
120
|
export * from './list-commission-agreement-items-response-class';
|
|
122
121
|
export * from './list-commission-agreement-products-response-class';
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { BookingFunnelClass } from './booking-funnel-class';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -23,10 +23,10 @@ import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
|
23
23
|
export interface ListBookingFunnelsResponseClass {
|
|
24
24
|
/**
|
|
25
25
|
* BookingFunnels
|
|
26
|
-
* @type {Array<
|
|
26
|
+
* @type {Array<BookingFunnelClass>}
|
|
27
27
|
* @memberof ListBookingFunnelsResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'items': Array<
|
|
29
|
+
'items': Array<BookingFunnelClass>;
|
|
30
30
|
/**
|
|
31
31
|
* Next page token.
|
|
32
32
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* EMIL InsuranceService
|
|
3
|
-
* The EMIL InsuranceService API description
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
* Contact: kontakt@emil.de
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface ListBookingFunnelClass
|
|
16
|
-
*/
|
|
17
|
-
export interface ListBookingFunnelClass {
|
|
18
|
-
/**
|
|
19
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof ListBookingFunnelClass
|
|
22
|
-
*/
|
|
23
|
-
'id': number;
|
|
24
|
-
/**
|
|
25
|
-
* Unique identifier for the object.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof ListBookingFunnelClass
|
|
28
|
-
*/
|
|
29
|
-
'code': string;
|
|
30
|
-
/**
|
|
31
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof ListBookingFunnelClass
|
|
34
|
-
*/
|
|
35
|
-
'parentId': number;
|
|
36
|
-
/**
|
|
37
|
-
* Booking Funnel name.
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof ListBookingFunnelClass
|
|
40
|
-
*/
|
|
41
|
-
'name': string;
|
|
42
|
-
/**
|
|
43
|
-
* Booking Funnel snippet.
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof ListBookingFunnelClass
|
|
46
|
-
*/
|
|
47
|
-
'jsCode': string;
|
|
48
|
-
/**
|
|
49
|
-
* Booking Funnel JSON steps configuration.
|
|
50
|
-
* @type {object}
|
|
51
|
-
* @memberof ListBookingFunnelClass
|
|
52
|
-
*/
|
|
53
|
-
'stepsConfig'?: object;
|
|
54
|
-
/**
|
|
55
|
-
* Booking Funnel custom CSS.
|
|
56
|
-
* @type {string}
|
|
57
|
-
* @memberof ListBookingFunnelClass
|
|
58
|
-
*/
|
|
59
|
-
'css': string;
|
|
60
|
-
/**
|
|
61
|
-
* Booking Funnel logo url.
|
|
62
|
-
* @type {string}
|
|
63
|
-
* @memberof ListBookingFunnelClass
|
|
64
|
-
*/
|
|
65
|
-
'logoPath': string;
|
|
66
|
-
/**
|
|
67
|
-
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
68
|
-
* @type {string}
|
|
69
|
-
* @memberof ListBookingFunnelClass
|
|
70
|
-
*/
|
|
71
|
-
'productSlug': string;
|
|
72
|
-
/**
|
|
73
|
-
* Product version ID.
|
|
74
|
-
* @type {number}
|
|
75
|
-
* @memberof ListBookingFunnelClass
|
|
76
|
-
*/
|
|
77
|
-
'productVersionId': number;
|
|
78
|
-
/**
|
|
79
|
-
* Time at which the object was created.
|
|
80
|
-
* @type {string}
|
|
81
|
-
* @memberof ListBookingFunnelClass
|
|
82
|
-
*/
|
|
83
|
-
'createdAt': string;
|
|
84
|
-
/**
|
|
85
|
-
* Time at which the object was updated.
|
|
86
|
-
* @type {string}
|
|
87
|
-
* @memberof ListBookingFunnelClass
|
|
88
|
-
*/
|
|
89
|
-
'updatedAt': string;
|
|
90
|
-
/**
|
|
91
|
-
* Booking Funnel version.
|
|
92
|
-
* @type {number}
|
|
93
|
-
* @memberof ListBookingFunnelClass
|
|
94
|
-
*/
|
|
95
|
-
'version': number;
|
|
96
|
-
/**
|
|
97
|
-
* Show booking funnel on applications page.
|
|
98
|
-
* @type {boolean}
|
|
99
|
-
* @memberof ListBookingFunnelClass
|
|
100
|
-
*/
|
|
101
|
-
'shouldShowOnApplicationsPage'?: boolean;
|
|
102
|
-
/**
|
|
103
|
-
* Identifier of the user who created the record.
|
|
104
|
-
* @type {string}
|
|
105
|
-
* @memberof ListBookingFunnelClass
|
|
106
|
-
*/
|
|
107
|
-
'createdBy': string;
|
|
108
|
-
/**
|
|
109
|
-
* Identifier of the user who last updated the record.
|
|
110
|
-
* @type {string}
|
|
111
|
-
* @memberof ListBookingFunnelClass
|
|
112
|
-
*/
|
|
113
|
-
'updatedBy': string;
|
|
114
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* EMIL InsuranceService
|
|
6
|
-
* The EMIL InsuranceService API description
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
* Contact: kontakt@emil.de
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* EMIL InsuranceService
|
|
5
|
-
* The EMIL InsuranceService API description
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
* Contact: kontakt@emil.de
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
* @interface ListBookingFunnelClass
|
|
21
|
-
*/
|
|
22
|
-
export interface ListBookingFunnelClass {
|
|
23
|
-
/**
|
|
24
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
-
* @type {number}
|
|
26
|
-
* @memberof ListBookingFunnelClass
|
|
27
|
-
*/
|
|
28
|
-
'id': number;
|
|
29
|
-
/**
|
|
30
|
-
* Unique identifier for the object.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof ListBookingFunnelClass
|
|
33
|
-
*/
|
|
34
|
-
'code': string;
|
|
35
|
-
/**
|
|
36
|
-
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
37
|
-
* @type {number}
|
|
38
|
-
* @memberof ListBookingFunnelClass
|
|
39
|
-
*/
|
|
40
|
-
'parentId': number;
|
|
41
|
-
/**
|
|
42
|
-
* Booking Funnel name.
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof ListBookingFunnelClass
|
|
45
|
-
*/
|
|
46
|
-
'name': string;
|
|
47
|
-
/**
|
|
48
|
-
* Booking Funnel snippet.
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof ListBookingFunnelClass
|
|
51
|
-
*/
|
|
52
|
-
'jsCode': string;
|
|
53
|
-
/**
|
|
54
|
-
* Booking Funnel JSON steps configuration.
|
|
55
|
-
* @type {object}
|
|
56
|
-
* @memberof ListBookingFunnelClass
|
|
57
|
-
*/
|
|
58
|
-
'stepsConfig'?: object;
|
|
59
|
-
/**
|
|
60
|
-
* Booking Funnel custom CSS.
|
|
61
|
-
* @type {string}
|
|
62
|
-
* @memberof ListBookingFunnelClass
|
|
63
|
-
*/
|
|
64
|
-
'css': string;
|
|
65
|
-
/**
|
|
66
|
-
* Booking Funnel logo url.
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof ListBookingFunnelClass
|
|
69
|
-
*/
|
|
70
|
-
'logoPath': string;
|
|
71
|
-
/**
|
|
72
|
-
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
73
|
-
* @type {string}
|
|
74
|
-
* @memberof ListBookingFunnelClass
|
|
75
|
-
*/
|
|
76
|
-
'productSlug': string;
|
|
77
|
-
/**
|
|
78
|
-
* Product version ID.
|
|
79
|
-
* @type {number}
|
|
80
|
-
* @memberof ListBookingFunnelClass
|
|
81
|
-
*/
|
|
82
|
-
'productVersionId': number;
|
|
83
|
-
/**
|
|
84
|
-
* Time at which the object was created.
|
|
85
|
-
* @type {string}
|
|
86
|
-
* @memberof ListBookingFunnelClass
|
|
87
|
-
*/
|
|
88
|
-
'createdAt': string;
|
|
89
|
-
/**
|
|
90
|
-
* Time at which the object was updated.
|
|
91
|
-
* @type {string}
|
|
92
|
-
* @memberof ListBookingFunnelClass
|
|
93
|
-
*/
|
|
94
|
-
'updatedAt': string;
|
|
95
|
-
/**
|
|
96
|
-
* Booking Funnel version.
|
|
97
|
-
* @type {number}
|
|
98
|
-
* @memberof ListBookingFunnelClass
|
|
99
|
-
*/
|
|
100
|
-
'version': number;
|
|
101
|
-
/**
|
|
102
|
-
* Show booking funnel on applications page.
|
|
103
|
-
* @type {boolean}
|
|
104
|
-
* @memberof ListBookingFunnelClass
|
|
105
|
-
*/
|
|
106
|
-
'shouldShowOnApplicationsPage'?: boolean;
|
|
107
|
-
/**
|
|
108
|
-
* Identifier of the user who created the record.
|
|
109
|
-
* @type {string}
|
|
110
|
-
* @memberof ListBookingFunnelClass
|
|
111
|
-
*/
|
|
112
|
-
'createdBy': string;
|
|
113
|
-
/**
|
|
114
|
-
* Identifier of the user who last updated the record.
|
|
115
|
-
* @type {string}
|
|
116
|
-
* @memberof ListBookingFunnelClass
|
|
117
|
-
*/
|
|
118
|
-
'updatedBy': string;
|
|
119
|
-
}
|
|
120
|
-
|