@emilgroup/claim-sdk-node 1.11.0 → 1.17.1
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 +14 -0
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +681 -0
- package/api/claim-partners-api.ts +574 -0
- package/api/claim-statuses-api.ts +24 -10
- package/api/claims-api.ts +24 -10
- package/api/settlements-api.ts +24 -10
- package/api.ts +4 -0
- package/dist/api/claim-partner-roles-api.d.ts +384 -0
- package/dist/api/claim-partner-roles-api.js +640 -0
- package/dist/api/claim-partners-api.d.ts +327 -0
- package/dist/api/claim-partners-api.js +547 -0
- package/dist/api/claim-statuses-api.d.ts +16 -7
- package/dist/api/claim-statuses-api.js +15 -9
- package/dist/api/claims-api.d.ts +16 -7
- package/dist/api/claims-api.js +15 -9
- package/dist/api/settlements-api.d.ts +16 -7
- package/dist/api/settlements-api.js +15 -9
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/claim-class.d.ts +13 -1
- package/dist/models/claim-partner-class.d.ts +61 -0
- package/dist/models/claim-partner-class.js +15 -0
- package/dist/models/claim-partner-role-class.d.ts +54 -0
- package/dist/models/claim-partner-role-class.js +15 -0
- package/dist/models/claim-status-class.d.ts +1 -1
- package/dist/models/create-claim-partner-request-dto.d.ts +36 -0
- package/dist/models/create-claim-partner-request-dto.js +15 -0
- package/dist/models/create-claim-partner-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-response-class.js +15 -0
- package/dist/models/create-claim-partner-role-request-dto.d.ts +30 -0
- package/dist/models/create-claim-partner-role-request-dto.js +15 -0
- package/dist/models/create-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-role-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +9 -3
- package/dist/models/create-claim-status-request-dto.d.ts +1 -1
- package/dist/models/get-claim-partner-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-response-class.js +15 -0
- package/dist/models/get-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-role-response-class.js +15 -0
- package/dist/models/index.d.ts +12 -0
- package/dist/models/index.js +12 -0
- package/dist/models/inline-response200.d.ts +6 -6
- package/dist/models/inline-response503.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +31 -0
- package/dist/models/list-claim-partner-roles-response-class.js +15 -0
- package/dist/models/list-claim-partners-response-class.d.ts +31 -0
- package/dist/models/list-claim-partners-response-class.js +15 -0
- package/dist/models/patch-claim-request-dto.d.ts +8 -2
- package/dist/models/update-claim-partner-role-request-dto.d.ts +36 -0
- package/dist/models/update-claim-partner-role-request-dto.js +15 -0
- package/dist/models/update-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/update-claim-partner-role-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +8 -2
- package/models/claim-class.ts +13 -1
- package/models/claim-partner-class.ts +67 -0
- package/models/claim-partner-role-class.ts +60 -0
- package/models/claim-status-class.ts +1 -1
- package/models/create-claim-partner-request-dto.ts +42 -0
- package/models/create-claim-partner-response-class.ts +31 -0
- package/models/create-claim-partner-role-request-dto.ts +36 -0
- package/models/create-claim-partner-role-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +9 -3
- package/models/create-claim-status-request-dto.ts +1 -1
- package/models/get-claim-partner-response-class.ts +31 -0
- package/models/get-claim-partner-role-response-class.ts +31 -0
- package/models/index.ts +12 -0
- package/models/inline-response200.ts +6 -6
- package/models/inline-response503.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +37 -0
- package/models/list-claim-partners-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +8 -2
- package/models/update-claim-partner-role-request-dto.ts +42 -0
- package/models/update-claim-partner-role-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +8 -2
- package/package.json +2 -2
|
@@ -69,6 +69,12 @@ export interface PatchClaimRequestDto {
|
|
|
69
69
|
* @memberof PatchClaimRequestDto
|
|
70
70
|
*/
|
|
71
71
|
'insuredObjectId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* The policy object code that the claim is made for.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof PatchClaimRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'policyObjectCode'?: string;
|
|
72
78
|
/**
|
|
73
79
|
* The claim\'s description in 5000 characters.
|
|
74
80
|
* @type {string}
|
|
@@ -76,13 +82,13 @@ export interface PatchClaimRequestDto {
|
|
|
76
82
|
*/
|
|
77
83
|
'description'?: string;
|
|
78
84
|
/**
|
|
79
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
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.
|
|
80
86
|
* @type {string}
|
|
81
87
|
* @memberof PatchClaimRequestDto
|
|
82
88
|
*/
|
|
83
89
|
'adjuster'?: string;
|
|
84
90
|
/**
|
|
85
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
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.
|
|
86
92
|
* @type {string}
|
|
87
93
|
* @memberof PatchClaimRequestDto
|
|
88
94
|
*/
|
|
@@ -0,0 +1,36 @@
|
|
|
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 UpdateClaimPartnerRoleRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateClaimPartnerRoleRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier for the object.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'code': string;
|
|
24
|
+
/**
|
|
25
|
+
* Name of the claim partner role.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'name': string;
|
|
30
|
+
/**
|
|
31
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'productSlug'?: string;
|
|
36
|
+
}
|
|
@@ -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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UpdateClaimPartnerRoleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface UpdateClaimPartnerRoleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner role
|
|
21
|
+
* @type {ClaimPartnerRoleClass}
|
|
22
|
+
* @memberof UpdateClaimPartnerRoleResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
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 });
|
|
@@ -69,6 +69,12 @@ export interface UpdateClaimRequestDto {
|
|
|
69
69
|
* @memberof UpdateClaimRequestDto
|
|
70
70
|
*/
|
|
71
71
|
'insuredObjectId'?: number;
|
|
72
|
+
/**
|
|
73
|
+
* The policy object code that the claim is made for.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof UpdateClaimRequestDto
|
|
76
|
+
*/
|
|
77
|
+
'policyObjectCode'?: string;
|
|
72
78
|
/**
|
|
73
79
|
* The claim\'s description in 5000 characters.
|
|
74
80
|
* @type {string}
|
|
@@ -76,13 +82,13 @@ export interface UpdateClaimRequestDto {
|
|
|
76
82
|
*/
|
|
77
83
|
'description'?: string;
|
|
78
84
|
/**
|
|
79
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
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.
|
|
80
86
|
* @type {string}
|
|
81
87
|
* @memberof UpdateClaimRequestDto
|
|
82
88
|
*/
|
|
83
89
|
'adjuster'?: string;
|
|
84
90
|
/**
|
|
85
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
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.
|
|
86
92
|
* @type {string}
|
|
87
93
|
* @memberof UpdateClaimRequestDto
|
|
88
94
|
*/
|
package/models/claim-class.ts
CHANGED
|
@@ -92,6 +92,12 @@ export interface ClaimClass {
|
|
|
92
92
|
* @memberof ClaimClass
|
|
93
93
|
*/
|
|
94
94
|
'insuredObjectId': number;
|
|
95
|
+
/**
|
|
96
|
+
* The policy object code that the claim is made for.
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof ClaimClass
|
|
99
|
+
*/
|
|
100
|
+
'policyObjectCode': string;
|
|
95
101
|
/**
|
|
96
102
|
* Claim description.
|
|
97
103
|
* @type {string}
|
|
@@ -99,7 +105,7 @@ export interface ClaimClass {
|
|
|
99
105
|
*/
|
|
100
106
|
'description': string;
|
|
101
107
|
/**
|
|
102
|
-
* A claim adjuster investigates insurance claims by interviewing the claimant and witnesses,
|
|
108
|
+
* 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.
|
|
103
109
|
* @type {string}
|
|
104
110
|
* @memberof ClaimClass
|
|
105
111
|
*/
|
|
@@ -158,5 +164,11 @@ export interface ClaimClass {
|
|
|
158
164
|
* @memberof ClaimClass
|
|
159
165
|
*/
|
|
160
166
|
'ern': string;
|
|
167
|
+
/**
|
|
168
|
+
* Partners related to the claim.
|
|
169
|
+
* @type {Array<string>}
|
|
170
|
+
* @memberof ClaimClass
|
|
171
|
+
*/
|
|
172
|
+
'claimPartners'?: Array<string>;
|
|
161
173
|
}
|
|
162
174
|
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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
|
+
import { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ClaimPartnerClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ClaimPartnerClass {
|
|
24
|
+
/**
|
|
25
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ClaimPartnerClass
|
|
28
|
+
*/
|
|
29
|
+
'id': number;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the partner that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ClaimPartnerClass
|
|
34
|
+
*/
|
|
35
|
+
'partnerCode': string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the claim partner role that this object belongs to.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ClaimPartnerClass
|
|
40
|
+
*/
|
|
41
|
+
'claimPartnerRoleCode': string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique identifier of the claim that this object belongs to.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ClaimPartnerClass
|
|
46
|
+
*/
|
|
47
|
+
'claimCode': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was created.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ClaimPartnerClass
|
|
52
|
+
*/
|
|
53
|
+
'createdAt': string;
|
|
54
|
+
/**
|
|
55
|
+
* Time at which the object was updated.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ClaimPartnerClass
|
|
58
|
+
*/
|
|
59
|
+
'updatedAt': string;
|
|
60
|
+
/**
|
|
61
|
+
* Claim partner role in the relationship.
|
|
62
|
+
* @type {ClaimPartnerRoleClass}
|
|
63
|
+
* @memberof ClaimPartnerClass
|
|
64
|
+
*/
|
|
65
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
66
|
+
}
|
|
67
|
+
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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 ClaimPartnerRoleClass
|
|
21
|
+
*/
|
|
22
|
+
export interface ClaimPartnerRoleClass {
|
|
23
|
+
/**
|
|
24
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ClaimPartnerRoleClass
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ClaimPartnerRoleClass
|
|
33
|
+
*/
|
|
34
|
+
'code': string;
|
|
35
|
+
/**
|
|
36
|
+
* Name of the claim partner role.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof ClaimPartnerRoleClass
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ClaimPartnerRoleClass
|
|
45
|
+
*/
|
|
46
|
+
'productSlug'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Time at which the object was created.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ClaimPartnerRoleClass
|
|
51
|
+
*/
|
|
52
|
+
'createdAt': string;
|
|
53
|
+
/**
|
|
54
|
+
* Time at which the object was updated.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ClaimPartnerRoleClass
|
|
57
|
+
*/
|
|
58
|
+
'updatedAt': string;
|
|
59
|
+
}
|
|
60
|
+
|
|
@@ -33,7 +33,7 @@ export interface ClaimStatusClass {
|
|
|
33
33
|
*/
|
|
34
34
|
'name': string;
|
|
35
35
|
/**
|
|
36
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
36
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof ClaimStatusClass
|
|
39
39
|
*/
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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 CreateClaimPartnerRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateClaimPartnerRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier of the partner that this object belongs to.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'partnerCode': string;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier of the claim partner role that this object belongs to.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'claimPartnerRoleCode': string;
|
|
35
|
+
/**
|
|
36
|
+
* Unique identifier of the claim that this object belongs to.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'claimCode': string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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
|
+
import { ClaimPartnerClass } from './claim-partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateClaimPartnerResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateClaimPartnerResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim partner role
|
|
26
|
+
* @type {ClaimPartnerClass}
|
|
27
|
+
* @memberof CreateClaimPartnerResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimPartner'?: ClaimPartnerClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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 CreateClaimPartnerRoleRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateClaimPartnerRoleRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Name of the claim partner role.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof CreateClaimPartnerRoleRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof CreateClaimPartnerRoleRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'productSlug'?: string;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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
|
+
import { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface CreateClaimPartnerRoleResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface CreateClaimPartnerRoleResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim partner role
|
|
26
|
+
* @type {ClaimPartnerRoleClass}
|
|
27
|
+
* @memberof CreateClaimPartnerRoleResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -25,7 +25,7 @@ export interface CreateClaimRequestDto {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CreateClaimRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'claimNumber'
|
|
28
|
+
'claimNumber'?: string;
|
|
29
29
|
/**
|
|
30
30
|
* Field to enter the claim title.
|
|
31
31
|
* @type {string}
|
|
@@ -80,6 +80,12 @@ export interface CreateClaimRequestDto {
|
|
|
80
80
|
* @memberof CreateClaimRequestDto
|
|
81
81
|
*/
|
|
82
82
|
'insuredObjectId'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* The policy object code that the claim is made for.
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof CreateClaimRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'policyObjectCode'?: string;
|
|
83
89
|
/**
|
|
84
90
|
* The claim\'s description in 5000 characters.
|
|
85
91
|
* @type {string}
|
|
@@ -87,13 +93,13 @@ export interface CreateClaimRequestDto {
|
|
|
87
93
|
*/
|
|
88
94
|
'description'?: string;
|
|
89
95
|
/**
|
|
90
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
96
|
+
* 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.
|
|
91
97
|
* @type {string}
|
|
92
98
|
* @memberof CreateClaimRequestDto
|
|
93
99
|
*/
|
|
94
100
|
'adjuster'?: string;
|
|
95
101
|
/**
|
|
96
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
102
|
+
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
97
103
|
* @type {string}
|
|
98
104
|
* @memberof CreateClaimRequestDto
|
|
99
105
|
*/
|
|
@@ -27,7 +27,7 @@ export interface CreateClaimStatusRequestDto {
|
|
|
27
27
|
*/
|
|
28
28
|
'name': string;
|
|
29
29
|
/**
|
|
30
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
30
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CreateClaimStatusRequestDto
|
|
33
33
|
*/
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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
|
+
import { ClaimPartnerClass } from './claim-partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetClaimPartnerResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetClaimPartnerResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim partner
|
|
26
|
+
* @type {ClaimPartnerClass}
|
|
27
|
+
* @memberof GetClaimPartnerResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimPartner'?: ClaimPartnerClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* EMIL ClaimService
|
|
5
|
+
* The EMIL ClaimService 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
|
+
import { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface GetClaimPartnerRoleResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface GetClaimPartnerRoleResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim partner role
|
|
26
|
+
* @type {ClaimPartnerRoleClass}
|
|
27
|
+
* @memberof GetClaimPartnerRoleResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
30
|
+
}
|
|
31
|
+
|
package/models/index.ts
CHANGED
|
@@ -1,22 +1,34 @@
|
|
|
1
1
|
export * from './claim-class';
|
|
2
|
+
export * from './claim-partner-class';
|
|
3
|
+
export * from './claim-partner-role-class';
|
|
2
4
|
export * from './claim-status-class';
|
|
5
|
+
export * from './create-claim-partner-request-dto';
|
|
6
|
+
export * from './create-claim-partner-response-class';
|
|
7
|
+
export * from './create-claim-partner-role-request-dto';
|
|
8
|
+
export * from './create-claim-partner-role-response-class';
|
|
3
9
|
export * from './create-claim-request-dto';
|
|
4
10
|
export * from './create-claim-response-class';
|
|
5
11
|
export * from './create-claim-status-request-dto';
|
|
6
12
|
export * from './create-claim-status-response-class';
|
|
7
13
|
export * from './create-settlement-request-dto';
|
|
8
14
|
export * from './create-settlement-response-class';
|
|
15
|
+
export * from './get-claim-partner-response-class';
|
|
16
|
+
export * from './get-claim-partner-role-response-class';
|
|
9
17
|
export * from './get-claim-response-class';
|
|
10
18
|
export * from './get-claim-status-response-class';
|
|
11
19
|
export * from './get-settlement-response-class';
|
|
12
20
|
export * from './inline-response200';
|
|
13
21
|
export * from './inline-response503';
|
|
22
|
+
export * from './list-claim-partner-roles-response-class';
|
|
23
|
+
export * from './list-claim-partners-response-class';
|
|
14
24
|
export * from './list-claim-statuses-response-class';
|
|
15
25
|
export * from './list-claims-response-class';
|
|
16
26
|
export * from './list-settlements-response-class';
|
|
17
27
|
export * from './patch-claim-request-dto';
|
|
18
28
|
export * from './patch-claim-response-class';
|
|
19
29
|
export * from './settlement-class';
|
|
30
|
+
export * from './update-claim-partner-role-request-dto';
|
|
31
|
+
export * from './update-claim-partner-role-response-class';
|
|
20
32
|
export * from './update-claim-request-dto';
|
|
21
33
|
export * from './update-claim-response-class';
|
|
22
34
|
export * from './update-settlement-request-dto';
|
|
@@ -28,21 +28,21 @@ export interface InlineResponse200 {
|
|
|
28
28
|
'status'?: string;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {{ [key: string]: { [key: string]:
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
32
|
* @memberof InlineResponse200
|
|
33
33
|
*/
|
|
34
|
-
'info'?: { [key: string]: { [key: string]:
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {{ [key: string]: { [key: string]:
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
38
|
* @memberof InlineResponse200
|
|
39
39
|
*/
|
|
40
|
-
'error'?: { [key: string]: { [key: string]:
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {{ [key: string]: { [key: string]:
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
44
|
* @memberof InlineResponse200
|
|
45
45
|
*/
|
|
46
|
-
'details'?: { [key: string]: { [key: string]:
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
47
|
}
|
|
48
48
|
|
|
@@ -28,21 +28,21 @@ export interface InlineResponse503 {
|
|
|
28
28
|
'status'?: string;
|
|
29
29
|
/**
|
|
30
30
|
*
|
|
31
|
-
* @type {{ [key: string]: { [key: string]:
|
|
31
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
32
32
|
* @memberof InlineResponse503
|
|
33
33
|
*/
|
|
34
|
-
'info'?: { [key: string]: { [key: string]:
|
|
34
|
+
'info'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {{ [key: string]: { [key: string]:
|
|
37
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
38
38
|
* @memberof InlineResponse503
|
|
39
39
|
*/
|
|
40
|
-
'error'?: { [key: string]: { [key: string]:
|
|
40
|
+
'error'?: { [key: string]: { [key: string]: object; }; } | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {{ [key: string]: { [key: string]:
|
|
43
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
44
44
|
* @memberof InlineResponse503
|
|
45
45
|
*/
|
|
46
|
-
'details'?: { [key: string]: { [key: string]:
|
|
46
|
+
'details'?: { [key: string]: { [key: string]: object; }; };
|
|
47
47
|
}
|
|
48
48
|
|