@emilgroup/claim-sdk 1.17.2-beta.3 → 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 +0 -3
- package/README.md +2 -2
- package/api/claim-regulations-api.ts +46 -18
- package/api/health-check-api.ts +5 -5
- package/dist/api/claim-regulations-api.d.ts +29 -11
- package/dist/api/claim-regulations-api.js +24 -12
- 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 +0 -21
- 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 +0 -3
- package/dist/models/index.js +0 -3
- 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/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 +0 -21
- 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 +0 -3
- 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/package.json +1 -1
- 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/dist/models/reserve-details-dto.js +0 -20
- 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,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
|
|
|
@@ -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,60 +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
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface PayoutDetailsDto
|
|
16
|
-
*/
|
|
17
|
-
export interface PayoutDetailsDto {
|
|
18
|
-
/**
|
|
19
|
-
* The type of the payout.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof PayoutDetailsDto
|
|
22
|
-
*/
|
|
23
|
-
'payoutType': PayoutDetailsDtoPayoutTypeEnum;
|
|
24
|
-
/**
|
|
25
|
-
* The status of the payout.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof PayoutDetailsDto
|
|
28
|
-
*/
|
|
29
|
-
'payoutStatus': PayoutDetailsDtoPayoutStatusEnum;
|
|
30
|
-
/**
|
|
31
|
-
* Name of the recipient who would receive the payout.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof PayoutDetailsDto
|
|
34
|
-
*/
|
|
35
|
-
'recipientName': string;
|
|
36
|
-
/**
|
|
37
|
-
* IBAN of the recipient
|
|
38
|
-
* @type {string}
|
|
39
|
-
* @memberof PayoutDetailsDto
|
|
40
|
-
*/
|
|
41
|
-
'iban': string;
|
|
42
|
-
/**
|
|
43
|
-
* Purpose of the payout
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof PayoutDetailsDto
|
|
46
|
-
*/
|
|
47
|
-
'payoutPurpose'?: string;
|
|
48
|
-
}
|
|
49
|
-
export declare const PayoutDetailsDtoPayoutTypeEnum: {
|
|
50
|
-
readonly Real: "REAL";
|
|
51
|
-
readonly Statistical: "STATISTICAL";
|
|
52
|
-
};
|
|
53
|
-
export type PayoutDetailsDtoPayoutTypeEnum = typeof PayoutDetailsDtoPayoutTypeEnum[keyof typeof PayoutDetailsDtoPayoutTypeEnum];
|
|
54
|
-
export declare const PayoutDetailsDtoPayoutStatusEnum: {
|
|
55
|
-
readonly Pending: "PENDING";
|
|
56
|
-
readonly InProgress: "IN_PROGRESS";
|
|
57
|
-
readonly Completed: "COMPLETED";
|
|
58
|
-
readonly Failed: "FAILED";
|
|
59
|
-
};
|
|
60
|
-
export type PayoutDetailsDtoPayoutStatusEnum = typeof PayoutDetailsDtoPayoutStatusEnum[keyof typeof PayoutDetailsDtoPayoutStatusEnum];
|
|
@@ -1,26 +0,0 @@
|
|
|
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.PayoutDetailsDtoPayoutStatusEnum = exports.PayoutDetailsDtoPayoutTypeEnum = void 0;
|
|
17
|
-
exports.PayoutDetailsDtoPayoutTypeEnum = {
|
|
18
|
-
Real: 'REAL',
|
|
19
|
-
Statistical: 'STATISTICAL'
|
|
20
|
-
};
|
|
21
|
-
exports.PayoutDetailsDtoPayoutStatusEnum = {
|
|
22
|
-
Pending: 'PENDING',
|
|
23
|
-
InProgress: 'IN_PROGRESS',
|
|
24
|
-
Completed: 'COMPLETED',
|
|
25
|
-
Failed: 'FAILED'
|
|
26
|
-
};
|
|
@@ -1,51 +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
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface RegressDetailsDto
|
|
16
|
-
*/
|
|
17
|
-
export interface RegressDetailsDto {
|
|
18
|
-
/**
|
|
19
|
-
* The type of recovery.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof RegressDetailsDto
|
|
22
|
-
*/
|
|
23
|
-
'recoveryType': RegressDetailsDtoRecoveryTypeEnum;
|
|
24
|
-
/**
|
|
25
|
-
* The status of recovery.
|
|
26
|
-
* @type {string}
|
|
27
|
-
* @memberof RegressDetailsDto
|
|
28
|
-
*/
|
|
29
|
-
'recoveryStatus': RegressDetailsDtoRecoveryStatusEnum;
|
|
30
|
-
/**
|
|
31
|
-
* Optional helpful and relevant information provided by the third party can be stored in this field.
|
|
32
|
-
* @type {string}
|
|
33
|
-
* @memberof RegressDetailsDto
|
|
34
|
-
*/
|
|
35
|
-
'thirdPartyInformation'?: string;
|
|
36
|
-
}
|
|
37
|
-
export declare const RegressDetailsDtoRecoveryTypeEnum: {
|
|
38
|
-
readonly SubrogationInitiated: "SUBROGATION_INITIATED";
|
|
39
|
-
readonly PartialRecovery: "PARTIAL_RECOVERY";
|
|
40
|
-
readonly FullRecovery: "FULL_RECOVERY";
|
|
41
|
-
readonly Adjustment: "ADJUSTMENT";
|
|
42
|
-
};
|
|
43
|
-
export type RegressDetailsDtoRecoveryTypeEnum = typeof RegressDetailsDtoRecoveryTypeEnum[keyof typeof RegressDetailsDtoRecoveryTypeEnum];
|
|
44
|
-
export declare const RegressDetailsDtoRecoveryStatusEnum: {
|
|
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 RegressDetailsDtoRecoveryStatusEnum = typeof RegressDetailsDtoRecoveryStatusEnum[keyof typeof RegressDetailsDtoRecoveryStatusEnum];
|
|
@@ -1,29 +0,0 @@
|
|
|
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.RegressDetailsDtoRecoveryStatusEnum = exports.RegressDetailsDtoRecoveryTypeEnum = void 0;
|
|
17
|
-
exports.RegressDetailsDtoRecoveryTypeEnum = {
|
|
18
|
-
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
19
|
-
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
20
|
-
FullRecovery: 'FULL_RECOVERY',
|
|
21
|
-
Adjustment: 'ADJUSTMENT'
|
|
22
|
-
};
|
|
23
|
-
exports.RegressDetailsDtoRecoveryStatusEnum = {
|
|
24
|
-
Pending: 'PENDING',
|
|
25
|
-
InProgress: 'IN_PROGRESS',
|
|
26
|
-
PartiallyRecovered: 'PARTIALLY_RECOVERED',
|
|
27
|
-
FullyRecovered: 'FULLY_RECOVERED',
|
|
28
|
-
Closed: 'CLOSED'
|
|
29
|
-
};
|
|
@@ -1,29 +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
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface ReserveDetailsDto
|
|
16
|
-
*/
|
|
17
|
-
export interface ReserveDetailsDto {
|
|
18
|
-
/**
|
|
19
|
-
* The type of the reserve.
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof ReserveDetailsDto
|
|
22
|
-
*/
|
|
23
|
-
'reserveType': ReserveDetailsDtoReserveTypeEnum;
|
|
24
|
-
}
|
|
25
|
-
export declare const ReserveDetailsDtoReserveTypeEnum: {
|
|
26
|
-
readonly Initial: "INITIAL";
|
|
27
|
-
readonly Adjustment: "ADJUSTMENT";
|
|
28
|
-
};
|
|
29
|
-
export type ReserveDetailsDtoReserveTypeEnum = typeof ReserveDetailsDtoReserveTypeEnum[keyof typeof ReserveDetailsDtoReserveTypeEnum];
|
|
@@ -1,20 +0,0 @@
|
|
|
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.ReserveDetailsDtoReserveTypeEnum = void 0;
|
|
17
|
-
exports.ReserveDetailsDtoReserveTypeEnum = {
|
|
18
|
-
Initial: 'INITIAL',
|
|
19
|
-
Adjustment: 'ADJUSTMENT'
|
|
20
|
-
};
|
|
@@ -1,70 +0,0 @@
|
|
|
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 PayoutDetailsDto
|
|
21
|
-
*/
|
|
22
|
-
export interface PayoutDetailsDto {
|
|
23
|
-
/**
|
|
24
|
-
* The type of the payout.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof PayoutDetailsDto
|
|
27
|
-
*/
|
|
28
|
-
'payoutType': PayoutDetailsDtoPayoutTypeEnum;
|
|
29
|
-
/**
|
|
30
|
-
* The status of the payout.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof PayoutDetailsDto
|
|
33
|
-
*/
|
|
34
|
-
'payoutStatus': PayoutDetailsDtoPayoutStatusEnum;
|
|
35
|
-
/**
|
|
36
|
-
* Name of the recipient who would receive the payout.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof PayoutDetailsDto
|
|
39
|
-
*/
|
|
40
|
-
'recipientName': string;
|
|
41
|
-
/**
|
|
42
|
-
* IBAN of the recipient
|
|
43
|
-
* @type {string}
|
|
44
|
-
* @memberof PayoutDetailsDto
|
|
45
|
-
*/
|
|
46
|
-
'iban': string;
|
|
47
|
-
/**
|
|
48
|
-
* Purpose of the payout
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof PayoutDetailsDto
|
|
51
|
-
*/
|
|
52
|
-
'payoutPurpose'?: string;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export const PayoutDetailsDtoPayoutTypeEnum = {
|
|
56
|
-
Real: 'REAL',
|
|
57
|
-
Statistical: 'STATISTICAL'
|
|
58
|
-
} as const;
|
|
59
|
-
|
|
60
|
-
export type PayoutDetailsDtoPayoutTypeEnum = typeof PayoutDetailsDtoPayoutTypeEnum[keyof typeof PayoutDetailsDtoPayoutTypeEnum];
|
|
61
|
-
export const PayoutDetailsDtoPayoutStatusEnum = {
|
|
62
|
-
Pending: 'PENDING',
|
|
63
|
-
InProgress: 'IN_PROGRESS',
|
|
64
|
-
Completed: 'COMPLETED',
|
|
65
|
-
Failed: 'FAILED'
|
|
66
|
-
} as const;
|
|
67
|
-
|
|
68
|
-
export type PayoutDetailsDtoPayoutStatusEnum = typeof PayoutDetailsDtoPayoutStatusEnum[keyof typeof PayoutDetailsDtoPayoutStatusEnum];
|
|
69
|
-
|
|
70
|
-
|
|
@@ -1,61 +0,0 @@
|
|
|
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 RegressDetailsDto
|
|
21
|
-
*/
|
|
22
|
-
export interface RegressDetailsDto {
|
|
23
|
-
/**
|
|
24
|
-
* The type of recovery.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof RegressDetailsDto
|
|
27
|
-
*/
|
|
28
|
-
'recoveryType': RegressDetailsDtoRecoveryTypeEnum;
|
|
29
|
-
/**
|
|
30
|
-
* The status of recovery.
|
|
31
|
-
* @type {string}
|
|
32
|
-
* @memberof RegressDetailsDto
|
|
33
|
-
*/
|
|
34
|
-
'recoveryStatus': RegressDetailsDtoRecoveryStatusEnum;
|
|
35
|
-
/**
|
|
36
|
-
* Optional helpful and relevant information provided by the third party can be stored in this field.
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof RegressDetailsDto
|
|
39
|
-
*/
|
|
40
|
-
'thirdPartyInformation'?: string;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export const RegressDetailsDtoRecoveryTypeEnum = {
|
|
44
|
-
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
45
|
-
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
46
|
-
FullRecovery: 'FULL_RECOVERY',
|
|
47
|
-
Adjustment: 'ADJUSTMENT'
|
|
48
|
-
} as const;
|
|
49
|
-
|
|
50
|
-
export type RegressDetailsDtoRecoveryTypeEnum = typeof RegressDetailsDtoRecoveryTypeEnum[keyof typeof RegressDetailsDtoRecoveryTypeEnum];
|
|
51
|
-
export const RegressDetailsDtoRecoveryStatusEnum = {
|
|
52
|
-
Pending: 'PENDING',
|
|
53
|
-
InProgress: 'IN_PROGRESS',
|
|
54
|
-
PartiallyRecovered: 'PARTIALLY_RECOVERED',
|
|
55
|
-
FullyRecovered: 'FULLY_RECOVERED',
|
|
56
|
-
Closed: 'CLOSED'
|
|
57
|
-
} as const;
|
|
58
|
-
|
|
59
|
-
export type RegressDetailsDtoRecoveryStatusEnum = typeof RegressDetailsDtoRecoveryStatusEnum[keyof typeof RegressDetailsDtoRecoveryStatusEnum];
|
|
60
|
-
|
|
61
|
-
|
|
@@ -1,38 +0,0 @@
|
|
|
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 ReserveDetailsDto
|
|
21
|
-
*/
|
|
22
|
-
export interface ReserveDetailsDto {
|
|
23
|
-
/**
|
|
24
|
-
* The type of the reserve.
|
|
25
|
-
* @type {string}
|
|
26
|
-
* @memberof ReserveDetailsDto
|
|
27
|
-
*/
|
|
28
|
-
'reserveType': ReserveDetailsDtoReserveTypeEnum;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export const ReserveDetailsDtoReserveTypeEnum = {
|
|
32
|
-
Initial: 'INITIAL',
|
|
33
|
-
Adjustment: 'ADJUSTMENT'
|
|
34
|
-
} as const;
|
|
35
|
-
|
|
36
|
-
export type ReserveDetailsDtoReserveTypeEnum = typeof ReserveDetailsDtoReserveTypeEnum[keyof typeof ReserveDetailsDtoReserveTypeEnum];
|
|
37
|
-
|
|
38
|
-
|