@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,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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListClaimPartnerRolesResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListClaimPartnerRolesResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of service events.
|
|
26
|
+
* @type {Array<ClaimPartnerRoleClass>}
|
|
27
|
+
* @memberof ListClaimPartnerRolesResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ClaimPartnerRoleClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListClaimPartnerRolesResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -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 { ClaimPartnerClass } from './claim-partner-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ListClaimPartnersResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface ListClaimPartnersResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* The list of claim partners.
|
|
26
|
+
* @type {Array<ClaimPartnerClass>}
|
|
27
|
+
* @memberof ListClaimPartnersResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'items': Array<ClaimPartnerClass>;
|
|
30
|
+
/**
|
|
31
|
+
* Next page token.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListClaimPartnersResponseClass
|
|
34
|
+
*/
|
|
35
|
+
'nextPageToken': string;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -74,6 +74,12 @@ export interface PatchClaimRequestDto {
|
|
|
74
74
|
* @memberof PatchClaimRequestDto
|
|
75
75
|
*/
|
|
76
76
|
'insuredObjectId'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* The policy object code that the claim is made for.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof PatchClaimRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'policyObjectCode'?: string;
|
|
77
83
|
/**
|
|
78
84
|
* The claim\'s description in 5000 characters.
|
|
79
85
|
* @type {string}
|
|
@@ -81,13 +87,13 @@ export interface PatchClaimRequestDto {
|
|
|
81
87
|
*/
|
|
82
88
|
'description'?: string;
|
|
83
89
|
/**
|
|
84
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
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.
|
|
85
91
|
* @type {string}
|
|
86
92
|
* @memberof PatchClaimRequestDto
|
|
87
93
|
*/
|
|
88
94
|
'adjuster'?: string;
|
|
89
95
|
/**
|
|
90
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
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.
|
|
91
97
|
* @type {string}
|
|
92
98
|
* @memberof PatchClaimRequestDto
|
|
93
99
|
*/
|
|
@@ -0,0 +1,42 @@
|
|
|
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 UpdateClaimPartnerRoleRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateClaimPartnerRoleRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Unique identifier for the object.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'code': string;
|
|
29
|
+
/**
|
|
30
|
+
* Name of the claim partner role.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'name': string;
|
|
35
|
+
/**
|
|
36
|
+
* A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateClaimPartnerRoleRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'productSlug'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateClaimPartnerRoleResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateClaimPartnerRoleResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Claim partner role
|
|
26
|
+
* @type {ClaimPartnerRoleClass}
|
|
27
|
+
* @memberof UpdateClaimPartnerRoleResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'claimPartnerRole'?: ClaimPartnerRoleClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -74,6 +74,12 @@ export interface UpdateClaimRequestDto {
|
|
|
74
74
|
* @memberof UpdateClaimRequestDto
|
|
75
75
|
*/
|
|
76
76
|
'insuredObjectId'?: number;
|
|
77
|
+
/**
|
|
78
|
+
* The policy object code that the claim is made for.
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof UpdateClaimRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'policyObjectCode'?: string;
|
|
77
83
|
/**
|
|
78
84
|
* The claim\'s description in 5000 characters.
|
|
79
85
|
* @type {string}
|
|
@@ -81,13 +87,13 @@ export interface UpdateClaimRequestDto {
|
|
|
81
87
|
*/
|
|
82
88
|
'description'?: string;
|
|
83
89
|
/**
|
|
84
|
-
* The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and
|
|
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.
|
|
85
91
|
* @type {string}
|
|
86
92
|
* @memberof UpdateClaimRequestDto
|
|
87
93
|
*/
|
|
88
94
|
'adjuster'?: string;
|
|
89
95
|
/**
|
|
90
|
-
* A claim reporter is responsible for submitting this claim to the platform.
|
|
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.
|
|
91
97
|
* @type {string}
|
|
92
98
|
* @memberof UpdateClaimRequestDto
|
|
93
99
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/claim-sdk-node",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/claim-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
27
|
"typescript": "^4.0"
|
|
28
28
|
}
|
|
29
29
|
}
|