@emilgroup/claim-sdk 1.0.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 +40 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/claim-statuses-api.ts +543 -0
- package/api/claims-api.ts +783 -0
- package/api/default-api.ts +120 -0
- package/api/settlements-api.ts +663 -0
- package/api.ts +33 -0
- package/base.ts +250 -0
- package/common.ts +198 -0
- package/configuration.ts +101 -0
- package/dist/api/claim-statuses-api.d.ts +309 -0
- package/dist/api/claim-statuses-api.js +531 -0
- package/dist/api/claims-api.d.ts +441 -0
- package/dist/api/claims-api.js +729 -0
- package/dist/api/default-api.d.ts +66 -0
- package/dist/api/default-api.js +196 -0
- package/dist/api/settlements-api.d.ts +375 -0
- package/dist/api/settlements-api.js +630 -0
- package/dist/api.d.ts +15 -0
- package/dist/api.js +33 -0
- package/dist/base.d.ts +73 -0
- package/dist/base.js +297 -0
- package/dist/common.d.ts +91 -0
- package/dist/common.js +276 -0
- package/dist/configuration.d.ts +83 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +36 -0
- package/dist/models/claim-class.d.ts +156 -0
- package/dist/models/claim-class.js +15 -0
- package/dist/models/claim-status-class.d.ts +36 -0
- package/dist/models/claim-status-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +126 -0
- package/dist/models/create-claim-request-dto.js +15 -0
- package/dist/models/create-claim-response-class.d.ts +25 -0
- package/dist/models/create-claim-response-class.js +15 -0
- package/dist/models/create-claim-status-request-dto.d.ts +30 -0
- package/dist/models/create-claim-status-request-dto.js +15 -0
- package/dist/models/create-claim-status-response-class.d.ts +25 -0
- package/dist/models/create-claim-status-response-class.js +15 -0
- package/dist/models/create-settlement-request-dto.d.ts +48 -0
- package/dist/models/create-settlement-request-dto.js +15 -0
- package/dist/models/create-settlement-response-class.d.ts +25 -0
- package/dist/models/create-settlement-response-class.js +15 -0
- package/dist/models/get-claim-response-class.d.ts +25 -0
- package/dist/models/get-claim-response-class.js +15 -0
- package/dist/models/get-claim-status-response-class.d.ts +25 -0
- package/dist/models/get-claim-status-response-class.js +15 -0
- package/dist/models/get-settlement-response-class.d.ts +25 -0
- package/dist/models/get-settlement-response-class.js +15 -0
- package/dist/models/index.d.ts +23 -0
- package/dist/models/index.js +39 -0
- package/dist/models/inline-response200.d.ts +54 -0
- package/dist/models/inline-response200.js +15 -0
- package/dist/models/inline-response503.d.ts +54 -0
- package/dist/models/inline-response503.js +15 -0
- package/dist/models/list-claim-statuses-response-class.d.ts +31 -0
- package/dist/models/list-claim-statuses-response-class.js +15 -0
- package/dist/models/list-claims-response-class.d.ts +31 -0
- package/dist/models/list-claims-response-class.js +15 -0
- package/dist/models/list-settlements-response-class.d.ts +31 -0
- package/dist/models/list-settlements-response-class.js +15 -0
- package/dist/models/patch-claim-request-dto.d.ts +126 -0
- package/dist/models/patch-claim-request-dto.js +15 -0
- package/dist/models/patch-claim-response-class.d.ts +25 -0
- package/dist/models/patch-claim-response-class.js +15 -0
- package/dist/models/settlement-class.d.ts +78 -0
- package/dist/models/settlement-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +126 -0
- package/dist/models/update-claim-request-dto.js +15 -0
- package/dist/models/update-claim-response-class.d.ts +25 -0
- package/dist/models/update-claim-response-class.js +15 -0
- package/dist/models/update-settlement-request-dto.d.ts +54 -0
- package/dist/models/update-settlement-request-dto.js +15 -0
- package/dist/models/update-settlement-response-class.d.ts +25 -0
- package/dist/models/update-settlement-response-class.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/claim-class.ts +162 -0
- package/models/claim-status-class.ts +42 -0
- package/models/create-claim-request-dto.ts +132 -0
- package/models/create-claim-response-class.ts +31 -0
- package/models/create-claim-status-request-dto.ts +36 -0
- package/models/create-claim-status-response-class.ts +31 -0
- package/models/create-settlement-request-dto.ts +54 -0
- package/models/create-settlement-response-class.ts +31 -0
- package/models/get-claim-response-class.ts +31 -0
- package/models/get-claim-status-response-class.ts +31 -0
- package/models/get-settlement-response-class.ts +31 -0
- package/models/index.ts +23 -0
- package/models/inline-response200.ts +48 -0
- package/models/inline-response503.ts +48 -0
- package/models/list-claim-statuses-response-class.ts +37 -0
- package/models/list-claims-response-class.ts +37 -0
- package/models/list-settlements-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +132 -0
- package/models/patch-claim-response-class.ts +31 -0
- package/models/settlement-class.ts +84 -0
- package/models/update-claim-request-dto.ts +132 -0
- package/models/update-claim-response-class.ts +31 -0
- package/models/update-settlement-request-dto.ts +60 -0
- package/models/update-settlement-response-class.ts +31 -0
- package/package.json +27 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateClaimRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateClaimRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique number assigned to the claim.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateClaimRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'claimNumber'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Field to enter the claim title.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateClaimRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'title': string;
|
|
30
|
+
/**
|
|
31
|
+
* The current status of the claim.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateClaimRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'status'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the account that the claim belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateClaimRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'accountCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* Field for the policy number that the claim belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateClaimRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'policyNumber': string;
|
|
48
|
+
/**
|
|
49
|
+
* Field for the policy code that the claim belongs to.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateClaimRequestDto
|
|
52
|
+
*/
|
|
53
|
+
'policyCode': string;
|
|
54
|
+
/**
|
|
55
|
+
* Unique identifier referencing the product.
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof CreateClaimRequestDto
|
|
58
|
+
*/
|
|
59
|
+
'productId': number;
|
|
60
|
+
/**
|
|
61
|
+
* Unique identifier referencing the product version.
|
|
62
|
+
* @type {number}
|
|
63
|
+
* @memberof CreateClaimRequestDto
|
|
64
|
+
*/
|
|
65
|
+
'productVersionId': number;
|
|
66
|
+
/**
|
|
67
|
+
* The name of the product.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateClaimRequestDto
|
|
70
|
+
*/
|
|
71
|
+
'productName': string;
|
|
72
|
+
/**
|
|
73
|
+
* The insured object identifier that the claim is made for.
|
|
74
|
+
* @type {number}
|
|
75
|
+
* @memberof CreateClaimRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'insuredObjectId': number;
|
|
78
|
+
/**
|
|
79
|
+
* The claim\'s description in 5000 characters.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateClaimRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'description': string;
|
|
84
|
+
/**
|
|
85
|
+
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof CreateClaimRequestDto
|
|
88
|
+
*/
|
|
89
|
+
'adjuster'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof CreateClaimRequestDto
|
|
94
|
+
*/
|
|
95
|
+
'reporter': string;
|
|
96
|
+
/**
|
|
97
|
+
* The contact email of the policyholder.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof CreateClaimRequestDto
|
|
100
|
+
*/
|
|
101
|
+
'contactEmail'?: string;
|
|
102
|
+
/**
|
|
103
|
+
* The contact phone of the policyholder.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof CreateClaimRequestDto
|
|
106
|
+
*/
|
|
107
|
+
'contactPhone'?: string;
|
|
108
|
+
/**
|
|
109
|
+
* The claim\'s damage date.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof CreateClaimRequestDto
|
|
112
|
+
*/
|
|
113
|
+
'damageDate'?: string;
|
|
114
|
+
/**
|
|
115
|
+
* The date on which the claim is reported.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof CreateClaimRequestDto
|
|
118
|
+
*/
|
|
119
|
+
'notificationDate': string;
|
|
120
|
+
/**
|
|
121
|
+
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
122
|
+
* @type {object}
|
|
123
|
+
* @memberof CreateClaimRequestDto
|
|
124
|
+
*/
|
|
125
|
+
'customFields'?: object;
|
|
126
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { ClaimClass } from './claim-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateClaimResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateClaimResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim
|
|
21
|
+
* @type {ClaimClass}
|
|
22
|
+
* @memberof CreateClaimResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claim': ClaimClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateClaimStatusRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateClaimStatusRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Name of the claim status. Tenants can add their own custom claim statuses, if default statuses are not suitable for their products.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateClaimStatusRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateClaimStatusRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'productSlug': string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { ClaimStatusClass } from './claim-status-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateClaimStatusResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateClaimStatusResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The claim status response.
|
|
21
|
+
* @type {ClaimStatusClass}
|
|
22
|
+
* @memberof CreateClaimStatusResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimStatus': ClaimStatusClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateSettlementRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateSettlementRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Field to enter the insured object for settlement against a particular claim.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateSettlementRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'insuredObject': string;
|
|
24
|
+
/**
|
|
25
|
+
* Field for the estimation of the maximum amount against a claim for the insured object.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreateSettlementRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'reserve': number;
|
|
30
|
+
/**
|
|
31
|
+
* Field for tracking the already paid out amounts against a claim for the insured object.
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof CreateSettlementRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'payment': number;
|
|
36
|
+
/**
|
|
37
|
+
* Field for tracking the amount to be claimed against third party.
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof CreateSettlementRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'recourse': number;
|
|
42
|
+
/**
|
|
43
|
+
* Unique identifier of the claim to which settlement belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateSettlementRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'claimCode': string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { SettlementClass } from './settlement-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateSettlementResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateSettlementResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Settlement
|
|
21
|
+
* @type {SettlementClass}
|
|
22
|
+
* @memberof CreateSettlementResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'settlement': SettlementClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { ClaimClass } from './claim-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetClaimResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetClaimResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim
|
|
21
|
+
* @type {ClaimClass}
|
|
22
|
+
* @memberof GetClaimResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claim': ClaimClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { ClaimStatusClass } from './claim-status-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetClaimStatusResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetClaimStatusResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The claim status response.
|
|
21
|
+
* @type {ClaimStatusClass}
|
|
22
|
+
* @memberof GetClaimStatusResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimStatus': ClaimStatusClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService 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 { SettlementClass } from './settlement-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetSettlementResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetSettlementResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Settlement
|
|
21
|
+
* @type {SettlementClass}
|
|
22
|
+
* @memberof GetSettlementResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'settlement': SettlementClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export * from './claim-class';
|
|
2
|
+
export * from './claim-status-class';
|
|
3
|
+
export * from './create-claim-request-dto';
|
|
4
|
+
export * from './create-claim-response-class';
|
|
5
|
+
export * from './create-claim-status-request-dto';
|
|
6
|
+
export * from './create-claim-status-response-class';
|
|
7
|
+
export * from './create-settlement-request-dto';
|
|
8
|
+
export * from './create-settlement-response-class';
|
|
9
|
+
export * from './get-claim-response-class';
|
|
10
|
+
export * from './get-claim-status-response-class';
|
|
11
|
+
export * from './get-settlement-response-class';
|
|
12
|
+
export * from './inline-response200';
|
|
13
|
+
export * from './inline-response503';
|
|
14
|
+
export * from './list-claim-statuses-response-class';
|
|
15
|
+
export * from './list-claims-response-class';
|
|
16
|
+
export * from './list-settlements-response-class';
|
|
17
|
+
export * from './patch-claim-request-dto';
|
|
18
|
+
export * from './patch-claim-response-class';
|
|
19
|
+
export * from './settlement-class';
|
|
20
|
+
export * from './update-claim-request-dto';
|
|
21
|
+
export * from './update-claim-response-class';
|
|
22
|
+
export * from './update-settlement-request-dto';
|
|
23
|
+
export * from './update-settlement-response-class';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./claim-class"), exports);
|
|
18
|
+
__exportStar(require("./claim-status-class"), exports);
|
|
19
|
+
__exportStar(require("./create-claim-request-dto"), exports);
|
|
20
|
+
__exportStar(require("./create-claim-response-class"), exports);
|
|
21
|
+
__exportStar(require("./create-claim-status-request-dto"), exports);
|
|
22
|
+
__exportStar(require("./create-claim-status-response-class"), exports);
|
|
23
|
+
__exportStar(require("./create-settlement-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-settlement-response-class"), exports);
|
|
25
|
+
__exportStar(require("./get-claim-response-class"), exports);
|
|
26
|
+
__exportStar(require("./get-claim-status-response-class"), exports);
|
|
27
|
+
__exportStar(require("./get-settlement-response-class"), exports);
|
|
28
|
+
__exportStar(require("./inline-response200"), exports);
|
|
29
|
+
__exportStar(require("./inline-response503"), exports);
|
|
30
|
+
__exportStar(require("./list-claim-statuses-response-class"), exports);
|
|
31
|
+
__exportStar(require("./list-claims-response-class"), exports);
|
|
32
|
+
__exportStar(require("./list-settlements-response-class"), exports);
|
|
33
|
+
__exportStar(require("./patch-claim-request-dto"), exports);
|
|
34
|
+
__exportStar(require("./patch-claim-response-class"), exports);
|
|
35
|
+
__exportStar(require("./settlement-class"), exports);
|
|
36
|
+
__exportStar(require("./update-claim-request-dto"), exports);
|
|
37
|
+
__exportStar(require("./update-claim-response-class"), exports);
|
|
38
|
+
__exportStar(require("./update-settlement-request-dto"), exports);
|
|
39
|
+
__exportStar(require("./update-settlement-response-class"), exports);
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EMIL ClaimService
|
|
3
|
+
* The EMIL ClaimService API description
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
* Contact: kontakt@emil.de
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface InlineResponse200
|
|
16
|
+
*/
|
|
17
|
+
export interface InlineResponse200 {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InlineResponse200
|
|
22
|
+
*/
|
|
23
|
+
'status'?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
27
|
+
* @memberof InlineResponse200
|
|
28
|
+
*/
|
|
29
|
+
'info'?: {
|
|
30
|
+
[key: string]: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
} | null;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
37
|
+
* @memberof InlineResponse200
|
|
38
|
+
*/
|
|
39
|
+
'error'?: {
|
|
40
|
+
[key: string]: {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
} | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {{ [key: string]: { [key: string]: string; }; }}
|
|
47
|
+
* @memberof InlineResponse200
|
|
48
|
+
*/
|
|
49
|
+
'details'?: {
|
|
50
|
+
[key: string]: {
|
|
51
|
+
[key: string]: string;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* EMIL ClaimService
|
|
6
|
+
* The EMIL ClaimService API description
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0
|
|
9
|
+
* Contact: kontakt@emil.de
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|