@emilgroup/claim-sdk 1.17.2-beta.1 → 1.17.2-beta.3

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 (55) hide show
  1. package/.openapi-generator/FILES +12 -1
  2. package/README.md +2 -2
  3. package/api/claim-partner-roles-api.ts +9 -9
  4. package/api/claim-regulations-api.ts +657 -0
  5. package/api/claim-statuses-api.ts +9 -9
  6. package/api/{default-api.ts → health-check-api.ts} +21 -17
  7. package/api.ts +4 -2
  8. package/base.ts +5 -1
  9. package/dist/api/claim-partner-roles-api.d.ts +9 -9
  10. package/dist/api/claim-partner-roles-api.js +3 -3
  11. package/dist/api/claim-regulations-api.d.ts +372 -0
  12. package/dist/api/claim-regulations-api.js +630 -0
  13. package/dist/api/claim-statuses-api.d.ts +9 -9
  14. package/dist/api/claim-statuses-api.js +3 -3
  15. package/dist/api/health-check-api.d.ts +70 -0
  16. package/dist/api/{default-api.js → health-check-api.js} +30 -26
  17. package/dist/api.d.ts +2 -1
  18. package/dist/api.js +2 -1
  19. package/dist/base.d.ts +1 -0
  20. package/dist/base.js +4 -1
  21. package/dist/models/create-regulation-item-request-dto.d.ts +89 -0
  22. package/dist/models/create-regulation-item-request-dto.js +34 -0
  23. package/dist/models/index.d.ts +10 -0
  24. package/dist/models/index.js +10 -0
  25. package/dist/models/list-regulations-response-class.d.ts +31 -0
  26. package/dist/models/list-regulations-response-class.js +15 -0
  27. package/dist/models/payout-details-class.d.ts +90 -0
  28. package/dist/models/payout-details-class.js +26 -0
  29. package/dist/models/payout-details-dto.d.ts +60 -0
  30. package/dist/models/payout-details-dto.js +26 -0
  31. package/dist/models/regress-details-class.d.ts +81 -0
  32. package/dist/models/regress-details-class.js +29 -0
  33. package/dist/models/regress-details-dto.d.ts +51 -0
  34. package/dist/models/regress-details-dto.js +29 -0
  35. package/dist/models/regulation-item-class.d.ts +126 -0
  36. package/dist/models/regulation-item-class.js +34 -0
  37. package/dist/models/regulation-item-response-class.d.ts +25 -0
  38. package/dist/models/regulation-item-response-class.js +15 -0
  39. package/dist/models/reserve-details-class.d.ts +59 -0
  40. package/dist/models/reserve-details-class.js +20 -0
  41. package/dist/models/reserve-details-dto.d.ts +29 -0
  42. package/dist/models/reserve-details-dto.js +20 -0
  43. package/models/create-regulation-item-request-dto.ts +99 -0
  44. package/models/index.ts +10 -0
  45. package/models/list-regulations-response-class.ts +37 -0
  46. package/models/payout-details-class.ts +100 -0
  47. package/models/payout-details-dto.ts +70 -0
  48. package/models/regress-details-class.ts +91 -0
  49. package/models/regress-details-dto.ts +61 -0
  50. package/models/regulation-item-class.ts +136 -0
  51. package/models/regulation-item-response-class.ts +31 -0
  52. package/models/reserve-details-class.ts +68 -0
  53. package/models/reserve-details-dto.ts +38 -0
  54. package/package.json +1 -1
  55. package/dist/api/default-api.d.ts +0 -66
@@ -0,0 +1,26 @@
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.PayoutDetailsClassPayoutStatusEnum = exports.PayoutDetailsClassPayoutTypeEnum = void 0;
17
+ exports.PayoutDetailsClassPayoutTypeEnum = {
18
+ Real: 'REAL',
19
+ Statistical: 'STATISTICAL'
20
+ };
21
+ exports.PayoutDetailsClassPayoutStatusEnum = {
22
+ Pending: 'PENDING',
23
+ InProgress: 'IN_PROGRESS',
24
+ Completed: 'COMPLETED',
25
+ Failed: 'FAILED'
26
+ };
@@ -0,0 +1,60 @@
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 PayoutDetailsDto
16
+ */
17
+ export interface PayoutDetailsDto {
18
+ /**
19
+ * The type of the payout.
20
+ * @type {string}
21
+ * @memberof PayoutDetailsDto
22
+ */
23
+ 'payoutType': PayoutDetailsDtoPayoutTypeEnum;
24
+ /**
25
+ * The status of the payout.
26
+ * @type {string}
27
+ * @memberof PayoutDetailsDto
28
+ */
29
+ 'payoutStatus': PayoutDetailsDtoPayoutStatusEnum;
30
+ /**
31
+ * Name of the recipient who would receive the payout.
32
+ * @type {string}
33
+ * @memberof PayoutDetailsDto
34
+ */
35
+ 'recipientName': string;
36
+ /**
37
+ * IBAN of the recipient
38
+ * @type {string}
39
+ * @memberof PayoutDetailsDto
40
+ */
41
+ 'iban': string;
42
+ /**
43
+ * Purpose of the payout
44
+ * @type {string}
45
+ * @memberof PayoutDetailsDto
46
+ */
47
+ 'payoutPurpose'?: string;
48
+ }
49
+ export declare const PayoutDetailsDtoPayoutTypeEnum: {
50
+ readonly Real: "REAL";
51
+ readonly Statistical: "STATISTICAL";
52
+ };
53
+ export type PayoutDetailsDtoPayoutTypeEnum = typeof PayoutDetailsDtoPayoutTypeEnum[keyof typeof PayoutDetailsDtoPayoutTypeEnum];
54
+ export declare const PayoutDetailsDtoPayoutStatusEnum: {
55
+ readonly Pending: "PENDING";
56
+ readonly InProgress: "IN_PROGRESS";
57
+ readonly Completed: "COMPLETED";
58
+ readonly Failed: "FAILED";
59
+ };
60
+ export type PayoutDetailsDtoPayoutStatusEnum = typeof PayoutDetailsDtoPayoutStatusEnum[keyof typeof PayoutDetailsDtoPayoutStatusEnum];
@@ -0,0 +1,26 @@
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.PayoutDetailsDtoPayoutStatusEnum = exports.PayoutDetailsDtoPayoutTypeEnum = void 0;
17
+ exports.PayoutDetailsDtoPayoutTypeEnum = {
18
+ Real: 'REAL',
19
+ Statistical: 'STATISTICAL'
20
+ };
21
+ exports.PayoutDetailsDtoPayoutStatusEnum = {
22
+ Pending: 'PENDING',
23
+ InProgress: 'IN_PROGRESS',
24
+ Completed: 'COMPLETED',
25
+ Failed: 'FAILED'
26
+ };
@@ -0,0 +1,81 @@
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 RegressDetailsClass
16
+ */
17
+ export interface RegressDetailsClass {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof RegressDetailsClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Unique identifier of the Regulation Item that this object belongs to.
26
+ * @type {string}
27
+ * @memberof RegressDetailsClass
28
+ */
29
+ 'regulationItemCode': string;
30
+ /**
31
+ * The type of recovery.
32
+ * @type {string}
33
+ * @memberof RegressDetailsClass
34
+ */
35
+ 'recoveryType': RegressDetailsClassRecoveryTypeEnum;
36
+ /**
37
+ * The status of recovery.
38
+ * @type {string}
39
+ * @memberof RegressDetailsClass
40
+ */
41
+ 'recoveryStatus': RegressDetailsClassRecoveryStatusEnum;
42
+ /**
43
+ * Any information provided by the third party.
44
+ * @type {string}
45
+ * @memberof RegressDetailsClass
46
+ */
47
+ 'thirdPartyInformation': string;
48
+ /**
49
+ * The current version of the entity - the version is increased with every update. Initial version is 1
50
+ * @type {number}
51
+ * @memberof RegressDetailsClass
52
+ */
53
+ 'version': number;
54
+ /**
55
+ * Time at which the object was created.
56
+ * @type {string}
57
+ * @memberof RegressDetailsClass
58
+ */
59
+ 'createdAt': string;
60
+ /**
61
+ * Time at which the object was updated.
62
+ * @type {string}
63
+ * @memberof RegressDetailsClass
64
+ */
65
+ 'updatedAt': string;
66
+ }
67
+ export declare const RegressDetailsClassRecoveryTypeEnum: {
68
+ readonly SubrogationInitiated: "SUBROGATION_INITIATED";
69
+ readonly PartialRecovery: "PARTIAL_RECOVERY";
70
+ readonly FullRecovery: "FULL_RECOVERY";
71
+ readonly Adjustment: "ADJUSTMENT";
72
+ };
73
+ export type RegressDetailsClassRecoveryTypeEnum = typeof RegressDetailsClassRecoveryTypeEnum[keyof typeof RegressDetailsClassRecoveryTypeEnum];
74
+ export declare const RegressDetailsClassRecoveryStatusEnum: {
75
+ readonly Pending: "PENDING";
76
+ readonly InProgress: "IN_PROGRESS";
77
+ readonly PartiallyRecovered: "PARTIALLY_RECOVERED";
78
+ readonly FullyRecovered: "FULLY_RECOVERED";
79
+ readonly Closed: "CLOSED";
80
+ };
81
+ export type RegressDetailsClassRecoveryStatusEnum = typeof RegressDetailsClassRecoveryStatusEnum[keyof typeof RegressDetailsClassRecoveryStatusEnum];
@@ -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.RegressDetailsClassRecoveryStatusEnum = exports.RegressDetailsClassRecoveryTypeEnum = void 0;
17
+ exports.RegressDetailsClassRecoveryTypeEnum = {
18
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
19
+ PartialRecovery: 'PARTIAL_RECOVERY',
20
+ FullRecovery: 'FULL_RECOVERY',
21
+ Adjustment: 'ADJUSTMENT'
22
+ };
23
+ exports.RegressDetailsClassRecoveryStatusEnum = {
24
+ Pending: 'PENDING',
25
+ InProgress: 'IN_PROGRESS',
26
+ PartiallyRecovered: 'PARTIALLY_RECOVERED',
27
+ FullyRecovered: 'FULLY_RECOVERED',
28
+ Closed: 'CLOSED'
29
+ };
@@ -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 RegressDetailsDto
16
+ */
17
+ export interface RegressDetailsDto {
18
+ /**
19
+ * The type of recovery.
20
+ * @type {string}
21
+ * @memberof RegressDetailsDto
22
+ */
23
+ 'recoveryType': RegressDetailsDtoRecoveryTypeEnum;
24
+ /**
25
+ * The status of recovery.
26
+ * @type {string}
27
+ * @memberof RegressDetailsDto
28
+ */
29
+ 'recoveryStatus': RegressDetailsDtoRecoveryStatusEnum;
30
+ /**
31
+ * Optional helpful and relevant information provided by the third party can be stored in this field.
32
+ * @type {string}
33
+ * @memberof RegressDetailsDto
34
+ */
35
+ 'thirdPartyInformation'?: string;
36
+ }
37
+ export declare const RegressDetailsDtoRecoveryTypeEnum: {
38
+ readonly SubrogationInitiated: "SUBROGATION_INITIATED";
39
+ readonly PartialRecovery: "PARTIAL_RECOVERY";
40
+ readonly FullRecovery: "FULL_RECOVERY";
41
+ readonly Adjustment: "ADJUSTMENT";
42
+ };
43
+ export type RegressDetailsDtoRecoveryTypeEnum = typeof RegressDetailsDtoRecoveryTypeEnum[keyof typeof RegressDetailsDtoRecoveryTypeEnum];
44
+ export declare const RegressDetailsDtoRecoveryStatusEnum: {
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 RegressDetailsDtoRecoveryStatusEnum = typeof RegressDetailsDtoRecoveryStatusEnum[keyof typeof RegressDetailsDtoRecoveryStatusEnum];
@@ -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.RegressDetailsDtoRecoveryStatusEnum = exports.RegressDetailsDtoRecoveryTypeEnum = void 0;
17
+ exports.RegressDetailsDtoRecoveryTypeEnum = {
18
+ SubrogationInitiated: 'SUBROGATION_INITIATED',
19
+ PartialRecovery: 'PARTIAL_RECOVERY',
20
+ FullRecovery: 'FULL_RECOVERY',
21
+ Adjustment: 'ADJUSTMENT'
22
+ };
23
+ exports.RegressDetailsDtoRecoveryStatusEnum = {
24
+ Pending: 'PENDING',
25
+ InProgress: 'IN_PROGRESS',
26
+ PartiallyRecovered: 'PARTIALLY_RECOVERED',
27
+ FullyRecovered: 'FULLY_RECOVERED',
28
+ Closed: 'CLOSED'
29
+ };
@@ -0,0 +1,126 @@
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 { ClaimClass } from './claim-class';
13
+ import { PayoutDetailsClass } from './payout-details-class';
14
+ import { RegressDetailsClass } from './regress-details-class';
15
+ import { ReserveDetailsClass } from './reserve-details-class';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface RegulationItemClass
20
+ */
21
+ export interface RegulationItemClass {
22
+ /**
23
+ * Unique identifier for the object.
24
+ * @type {string}
25
+ * @memberof RegulationItemClass
26
+ */
27
+ 'code': string;
28
+ /**
29
+ * Indicates the kind of regulation item - regulation items can be of type payout, reserve or regress
30
+ * @type {string}
31
+ * @memberof RegulationItemClass
32
+ */
33
+ 'regulationItemType': RegulationItemClassRegulationItemTypeEnum;
34
+ /**
35
+ * The amount of the regulation item
36
+ * @type {number}
37
+ * @memberof RegulationItemClass
38
+ */
39
+ 'amount': number;
40
+ /**
41
+ * The currency of the regulation item
42
+ * @type {string}
43
+ * @memberof RegulationItemClass
44
+ */
45
+ 'currency': RegulationItemClassCurrencyEnum;
46
+ /**
47
+ * Booking date for the regulation item
48
+ * @type {string}
49
+ * @memberof RegulationItemClass
50
+ */
51
+ 'bookingDate': string;
52
+ /**
53
+ * Unique identifier of the Claim that this object belongs to.
54
+ * @type {string}
55
+ * @memberof RegulationItemClass
56
+ */
57
+ 'claimCode': string;
58
+ /**
59
+ * The ClaimClass response.
60
+ * @type {ClaimClass}
61
+ * @memberof RegulationItemClass
62
+ */
63
+ 'claim': ClaimClass;
64
+ /**
65
+ * The PayoutDetailsClass response.
66
+ * @type {PayoutDetailsClass}
67
+ * @memberof RegulationItemClass
68
+ */
69
+ 'payoutDetails': PayoutDetailsClass;
70
+ /**
71
+ * The ReserveDetailsClass response.
72
+ * @type {ReserveDetailsClass}
73
+ * @memberof RegulationItemClass
74
+ */
75
+ 'reserveDetails': ReserveDetailsClass;
76
+ /**
77
+ * The RegressDetailsClass response.
78
+ * @type {RegressDetailsClass}
79
+ * @memberof RegulationItemClass
80
+ */
81
+ 'regressDetails': RegressDetailsClass;
82
+ /**
83
+ * The system level identifier of the user who made the latest update
84
+ * @type {string}
85
+ * @memberof RegulationItemClass
86
+ */
87
+ 'updatedBy': string;
88
+ /**
89
+ * The version of the regulation item - the version is increased with every update. Initial version is 1
90
+ * @type {number}
91
+ * @memberof RegulationItemClass
92
+ */
93
+ 'version': number;
94
+ /**
95
+ * Time at which the object was created.
96
+ * @type {string}
97
+ * @memberof RegulationItemClass
98
+ */
99
+ 'createdAt': string;
100
+ /**
101
+ * Time at which the object was updated.
102
+ * @type {string}
103
+ * @memberof RegulationItemClass
104
+ */
105
+ 'updatedAt': string;
106
+ }
107
+ export declare const RegulationItemClassRegulationItemTypeEnum: {
108
+ readonly Payout: "PAYOUT";
109
+ readonly Regress: "REGRESS";
110
+ readonly Reserve: "RESERVE";
111
+ };
112
+ export type RegulationItemClassRegulationItemTypeEnum = typeof RegulationItemClassRegulationItemTypeEnum[keyof typeof RegulationItemClassRegulationItemTypeEnum];
113
+ export declare const RegulationItemClassCurrencyEnum: {
114
+ readonly Eur: "EUR";
115
+ readonly Usd: "USD";
116
+ readonly Gbp: "GBP";
117
+ readonly Chf: "CHF";
118
+ readonly Pln: "PLN";
119
+ readonly Aud: "AUD";
120
+ readonly Cad: "CAD";
121
+ readonly Ddk: "DDK";
122
+ readonly Huf: "HUF";
123
+ readonly Nok: "NOK";
124
+ readonly Sek: "SEK";
125
+ };
126
+ export type RegulationItemClassCurrencyEnum = typeof RegulationItemClassCurrencyEnum[keyof typeof RegulationItemClassCurrencyEnum];
@@ -0,0 +1,34 @@
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.RegulationItemClassCurrencyEnum = exports.RegulationItemClassRegulationItemTypeEnum = void 0;
17
+ exports.RegulationItemClassRegulationItemTypeEnum = {
18
+ Payout: 'PAYOUT',
19
+ Regress: 'REGRESS',
20
+ Reserve: 'RESERVE'
21
+ };
22
+ exports.RegulationItemClassCurrencyEnum = {
23
+ Eur: 'EUR',
24
+ Usd: 'USD',
25
+ Gbp: 'GBP',
26
+ Chf: 'CHF',
27
+ Pln: 'PLN',
28
+ Aud: 'AUD',
29
+ Cad: 'CAD',
30
+ Ddk: 'DDK',
31
+ Huf: 'HUF',
32
+ Nok: 'NOK',
33
+ Sek: 'SEK'
34
+ };
@@ -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 { RegulationItemClass } from './regulation-item-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface RegulationItemResponseClass
17
+ */
18
+ export interface RegulationItemResponseClass {
19
+ /**
20
+ * The regulation item response.
21
+ * @type {RegulationItemClass}
22
+ * @memberof RegulationItemResponseClass
23
+ */
24
+ 'regulationItem': RegulationItemClass;
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,59 @@
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 ReserveDetailsClass
16
+ */
17
+ export interface ReserveDetailsClass {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof ReserveDetailsClass
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Unique identifier of the Regulation Item that this object belongs to.
26
+ * @type {string}
27
+ * @memberof ReserveDetailsClass
28
+ */
29
+ 'regulationItemCode': string;
30
+ /**
31
+ * The type of the reserve.
32
+ * @type {string}
33
+ * @memberof ReserveDetailsClass
34
+ */
35
+ 'reserveType': ReserveDetailsClassReserveTypeEnum;
36
+ /**
37
+ * The current version of the entity - the version is increased with every update. Initial version is 1
38
+ * @type {number}
39
+ * @memberof ReserveDetailsClass
40
+ */
41
+ 'version': number;
42
+ /**
43
+ * Time at which the object was created.
44
+ * @type {string}
45
+ * @memberof ReserveDetailsClass
46
+ */
47
+ 'createdAt': string;
48
+ /**
49
+ * Time at which the object was updated.
50
+ * @type {string}
51
+ * @memberof ReserveDetailsClass
52
+ */
53
+ 'updatedAt': string;
54
+ }
55
+ export declare const ReserveDetailsClassReserveTypeEnum: {
56
+ readonly Initial: "INITIAL";
57
+ readonly Adjustment: "ADJUSTMENT";
58
+ };
59
+ export type ReserveDetailsClassReserveTypeEnum = typeof ReserveDetailsClassReserveTypeEnum[keyof typeof ReserveDetailsClassReserveTypeEnum];
@@ -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.ReserveDetailsClassReserveTypeEnum = void 0;
17
+ exports.ReserveDetailsClassReserveTypeEnum = {
18
+ Initial: 'INITIAL',
19
+ Adjustment: 'ADJUSTMENT'
20
+ };
@@ -0,0 +1,29 @@
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 ReserveDetailsDto
16
+ */
17
+ export interface ReserveDetailsDto {
18
+ /**
19
+ * The type of the reserve.
20
+ * @type {string}
21
+ * @memberof ReserveDetailsDto
22
+ */
23
+ 'reserveType': ReserveDetailsDtoReserveTypeEnum;
24
+ }
25
+ export declare const ReserveDetailsDtoReserveTypeEnum: {
26
+ readonly Initial: "INITIAL";
27
+ readonly Adjustment: "ADJUSTMENT";
28
+ };
29
+ export type ReserveDetailsDtoReserveTypeEnum = typeof ReserveDetailsDtoReserveTypeEnum[keyof typeof ReserveDetailsDtoReserveTypeEnum];
@@ -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.ReserveDetailsDtoReserveTypeEnum = void 0;
17
+ exports.ReserveDetailsDtoReserveTypeEnum = {
18
+ Initial: 'INITIAL',
19
+ Adjustment: 'ADJUSTMENT'
20
+ };