@emilgroup/insurance-sdk 1.72.1-beta.9 → 1.73.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.
Files changed (48) hide show
  1. package/.openapi-generator/FILES +0 -1
  2. package/README.md +2 -2
  3. package/dist/api/booking-funnel-versions-api.js +8 -25
  4. package/dist/api/booking-funnels-api.js +20 -53
  5. package/dist/api/commission-agreement-items-api.js +17 -46
  6. package/dist/api/commission-agreement-products-api.js +17 -46
  7. package/dist/api/commission-agreement-versions-api.js +14 -39
  8. package/dist/api/commission-agreements-api.js +17 -46
  9. package/dist/api/commission-recipients-api.js +17 -46
  10. package/dist/api/emil-functions-api.js +35 -88
  11. package/dist/api/health-check-api.js +5 -18
  12. package/dist/api/insured-object-types-api.js +5 -18
  13. package/dist/api/insured-objects-api.js +14 -39
  14. package/dist/api/lead-statuses-api.js +17 -46
  15. package/dist/api/lead-versions-api.js +8 -25
  16. package/dist/api/leads-api.js +32 -81
  17. package/dist/api/named-ranges-api.js +20 -53
  18. package/dist/api/partner-links-api.js +20 -53
  19. package/dist/api/partner-roles-api.js +17 -46
  20. package/dist/api/policies-api.js +50 -123
  21. package/dist/api/premium-formulas-api.js +20 -53
  22. package/dist/api/product-factors-api.js +23 -60
  23. package/dist/api/product-fields-api.js +23 -60
  24. package/dist/api/product-versions-api.js +8 -25
  25. package/dist/api/products-api.js +20 -53
  26. package/dist/api/status-transition-rules-api.js +20 -53
  27. package/dist/base.js +5 -5
  28. package/dist/common.d.ts +1 -1
  29. package/dist/common.js +2 -2
  30. package/dist/models/create-product-field-request-dto.d.ts +0 -22
  31. package/dist/models/create-product-field-request-dto.js +1 -9
  32. package/dist/models/index.d.ts +0 -1
  33. package/dist/models/index.js +0 -1
  34. package/dist/models/product-field-class.d.ts +0 -34
  35. package/dist/models/product-field-class.js +0 -9
  36. package/dist/models/shared-product-field-class.d.ts +0 -34
  37. package/dist/models/shared-product-field-class.js +0 -9
  38. package/dist/models/update-product-field-request-dto.d.ts +0 -22
  39. package/dist/models/update-product-field-request-dto.js +1 -9
  40. package/models/create-product-field-request-dto.ts +0 -24
  41. package/models/index.ts +0 -1
  42. package/models/product-field-class.ts +0 -38
  43. package/models/shared-product-field-class.ts +0 -38
  44. package/models/update-product-field-request-dto.ts +0 -24
  45. package/package.json +3 -3
  46. package/dist/models/create-product-version-request-dto.d.ts +0 -30
  47. package/dist/models/create-product-version-request-dto.js +0 -15
  48. package/models/create-product-version-request-dto.ts +0 -36
@@ -134,30 +134,6 @@ export interface ProductFieldClass {
134
134
  * @memberof ProductFieldClass
135
135
  */
136
136
  'metadata'?: object;
137
- /**
138
- * Is this field is used the premium calculation?
139
- * @type {boolean}
140
- * @memberof ProductFieldClass
141
- */
142
- 'usedInPremiumCalculation': boolean;
143
- /**
144
- * Overrides automatic dependency check result (if this field is used in the premium calculation or not).
145
- * @type {string}
146
- * @memberof ProductFieldClass
147
- */
148
- 'usedInPremiumCalculationOverride': ProductFieldClassUsedInPremiumCalculationOverrideEnum;
149
- /**
150
- * Is this field is used the product field calculation?
151
- * @type {boolean}
152
- * @memberof ProductFieldClass
153
- */
154
- 'usedInFieldCalculation': boolean;
155
- /**
156
- * Overrides automatic dependency check result (if this field is used in the product field calculation or not).
157
- * @type {string}
158
- * @memberof ProductFieldClass
159
- */
160
- 'usedInFieldCalculationOverride': ProductFieldClassUsedInFieldCalculationOverrideEnum;
161
137
  /**
162
138
  * Time at which the object was created.
163
139
  * @type {string}
@@ -184,17 +160,3 @@ export interface ProductFieldClass {
184
160
  'updatedBy': string;
185
161
  }
186
162
 
187
- export const ProductFieldClassUsedInPremiumCalculationOverrideEnum = {
188
- Used: 'used',
189
- NotUsed: 'not_used'
190
- } as const;
191
-
192
- export type ProductFieldClassUsedInPremiumCalculationOverrideEnum = typeof ProductFieldClassUsedInPremiumCalculationOverrideEnum[keyof typeof ProductFieldClassUsedInPremiumCalculationOverrideEnum];
193
- export const ProductFieldClassUsedInFieldCalculationOverrideEnum = {
194
- Used: 'used',
195
- NotUsed: 'not_used'
196
- } as const;
197
-
198
- export type ProductFieldClassUsedInFieldCalculationOverrideEnum = typeof ProductFieldClassUsedInFieldCalculationOverrideEnum[keyof typeof ProductFieldClassUsedInFieldCalculationOverrideEnum];
199
-
200
-
@@ -134,30 +134,6 @@ export interface SharedProductFieldClass {
134
134
  * @memberof SharedProductFieldClass
135
135
  */
136
136
  'metadata'?: object;
137
- /**
138
- * Is this field is used the premium calculation?
139
- * @type {boolean}
140
- * @memberof SharedProductFieldClass
141
- */
142
- 'usedInPremiumCalculation': boolean;
143
- /**
144
- * Overrides automatic dependency check result (if this field is used in the premium calculation or not).
145
- * @type {string}
146
- * @memberof SharedProductFieldClass
147
- */
148
- 'usedInPremiumCalculationOverride': SharedProductFieldClassUsedInPremiumCalculationOverrideEnum;
149
- /**
150
- * Is this field is used the product field calculation?
151
- * @type {boolean}
152
- * @memberof SharedProductFieldClass
153
- */
154
- 'usedInFieldCalculation': boolean;
155
- /**
156
- * Overrides automatic dependency check result (if this field is used in the product field calculation or not).
157
- * @type {string}
158
- * @memberof SharedProductFieldClass
159
- */
160
- 'usedInFieldCalculationOverride': SharedProductFieldClassUsedInFieldCalculationOverrideEnum;
161
137
  /**
162
138
  * Time at which the object was created.
163
139
  * @type {string}
@@ -184,17 +160,3 @@ export interface SharedProductFieldClass {
184
160
  'updatedBy': string;
185
161
  }
186
162
 
187
- export const SharedProductFieldClassUsedInPremiumCalculationOverrideEnum = {
188
- Used: 'used',
189
- NotUsed: 'not_used'
190
- } as const;
191
-
192
- export type SharedProductFieldClassUsedInPremiumCalculationOverrideEnum = typeof SharedProductFieldClassUsedInPremiumCalculationOverrideEnum[keyof typeof SharedProductFieldClassUsedInPremiumCalculationOverrideEnum];
193
- export const SharedProductFieldClassUsedInFieldCalculationOverrideEnum = {
194
- Used: 'used',
195
- NotUsed: 'not_used'
196
- } as const;
197
-
198
- export type SharedProductFieldClassUsedInFieldCalculationOverrideEnum = typeof SharedProductFieldClassUsedInFieldCalculationOverrideEnum[keyof typeof SharedProductFieldClassUsedInFieldCalculationOverrideEnum];
199
-
200
-
@@ -152,18 +152,6 @@ export interface UpdateProductFieldRequestDto {
152
152
  * @memberof UpdateProductFieldRequestDto
153
153
  */
154
154
  'metadata'?: object;
155
- /**
156
- * Overrides automatic dependency check result (if this field is used in the premium calculation or not).
157
- * @type {string}
158
- * @memberof UpdateProductFieldRequestDto
159
- */
160
- 'usedInPremiumCalculationOverride'?: UpdateProductFieldRequestDtoUsedInPremiumCalculationOverrideEnum;
161
- /**
162
- * Overrides automatic dependency check result (if this field is used in the product field calculation or not).
163
- * @type {string}
164
- * @memberof UpdateProductFieldRequestDto
165
- */
166
- 'usedInFieldCalculationOverride'?: UpdateProductFieldRequestDtoUsedInFieldCalculationOverrideEnum;
167
155
  }
168
156
 
169
157
  export const UpdateProductFieldRequestDtoTypeEntityEnum = {
@@ -172,17 +160,5 @@ export const UpdateProductFieldRequestDtoTypeEntityEnum = {
172
160
  } as const;
173
161
 
174
162
  export type UpdateProductFieldRequestDtoTypeEntityEnum = typeof UpdateProductFieldRequestDtoTypeEntityEnum[keyof typeof UpdateProductFieldRequestDtoTypeEntityEnum];
175
- export const UpdateProductFieldRequestDtoUsedInPremiumCalculationOverrideEnum = {
176
- Used: 'used',
177
- NotUsed: 'not_used'
178
- } as const;
179
-
180
- export type UpdateProductFieldRequestDtoUsedInPremiumCalculationOverrideEnum = typeof UpdateProductFieldRequestDtoUsedInPremiumCalculationOverrideEnum[keyof typeof UpdateProductFieldRequestDtoUsedInPremiumCalculationOverrideEnum];
181
- export const UpdateProductFieldRequestDtoUsedInFieldCalculationOverrideEnum = {
182
- Used: 'used',
183
- NotUsed: 'not_used'
184
- } as const;
185
-
186
- export type UpdateProductFieldRequestDtoUsedInFieldCalculationOverrideEnum = typeof UpdateProductFieldRequestDtoUsedInFieldCalculationOverrideEnum[keyof typeof UpdateProductFieldRequestDtoUsedInFieldCalculationOverrideEnum];
187
163
 
188
164
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emilgroup/insurance-sdk",
3
- "version": "1.72.1-beta.9",
3
+ "version": "1.73.0",
4
4
  "description": "OpenAPI client for @emilgroup/insurance-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -18,9 +18,9 @@
18
18
  "prepare": "npm run build"
19
19
  },
20
20
  "dependencies": {
21
- "axios": "^1.9.0"
21
+ "axios": "^0.27.2"
22
22
  },
23
23
  "devDependencies": {
24
- "typescript": "^5.8"
24
+ "typescript": "^4.0"
25
25
  }
26
26
  }
@@ -1,30 +0,0 @@
1
- /**
2
- * EMIL InsuranceService
3
- * The EMIL InsuranceService 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 CreateProductVersionRequestDto
16
- */
17
- export interface CreateProductVersionRequestDto {
18
- /**
19
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
20
- * @type {string}
21
- * @memberof CreateProductVersionRequestDto
22
- */
23
- 'productSlug': string;
24
- /**
25
- * product version description
26
- * @type {string}
27
- * @memberof CreateProductVersionRequestDto
28
- */
29
- 'description': string;
30
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /**
5
- * EMIL InsuranceService
6
- * The EMIL InsuranceService 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,36 +0,0 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- /**
4
- * EMIL InsuranceService
5
- * The EMIL InsuranceService 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 CreateProductVersionRequestDto
21
- */
22
- export interface CreateProductVersionRequestDto {
23
- /**
24
- * A slug is a human-readable, unique identifier, used to identify a resource instead of a less human-readable identifier like an id.
25
- * @type {string}
26
- * @memberof CreateProductVersionRequestDto
27
- */
28
- 'productSlug': string;
29
- /**
30
- * product version description
31
- * @type {string}
32
- * @memberof CreateProductVersionRequestDto
33
- */
34
- 'description': string;
35
- }
36
-