@emilgroup/claim-sdk 1.17.2-beta.2 → 1.17.2-beta.4
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 +2 -4
- package/README.md +2 -2
- package/api/claim-regulations-api.ts +366 -45
- package/api/{default-api.ts → health-check-api.ts} +22 -18
- package/api.ts +2 -2
- package/dist/api/claim-regulations-api.d.ts +215 -40
- package/dist/api/claim-regulations-api.js +307 -23
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +31 -27
- package/dist/api.d.ts +1 -1
- package/dist/api.js +1 -1
- package/dist/models/create-claim-partner-response-class.d.ts +1 -1
- package/dist/models/create-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/create-claim-request-dto.d.ts +17 -17
- package/dist/models/create-regulation-item-request-dto.d.ts +20 -27
- package/dist/models/create-regulation-item-request-dto.js +14 -1
- package/dist/models/get-claim-partner-response-class.d.ts +1 -1
- package/dist/models/get-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/index.d.ts +1 -3
- package/dist/models/index.js +1 -3
- package/dist/models/list-regulations-response-class.d.ts +31 -0
- package/dist/models/{reserve-details-dto.js → list-regulations-response-class.js} +0 -5
- package/dist/models/patch-claim-request-dto.d.ts +18 -18
- package/dist/models/payout-details-class.d.ts +1 -1
- package/dist/models/regulation-item-class.d.ts +5 -4
- package/dist/models/update-claim-partner-role-response-class.d.ts +1 -1
- package/dist/models/update-claim-request-dto.d.ts +15 -15
- package/models/create-claim-partner-response-class.ts +1 -1
- package/models/create-claim-partner-role-response-class.ts +1 -1
- package/models/create-claim-request-dto.ts +17 -17
- package/models/create-regulation-item-request-dto.ts +21 -27
- package/models/get-claim-partner-response-class.ts +1 -1
- package/models/get-claim-partner-role-response-class.ts +1 -1
- package/models/index.ts +1 -3
- package/models/list-regulations-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +18 -18
- package/models/payout-details-class.ts +1 -1
- package/models/regulation-item-class.ts +5 -4
- package/models/update-claim-partner-role-response-class.ts +1 -1
- package/models/update-claim-request-dto.ts +15 -15
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
- package/dist/models/payout-details-dto.d.ts +0 -60
- package/dist/models/payout-details-dto.js +0 -26
- package/dist/models/regress-details-dto.d.ts +0 -51
- package/dist/models/regress-details-dto.js +0 -29
- package/dist/models/reserve-details-dto.d.ts +0 -29
- package/models/payout-details-dto.ts +0 -70
- package/models/regress-details-dto.ts +0 -61
- package/models/reserve-details-dto.ts +0 -38
|
@@ -25,97 +25,97 @@ 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}
|
|
32
32
|
* @memberof CreateClaimRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'title'
|
|
34
|
+
'title': string;
|
|
35
35
|
/**
|
|
36
36
|
* The current status of the claim.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CreateClaimRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'status'
|
|
40
|
+
'status': string;
|
|
41
41
|
/**
|
|
42
42
|
* Unique identifier of the account that the claim belongs to.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CreateClaimRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'accountCode'
|
|
46
|
+
'accountCode': string;
|
|
47
47
|
/**
|
|
48
48
|
* Field for the policy number that the claim belongs to.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CreateClaimRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'policyNumber'
|
|
52
|
+
'policyNumber': string;
|
|
53
53
|
/**
|
|
54
54
|
* Field for the policy code that the claim belongs to.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CreateClaimRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'policyCode'
|
|
58
|
+
'policyCode': string;
|
|
59
59
|
/**
|
|
60
60
|
* Unique identifier referencing the product.
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof CreateClaimRequestDto
|
|
63
63
|
*/
|
|
64
|
-
'productId'
|
|
64
|
+
'productId': number;
|
|
65
65
|
/**
|
|
66
66
|
* Unique identifier referencing the product version.
|
|
67
67
|
* @type {number}
|
|
68
68
|
* @memberof CreateClaimRequestDto
|
|
69
69
|
*/
|
|
70
|
-
'productVersionId'
|
|
70
|
+
'productVersionId': number;
|
|
71
71
|
/**
|
|
72
72
|
* The name of the product.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof CreateClaimRequestDto
|
|
75
75
|
*/
|
|
76
|
-
'productName'
|
|
76
|
+
'productName': string;
|
|
77
77
|
/**
|
|
78
78
|
* The insured object identifier that the claim is made for.
|
|
79
79
|
* @type {number}
|
|
80
80
|
* @memberof CreateClaimRequestDto
|
|
81
81
|
*/
|
|
82
|
-
'insuredObjectId'
|
|
82
|
+
'insuredObjectId': number;
|
|
83
83
|
/**
|
|
84
84
|
* The policy object code that the claim is made for.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof CreateClaimRequestDto
|
|
87
87
|
*/
|
|
88
|
-
'policyObjectCode'
|
|
88
|
+
'policyObjectCode': string;
|
|
89
89
|
/**
|
|
90
90
|
* The claim\'s description in 5000 characters.
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof CreateClaimRequestDto
|
|
93
93
|
*/
|
|
94
|
-
'description'
|
|
94
|
+
'description': string;
|
|
95
95
|
/**
|
|
96
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.
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof CreateClaimRequestDto
|
|
99
99
|
*/
|
|
100
|
-
'adjuster'
|
|
100
|
+
'adjuster': string;
|
|
101
101
|
/**
|
|
102
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.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof CreateClaimRequestDto
|
|
105
105
|
*/
|
|
106
|
-
'reporter'
|
|
106
|
+
'reporter': string;
|
|
107
107
|
/**
|
|
108
108
|
* The contact email of the policyholder.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof CreateClaimRequestDto
|
|
111
111
|
*/
|
|
112
|
-
'contactEmail'
|
|
112
|
+
'contactEmail': string;
|
|
113
113
|
/**
|
|
114
114
|
* The contact phone of the policyholder.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof CreateClaimRequestDto
|
|
117
117
|
*/
|
|
118
|
-
'contactPhone'
|
|
118
|
+
'contactPhone': string;
|
|
119
119
|
/**
|
|
120
120
|
* The claim\'s damage date.
|
|
121
121
|
* @type {string}
|
|
@@ -133,6 +133,6 @@ export interface CreateClaimRequestDto {
|
|
|
133
133
|
* @type {object}
|
|
134
134
|
* @memberof CreateClaimRequestDto
|
|
135
135
|
*/
|
|
136
|
-
'customFields'
|
|
136
|
+
'customFields': object;
|
|
137
137
|
}
|
|
138
138
|
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
import { PayoutDetailsDto } from './payout-details-dto';
|
|
17
|
-
import { RegressDetailsDto } from './regress-details-dto';
|
|
18
|
-
import { ReserveDetailsDto } from './reserve-details-dto';
|
|
19
16
|
|
|
20
17
|
/**
|
|
21
18
|
*
|
|
@@ -24,53 +21,35 @@ import { ReserveDetailsDto } from './reserve-details-dto';
|
|
|
24
21
|
*/
|
|
25
22
|
export interface CreateRegulationItemRequestDto {
|
|
26
23
|
/**
|
|
27
|
-
*
|
|
24
|
+
* Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
|
|
28
25
|
* @type {string}
|
|
29
26
|
* @memberof CreateRegulationItemRequestDto
|
|
30
27
|
*/
|
|
31
28
|
'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
|
|
32
29
|
/**
|
|
33
|
-
*
|
|
30
|
+
* The amount of the regulation item
|
|
34
31
|
* @type {number}
|
|
35
32
|
* @memberof CreateRegulationItemRequestDto
|
|
36
33
|
*/
|
|
37
34
|
'amount': number;
|
|
38
35
|
/**
|
|
39
|
-
*
|
|
36
|
+
* The currency of the regulation item
|
|
40
37
|
* @type {string}
|
|
41
38
|
* @memberof CreateRegulationItemRequestDto
|
|
42
39
|
*/
|
|
43
|
-
'currency':
|
|
40
|
+
'currency': CreateRegulationItemRequestDtoCurrencyEnum;
|
|
44
41
|
/**
|
|
45
|
-
*
|
|
42
|
+
* Booking date for the regulation item
|
|
46
43
|
* @type {string}
|
|
47
44
|
* @memberof CreateRegulationItemRequestDto
|
|
48
45
|
*/
|
|
49
46
|
'bookingDate': string;
|
|
50
47
|
/**
|
|
51
|
-
*
|
|
48
|
+
* Unique identifier of the Claim that this object belongs to.
|
|
52
49
|
* @type {string}
|
|
53
50
|
* @memberof CreateRegulationItemRequestDto
|
|
54
51
|
*/
|
|
55
52
|
'claimCode': string;
|
|
56
|
-
/**
|
|
57
|
-
*
|
|
58
|
-
* @type {PayoutDetailsDto}
|
|
59
|
-
* @memberof CreateRegulationItemRequestDto
|
|
60
|
-
*/
|
|
61
|
-
'payoutDetails'?: PayoutDetailsDto;
|
|
62
|
-
/**
|
|
63
|
-
*
|
|
64
|
-
* @type {ReserveDetailsDto}
|
|
65
|
-
* @memberof CreateRegulationItemRequestDto
|
|
66
|
-
*/
|
|
67
|
-
'reserveDetails'?: ReserveDetailsDto;
|
|
68
|
-
/**
|
|
69
|
-
*
|
|
70
|
-
* @type {RegressDetailsDto}
|
|
71
|
-
* @memberof CreateRegulationItemRequestDto
|
|
72
|
-
*/
|
|
73
|
-
'regressDetails'?: RegressDetailsDto;
|
|
74
53
|
}
|
|
75
54
|
|
|
76
55
|
export const CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
|
|
@@ -80,5 +59,20 @@ export const CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
|
|
|
80
59
|
} as const;
|
|
81
60
|
|
|
82
61
|
export type CreateRegulationItemRequestDtoRegulationItemTypeEnum = typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum[keyof typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum];
|
|
62
|
+
export const CreateRegulationItemRequestDtoCurrencyEnum = {
|
|
63
|
+
Eur: 'EUR',
|
|
64
|
+
Usd: 'USD',
|
|
65
|
+
Gbp: 'GBP',
|
|
66
|
+
Chf: 'CHF',
|
|
67
|
+
Pln: 'PLN',
|
|
68
|
+
Aud: 'AUD',
|
|
69
|
+
Cad: 'CAD',
|
|
70
|
+
Ddk: 'DDK',
|
|
71
|
+
Huf: 'HUF',
|
|
72
|
+
Nok: 'NOK',
|
|
73
|
+
Sek: 'SEK'
|
|
74
|
+
} as const;
|
|
75
|
+
|
|
76
|
+
export type CreateRegulationItemRequestDtoCurrencyEnum = typeof CreateRegulationItemRequestDtoCurrencyEnum[keyof typeof CreateRegulationItemRequestDtoCurrencyEnum];
|
|
83
77
|
|
|
84
78
|
|
package/models/index.ts
CHANGED
|
@@ -24,17 +24,15 @@ export * from './list-claim-partner-roles-response-class';
|
|
|
24
24
|
export * from './list-claim-partners-response-class';
|
|
25
25
|
export * from './list-claim-statuses-response-class';
|
|
26
26
|
export * from './list-claims-response-class';
|
|
27
|
+
export * from './list-regulations-response-class';
|
|
27
28
|
export * from './list-settlements-response-class';
|
|
28
29
|
export * from './patch-claim-request-dto';
|
|
29
30
|
export * from './patch-claim-response-class';
|
|
30
31
|
export * from './payout-details-class';
|
|
31
|
-
export * from './payout-details-dto';
|
|
32
32
|
export * from './regress-details-class';
|
|
33
|
-
export * from './regress-details-dto';
|
|
34
33
|
export * from './regulation-item-class';
|
|
35
34
|
export * from './regulation-item-response-class';
|
|
36
35
|
export * from './reserve-details-class';
|
|
37
|
-
export * from './reserve-details-dto';
|
|
38
36
|
export * from './settlement-class';
|
|
39
37
|
export * from './update-claim-partner-role-request-dto';
|
|
40
38
|
export * from './update-claim-partner-role-response-class';
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { RegulationItemClass } from './regulation-item-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListRegulationsResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListRegulationsResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of claim regulations.
|
|
26
|
+
* @type {Array<RegulationItemClass>}
|
|
27
|
+
* @memberof ListRegulationsResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<RegulationItemClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListRegulationsResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -25,108 +25,108 @@ export interface PatchClaimRequestDto {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof PatchClaimRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'title'
|
|
28
|
+
'title': string;
|
|
29
29
|
/**
|
|
30
30
|
* The current status of the claim.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof PatchClaimRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'status'
|
|
34
|
+
'status': string;
|
|
35
35
|
/**
|
|
36
36
|
* Unique identifier of the account that the claim belongs to.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof PatchClaimRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'accountCode'
|
|
40
|
+
'accountCode': string;
|
|
41
41
|
/**
|
|
42
42
|
* Field for the policy number that the claim belongs to.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof PatchClaimRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'policyNumber'
|
|
46
|
+
'policyNumber': string;
|
|
47
47
|
/**
|
|
48
48
|
* Field for the policy code that the claim belongs to.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof PatchClaimRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'policyCode'
|
|
52
|
+
'policyCode': string;
|
|
53
53
|
/**
|
|
54
54
|
* Unique identifier referencing the product.
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof PatchClaimRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'productId'
|
|
58
|
+
'productId': number;
|
|
59
59
|
/**
|
|
60
60
|
* Unique identifier referencing the product version.
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof PatchClaimRequestDto
|
|
63
63
|
*/
|
|
64
|
-
'productVersionId'
|
|
64
|
+
'productVersionId': number;
|
|
65
65
|
/**
|
|
66
66
|
* The name of the product.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof PatchClaimRequestDto
|
|
69
69
|
*/
|
|
70
|
-
'productName'
|
|
70
|
+
'productName': string;
|
|
71
71
|
/**
|
|
72
72
|
* The insured object identifier that the claim is made for.
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof PatchClaimRequestDto
|
|
75
75
|
*/
|
|
76
|
-
'insuredObjectId'
|
|
76
|
+
'insuredObjectId': number;
|
|
77
77
|
/**
|
|
78
78
|
* The policy object code that the claim is made for.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof PatchClaimRequestDto
|
|
81
81
|
*/
|
|
82
|
-
'policyObjectCode'
|
|
82
|
+
'policyObjectCode': string;
|
|
83
83
|
/**
|
|
84
84
|
* The claim\'s description in 5000 characters.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof PatchClaimRequestDto
|
|
87
87
|
*/
|
|
88
|
-
'description'
|
|
88
|
+
'description': string;
|
|
89
89
|
/**
|
|
90
90
|
* 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
91
|
* @type {string}
|
|
92
92
|
* @memberof PatchClaimRequestDto
|
|
93
93
|
*/
|
|
94
|
-
'adjuster'
|
|
94
|
+
'adjuster': string;
|
|
95
95
|
/**
|
|
96
96
|
* 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
97
|
* @type {string}
|
|
98
98
|
* @memberof PatchClaimRequestDto
|
|
99
99
|
*/
|
|
100
|
-
'reporter'
|
|
100
|
+
'reporter': string;
|
|
101
101
|
/**
|
|
102
102
|
* The contact email of the policyholder.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof PatchClaimRequestDto
|
|
105
105
|
*/
|
|
106
|
-
'contactEmail'
|
|
106
|
+
'contactEmail': string;
|
|
107
107
|
/**
|
|
108
108
|
* The contact phone of the policyholder.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof PatchClaimRequestDto
|
|
111
111
|
*/
|
|
112
|
-
'contactPhone'
|
|
112
|
+
'contactPhone': string;
|
|
113
113
|
/**
|
|
114
114
|
* The claim\'s damage date.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof PatchClaimRequestDto
|
|
117
117
|
*/
|
|
118
|
-
'damageDate'
|
|
118
|
+
'damageDate': string;
|
|
119
119
|
/**
|
|
120
120
|
* The date on which the claim is reported.
|
|
121
121
|
* @type {string}
|
|
122
122
|
* @memberof PatchClaimRequestDto
|
|
123
123
|
*/
|
|
124
|
-
'notificationDate'
|
|
124
|
+
'notificationDate': string;
|
|
125
125
|
/**
|
|
126
126
|
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
127
127
|
* @type {object}
|
|
128
128
|
* @memberof PatchClaimRequestDto
|
|
129
129
|
*/
|
|
130
|
-
'customFields'
|
|
130
|
+
'customFields': object;
|
|
131
131
|
}
|
|
132
132
|
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
import { ClaimClass } from './claim-class';
|
|
16
17
|
import { PayoutDetailsClass } from './payout-details-class';
|
|
17
18
|
import { RegressDetailsClass } from './regress-details-class';
|
|
18
19
|
import { ReserveDetailsClass } from './reserve-details-class';
|
|
@@ -36,7 +37,7 @@ export interface RegulationItemClass {
|
|
|
36
37
|
*/
|
|
37
38
|
'regulationItemType': RegulationItemClassRegulationItemTypeEnum;
|
|
38
39
|
/**
|
|
39
|
-
* The amount of the regulation item
|
|
40
|
+
* The amount of the regulation item
|
|
40
41
|
* @type {number}
|
|
41
42
|
* @memberof RegulationItemClass
|
|
42
43
|
*/
|
|
@@ -61,10 +62,10 @@ export interface RegulationItemClass {
|
|
|
61
62
|
'claimCode': string;
|
|
62
63
|
/**
|
|
63
64
|
* The ClaimClass response.
|
|
64
|
-
* @type {
|
|
65
|
+
* @type {ClaimClass}
|
|
65
66
|
* @memberof RegulationItemClass
|
|
66
67
|
*/
|
|
67
|
-
'claim':
|
|
68
|
+
'claim': ClaimClass;
|
|
68
69
|
/**
|
|
69
70
|
* The PayoutDetailsClass response.
|
|
70
71
|
* @type {PayoutDetailsClass}
|
|
@@ -84,7 +85,7 @@ export interface RegulationItemClass {
|
|
|
84
85
|
*/
|
|
85
86
|
'regressDetails': RegressDetailsClass;
|
|
86
87
|
/**
|
|
87
|
-
* The
|
|
88
|
+
* The system level identifier of the user who made the latest update
|
|
88
89
|
* @type {string}
|
|
89
90
|
* @memberof RegulationItemClass
|
|
90
91
|
*/
|
|
@@ -25,7 +25,7 @@ export interface UpdateClaimRequestDto {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof UpdateClaimRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'title'
|
|
28
|
+
'title': string;
|
|
29
29
|
/**
|
|
30
30
|
* The current status of the claim.
|
|
31
31
|
* @type {string}
|
|
@@ -37,79 +37,79 @@ export interface UpdateClaimRequestDto {
|
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof UpdateClaimRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'accountCode'
|
|
40
|
+
'accountCode': string;
|
|
41
41
|
/**
|
|
42
42
|
* Field for the policy number that the claim belongs to.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof UpdateClaimRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'policyNumber'
|
|
46
|
+
'policyNumber': string;
|
|
47
47
|
/**
|
|
48
48
|
* Field for the policy code that the claim belongs to.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof UpdateClaimRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'policyCode'
|
|
52
|
+
'policyCode': string;
|
|
53
53
|
/**
|
|
54
54
|
* Unique identifier referencing the product.
|
|
55
55
|
* @type {number}
|
|
56
56
|
* @memberof UpdateClaimRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'productId'
|
|
58
|
+
'productId': number;
|
|
59
59
|
/**
|
|
60
60
|
* Unique identifier referencing the product version.
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof UpdateClaimRequestDto
|
|
63
63
|
*/
|
|
64
|
-
'productVersionId'
|
|
64
|
+
'productVersionId': number;
|
|
65
65
|
/**
|
|
66
66
|
* The name of the product.
|
|
67
67
|
* @type {string}
|
|
68
68
|
* @memberof UpdateClaimRequestDto
|
|
69
69
|
*/
|
|
70
|
-
'productName'
|
|
70
|
+
'productName': string;
|
|
71
71
|
/**
|
|
72
72
|
* The insured object identifier that the claim is made for.
|
|
73
73
|
* @type {number}
|
|
74
74
|
* @memberof UpdateClaimRequestDto
|
|
75
75
|
*/
|
|
76
|
-
'insuredObjectId'
|
|
76
|
+
'insuredObjectId': number;
|
|
77
77
|
/**
|
|
78
78
|
* The policy object code that the claim is made for.
|
|
79
79
|
* @type {string}
|
|
80
80
|
* @memberof UpdateClaimRequestDto
|
|
81
81
|
*/
|
|
82
|
-
'policyObjectCode'
|
|
82
|
+
'policyObjectCode': string;
|
|
83
83
|
/**
|
|
84
84
|
* The claim\'s description in 5000 characters.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof UpdateClaimRequestDto
|
|
87
87
|
*/
|
|
88
|
-
'description'
|
|
88
|
+
'description': string;
|
|
89
89
|
/**
|
|
90
90
|
* 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
91
|
* @type {string}
|
|
92
92
|
* @memberof UpdateClaimRequestDto
|
|
93
93
|
*/
|
|
94
|
-
'adjuster'
|
|
94
|
+
'adjuster': string;
|
|
95
95
|
/**
|
|
96
96
|
* 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
97
|
* @type {string}
|
|
98
98
|
* @memberof UpdateClaimRequestDto
|
|
99
99
|
*/
|
|
100
|
-
'reporter'
|
|
100
|
+
'reporter': string;
|
|
101
101
|
/**
|
|
102
102
|
* The contact email of the policyholder.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof UpdateClaimRequestDto
|
|
105
105
|
*/
|
|
106
|
-
'contactEmail'
|
|
106
|
+
'contactEmail': string;
|
|
107
107
|
/**
|
|
108
108
|
* The contact phone of the policyholder.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof UpdateClaimRequestDto
|
|
111
111
|
*/
|
|
112
|
-
'contactPhone'
|
|
112
|
+
'contactPhone': string;
|
|
113
113
|
/**
|
|
114
114
|
* The claim\'s damage date.
|
|
115
115
|
* @type {string}
|
|
@@ -127,6 +127,6 @@ export interface UpdateClaimRequestDto {
|
|
|
127
127
|
* @type {object}
|
|
128
128
|
* @memberof UpdateClaimRequestDto
|
|
129
129
|
*/
|
|
130
|
-
'customFields'
|
|
130
|
+
'customFields': object;
|
|
131
131
|
}
|
|
132
132
|
|
package/package.json
CHANGED
|
@@ -1,66 +0,0 @@
|
|
|
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 { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
-
import { Configuration } from '../configuration';
|
|
14
|
-
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
-
import { InlineResponse200 } from '../models';
|
|
16
|
-
/**
|
|
17
|
-
* DefaultApi - axios parameter creator
|
|
18
|
-
* @export
|
|
19
|
-
*/
|
|
20
|
-
export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
21
|
-
/**
|
|
22
|
-
*
|
|
23
|
-
* @param {*} [options] Override http request option.
|
|
24
|
-
* @throws {RequiredError}
|
|
25
|
-
*/
|
|
26
|
-
check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
27
|
-
};
|
|
28
|
-
/**
|
|
29
|
-
* DefaultApi - functional programming interface
|
|
30
|
-
* @export
|
|
31
|
-
*/
|
|
32
|
-
export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @param {*} [options] Override http request option.
|
|
36
|
-
* @throws {RequiredError}
|
|
37
|
-
*/
|
|
38
|
-
check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
|
|
39
|
-
};
|
|
40
|
-
/**
|
|
41
|
-
* DefaultApi - factory interface
|
|
42
|
-
* @export
|
|
43
|
-
*/
|
|
44
|
-
export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
45
|
-
/**
|
|
46
|
-
*
|
|
47
|
-
* @param {*} [options] Override http request option.
|
|
48
|
-
* @throws {RequiredError}
|
|
49
|
-
*/
|
|
50
|
-
check(options?: any): AxiosPromise<InlineResponse200>;
|
|
51
|
-
};
|
|
52
|
-
/**
|
|
53
|
-
* DefaultApi - object-oriented interface
|
|
54
|
-
* @export
|
|
55
|
-
* @class DefaultApi
|
|
56
|
-
* @extends {BaseAPI}
|
|
57
|
-
*/
|
|
58
|
-
export declare class DefaultApi extends BaseAPI {
|
|
59
|
-
/**
|
|
60
|
-
*
|
|
61
|
-
* @param {*} [options] Override http request option.
|
|
62
|
-
* @throws {RequiredError}
|
|
63
|
-
* @memberof DefaultApi
|
|
64
|
-
*/
|
|
65
|
-
check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
|
|
66
|
-
}
|