@emilgroup/insurance-sdk 1.91.0 → 1.91.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +1 -0
- 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 +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/list-booking-funnel-class.d.ts +114 -0
- package/dist/models/list-booking-funnel-class.js +15 -0
- package/dist/models/list-booking-funnels-response-class.d.ts +3 -3
- package/models/booking-funnel-class.ts +1 -1
- package/models/index.ts +1 -0
- package/models/list-booking-funnel-class.ts +120 -0
- package/models/list-booking-funnels-response-class.ts +3 -3
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -151,6 +151,7 @@ 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
|
|
154
155
|
models/list-booking-funnels-response-class.ts
|
|
155
156
|
models/list-commission-agreement-items-response-class.ts
|
|
156
157
|
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@1.91.0 --save
|
|
20
|
+
npm install @emilgroup/insurance-sdk@1.91.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk@1.91.0
|
|
24
|
+
yarn add @emilgroup/insurance-sdk@1.91.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -182,16 +182,16 @@ export const BookingFunnelsApiAxiosParamCreator = function (configuration?: Conf
|
|
|
182
182
|
};
|
|
183
183
|
},
|
|
184
184
|
/**
|
|
185
|
-
* Returns a list of booking funnels you have previously created.
|
|
185
|
+
* 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\"
|
|
186
186
|
* @summary List booking funnels
|
|
187
187
|
* @param {string} [authorization] Bearer Token
|
|
188
188
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
189
189
|
* @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.
|
|
190
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
190
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
191
191
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
192
|
-
* @param {string} [order]
|
|
193
|
-
* @param {string} [expand]
|
|
194
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
192
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
193
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
194
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
195
195
|
* @param {*} [options] Override http request option.
|
|
196
196
|
* @throws {RequiredError}
|
|
197
197
|
*/
|
|
@@ -405,16 +405,16 @@ export const BookingFunnelsApiFp = function(configuration?: Configuration) {
|
|
|
405
405
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
406
406
|
},
|
|
407
407
|
/**
|
|
408
|
-
* Returns a list of booking funnels you have previously created.
|
|
408
|
+
* 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\"
|
|
409
409
|
* @summary List booking funnels
|
|
410
410
|
* @param {string} [authorization] Bearer Token
|
|
411
411
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
412
412
|
* @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.
|
|
413
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
413
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
414
414
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
415
|
-
* @param {string} [order]
|
|
416
|
-
* @param {string} [expand]
|
|
417
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
415
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
416
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
417
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
418
418
|
* @param {*} [options] Override http request option.
|
|
419
419
|
* @throws {RequiredError}
|
|
420
420
|
*/
|
|
@@ -491,16 +491,16 @@ export const BookingFunnelsApiFactory = function (configuration?: Configuration,
|
|
|
491
491
|
return localVarFp.getBookingFunnel(code, authorization, options).then((request) => request(axios, basePath));
|
|
492
492
|
},
|
|
493
493
|
/**
|
|
494
|
-
* Returns a list of booking funnels you have previously created.
|
|
494
|
+
* 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\"
|
|
495
495
|
* @summary List booking funnels
|
|
496
496
|
* @param {string} [authorization] Bearer Token
|
|
497
497
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
498
498
|
* @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.
|
|
499
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
499
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
500
500
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
501
|
-
* @param {string} [order]
|
|
502
|
-
* @param {string} [expand]
|
|
503
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
501
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
502
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
503
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
504
504
|
* @param {*} [options] Override http request option.
|
|
505
505
|
* @throws {RequiredError}
|
|
506
506
|
*/
|
|
@@ -624,7 +624,7 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
624
624
|
readonly pageToken?: string
|
|
625
625
|
|
|
626
626
|
/**
|
|
627
|
-
* Filter the response by one or multiple fields.
|
|
627
|
+
* 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, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
628
628
|
* @type {string}
|
|
629
629
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
630
630
|
*/
|
|
@@ -638,21 +638,21 @@ export interface BookingFunnelsApiListBookingFunnelsRequest {
|
|
|
638
638
|
readonly search?: string
|
|
639
639
|
|
|
640
640
|
/**
|
|
641
|
-
*
|
|
641
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
642
642
|
* @type {string}
|
|
643
643
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
644
644
|
*/
|
|
645
645
|
readonly order?: string
|
|
646
646
|
|
|
647
647
|
/**
|
|
648
|
-
*
|
|
648
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
649
649
|
* @type {string}
|
|
650
650
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
651
651
|
*/
|
|
652
652
|
readonly expand?: string
|
|
653
653
|
|
|
654
654
|
/**
|
|
655
|
-
* Filters the response by one or multiple fields.
|
|
655
|
+
* Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
656
656
|
* @type {string}
|
|
657
657
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
658
658
|
*/
|
|
@@ -759,7 +759,7 @@ export class BookingFunnelsApi extends BaseAPI {
|
|
|
759
759
|
}
|
|
760
760
|
|
|
761
761
|
/**
|
|
762
|
-
* Returns a list of booking funnels you have previously created.
|
|
762
|
+
* 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\"
|
|
763
763
|
* @summary List booking funnels
|
|
764
764
|
* @param {BookingFunnelsApiListBookingFunnelsRequest} requestParameters Request parameters.
|
|
765
765
|
* @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.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
65
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
66
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
132
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
133
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
199
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
200
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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
|
+
* Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
320
320
|
* @type {string}
|
|
321
321
|
* @memberof BookingFunnelsApiListBookingFunnels
|
|
322
322
|
*/
|
|
323
323
|
readonly order?: string;
|
|
324
324
|
/**
|
|
325
|
-
*
|
|
325
|
+
* Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
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.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
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.
|
|
@@ -238,16 +238,16 @@ var BookingFunnelsApiAxiosParamCreator = function (configuration) {
|
|
|
238
238
|
});
|
|
239
239
|
},
|
|
240
240
|
/**
|
|
241
|
-
* Returns a list of booking funnels you have previously created.
|
|
241
|
+
* 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\"
|
|
242
242
|
* @summary List booking funnels
|
|
243
243
|
* @param {string} [authorization] Bearer Token
|
|
244
244
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
245
245
|
* @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.
|
|
246
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
246
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
247
247
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
248
|
-
* @param {string} [order]
|
|
249
|
-
* @param {string} [expand]
|
|
250
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
248
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
249
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
250
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
251
251
|
* @param {*} [options] Override http request option.
|
|
252
252
|
* @throws {RequiredError}
|
|
253
253
|
*/
|
|
@@ -488,16 +488,16 @@ var BookingFunnelsApiFp = function (configuration) {
|
|
|
488
488
|
});
|
|
489
489
|
},
|
|
490
490
|
/**
|
|
491
|
-
* Returns a list of booking funnels you have previously created.
|
|
491
|
+
* 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\"
|
|
492
492
|
* @summary List booking funnels
|
|
493
493
|
* @param {string} [authorization] Bearer Token
|
|
494
494
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
495
495
|
* @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.
|
|
496
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
496
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
497
497
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
498
|
-
* @param {string} [order]
|
|
499
|
-
* @param {string} [expand]
|
|
500
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
498
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
499
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
500
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
501
501
|
* @param {*} [options] Override http request option.
|
|
502
502
|
* @throws {RequiredError}
|
|
503
503
|
*/
|
|
@@ -601,16 +601,16 @@ var BookingFunnelsApiFactory = function (configuration, basePath, axios) {
|
|
|
601
601
|
return localVarFp.getBookingFunnel(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
602
602
|
},
|
|
603
603
|
/**
|
|
604
|
-
* Returns a list of booking funnels you have previously created.
|
|
604
|
+
* 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\"
|
|
605
605
|
* @summary List booking funnels
|
|
606
606
|
* @param {string} [authorization] Bearer Token
|
|
607
607
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
608
608
|
* @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.
|
|
609
|
-
* @param {string} [filter] Filter the response by one or multiple fields.
|
|
609
|
+
* @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
610
610
|
* @param {string} [search] To search the list by any field, pass search=xxx to fetch the result.
|
|
611
|
-
* @param {string} [order]
|
|
612
|
-
* @param {string} [expand]
|
|
613
|
-
* @param {string} [filters] Filters the response by one or multiple fields.
|
|
611
|
+
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, code, name, createdAt, updatedAt</i>
|
|
612
|
+
* @param {string} [expand] Expand to fetch additional information about the list items. Expanding resources can reduce the number of API calls required to accomplish a task. Use with discretion as some expanded fields can drastically increase payload size.<br/> <br/> <i>Allowed values: stepsConfig<i>
|
|
613
|
+
* @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.<br/> <br/> <i>Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage</i>
|
|
614
614
|
* @param {*} [options] Override http request option.
|
|
615
615
|
* @throws {RequiredError}
|
|
616
616
|
*/
|
|
@@ -691,7 +691,7 @@ var BookingFunnelsApi = /** @class */ (function (_super) {
|
|
|
691
691
|
return (0, exports.BookingFunnelsApiFp)(this.configuration).getBookingFunnel(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
692
692
|
};
|
|
693
693
|
/**
|
|
694
|
-
* Returns a list of booking funnels you have previously created.
|
|
694
|
+
* 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\"
|
|
695
695
|
* @summary List booking funnels
|
|
696
696
|
* @param {BookingFunnelsApiListBookingFunnelsRequest} requestParameters Request parameters.
|
|
697
697
|
* @param {*} [options] Override http request option.
|
package/dist/models/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ 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';
|
|
119
120
|
export * from './list-booking-funnels-response-class';
|
|
120
121
|
export * from './list-commission-agreement-items-response-class';
|
|
121
122
|
export * from './list-commission-agreement-products-response-class';
|
package/dist/models/index.js
CHANGED
|
@@ -132,6 +132,7 @@ __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);
|
|
135
136
|
__exportStar(require("./list-booking-funnels-response-class"), exports);
|
|
136
137
|
__exportStar(require("./list-commission-agreement-items-response-class"), exports);
|
|
137
138
|
__exportStar(require("./list-commission-agreement-products-response-class"), exports);
|
|
@@ -0,0 +1,114 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import {
|
|
12
|
+
import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
13
13
|
/**
|
|
14
14
|
*
|
|
15
15
|
* @export
|
|
@@ -18,10 +18,10 @@ import { BookingFunnelClass } from './booking-funnel-class';
|
|
|
18
18
|
export interface ListBookingFunnelsResponseClass {
|
|
19
19
|
/**
|
|
20
20
|
* BookingFunnels
|
|
21
|
-
* @type {Array<
|
|
21
|
+
* @type {Array<ListBookingFunnelClass>}
|
|
22
22
|
* @memberof ListBookingFunnelsResponseClass
|
|
23
23
|
*/
|
|
24
|
-
'items': Array<
|
|
24
|
+
'items': Array<ListBookingFunnelClass>;
|
|
25
25
|
/**
|
|
26
26
|
* Next page token.
|
|
27
27
|
* @type {string}
|
package/models/index.ts
CHANGED
|
@@ -116,6 +116,7 @@ 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';
|
|
119
120
|
export * from './list-booking-funnels-response-class';
|
|
120
121
|
export * from './list-commission-agreement-items-response-class';
|
|
121
122
|
export * from './list-commission-agreement-products-response-class';
|
|
@@ -0,0 +1,120 @@
|
|
|
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
|
+
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import {
|
|
16
|
+
import { ListBookingFunnelClass } from './list-booking-funnel-class';
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
@@ -23,10 +23,10 @@ import { BookingFunnelClass } from './booking-funnel-class';
|
|
|
23
23
|
export interface ListBookingFunnelsResponseClass {
|
|
24
24
|
/**
|
|
25
25
|
* BookingFunnels
|
|
26
|
-
* @type {Array<
|
|
26
|
+
* @type {Array<ListBookingFunnelClass>}
|
|
27
27
|
* @memberof ListBookingFunnelsResponseClass
|
|
28
28
|
*/
|
|
29
|
-
'items': Array<
|
|
29
|
+
'items': Array<ListBookingFunnelClass>;
|
|
30
30
|
/**
|
|
31
31
|
* Next page token.
|
|
32
32
|
* @type {string}
|