@emilgroup/insurance-sdk-node 1.93.0 → 1.93.1-beta.11
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 +29 -0
- package/README.md +2 -2
- package/api/product-configs-api.ts +1371 -0
- package/api.ts +2 -0
- package/dist/api/product-configs-api.d.ts +765 -0
- package/dist/api/product-configs-api.js +1225 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/amount-with-limit-class.d.ts +30 -0
- package/dist/models/amount-with-limit-class.js +15 -0
- package/dist/models/category-class.d.ts +57 -0
- package/dist/models/category-class.js +15 -0
- package/dist/models/claim-config-class.d.ts +39 -0
- package/dist/models/claim-config-class.js +15 -0
- package/dist/models/claim-position-fields-class.d.ts +31 -0
- package/dist/models/claim-position-fields-class.js +15 -0
- package/dist/models/coverage-class.d.ts +43 -0
- package/dist/models/coverage-class.js +15 -0
- package/dist/models/coverage-term-class.d.ts +54 -0
- package/dist/models/coverage-term-class.js +25 -0
- package/dist/models/custom-field-class.d.ts +50 -0
- package/dist/models/custom-field-class.js +23 -0
- package/dist/models/deductible-class.d.ts +60 -0
- package/dist/models/deductible-class.js +25 -0
- package/dist/models/delete-response-by-code-class.d.ts +24 -0
- package/dist/models/delete-response-by-code-class.js +15 -0
- package/dist/models/general-setting-class.d.ts +56 -0
- package/dist/models/general-setting-class.js +33 -0
- package/dist/models/index.d.ts +28 -0
- package/dist/models/index.js +28 -0
- package/dist/models/rest-create-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-response-class.js +15 -0
- package/dist/models/rest-create-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-version-response-class.js +15 -0
- package/dist/models/rest-get-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-response-class.js +15 -0
- package/dist/models/rest-get-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-version-response-class.js +15 -0
- package/dist/models/rest-list-product-config-versions-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-config-versions-response-class.js +15 -0
- package/dist/models/rest-list-product-configs-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-configs-response-class.js +15 -0
- package/dist/models/rest-update-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-response-class.js +15 -0
- package/dist/models/rest-update-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-version-response-class.js +15 -0
- package/dist/models/shared-product-config-class.d.ts +79 -0
- package/dist/models/shared-product-config-class.js +15 -0
- package/dist/models/shared-product-config-version-class.d.ts +85 -0
- package/dist/models/shared-product-config-version-class.js +21 -0
- package/dist/models/shared-product-field-override-class.d.ts +48 -0
- package/dist/models/shared-product-field-override-class.js +15 -0
- package/dist/models/shared-product-version-config-class.d.ts +32 -0
- package/dist/models/shared-product-version-config-class.js +15 -0
- package/dist/models/shared-tariff-variation-class.d.ts +64 -0
- package/dist/models/shared-tariff-variation-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +72 -0
- package/dist/models/tariff-coverage-term-class.js +30 -0
- package/dist/models/update-product-config-request-dto.d.ts +24 -0
- package/dist/models/update-product-config-request-dto.js +15 -0
- package/dist/models/update-product-config-version-status-request-dto.d.ts +30 -0
- package/dist/models/update-product-config-version-status-request-dto.js +21 -0
- package/dist/models/waiting-period-class.d.ts +41 -0
- package/dist/models/waiting-period-class.js +20 -0
- package/dist/models/warning-class.d.ts +47 -0
- package/dist/models/warning-class.js +20 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/category-class.ts +63 -0
- package/models/claim-config-class.ts +45 -0
- package/models/claim-position-fields-class.ts +37 -0
- package/models/coverage-class.ts +49 -0
- package/models/coverage-term-class.ts +64 -0
- package/models/custom-field-class.ts +59 -0
- package/models/deductible-class.ts +70 -0
- package/models/delete-response-by-code-class.ts +30 -0
- package/models/general-setting-class.ts +66 -0
- package/models/index.ts +28 -0
- package/models/rest-create-product-config-response-class.ts +31 -0
- package/models/rest-create-product-config-version-response-class.ts +31 -0
- package/models/rest-get-product-config-response-class.ts +31 -0
- package/models/rest-get-product-config-version-response-class.ts +31 -0
- package/models/rest-list-product-config-versions-response-class.ts +49 -0
- package/models/rest-list-product-configs-response-class.ts +49 -0
- package/models/rest-update-product-config-response-class.ts +31 -0
- package/models/rest-update-product-config-version-response-class.ts +31 -0
- package/models/shared-product-config-class.ts +85 -0
- package/models/shared-product-config-version-class.ts +94 -0
- package/models/shared-product-field-override-class.ts +54 -0
- package/models/shared-product-version-config-class.ts +38 -0
- package/models/shared-tariff-variation-class.ts +70 -0
- package/models/tariff-coverage-term-class.ts +83 -0
- package/models/update-product-config-request-dto.ts +30 -0
- package/models/update-product-config-version-status-request-dto.ts +39 -0
- package/models/waiting-period-class.ts +50 -0
- package/models/warning-class.ts +56 -0
- package/package.json +2 -2
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface WaitingPeriodClass
|
|
21
|
+
*/
|
|
22
|
+
export interface WaitingPeriodClass {
|
|
23
|
+
/**
|
|
24
|
+
* Number of days in the waiting period before coverage applies
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof WaitingPeriodClass
|
|
27
|
+
*/
|
|
28
|
+
'days': number;
|
|
29
|
+
/**
|
|
30
|
+
* Starting point for waiting period calculation (policy start date or claim event date)
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof WaitingPeriodClass
|
|
33
|
+
*/
|
|
34
|
+
'startFrom': WaitingPeriodClassStartFromEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Whether to include the start date in the waiting period calculation
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof WaitingPeriodClass
|
|
39
|
+
*/
|
|
40
|
+
'includeStartDate': boolean;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export const WaitingPeriodClassStartFromEnum = {
|
|
44
|
+
ClaimDate: 'CLAIM_DATE',
|
|
45
|
+
PolicyStartDate: 'POLICY_START_DATE'
|
|
46
|
+
} as const;
|
|
47
|
+
|
|
48
|
+
export type WaitingPeriodClassStartFromEnum = typeof WaitingPeriodClassStartFromEnum[keyof typeof WaitingPeriodClassStartFromEnum];
|
|
49
|
+
|
|
50
|
+
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL InsuranceService
|
|
5
|
+
* The EMIL InsuranceService API description
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0
|
|
8
|
+
* Contact: kontakt@emil.de
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface WarningClass
|
|
21
|
+
*/
|
|
22
|
+
export interface WarningClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier key for warning
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof WarningClass
|
|
27
|
+
*/
|
|
28
|
+
'key': string;
|
|
29
|
+
/**
|
|
30
|
+
* Type of warning
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof WarningClass
|
|
33
|
+
*/
|
|
34
|
+
'type': WarningClassTypeEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Whether this warning is active
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof WarningClass
|
|
39
|
+
*/
|
|
40
|
+
'enabled': boolean;
|
|
41
|
+
/**
|
|
42
|
+
* Text message to display as warning
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof WarningClass
|
|
45
|
+
*/
|
|
46
|
+
'message': string;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export const WarningClassTypeEnum = {
|
|
50
|
+
Warning: 'WARNING',
|
|
51
|
+
Blocker: 'BLOCKER'
|
|
52
|
+
} as const;
|
|
53
|
+
|
|
54
|
+
export type WarningClassTypeEnum = typeof WarningClassTypeEnum[keyof typeof WarningClassTypeEnum];
|
|
55
|
+
|
|
56
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/insurance-sdk-node",
|
|
3
|
-
"version": "1.93.
|
|
3
|
+
"version": "1.93.1-beta.11",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/insurance-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|