@emilgroup/public-api-sdk-node 1.40.1-beta.1 → 1.40.1-beta.10
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 +5 -1
- package/README.md +2 -2
- package/api/address-completions-validations-api.ts +20 -6
- package/api/documents-api.ts +10 -8
- package/api/{default-api.ts → health-api.ts} +13 -13
- package/api/leads-api.ts +98 -10
- package/api/partners-api.ts +169 -0
- package/api/payments-setup-api.ts +113 -11
- package/api.ts +4 -2
- package/base.ts +1 -0
- package/dist/api/address-completions-validations-api.d.ts +12 -3
- package/dist/api/address-completions-validations-api.js +12 -6
- package/dist/api/documents-api.d.ts +9 -8
- package/dist/api/documents-api.js +3 -3
- package/dist/api/{default-api.d.ts → health-api.d.ts} +10 -10
- package/dist/api/{default-api.js → health-api.js} +22 -22
- package/dist/api/leads-api.d.ts +52 -6
- package/dist/api/leads-api.js +94 -7
- package/dist/api/partners-api.d.ts +97 -0
- package/dist/api/partners-api.js +228 -0
- package/dist/api/payments-setup-api.d.ts +62 -7
- package/dist/api/payments-setup-api.js +100 -7
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/base.d.ts +2 -1
- package/dist/base.js +1 -0
- package/dist/models/deductible-class.d.ts +6 -0
- package/dist/models/get-product-document-download-url-request-rest-dto.d.ts +29 -0
- package/dist/models/get-product-document-download-url-request-rest-dto.js +20 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/tariff-category-summary-class.d.ts +0 -7
- package/dist/models/validate-partner-request-dto.d.ts +30 -0
- package/dist/models/validate-partner-request-dto.js +15 -0
- package/dist/models/validate-partner-response-class.d.ts +30 -0
- package/dist/models/validate-partner-response-class.js +15 -0
- package/models/deductible-class.ts +6 -0
- package/models/get-product-document-download-url-request-rest-dto.ts +38 -0
- package/models/index.ts +3 -0
- package/models/tariff-category-summary-class.ts +0 -7
- package/models/validate-partner-request-dto.ts +36 -0
- package/models/validate-partner-response-class.ts +36 -0
- package/package.json +1 -1
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
|
|
16
16
|
import { CategoryCoverageSummaryClass } from './category-coverage-summary-class';
|
|
17
17
|
import { CoverageTermClass } from './coverage-term-class';
|
|
18
|
-
import { DeductibleClass } from './deductible-class';
|
|
19
18
|
|
|
20
19
|
/**
|
|
21
20
|
*
|
|
@@ -53,11 +52,5 @@ export interface TariffCategorySummaryClass {
|
|
|
53
52
|
* @memberof TariffCategorySummaryClass
|
|
54
53
|
*/
|
|
55
54
|
'coverages': Array<CategoryCoverageSummaryClass>;
|
|
56
|
-
/**
|
|
57
|
-
* List of category deductibles
|
|
58
|
-
* @type {Array<DeductibleClass>}
|
|
59
|
-
* @memberof TariffCategorySummaryClass
|
|
60
|
-
*/
|
|
61
|
-
'deductibles': Array<DeductibleClass>;
|
|
62
55
|
}
|
|
63
56
|
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ValidatePartnerRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface ValidatePartnerRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique number assigned to the partner.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ValidatePartnerRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'partnerNumber': string;
|
|
29
|
+
/**
|
|
30
|
+
* Dynamic key-value pairs matched against partner custom fields (top-level or one level deep). All provided fields must match — AND logic. If omitted or empty, validation passes without checking custom fields.
|
|
31
|
+
* @type {object}
|
|
32
|
+
* @memberof ValidatePartnerRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'validationFields'?: object;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Emil PublicAPI
|
|
5
|
+
* The Emil Public API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ValidatePartnerResponseClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ValidatePartnerResponseClass {
|
|
23
|
+
/**
|
|
24
|
+
* True when the partner was found and all provided validationFields matched. Also true when validationFields is absent or empty.
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof ValidatePartnerResponseClass
|
|
27
|
+
*/
|
|
28
|
+
'isValid': boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Describes why validation failed. Possible values: \"Partner not found with partnerNumber: [partnerNumber]\" | \"Validation failed: field \\\"[name]\\\" was not found in partner data\" | \"Validation failed: value for field \\\"[name]\\\" does not match\". Only present when isValid is false.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ValidatePartnerResponseClass
|
|
33
|
+
*/
|
|
34
|
+
'errorMessage'?: string;
|
|
35
|
+
}
|
|
36
|
+
|