@emilgroup/claim-sdk-node 1.19.0 → 1.19.1-beta.0
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 +1 -0
- package/README.md +2 -2
- package/base.ts +15 -7
- package/dist/base.d.ts +3 -1
- package/dist/base.js +27 -20
- package/dist/models/create-regulation-item-request-dto.d.ts +6 -0
- package/dist/models/index.d.ts +1 -0
- package/dist/models/index.js +1 -0
- package/dist/models/payout-details-dto.d.ts +6 -0
- package/dist/models/regulation-item-class.d.ts +6 -0
- package/dist/models/update-payout-details-dto.d.ts +6 -0
- package/dist/models/update-regress-details-dto.d.ts +51 -0
- package/dist/models/update-regress-details-dto.js +29 -0
- package/dist/models/update-regulation-item-request-dto-rest.d.ts +9 -2
- package/models/create-regulation-item-request-dto.ts +6 -0
- package/models/index.ts +1 -0
- package/models/payout-details-dto.ts +6 -0
- package/models/regulation-item-class.ts +6 -0
- package/models/update-payout-details-dto.ts +6 -0
- package/models/update-regress-details-dto.ts +61 -0
- package/models/update-regulation-item-request-dto-rest.ts +9 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -61,6 +61,7 @@ models/update-claim-partner-role-response-class.ts
|
|
|
61
61
|
models/update-claim-request-dto.ts
|
|
62
62
|
models/update-claim-response-class.ts
|
|
63
63
|
models/update-payout-details-dto.ts
|
|
64
|
+
models/update-regress-details-dto.ts
|
|
64
65
|
models/update-regulation-item-request-dto-rest.ts
|
|
65
66
|
models/update-reserve-details-dto.ts
|
|
66
67
|
models/update-settlement-request-dto.ts
|
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.19.0 --save
|
|
20
|
+
npm install @emilgroup/claim-sdk-node@1.19.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/claim-sdk-node@1.19.0
|
|
24
|
+
yarn add @emilgroup/claim-sdk-node@1.19.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `ClaimsApi`.
|
package/base.ts
CHANGED
|
@@ -79,6 +79,7 @@ export class BaseAPI {
|
|
|
79
79
|
protected configuration: Configuration;
|
|
80
80
|
private username?: string;
|
|
81
81
|
private password?: string;
|
|
82
|
+
private permissions: Array<string> = [];
|
|
82
83
|
|
|
83
84
|
constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {
|
|
84
85
|
if (configuration) {
|
|
@@ -149,6 +150,10 @@ export class BaseAPI {
|
|
|
149
150
|
this.configuration.basePath = env;
|
|
150
151
|
}
|
|
151
152
|
|
|
153
|
+
getPermissions(): Array<string> {
|
|
154
|
+
return this.permissions;
|
|
155
|
+
}
|
|
156
|
+
|
|
152
157
|
async authorize(username: string, password: string): Promise<void> {
|
|
153
158
|
const options: AxiosRequestConfig = {
|
|
154
159
|
method: 'POST',
|
|
@@ -163,20 +168,21 @@ export class BaseAPI {
|
|
|
163
168
|
|
|
164
169
|
const response = await globalAxios.request<LoginClass>(options);
|
|
165
170
|
|
|
166
|
-
const { data: { accessToken } } = response;
|
|
171
|
+
const { data: { accessToken, permissions } } = response;
|
|
167
172
|
this.configuration.username = username;
|
|
168
173
|
this.configuration.accessToken = `Bearer ${accessToken}`;
|
|
174
|
+
this.permissions = permissions;
|
|
169
175
|
|
|
170
176
|
const refreshToken = this.extractRefreshToken(response)
|
|
171
177
|
this.configuration.refreshToken = refreshToken;
|
|
172
178
|
}
|
|
173
179
|
|
|
174
|
-
async refreshTokenInternal(): Promise<
|
|
180
|
+
async refreshTokenInternal(): Promise<LoginClass> {
|
|
175
181
|
const { username, refreshToken } = this.configuration;
|
|
176
182
|
|
|
177
183
|
|
|
178
184
|
if (!username || !refreshToken) {
|
|
179
|
-
|
|
185
|
+
throw new Error('Failed to refresh token.');
|
|
180
186
|
}
|
|
181
187
|
|
|
182
188
|
const options: AxiosRequestConfig = {
|
|
@@ -190,9 +196,9 @@ export class BaseAPI {
|
|
|
190
196
|
withCredentials: true,
|
|
191
197
|
};
|
|
192
198
|
|
|
193
|
-
const
|
|
199
|
+
const response = await globalAxios.request<LoginClass>(options);
|
|
194
200
|
|
|
195
|
-
return
|
|
201
|
+
return response.data;
|
|
196
202
|
}
|
|
197
203
|
|
|
198
204
|
private extractRefreshToken(response: AxiosResponse): string {
|
|
@@ -221,8 +227,9 @@ export class BaseAPI {
|
|
|
221
227
|
if (err.response.status === 401 && !originalConfig._retry) {
|
|
222
228
|
originalConfig._retry = true;
|
|
223
229
|
try {
|
|
224
|
-
const tokenString = await this.refreshTokenInternal();
|
|
230
|
+
const { accessToken: tokenString, permissions } = await this.refreshTokenInternal();
|
|
225
231
|
const accessToken = `Bearer ${tokenString}`;
|
|
232
|
+
this.permissions = permissions;
|
|
226
233
|
|
|
227
234
|
originalConfig.headers['Authorization'] = `Bearer ${accessToken}`
|
|
228
235
|
|
|
@@ -246,8 +253,9 @@ export class BaseAPI {
|
|
|
246
253
|
){
|
|
247
254
|
_retry_count++;
|
|
248
255
|
try {
|
|
249
|
-
const tokenString = await this.refreshTokenInternal();
|
|
256
|
+
const { accessToken: tokenString, permissions } = await this.refreshTokenInternal();
|
|
250
257
|
const accessToken = `Bearer ${tokenString}`;
|
|
258
|
+
this.permissions = permissions;
|
|
251
259
|
|
|
252
260
|
_retry = true;
|
|
253
261
|
originalConfig.headers['Authorization'] = accessToken;
|
package/dist/base.d.ts
CHANGED
|
@@ -53,14 +53,16 @@ export declare class BaseAPI {
|
|
|
53
53
|
protected configuration: Configuration;
|
|
54
54
|
private username?;
|
|
55
55
|
private password?;
|
|
56
|
+
private permissions;
|
|
56
57
|
constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
|
|
57
58
|
initialize(env?: Environment): Promise<void>;
|
|
58
59
|
private loadCredentials;
|
|
59
60
|
private readConfigFile;
|
|
60
61
|
private readEnvVariables;
|
|
61
62
|
selectEnvironment(env: Environment): void;
|
|
63
|
+
getPermissions(): Array<string>;
|
|
62
64
|
authorize(username: string, password: string): Promise<void>;
|
|
63
|
-
refreshTokenInternal(): Promise<
|
|
65
|
+
refreshTokenInternal(): Promise<LoginClass>;
|
|
64
66
|
private extractRefreshToken;
|
|
65
67
|
getConfiguration(): Configuration;
|
|
66
68
|
private attachInterceptor;
|
package/dist/base.js
CHANGED
|
@@ -150,6 +150,7 @@ var BaseAPI = /** @class */ (function () {
|
|
|
150
150
|
if (axios === void 0) { axios = axios_1.default; }
|
|
151
151
|
this.basePath = basePath;
|
|
152
152
|
this.axios = axios;
|
|
153
|
+
this.permissions = [];
|
|
153
154
|
if (configuration) {
|
|
154
155
|
this.configuration = configuration;
|
|
155
156
|
this.basePath = configuration.basePath || this.basePath;
|
|
@@ -242,11 +243,14 @@ var BaseAPI = /** @class */ (function () {
|
|
|
242
243
|
BaseAPI.prototype.selectEnvironment = function (env) {
|
|
243
244
|
this.configuration.basePath = env;
|
|
244
245
|
};
|
|
246
|
+
BaseAPI.prototype.getPermissions = function () {
|
|
247
|
+
return this.permissions;
|
|
248
|
+
};
|
|
245
249
|
BaseAPI.prototype.authorize = function (username, password) {
|
|
246
250
|
return __awaiter(this, void 0, void 0, function () {
|
|
247
|
-
var options, response, accessToken, refreshToken;
|
|
248
|
-
return __generator(this, function (
|
|
249
|
-
switch (
|
|
251
|
+
var options, response, _a, accessToken, permissions, refreshToken;
|
|
252
|
+
return __generator(this, function (_b) {
|
|
253
|
+
switch (_b.label) {
|
|
250
254
|
case 0:
|
|
251
255
|
options = {
|
|
252
256
|
method: 'POST',
|
|
@@ -260,10 +264,11 @@ var BaseAPI = /** @class */ (function () {
|
|
|
260
264
|
};
|
|
261
265
|
return [4 /*yield*/, axios_1.default.request(options)];
|
|
262
266
|
case 1:
|
|
263
|
-
response =
|
|
264
|
-
|
|
267
|
+
response = _b.sent();
|
|
268
|
+
_a = response.data, accessToken = _a.accessToken, permissions = _a.permissions;
|
|
265
269
|
this.configuration.username = username;
|
|
266
270
|
this.configuration.accessToken = "Bearer ".concat(accessToken);
|
|
271
|
+
this.permissions = permissions;
|
|
267
272
|
refreshToken = this.extractRefreshToken(response);
|
|
268
273
|
this.configuration.refreshToken = refreshToken;
|
|
269
274
|
return [2 /*return*/];
|
|
@@ -273,13 +278,13 @@ var BaseAPI = /** @class */ (function () {
|
|
|
273
278
|
};
|
|
274
279
|
BaseAPI.prototype.refreshTokenInternal = function () {
|
|
275
280
|
return __awaiter(this, void 0, void 0, function () {
|
|
276
|
-
var _a, username, refreshToken, options,
|
|
281
|
+
var _a, username, refreshToken, options, response;
|
|
277
282
|
return __generator(this, function (_b) {
|
|
278
283
|
switch (_b.label) {
|
|
279
284
|
case 0:
|
|
280
285
|
_a = this.configuration, username = _a.username, refreshToken = _a.refreshToken;
|
|
281
286
|
if (!username || !refreshToken) {
|
|
282
|
-
|
|
287
|
+
throw new Error('Failed to refresh token.');
|
|
283
288
|
}
|
|
284
289
|
options = {
|
|
285
290
|
method: 'POST',
|
|
@@ -293,8 +298,8 @@ var BaseAPI = /** @class */ (function () {
|
|
|
293
298
|
};
|
|
294
299
|
return [4 /*yield*/, axios_1.default.request(options)];
|
|
295
300
|
case 1:
|
|
296
|
-
|
|
297
|
-
return [2 /*return*/,
|
|
301
|
+
response = _b.sent();
|
|
302
|
+
return [2 /*return*/, response.data];
|
|
298
303
|
}
|
|
299
304
|
});
|
|
300
305
|
});
|
|
@@ -314,26 +319,27 @@ var BaseAPI = /** @class */ (function () {
|
|
|
314
319
|
axios.interceptors.response.use(function (res) {
|
|
315
320
|
return res;
|
|
316
321
|
}, function (err) { return __awaiter(_this, void 0, void 0, function () {
|
|
317
|
-
var originalConfig, tokenString, accessToken, _error_1, tokenString, accessToken, _error_2;
|
|
318
|
-
return __generator(this, function (
|
|
319
|
-
switch (
|
|
322
|
+
var originalConfig, _a, tokenString, permissions, accessToken, _error_1, _b, tokenString, permissions, accessToken, _error_2;
|
|
323
|
+
return __generator(this, function (_c) {
|
|
324
|
+
switch (_c.label) {
|
|
320
325
|
case 0:
|
|
321
326
|
originalConfig = err.config;
|
|
322
327
|
if (!err.response) return [3 /*break*/, 5];
|
|
323
328
|
if (!(err.response.status === 401 && !originalConfig._retry)) return [3 /*break*/, 4];
|
|
324
329
|
originalConfig._retry = true;
|
|
325
|
-
|
|
330
|
+
_c.label = 1;
|
|
326
331
|
case 1:
|
|
327
|
-
|
|
332
|
+
_c.trys.push([1, 3, , 4]);
|
|
328
333
|
return [4 /*yield*/, this.refreshTokenInternal()];
|
|
329
334
|
case 2:
|
|
330
|
-
|
|
335
|
+
_a = _c.sent(), tokenString = _a.accessToken, permissions = _a.permissions;
|
|
331
336
|
accessToken = "Bearer ".concat(tokenString);
|
|
337
|
+
this.permissions = permissions;
|
|
332
338
|
originalConfig.headers['Authorization'] = "Bearer ".concat(accessToken);
|
|
333
339
|
this.configuration.accessToken = accessToken;
|
|
334
340
|
return [2 /*return*/, axios.request(originalConfig)];
|
|
335
341
|
case 3:
|
|
336
|
-
_error_1 =
|
|
342
|
+
_error_1 = _c.sent();
|
|
337
343
|
if (_error_1.response && _error_1.response.data) {
|
|
338
344
|
return [2 /*return*/, Promise.reject(_error_1.response.data)];
|
|
339
345
|
}
|
|
@@ -349,19 +355,20 @@ var BaseAPI = /** @class */ (function () {
|
|
|
349
355
|
&& originalConfig.headers.hasOwnProperty('Authorization')
|
|
350
356
|
&& _retry_count < 4)) return [3 /*break*/, 9];
|
|
351
357
|
_retry_count++;
|
|
352
|
-
|
|
358
|
+
_c.label = 6;
|
|
353
359
|
case 6:
|
|
354
|
-
|
|
360
|
+
_c.trys.push([6, 8, , 9]);
|
|
355
361
|
return [4 /*yield*/, this.refreshTokenInternal()];
|
|
356
362
|
case 7:
|
|
357
|
-
|
|
363
|
+
_b = _c.sent(), tokenString = _b.accessToken, permissions = _b.permissions;
|
|
358
364
|
accessToken = "Bearer ".concat(tokenString);
|
|
365
|
+
this.permissions = permissions;
|
|
359
366
|
_retry = true;
|
|
360
367
|
originalConfig.headers['Authorization'] = accessToken;
|
|
361
368
|
this.configuration.accessToken = accessToken;
|
|
362
369
|
return [2 /*return*/, axios.request(__assign({}, originalConfig))];
|
|
363
370
|
case 8:
|
|
364
|
-
_error_2 =
|
|
371
|
+
_error_2 = _c.sent();
|
|
365
372
|
if (_error_2.response && _error_2.response.data) {
|
|
366
373
|
return [2 /*return*/, Promise.reject(_error_2.response.data)];
|
|
367
374
|
}
|
|
@@ -48,6 +48,12 @@ export interface CreateRegulationItemRequestDto {
|
|
|
48
48
|
* @memberof CreateRegulationItemRequestDto
|
|
49
49
|
*/
|
|
50
50
|
'claimCode': string;
|
|
51
|
+
/**
|
|
52
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
53
|
+
* @type {object}
|
|
54
|
+
* @memberof CreateRegulationItemRequestDto
|
|
55
|
+
*/
|
|
56
|
+
'metadata'?: object;
|
|
51
57
|
/**
|
|
52
58
|
* Details of the payout. Required if the regulation item type is payout.
|
|
53
59
|
* @type {PayoutDetailsDto}
|
package/dist/models/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './update-claim-partner-role-response-class';
|
|
|
43
43
|
export * from './update-claim-request-dto';
|
|
44
44
|
export * from './update-claim-response-class';
|
|
45
45
|
export * from './update-payout-details-dto';
|
|
46
|
+
export * from './update-regress-details-dto';
|
|
46
47
|
export * from './update-regulation-item-request-dto-rest';
|
|
47
48
|
export * from './update-reserve-details-dto';
|
|
48
49
|
export * from './update-settlement-request-dto';
|
package/dist/models/index.js
CHANGED
|
@@ -59,6 +59,7 @@ __exportStar(require("./update-claim-partner-role-response-class"), exports);
|
|
|
59
59
|
__exportStar(require("./update-claim-request-dto"), exports);
|
|
60
60
|
__exportStar(require("./update-claim-response-class"), exports);
|
|
61
61
|
__exportStar(require("./update-payout-details-dto"), exports);
|
|
62
|
+
__exportStar(require("./update-regress-details-dto"), exports);
|
|
62
63
|
__exportStar(require("./update-regulation-item-request-dto-rest"), exports);
|
|
63
64
|
__exportStar(require("./update-reserve-details-dto"), exports);
|
|
64
65
|
__exportStar(require("./update-settlement-request-dto"), exports);
|
|
@@ -45,6 +45,12 @@ export interface PayoutDetailsDto {
|
|
|
45
45
|
* @memberof PayoutDetailsDto
|
|
46
46
|
*/
|
|
47
47
|
'payoutPurpose'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Date on which the payout took place or scheduled to take place.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PayoutDetailsDto
|
|
52
|
+
*/
|
|
53
|
+
'payoutDate'?: string;
|
|
48
54
|
/**
|
|
49
55
|
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
50
56
|
* @type {object}
|
|
@@ -61,6 +61,12 @@ export interface RegulationItemClass {
|
|
|
61
61
|
* @memberof RegulationItemClass
|
|
62
62
|
*/
|
|
63
63
|
'claim': ClaimClass;
|
|
64
|
+
/**
|
|
65
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
66
|
+
* @type {object}
|
|
67
|
+
* @memberof RegulationItemClass
|
|
68
|
+
*/
|
|
69
|
+
'metadata'?: object;
|
|
64
70
|
/**
|
|
65
71
|
* The PayoutDetailsClass response.
|
|
66
72
|
* @type {PayoutDetailsClass}
|
|
@@ -45,6 +45,12 @@ export interface UpdatePayoutDetailsDto {
|
|
|
45
45
|
* @memberof UpdatePayoutDetailsDto
|
|
46
46
|
*/
|
|
47
47
|
'payoutPurpose'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Date on which the payout took place or scheduled to take place.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof UpdatePayoutDetailsDto
|
|
52
|
+
*/
|
|
53
|
+
'payoutDate'?: string;
|
|
48
54
|
/**
|
|
49
55
|
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
50
56
|
* @type {object}
|
|
@@ -0,0 +1,51 @@
|
|
|
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 UpdateRegressDetailsDto
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateRegressDetailsDto {
|
|
18
|
+
/**
|
|
19
|
+
* The type of recovery.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateRegressDetailsDto
|
|
22
|
+
*/
|
|
23
|
+
'recoveryType'?: UpdateRegressDetailsDtoRecoveryTypeEnum;
|
|
24
|
+
/**
|
|
25
|
+
* The status of recovery.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateRegressDetailsDto
|
|
28
|
+
*/
|
|
29
|
+
'recoveryStatus'?: UpdateRegressDetailsDtoRecoveryStatusEnum;
|
|
30
|
+
/**
|
|
31
|
+
* Optional helpful and relevant information provided by the third party can be stored in this field.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UpdateRegressDetailsDto
|
|
34
|
+
*/
|
|
35
|
+
'thirdPartyInformation'?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare const UpdateRegressDetailsDtoRecoveryTypeEnum: {
|
|
38
|
+
readonly SubrogationInitiated: "SUBROGATION_INITIATED";
|
|
39
|
+
readonly PartialRecovery: "PARTIAL_RECOVERY";
|
|
40
|
+
readonly FullRecovery: "FULL_RECOVERY";
|
|
41
|
+
readonly Adjustment: "ADJUSTMENT";
|
|
42
|
+
};
|
|
43
|
+
export type UpdateRegressDetailsDtoRecoveryTypeEnum = typeof UpdateRegressDetailsDtoRecoveryTypeEnum[keyof typeof UpdateRegressDetailsDtoRecoveryTypeEnum];
|
|
44
|
+
export declare const UpdateRegressDetailsDtoRecoveryStatusEnum: {
|
|
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 UpdateRegressDetailsDtoRecoveryStatusEnum = typeof UpdateRegressDetailsDtoRecoveryStatusEnum[keyof typeof UpdateRegressDetailsDtoRecoveryStatusEnum];
|
|
@@ -0,0 +1,29 @@
|
|
|
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.UpdateRegressDetailsDtoRecoveryStatusEnum = exports.UpdateRegressDetailsDtoRecoveryTypeEnum = void 0;
|
|
17
|
+
exports.UpdateRegressDetailsDtoRecoveryTypeEnum = {
|
|
18
|
+
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
19
|
+
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
20
|
+
FullRecovery: 'FULL_RECOVERY',
|
|
21
|
+
Adjustment: 'ADJUSTMENT'
|
|
22
|
+
};
|
|
23
|
+
exports.UpdateRegressDetailsDtoRecoveryStatusEnum = {
|
|
24
|
+
Pending: 'PENDING',
|
|
25
|
+
InProgress: 'IN_PROGRESS',
|
|
26
|
+
PartiallyRecovered: 'PARTIALLY_RECOVERED',
|
|
27
|
+
FullyRecovered: 'FULLY_RECOVERED',
|
|
28
|
+
Closed: 'CLOSED'
|
|
29
|
+
};
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { UpdatePayoutDetailsDto } from './update-payout-details-dto';
|
|
13
|
+
import { UpdateRegressDetailsDto } from './update-regress-details-dto';
|
|
13
14
|
import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
@@ -35,6 +36,12 @@ export interface UpdateRegulationItemRequestDtoRest {
|
|
|
35
36
|
* @memberof UpdateRegulationItemRequestDtoRest
|
|
36
37
|
*/
|
|
37
38
|
'currency'?: string;
|
|
39
|
+
/**
|
|
40
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
41
|
+
* @type {object}
|
|
42
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
43
|
+
*/
|
|
44
|
+
'metadata'?: object;
|
|
38
45
|
/**
|
|
39
46
|
* The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
|
|
40
47
|
* @type {string}
|
|
@@ -55,10 +62,10 @@ export interface UpdateRegulationItemRequestDtoRest {
|
|
|
55
62
|
'reserveDetails'?: UpdateReserveDetailsDto;
|
|
56
63
|
/**
|
|
57
64
|
* The regress details for the regulation item. Must be a valid regress details object.At least an empty object is required when updating a regress item. But if the regulation item type is not regress, this field is not required.
|
|
58
|
-
* @type {
|
|
65
|
+
* @type {UpdateRegressDetailsDto}
|
|
59
66
|
* @memberof UpdateRegulationItemRequestDtoRest
|
|
60
67
|
*/
|
|
61
|
-
'regressDetails'?:
|
|
68
|
+
'regressDetails'?: UpdateRegressDetailsDto;
|
|
62
69
|
}
|
|
63
70
|
export declare const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum: {
|
|
64
71
|
readonly Payout: "PAYOUT";
|
|
@@ -53,6 +53,12 @@ export interface CreateRegulationItemRequestDto {
|
|
|
53
53
|
* @memberof CreateRegulationItemRequestDto
|
|
54
54
|
*/
|
|
55
55
|
'claimCode': string;
|
|
56
|
+
/**
|
|
57
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
58
|
+
* @type {object}
|
|
59
|
+
* @memberof CreateRegulationItemRequestDto
|
|
60
|
+
*/
|
|
61
|
+
'metadata'?: object;
|
|
56
62
|
/**
|
|
57
63
|
* Details of the payout. Required if the regulation item type is payout.
|
|
58
64
|
* @type {PayoutDetailsDto}
|
package/models/index.ts
CHANGED
|
@@ -43,6 +43,7 @@ export * from './update-claim-partner-role-response-class';
|
|
|
43
43
|
export * from './update-claim-request-dto';
|
|
44
44
|
export * from './update-claim-response-class';
|
|
45
45
|
export * from './update-payout-details-dto';
|
|
46
|
+
export * from './update-regress-details-dto';
|
|
46
47
|
export * from './update-regulation-item-request-dto-rest';
|
|
47
48
|
export * from './update-reserve-details-dto';
|
|
48
49
|
export * from './update-settlement-request-dto';
|
|
@@ -50,6 +50,12 @@ export interface PayoutDetailsDto {
|
|
|
50
50
|
* @memberof PayoutDetailsDto
|
|
51
51
|
*/
|
|
52
52
|
'payoutPurpose'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Date on which the payout took place or scheduled to take place.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof PayoutDetailsDto
|
|
57
|
+
*/
|
|
58
|
+
'payoutDate'?: string;
|
|
53
59
|
/**
|
|
54
60
|
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
55
61
|
* @type {object}
|
|
@@ -66,6 +66,12 @@ export interface RegulationItemClass {
|
|
|
66
66
|
* @memberof RegulationItemClass
|
|
67
67
|
*/
|
|
68
68
|
'claim': ClaimClass;
|
|
69
|
+
/**
|
|
70
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
71
|
+
* @type {object}
|
|
72
|
+
* @memberof RegulationItemClass
|
|
73
|
+
*/
|
|
74
|
+
'metadata'?: object;
|
|
69
75
|
/**
|
|
70
76
|
* The PayoutDetailsClass response.
|
|
71
77
|
* @type {PayoutDetailsClass}
|
|
@@ -50,6 +50,12 @@ export interface UpdatePayoutDetailsDto {
|
|
|
50
50
|
* @memberof UpdatePayoutDetailsDto
|
|
51
51
|
*/
|
|
52
52
|
'payoutPurpose'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Date on which the payout took place or scheduled to take place.
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof UpdatePayoutDetailsDto
|
|
57
|
+
*/
|
|
58
|
+
'payoutDate'?: string;
|
|
53
59
|
/**
|
|
54
60
|
* Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
|
|
55
61
|
* @type {object}
|
|
@@ -0,0 +1,61 @@
|
|
|
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 UpdateRegressDetailsDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateRegressDetailsDto {
|
|
23
|
+
/**
|
|
24
|
+
* The type of recovery.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateRegressDetailsDto
|
|
27
|
+
*/
|
|
28
|
+
'recoveryType'?: UpdateRegressDetailsDtoRecoveryTypeEnum;
|
|
29
|
+
/**
|
|
30
|
+
* The status of recovery.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateRegressDetailsDto
|
|
33
|
+
*/
|
|
34
|
+
'recoveryStatus'?: UpdateRegressDetailsDtoRecoveryStatusEnum;
|
|
35
|
+
/**
|
|
36
|
+
* Optional helpful and relevant information provided by the third party can be stored in this field.
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateRegressDetailsDto
|
|
39
|
+
*/
|
|
40
|
+
'thirdPartyInformation'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export const UpdateRegressDetailsDtoRecoveryTypeEnum = {
|
|
44
|
+
SubrogationInitiated: 'SUBROGATION_INITIATED',
|
|
45
|
+
PartialRecovery: 'PARTIAL_RECOVERY',
|
|
46
|
+
FullRecovery: 'FULL_RECOVERY',
|
|
47
|
+
Adjustment: 'ADJUSTMENT'
|
|
48
|
+
} as const;
|
|
49
|
+
|
|
50
|
+
export type UpdateRegressDetailsDtoRecoveryTypeEnum = typeof UpdateRegressDetailsDtoRecoveryTypeEnum[keyof typeof UpdateRegressDetailsDtoRecoveryTypeEnum];
|
|
51
|
+
export const UpdateRegressDetailsDtoRecoveryStatusEnum = {
|
|
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 UpdateRegressDetailsDtoRecoveryStatusEnum = typeof UpdateRegressDetailsDtoRecoveryStatusEnum[keyof typeof UpdateRegressDetailsDtoRecoveryStatusEnum];
|
|
60
|
+
|
|
61
|
+
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
import { UpdatePayoutDetailsDto } from './update-payout-details-dto';
|
|
17
|
+
import { UpdateRegressDetailsDto } from './update-regress-details-dto';
|
|
17
18
|
import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
|
|
18
19
|
|
|
19
20
|
/**
|
|
@@ -40,6 +41,12 @@ export interface UpdateRegulationItemRequestDtoRest {
|
|
|
40
41
|
* @memberof UpdateRegulationItemRequestDtoRest
|
|
41
42
|
*/
|
|
42
43
|
'currency'?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Optional metadata for the regulation item, can be used to store additional information that does not map to the other fields directly.
|
|
46
|
+
* @type {object}
|
|
47
|
+
* @memberof UpdateRegulationItemRequestDtoRest
|
|
48
|
+
*/
|
|
49
|
+
'metadata'?: object;
|
|
43
50
|
/**
|
|
44
51
|
* The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
|
|
45
52
|
* @type {string}
|
|
@@ -60,10 +67,10 @@ export interface UpdateRegulationItemRequestDtoRest {
|
|
|
60
67
|
'reserveDetails'?: UpdateReserveDetailsDto;
|
|
61
68
|
/**
|
|
62
69
|
* The regress details for the regulation item. Must be a valid regress details object.At least an empty object is required when updating a regress item. But if the regulation item type is not regress, this field is not required.
|
|
63
|
-
* @type {
|
|
70
|
+
* @type {UpdateRegressDetailsDto}
|
|
64
71
|
* @memberof UpdateRegulationItemRequestDtoRest
|
|
65
72
|
*/
|
|
66
|
-
'regressDetails'?:
|
|
73
|
+
'regressDetails'?: UpdateRegressDetailsDto;
|
|
67
74
|
}
|
|
68
75
|
|
|
69
76
|
export const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = {
|