@emilgroup/claim-sdk 1.17.2-beta.1 → 1.17.2-beta.3
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 +12 -1
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +9 -9
- package/api/claim-regulations-api.ts +657 -0
- package/api/claim-statuses-api.ts +9 -9
- package/api/{default-api.ts → health-check-api.ts} +21 -17
- package/api.ts +4 -2
- package/base.ts +5 -1
- package/dist/api/claim-partner-roles-api.d.ts +9 -9
- package/dist/api/claim-partner-roles-api.js +3 -3
- package/dist/api/claim-regulations-api.d.ts +372 -0
- package/dist/api/claim-regulations-api.js +630 -0
- package/dist/api/claim-statuses-api.d.ts +9 -9
- package/dist/api/claim-statuses-api.js +3 -3
- package/dist/api/health-check-api.d.ts +70 -0
- package/dist/api/{default-api.js → health-check-api.js} +30 -26
- package/dist/api.d.ts +2 -1
- package/dist/api.js +2 -1
- package/dist/base.d.ts +1 -0
- package/dist/base.js +4 -1
- package/dist/models/create-regulation-item-request-dto.d.ts +89 -0
- package/dist/models/create-regulation-item-request-dto.js +34 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/dist/models/list-regulations-response-class.d.ts +31 -0
- package/dist/models/list-regulations-response-class.js +15 -0
- package/dist/models/payout-details-class.d.ts +90 -0
- package/dist/models/payout-details-class.js +26 -0
- package/dist/models/payout-details-dto.d.ts +60 -0
- package/dist/models/payout-details-dto.js +26 -0
- package/dist/models/regress-details-class.d.ts +81 -0
- package/dist/models/regress-details-class.js +29 -0
- package/dist/models/regress-details-dto.d.ts +51 -0
- package/dist/models/regress-details-dto.js +29 -0
- package/dist/models/regulation-item-class.d.ts +126 -0
- package/dist/models/regulation-item-class.js +34 -0
- package/dist/models/regulation-item-response-class.d.ts +25 -0
- package/dist/models/regulation-item-response-class.js +15 -0
- package/dist/models/reserve-details-class.d.ts +59 -0
- package/dist/models/reserve-details-class.js +20 -0
- package/dist/models/reserve-details-dto.d.ts +29 -0
- package/dist/models/reserve-details-dto.js +20 -0
- package/models/create-regulation-item-request-dto.ts +99 -0
- package/models/index.ts +10 -0
- package/models/list-regulations-response-class.ts +37 -0
- package/models/payout-details-class.ts +100 -0
- package/models/payout-details-dto.ts +70 -0
- package/models/regress-details-class.ts +91 -0
- package/models/regress-details-dto.ts +61 -0
- package/models/regulation-item-class.ts +136 -0
- package/models/regulation-item-response-class.ts +31 -0
- package/models/reserve-details-class.ts +68 -0
- package/models/reserve-details-dto.ts +38 -0
- package/package.json +1 -1
- package/dist/api/default-api.d.ts +0 -66
|
@@ -0,0 +1,99 @@
|
|
|
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 { PayoutDetailsDto } from './payout-details-dto';
|
|
17
|
+
import { RegressDetailsDto } from './regress-details-dto';
|
|
18
|
+
import { ReserveDetailsDto } from './reserve-details-dto';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreateRegulationItemRequestDto
|
|
24
|
+
*/
|
|
25
|
+
export interface CreateRegulationItemRequestDto {
|
|
26
|
+
/**
|
|
27
|
+
* Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreateRegulationItemRequestDto
|
|
30
|
+
*/
|
|
31
|
+
'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
|
|
32
|
+
/**
|
|
33
|
+
* The amount of the regulation item
|
|
34
|
+
* @type {number}
|
|
35
|
+
* @memberof CreateRegulationItemRequestDto
|
|
36
|
+
*/
|
|
37
|
+
'amount': number;
|
|
38
|
+
/**
|
|
39
|
+
* The currency of the regulation item
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateRegulationItemRequestDto
|
|
42
|
+
*/
|
|
43
|
+
'currency': CreateRegulationItemRequestDtoCurrencyEnum;
|
|
44
|
+
/**
|
|
45
|
+
* Booking date for the regulation item
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateRegulationItemRequestDto
|
|
48
|
+
*/
|
|
49
|
+
'bookingDate': string;
|
|
50
|
+
/**
|
|
51
|
+
* Unique identifier of the Claim that this object belongs to.
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateRegulationItemRequestDto
|
|
54
|
+
*/
|
|
55
|
+
'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
|
+
}
|
|
75
|
+
|
|
76
|
+
export const CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
|
|
77
|
+
Payout: 'PAYOUT',
|
|
78
|
+
Regress: 'REGRESS',
|
|
79
|
+
Reserve: 'RESERVE'
|
|
80
|
+
} as const;
|
|
81
|
+
|
|
82
|
+
export type CreateRegulationItemRequestDtoRegulationItemTypeEnum = typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum[keyof typeof CreateRegulationItemRequestDtoRegulationItemTypeEnum];
|
|
83
|
+
export const CreateRegulationItemRequestDtoCurrencyEnum = {
|
|
84
|
+
Eur: 'EUR',
|
|
85
|
+
Usd: 'USD',
|
|
86
|
+
Gbp: 'GBP',
|
|
87
|
+
Chf: 'CHF',
|
|
88
|
+
Pln: 'PLN',
|
|
89
|
+
Aud: 'AUD',
|
|
90
|
+
Cad: 'CAD',
|
|
91
|
+
Ddk: 'DDK',
|
|
92
|
+
Huf: 'HUF',
|
|
93
|
+
Nok: 'NOK',
|
|
94
|
+
Sek: 'SEK'
|
|
95
|
+
} as const;
|
|
96
|
+
|
|
97
|
+
export type CreateRegulationItemRequestDtoCurrencyEnum = typeof CreateRegulationItemRequestDtoCurrencyEnum[keyof typeof CreateRegulationItemRequestDtoCurrencyEnum];
|
|
98
|
+
|
|
99
|
+
|
package/models/index.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './create-claim-request-dto';
|
|
|
10
10
|
export * from './create-claim-response-class';
|
|
11
11
|
export * from './create-claim-status-request-dto';
|
|
12
12
|
export * from './create-claim-status-response-class';
|
|
13
|
+
export * from './create-regulation-item-request-dto';
|
|
13
14
|
export * from './create-settlement-request-dto';
|
|
14
15
|
export * from './create-settlement-response-class';
|
|
15
16
|
export * from './get-claim-partner-response-class';
|
|
@@ -23,9 +24,18 @@ export * from './list-claim-partner-roles-response-class';
|
|
|
23
24
|
export * from './list-claim-partners-response-class';
|
|
24
25
|
export * from './list-claim-statuses-response-class';
|
|
25
26
|
export * from './list-claims-response-class';
|
|
27
|
+
export * from './list-regulations-response-class';
|
|
26
28
|
export * from './list-settlements-response-class';
|
|
27
29
|
export * from './patch-claim-request-dto';
|
|
28
30
|
export * from './patch-claim-response-class';
|
|
31
|
+
export * from './payout-details-class';
|
|
32
|
+
export * from './payout-details-dto';
|
|
33
|
+
export * from './regress-details-class';
|
|
34
|
+
export * from './regress-details-dto';
|
|
35
|
+
export * from './regulation-item-class';
|
|
36
|
+
export * from './regulation-item-response-class';
|
|
37
|
+
export * from './reserve-details-class';
|
|
38
|
+
export * from './reserve-details-dto';
|
|
29
39
|
export * from './settlement-class';
|
|
30
40
|
export * from './update-claim-partner-role-request-dto';
|
|
31
41
|
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
|
+
|
|
@@ -0,0 +1,100 @@
|
|
|
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 PayoutDetailsClass
|
|
21
|
+
*/
|
|
22
|
+
export interface PayoutDetailsClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the object.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof PayoutDetailsClass
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier for the object.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof PayoutDetailsClass
|
|
33
|
+
*/
|
|
34
|
+
'regulationItemCode': string;
|
|
35
|
+
/**
|
|
36
|
+
* The type of the payout.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof PayoutDetailsClass
|
|
39
|
+
*/
|
|
40
|
+
'payoutType': PayoutDetailsClassPayoutTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
* The status of the payout.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof PayoutDetailsClass
|
|
45
|
+
*/
|
|
46
|
+
'payoutStatus': PayoutDetailsClassPayoutStatusEnum;
|
|
47
|
+
/**
|
|
48
|
+
* Name of the recipient who would receive the payout
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof PayoutDetailsClass
|
|
51
|
+
*/
|
|
52
|
+
'recipientName': string;
|
|
53
|
+
/**
|
|
54
|
+
* IBAN of the recipient
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PayoutDetailsClass
|
|
57
|
+
*/
|
|
58
|
+
'iban': string;
|
|
59
|
+
/**
|
|
60
|
+
* Purpose of the payout
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof PayoutDetailsClass
|
|
63
|
+
*/
|
|
64
|
+
'payoutPurpose': string;
|
|
65
|
+
/**
|
|
66
|
+
* The current version of the entity - the version is increased with every update. Initial version is 1
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof PayoutDetailsClass
|
|
69
|
+
*/
|
|
70
|
+
'version': number;
|
|
71
|
+
/**
|
|
72
|
+
* Time at which the object was created.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof PayoutDetailsClass
|
|
75
|
+
*/
|
|
76
|
+
'createdAt': string;
|
|
77
|
+
/**
|
|
78
|
+
* Time at which the object was updated.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PayoutDetailsClass
|
|
81
|
+
*/
|
|
82
|
+
'updatedAt': string;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export const PayoutDetailsClassPayoutTypeEnum = {
|
|
86
|
+
Real: 'REAL',
|
|
87
|
+
Statistical: 'STATISTICAL'
|
|
88
|
+
} as const;
|
|
89
|
+
|
|
90
|
+
export type PayoutDetailsClassPayoutTypeEnum = typeof PayoutDetailsClassPayoutTypeEnum[keyof typeof PayoutDetailsClassPayoutTypeEnum];
|
|
91
|
+
export const PayoutDetailsClassPayoutStatusEnum = {
|
|
92
|
+
Pending: 'PENDING',
|
|
93
|
+
InProgress: 'IN_PROGRESS',
|
|
94
|
+
Completed: 'COMPLETED',
|
|
95
|
+
Failed: 'FAILED'
|
|
96
|
+
} as const;
|
|
97
|
+
|
|
98
|
+
export type PayoutDetailsClassPayoutStatusEnum = typeof PayoutDetailsClassPayoutStatusEnum[keyof typeof PayoutDetailsClassPayoutStatusEnum];
|
|
99
|
+
|
|
100
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,91 @@
|
|
|
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 RegressDetailsClass
|
|
21
|
+
*/
|
|
22
|
+
export interface RegressDetailsClass {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the object.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof RegressDetailsClass
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
* Unique identifier of the Regulation Item that this object belongs to.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof RegressDetailsClass
|
|
33
|
+
*/
|
|
34
|
+
'regulationItemCode': string;
|
|
35
|
+
/**
|
|
36
|
+
* The type of recovery.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof RegressDetailsClass
|
|
39
|
+
*/
|
|
40
|
+
'recoveryType': RegressDetailsClassRecoveryTypeEnum;
|
|
41
|
+
/**
|
|
42
|
+
* The status of recovery.
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof RegressDetailsClass
|
|
45
|
+
*/
|
|
46
|
+
'recoveryStatus': RegressDetailsClassRecoveryStatusEnum;
|
|
47
|
+
/**
|
|
48
|
+
* Any information provided by the third party.
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof RegressDetailsClass
|
|
51
|
+
*/
|
|
52
|
+
'thirdPartyInformation': string;
|
|
53
|
+
/**
|
|
54
|
+
* The current version of the entity - the version is increased with every update. Initial version is 1
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof RegressDetailsClass
|
|
57
|
+
*/
|
|
58
|
+
'version': number;
|
|
59
|
+
/**
|
|
60
|
+
* Time at which the object was created.
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof RegressDetailsClass
|
|
63
|
+
*/
|
|
64
|
+
'createdAt': string;
|
|
65
|
+
/**
|
|
66
|
+
* Time at which the object was updated.
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof RegressDetailsClass
|
|
69
|
+
*/
|
|
70
|
+
'updatedAt': string;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export const RegressDetailsClassRecoveryTypeEnum = {
|
|
74
|
+
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
75
|
+
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
76
|
+
FullRecovery: 'FULL_RECOVERY',
|
|
77
|
+
Adjustment: 'ADJUSTMENT'
|
|
78
|
+
} as const;
|
|
79
|
+
|
|
80
|
+
export type RegressDetailsClassRecoveryTypeEnum = typeof RegressDetailsClassRecoveryTypeEnum[keyof typeof RegressDetailsClassRecoveryTypeEnum];
|
|
81
|
+
export const RegressDetailsClassRecoveryStatusEnum = {
|
|
82
|
+
Pending: 'PENDING',
|
|
83
|
+
InProgress: 'IN_PROGRESS',
|
|
84
|
+
PartiallyRecovered: 'PARTIALLY_RECOVERED',
|
|
85
|
+
FullyRecovered: 'FULLY_RECOVERED',
|
|
86
|
+
Closed: 'CLOSED'
|
|
87
|
+
} as const;
|
|
88
|
+
|
|
89
|
+
export type RegressDetailsClassRecoveryStatusEnum = typeof RegressDetailsClassRecoveryStatusEnum[keyof typeof RegressDetailsClassRecoveryStatusEnum];
|
|
90
|
+
|
|
91
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
|
|
@@ -0,0 +1,136 @@
|
|
|
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 { ClaimClass } from './claim-class';
|
|
17
|
+
import { PayoutDetailsClass } from './payout-details-class';
|
|
18
|
+
import { RegressDetailsClass } from './regress-details-class';
|
|
19
|
+
import { ReserveDetailsClass } from './reserve-details-class';
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @export
|
|
24
|
+
* @interface RegulationItemClass
|
|
25
|
+
*/
|
|
26
|
+
export interface RegulationItemClass {
|
|
27
|
+
/**
|
|
28
|
+
* Unique identifier for the object.
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof RegulationItemClass
|
|
31
|
+
*/
|
|
32
|
+
'code': string;
|
|
33
|
+
/**
|
|
34
|
+
* Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
|
|
35
|
+
* @type {string}
|
|
36
|
+
* @memberof RegulationItemClass
|
|
37
|
+
*/
|
|
38
|
+
'regulationItemType': RegulationItemClassRegulationItemTypeEnum;
|
|
39
|
+
/**
|
|
40
|
+
* The amount of the regulation item
|
|
41
|
+
* @type {number}
|
|
42
|
+
* @memberof RegulationItemClass
|
|
43
|
+
*/
|
|
44
|
+
'amount': number;
|
|
45
|
+
/**
|
|
46
|
+
* The currency of the regulation item
|
|
47
|
+
* @type {string}
|
|
48
|
+
* @memberof RegulationItemClass
|
|
49
|
+
*/
|
|
50
|
+
'currency': RegulationItemClassCurrencyEnum;
|
|
51
|
+
/**
|
|
52
|
+
* Booking date for the regulation item
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof RegulationItemClass
|
|
55
|
+
*/
|
|
56
|
+
'bookingDate': string;
|
|
57
|
+
/**
|
|
58
|
+
* Unique identifier of the Claim that this object belongs to.
|
|
59
|
+
* @type {string}
|
|
60
|
+
* @memberof RegulationItemClass
|
|
61
|
+
*/
|
|
62
|
+
'claimCode': string;
|
|
63
|
+
/**
|
|
64
|
+
* The ClaimClass response.
|
|
65
|
+
* @type {ClaimClass}
|
|
66
|
+
* @memberof RegulationItemClass
|
|
67
|
+
*/
|
|
68
|
+
'claim': ClaimClass;
|
|
69
|
+
/**
|
|
70
|
+
* The PayoutDetailsClass response.
|
|
71
|
+
* @type {PayoutDetailsClass}
|
|
72
|
+
* @memberof RegulationItemClass
|
|
73
|
+
*/
|
|
74
|
+
'payoutDetails': PayoutDetailsClass;
|
|
75
|
+
/**
|
|
76
|
+
* The ReserveDetailsClass response.
|
|
77
|
+
* @type {ReserveDetailsClass}
|
|
78
|
+
* @memberof RegulationItemClass
|
|
79
|
+
*/
|
|
80
|
+
'reserveDetails': ReserveDetailsClass;
|
|
81
|
+
/**
|
|
82
|
+
* The RegressDetailsClass response.
|
|
83
|
+
* @type {RegressDetailsClass}
|
|
84
|
+
* @memberof RegulationItemClass
|
|
85
|
+
*/
|
|
86
|
+
'regressDetails': RegressDetailsClass;
|
|
87
|
+
/**
|
|
88
|
+
* The system level identifier of the user who made the latest update
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof RegulationItemClass
|
|
91
|
+
*/
|
|
92
|
+
'updatedBy': string;
|
|
93
|
+
/**
|
|
94
|
+
* The version of the regulation item - the version is increased with every update. Initial version is 1
|
|
95
|
+
* @type {number}
|
|
96
|
+
* @memberof RegulationItemClass
|
|
97
|
+
*/
|
|
98
|
+
'version': number;
|
|
99
|
+
/**
|
|
100
|
+
* Time at which the object was created.
|
|
101
|
+
* @type {string}
|
|
102
|
+
* @memberof RegulationItemClass
|
|
103
|
+
*/
|
|
104
|
+
'createdAt': string;
|
|
105
|
+
/**
|
|
106
|
+
* Time at which the object was updated.
|
|
107
|
+
* @type {string}
|
|
108
|
+
* @memberof RegulationItemClass
|
|
109
|
+
*/
|
|
110
|
+
'updatedAt': string;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export const RegulationItemClassRegulationItemTypeEnum = {
|
|
114
|
+
Payout: 'PAYOUT',
|
|
115
|
+
Regress: 'REGRESS',
|
|
116
|
+
Reserve: 'RESERVE'
|
|
117
|
+
} as const;
|
|
118
|
+
|
|
119
|
+
export type RegulationItemClassRegulationItemTypeEnum = typeof RegulationItemClassRegulationItemTypeEnum[keyof typeof RegulationItemClassRegulationItemTypeEnum];
|
|
120
|
+
export const RegulationItemClassCurrencyEnum = {
|
|
121
|
+
Eur: 'EUR',
|
|
122
|
+
Usd: 'USD',
|
|
123
|
+
Gbp: 'GBP',
|
|
124
|
+
Chf: 'CHF',
|
|
125
|
+
Pln: 'PLN',
|
|
126
|
+
Aud: 'AUD',
|
|
127
|
+
Cad: 'CAD',
|
|
128
|
+
Ddk: 'DDK',
|
|
129
|
+
Huf: 'HUF',
|
|
130
|
+
Nok: 'NOK',
|
|
131
|
+
Sek: 'SEK'
|
|
132
|
+
} as const;
|
|
133
|
+
|
|
134
|
+
export type RegulationItemClassCurrencyEnum = typeof RegulationItemClassCurrencyEnum[keyof typeof RegulationItemClassCurrencyEnum];
|
|
135
|
+
|
|
136
|
+
|
|
@@ -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 { RegulationItemClass } from './regulation-item-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface RegulationItemResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface RegulationItemResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The regulation item response.
|
|
26
|
+
* @type {RegulationItemClass}
|
|
27
|
+
* @memberof RegulationItemResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'regulationItem': RegulationItemClass;
|
|
30
|
+
}
|
|
31
|
+
|