@emilgroup/claim-sdk 1.41.1-beta.30 → 1.41.1-beta.31

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 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@1.41.1-beta.30 --save
20
+ npm install @emilgroup/claim-sdk@1.41.1-beta.31 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk@1.41.1-beta.30
24
+ yarn add @emilgroup/claim-sdk@1.41.1-beta.31
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -57,6 +57,12 @@ export interface BatchUpsertClaimPositionInputDto {
57
57
  * @memberof BatchUpsertClaimPositionInputDto
58
58
  */
59
59
  'manualAdjustmentAmount'?: number;
60
+ /**
61
+ * Clears the stored manual adjustment amount for an existing claim position.
62
+ * @type {boolean}
63
+ * @memberof BatchUpsertClaimPositionInputDto
64
+ */
65
+ 'clearManualAdjustmentAmount'?: boolean;
60
66
  /**
61
67
  * Custom fields of the claim position.
62
68
  * @type {object}
@@ -46,7 +46,7 @@ export interface ClaimAppliedDeductibleClass {
46
46
  */
47
47
  'scope': ClaimAppliedDeductibleClassScopeEnum;
48
48
  /**
49
- * Selected deductible amount.
49
+ * Selected deductible amount for fixed and percent deductible types.
50
50
  * @type {number}
51
51
  * @memberof ClaimAppliedDeductibleClass
52
52
  */
@@ -154,6 +154,18 @@ export interface ClaimClass {
154
154
  * @memberof ClaimClass
155
155
  */
156
156
  'tariffKey': string;
157
+ /**
158
+ * The claim type selected from the tariff categories.
159
+ * @type {string}
160
+ * @memberof ClaimClass
161
+ */
162
+ 'claimType'?: string;
163
+ /**
164
+ * The initial total cost of all claim positions when the claim first moves from reported to open.
165
+ * @type {number}
166
+ * @memberof ClaimClass
167
+ */
168
+ 'initialCost'?: number;
157
169
  /**
158
170
  * Applied deductibles for the claim.
159
171
  * @type {Array<ClaimAppliedDeductibleClass>}
@@ -135,4 +135,10 @@ export interface CreateClaimRequestDto {
135
135
  * @memberof CreateClaimRequestDto
136
136
  */
137
137
  'damageEndDate'?: string;
138
+ /**
139
+ * The claim type. Must match one of the categories in the selected tariff.
140
+ * @type {string}
141
+ * @memberof CreateClaimRequestDto
142
+ */
143
+ 'claimType'?: string;
138
144
  }
@@ -99,6 +99,12 @@ export interface PatchClaimRequestDto {
99
99
  * @memberof PatchClaimRequestDto
100
100
  */
101
101
  'customFields'?: object;
102
+ /**
103
+ * The claim type. Must match one of the categories in the selected tariff.
104
+ * @type {string}
105
+ * @memberof PatchClaimRequestDto
106
+ */
107
+ 'claimType'?: string;
102
108
  /**
103
109
  * The current status of the claim.
104
110
  * @type {string}
@@ -57,4 +57,10 @@ export interface UpdateClaimPositionRequestDto {
57
57
  * @memberof UpdateClaimPositionRequestDto
58
58
  */
59
59
  'manualAdjustmentAmount'?: number;
60
+ /**
61
+ * Clears the stored manual adjustment amount for this claim position.
62
+ * @type {boolean}
63
+ * @memberof UpdateClaimPositionRequestDto
64
+ */
65
+ 'clearManualAdjustmentAmount'?: boolean;
60
66
  }
@@ -99,6 +99,12 @@ export interface UpdateClaimRequestDto {
99
99
  * @memberof UpdateClaimRequestDto
100
100
  */
101
101
  'customFields'?: object;
102
+ /**
103
+ * The claim type. Must match one of the categories in the selected tariff.
104
+ * @type {string}
105
+ * @memberof UpdateClaimRequestDto
106
+ */
107
+ 'claimType'?: string;
102
108
  /**
103
109
  * The current status of the claim.
104
110
  * @type {string}
@@ -62,6 +62,12 @@ export interface BatchUpsertClaimPositionInputDto {
62
62
  * @memberof BatchUpsertClaimPositionInputDto
63
63
  */
64
64
  'manualAdjustmentAmount'?: number;
65
+ /**
66
+ * Clears the stored manual adjustment amount for an existing claim position.
67
+ * @type {boolean}
68
+ * @memberof BatchUpsertClaimPositionInputDto
69
+ */
70
+ 'clearManualAdjustmentAmount'?: boolean;
65
71
  /**
66
72
  * Custom fields of the claim position.
67
73
  * @type {object}
@@ -51,7 +51,7 @@ export interface ClaimAppliedDeductibleClass {
51
51
  */
52
52
  'scope': ClaimAppliedDeductibleClassScopeEnum;
53
53
  /**
54
- * Selected deductible amount.
54
+ * Selected deductible amount for fixed and percent deductible types.
55
55
  * @type {number}
56
56
  * @memberof ClaimAppliedDeductibleClass
57
57
  */
@@ -159,6 +159,18 @@ export interface ClaimClass {
159
159
  * @memberof ClaimClass
160
160
  */
161
161
  'tariffKey': string;
162
+ /**
163
+ * The claim type selected from the tariff categories.
164
+ * @type {string}
165
+ * @memberof ClaimClass
166
+ */
167
+ 'claimType'?: string;
168
+ /**
169
+ * The initial total cost of all claim positions when the claim first moves from reported to open.
170
+ * @type {number}
171
+ * @memberof ClaimClass
172
+ */
173
+ 'initialCost'?: number;
162
174
  /**
163
175
  * Applied deductibles for the claim.
164
176
  * @type {Array<ClaimAppliedDeductibleClass>}
@@ -140,5 +140,11 @@ export interface CreateClaimRequestDto {
140
140
  * @memberof CreateClaimRequestDto
141
141
  */
142
142
  'damageEndDate'?: string;
143
+ /**
144
+ * The claim type. Must match one of the categories in the selected tariff.
145
+ * @type {string}
146
+ * @memberof CreateClaimRequestDto
147
+ */
148
+ 'claimType'?: string;
143
149
  }
144
150
 
@@ -104,6 +104,12 @@ export interface PatchClaimRequestDto {
104
104
  * @memberof PatchClaimRequestDto
105
105
  */
106
106
  'customFields'?: object;
107
+ /**
108
+ * The claim type. Must match one of the categories in the selected tariff.
109
+ * @type {string}
110
+ * @memberof PatchClaimRequestDto
111
+ */
112
+ 'claimType'?: string;
107
113
  /**
108
114
  * The current status of the claim.
109
115
  * @type {string}
@@ -62,5 +62,11 @@ export interface UpdateClaimPositionRequestDto {
62
62
  * @memberof UpdateClaimPositionRequestDto
63
63
  */
64
64
  'manualAdjustmentAmount'?: number;
65
+ /**
66
+ * Clears the stored manual adjustment amount for this claim position.
67
+ * @type {boolean}
68
+ * @memberof UpdateClaimPositionRequestDto
69
+ */
70
+ 'clearManualAdjustmentAmount'?: boolean;
65
71
  }
66
72
 
@@ -104,6 +104,12 @@ export interface UpdateClaimRequestDto {
104
104
  * @memberof UpdateClaimRequestDto
105
105
  */
106
106
  'customFields'?: object;
107
+ /**
108
+ * The claim type. Must match one of the categories in the selected tariff.
109
+ * @type {string}
110
+ * @memberof UpdateClaimRequestDto
111
+ */
112
+ 'claimType'?: string;
107
113
  /**
108
114
  * The current status of the claim.
109
115
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/claim-sdk",
3
- "version": "1.41.1-beta.30",
3
+ "version": "1.41.1-beta.31",
4
4
  "description": "OpenAPI client for @emilgroup/claim-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [