@emilgroup/claim-sdk-node 1.23.0 → 1.23.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/README.md +2 -2
- 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/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/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/get-claim-partner-response-class.ts +1 -1
- package/models/get-claim-partner-role-response-class.ts +1 -1
- 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/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/claim-sdk-node@1.23.
|
|
20
|
+
npm install @emilgroup/claim-sdk-node@1.23.1 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk-node@1.23.
|
|
24
|
+
yarn add @emilgroup/claim-sdk-node@1.23.1
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
|
@@ -20,97 +20,97 @@ 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}
|
|
27
27
|
* @memberof CreateClaimRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'title'
|
|
29
|
+
'title'?: string;
|
|
30
30
|
/**
|
|
31
31
|
* The current status of the claim.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof CreateClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'status'
|
|
35
|
+
'status'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Unique identifier of the account that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof CreateClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'accountCode'
|
|
41
|
+
'accountCode'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy number that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof CreateClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyNumber'
|
|
47
|
+
'policyNumber'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Field for the policy code that the claim belongs to.
|
|
50
50
|
* @type {string}
|
|
51
51
|
* @memberof CreateClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'policyCode'
|
|
53
|
+
'policyCode'?: string;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof CreateClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productId'
|
|
59
|
+
'productId'?: number;
|
|
60
60
|
/**
|
|
61
61
|
* Unique identifier referencing the product version.
|
|
62
62
|
* @type {number}
|
|
63
63
|
* @memberof CreateClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productVersionId'
|
|
65
|
+
'productVersionId'?: number;
|
|
66
66
|
/**
|
|
67
67
|
* The name of the product.
|
|
68
68
|
* @type {string}
|
|
69
69
|
* @memberof CreateClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'productName'
|
|
71
|
+
'productName'?: string;
|
|
72
72
|
/**
|
|
73
73
|
* The insured object identifier that the claim is made for.
|
|
74
74
|
* @type {number}
|
|
75
75
|
* @memberof CreateClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'insuredObjectId'
|
|
77
|
+
'insuredObjectId'?: number;
|
|
78
78
|
/**
|
|
79
79
|
* The policy object code that the claim is made for.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof CreateClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'policyObjectCode'
|
|
83
|
+
'policyObjectCode'?: string;
|
|
84
84
|
/**
|
|
85
85
|
* The claim\'s description in 5000 characters.
|
|
86
86
|
* @type {string}
|
|
87
87
|
* @memberof CreateClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'description'
|
|
89
|
+
'description'?: string;
|
|
90
90
|
/**
|
|
91
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.
|
|
92
92
|
* @type {string}
|
|
93
93
|
* @memberof CreateClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'adjuster'
|
|
95
|
+
'adjuster'?: string;
|
|
96
96
|
/**
|
|
97
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.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof CreateClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'reporter'
|
|
101
|
+
'reporter'?: string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact email of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof CreateClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactEmail'
|
|
107
|
+
'contactEmail'?: string;
|
|
108
108
|
/**
|
|
109
109
|
* The contact phone of the policyholder.
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof CreateClaimRequestDto
|
|
112
112
|
*/
|
|
113
|
-
'contactPhone'
|
|
113
|
+
'contactPhone'?: string;
|
|
114
114
|
/**
|
|
115
115
|
* The claim\'s damage date.
|
|
116
116
|
* @type {string}
|
|
@@ -128,5 +128,5 @@ export interface CreateClaimRequestDto {
|
|
|
128
128
|
* @type {object}
|
|
129
129
|
* @memberof CreateClaimRequestDto
|
|
130
130
|
*/
|
|
131
|
-
'customFields'
|
|
131
|
+
'customFields'?: object;
|
|
132
132
|
}
|
|
@@ -20,107 +20,107 @@ export interface PatchClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof PatchClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'title'
|
|
23
|
+
'title'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The current status of the claim.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof PatchClaimRequestDto
|
|
28
28
|
*/
|
|
29
|
-
'status'
|
|
29
|
+
'status'?: string;
|
|
30
30
|
/**
|
|
31
31
|
* Unique identifier of the account that the claim belongs to.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof PatchClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'accountCode'
|
|
35
|
+
'accountCode'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Field for the policy number that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof PatchClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'policyNumber'
|
|
41
|
+
'policyNumber'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy code that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof PatchClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyCode'
|
|
47
|
+
'policyCode'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Unique identifier referencing the product.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof PatchClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productId'
|
|
53
|
+
'productId'?: number;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product version.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof PatchClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productVersionId'
|
|
59
|
+
'productVersionId'?: number;
|
|
60
60
|
/**
|
|
61
61
|
* The name of the product.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof PatchClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productName'
|
|
65
|
+
'productName'?: string;
|
|
66
66
|
/**
|
|
67
67
|
* The insured object identifier that the claim is made for.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof PatchClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'insuredObjectId'
|
|
71
|
+
'insuredObjectId'?: number;
|
|
72
72
|
/**
|
|
73
73
|
* The policy object code that the claim is made for.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof PatchClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'policyObjectCode'
|
|
77
|
+
'policyObjectCode'?: string;
|
|
78
78
|
/**
|
|
79
79
|
* The claim\'s description in 5000 characters.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof PatchClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'description'
|
|
83
|
+
'description'?: string;
|
|
84
84
|
/**
|
|
85
85
|
* 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
86
|
* @type {string}
|
|
87
87
|
* @memberof PatchClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'adjuster'
|
|
89
|
+
'adjuster'?: string;
|
|
90
90
|
/**
|
|
91
91
|
* 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
92
|
* @type {string}
|
|
93
93
|
* @memberof PatchClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'reporter'
|
|
95
|
+
'reporter'?: string;
|
|
96
96
|
/**
|
|
97
97
|
* The contact email of the policyholder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof PatchClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'contactEmail'
|
|
101
|
+
'contactEmail'?: string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact phone of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof PatchClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactPhone'
|
|
107
|
+
'contactPhone'?: string;
|
|
108
108
|
/**
|
|
109
109
|
* The claim\'s damage date.
|
|
110
110
|
* @type {string}
|
|
111
111
|
* @memberof PatchClaimRequestDto
|
|
112
112
|
*/
|
|
113
|
-
'damageDate'
|
|
113
|
+
'damageDate'?: string;
|
|
114
114
|
/**
|
|
115
115
|
* The date on which the claim is reported.
|
|
116
116
|
* @type {string}
|
|
117
117
|
* @memberof PatchClaimRequestDto
|
|
118
118
|
*/
|
|
119
|
-
'notificationDate'
|
|
119
|
+
'notificationDate'?: string;
|
|
120
120
|
/**
|
|
121
121
|
* Tenant specific custom fields for claims (e.g. IMEI, Serial Number, etc.).
|
|
122
122
|
* @type {object}
|
|
123
123
|
* @memberof PatchClaimRequestDto
|
|
124
124
|
*/
|
|
125
|
-
'customFields'
|
|
125
|
+
'customFields'?: object;
|
|
126
126
|
}
|
|
@@ -20,7 +20,7 @@ export interface UpdateClaimRequestDto {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof UpdateClaimRequestDto
|
|
22
22
|
*/
|
|
23
|
-
'title'
|
|
23
|
+
'title'?: string;
|
|
24
24
|
/**
|
|
25
25
|
* The current status of the claim.
|
|
26
26
|
* @type {string}
|
|
@@ -32,79 +32,79 @@ export interface UpdateClaimRequestDto {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof UpdateClaimRequestDto
|
|
34
34
|
*/
|
|
35
|
-
'accountCode'
|
|
35
|
+
'accountCode'?: string;
|
|
36
36
|
/**
|
|
37
37
|
* Field for the policy number that the claim belongs to.
|
|
38
38
|
* @type {string}
|
|
39
39
|
* @memberof UpdateClaimRequestDto
|
|
40
40
|
*/
|
|
41
|
-
'policyNumber'
|
|
41
|
+
'policyNumber'?: string;
|
|
42
42
|
/**
|
|
43
43
|
* Field for the policy code that the claim belongs to.
|
|
44
44
|
* @type {string}
|
|
45
45
|
* @memberof UpdateClaimRequestDto
|
|
46
46
|
*/
|
|
47
|
-
'policyCode'
|
|
47
|
+
'policyCode'?: string;
|
|
48
48
|
/**
|
|
49
49
|
* Unique identifier referencing the product.
|
|
50
50
|
* @type {number}
|
|
51
51
|
* @memberof UpdateClaimRequestDto
|
|
52
52
|
*/
|
|
53
|
-
'productId'
|
|
53
|
+
'productId'?: number;
|
|
54
54
|
/**
|
|
55
55
|
* Unique identifier referencing the product version.
|
|
56
56
|
* @type {number}
|
|
57
57
|
* @memberof UpdateClaimRequestDto
|
|
58
58
|
*/
|
|
59
|
-
'productVersionId'
|
|
59
|
+
'productVersionId'?: number;
|
|
60
60
|
/**
|
|
61
61
|
* The name of the product.
|
|
62
62
|
* @type {string}
|
|
63
63
|
* @memberof UpdateClaimRequestDto
|
|
64
64
|
*/
|
|
65
|
-
'productName'
|
|
65
|
+
'productName'?: string;
|
|
66
66
|
/**
|
|
67
67
|
* The insured object identifier that the claim is made for.
|
|
68
68
|
* @type {number}
|
|
69
69
|
* @memberof UpdateClaimRequestDto
|
|
70
70
|
*/
|
|
71
|
-
'insuredObjectId'
|
|
71
|
+
'insuredObjectId'?: number;
|
|
72
72
|
/**
|
|
73
73
|
* The policy object code that the claim is made for.
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof UpdateClaimRequestDto
|
|
76
76
|
*/
|
|
77
|
-
'policyObjectCode'
|
|
77
|
+
'policyObjectCode'?: string;
|
|
78
78
|
/**
|
|
79
79
|
* The claim\'s description in 5000 characters.
|
|
80
80
|
* @type {string}
|
|
81
81
|
* @memberof UpdateClaimRequestDto
|
|
82
82
|
*/
|
|
83
|
-
'description'
|
|
83
|
+
'description'?: string;
|
|
84
84
|
/**
|
|
85
85
|
* 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
86
|
* @type {string}
|
|
87
87
|
* @memberof UpdateClaimRequestDto
|
|
88
88
|
*/
|
|
89
|
-
'adjuster'
|
|
89
|
+
'adjuster'?: string;
|
|
90
90
|
/**
|
|
91
91
|
* 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
92
|
* @type {string}
|
|
93
93
|
* @memberof UpdateClaimRequestDto
|
|
94
94
|
*/
|
|
95
|
-
'reporter'
|
|
95
|
+
'reporter'?: string;
|
|
96
96
|
/**
|
|
97
97
|
* The contact email of the policyholder.
|
|
98
98
|
* @type {string}
|
|
99
99
|
* @memberof UpdateClaimRequestDto
|
|
100
100
|
*/
|
|
101
|
-
'contactEmail'
|
|
101
|
+
'contactEmail'?: string;
|
|
102
102
|
/**
|
|
103
103
|
* The contact phone of the policyholder.
|
|
104
104
|
* @type {string}
|
|
105
105
|
* @memberof UpdateClaimRequestDto
|
|
106
106
|
*/
|
|
107
|
-
'contactPhone'
|
|
107
|
+
'contactPhone'?: string;
|
|
108
108
|
/**
|
|
109
109
|
* The claim\'s damage date.
|
|
110
110
|
* @type {string}
|
|
@@ -122,5 +122,5 @@ export interface UpdateClaimRequestDto {
|
|
|
122
122
|
* @type {object}
|
|
123
123
|
* @memberof UpdateClaimRequestDto
|
|
124
124
|
*/
|
|
125
|
-
'customFields'
|
|
125
|
+
'customFields'?: object;
|
|
126
126
|
}
|
|
@@ -25,97 +25,97 @@ export interface CreateClaimRequestDto {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof CreateClaimRequestDto
|
|
27
27
|
*/
|
|
28
|
-
'claimNumber'
|
|
28
|
+
'claimNumber'?: string;
|
|
29
29
|
/**
|
|
30
30
|
* Field to enter the claim title.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof CreateClaimRequestDto
|
|
33
33
|
*/
|
|
34
|
-
'title'
|
|
34
|
+
'title'?: string;
|
|
35
35
|
/**
|
|
36
36
|
* The current status of the claim.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof CreateClaimRequestDto
|
|
39
39
|
*/
|
|
40
|
-
'status'
|
|
40
|
+
'status'?: string;
|
|
41
41
|
/**
|
|
42
42
|
* Unique identifier of the account that the claim belongs to.
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof CreateClaimRequestDto
|
|
45
45
|
*/
|
|
46
|
-
'accountCode'
|
|
46
|
+
'accountCode'?: string;
|
|
47
47
|
/**
|
|
48
48
|
* Field for the policy number that the claim belongs to.
|
|
49
49
|
* @type {string}
|
|
50
50
|
* @memberof CreateClaimRequestDto
|
|
51
51
|
*/
|
|
52
|
-
'policyNumber'
|
|
52
|
+
'policyNumber'?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Field for the policy code that the claim belongs to.
|
|
55
55
|
* @type {string}
|
|
56
56
|
* @memberof CreateClaimRequestDto
|
|
57
57
|
*/
|
|
58
|
-
'policyCode'
|
|
58
|
+
'policyCode'?: string;
|
|
59
59
|
/**
|
|
60
60
|
* Unique identifier referencing the product.
|
|
61
61
|
* @type {number}
|
|
62
62
|
* @memberof CreateClaimRequestDto
|
|
63
63
|
*/
|
|
64
|
-
'productId'
|
|
64
|
+
'productId'?: number;
|
|
65
65
|
/**
|
|
66
66
|
* Unique identifier referencing the product version.
|
|
67
67
|
* @type {number}
|
|
68
68
|
* @memberof CreateClaimRequestDto
|
|
69
69
|
*/
|
|
70
|
-
'productVersionId'
|
|
70
|
+
'productVersionId'?: number;
|
|
71
71
|
/**
|
|
72
72
|
* The name of the product.
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof CreateClaimRequestDto
|
|
75
75
|
*/
|
|
76
|
-
'productName'
|
|
76
|
+
'productName'?: string;
|
|
77
77
|
/**
|
|
78
78
|
* The insured object identifier that the claim is made for.
|
|
79
79
|
* @type {number}
|
|
80
80
|
* @memberof CreateClaimRequestDto
|
|
81
81
|
*/
|
|
82
|
-
'insuredObjectId'
|
|
82
|
+
'insuredObjectId'?: number;
|
|
83
83
|
/**
|
|
84
84
|
* The policy object code that the claim is made for.
|
|
85
85
|
* @type {string}
|
|
86
86
|
* @memberof CreateClaimRequestDto
|
|
87
87
|
*/
|
|
88
|
-
'policyObjectCode'
|
|
88
|
+
'policyObjectCode'?: string;
|
|
89
89
|
/**
|
|
90
90
|
* The claim\'s description in 5000 characters.
|
|
91
91
|
* @type {string}
|
|
92
92
|
* @memberof CreateClaimRequestDto
|
|
93
93
|
*/
|
|
94
|
-
'description'
|
|
94
|
+
'description'?: string;
|
|
95
95
|
/**
|
|
96
96
|
* 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.
|
|
97
97
|
* @type {string}
|
|
98
98
|
* @memberof CreateClaimRequestDto
|
|
99
99
|
*/
|
|
100
|
-
'adjuster'
|
|
100
|
+
'adjuster'?: string;
|
|
101
101
|
/**
|
|
102
102
|
* A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
|
|
103
103
|
* @type {string}
|
|
104
104
|
* @memberof CreateClaimRequestDto
|
|
105
105
|
*/
|
|
106
|
-
'reporter'
|
|
106
|
+
'reporter'?: string;
|
|
107
107
|
/**
|
|
108
108
|
* The contact email of the policyholder.
|
|
109
109
|
* @type {string}
|
|
110
110
|
* @memberof CreateClaimRequestDto
|
|
111
111
|
*/
|
|
112
|
-
'contactEmail'
|
|
112
|
+
'contactEmail'?: string;
|
|
113
113
|
/**
|
|
114
114
|
* The contact phone of the policyholder.
|
|
115
115
|
* @type {string}
|
|
116
116
|
* @memberof CreateClaimRequestDto
|
|
117
117
|
*/
|
|
118
|
-
'contactPhone'
|
|
118
|
+
'contactPhone'?: string;
|
|
119
119
|
/**
|
|
120
120
|
* The claim\'s damage date.
|
|
121
121
|
* @type {string}
|
|
@@ -133,6 +133,6 @@ export interface CreateClaimRequestDto {
|
|
|
133
133
|
* @type {object}
|
|
134
134
|
* @memberof CreateClaimRequestDto
|
|
135
135
|
*/
|
|
136
|
-
'customFields'
|
|
136
|
+
'customFields'?: object;
|
|
137
137
|
}
|
|
138
138
|
|
|
@@ -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
|
|