@emilgroup/claim-sdk 1.19.1-beta.0 → 1.20.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.
@@ -61,7 +61,6 @@ 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
65
64
  models/update-regulation-item-request-dto-rest.ts
66
65
  models/update-reserve-details-dto.ts
67
66
  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@1.19.1-beta.0 --save
20
+ npm install @emilgroup/claim-sdk@1.20.0 --save
21
21
  ```
22
22
  or
23
23
  ```
24
- yarn add @emilgroup/claim-sdk@1.19.1-beta.0
24
+ yarn add @emilgroup/claim-sdk@1.20.0
25
25
  ```
26
26
 
27
27
  And then you can import `ClaimsApi`.
@@ -48,12 +48,6 @@ 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;
57
51
  /**
58
52
  * Details of the payout. Required if the regulation item type is payout.
59
53
  * @type {PayoutDetailsDto}
@@ -43,7 +43,6 @@ 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';
47
46
  export * from './update-regulation-item-request-dto-rest';
48
47
  export * from './update-reserve-details-dto';
49
48
  export * from './update-settlement-request-dto';
@@ -59,7 +59,6 @@ __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);
63
62
  __exportStar(require("./update-regulation-item-request-dto-rest"), exports);
64
63
  __exportStar(require("./update-reserve-details-dto"), exports);
65
64
  __exportStar(require("./update-settlement-request-dto"), exports);
@@ -45,12 +45,6 @@ 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;
54
48
  /**
55
49
  * Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
56
50
  * @type {object}
@@ -61,12 +61,6 @@ 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;
70
64
  /**
71
65
  * The PayoutDetailsClass response.
72
66
  * @type {PayoutDetailsClass}
@@ -45,12 +45,6 @@ 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;
54
48
  /**
55
49
  * Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
56
50
  * @type {object}
@@ -10,7 +10,6 @@
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';
14
13
  import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
15
14
  /**
16
15
  *
@@ -36,12 +35,6 @@ export interface UpdateRegulationItemRequestDtoRest {
36
35
  * @memberof UpdateRegulationItemRequestDtoRest
37
36
  */
38
37
  '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;
45
38
  /**
46
39
  * The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
47
40
  * @type {string}
@@ -62,10 +55,10 @@ export interface UpdateRegulationItemRequestDtoRest {
62
55
  'reserveDetails'?: UpdateReserveDetailsDto;
63
56
  /**
64
57
  * 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.
65
- * @type {UpdateRegressDetailsDto}
58
+ * @type {object}
66
59
  * @memberof UpdateRegulationItemRequestDtoRest
67
60
  */
68
- 'regressDetails'?: UpdateRegressDetailsDto;
61
+ 'regressDetails'?: object;
69
62
  }
70
63
  export declare const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum: {
71
64
  readonly Payout: "PAYOUT";
@@ -53,12 +53,6 @@ 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;
62
56
  /**
63
57
  * Details of the payout. Required if the regulation item type is payout.
64
58
  * @type {PayoutDetailsDto}
package/models/index.ts CHANGED
@@ -43,7 +43,6 @@ 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';
47
46
  export * from './update-regulation-item-request-dto-rest';
48
47
  export * from './update-reserve-details-dto';
49
48
  export * from './update-settlement-request-dto';
@@ -50,12 +50,6 @@ 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;
59
53
  /**
60
54
  * Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
61
55
  * @type {object}
@@ -66,12 +66,6 @@ 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;
75
69
  /**
76
70
  * The PayoutDetailsClass response.
77
71
  * @type {PayoutDetailsClass}
@@ -50,12 +50,6 @@ 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;
59
53
  /**
60
54
  * Product or tenant specific custom fields for the payout detials. Depends on the schema defined for payout-details entity using tenantservice api.
61
55
  * @type {object}
@@ -14,7 +14,6 @@
14
14
 
15
15
 
16
16
  import { UpdatePayoutDetailsDto } from './update-payout-details-dto';
17
- import { UpdateRegressDetailsDto } from './update-regress-details-dto';
18
17
  import { UpdateReserveDetailsDto } from './update-reserve-details-dto';
19
18
 
20
19
  /**
@@ -41,12 +40,6 @@ export interface UpdateRegulationItemRequestDtoRest {
41
40
  * @memberof UpdateRegulationItemRequestDtoRest
42
41
  */
43
42
  '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;
50
43
  /**
51
44
  * The booking date for the regulation item. Must be a valid ISO 8601 date. If not provided, the booking date will not be updated.
52
45
  * @type {string}
@@ -67,10 +60,10 @@ export interface UpdateRegulationItemRequestDtoRest {
67
60
  'reserveDetails'?: UpdateReserveDetailsDto;
68
61
  /**
69
62
  * 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.
70
- * @type {UpdateRegressDetailsDto}
63
+ * @type {object}
71
64
  * @memberof UpdateRegulationItemRequestDtoRest
72
65
  */
73
- 'regressDetails'?: UpdateRegressDetailsDto;
66
+ 'regressDetails'?: object;
74
67
  }
75
68
 
76
69
  export const UpdateRegulationItemRequestDtoRestRegulationItemTypeEnum = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/claim-sdk",
3
- "version": "1.19.1-beta.0",
3
+ "version": "1.20.0",
4
4
  "description": "OpenAPI client for @emilgroup/claim-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,51 +0,0 @@
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];
@@ -1,29 +0,0 @@
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
- };
@@ -1,61 +0,0 @@
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
-