@emilgroup/insurance-sdk 1.90.0 → 1.90.1-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/.openapi-generator/FILES +1 -0
  2. package/README.md +2 -2
  3. package/api/booking-funnels-api.ts +20 -20
  4. package/dist/api/booking-funnel-versions-api.d.ts +2 -2
  5. package/dist/api/booking-funnels-api.d.ts +26 -26
  6. package/dist/api/booking-funnels-api.js +16 -16
  7. package/dist/api/commission-agreement-items-api.d.ts +5 -5
  8. package/dist/api/commission-agreement-products-api.d.ts +5 -5
  9. package/dist/api/commission-agreement-versions-api.d.ts +4 -4
  10. package/dist/api/commission-agreements-api.d.ts +5 -5
  11. package/dist/api/commission-recipients-api.d.ts +5 -5
  12. package/dist/api/emil-functions-api.d.ts +11 -11
  13. package/dist/api/health-check-api.d.ts +1 -1
  14. package/dist/api/insured-object-types-api.d.ts +1 -1
  15. package/dist/api/insured-objects-api.d.ts +4 -4
  16. package/dist/api/lead-statuses-api.d.ts +5 -5
  17. package/dist/api/lead-versions-api.d.ts +2 -2
  18. package/dist/api/leads-api.d.ts +10 -10
  19. package/dist/api/named-ranges-api.d.ts +6 -6
  20. package/dist/api/partner-links-api.d.ts +6 -6
  21. package/dist/api/partner-roles-api.d.ts +5 -5
  22. package/dist/api/policies-api.d.ts +17 -17
  23. package/dist/api/premium-formulas-api.d.ts +6 -6
  24. package/dist/api/product-factors-api.d.ts +7 -7
  25. package/dist/api/product-fields-api.d.ts +7 -7
  26. package/dist/api/product-versions-api.d.ts +2 -2
  27. package/dist/api/products-api.d.ts +6 -6
  28. package/dist/api/status-transition-rules-api.d.ts +6 -6
  29. package/dist/common.d.ts +1 -1
  30. package/dist/models/booking-funnel-class.d.ts +1 -1
  31. package/dist/models/index.d.ts +1 -0
  32. package/dist/models/index.js +1 -0
  33. package/dist/models/list-booking-funnel-class.d.ts +114 -0
  34. package/dist/models/list-booking-funnel-class.js +15 -0
  35. package/dist/models/list-booking-funnels-response-class.d.ts +3 -3
  36. package/models/booking-funnel-class.ts +1 -1
  37. package/models/index.ts +1 -0
  38. package/models/list-booking-funnel-class.ts +120 -0
  39. package/models/list-booking-funnels-response-class.ts +3 -3
  40. package/package.json +2 -2
@@ -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.90.0 --save
20
+ npm install @emilgroup/insurance-sdk@1.90.1-beta.13 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/insurance-sdk@1.90.0
24
+ yarn add @emilgroup/insurance-sdk@1.90.1-beta.13
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. 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\"
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. In general, fetching filtered responses will conserve bandwidth and reduce response time.
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] 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.
193
- * @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.
194
- * @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.
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. 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\"
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. In general, fetching filtered responses will conserve bandwidth and reduce response time.
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] 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.
416
- * @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.
417
- * @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.
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. 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\"
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. In general, fetching filtered responses will conserve bandwidth and reduce response time.
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] 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.
502
- * @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.
503
- * @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.
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. In general, fetching filtered responses will conserve bandwidth and reduce response time.
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
- * 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.
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
- * 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.
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. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
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. 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\"
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.
@@ -209,7 +209,7 @@ export declare class BookingFunnelVersionsApi extends BaseAPI {
209
209
  * @throws {RequiredError}
210
210
  * @memberof BookingFunnelVersionsApi
211
211
  */
212
- getBookingFunnelVersion(requestParameters: BookingFunnelVersionsApiGetBookingFunnelVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
212
+ getBookingFunnelVersion(requestParameters: BookingFunnelVersionsApiGetBookingFunnelVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
213
213
  /**
214
214
  * Returns a list of booking funnel versions you have previously created. The booking funnel versions 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\"
215
215
  * @summary List booking funnel versions
@@ -218,5 +218,5 @@ export declare class BookingFunnelVersionsApi extends BaseAPI {
218
218
  * @throws {RequiredError}
219
219
  * @memberof BookingFunnelVersionsApi
220
220
  */
221
- listBookingFunnelVersions(requestParameters: BookingFunnelVersionsApiListBookingFunnelVersionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
221
+ listBookingFunnelVersions(requestParameters: BookingFunnelVersionsApiListBookingFunnelVersionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
222
222
  }
@@ -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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
62
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
62
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
63
63
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
66
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
129
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
129
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
130
130
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
133
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
196
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
196
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
197
197
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
200
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. In general, fetching filtered responses will conserve bandwidth and reduce response time.
307
+ * Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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
- * 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.
319
+ * Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
320
320
  * @type {string}
321
321
  * @memberof BookingFunnelsApiListBookingFunnels
322
322
  */
323
323
  readonly order?: string;
324
324
  /**
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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
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. Advanced filter functionality allows you to perform more complex filtering operations. In general, fetching filtered responses conserves bandwidth and reduces response time.
331
+ * Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
332
332
  * @type {string}
333
333
  * @memberof BookingFunnelsApiListBookingFunnels
334
334
  */
@@ -399,7 +399,7 @@ export declare class BookingFunnelsApi extends BaseAPI {
399
399
  * @throws {RequiredError}
400
400
  * @memberof BookingFunnelsApi
401
401
  */
402
- createBookingFunnel(requestParameters: BookingFunnelsApiCreateBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingFunnelResponseClass, any>>;
402
+ createBookingFunnel(requestParameters: BookingFunnelsApiCreateBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateBookingFunnelResponseClass, any, {}>>;
403
403
  /**
404
404
  * Permanently deletes the booking funnel. Supply the unique code that was returned when you created the booking funnel and this will delete it. **Required Permissions** \"policy-management.products.delete\"
405
405
  * @summary Delete the booking funnel
@@ -408,7 +408,7 @@ export declare class BookingFunnelsApi extends BaseAPI {
408
408
  * @throws {RequiredError}
409
409
  * @memberof BookingFunnelsApi
410
410
  */
411
- deleteBookingFunnel(requestParameters: BookingFunnelsApiDeleteBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
411
+ deleteBookingFunnel(requestParameters: BookingFunnelsApiDeleteBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any, {}>>;
412
412
  /**
413
413
  * Retrieves the details of the booking funnel that was previously created. Supply the unique booking funnel code that was returned when you created it and Emil Api will return the corresponding booking funnel information. **Required Permissions** \"policy-management.products.view\"
414
414
  * @summary Retrieve the booking funnel
@@ -417,16 +417,16 @@ export declare class BookingFunnelsApi extends BaseAPI {
417
417
  * @throws {RequiredError}
418
418
  * @memberof BookingFunnelsApi
419
419
  */
420
- getBookingFunnel(requestParameters: BookingFunnelsApiGetBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBookingFunnelResponseClass, any>>;
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. 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\"
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.
426
426
  * @throws {RequiredError}
427
427
  * @memberof BookingFunnelsApi
428
428
  */
429
- listBookingFunnels(requestParameters?: BookingFunnelsApiListBookingFunnelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBookingFunnelsResponseClass, any>>;
429
+ listBookingFunnels(requestParameters?: BookingFunnelsApiListBookingFunnelsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBookingFunnelsResponseClass, any, {}>>;
430
430
  /**
431
431
  * This will patch a booking funnel. **Required Permissions** \"policy-management.products.update\"
432
432
  * @param {BookingFunnelsApiPatchBookingFunnelRequest} requestParameters Request parameters.
@@ -434,7 +434,7 @@ export declare class BookingFunnelsApi extends BaseAPI {
434
434
  * @throws {RequiredError}
435
435
  * @memberof BookingFunnelsApi
436
436
  */
437
- patchBookingFunnel(requestParameters: BookingFunnelsApiPatchBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchBookingFunnelResponseClass, any>>;
437
+ patchBookingFunnel(requestParameters: BookingFunnelsApiPatchBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PatchBookingFunnelResponseClass, any, {}>>;
438
438
  /**
439
439
  * This will update a booking funnel. **Required Permissions** \"policy-management.products.update\"
440
440
  * @summary Update the booking funnel
@@ -443,5 +443,5 @@ export declare class BookingFunnelsApi extends BaseAPI {
443
443
  * @throws {RequiredError}
444
444
  * @memberof BookingFunnelsApi
445
445
  */
446
- updateBookingFunnel(requestParameters: BookingFunnelsApiUpdateBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateBookingFunnelResponseClass, any>>;
446
+ updateBookingFunnel(requestParameters: BookingFunnelsApiUpdateBookingFunnelRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateBookingFunnelResponseClass, any, {}>>;
447
447
  }
@@ -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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
246
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
246
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
247
247
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
248
- * @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.
249
- * @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.
250
- * @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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
250
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
496
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
496
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
497
497
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
498
- * @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.
499
- * @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.
500
- * @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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
500
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. 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\"
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&#x3D;1, your subsequent call can include pageToken&#x3D;2 in order to fetch the next page of the list.
609
- * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.
609
+ * @param {string} [filter] Filter the response by one or multiple fields. In general, fetching filtered responses will conserve bandwidth and reduce response time.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
610
610
  * @param {string} [search] To search the list by any field, pass search&#x3D;xxx to fetch the result.
611
- * @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.
612
- * @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.
613
- * @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.
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, name, createdAt, updatedAt&lt;/i&gt;
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.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: stepsConfig&lt;i&gt;
613
+ * @param {string} [filters] Filters the response by one or multiple fields. Advanced filter functionality allows you to perform more complex filtering operations.&lt;br/&gt; &lt;br/&gt; &lt;i&gt;Allowed values: id, code, productSlug, productVersionId, tenantHierarchy, createdAt, updatedAt, version, shouldShowOnApplicationsPage&lt;/i&gt;
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. 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\"
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.
@@ -363,7 +363,7 @@ export declare class CommissionAgreementItemsApi extends BaseAPI {
363
363
  * @throws {RequiredError}
364
364
  * @memberof CommissionAgreementItemsApi
365
365
  */
366
- createCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiCreateCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementItemResponseClass, any>>;
366
+ createCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiCreateCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementItemResponseClass, any, {}>>;
367
367
  /**
368
368
  * Permanently deletes the commission agreement item. Supply the unique code that was returned when you created the commission agreement item and this will delete it. **Required Permissions** \"commission-management.agreements.delete\"
369
369
  * @summary Delete the commission agreement item
@@ -372,7 +372,7 @@ export declare class CommissionAgreementItemsApi extends BaseAPI {
372
372
  * @throws {RequiredError}
373
373
  * @memberof CommissionAgreementItemsApi
374
374
  */
375
- deleteCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiDeleteCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
375
+ deleteCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiDeleteCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any, {}>>;
376
376
  /**
377
377
  * Retrieves the details of the commission agreement item that was previously created. Supply the unique commission agreement item code that was returned when you created it and Emil Api will return the corresponding commission agreement item information. **Required Permissions** \"commission-management.agreements.view\"
378
378
  * @summary Retrieve the commission agreement item
@@ -381,7 +381,7 @@ export declare class CommissionAgreementItemsApi extends BaseAPI {
381
381
  * @throws {RequiredError}
382
382
  * @memberof CommissionAgreementItemsApi
383
383
  */
384
- getCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiGetCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementItemResponseClass, any>>;
384
+ getCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiGetCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementItemResponseClass, any, {}>>;
385
385
  /**
386
386
  * Returns a list of commission agreement items you have previously created. The commission agreement items are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"commission-management.agreements.view\"
387
387
  * @summary List commission agreement items
@@ -390,7 +390,7 @@ export declare class CommissionAgreementItemsApi extends BaseAPI {
390
390
  * @throws {RequiredError}
391
391
  * @memberof CommissionAgreementItemsApi
392
392
  */
393
- listCommissionAgreementItems(requestParameters?: CommissionAgreementItemsApiListCommissionAgreementItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementItemsResponseClass, any>>;
393
+ listCommissionAgreementItems(requestParameters?: CommissionAgreementItemsApiListCommissionAgreementItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementItemsResponseClass, any, {}>>;
394
394
  /**
395
395
  * Updates the specified commission agreement item by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"commission-management.agreements.update\"
396
396
  * @summary Update the commission agreement item
@@ -399,5 +399,5 @@ export declare class CommissionAgreementItemsApi extends BaseAPI {
399
399
  * @throws {RequiredError}
400
400
  * @memberof CommissionAgreementItemsApi
401
401
  */
402
- updateCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiUpdateCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateCommissionAgreementItemResponseClass, any>>;
402
+ updateCommissionAgreementItem(requestParameters: CommissionAgreementItemsApiUpdateCommissionAgreementItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateCommissionAgreementItemResponseClass, any, {}>>;
403
403
  }
@@ -363,7 +363,7 @@ export declare class CommissionAgreementProductsApi extends BaseAPI {
363
363
  * @throws {RequiredError}
364
364
  * @memberof CommissionAgreementProductsApi
365
365
  */
366
- createCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiCreateCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementProductResponseClass, any>>;
366
+ createCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiCreateCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementProductResponseClass, any, {}>>;
367
367
  /**
368
368
  * Permanently deletes the commission agreement product. Supply the unique code that was returned when you created the commission agreement product and this will delete it. **Required Permissions** \"commission-management.agreements.delete\"
369
369
  * @summary Delete the commission agreement product
@@ -372,7 +372,7 @@ export declare class CommissionAgreementProductsApi extends BaseAPI {
372
372
  * @throws {RequiredError}
373
373
  * @memberof CommissionAgreementProductsApi
374
374
  */
375
- deleteCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiDeleteCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
375
+ deleteCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiDeleteCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any, {}>>;
376
376
  /**
377
377
  * Retrieves the details of the commission agreement product that was previously created. Supply the unique commission agreement product code that was returned when you created it and Emil Api will return the corresponding commission agreement product information. **Required Permissions** \"commission-management.agreements.view\"
378
378
  * @summary Retrieve the commission agreement product
@@ -381,7 +381,7 @@ export declare class CommissionAgreementProductsApi extends BaseAPI {
381
381
  * @throws {RequiredError}
382
382
  * @memberof CommissionAgreementProductsApi
383
383
  */
384
- getCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiGetCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementProductResponseClass, any>>;
384
+ getCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiGetCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementProductResponseClass, any, {}>>;
385
385
  /**
386
386
  * Returns a list of commission agreement products you have previously created. The commission agreement products are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"commission-management.agreements.view\"
387
387
  * @summary List commission agreement products
@@ -390,7 +390,7 @@ export declare class CommissionAgreementProductsApi extends BaseAPI {
390
390
  * @throws {RequiredError}
391
391
  * @memberof CommissionAgreementProductsApi
392
392
  */
393
- listCommissionAgreementProducts(requestParameters?: CommissionAgreementProductsApiListCommissionAgreementProductsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementProductsResponseClass, any>>;
393
+ listCommissionAgreementProducts(requestParameters?: CommissionAgreementProductsApiListCommissionAgreementProductsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementProductsResponseClass, any, {}>>;
394
394
  /**
395
395
  * Updates the specified commission agreement product by setting the values of the parameters passed. Any parameters not provided will be left unchanged. **Required Permissions** \"commission-management.agreements.update\"
396
396
  * @summary Update the commission agreement product
@@ -399,5 +399,5 @@ export declare class CommissionAgreementProductsApi extends BaseAPI {
399
399
  * @throws {RequiredError}
400
400
  * @memberof CommissionAgreementProductsApi
401
401
  */
402
- updateCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiUpdateCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateCommissionAgreementProductResponseClass, any>>;
402
+ updateCommissionAgreementProduct(requestParameters: CommissionAgreementProductsApiUpdateCommissionAgreementProductRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateCommissionAgreementProductResponseClass, any, {}>>;
403
403
  }
@@ -306,7 +306,7 @@ export declare class CommissionAgreementVersionsApi extends BaseAPI {
306
306
  * @throws {RequiredError}
307
307
  * @memberof CommissionAgreementVersionsApi
308
308
  */
309
- createCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiCreateCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementVersionResponseClass, any>>;
309
+ createCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiCreateCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCommissionAgreementVersionResponseClass, any, {}>>;
310
310
  /**
311
311
  * Permanently deletes the commission agreement version. Supply the unique code that was returned when you created the commission agreement version and this will delete it. **Required Permissions** \"commission-management.agreements.delete\"
312
312
  * @summary Delete the commission agreement version
@@ -315,7 +315,7 @@ export declare class CommissionAgreementVersionsApi extends BaseAPI {
315
315
  * @throws {RequiredError}
316
316
  * @memberof CommissionAgreementVersionsApi
317
317
  */
318
- deleteCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiDeleteCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
318
+ deleteCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiDeleteCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any, {}>>;
319
319
  /**
320
320
  * Retrieves the details of the commission agreement version that was previously created. Supply the unique commission agreement version code that was returned when you created it and Emil Api will return the corresponding commission agreement version information. **Required Permissions** \"commission-management.agreements.view\"
321
321
  * @summary Retrieve the commission agreement version
@@ -324,7 +324,7 @@ export declare class CommissionAgreementVersionsApi extends BaseAPI {
324
324
  * @throws {RequiredError}
325
325
  * @memberof CommissionAgreementVersionsApi
326
326
  */
327
- getCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiGetCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementVersionResponseClass, any>>;
327
+ getCommissionAgreementVersion(requestParameters: CommissionAgreementVersionsApiGetCommissionAgreementVersionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCommissionAgreementVersionResponseClass, any, {}>>;
328
328
  /**
329
329
  * Returns a list of commission agreement versions you have previously created. The commission agreement versions are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** \"commission-management.agreements.view\"
330
330
  * @summary List commission agreement versions
@@ -333,5 +333,5 @@ export declare class CommissionAgreementVersionsApi extends BaseAPI {
333
333
  * @throws {RequiredError}
334
334
  * @memberof CommissionAgreementVersionsApi
335
335
  */
336
- listCommissionAgreementVersions(requestParameters?: CommissionAgreementVersionsApiListCommissionAgreementVersionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementVersionsResponseClass, any>>;
336
+ listCommissionAgreementVersions(requestParameters?: CommissionAgreementVersionsApiListCommissionAgreementVersionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCommissionAgreementVersionsResponseClass, any, {}>>;
337
337
  }