@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,68 @@
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 ReserveDetailsClass
21
+ */
22
+ export interface ReserveDetailsClass {
23
+ /**
24
+ * Unique identifier for the object.
25
+ * @type {string}
26
+ * @memberof ReserveDetailsClass
27
+ */
28
+ 'code': string;
29
+ /**
30
+ * Unique identifier of the Regulation Item that this object belongs to.
31
+ * @type {string}
32
+ * @memberof ReserveDetailsClass
33
+ */
34
+ 'regulationItemCode': string;
35
+ /**
36
+ * The type of the reserve.
37
+ * @type {string}
38
+ * @memberof ReserveDetailsClass
39
+ */
40
+ 'reserveType': ReserveDetailsClassReserveTypeEnum;
41
+ /**
42
+ * The current version of the entity - the version is increased with every update. Initial version is 1
43
+ * @type {number}
44
+ * @memberof ReserveDetailsClass
45
+ */
46
+ 'version': number;
47
+ /**
48
+ * Time at which the object was created.
49
+ * @type {string}
50
+ * @memberof ReserveDetailsClass
51
+ */
52
+ 'createdAt': string;
53
+ /**
54
+ * Time at which the object was updated.
55
+ * @type {string}
56
+ * @memberof ReserveDetailsClass
57
+ */
58
+ 'updatedAt': string;
59
+ }
60
+
61
+ export const ReserveDetailsClassReserveTypeEnum = {
62
+ Initial: 'INITIAL',
63
+ Adjustment: 'ADJUSTMENT'
64
+ } as const;
65
+
66
+ export type ReserveDetailsClassReserveTypeEnum = typeof ReserveDetailsClassReserveTypeEnum[keyof typeof ReserveDetailsClassReserveTypeEnum];
67
+
68
+
@@ -0,0 +1,38 @@
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 ReserveDetailsDto
21
+ */
22
+ export interface ReserveDetailsDto {
23
+ /**
24
+ * The type of the reserve.
25
+ * @type {string}
26
+ * @memberof ReserveDetailsDto
27
+ */
28
+ 'reserveType': ReserveDetailsDtoReserveTypeEnum;
29
+ }
30
+
31
+ export const ReserveDetailsDtoReserveTypeEnum = {
32
+ Initial: 'INITIAL',
33
+ Adjustment: 'ADJUSTMENT'
34
+ } as const;
35
+
36
+ export type ReserveDetailsDtoReserveTypeEnum = typeof ReserveDetailsDtoReserveTypeEnum[keyof typeof ReserveDetailsDtoReserveTypeEnum];
37
+
38
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/claim-sdk",
3
- "version": "1.17.2-beta.1",
3
+ "version": "1.17.2-beta.3",
4
4
  "description": "OpenAPI client for @emilgroup/claim-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -1,66 +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
- import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
- import { Configuration } from '../configuration';
14
- import { RequestArgs, BaseAPI } from '../base';
15
- import { InlineResponse200 } from '../models';
16
- /**
17
- * DefaultApi - axios parameter creator
18
- * @export
19
- */
20
- export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration) => {
21
- /**
22
- *
23
- * @param {*} [options] Override http request option.
24
- * @throws {RequiredError}
25
- */
26
- check: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
27
- };
28
- /**
29
- * DefaultApi - functional programming interface
30
- * @export
31
- */
32
- export declare const DefaultApiFp: (configuration?: Configuration) => {
33
- /**
34
- *
35
- * @param {*} [options] Override http request option.
36
- * @throws {RequiredError}
37
- */
38
- check(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineResponse200>>;
39
- };
40
- /**
41
- * DefaultApi - factory interface
42
- * @export
43
- */
44
- export declare const DefaultApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
45
- /**
46
- *
47
- * @param {*} [options] Override http request option.
48
- * @throws {RequiredError}
49
- */
50
- check(options?: any): AxiosPromise<InlineResponse200>;
51
- };
52
- /**
53
- * DefaultApi - object-oriented interface
54
- * @export
55
- * @class DefaultApi
56
- * @extends {BaseAPI}
57
- */
58
- export declare class DefaultApi extends BaseAPI {
59
- /**
60
- *
61
- * @param {*} [options] Override http request option.
62
- * @throws {RequiredError}
63
- * @memberof DefaultApi
64
- */
65
- check(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineResponse200, any>>;
66
- }