@emilgroup/claim-sdk 1.17.2-beta.3 → 1.17.2-beta.5
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 +4 -0
- package/README.md +2 -2
- package/api/claim-regulations-api.ts +62 -32
- package/api/health-check-api.ts +5 -5
- package/dist/api/claim-regulations-api.d.ts +38 -19
- package/dist/api/claim-regulations-api.js +36 -24
- package/dist/api/health-check-api.d.ts +4 -4
- package/dist/api/health-check-api.js +5 -5
- 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 +4 -4
- 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 +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/patch-claim-request-dto.d.ts +18 -18
- 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/dist/models/update-payout-details-dto.d.ts +60 -0
- package/dist/models/update-payout-details-dto.js +26 -0
- package/dist/models/update-regress-details-dto.d.ts +51 -0
- package/dist/models/update-regress-details-dto.js +29 -0
- package/dist/models/update-regulation-item-request-dto-rest.d.ts +69 -0
- package/dist/models/update-regulation-item-request-dto-rest.js +21 -0
- package/dist/models/update-reserve-details-dto.d.ts +29 -0
- package/dist/models/update-reserve-details-dto.js +20 -0
- 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 +4 -4
- 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 +4 -0
- package/models/patch-claim-request-dto.ts +18 -18
- package/models/update-claim-partner-role-response-class.ts +1 -1
- package/models/update-claim-request-dto.ts +15 -15
- package/models/update-payout-details-dto.ts +70 -0
- package/models/update-regress-details-dto.ts +61 -0
- package/models/update-regulation-item-request-dto-rest.ts +78 -0
- package/models/update-reserve-details-dto.ts +38 -0
- package/package.json +1 -1
|
@@ -20,7 +20,7 @@ export interface UpdateClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdateClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'title'
|
|
23
|
+
'title': string;
|
|
24
24
|
/**
|
|
25
25
|
* The current status of the claim.
|
|
26
26
|
* @type {string}
|
|
@@ -32,79 +32,79 @@ export interface UpdateClaimRequestDto {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UpdateClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'accountCode'
|
|
35
|
+
'accountCode': string;
|
|
36
36
|
/**
|
|
37
37
|
* Field for the policy number that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof UpdateClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'policyNumber'
|
|
41
|
+
'policyNumber': string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy code that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof UpdateClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyCode'
|
|
47
|
+
'policyCode': string;
|
|
48
48
|
/**
|
|
49
49
|
* Unique identifier referencing the product.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof UpdateClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productId'
|
|
53
|
+
'productId': number;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product version.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof UpdateClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productVersionId'
|
|
59
|
+
'productVersionId': number;
|
|
60
60
|
/**
|
|
61
61
|
* The name of the product.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof UpdateClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productName'
|
|
65
|
+
'productName': string;
|
|
66
66
|
/**
|
|
67
67
|
* The insured object identifier that the claim is made for.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof UpdateClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'insuredObjectId'
|
|
71
|
+
'insuredObjectId': number;
|
|
72
72
|
/**
|
|
73
73
|
* The policy object code that the claim is made for.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof UpdateClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'policyObjectCode'
|
|
77
|
+
'policyObjectCode': string;
|
|
78
78
|
/**
|
|
79
79
|
* The claim\'s description in 5000 characters.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof UpdateClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'description'
|
|
83
|
+
'description': string;
|
|
84
84
|
/**
|
|
85
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
86
|
* @type {string}
|
|
87
87
|
* @memberof UpdateClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'adjuster'
|
|
89
|
+
'adjuster': string;
|
|
90
90
|
/**
|
|
91
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
92
|
* @type {string}
|
|
93
93
|
* @memberof UpdateClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'reporter'
|
|
95
|
+
'reporter': string;
|
|
96
96
|
/**
|
|
97
97
|
* The contact email of the policyholder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof UpdateClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'contactEmail'
|
|
101
|
+
'contactEmail': string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact phone of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof UpdateClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactPhone'
|
|
107
|
+
'contactPhone': string;
|
|
108
108
|
/**
|
|
109
109
|
* The claim\'s damage date.
|
|
110
110
|
* @type {string}
|
|
@@ -122,5 +122,5 @@ export interface UpdateClaimRequestDto {
|
|
|
122
122
|
* @type {object}
|
|
123
123
|
* @memberof UpdateClaimRequestDto
|
|
124
124
|
*/
|
|
125
|
-
'customFields'
|
|
125
|
+
'customFields': object;
|
|
126
126
|
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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 UpdatePayoutDetailsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdatePayoutDetailsDto {
|
|
18
|
+
/**
|
|
19
|
+
* The type of the payout.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdatePayoutDetailsDto
|
|
22
|
+
*/
|
|
23
|
+
'payoutType'?: UpdatePayoutDetailsDtoPayoutTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* The status of the payout.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePayoutDetailsDto
|
|
28
|
+
*/
|
|
29
|
+
'payoutStatus'?: UpdatePayoutDetailsDtoPayoutStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Name of the recipient who would receive the payout.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdatePayoutDetailsDto
|
|
34
|
+
*/
|
|
35
|
+
'recipientName'?: string;
|
|
36
|
+
/**
|
|
37
|
+
* IBAN of the recipient
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdatePayoutDetailsDto
|
|
40
|
+
*/
|
|
41
|
+
'iban'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Purpose of the payout
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdatePayoutDetailsDto
|
|
46
|
+
*/
|
|
47
|
+
'payoutPurpose'?: string;
|
|
48
|
+
}
|
|
49
|
+
export declare const UpdatePayoutDetailsDtoPayoutTypeEnum: {
|
|
50
|
+
readonly Real: "REAL";
|
|
51
|
+
readonly Statistical: "STATISTICAL";
|
|
52
|
+
};
|
|
53
|
+
export type UpdatePayoutDetailsDtoPayoutTypeEnum = typeof UpdatePayoutDetailsDtoPayoutTypeEnum[keyof typeof UpdatePayoutDetailsDtoPayoutTypeEnum];
|
|
54
|
+
export declare const UpdatePayoutDetailsDtoPayoutStatusEnum: {
|
|
55
|
+
readonly Pending: "PENDING";
|
|
56
|
+
readonly InProgress: "IN_PROGRESS";
|
|
57
|
+
readonly Completed: "COMPLETED";
|
|
58
|
+
readonly Failed: "FAILED";
|
|
59
|
+
};
|
|
60
|
+
export type UpdatePayoutDetailsDtoPayoutStatusEnum = typeof UpdatePayoutDetailsDtoPayoutStatusEnum[keyof typeof UpdatePayoutDetailsDtoPayoutStatusEnum];
|
|
@@ -0,0 +1,26 @@
|
|
|
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 });
|
|
16
|
+
exports.UpdatePayoutDetailsDtoPayoutStatusEnum = exports.UpdatePayoutDetailsDtoPayoutTypeEnum = void 0;
|
|
17
|
+
exports.UpdatePayoutDetailsDtoPayoutTypeEnum = {
|
|
18
|
+
Real: 'REAL',
|
|
19
|
+
Statistical: 'STATISTICAL'
|
|
20
|
+
};
|
|
21
|
+
exports.UpdatePayoutDetailsDtoPayoutStatusEnum = {
|
|
22
|
+
Pending: 'PENDING',
|
|
23
|
+
InProgress: 'IN_PROGRESS',
|
|
24
|
+
Completed: 'COMPLETED',
|
|
25
|
+
Failed: 'FAILED'
|
|
26
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
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 UpdateRegressDetailsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateRegressDetailsDto {
|
|
18
|
+
/**
|
|
19
|
+
* The type of recovery.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateRegressDetailsDto
|
|
22
|
+
*/
|
|
23
|
+
'recoveryType'?: UpdateRegressDetailsDtoRecoveryTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* The status of recovery.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateRegressDetailsDto
|
|
28
|
+
*/
|
|
29
|
+
'recoveryStatus'?: UpdateRegressDetailsDtoRecoveryStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Optional helpful and relevant information provided by the third party can be stored in this field.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateRegressDetailsDto
|
|
34
|
+
*/
|
|
35
|
+
'thirdPartyInformation'?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare const UpdateRegressDetailsDtoRecoveryTypeEnum: {
|
|
38
|
+
readonly SubrogationInitiated: "SUBROGATION_INITIATED";
|
|
39
|
+
readonly PartialRecovery: "PARTIAL_RECOVERY";
|
|
40
|
+
readonly FullRecovery: "FULL_RECOVERY";
|
|
41
|
+
readonly Adjustment: "ADJUSTMENT";
|
|
42
|
+
};
|
|
43
|
+
export type UpdateRegressDetailsDtoRecoveryTypeEnum = typeof UpdateRegressDetailsDtoRecoveryTypeEnum[keyof typeof UpdateRegressDetailsDtoRecoveryTypeEnum];
|
|
44
|
+
export declare const UpdateRegressDetailsDtoRecoveryStatusEnum: {
|
|
45
|
+
readonly Pending: "PENDING";
|
|
46
|
+
readonly InProgress: "IN_PROGRESS";
|
|
47
|
+
readonly PartiallyRecovered: "PARTIALLY_RECOVERED";
|
|
48
|
+
readonly FullyRecovered: "FULLY_RECOVERED";
|
|
49
|
+
readonly Closed: "CLOSED";
|
|
50
|
+
};
|
|
51
|
+
export type UpdateRegressDetailsDtoRecoveryStatusEnum = typeof UpdateRegressDetailsDtoRecoveryStatusEnum[keyof typeof UpdateRegressDetailsDtoRecoveryStatusEnum];
|
|
@@ -0,0 +1,29 @@
|
|
|
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 });
|
|
16
|
+
exports.UpdateRegressDetailsDtoRecoveryStatusEnum = exports.UpdateRegressDetailsDtoRecoveryTypeEnum = void 0;
|
|
17
|
+
exports.UpdateRegressDetailsDtoRecoveryTypeEnum = {
|
|
18
|
+
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
19
|
+
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
20
|
+
FullRecovery: 'FULL_RECOVERY',
|
|
21
|
+
Adjustment: 'ADJUSTMENT'
|
|
22
|
+
};
|
|
23
|
+
exports.UpdateRegressDetailsDtoRecoveryStatusEnum = {
|
|
24
|
+
Pending: 'PENDING',
|
|
25
|
+
InProgress: 'IN_PROGRESS',
|
|
26
|
+
PartiallyRecovered: 'PARTIALLY_RECOVERED',
|
|
27
|
+
FullyRecovered: 'FULLY_RECOVERED',
|
|
28
|
+
Closed: 'CLOSED'
|
|
29
|
+
};
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { UpdatePayoutDetailsDto } from './update-payout-details-dto';
|
|
13
|
+
import { UpdateRegressDetailsDto } from './update-regress-details-dto';
|
|
14
|
+
import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface UpdateRegulationItemRequestDtoRest
|
|
19
|
+
*/
|
|
20
|
+
export interface UpdateRegulationItemRequestDtoRest {
|
|
21
|
+
/**
|
|
22
|
+
* Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress. When updating must be the same as the created regulation item type.
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
25
|
+
*/
|
|
26
|
+
'regulationItemType': UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum;
|
|
27
|
+
/**
|
|
28
|
+
* The amount for the regulation item. Must be a number with up to 2 decimal places. If not provided, the amount will not be updated.
|
|
29
|
+
* @type {number}
|
|
30
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
31
|
+
*/
|
|
32
|
+
'amount'?: number;
|
|
33
|
+
/**
|
|
34
|
+
* The currency for the regulation item. Must be a valid currency code.
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
37
|
+
*/
|
|
38
|
+
'currency'?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
|
|
41
|
+
* @type {string}
|
|
42
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
43
|
+
*/
|
|
44
|
+
'bookingDate'?: string;
|
|
45
|
+
/**
|
|
46
|
+
* The payout details for the regulation item. Must be a valid payout details object.At least an empty object is required when updating a payout item. But if the regulation item type is not payout, this field is not required.
|
|
47
|
+
* @type {UpdatePayoutDetailsDto}
|
|
48
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
49
|
+
*/
|
|
50
|
+
'payoutDetails'?: UpdatePayoutDetailsDto;
|
|
51
|
+
/**
|
|
52
|
+
* The reserve details for the regulation item. Must be a valid reserve details object.At least an empty object is required when updating a reserve item. But if the regulation item type is not reserve, this field is not required.
|
|
53
|
+
* @type {UpdateReserveDetailsDto}
|
|
54
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
55
|
+
*/
|
|
56
|
+
'reserveDetails'?: UpdateReserveDetailsDto;
|
|
57
|
+
/**
|
|
58
|
+
* The regress details for the regulation item. Must be a valid regress details object.At least an empty object is required when updating a regress item. But if the regulation item type is not regress, this field is not required.
|
|
59
|
+
* @type {UpdateRegressDetailsDto}
|
|
60
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
61
|
+
*/
|
|
62
|
+
'regressDetails'?: UpdateRegressDetailsDto;
|
|
63
|
+
}
|
|
64
|
+
export declare const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum: {
|
|
65
|
+
readonly Payout: "PAYOUT";
|
|
66
|
+
readonly Regress: "REGRESS";
|
|
67
|
+
readonly Reserve: "RESERVE";
|
|
68
|
+
};
|
|
69
|
+
export type UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = typeof UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum[keyof typeof UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum];
|
|
@@ -0,0 +1,21 @@
|
|
|
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 });
|
|
16
|
+
exports.UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = void 0;
|
|
17
|
+
exports.UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = {
|
|
18
|
+
Payout: 'PAYOUT',
|
|
19
|
+
Regress: 'REGRESS',
|
|
20
|
+
Reserve: 'RESERVE'
|
|
21
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
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 UpdateReserveDetailsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateReserveDetailsDto {
|
|
18
|
+
/**
|
|
19
|
+
* The type of the reserve.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateReserveDetailsDto
|
|
22
|
+
*/
|
|
23
|
+
'reserveType'?: UpdateReserveDetailsDtoReserveTypeEnum;
|
|
24
|
+
}
|
|
25
|
+
export declare const UpdateReserveDetailsDtoReserveTypeEnum: {
|
|
26
|
+
readonly Initial: "INITIAL";
|
|
27
|
+
readonly Adjustment: "ADJUSTMENT";
|
|
28
|
+
};
|
|
29
|
+
export type UpdateReserveDetailsDtoReserveTypeEnum = typeof UpdateReserveDetailsDtoReserveTypeEnum[keyof typeof UpdateReserveDetailsDtoReserveTypeEnum];
|
|
@@ -0,0 +1,20 @@
|
|
|
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 });
|
|
16
|
+
exports.UpdateReserveDetailsDtoReserveTypeEnum = void 0;
|
|
17
|
+
exports.UpdateReserveDetailsDtoReserveTypeEnum = {
|
|
18
|
+
Initial: 'INITIAL',
|
|
19
|
+
Adjustment: 'ADJUSTMENT'
|
|
20
|
+
};
|
|
@@ -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
|
|
|
@@ -30,7 +30,7 @@ export interface CreateRegulationItemRequestDto {
|
|
|
30
30
|
*/
|
|
31
31
|
'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
|
|
32
32
|
/**
|
|
33
|
-
* The amount
|
|
33
|
+
* The amount for the regulation item
|
|
34
34
|
* @type {number}
|
|
35
35
|
* @memberof CreateRegulationItemRequestDto
|
|
36
36
|
*/
|
|
@@ -54,19 +54,19 @@ export interface CreateRegulationItemRequestDto {
|
|
|
54
54
|
*/
|
|
55
55
|
'claimCode': string;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Details of the payout. Required if the regulation item type is payout.
|
|
58
58
|
* @type {PayoutDetailsDto}
|
|
59
59
|
* @memberof CreateRegulationItemRequestDto
|
|
60
60
|
*/
|
|
61
61
|
'payoutDetails'?: PayoutDetailsDto;
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
63
|
+
* Details of the reserve. Required if the regulation item type is reserve.
|
|
64
64
|
* @type {ReserveDetailsDto}
|
|
65
65
|
* @memberof CreateRegulationItemRequestDto
|
|
66
66
|
*/
|
|
67
67
|
'reserveDetails'?: ReserveDetailsDto;
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* Details of the regress. Required if the regulation item type is regress.
|
|
70
70
|
* @type {RegressDetailsDto}
|
|
71
71
|
* @memberof CreateRegulationItemRequestDto
|
|
72
72
|
*/
|
package/models/index.ts
CHANGED
|
@@ -41,5 +41,9 @@ export * from './update-claim-partner-role-request-dto';
|
|
|
41
41
|
export * from './update-claim-partner-role-response-class';
|
|
42
42
|
export * from './update-claim-request-dto';
|
|
43
43
|
export * from './update-claim-response-class';
|
|
44
|
+
export * from './update-payout-details-dto';
|
|
45
|
+
export * from './update-regress-details-dto';
|
|
46
|
+
export * from './update-regulation-item-request-dto-rest';
|
|
47
|
+
export * from './update-reserve-details-dto';
|
|
44
48
|
export * from './update-settlement-request-dto';
|
|
45
49
|
export * from './update-settlement-response-class';
|