@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
|
@@ -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,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
|
-
|