@emilgroup/claim-sdk-node 1.11.0 → 1.17.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 (76) hide show
  1. package/.openapi-generator/FILES +14 -0
  2. package/README.md +2 -2
  3. package/api/claim-partner-roles-api.ts +681 -0
  4. package/api/claim-partners-api.ts +574 -0
  5. package/api/claim-statuses-api.ts +24 -10
  6. package/api/claims-api.ts +24 -10
  7. package/api/settlements-api.ts +24 -10
  8. package/api.ts +4 -0
  9. package/dist/api/claim-partner-roles-api.d.ts +384 -0
  10. package/dist/api/claim-partner-roles-api.js +640 -0
  11. package/dist/api/claim-partners-api.d.ts +327 -0
  12. package/dist/api/claim-partners-api.js +547 -0
  13. package/dist/api/claim-statuses-api.d.ts +16 -7
  14. package/dist/api/claim-statuses-api.js +15 -9
  15. package/dist/api/claims-api.d.ts +16 -7
  16. package/dist/api/claims-api.js +15 -9
  17. package/dist/api/settlements-api.d.ts +16 -7
  18. package/dist/api/settlements-api.js +15 -9
  19. package/dist/api.d.ts +2 -0
  20. package/dist/api.js +2 -0
  21. package/dist/models/claim-class.d.ts +13 -1
  22. package/dist/models/claim-partner-class.d.ts +61 -0
  23. package/dist/models/claim-partner-class.js +15 -0
  24. package/dist/models/claim-partner-role-class.d.ts +54 -0
  25. package/dist/models/claim-partner-role-class.js +15 -0
  26. package/dist/models/claim-status-class.d.ts +1 -1
  27. package/dist/models/create-claim-partner-request-dto.d.ts +36 -0
  28. package/dist/models/create-claim-partner-request-dto.js +15 -0
  29. package/dist/models/create-claim-partner-response-class.d.ts +25 -0
  30. package/dist/models/create-claim-partner-response-class.js +15 -0
  31. package/dist/models/create-claim-partner-role-request-dto.d.ts +30 -0
  32. package/dist/models/create-claim-partner-role-request-dto.js +15 -0
  33. package/dist/models/create-claim-partner-role-response-class.d.ts +25 -0
  34. package/dist/models/create-claim-partner-role-response-class.js +15 -0
  35. package/dist/models/create-claim-request-dto.d.ts +9 -3
  36. package/dist/models/create-claim-status-request-dto.d.ts +1 -1
  37. package/dist/models/get-claim-partner-response-class.d.ts +25 -0
  38. package/dist/models/get-claim-partner-response-class.js +15 -0
  39. package/dist/models/get-claim-partner-role-response-class.d.ts +25 -0
  40. package/dist/models/get-claim-partner-role-response-class.js +15 -0
  41. package/dist/models/index.d.ts +12 -0
  42. package/dist/models/index.js +12 -0
  43. package/dist/models/inline-response200.d.ts +6 -6
  44. package/dist/models/inline-response503.d.ts +6 -6
  45. package/dist/models/list-claim-partner-roles-response-class.d.ts +31 -0
  46. package/dist/models/list-claim-partner-roles-response-class.js +15 -0
  47. package/dist/models/list-claim-partners-response-class.d.ts +31 -0
  48. package/dist/models/list-claim-partners-response-class.js +15 -0
  49. package/dist/models/patch-claim-request-dto.d.ts +8 -2
  50. package/dist/models/update-claim-partner-role-request-dto.d.ts +36 -0
  51. package/dist/models/update-claim-partner-role-request-dto.js +15 -0
  52. package/dist/models/update-claim-partner-role-response-class.d.ts +25 -0
  53. package/dist/models/update-claim-partner-role-response-class.js +15 -0
  54. package/dist/models/update-claim-request-dto.d.ts +8 -2
  55. package/models/claim-class.ts +13 -1
  56. package/models/claim-partner-class.ts +67 -0
  57. package/models/claim-partner-role-class.ts +60 -0
  58. package/models/claim-status-class.ts +1 -1
  59. package/models/create-claim-partner-request-dto.ts +42 -0
  60. package/models/create-claim-partner-response-class.ts +31 -0
  61. package/models/create-claim-partner-role-request-dto.ts +36 -0
  62. package/models/create-claim-partner-role-response-class.ts +31 -0
  63. package/models/create-claim-request-dto.ts +9 -3
  64. package/models/create-claim-status-request-dto.ts +1 -1
  65. package/models/get-claim-partner-response-class.ts +31 -0
  66. package/models/get-claim-partner-role-response-class.ts +31 -0
  67. package/models/index.ts +12 -0
  68. package/models/inline-response200.ts +6 -6
  69. package/models/inline-response503.ts +6 -6
  70. package/models/list-claim-partner-roles-response-class.ts +37 -0
  71. package/models/list-claim-partners-response-class.ts +37 -0
  72. package/models/patch-claim-request-dto.ts +8 -2
  73. package/models/update-claim-partner-role-request-dto.ts +42 -0
  74. package/models/update-claim-partner-role-response-class.ts +31 -0
  75. package/models/update-claim-request-dto.ts +8 -2
  76. package/package.json +2 -2
@@ -69,6 +69,12 @@ export interface PatchClaimRequestDto {
69
69
  * @memberof PatchClaimRequestDto
70
70
  */
71
71
  'insuredObjectId'?: number;
72
+ /**
73
+ * The policy object code that the claim is made for.
74
+ * @type {string}
75
+ * @memberof PatchClaimRequestDto
76
+ */
77
+ 'policyObjectCode'?: string;
72
78
  /**
73
79
  * The claim\'s description in 5000 characters.
74
80
  * @type {string}
@@ -76,13 +82,13 @@ export interface PatchClaimRequestDto {
76
82
  */
77
83
  'description'?: string;
78
84
  /**
79
- * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
85
+ * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
80
86
  * @type {string}
81
87
  * @memberof PatchClaimRequestDto
82
88
  */
83
89
  'adjuster'?: string;
84
90
  /**
85
- * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
91
+ * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
86
92
  * @type {string}
87
93
  * @memberof PatchClaimRequestDto
88
94
  */
@@ -0,0 +1,36 @@
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 UpdateClaimPartnerRoleRequestDto
16
+ */
17
+ export interface UpdateClaimPartnerRoleRequestDto {
18
+ /**
19
+ * Unique identifier for the object.
20
+ * @type {string}
21
+ * @memberof UpdateClaimPartnerRoleRequestDto
22
+ */
23
+ 'code': string;
24
+ /**
25
+ * Name of the claim partner role.
26
+ * @type {string}
27
+ * @memberof UpdateClaimPartnerRoleRequestDto
28
+ */
29
+ 'name': string;
30
+ /**
31
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
32
+ * @type {string}
33
+ * @memberof UpdateClaimPartnerRoleRequestDto
34
+ */
35
+ 'productSlug'?: string;
36
+ }
@@ -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 { ClaimPartnerRoleClass } from './claim-partner-role-class';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateClaimPartnerRoleResponseClass
17
+ */
18
+ export interface UpdateClaimPartnerRoleResponseClass {
19
+ /**
20
+ * Claim partner role
21
+ * @type {ClaimPartnerRoleClass}
22
+ * @memberof UpdateClaimPartnerRoleResponseClass
23
+ */
24
+ 'claimPartnerRole'?: ClaimPartnerRoleClass;
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 });
@@ -69,6 +69,12 @@ export interface UpdateClaimRequestDto {
69
69
  * @memberof UpdateClaimRequestDto
70
70
  */
71
71
  'insuredObjectId'?: number;
72
+ /**
73
+ * The policy object code that the claim is made for.
74
+ * @type {string}
75
+ * @memberof UpdateClaimRequestDto
76
+ */
77
+ 'policyObjectCode'?: string;
72
78
  /**
73
79
  * The claim\'s description in 5000 characters.
74
80
  * @type {string}
@@ -76,13 +82,13 @@ export interface UpdateClaimRequestDto {
76
82
  */
77
83
  'description'?: string;
78
84
  /**
79
- * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
85
+ * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
80
86
  * @type {string}
81
87
  * @memberof UpdateClaimRequestDto
82
88
  */
83
89
  'adjuster'?: string;
84
90
  /**
85
- * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
91
+ * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
86
92
  * @type {string}
87
93
  * @memberof UpdateClaimRequestDto
88
94
  */
@@ -92,6 +92,12 @@ export interface ClaimClass {
92
92
  * @memberof ClaimClass
93
93
  */
94
94
  'insuredObjectId': number;
95
+ /**
96
+ * The policy object code that the claim is made for.
97
+ * @type {string}
98
+ * @memberof ClaimClass
99
+ */
100
+ 'policyObjectCode': string;
95
101
  /**
96
102
  * Claim description.
97
103
  * @type {string}
@@ -99,7 +105,7 @@ export interface ClaimClass {
99
105
  */
100
106
  'description': string;
101
107
  /**
102
- * A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
108
+ * A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
103
109
  * @type {string}
104
110
  * @memberof ClaimClass
105
111
  */
@@ -158,5 +164,11 @@ export interface ClaimClass {
158
164
  * @memberof ClaimClass
159
165
  */
160
166
  'ern': string;
167
+ /**
168
+ * Partners related to the claim.
169
+ * @type {Array<string>}
170
+ * @memberof ClaimClass
171
+ */
172
+ 'claimPartners'?: Array<string>;
161
173
  }
162
174
 
@@ -0,0 +1,67 @@
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
+ import { ClaimPartnerRoleClass } from './claim-partner-role-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface ClaimPartnerClass
22
+ */
23
+ export interface ClaimPartnerClass {
24
+ /**
25
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
26
+ * @type {number}
27
+ * @memberof ClaimPartnerClass
28
+ */
29
+ 'id': number;
30
+ /**
31
+ * Unique identifier of the partner that this object belongs to.
32
+ * @type {string}
33
+ * @memberof ClaimPartnerClass
34
+ */
35
+ 'partnerCode': string;
36
+ /**
37
+ * Unique identifier of the claim partner role that this object belongs to.
38
+ * @type {string}
39
+ * @memberof ClaimPartnerClass
40
+ */
41
+ 'claimPartnerRoleCode': string;
42
+ /**
43
+ * Unique identifier of the claim that this object belongs to.
44
+ * @type {string}
45
+ * @memberof ClaimPartnerClass
46
+ */
47
+ 'claimCode': string;
48
+ /**
49
+ * Time at which the object was created.
50
+ * @type {string}
51
+ * @memberof ClaimPartnerClass
52
+ */
53
+ 'createdAt': string;
54
+ /**
55
+ * Time at which the object was updated.
56
+ * @type {string}
57
+ * @memberof ClaimPartnerClass
58
+ */
59
+ 'updatedAt': string;
60
+ /**
61
+ * Claim partner role in the relationship.
62
+ * @type {ClaimPartnerRoleClass}
63
+ * @memberof ClaimPartnerClass
64
+ */
65
+ 'claimPartnerRole'?: ClaimPartnerRoleClass;
66
+ }
67
+
@@ -0,0 +1,60 @@
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 ClaimPartnerRoleClass
21
+ */
22
+ export interface ClaimPartnerRoleClass {
23
+ /**
24
+ * Internal unique identifier for the object. You should not have to use this, use code instead.
25
+ * @type {number}
26
+ * @memberof ClaimPartnerRoleClass
27
+ */
28
+ 'id': number;
29
+ /**
30
+ * Unique identifier for the object.
31
+ * @type {string}
32
+ * @memberof ClaimPartnerRoleClass
33
+ */
34
+ 'code': string;
35
+ /**
36
+ * Name of the claim partner role.
37
+ * @type {string}
38
+ * @memberof ClaimPartnerRoleClass
39
+ */
40
+ 'name': string;
41
+ /**
42
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
43
+ * @type {string}
44
+ * @memberof ClaimPartnerRoleClass
45
+ */
46
+ 'productSlug'?: string;
47
+ /**
48
+ * Time at which the object was created.
49
+ * @type {string}
50
+ * @memberof ClaimPartnerRoleClass
51
+ */
52
+ 'createdAt': string;
53
+ /**
54
+ * Time at which the object was updated.
55
+ * @type {string}
56
+ * @memberof ClaimPartnerRoleClass
57
+ */
58
+ 'updatedAt': string;
59
+ }
60
+
@@ -33,7 +33,7 @@ export interface ClaimStatusClass {
33
33
  */
34
34
  'name': string;
35
35
  /**
36
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
36
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
37
37
  * @type {string}
38
38
  * @memberof ClaimStatusClass
39
39
  */
@@ -0,0 +1,42 @@
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 CreateClaimPartnerRequestDto
21
+ */
22
+ export interface CreateClaimPartnerRequestDto {
23
+ /**
24
+ * Unique identifier of the partner that this object belongs to.
25
+ * @type {string}
26
+ * @memberof CreateClaimPartnerRequestDto
27
+ */
28
+ 'partnerCode': string;
29
+ /**
30
+ * Unique identifier of the claim partner role that this object belongs to.
31
+ * @type {string}
32
+ * @memberof CreateClaimPartnerRequestDto
33
+ */
34
+ 'claimPartnerRoleCode': string;
35
+ /**
36
+ * Unique identifier of the claim that this object belongs to.
37
+ * @type {string}
38
+ * @memberof CreateClaimPartnerRequestDto
39
+ */
40
+ 'claimCode': string;
41
+ }
42
+
@@ -0,0 +1,31 @@
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
+ import { ClaimPartnerClass } from './claim-partner-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateClaimPartnerResponseClass
22
+ */
23
+ export interface CreateClaimPartnerResponseClass {
24
+ /**
25
+ * Claim partner role
26
+ * @type {ClaimPartnerClass}
27
+ * @memberof CreateClaimPartnerResponseClass
28
+ */
29
+ 'claimPartner'?: ClaimPartnerClass;
30
+ }
31
+
@@ -0,0 +1,36 @@
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 CreateClaimPartnerRoleRequestDto
21
+ */
22
+ export interface CreateClaimPartnerRoleRequestDto {
23
+ /**
24
+ * Name of the claim partner role.
25
+ * @type {string}
26
+ * @memberof CreateClaimPartnerRoleRequestDto
27
+ */
28
+ 'name': string;
29
+ /**
30
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
31
+ * @type {string}
32
+ * @memberof CreateClaimPartnerRoleRequestDto
33
+ */
34
+ 'productSlug'?: string;
35
+ }
36
+
@@ -0,0 +1,31 @@
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
+ import { ClaimPartnerRoleClass } from './claim-partner-role-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface CreateClaimPartnerRoleResponseClass
22
+ */
23
+ export interface CreateClaimPartnerRoleResponseClass {
24
+ /**
25
+ * Claim partner role
26
+ * @type {ClaimPartnerRoleClass}
27
+ * @memberof CreateClaimPartnerRoleResponseClass
28
+ */
29
+ 'claimPartnerRole'?: ClaimPartnerRoleClass;
30
+ }
31
+
@@ -25,7 +25,7 @@ export interface CreateClaimRequestDto {
25
25
  * @type {string}
26
26
  * @memberof CreateClaimRequestDto
27
27
  */
28
- 'claimNumber': string;
28
+ 'claimNumber'?: string;
29
29
  /**
30
30
  * Field to enter the claim title.
31
31
  * @type {string}
@@ -80,6 +80,12 @@ export interface CreateClaimRequestDto {
80
80
  * @memberof CreateClaimRequestDto
81
81
  */
82
82
  'insuredObjectId'?: number;
83
+ /**
84
+ * The policy object code that the claim is made for.
85
+ * @type {string}
86
+ * @memberof CreateClaimRequestDto
87
+ */
88
+ 'policyObjectCode'?: string;
83
89
  /**
84
90
  * The claim\'s description in 5000 characters.
85
91
  * @type {string}
@@ -87,13 +93,13 @@ export interface CreateClaimRequestDto {
87
93
  */
88
94
  'description'?: string;
89
95
  /**
90
- * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
96
+ * The adjuster of the claim. A claim adjuster investigates insurance claims by interviewing the claimant and witnesses, consulting police and hospital records, and inspecting property damage to determine the extent of the insurance company\'s liability.
91
97
  * @type {string}
92
98
  * @memberof CreateClaimRequestDto
93
99
  */
94
100
  'adjuster'?: string;
95
101
  /**
96
- * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
102
+ * A claim reporter is responsible for submitting this claim to the platform. A claim reporter is not necessarily the same as the policy holder.
97
103
  * @type {string}
98
104
  * @memberof CreateClaimRequestDto
99
105
  */
@@ -27,7 +27,7 @@ export interface CreateClaimStatusRequestDto {
27
27
  */
28
28
  'name': string;
29
29
  /**
30
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
30
+ * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
31
31
  * @type {string}
32
32
  * @memberof CreateClaimStatusRequestDto
33
33
  */
@@ -0,0 +1,31 @@
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
+ import { ClaimPartnerClass } from './claim-partner-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetClaimPartnerResponseClass
22
+ */
23
+ export interface GetClaimPartnerResponseClass {
24
+ /**
25
+ * Claim partner
26
+ * @type {ClaimPartnerClass}
27
+ * @memberof GetClaimPartnerResponseClass
28
+ */
29
+ 'claimPartner'?: ClaimPartnerClass;
30
+ }
31
+
@@ -0,0 +1,31 @@
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
+ import { ClaimPartnerRoleClass } from './claim-partner-role-class';
17
+
18
+ /**
19
+ *
20
+ * @export
21
+ * @interface GetClaimPartnerRoleResponseClass
22
+ */
23
+ export interface GetClaimPartnerRoleResponseClass {
24
+ /**
25
+ * Claim partner role
26
+ * @type {ClaimPartnerRoleClass}
27
+ * @memberof GetClaimPartnerRoleResponseClass
28
+ */
29
+ 'claimPartnerRole'?: ClaimPartnerRoleClass;
30
+ }
31
+
package/models/index.ts CHANGED
@@ -1,22 +1,34 @@
1
1
  export * from './claim-class';
2
+ export * from './claim-partner-class';
3
+ export * from './claim-partner-role-class';
2
4
  export * from './claim-status-class';
5
+ export * from './create-claim-partner-request-dto';
6
+ export * from './create-claim-partner-response-class';
7
+ export * from './create-claim-partner-role-request-dto';
8
+ export * from './create-claim-partner-role-response-class';
3
9
  export * from './create-claim-request-dto';
4
10
  export * from './create-claim-response-class';
5
11
  export * from './create-claim-status-request-dto';
6
12
  export * from './create-claim-status-response-class';
7
13
  export * from './create-settlement-request-dto';
8
14
  export * from './create-settlement-response-class';
15
+ export * from './get-claim-partner-response-class';
16
+ export * from './get-claim-partner-role-response-class';
9
17
  export * from './get-claim-response-class';
10
18
  export * from './get-claim-status-response-class';
11
19
  export * from './get-settlement-response-class';
12
20
  export * from './inline-response200';
13
21
  export * from './inline-response503';
22
+ export * from './list-claim-partner-roles-response-class';
23
+ export * from './list-claim-partners-response-class';
14
24
  export * from './list-claim-statuses-response-class';
15
25
  export * from './list-claims-response-class';
16
26
  export * from './list-settlements-response-class';
17
27
  export * from './patch-claim-request-dto';
18
28
  export * from './patch-claim-response-class';
19
29
  export * from './settlement-class';
30
+ export * from './update-claim-partner-role-request-dto';
31
+ export * from './update-claim-partner-role-response-class';
20
32
  export * from './update-claim-request-dto';
21
33
  export * from './update-claim-response-class';
22
34
  export * from './update-settlement-request-dto';
@@ -28,21 +28,21 @@ export interface InlineResponse200 {
28
28
  'status'?: string;
29
29
  /**
30
30
  *
31
- * @type {{ [key: string]: { [key: string]: string; }; }}
31
+ * @type {{ [key: string]: { [key: string]: object; }; }}
32
32
  * @memberof InlineResponse200
33
33
  */
34
- 'info'?: { [key: string]: { [key: string]: string; }; } | null;
34
+ 'info'?: { [key: string]: { [key: string]: object; }; } | null;
35
35
  /**
36
36
  *
37
- * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @type {{ [key: string]: { [key: string]: object; }; }}
38
38
  * @memberof InlineResponse200
39
39
  */
40
- 'error'?: { [key: string]: { [key: string]: string; }; } | null;
40
+ 'error'?: { [key: string]: { [key: string]: object; }; } | null;
41
41
  /**
42
42
  *
43
- * @type {{ [key: string]: { [key: string]: string; }; }}
43
+ * @type {{ [key: string]: { [key: string]: object; }; }}
44
44
  * @memberof InlineResponse200
45
45
  */
46
- 'details'?: { [key: string]: { [key: string]: string; }; };
46
+ 'details'?: { [key: string]: { [key: string]: object; }; };
47
47
  }
48
48
 
@@ -28,21 +28,21 @@ export interface InlineResponse503 {
28
28
  'status'?: string;
29
29
  /**
30
30
  *
31
- * @type {{ [key: string]: { [key: string]: string; }; }}
31
+ * @type {{ [key: string]: { [key: string]: object; }; }}
32
32
  * @memberof InlineResponse503
33
33
  */
34
- 'info'?: { [key: string]: { [key: string]: string; }; } | null;
34
+ 'info'?: { [key: string]: { [key: string]: object; }; } | null;
35
35
  /**
36
36
  *
37
- * @type {{ [key: string]: { [key: string]: string; }; }}
37
+ * @type {{ [key: string]: { [key: string]: object; }; }}
38
38
  * @memberof InlineResponse503
39
39
  */
40
- 'error'?: { [key: string]: { [key: string]: string; }; } | null;
40
+ 'error'?: { [key: string]: { [key: string]: object; }; } | null;
41
41
  /**
42
42
  *
43
- * @type {{ [key: string]: { [key: string]: string; }; }}
43
+ * @type {{ [key: string]: { [key: string]: object; }; }}
44
44
  * @memberof InlineResponse503
45
45
  */
46
- 'details'?: { [key: string]: { [key: string]: string; }; };
46
+ 'details'?: { [key: string]: { [key: string]: object; }; };
47
47
  }
48
48