@emilgroup/claim-sdk-node 1.39.0 → 1.39.1-beta.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.
Files changed (102) hide show
  1. package/.openapi-generator/FILES +15 -0
  2. package/README.md +2 -2
  3. package/api/claim-limit-usages-api.ts +648 -0
  4. package/api/claim-partner-roles-api.ts +627 -0
  5. package/api/claim-partners-api.ts +520 -0
  6. package/api/claim-positions-api.ts +1340 -0
  7. package/api/claim-regulations-api.ts +644 -3
  8. package/api/claim-statuses-api.ts +752 -5
  9. package/api/claims-api.ts +863 -11
  10. package/api/health-check-api.ts +66 -0
  11. package/api/settlements-api.ts +627 -0
  12. package/api.ts +4 -0
  13. package/dist/api/claim-limit-usages-api.d.ts +378 -0
  14. package/dist/api/claim-limit-usages-api.js +585 -0
  15. package/dist/api/claim-partner-roles-api.d.ts +358 -0
  16. package/dist/api/claim-partner-roles-api.js +525 -0
  17. package/dist/api/claim-partners-api.d.ts +299 -0
  18. package/dist/api/claim-partners-api.js +428 -0
  19. package/dist/api/claim-positions-api.d.ts +760 -0
  20. package/dist/api/claim-positions-api.js +1181 -0
  21. package/dist/api/claim-regulations-api.d.ts +367 -0
  22. package/dist/api/claim-regulations-api.js +531 -0
  23. package/dist/api/claim-statuses-api.d.ts +426 -0
  24. package/dist/api/claim-statuses-api.js +642 -14
  25. package/dist/api/claims-api.d.ts +493 -8
  26. package/dist/api/claims-api.js +734 -10
  27. package/dist/api/health-check-api.d.ts +33 -0
  28. package/dist/api/health-check-api.js +73 -0
  29. package/dist/api/settlements-api.d.ts +358 -0
  30. package/dist/api/settlements-api.js +525 -0
  31. package/dist/api.d.ts +2 -0
  32. package/dist/api.js +2 -0
  33. package/dist/models/calculation-step-result-class.d.ts +72 -0
  34. package/dist/models/calculation-step-result-class.js +21 -0
  35. package/dist/models/claim-applied-deductible-class.d.ts +95 -0
  36. package/dist/models/claim-applied-deductible-class.js +20 -0
  37. package/dist/models/claim-class.d.ts +25 -0
  38. package/dist/models/claim-limit-usage-class.d.ts +143 -0
  39. package/dist/models/claim-limit-usage-class.js +30 -0
  40. package/dist/models/claim-limit-usage-result-class.d.ts +48 -0
  41. package/dist/models/claim-limit-usage-result-class.js +21 -0
  42. package/dist/models/claim-position-class.d.ts +151 -0
  43. package/dist/models/claim-position-class.js +20 -0
  44. package/dist/models/create-claim-position-request-dto.d.ts +66 -0
  45. package/dist/models/create-claim-position-request-dto.js +15 -0
  46. package/dist/models/create-claim-position-response-class.d.ts +25 -0
  47. package/dist/models/create-claim-position-response-class.js +15 -0
  48. package/dist/models/create-claim-request-dto.d.ts +6 -0
  49. package/dist/models/create-regulation-item-request-dto.d.ts +26 -3
  50. package/dist/models/create-regulation-item-request-dto.js +5 -1
  51. package/dist/models/get-claim-limit-usage-response-class.d.ts +25 -0
  52. package/dist/models/get-claim-limit-usage-response-class.js +15 -0
  53. package/dist/models/get-claim-position-response-class.d.ts +25 -0
  54. package/dist/models/get-claim-position-response-class.js +15 -0
  55. package/dist/models/index.d.ts +13 -0
  56. package/dist/models/index.js +13 -0
  57. package/dist/models/list-claim-limit-usages-response-class.d.ts +43 -0
  58. package/dist/models/list-claim-limit-usages-response-class.js +15 -0
  59. package/dist/models/list-claim-partner-roles-response-class.d.ts +12 -0
  60. package/dist/models/list-claim-partners-response-class.d.ts +12 -0
  61. package/dist/models/list-claim-positions-response-class.d.ts +43 -0
  62. package/dist/models/list-claim-positions-response-class.js +15 -0
  63. package/dist/models/list-claim-statuses-response-class.d.ts +13 -1
  64. package/dist/models/list-claims-response-class.d.ts +12 -0
  65. package/dist/models/list-regulations-response-class.d.ts +12 -0
  66. package/dist/models/patch-claim-request-dto.d.ts +39 -33
  67. package/dist/models/regulation-item-class.d.ts +35 -0
  68. package/dist/models/regulation-item-class.js +10 -1
  69. package/dist/models/update-claim-position-request-dto.d.ts +60 -0
  70. package/dist/models/update-claim-position-request-dto.js +15 -0
  71. package/dist/models/update-claim-position-response-class.d.ts +25 -0
  72. package/dist/models/update-claim-position-response-class.js +15 -0
  73. package/dist/models/update-claim-request-dto.d.ts +39 -33
  74. package/dist/models/update-regulation-item-request-dto.d.ts +12 -0
  75. package/dist/models/update-regulation-item-request-dto.js +6 -1
  76. package/models/calculation-step-result-class.ts +81 -0
  77. package/models/claim-applied-deductible-class.ts +104 -0
  78. package/models/claim-class.ts +25 -0
  79. package/models/claim-limit-usage-class.ts +154 -0
  80. package/models/claim-limit-usage-result-class.ts +57 -0
  81. package/models/claim-position-class.ts +160 -0
  82. package/models/create-claim-position-request-dto.ts +72 -0
  83. package/models/create-claim-position-response-class.ts +31 -0
  84. package/models/create-claim-request-dto.ts +6 -0
  85. package/models/create-regulation-item-request-dto.ts +27 -3
  86. package/models/get-claim-limit-usage-response-class.ts +31 -0
  87. package/models/get-claim-position-response-class.ts +31 -0
  88. package/models/index.ts +13 -0
  89. package/models/list-claim-limit-usages-response-class.ts +49 -0
  90. package/models/list-claim-partner-roles-response-class.ts +12 -0
  91. package/models/list-claim-partners-response-class.ts +12 -0
  92. package/models/list-claim-positions-response-class.ts +49 -0
  93. package/models/list-claim-statuses-response-class.ts +13 -1
  94. package/models/list-claims-response-class.ts +12 -0
  95. package/models/list-regulations-response-class.ts +12 -0
  96. package/models/patch-claim-request-dto.ts +39 -33
  97. package/models/regulation-item-class.ts +37 -0
  98. package/models/update-claim-position-request-dto.ts +66 -0
  99. package/models/update-claim-position-response-class.ts +31 -0
  100. package/models/update-claim-request-dto.ts +39 -33
  101. package/models/update-regulation-item-request-dto.ts +13 -0
  102. package/package.json +1 -1
@@ -0,0 +1,20 @@
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.ClaimPositionClassStatusEnum = void 0;
17
+ exports.ClaimPositionClassStatusEnum = {
18
+ Open: 'OPEN',
19
+ Closed: 'CLOSED'
20
+ };
@@ -0,0 +1,66 @@
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 CreateClaimPositionRequestDto
16
+ */
17
+ export interface CreateClaimPositionRequestDto {
18
+ /**
19
+ * Code of the claim this position belongs to (e.g. cla_xxxxx).
20
+ * @type {string}
21
+ * @memberof CreateClaimPositionRequestDto
22
+ */
23
+ 'claimCode': string;
24
+ /**
25
+ * Category or type of the claim position (e.g. damage type, coverage area, or product category).
26
+ * @type {string}
27
+ * @memberof CreateClaimPositionRequestDto
28
+ */
29
+ 'category'?: string;
30
+ /**
31
+ * Human-readable description of the claim position (what is being claimed or covered).
32
+ * @type {string}
33
+ * @memberof CreateClaimPositionRequestDto
34
+ */
35
+ 'description'?: string;
36
+ /**
37
+ * Monetary cost or amount associated with this claim position.
38
+ * @type {number}
39
+ * @memberof CreateClaimPositionRequestDto
40
+ */
41
+ 'cost': number;
42
+ /**
43
+ * Optional key-value object for tenant- or product-specific data. Merged with existing customFields.
44
+ * @type {object}
45
+ * @memberof CreateClaimPositionRequestDto
46
+ */
47
+ 'customFields'?: object;
48
+ /**
49
+ * Display order (lower = first). Used for reordering claim positions in lists.
50
+ * @type {number}
51
+ * @memberof CreateClaimPositionRequestDto
52
+ */
53
+ 'order': number;
54
+ /**
55
+ * The date on which the procedure was performed.
56
+ * @type {string}
57
+ * @memberof CreateClaimPositionRequestDto
58
+ */
59
+ 'procedureDate'?: string;
60
+ /**
61
+ * Manual adjustment amount for this claim position.
62
+ * @type {number}
63
+ * @memberof CreateClaimPositionRequestDto
64
+ */
65
+ 'manualAdjustmentAmount'?: number;
66
+ }
@@ -0,0 +1,15 @@
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 });
@@ -0,0 +1,25 @@
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
+ import { ClaimPositionClass } from './claim-position-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface CreateClaimPositionResponseClass
17
+ */
18
+ export interface CreateClaimPositionResponseClass {
19
+ /**
20
+ * Claim position created successfully.
21
+ * @type {ClaimPositionClass}
22
+ * @memberof CreateClaimPositionResponseClass
23
+ */
24
+ 'claimPosition': ClaimPositionClass;
25
+ }
@@ -0,0 +1,15 @@
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 });
@@ -129,4 +129,10 @@ export interface CreateClaimRequestDto {
129
129
  * @memberof CreateClaimRequestDto
130
130
  */
131
131
  'customFields'?: object;
132
+ /**
133
+ * The claim\'s damage end date.
134
+ * @type {string}
135
+ * @memberof CreateClaimRequestDto
136
+ */
137
+ 'damageEndDate'?: string;
132
138
  }
@@ -25,11 +25,11 @@ export interface CreateRegulationItemRequestDto {
25
25
  */
26
26
  'regulationItemType': CreateRegulationItemRequestDtoRegulationItemTypeEnum;
27
27
  /**
28
- * The amount for the regulation item
28
+ * The amount for the regulation item. For payout regulation items, this is computed automatically from the reimbursementAmount of the matched open claim positions.
29
29
  * @type {number}
30
30
  * @memberof CreateRegulationItemRequestDto
31
31
  */
32
- 'amount': number;
32
+ 'amount'?: number;
33
33
  /**
34
34
  * The currency of the regulation item
35
35
  * @type {string}
@@ -55,7 +55,19 @@ export interface CreateRegulationItemRequestDto {
55
55
  */
56
56
  'metadata'?: object;
57
57
  /**
58
- * Details of the payout. Required if the regulation item type is payout.
58
+ * The payout provider to use. Defaults to INTERNAL. Use PAYMENT_SERVICE to delegate payout processing to the payment service.
59
+ * @type {string}
60
+ * @memberof CreateRegulationItemRequestDto
61
+ */
62
+ 'payoutProvider'?: CreateRegulationItemRequestDtoPayoutProviderEnum;
63
+ /**
64
+ * List of claim position categories that are covered by this regulation. Required for payout regulation items.
65
+ * @type {Array<string>}
66
+ * @memberof CreateRegulationItemRequestDto
67
+ */
68
+ 'claimPositionCategories'?: Array<string>;
69
+ /**
70
+ * Details of the payout. Required if the regulation item type is payout and payoutProvider is INTERNAL.
59
71
  * @type {PayoutDetailsDto}
60
72
  * @memberof CreateRegulationItemRequestDto
61
73
  */
@@ -72,6 +84,12 @@ export interface CreateRegulationItemRequestDto {
72
84
  * @memberof CreateRegulationItemRequestDto
73
85
  */
74
86
  'regressDetails'?: RegressDetailsDto;
87
+ /**
88
+ * The partner code to use for the regulation item
89
+ * @type {string}
90
+ * @memberof CreateRegulationItemRequestDto
91
+ */
92
+ 'partnerCode': string;
75
93
  }
76
94
  export declare const CreateRegulationItemRequestDtoRegulationItemTypeEnum: {
77
95
  readonly Payout: "PAYOUT";
@@ -93,3 +111,8 @@ export declare const CreateRegulationItemRequestDtoCurrencyEnum: {
93
111
  readonly Sek: "SEK";
94
112
  };
95
113
  export type CreateRegulationItemRequestDtoCurrencyEnum = typeof CreateRegulationItemRequestDtoCurrencyEnum[keyof typeof CreateRegulationItemRequestDtoCurrencyEnum];
114
+ export declare const CreateRegulationItemRequestDtoPayoutProviderEnum: {
115
+ readonly Internal: "INTERNAL";
116
+ readonly PaymentService: "PAYMENT_SERVICE";
117
+ };
118
+ export type CreateRegulationItemRequestDtoPayoutProviderEnum = typeof CreateRegulationItemRequestDtoPayoutProviderEnum[keyof typeof CreateRegulationItemRequestDtoPayoutProviderEnum];
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.CreateRegulationItemRequestDtoCurrencyEnum = exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = void 0;
16
+ exports.CreateRegulationItemRequestDtoPayoutProviderEnum = exports.CreateRegulationItemRequestDtoCurrencyEnum = exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = void 0;
17
17
  exports.CreateRegulationItemRequestDtoRegulationItemTypeEnum = {
18
18
  Payout: 'PAYOUT',
19
19
  Regress: 'REGRESS',
@@ -32,3 +32,7 @@ exports.CreateRegulationItemRequestDtoCurrencyEnum = {
32
32
  Nok: 'NOK',
33
33
  Sek: 'SEK'
34
34
  };
35
+ exports.CreateRegulationItemRequestDtoPayoutProviderEnum = {
36
+ Internal: 'INTERNAL',
37
+ PaymentService: 'PAYMENT_SERVICE'
38
+ };
@@ -0,0 +1,25 @@
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
+ import { ClaimLimitUsageClass } from './claim-limit-usage-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetClaimLimitUsageResponseClass
17
+ */
18
+ export interface GetClaimLimitUsageResponseClass {
19
+ /**
20
+ * Claim limit usage
21
+ * @type {ClaimLimitUsageClass}
22
+ * @memberof GetClaimLimitUsageResponseClass
23
+ */
24
+ 'claimLimitUsage': ClaimLimitUsageClass;
25
+ }
@@ -0,0 +1,15 @@
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 });
@@ -0,0 +1,25 @@
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
+ import { ClaimPositionClass } from './claim-position-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetClaimPositionResponseClass
17
+ */
18
+ export interface GetClaimPositionResponseClass {
19
+ /**
20
+ * Claim position details.
21
+ * @type {ClaimPositionClass}
22
+ * @memberof GetClaimPositionResponseClass
23
+ */
24
+ 'claimPosition': ClaimPositionClass;
25
+ }
@@ -0,0 +1,15 @@
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 });
@@ -1,11 +1,18 @@
1
+ export * from './calculation-step-result-class';
2
+ export * from './claim-applied-deductible-class';
1
3
  export * from './claim-class';
4
+ export * from './claim-limit-usage-class';
5
+ export * from './claim-limit-usage-result-class';
2
6
  export * from './claim-partner-class';
3
7
  export * from './claim-partner-role-class';
8
+ export * from './claim-position-class';
4
9
  export * from './claim-status-class';
5
10
  export * from './create-claim-partner-request-dto';
6
11
  export * from './create-claim-partner-response-class';
7
12
  export * from './create-claim-partner-role-request-dto';
8
13
  export * from './create-claim-partner-role-response-class';
14
+ export * from './create-claim-position-request-dto';
15
+ export * from './create-claim-position-response-class';
9
16
  export * from './create-claim-request-dto';
10
17
  export * from './create-claim-response-class';
11
18
  export * from './create-claim-status-request-dto';
@@ -13,15 +20,19 @@ export * from './create-claim-status-response-class';
13
20
  export * from './create-regulation-item-request-dto';
14
21
  export * from './create-settlement-request-dto';
15
22
  export * from './create-settlement-response-class';
23
+ export * from './get-claim-limit-usage-response-class';
16
24
  export * from './get-claim-partner-response-class';
17
25
  export * from './get-claim-partner-role-response-class';
26
+ export * from './get-claim-position-response-class';
18
27
  export * from './get-claim-response-class';
19
28
  export * from './get-claim-status-response-class';
20
29
  export * from './get-settlement-response-class';
21
30
  export * from './inline-response200';
22
31
  export * from './inline-response503';
32
+ export * from './list-claim-limit-usages-response-class';
23
33
  export * from './list-claim-partner-roles-response-class';
24
34
  export * from './list-claim-partners-response-class';
35
+ export * from './list-claim-positions-response-class';
25
36
  export * from './list-claim-statuses-response-class';
26
37
  export * from './list-claims-response-class';
27
38
  export * from './list-regulations-response-class';
@@ -42,6 +53,8 @@ export * from './reserve-details-dto';
42
53
  export * from './settlement-class';
43
54
  export * from './update-claim-partner-role-request-dto';
44
55
  export * from './update-claim-partner-role-response-class';
56
+ export * from './update-claim-position-request-dto';
57
+ export * from './update-claim-position-response-class';
45
58
  export * from './update-claim-request-dto';
46
59
  export * from './update-claim-response-class';
47
60
  export * from './update-claim-status-request-dto';
@@ -14,14 +14,21 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./calculation-step-result-class"), exports);
18
+ __exportStar(require("./claim-applied-deductible-class"), exports);
17
19
  __exportStar(require("./claim-class"), exports);
20
+ __exportStar(require("./claim-limit-usage-class"), exports);
21
+ __exportStar(require("./claim-limit-usage-result-class"), exports);
18
22
  __exportStar(require("./claim-partner-class"), exports);
19
23
  __exportStar(require("./claim-partner-role-class"), exports);
24
+ __exportStar(require("./claim-position-class"), exports);
20
25
  __exportStar(require("./claim-status-class"), exports);
21
26
  __exportStar(require("./create-claim-partner-request-dto"), exports);
22
27
  __exportStar(require("./create-claim-partner-response-class"), exports);
23
28
  __exportStar(require("./create-claim-partner-role-request-dto"), exports);
24
29
  __exportStar(require("./create-claim-partner-role-response-class"), exports);
30
+ __exportStar(require("./create-claim-position-request-dto"), exports);
31
+ __exportStar(require("./create-claim-position-response-class"), exports);
25
32
  __exportStar(require("./create-claim-request-dto"), exports);
26
33
  __exportStar(require("./create-claim-response-class"), exports);
27
34
  __exportStar(require("./create-claim-status-request-dto"), exports);
@@ -29,15 +36,19 @@ __exportStar(require("./create-claim-status-response-class"), exports);
29
36
  __exportStar(require("./create-regulation-item-request-dto"), exports);
30
37
  __exportStar(require("./create-settlement-request-dto"), exports);
31
38
  __exportStar(require("./create-settlement-response-class"), exports);
39
+ __exportStar(require("./get-claim-limit-usage-response-class"), exports);
32
40
  __exportStar(require("./get-claim-partner-response-class"), exports);
33
41
  __exportStar(require("./get-claim-partner-role-response-class"), exports);
42
+ __exportStar(require("./get-claim-position-response-class"), exports);
34
43
  __exportStar(require("./get-claim-response-class"), exports);
35
44
  __exportStar(require("./get-claim-status-response-class"), exports);
36
45
  __exportStar(require("./get-settlement-response-class"), exports);
37
46
  __exportStar(require("./inline-response200"), exports);
38
47
  __exportStar(require("./inline-response503"), exports);
48
+ __exportStar(require("./list-claim-limit-usages-response-class"), exports);
39
49
  __exportStar(require("./list-claim-partner-roles-response-class"), exports);
40
50
  __exportStar(require("./list-claim-partners-response-class"), exports);
51
+ __exportStar(require("./list-claim-positions-response-class"), exports);
41
52
  __exportStar(require("./list-claim-statuses-response-class"), exports);
42
53
  __exportStar(require("./list-claims-response-class"), exports);
43
54
  __exportStar(require("./list-regulations-response-class"), exports);
@@ -58,6 +69,8 @@ __exportStar(require("./reserve-details-dto"), exports);
58
69
  __exportStar(require("./settlement-class"), exports);
59
70
  __exportStar(require("./update-claim-partner-role-request-dto"), exports);
60
71
  __exportStar(require("./update-claim-partner-role-response-class"), exports);
72
+ __exportStar(require("./update-claim-position-request-dto"), exports);
73
+ __exportStar(require("./update-claim-position-response-class"), exports);
61
74
  __exportStar(require("./update-claim-request-dto"), exports);
62
75
  __exportStar(require("./update-claim-response-class"), exports);
63
76
  __exportStar(require("./update-claim-status-request-dto"), exports);
@@ -0,0 +1,43 @@
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
+ import { ClaimLimitUsageClass } from './claim-limit-usage-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListClaimLimitUsagesResponseClass
17
+ */
18
+ export interface ListClaimLimitUsagesResponseClass {
19
+ /**
20
+ * List of claim limit usages
21
+ * @type {Array<ClaimLimitUsageClass>}
22
+ * @memberof ListClaimLimitUsagesResponseClass
23
+ */
24
+ 'items': Array<ClaimLimitUsageClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListClaimLimitUsagesResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimLimitUsagesResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimLimitUsagesResponseClass
41
+ */
42
+ 'itemsPerPage': number;
43
+ }
@@ -0,0 +1,15 @@
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 });
@@ -28,4 +28,16 @@ export interface ListClaimPartnerRolesResponseClass {
28
28
  * @memberof ListClaimPartnerRolesResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimPartnerRolesResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimPartnerRolesResponseClass
41
+ */
42
+ 'itemsPerPage': number;
31
43
  }
@@ -28,4 +28,16 @@ export interface ListClaimPartnersResponseClass {
28
28
  * @memberof ListClaimPartnersResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimPartnersResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimPartnersResponseClass
41
+ */
42
+ 'itemsPerPage': number;
31
43
  }
@@ -0,0 +1,43 @@
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
+ import { ClaimPositionClass } from './claim-position-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ListClaimPositionsResponseClass
17
+ */
18
+ export interface ListClaimPositionsResponseClass {
19
+ /**
20
+ * List of claim positions
21
+ * @type {Array<ClaimPositionClass>}
22
+ * @memberof ListClaimPositionsResponseClass
23
+ */
24
+ 'items': Array<ClaimPositionClass>;
25
+ /**
26
+ * Next page token.
27
+ * @type {string}
28
+ * @memberof ListClaimPositionsResponseClass
29
+ */
30
+ 'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimPositionsResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimPositionsResponseClass
41
+ */
42
+ 'itemsPerPage': number;
43
+ }
@@ -0,0 +1,15 @@
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 });
@@ -17,7 +17,7 @@ import { ClaimStatusClass } from './claim-status-class';
17
17
  */
18
18
  export interface ListClaimStatusesResponseClass {
19
19
  /**
20
- * The list of claim statuses.
20
+ * The list of claim statusess.
21
21
  * @type {Array<ClaimStatusClass>}
22
22
  * @memberof ListClaimStatusesResponseClass
23
23
  */
@@ -28,4 +28,16 @@ export interface ListClaimStatusesResponseClass {
28
28
  * @memberof ListClaimStatusesResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimStatusesResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimStatusesResponseClass
41
+ */
42
+ 'itemsPerPage': number;
31
43
  }
@@ -28,4 +28,16 @@ export interface ListClaimsResponseClass {
28
28
  * @memberof ListClaimsResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListClaimsResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListClaimsResponseClass
41
+ */
42
+ 'itemsPerPage': number;
31
43
  }
@@ -28,4 +28,16 @@ export interface ListRegulationsResponseClass {
28
28
  * @memberof ListRegulationsResponseClass
29
29
  */
30
30
  'nextPageToken': string;
31
+ /**
32
+ * Total amount of items.
33
+ * @type {number}
34
+ * @memberof ListRegulationsResponseClass
35
+ */
36
+ 'totalItems': number;
37
+ /**
38
+ * Items per page.
39
+ * @type {number}
40
+ * @memberof ListRegulationsResponseClass
41
+ */
42
+ 'itemsPerPage': number;
31
43
  }