@emilgroup/claim-sdk-node 1.11.0 → 1.17.1
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 +14 -0
- package/README.md +2 -2
- package/api/claim-partner-roles-api.ts +681 -0
- package/api/claim-partners-api.ts +574 -0
- package/api/claim-statuses-api.ts +24 -10
- package/api/claims-api.ts +24 -10
- package/api/settlements-api.ts +24 -10
- package/api.ts +4 -0
- package/dist/api/claim-partner-roles-api.d.ts +384 -0
- package/dist/api/claim-partner-roles-api.js +640 -0
- package/dist/api/claim-partners-api.d.ts +327 -0
- package/dist/api/claim-partners-api.js +547 -0
- package/dist/api/claim-statuses-api.d.ts +16 -7
- package/dist/api/claim-statuses-api.js +15 -9
- package/dist/api/claims-api.d.ts +16 -7
- package/dist/api/claims-api.js +15 -9
- package/dist/api/settlements-api.d.ts +16 -7
- package/dist/api/settlements-api.js +15 -9
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/models/claim-class.d.ts +13 -1
- package/dist/models/claim-partner-class.d.ts +61 -0
- package/dist/models/claim-partner-class.js +15 -0
- package/dist/models/claim-partner-role-class.d.ts +54 -0
- package/dist/models/claim-partner-role-class.js +15 -0
- package/dist/models/claim-status-class.d.ts +1 -1
- package/dist/models/create-claim-partner-request-dto.d.ts +36 -0
- package/dist/models/create-claim-partner-request-dto.js +15 -0
- package/dist/models/create-claim-partner-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-response-class.js +15 -0
- package/dist/models/create-claim-partner-role-request-dto.d.ts +30 -0
- package/dist/models/create-claim-partner-role-request-dto.js +15 -0
- package/dist/models/create-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/create-claim-partner-role-response-class.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +9 -3
- package/dist/models/create-claim-status-request-dto.d.ts +1 -1
- package/dist/models/get-claim-partner-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-response-class.js +15 -0
- package/dist/models/get-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/get-claim-partner-role-response-class.js +15 -0
- package/dist/models/index.d.ts +12 -0
- package/dist/models/index.js +12 -0
- package/dist/models/inline-response200.d.ts +6 -6
- package/dist/models/inline-response503.d.ts +6 -6
- package/dist/models/list-claim-partner-roles-response-class.d.ts +31 -0
- package/dist/models/list-claim-partner-roles-response-class.js +15 -0
- package/dist/models/list-claim-partners-response-class.d.ts +31 -0
- package/dist/models/list-claim-partners-response-class.js +15 -0
- package/dist/models/patch-claim-request-dto.d.ts +8 -2
- package/dist/models/update-claim-partner-role-request-dto.d.ts +36 -0
- package/dist/models/update-claim-partner-role-request-dto.js +15 -0
- package/dist/models/update-claim-partner-role-response-class.d.ts +25 -0
- package/dist/models/update-claim-partner-role-response-class.js +15 -0
- package/dist/models/update-claim-request-dto.d.ts +8 -2
- package/models/claim-class.ts +13 -1
- package/models/claim-partner-class.ts +67 -0
- package/models/claim-partner-role-class.ts +60 -0
- package/models/claim-status-class.ts +1 -1
- package/models/create-claim-partner-request-dto.ts +42 -0
- package/models/create-claim-partner-response-class.ts +31 -0
- package/models/create-claim-partner-role-request-dto.ts +36 -0
- package/models/create-claim-partner-role-response-class.ts +31 -0
- package/models/create-claim-request-dto.ts +9 -3
- package/models/create-claim-status-request-dto.ts +1 -1
- package/models/get-claim-partner-response-class.ts +31 -0
- package/models/get-claim-partner-role-response-class.ts +31 -0
- package/models/index.ts +12 -0
- package/models/inline-response200.ts +6 -6
- package/models/inline-response503.ts +6 -6
- package/models/list-claim-partner-roles-response-class.ts +37 -0
- package/models/list-claim-partners-response-class.ts +37 -0
- package/models/patch-claim-request-dto.ts +8 -2
- package/models/update-claim-partner-role-request-dto.ts +42 -0
- package/models/update-claim-partner-role-response-class.ts +31 -0
- package/models/update-claim-request-dto.ts +8 -2
- package/package.json +2 -2
|
@@ -0,0 +1,54 @@
|
|
|
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 ClaimPartnerRoleClass
|
|
16
|
+
*/
|
|
17
|
+
export interface ClaimPartnerRoleClass {
|
|
18
|
+
/**
|
|
19
|
+
* Internal unique identifier for the object. You should not have to use this, use code instead.
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ClaimPartnerRoleClass
|
|
22
|
+
*/
|
|
23
|
+
'id': number;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier for the object.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ClaimPartnerRoleClass
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Name of the claim partner role.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ClaimPartnerRoleClass
|
|
34
|
+
*/
|
|
35
|
+
'name': string;
|
|
36
|
+
/**
|
|
37
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ClaimPartnerRoleClass
|
|
40
|
+
*/
|
|
41
|
+
'productSlug'?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Time at which the object was created.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ClaimPartnerRoleClass
|
|
46
|
+
*/
|
|
47
|
+
'createdAt': string;
|
|
48
|
+
/**
|
|
49
|
+
* Time at which the object was updated.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ClaimPartnerRoleClass
|
|
52
|
+
*/
|
|
53
|
+
'updatedAt': string;
|
|
54
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -28,7 +28,7 @@ export interface ClaimStatusClass {
|
|
|
28
28
|
*/
|
|
29
29
|
'name': string;
|
|
30
30
|
/**
|
|
31
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
31
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ClaimStatusClass
|
|
34
34
|
*/
|
|
@@ -0,0 +1,36 @@
|
|
|
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 CreateClaimPartnerRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateClaimPartnerRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Unique identifier of the partner that this object belongs to.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'partnerCode': string;
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the claim partner role that this object belongs to.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'claimPartnerRoleCode': string;
|
|
30
|
+
/**
|
|
31
|
+
* Unique identifier of the claim that this object belongs to.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateClaimPartnerRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'claimCode': string;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ClaimPartnerClass } from './claim-partner-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateClaimPartnerResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateClaimPartnerResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner role
|
|
21
|
+
* @type {ClaimPartnerClass}
|
|
22
|
+
* @memberof CreateClaimPartnerResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartner'?: ClaimPartnerClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,30 @@
|
|
|
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 CreateClaimPartnerRoleRequestDto
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateClaimPartnerRoleRequestDto {
|
|
18
|
+
/**
|
|
19
|
+
* Name of the claim partner role.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateClaimPartnerRoleRequestDto
|
|
22
|
+
*/
|
|
23
|
+
'name': string;
|
|
24
|
+
/**
|
|
25
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateClaimPartnerRoleRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'productSlug'?: string;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateClaimPartnerRoleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateClaimPartnerRoleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner role
|
|
21
|
+
* @type {ClaimPartnerRoleClass}
|
|
22
|
+
* @memberof CreateClaimPartnerRoleResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -20,7 +20,7 @@ export interface CreateClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof CreateClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'claimNumber'
|
|
23
|
+
'claimNumber'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* Field to enter the claim title.
|
|
26
26
|
* @type {string}
|
|
@@ -75,6 +75,12 @@ export interface CreateClaimRequestDto {
|
|
|
75
75
|
* @memberof CreateClaimRequestDto
|
|
76
76
|
*/
|
|
77
77
|
'insuredObjectId'?: number;
|
|
78
|
+
/**
|
|
79
|
+
* The policy object code that the claim is made for.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateClaimRequestDto
|
|
82
|
+
*/
|
|
83
|
+
'policyObjectCode'?: string;
|
|
78
84
|
/**
|
|
79
85
|
* The claim\'s description in 5000 characters.
|
|
80
86
|
* @type {string}
|
|
@@ -82,13 +88,13 @@ export interface CreateClaimRequestDto {
|
|
|
82
88
|
*/
|
|
83
89
|
'description'?: string;
|
|
84
90
|
/**
|
|
85
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
91
|
+
* 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
92
|
* @type {string}
|
|
87
93
|
* @memberof CreateClaimRequestDto
|
|
88
94
|
*/
|
|
89
95
|
'adjuster'?: string;
|
|
90
96
|
/**
|
|
91
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
97
|
+
* 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
98
|
* @type {string}
|
|
93
99
|
* @memberof CreateClaimRequestDto
|
|
94
100
|
*/
|
|
@@ -22,7 +22,7 @@ export interface CreateClaimStatusRequestDto {
|
|
|
22
22
|
*/
|
|
23
23
|
'name': string;
|
|
24
24
|
/**
|
|
25
|
-
* A slug is a human-readable, unique identifier, used to identify a resource
|
|
25
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof CreateClaimStatusRequestDto
|
|
28
28
|
*/
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ClaimPartnerClass } from './claim-partner-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetClaimPartnerResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetClaimPartnerResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner
|
|
21
|
+
* @type {ClaimPartnerClass}
|
|
22
|
+
* @memberof GetClaimPartnerResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartner'?: ClaimPartnerClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,25 @@
|
|
|
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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetClaimPartnerRoleResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface GetClaimPartnerRoleResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* Claim partner role
|
|
21
|
+
* @type {ClaimPartnerRoleClass}
|
|
22
|
+
* @memberof GetClaimPartnerRoleResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
package/dist/models/index.d.ts
CHANGED
|
@@ -1,22 +1,34 @@
|
|
|
1
1
|
export * from './claim-class';
|
|
2
|
+
export * from './claim-partner-class';
|
|
3
|
+
export * from './claim-partner-role-class';
|
|
2
4
|
export * from './claim-status-class';
|
|
5
|
+
export * from './create-claim-partner-request-dto';
|
|
6
|
+
export * from './create-claim-partner-response-class';
|
|
7
|
+
export * from './create-claim-partner-role-request-dto';
|
|
8
|
+
export * from './create-claim-partner-role-response-class';
|
|
3
9
|
export * from './create-claim-request-dto';
|
|
4
10
|
export * from './create-claim-response-class';
|
|
5
11
|
export * from './create-claim-status-request-dto';
|
|
6
12
|
export * from './create-claim-status-response-class';
|
|
7
13
|
export * from './create-settlement-request-dto';
|
|
8
14
|
export * from './create-settlement-response-class';
|
|
15
|
+
export * from './get-claim-partner-response-class';
|
|
16
|
+
export * from './get-claim-partner-role-response-class';
|
|
9
17
|
export * from './get-claim-response-class';
|
|
10
18
|
export * from './get-claim-status-response-class';
|
|
11
19
|
export * from './get-settlement-response-class';
|
|
12
20
|
export * from './inline-response200';
|
|
13
21
|
export * from './inline-response503';
|
|
22
|
+
export * from './list-claim-partner-roles-response-class';
|
|
23
|
+
export * from './list-claim-partners-response-class';
|
|
14
24
|
export * from './list-claim-statuses-response-class';
|
|
15
25
|
export * from './list-claims-response-class';
|
|
16
26
|
export * from './list-settlements-response-class';
|
|
17
27
|
export * from './patch-claim-request-dto';
|
|
18
28
|
export * from './patch-claim-response-class';
|
|
19
29
|
export * from './settlement-class';
|
|
30
|
+
export * from './update-claim-partner-role-request-dto';
|
|
31
|
+
export * from './update-claim-partner-role-response-class';
|
|
20
32
|
export * from './update-claim-request-dto';
|
|
21
33
|
export * from './update-claim-response-class';
|
|
22
34
|
export * from './update-settlement-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -15,24 +15,36 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./claim-class"), exports);
|
|
18
|
+
__exportStar(require("./claim-partner-class"), exports);
|
|
19
|
+
__exportStar(require("./claim-partner-role-class"), exports);
|
|
18
20
|
__exportStar(require("./claim-status-class"), exports);
|
|
21
|
+
__exportStar(require("./create-claim-partner-request-dto"), exports);
|
|
22
|
+
__exportStar(require("./create-claim-partner-response-class"), exports);
|
|
23
|
+
__exportStar(require("./create-claim-partner-role-request-dto"), exports);
|
|
24
|
+
__exportStar(require("./create-claim-partner-role-response-class"), exports);
|
|
19
25
|
__exportStar(require("./create-claim-request-dto"), exports);
|
|
20
26
|
__exportStar(require("./create-claim-response-class"), exports);
|
|
21
27
|
__exportStar(require("./create-claim-status-request-dto"), exports);
|
|
22
28
|
__exportStar(require("./create-claim-status-response-class"), exports);
|
|
23
29
|
__exportStar(require("./create-settlement-request-dto"), exports);
|
|
24
30
|
__exportStar(require("./create-settlement-response-class"), exports);
|
|
31
|
+
__exportStar(require("./get-claim-partner-response-class"), exports);
|
|
32
|
+
__exportStar(require("./get-claim-partner-role-response-class"), exports);
|
|
25
33
|
__exportStar(require("./get-claim-response-class"), exports);
|
|
26
34
|
__exportStar(require("./get-claim-status-response-class"), exports);
|
|
27
35
|
__exportStar(require("./get-settlement-response-class"), exports);
|
|
28
36
|
__exportStar(require("./inline-response200"), exports);
|
|
29
37
|
__exportStar(require("./inline-response503"), exports);
|
|
38
|
+
__exportStar(require("./list-claim-partner-roles-response-class"), exports);
|
|
39
|
+
__exportStar(require("./list-claim-partners-response-class"), exports);
|
|
30
40
|
__exportStar(require("./list-claim-statuses-response-class"), exports);
|
|
31
41
|
__exportStar(require("./list-claims-response-class"), exports);
|
|
32
42
|
__exportStar(require("./list-settlements-response-class"), exports);
|
|
33
43
|
__exportStar(require("./patch-claim-request-dto"), exports);
|
|
34
44
|
__exportStar(require("./patch-claim-response-class"), exports);
|
|
35
45
|
__exportStar(require("./settlement-class"), exports);
|
|
46
|
+
__exportStar(require("./update-claim-partner-role-request-dto"), exports);
|
|
47
|
+
__exportStar(require("./update-claim-partner-role-response-class"), exports);
|
|
36
48
|
__exportStar(require("./update-claim-request-dto"), exports);
|
|
37
49
|
__exportStar(require("./update-claim-response-class"), exports);
|
|
38
50
|
__exportStar(require("./update-settlement-request-dto"), exports);
|
|
@@ -23,32 +23,32 @@ export interface InlineResponse200 {
|
|
|
23
23
|
'status'?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {{ [key: string]: { [key: string]:
|
|
26
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
27
27
|
* @memberof InlineResponse200
|
|
28
28
|
*/
|
|
29
29
|
'info'?: {
|
|
30
30
|
[key: string]: {
|
|
31
|
-
[key: string]:
|
|
31
|
+
[key: string]: object;
|
|
32
32
|
};
|
|
33
33
|
} | null;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {{ [key: string]: { [key: string]:
|
|
36
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
37
37
|
* @memberof InlineResponse200
|
|
38
38
|
*/
|
|
39
39
|
'error'?: {
|
|
40
40
|
[key: string]: {
|
|
41
|
-
[key: string]:
|
|
41
|
+
[key: string]: object;
|
|
42
42
|
};
|
|
43
43
|
} | null;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {{ [key: string]: { [key: string]:
|
|
46
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
47
47
|
* @memberof InlineResponse200
|
|
48
48
|
*/
|
|
49
49
|
'details'?: {
|
|
50
50
|
[key: string]: {
|
|
51
|
-
[key: string]:
|
|
51
|
+
[key: string]: object;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -23,32 +23,32 @@ export interface InlineResponse503 {
|
|
|
23
23
|
'status'?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {{ [key: string]: { [key: string]:
|
|
26
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
27
27
|
* @memberof InlineResponse503
|
|
28
28
|
*/
|
|
29
29
|
'info'?: {
|
|
30
30
|
[key: string]: {
|
|
31
|
-
[key: string]:
|
|
31
|
+
[key: string]: object;
|
|
32
32
|
};
|
|
33
33
|
} | null;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {{ [key: string]: { [key: string]:
|
|
36
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
37
37
|
* @memberof InlineResponse503
|
|
38
38
|
*/
|
|
39
39
|
'error'?: {
|
|
40
40
|
[key: string]: {
|
|
41
|
-
[key: string]:
|
|
41
|
+
[key: string]: object;
|
|
42
42
|
};
|
|
43
43
|
} | null;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {{ [key: string]: { [key: string]:
|
|
46
|
+
* @type {{ [key: string]: { [key: string]: object; }; }}
|
|
47
47
|
* @memberof InlineResponse503
|
|
48
48
|
*/
|
|
49
49
|
'details'?: {
|
|
50
50
|
[key: string]: {
|
|
51
|
-
[key: string]:
|
|
51
|
+
[key: string]: object;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
54
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListClaimPartnerRolesResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListClaimPartnerRolesResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of service events.
|
|
21
|
+
* @type {Array<ClaimPartnerRoleClass>}
|
|
22
|
+
* @memberof ListClaimPartnerRolesResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ClaimPartnerRoleClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListClaimPartnerRolesResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { ClaimPartnerClass } from './claim-partner-class';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ListClaimPartnersResponseClass
|
|
17
|
+
*/
|
|
18
|
+
export interface ListClaimPartnersResponseClass {
|
|
19
|
+
/**
|
|
20
|
+
* The list of claim partners.
|
|
21
|
+
* @type {Array<ClaimPartnerClass>}
|
|
22
|
+
* @memberof ListClaimPartnersResponseClass
|
|
23
|
+
*/
|
|
24
|
+
'items': Array<ClaimPartnerClass>;
|
|
25
|
+
/**
|
|
26
|
+
* Next page token.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ListClaimPartnersResponseClass
|
|
29
|
+
*/
|
|
30
|
+
'nextPageToken': string;
|
|
31
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 });
|