@emilgroup/insurance-sdk-node 1.52.0 → 1.54.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 +38 -1
- package/README.md +2 -2
- package/api/booking-funnel-versions-api.ts +4 -4
- package/api/booking-funnels-api.ts +20 -12
- package/api/commission-agreement-products-api.ts +710 -0
- package/api/commission-agreement-versions-api.ts +592 -0
- package/api/commission-agreements-api.ts +697 -0
- package/api/commission-recipients-api.ts +696 -0
- package/api/emil-functions-api.ts +8 -8
- package/api/{default-api.ts → health-check-api.ts} +21 -17
- package/api/insured-objects-api.ts +5 -2
- package/api/lead-statuses-api.ts +4 -4
- package/api/lead-versions-api.ts +4 -4
- package/api/leads-api.ts +4 -4
- package/api/partner-links-api.ts +4 -4
- package/api/partner-roles-api.ts +4 -4
- package/api/policies-api.ts +192 -237
- package/api/products-api.ts +8 -8
- package/api/status-transition-rules-api.ts +4 -4
- package/api.ts +10 -2
- package/base.ts +15 -7
- package/dist/api/booking-funnel-versions-api.d.ts +4 -4
- package/dist/api/booking-funnel-versions-api.js +4 -4
- package/dist/api/booking-funnels-api.d.ts +20 -16
- package/dist/api/booking-funnels-api.js +4 -4
- package/dist/api/commission-agreement-products-api.d.ts +403 -0
- package/dist/api/commission-agreement-products-api.js +652 -0
- package/dist/api/commission-agreement-versions-api.d.ts +337 -0
- package/dist/api/commission-agreement-versions-api.js +555 -0
- package/dist/api/commission-agreements-api.d.ts +394 -0
- package/dist/api/commission-agreements-api.js +646 -0
- package/dist/api/commission-recipients-api.d.ts +394 -0
- package/dist/api/commission-recipients-api.js +646 -0
- package/dist/api/emil-functions-api.d.ts +8 -8
- package/dist/api/emil-functions-api.js +8 -8
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +30 -26
- package/dist/api/insured-objects-api.js +4 -2
- package/dist/api/lead-statuses-api.d.ts +4 -4
- package/dist/api/lead-statuses-api.js +4 -4
- package/dist/api/lead-versions-api.d.ts +4 -4
- package/dist/api/lead-versions-api.js +4 -4
- package/dist/api/leads-api.d.ts +4 -4
- package/dist/api/leads-api.js +4 -4
- package/dist/api/partner-links-api.d.ts +4 -4
- package/dist/api/partner-links-api.js +3 -3
- package/dist/api/partner-roles-api.d.ts +4 -4
- package/dist/api/partner-roles-api.js +4 -4
- package/dist/api/policies-api.d.ts +150 -177
- package/dist/api/policies-api.js +143 -165
- package/dist/api/products-api.d.ts +8 -8
- package/dist/api/products-api.js +8 -8
- package/dist/api/status-transition-rules-api.d.ts +4 -4
- package/dist/api/status-transition-rules-api.js +4 -4
- package/dist/api.d.ts +5 -1
- package/dist/api.js +5 -1
- package/dist/base.d.ts +3 -1
- package/dist/base.js +27 -20
- package/dist/models/booking-funnel-class.d.ts +12 -0
- package/dist/models/commission-agreement-class.d.ts +101 -0
- package/dist/models/commission-agreement-class.js +23 -0
- package/dist/models/commission-agreement-item-class.d.ts +78 -0
- package/dist/models/commission-agreement-item-class.js +15 -0
- package/dist/models/commission-agreement-product-class.d.ts +84 -0
- package/dist/models/commission-agreement-product-class.js +15 -0
- package/dist/models/commission-agreement-version-class.d.ts +91 -0
- package/dist/models/commission-agreement-version-class.js +15 -0
- package/dist/models/commission-recipient-class.d.ts +90 -0
- package/dist/models/commission-recipient-class.js +15 -0
- package/dist/models/create-booking-funnel-response-class.d.ts +25 -0
- package/dist/models/create-booking-funnel-response-class.js +15 -0
- package/dist/models/create-commission-agreement-item-dto.d.ts +36 -0
- package/dist/models/create-commission-agreement-item-dto.js +15 -0
- package/dist/models/create-commission-agreement-product-request-dto.d.ts +42 -0
- package/dist/models/create-commission-agreement-product-request-dto.js +15 -0
- package/dist/models/create-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-product-response-class.js +15 -0
- package/dist/models/create-commission-agreement-request-dto.d.ts +75 -0
- package/dist/models/create-commission-agreement-request-dto.js +23 -0
- package/dist/models/create-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-response-class.js +15 -0
- package/dist/models/create-commission-agreement-version-request-dto.d.ts +49 -0
- package/dist/models/create-commission-agreement-version-request-dto.js +15 -0
- package/dist/models/create-commission-agreement-version-response-class.d.ts +25 -0
- package/dist/models/create-commission-agreement-version-response-class.js +15 -0
- package/dist/models/create-commission-recipient-request-dto.d.ts +48 -0
- package/dist/models/create-commission-recipient-request-dto.js +15 -0
- package/dist/models/create-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/create-commission-recipient-response-class.js +15 -0
- package/dist/models/create-dummy-policy-request-dto.d.ts +6 -0
- package/dist/models/create-lead-request-dto.d.ts +4 -9
- package/dist/models/emil-function-class.d.ts +12 -0
- package/dist/models/get-booking-funnel-response-class.d.ts +25 -0
- package/dist/models/get-booking-funnel-response-class.js +15 -0
- package/dist/models/get-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-product-response-class.js +15 -0
- package/dist/models/get-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-response-class.js +15 -0
- package/dist/models/get-commission-agreement-version-response-class.d.ts +25 -0
- package/dist/models/get-commission-agreement-version-response-class.js +15 -0
- package/dist/models/get-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/get-commission-recipient-response-class.js +15 -0
- package/dist/models/index.d.ts +33 -0
- package/dist/models/index.js +33 -0
- package/dist/models/insured-object-class.d.ts +12 -0
- package/dist/models/insured-object-type-class.d.ts +12 -0
- package/dist/models/lead-class.d.ts +12 -0
- package/dist/models/lead-status-class.d.ts +12 -0
- package/dist/models/link-lead-partner-request-dto.d.ts +36 -0
- package/dist/models/link-lead-partner-request-dto.js +15 -0
- package/dist/models/list-commission-agreement-products-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreement-products-response-class.js +15 -0
- package/dist/models/list-commission-agreement-versions-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreement-versions-response-class.js +15 -0
- package/dist/models/list-commission-agreements-response-class.d.ts +31 -0
- package/dist/models/list-commission-agreements-response-class.js +15 -0
- package/dist/models/list-commission-recipients-response-class.d.ts +31 -0
- package/dist/models/list-commission-recipients-response-class.js +15 -0
- package/dist/models/list-named-ranges-response-class.d.ts +3 -2
- package/dist/models/named-range-class.d.ts +12 -0
- package/dist/models/partner-link-class.d.ts +12 -0
- package/dist/models/partner-role-class.d.ts +12 -0
- package/dist/models/patch-booking-funnel-response-class.d.ts +25 -0
- package/dist/models/patch-booking-funnel-response-class.js +15 -0
- package/dist/models/policy-class.d.ts +12 -0
- package/dist/models/policy-object-class.d.ts +12 -0
- package/dist/models/policy-premium-class.d.ts +12 -0
- package/dist/models/policy-premium-item-class.d.ts +12 -0
- package/dist/models/policy-version-class.d.ts +12 -0
- package/dist/models/premium-formula-class.d.ts +12 -0
- package/dist/models/product-class.d.ts +12 -0
- package/dist/models/product-factor-class.d.ts +12 -0
- package/dist/models/product-factor-for-version-class.d.ts +12 -0
- package/dist/models/product-factor-value-class.d.ts +12 -0
- package/dist/models/product-field-class.d.ts +12 -0
- package/dist/models/product-field-type-class.d.ts +12 -0
- package/dist/models/product-version-class.d.ts +12 -0
- package/dist/models/shared-product-field-class.d.ts +12 -0
- package/dist/models/status-transition-rule-class.d.ts +12 -0
- package/dist/models/timeslice-class.d.ts +12 -0
- package/dist/models/update-booking-funnel-response-class.d.ts +25 -0
- package/dist/models/update-booking-funnel-response-class.js +15 -0
- package/dist/models/update-commission-agreement-product-request-dto.d.ts +42 -0
- package/dist/models/update-commission-agreement-product-request-dto.js +15 -0
- package/dist/models/update-commission-agreement-product-response-class.d.ts +25 -0
- package/dist/models/update-commission-agreement-product-response-class.js +15 -0
- package/dist/models/update-commission-agreement-request-dto.d.ts +44 -0
- package/dist/models/update-commission-agreement-request-dto.js +23 -0
- package/dist/models/update-commission-agreement-response-class.d.ts +25 -0
- package/dist/models/update-commission-agreement-response-class.js +15 -0
- package/dist/models/update-commission-recipient-request-dto.d.ts +48 -0
- package/dist/models/update-commission-recipient-request-dto.js +15 -0
- package/dist/models/update-commission-recipient-response-class.d.ts +25 -0
- package/dist/models/update-commission-recipient-response-class.js +15 -0
- package/models/booking-funnel-class.ts +12 -0
- package/models/commission-agreement-class.ts +110 -0
- package/models/commission-agreement-item-class.ts +84 -0
- package/models/commission-agreement-product-class.ts +90 -0
- package/models/commission-agreement-version-class.ts +97 -0
- package/models/commission-recipient-class.ts +96 -0
- package/models/create-booking-funnel-response-class.ts +31 -0
- package/models/create-commission-agreement-item-dto.ts +42 -0
- package/models/create-commission-agreement-product-request-dto.ts +48 -0
- package/models/create-commission-agreement-product-response-class.ts +31 -0
- package/models/create-commission-agreement-request-dto.ts +84 -0
- package/models/create-commission-agreement-response-class.ts +31 -0
- package/models/create-commission-agreement-version-request-dto.ts +55 -0
- package/models/create-commission-agreement-version-response-class.ts +31 -0
- package/models/create-commission-recipient-request-dto.ts +54 -0
- package/models/create-commission-recipient-response-class.ts +31 -0
- package/models/create-dummy-policy-request-dto.ts +6 -0
- package/models/create-lead-request-dto.ts +4 -9
- package/models/emil-function-class.ts +12 -0
- package/models/get-booking-funnel-response-class.ts +31 -0
- package/models/get-commission-agreement-product-response-class.ts +31 -0
- package/models/get-commission-agreement-response-class.ts +31 -0
- package/models/get-commission-agreement-version-response-class.ts +31 -0
- package/models/get-commission-recipient-response-class.ts +31 -0
- package/models/index.ts +33 -0
- package/models/insured-object-class.ts +12 -0
- package/models/insured-object-type-class.ts +12 -0
- package/models/lead-class.ts +12 -0
- package/models/lead-status-class.ts +12 -0
- package/models/link-lead-partner-request-dto.ts +42 -0
- package/models/list-commission-agreement-products-response-class.ts +37 -0
- package/models/list-commission-agreement-versions-response-class.ts +37 -0
- package/models/list-commission-agreements-response-class.ts +37 -0
- package/models/list-commission-recipients-response-class.ts +37 -0
- package/models/list-named-ranges-response-class.ts +3 -2
- package/models/named-range-class.ts +12 -0
- package/models/partner-link-class.ts +12 -0
- package/models/partner-role-class.ts +12 -0
- package/models/patch-booking-funnel-response-class.ts +31 -0
- package/models/policy-class.ts +12 -0
- package/models/policy-object-class.ts +12 -0
- package/models/policy-premium-class.ts +12 -0
- package/models/policy-premium-item-class.ts +12 -0
- package/models/policy-version-class.ts +12 -0
- package/models/premium-formula-class.ts +12 -0
- package/models/product-class.ts +12 -0
- package/models/product-factor-class.ts +12 -0
- package/models/product-factor-for-version-class.ts +12 -0
- package/models/product-factor-value-class.ts +12 -0
- package/models/product-field-class.ts +12 -0
- package/models/product-field-type-class.ts +12 -0
- package/models/product-version-class.ts +12 -0
- package/models/shared-product-field-class.ts +12 -0
- package/models/status-transition-rule-class.ts +12 -0
- package/models/timeslice-class.ts +12 -0
- package/models/update-booking-funnel-response-class.ts +31 -0
- package/models/update-commission-agreement-product-request-dto.ts +48 -0
- package/models/update-commission-agreement-product-response-class.ts +31 -0
- package/models/update-commission-agreement-request-dto.ts +53 -0
- package/models/update-commission-agreement-response-class.ts +31 -0
- package/models/update-commission-recipient-request-dto.ts +54 -0
- package/models/update-commission-recipient-response-class.ts +31 -0
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
|
@@ -74,7 +74,7 @@ export declare const EmilFunctionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
74
74
|
*/
|
|
75
75
|
executeEmilFunction: (slug: string, executeEmilFunctionRequestDto: ExecuteEmilFunctionRequestDto, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
76
76
|
/**
|
|
77
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
77
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
78
78
|
* @summary Retrieve the Emil function
|
|
79
79
|
* @param {number} id
|
|
80
80
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -83,7 +83,7 @@ export declare const EmilFunctionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
83
83
|
*/
|
|
84
84
|
getEmilFunction: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
85
|
/**
|
|
86
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
86
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
87
87
|
* @summary Retrieve the Emil function secret
|
|
88
88
|
* @param {string} name
|
|
89
89
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -187,7 +187,7 @@ export declare const EmilFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
187
187
|
*/
|
|
188
188
|
executeEmilFunction(slug: string, executeEmilFunctionRequestDto: ExecuteEmilFunctionRequestDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
189
189
|
/**
|
|
190
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
190
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
191
191
|
* @summary Retrieve the Emil function
|
|
192
192
|
* @param {number} id
|
|
193
193
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -196,7 +196,7 @@ export declare const EmilFunctionsApiFp: (configuration?: Configuration) => {
|
|
|
196
196
|
*/
|
|
197
197
|
getEmilFunction(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
198
198
|
/**
|
|
199
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
199
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
200
200
|
* @summary Retrieve the Emil function secret
|
|
201
201
|
* @param {string} name
|
|
202
202
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -300,7 +300,7 @@ export declare const EmilFunctionsApiFactory: (configuration?: Configuration, ba
|
|
|
300
300
|
*/
|
|
301
301
|
executeEmilFunction(slug: string, executeEmilFunctionRequestDto: ExecuteEmilFunctionRequestDto, authorization?: string, options?: any): AxiosPromise<object>;
|
|
302
302
|
/**
|
|
303
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
303
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
304
304
|
* @summary Retrieve the Emil function
|
|
305
305
|
* @param {number} id
|
|
306
306
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -309,7 +309,7 @@ export declare const EmilFunctionsApiFactory: (configuration?: Configuration, ba
|
|
|
309
309
|
*/
|
|
310
310
|
getEmilFunction(id: number, authorization?: string, options?: any): AxiosPromise<object>;
|
|
311
311
|
/**
|
|
312
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
312
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
313
313
|
* @summary Retrieve the Emil function secret
|
|
314
314
|
* @param {string} name
|
|
315
315
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -671,7 +671,7 @@ export declare class EmilFunctionsApi extends BaseAPI {
|
|
|
671
671
|
*/
|
|
672
672
|
executeEmilFunction(requestParameters: EmilFunctionsApiExecuteEmilFunctionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
673
673
|
/**
|
|
674
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
674
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
675
675
|
* @summary Retrieve the Emil function
|
|
676
676
|
* @param {EmilFunctionsApiGetEmilFunctionRequest} requestParameters Request parameters.
|
|
677
677
|
* @param {*} [options] Override http request option.
|
|
@@ -680,7 +680,7 @@ export declare class EmilFunctionsApi extends BaseAPI {
|
|
|
680
680
|
*/
|
|
681
681
|
getEmilFunction(requestParameters: EmilFunctionsApiGetEmilFunctionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
682
682
|
/**
|
|
683
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
683
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
684
684
|
* @summary Retrieve the Emil function secret
|
|
685
685
|
* @param {EmilFunctionsApiGetEmilFunctionSecretRequest} requestParameters Request parameters.
|
|
686
686
|
* @param {*} [options] Override http request option.
|
|
@@ -344,7 +344,7 @@ var EmilFunctionsApiAxiosParamCreator = function (configuration) {
|
|
|
344
344
|
});
|
|
345
345
|
},
|
|
346
346
|
/**
|
|
347
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
347
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
348
348
|
* @summary Retrieve the Emil function
|
|
349
349
|
* @param {number} id
|
|
350
350
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -392,7 +392,7 @@ var EmilFunctionsApiAxiosParamCreator = function (configuration) {
|
|
|
392
392
|
});
|
|
393
393
|
},
|
|
394
394
|
/**
|
|
395
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
395
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
396
396
|
* @summary Retrieve the Emil function secret
|
|
397
397
|
* @param {string} name
|
|
398
398
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -778,7 +778,7 @@ var EmilFunctionsApiFp = function (configuration) {
|
|
|
778
778
|
});
|
|
779
779
|
},
|
|
780
780
|
/**
|
|
781
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
781
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
782
782
|
* @summary Retrieve the Emil function
|
|
783
783
|
* @param {number} id
|
|
784
784
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -799,7 +799,7 @@ var EmilFunctionsApiFp = function (configuration) {
|
|
|
799
799
|
});
|
|
800
800
|
},
|
|
801
801
|
/**
|
|
802
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
802
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
803
803
|
* @summary Retrieve the Emil function secret
|
|
804
804
|
* @param {string} name
|
|
805
805
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -977,7 +977,7 @@ var EmilFunctionsApiFactory = function (configuration, basePath, axios) {
|
|
|
977
977
|
return localVarFp.executeEmilFunction(slug, executeEmilFunctionRequestDto, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
978
978
|
},
|
|
979
979
|
/**
|
|
980
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
980
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
981
981
|
* @summary Retrieve the Emil function
|
|
982
982
|
* @param {number} id
|
|
983
983
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -988,7 +988,7 @@ var EmilFunctionsApiFactory = function (configuration, basePath, axios) {
|
|
|
988
988
|
return localVarFp.getEmilFunction(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
989
989
|
},
|
|
990
990
|
/**
|
|
991
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
991
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
992
992
|
* @summary Retrieve the Emil function secret
|
|
993
993
|
* @param {string} name
|
|
994
994
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -1124,7 +1124,7 @@ var EmilFunctionsApi = /** @class */ (function (_super) {
|
|
|
1124
1124
|
return (0, exports.EmilFunctionsApiFp)(this.configuration).executeEmilFunction(requestParameters.slug, requestParameters.executeEmilFunctionRequestDto, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1125
1125
|
};
|
|
1126
1126
|
/**
|
|
1127
|
-
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code
|
|
1127
|
+
* Retrieves the details of the Emil function that was previously created. Supply the unique Emil function code that was returned when you created it and Emil Api will return the corresponding Emil function information.
|
|
1128
1128
|
* @summary Retrieve the Emil function
|
|
1129
1129
|
* @param {EmilFunctionsApiGetEmilFunctionRequest} requestParameters Request parameters.
|
|
1130
1130
|
* @param {*} [options] Override http request option.
|
|
@@ -1136,7 +1136,7 @@ var EmilFunctionsApi = /** @class */ (function (_super) {
|
|
|
1136
1136
|
return (0, exports.EmilFunctionsApiFp)(this.configuration).getEmilFunction(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1137
1137
|
};
|
|
1138
1138
|
/**
|
|
1139
|
-
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code
|
|
1139
|
+
* Retrieves the details of the Emil function secret that was previously created. Supply the unique Emil function secret code that was returned when you created it and Emil Api will return the corresponding Emil function secret information.
|
|
1140
1140
|
* @summary Retrieve the Emil function secret
|
|
1141
1141
|
* @param {EmilFunctionsApiGetEmilFunctionSecretRequest} requestParameters Request parameters.
|
|
1142
1142
|
* @param {*} [options] Override http request option.
|
|
@@ -0,0 +1,70 @@
|
|
|
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
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { InlineResponse200 } from '../models';
|
|
16
|
+
/**
|
|
17
|
+
* HealthCheckApi - axios parameter creator
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export declare const HealthCheckApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
|
+
/**
|
|
22
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
23
|
+
* @summary Health Check
|
|
24
|
+
* @param {*} [options] Override http request option.
|
|
25
|
+
* @throws {RequiredError}
|
|
26
|
+
*/
|
|
27
|
+
check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* HealthCheckApi - functional programming interface
|
|
31
|
+
* @export
|
|
32
|
+
*/
|
|
33
|
+
export declare const HealthCheckApiFp: (configuration?: Configuration) => {
|
|
34
|
+
/**
|
|
35
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
36
|
+
* @summary Health Check
|
|
37
|
+
* @param {*} [options] Override http request option.
|
|
38
|
+
* @throws {RequiredError}
|
|
39
|
+
*/
|
|
40
|
+
check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* HealthCheckApi - factory interface
|
|
44
|
+
* @export
|
|
45
|
+
*/
|
|
46
|
+
export declare const HealthCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
47
|
+
/**
|
|
48
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
49
|
+
* @summary Health Check
|
|
50
|
+
* @param {*} [options] Override http request option.
|
|
51
|
+
* @throws {RequiredError}
|
|
52
|
+
*/
|
|
53
|
+
check(options?: any): AxiosPromise<InlineResponse200>;
|
|
54
|
+
};
|
|
55
|
+
/**
|
|
56
|
+
* HealthCheckApi - object-oriented interface
|
|
57
|
+
* @export
|
|
58
|
+
* @class HealthCheckApi
|
|
59
|
+
* @extends {BaseAPI}
|
|
60
|
+
*/
|
|
61
|
+
export declare class HealthCheckApi extends BaseAPI {
|
|
62
|
+
/**
|
|
63
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
64
|
+
* @summary Health Check
|
|
65
|
+
* @param {*} [options] Override http request option.
|
|
66
|
+
* @throws {RequiredError}
|
|
67
|
+
* @memberof HealthCheckApi
|
|
68
|
+
*/
|
|
69
|
+
check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
|
|
70
|
+
}
|
|
@@ -78,7 +78,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
78
78
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
79
79
|
};
|
|
80
80
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
81
|
-
exports.
|
|
81
|
+
exports.HealthCheckApi = exports.HealthCheckApiFactory = exports.HealthCheckApiFp = exports.HealthCheckApiAxiosParamCreator = void 0;
|
|
82
82
|
var axios_1 = __importDefault(require("axios"));
|
|
83
83
|
// Some imports not used depending on template conditions
|
|
84
84
|
// @ts-ignore
|
|
@@ -90,14 +90,15 @@ var base_1 = require("../base");
|
|
|
90
90
|
var url_1 = require("url");
|
|
91
91
|
var FormData = require('form-data');
|
|
92
92
|
/**
|
|
93
|
-
*
|
|
93
|
+
* HealthCheckApi - axios parameter creator
|
|
94
94
|
* @export
|
|
95
95
|
*/
|
|
96
|
-
var
|
|
96
|
+
var HealthCheckApiAxiosParamCreator = function (configuration) {
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
*
|
|
100
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
101
|
+
* @summary Health Check
|
|
101
102
|
* @param {*} [options] Override http request option.
|
|
102
103
|
* @throws {RequiredError}
|
|
103
104
|
*/
|
|
@@ -127,16 +128,17 @@ var DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
127
128
|
},
|
|
128
129
|
};
|
|
129
130
|
};
|
|
130
|
-
exports.
|
|
131
|
+
exports.HealthCheckApiAxiosParamCreator = HealthCheckApiAxiosParamCreator;
|
|
131
132
|
/**
|
|
132
|
-
*
|
|
133
|
+
* HealthCheckApi - functional programming interface
|
|
133
134
|
* @export
|
|
134
135
|
*/
|
|
135
|
-
var
|
|
136
|
-
var localVarAxiosParamCreator = (0, exports.
|
|
136
|
+
var HealthCheckApiFp = function (configuration) {
|
|
137
|
+
var localVarAxiosParamCreator = (0, exports.HealthCheckApiAxiosParamCreator)(configuration);
|
|
137
138
|
return {
|
|
138
139
|
/**
|
|
139
|
-
*
|
|
140
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
141
|
+
* @summary Health Check
|
|
140
142
|
* @param {*} [options] Override http request option.
|
|
141
143
|
* @throws {RequiredError}
|
|
142
144
|
*/
|
|
@@ -155,16 +157,17 @@ var DefaultApiFp = function (configuration) {
|
|
|
155
157
|
},
|
|
156
158
|
};
|
|
157
159
|
};
|
|
158
|
-
exports.
|
|
160
|
+
exports.HealthCheckApiFp = HealthCheckApiFp;
|
|
159
161
|
/**
|
|
160
|
-
*
|
|
162
|
+
* HealthCheckApi - factory interface
|
|
161
163
|
* @export
|
|
162
164
|
*/
|
|
163
|
-
var
|
|
164
|
-
var localVarFp = (0, exports.
|
|
165
|
+
var HealthCheckApiFactory = function (configuration, basePath, axios) {
|
|
166
|
+
var localVarFp = (0, exports.HealthCheckApiFp)(configuration);
|
|
165
167
|
return {
|
|
166
168
|
/**
|
|
167
|
-
*
|
|
169
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
170
|
+
* @summary Health Check
|
|
168
171
|
* @param {*} [options] Override http request option.
|
|
169
172
|
* @throws {RequiredError}
|
|
170
173
|
*/
|
|
@@ -173,28 +176,29 @@ var DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
173
176
|
},
|
|
174
177
|
};
|
|
175
178
|
};
|
|
176
|
-
exports.
|
|
179
|
+
exports.HealthCheckApiFactory = HealthCheckApiFactory;
|
|
177
180
|
/**
|
|
178
|
-
*
|
|
181
|
+
* HealthCheckApi - object-oriented interface
|
|
179
182
|
* @export
|
|
180
|
-
* @class
|
|
183
|
+
* @class HealthCheckApi
|
|
181
184
|
* @extends {BaseAPI}
|
|
182
185
|
*/
|
|
183
|
-
var
|
|
184
|
-
__extends(
|
|
185
|
-
function
|
|
186
|
+
var HealthCheckApi = /** @class */ (function (_super) {
|
|
187
|
+
__extends(HealthCheckApi, _super);
|
|
188
|
+
function HealthCheckApi() {
|
|
186
189
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
187
190
|
}
|
|
188
191
|
/**
|
|
189
|
-
*
|
|
192
|
+
* Returns the health status of the insurance service. This endpoint is used to monitor the operational status of the insurance service. It typically returns a simple status indicator, such as \'UP\' or \'OK\', confirming that the service is operational and available.
|
|
193
|
+
* @summary Health Check
|
|
190
194
|
* @param {*} [options] Override http request option.
|
|
191
195
|
* @throws {RequiredError}
|
|
192
|
-
* @memberof
|
|
196
|
+
* @memberof HealthCheckApi
|
|
193
197
|
*/
|
|
194
|
-
|
|
198
|
+
HealthCheckApi.prototype.check = function (options) {
|
|
195
199
|
var _this = this;
|
|
196
|
-
return (0, exports.
|
|
200
|
+
return (0, exports.HealthCheckApiFp)(this.configuration).check(options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
197
201
|
};
|
|
198
|
-
return
|
|
202
|
+
return HealthCheckApi;
|
|
199
203
|
}(base_1.BaseAPI));
|
|
200
|
-
exports.
|
|
204
|
+
exports.HealthCheckApi = HealthCheckApi;
|
|
@@ -212,8 +212,7 @@ var InsuredObjectsApiAxiosParamCreator = function (configuration) {
|
|
|
212
212
|
// verify required parameter 'id' is not null or undefined
|
|
213
213
|
(0, common_1.assertParamExists)('getInsuredObject', 'id', id);
|
|
214
214
|
localVarPath = "/insuranceservice/v1/insured-objects/{id}"
|
|
215
|
-
.replace("{".concat("id", "}"), encodeURIComponent(String(id)))
|
|
216
|
-
.replace("{".concat("expand", "}"), encodeURIComponent(String(expand)));
|
|
215
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
217
216
|
localVarUrlObj = new url_1.URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
218
217
|
if (configuration) {
|
|
219
218
|
baseOptions = configuration.baseOptions;
|
|
@@ -229,6 +228,9 @@ var InsuredObjectsApiAxiosParamCreator = function (configuration) {
|
|
|
229
228
|
// authentication bearer required
|
|
230
229
|
// http bearer authentication required
|
|
231
230
|
_a.sent();
|
|
231
|
+
if (expand !== undefined) {
|
|
232
|
+
localVarQueryParameter['expand'] = expand;
|
|
233
|
+
}
|
|
232
234
|
if (authorization !== undefined && authorization !== null || baseAccessToken !== undefined && baseAccessToken !== null) {
|
|
233
235
|
localVarHeaderParameter['Authorization'] = String(authorization ? authorization : baseAccessToken);
|
|
234
236
|
}
|
|
@@ -41,7 +41,7 @@ export declare const LeadStatusesApiAxiosParamCreator: (configuration?: Configur
|
|
|
41
41
|
*/
|
|
42
42
|
deleteLeadStatus: (id: number, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
43
|
/**
|
|
44
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
44
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
45
45
|
* @summary Retrieve the lead status
|
|
46
46
|
* @param {number} id
|
|
47
47
|
* @param {string} [authorization] Bearer Token
|
|
@@ -89,7 +89,7 @@ export declare const LeadStatusesApiFp: (configuration?: Configuration) => {
|
|
|
89
89
|
*/
|
|
90
90
|
deleteLeadStatus(id: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
91
91
|
/**
|
|
92
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
92
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
93
93
|
* @summary Retrieve the lead status
|
|
94
94
|
* @param {number} id
|
|
95
95
|
* @param {string} [authorization] Bearer Token
|
|
@@ -137,7 +137,7 @@ export declare const LeadStatusesApiFactory: (configuration?: Configuration, bas
|
|
|
137
137
|
*/
|
|
138
138
|
deleteLeadStatus(id: number, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
139
139
|
/**
|
|
140
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
140
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
141
141
|
* @summary Retrieve the lead status
|
|
142
142
|
* @param {number} id
|
|
143
143
|
* @param {string} [authorization] Bearer Token
|
|
@@ -299,7 +299,7 @@ export declare class LeadStatusesApi extends BaseAPI {
|
|
|
299
299
|
*/
|
|
300
300
|
deleteLeadStatus(requestParameters: LeadStatusesApiDeleteLeadStatusRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
301
301
|
/**
|
|
302
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
302
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
303
303
|
* @summary Retrieve the lead status
|
|
304
304
|
* @param {LeadStatusesApiGetLeadStatusRequest} requestParameters Request parameters.
|
|
305
305
|
* @param {*} [options] Override http request option.
|
|
@@ -194,7 +194,7 @@ var LeadStatusesApiAxiosParamCreator = function (configuration) {
|
|
|
194
194
|
});
|
|
195
195
|
},
|
|
196
196
|
/**
|
|
197
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
197
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
198
198
|
* @summary Retrieve the lead status
|
|
199
199
|
* @param {number} id
|
|
200
200
|
* @param {string} [authorization] Bearer Token
|
|
@@ -366,7 +366,7 @@ var LeadStatusesApiFp = function (configuration) {
|
|
|
366
366
|
});
|
|
367
367
|
},
|
|
368
368
|
/**
|
|
369
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
369
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
370
370
|
* @summary Retrieve the lead status
|
|
371
371
|
* @param {number} id
|
|
372
372
|
* @param {string} [authorization] Bearer Token
|
|
@@ -446,7 +446,7 @@ var LeadStatusesApiFactory = function (configuration, basePath, axios) {
|
|
|
446
446
|
return localVarFp.deleteLeadStatus(id, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
447
447
|
},
|
|
448
448
|
/**
|
|
449
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
449
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
450
450
|
* @summary Retrieve the lead status
|
|
451
451
|
* @param {number} id
|
|
452
452
|
* @param {string} [authorization] Bearer Token
|
|
@@ -512,7 +512,7 @@ var LeadStatusesApi = /** @class */ (function (_super) {
|
|
|
512
512
|
return (0, exports.LeadStatusesApiFp)(this.configuration).deleteLeadStatus(requestParameters.id, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
513
513
|
};
|
|
514
514
|
/**
|
|
515
|
-
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code
|
|
515
|
+
* Retrieves the details of the lead status that was previously created. Supply the unique lead status code that was returned when you created it and Emil Api will return the corresponding lead status information.
|
|
516
516
|
* @summary Retrieve the lead status
|
|
517
517
|
* @param {LeadStatusesApiGetLeadStatusRequest} requestParameters Request parameters.
|
|
518
518
|
* @param {*} [options] Override http request option.
|
|
@@ -20,7 +20,7 @@ import { ListLeadVersionsResponseClass } from '../models';
|
|
|
20
20
|
*/
|
|
21
21
|
export declare const LeadVersionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
22
|
/**
|
|
23
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
23
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
24
24
|
* @summary Retrieve the lead version
|
|
25
25
|
* @param {string} code
|
|
26
26
|
* @param {number} version
|
|
@@ -52,7 +52,7 @@ export declare const LeadVersionsApiAxiosParamCreator: (configuration?: Configur
|
|
|
52
52
|
*/
|
|
53
53
|
export declare const LeadVersionsApiFp: (configuration?: Configuration) => {
|
|
54
54
|
/**
|
|
55
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
55
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
56
56
|
* @summary Retrieve the lead version
|
|
57
57
|
* @param {string} code
|
|
58
58
|
* @param {number} version
|
|
@@ -84,7 +84,7 @@ export declare const LeadVersionsApiFp: (configuration?: Configuration) => {
|
|
|
84
84
|
*/
|
|
85
85
|
export declare const LeadVersionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
86
86
|
/**
|
|
87
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
87
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
88
88
|
* @summary Retrieve the lead version
|
|
89
89
|
* @param {string} code
|
|
90
90
|
* @param {number} version
|
|
@@ -204,7 +204,7 @@ export interface LeadVersionsApiListLeadVersionsRequest {
|
|
|
204
204
|
*/
|
|
205
205
|
export declare class LeadVersionsApi extends BaseAPI {
|
|
206
206
|
/**
|
|
207
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
207
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
208
208
|
* @summary Retrieve the lead version
|
|
209
209
|
* @param {LeadVersionsApiGetLeadVersionRequest} requestParameters Request parameters.
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var LeadVersionsApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
100
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
101
101
|
* @summary Retrieve the lead version
|
|
102
102
|
* @param {string} code
|
|
103
103
|
* @param {number} version
|
|
@@ -235,7 +235,7 @@ var LeadVersionsApiFp = function (configuration) {
|
|
|
235
235
|
var localVarAxiosParamCreator = (0, exports.LeadVersionsApiAxiosParamCreator)(configuration);
|
|
236
236
|
return {
|
|
237
237
|
/**
|
|
238
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
238
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
239
239
|
* @summary Retrieve the lead version
|
|
240
240
|
* @param {string} code
|
|
241
241
|
* @param {number} version
|
|
@@ -295,7 +295,7 @@ var LeadVersionsApiFactory = function (configuration, basePath, axios) {
|
|
|
295
295
|
var localVarFp = (0, exports.LeadVersionsApiFp)(configuration);
|
|
296
296
|
return {
|
|
297
297
|
/**
|
|
298
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
298
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
299
299
|
* @summary Retrieve the lead version
|
|
300
300
|
* @param {string} code
|
|
301
301
|
* @param {number} version
|
|
@@ -339,7 +339,7 @@ var LeadVersionsApi = /** @class */ (function (_super) {
|
|
|
339
339
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
|
-
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code
|
|
342
|
+
* Retrieves the details of the lead version that was previously created. Supply the unique lead version code that was returned when you created it and Emil Api will return the corresponding lead version information.
|
|
343
343
|
* @summary Retrieve the lead version
|
|
344
344
|
* @param {LeadVersionsApiGetLeadVersionRequest} requestParameters Request parameters.
|
|
345
345
|
* @param {*} [options] Override http request option.
|
package/dist/api/leads-api.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export declare const LeadsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
75
75
|
*/
|
|
76
76
|
deleteLead: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
77
|
/**
|
|
78
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
78
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
79
79
|
* @summary Retrieve the lead
|
|
80
80
|
* @param {string} code Unique identifier for the object.
|
|
81
81
|
* @param {string} [authorization] Bearer Token
|
|
@@ -182,7 +182,7 @@ export declare const LeadsApiFp: (configuration?: Configuration) => {
|
|
|
182
182
|
*/
|
|
183
183
|
deleteLead(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteResponseClass>>;
|
|
184
184
|
/**
|
|
185
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
185
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
186
186
|
* @summary Retrieve the lead
|
|
187
187
|
* @param {string} code Unique identifier for the object.
|
|
188
188
|
* @param {string} [authorization] Bearer Token
|
|
@@ -289,7 +289,7 @@ export declare const LeadsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
289
289
|
*/
|
|
290
290
|
deleteLead(code: string, authorization?: string, options?: any): AxiosPromise<DeleteResponseClass>;
|
|
291
291
|
/**
|
|
292
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
292
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
293
293
|
* @summary Retrieve the lead
|
|
294
294
|
* @param {string} code Unique identifier for the object.
|
|
295
295
|
* @param {string} [authorization] Bearer Token
|
|
@@ -653,7 +653,7 @@ export declare class LeadsApi extends BaseAPI {
|
|
|
653
653
|
*/
|
|
654
654
|
deleteLead(requestParameters: LeadsApiDeleteLeadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteResponseClass, any>>;
|
|
655
655
|
/**
|
|
656
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
656
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
657
657
|
* @summary Retrieve the lead
|
|
658
658
|
* @param {LeadsApiGetLeadRequest} requestParameters Request parameters.
|
|
659
659
|
* @param {*} [options] Override http request option.
|
package/dist/api/leads-api.js
CHANGED
|
@@ -345,7 +345,7 @@ var LeadsApiAxiosParamCreator = function (configuration) {
|
|
|
345
345
|
});
|
|
346
346
|
},
|
|
347
347
|
/**
|
|
348
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
348
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
349
349
|
* @summary Retrieve the lead
|
|
350
350
|
* @param {string} code Unique identifier for the object.
|
|
351
351
|
* @param {string} [authorization] Bearer Token
|
|
@@ -744,7 +744,7 @@ var LeadsApiFp = function (configuration) {
|
|
|
744
744
|
});
|
|
745
745
|
},
|
|
746
746
|
/**
|
|
747
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
747
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
748
748
|
* @summary Retrieve the lead
|
|
749
749
|
* @param {string} code Unique identifier for the object.
|
|
750
750
|
* @param {string} [authorization] Bearer Token
|
|
@@ -925,7 +925,7 @@ var LeadsApiFactory = function (configuration, basePath, axios) {
|
|
|
925
925
|
return localVarFp.deleteLead(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
926
926
|
},
|
|
927
927
|
/**
|
|
928
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
928
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
929
929
|
* @summary Retrieve the lead
|
|
930
930
|
* @param {string} code Unique identifier for the object.
|
|
931
931
|
* @param {string} [authorization] Bearer Token
|
|
@@ -1064,7 +1064,7 @@ var LeadsApi = /** @class */ (function (_super) {
|
|
|
1064
1064
|
return (0, exports.LeadsApiFp)(this.configuration).deleteLead(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1065
1065
|
};
|
|
1066
1066
|
/**
|
|
1067
|
-
* Retrieves the details of the lead that was previously created. Supply the unique lead code
|
|
1067
|
+
* Retrieves the details of the lead that was previously created. Supply the unique lead code that was returned when you created it and Emil Api will return the corresponding lead information.
|
|
1068
1068
|
* @summary Retrieve the lead
|
|
1069
1069
|
* @param {LeadsApiGetLeadRequest} requestParameters Request parameters.
|
|
1070
1070
|
* @param {*} [options] Override http request option.
|
|
@@ -62,7 +62,7 @@ export declare const PartnerLinksApiAxiosParamCreator: (configuration?: Configur
|
|
|
62
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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
63
63
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
64
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, createdAt, updatedAt</i>
|
|
65
|
-
* @param {string} [expand] Expand to fetch additional information about the list items.
|
|
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: role<i>
|
|
66
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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
67
67
|
* @param {*} [options] Override http request option.
|
|
68
68
|
* @throws {RequiredError}
|
|
@@ -130,7 +130,7 @@ export declare const PartnerLinksApiFp: (configuration?: Configuration) => {
|
|
|
130
130
|
* @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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
131
131
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
132
132
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
133
|
-
* @param {string} [expand] Expand to fetch additional information about the list items.
|
|
133
|
+
* @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: role<i>
|
|
134
134
|
* @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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
135
135
|
* @param {*} [options] Override http request option.
|
|
136
136
|
* @throws {RequiredError}
|
|
@@ -198,7 +198,7 @@ export declare const PartnerLinksApiFactory: (configuration?: Configuration, bas
|
|
|
198
198
|
* @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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
199
199
|
* @param {string} [search] Search the response for matches in any searchable field. Use filter instead where possible for improved performance.<br/> <br/> <i>Searchable fields: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
200
200
|
* @param {string} [order] Order allows you to specify the desired order of entities retrieved from the server by ascending (ASC) or descending (DESC) order.<br/> <br/> <i>Allowed values: id, createdAt, updatedAt</i>
|
|
201
|
-
* @param {string} [expand] Expand to fetch additional information about the list items.
|
|
201
|
+
* @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: role<i>
|
|
202
202
|
* @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: partnerCode, partnerRoleCode, policyCode, leadCode</i>
|
|
203
203
|
* @param {*} [options] Override http request option.
|
|
204
204
|
* @throws {RequiredError}
|
|
@@ -330,7 +330,7 @@ export interface PartnerLinksApiListPartnerLinksRequest {
|
|
|
330
330
|
*/
|
|
331
331
|
readonly order?: string;
|
|
332
332
|
/**
|
|
333
|
-
* Expand to fetch additional information about the list items.
|
|
333
|
+
* 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: role<i>
|
|
334
334
|
* @type {string}
|
|
335
335
|
* @memberof PartnerLinksApiListPartnerLinks
|
|
336
336
|
*/
|