@emilgroup/insurance-sdk 1.95.1-beta.8 → 1.96.1-beta.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.
- package/.openapi-generator/FILES +22 -9
- package/README.md +2 -2
- package/api/product-configs-api.ts +190 -706
- package/dist/api/product-configs-api.d.ts +132 -421
- package/dist/api/product-configs-api.js +133 -591
- package/dist/models/amount-with-limit-class.d.ts +1 -1
- package/dist/models/calculated-policy-object-class.d.ts +36 -0
- package/dist/models/calculation-errors-class.d.ts +25 -0
- package/dist/models/calculation-item-errors-class.d.ts +43 -0
- package/dist/models/{update-product-config-request-dto.d.ts → calculation-message-class.d.ts} +11 -5
- package/dist/models/category-calculation-order-class.d.ts +25 -0
- package/dist/models/category-calculation-step-class.d.ts +58 -0
- package/dist/models/category-calculation-step-class.js +24 -0
- package/dist/models/category-class.d.ts +7 -12
- package/dist/models/category-coverage-summary-class.d.ts +43 -0
- package/dist/models/category-definition-class.d.ts +43 -0
- package/dist/models/coverage-class.d.ts +0 -12
- package/dist/models/coverage-definition-class.d.ts +36 -0
- package/dist/models/coverage-definition-class.js +15 -0
- package/dist/models/coverage-term-class.d.ts +13 -1
- package/dist/models/coverage-term-class.js +6 -1
- package/dist/models/create-product-field-request-dto.d.ts +6 -0
- package/dist/models/custom-field-class.d.ts +2 -0
- package/dist/models/custom-field-class.js +3 -1
- package/dist/models/deductible-class.d.ts +6 -6
- package/dist/models/general-setting-class.d.ts +0 -7
- package/dist/models/get-product-config-tariffs-response-class.d.ts +31 -0
- package/dist/models/get-product-config-tariffs-response-class.js +15 -0
- package/dist/models/index.d.ts +22 -9
- package/dist/models/index.js +22 -9
- package/dist/models/lead-policy-object-class.d.ts +42 -0
- package/dist/models/lead-policy-object-class.js +15 -0
- package/dist/models/product-config-summary-class.d.ts +72 -0
- package/dist/models/product-config-summary-class.js +15 -0
- package/dist/models/product-field-class.d.ts +6 -0
- package/dist/models/rest-calculate-product-tariff-quote-request-dto.d.ts +38 -0
- package/dist/models/rest-calculate-product-tariff-quote-request-dto.js +15 -0
- package/dist/models/rest-calculate-product-tariff-quote-response-class.d.ts +25 -0
- package/dist/models/rest-calculate-product-tariff-quote-response-class.js +15 -0
- package/dist/models/rest-list-product-configs-response-class.d.ts +3 -3
- package/dist/models/{delete-response-by-code-class.d.ts → shared-create-estimated-invoice-response-class.d.ts} +7 -6
- package/dist/models/shared-create-estimated-invoice-response-class.js +15 -0
- package/dist/models/shared-product-config-class.d.ts +5 -5
- package/dist/models/{shared-product-version-config-class.d.ts → shared-product-config-data-class.d.ts} +11 -4
- package/dist/models/shared-product-config-data-class.js +15 -0
- package/dist/models/shared-product-field-class.d.ts +6 -0
- package/dist/models/shared-product-tariff-quote-class.d.ts +52 -0
- package/dist/models/shared-product-tariff-quote-class.js +15 -0
- package/dist/models/shared-tariff-variation-class.d.ts +18 -9
- package/dist/models/tariff-calculation-order-class.d.ts +36 -0
- package/dist/models/{shared-product-config-version-class.js → tariff-calculation-order-class.js} +4 -5
- package/dist/models/tariff-calculation-step-class.d.ts +58 -0
- package/dist/models/{update-product-config-version-status-request-dto.js → tariff-calculation-step-class.js} +8 -5
- package/dist/models/tariff-category-summary-class.d.ts +57 -0
- package/dist/models/tariff-category-summary-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +8 -20
- package/dist/models/tariff-coverage-term-class.js +5 -5
- package/dist/models/tariff-info-class.d.ts +47 -0
- package/dist/models/tariff-info-class.js +20 -0
- package/dist/models/tariff-summary-class.d.ts +52 -0
- package/dist/models/tariff-summary-class.js +15 -0
- package/dist/models/update-product-field-request-dto.d.ts +6 -0
- package/dist/models/waiting-period-class.d.ts +1 -2
- package/dist/models/waiting-period-class.js +0 -1
- package/dist/models/warning-class.d.ts +0 -6
- package/models/amount-with-limit-class.ts +1 -1
- package/models/calculated-policy-object-class.ts +42 -0
- package/models/calculation-errors-class.ts +31 -0
- package/models/calculation-item-errors-class.ts +49 -0
- package/models/{update-product-config-request-dto.ts → calculation-message-class.ts} +11 -5
- package/models/category-calculation-order-class.ts +31 -0
- package/models/category-calculation-step-class.ts +68 -0
- package/models/category-class.ts +7 -12
- package/models/category-coverage-summary-class.ts +49 -0
- package/models/category-definition-class.ts +49 -0
- package/models/coverage-class.ts +0 -12
- package/models/coverage-definition-class.ts +42 -0
- package/models/coverage-term-class.ts +14 -1
- package/models/create-product-field-request-dto.ts +6 -0
- package/models/custom-field-class.ts +3 -1
- package/models/deductible-class.ts +6 -6
- package/models/general-setting-class.ts +0 -7
- package/models/get-product-config-tariffs-response-class.ts +37 -0
- package/models/index.ts +22 -9
- package/models/lead-policy-object-class.ts +48 -0
- package/models/product-config-summary-class.ts +78 -0
- package/models/product-field-class.ts +6 -0
- package/models/rest-calculate-product-tariff-quote-request-dto.ts +44 -0
- package/models/rest-calculate-product-tariff-quote-response-class.ts +31 -0
- package/models/rest-list-product-configs-response-class.ts +3 -3
- package/models/{delete-response-by-code-class.ts → shared-create-estimated-invoice-response-class.ts} +7 -6
- package/models/shared-product-config-class.ts +5 -5
- package/models/{shared-product-version-config-class.ts → shared-product-config-data-class.ts} +11 -4
- package/models/shared-product-field-class.ts +6 -0
- package/models/shared-product-tariff-quote-class.ts +58 -0
- package/models/shared-tariff-variation-class.ts +18 -9
- package/models/tariff-calculation-order-class.ts +45 -0
- package/models/tariff-calculation-step-class.ts +68 -0
- package/models/tariff-category-summary-class.ts +63 -0
- package/models/tariff-coverage-term-class.ts +8 -20
- package/models/tariff-info-class.ts +56 -0
- package/models/tariff-summary-class.ts +58 -0
- package/models/update-product-field-request-dto.ts +6 -0
- package/models/waiting-period-class.ts +1 -2
- package/models/warning-class.ts +0 -6
- package/package.json +1 -1
- package/dist/models/rest-create-product-config-version-response-class.d.ts +0 -25
- package/dist/models/rest-get-product-config-version-response-class.d.ts +0 -25
- package/dist/models/rest-list-product-config-versions-response-class.d.ts +0 -43
- package/dist/models/rest-update-product-config-version-response-class.d.ts +0 -25
- package/dist/models/shared-product-config-version-class.d.ts +0 -85
- package/dist/models/update-product-config-version-status-request-dto.d.ts +0 -30
- package/models/rest-create-product-config-version-response-class.ts +0 -31
- package/models/rest-get-product-config-version-response-class.ts +0 -31
- package/models/rest-list-product-config-versions-response-class.ts +0 -49
- package/models/rest-update-product-config-version-response-class.ts +0 -31
- package/models/shared-product-config-version-class.ts +0 -94
- package/models/update-product-config-version-status-request-dto.ts +0 -39
- /package/dist/models/{delete-response-by-code-class.js → calculated-policy-object-class.js} +0 -0
- /package/dist/models/{rest-create-product-config-version-response-class.js → calculation-errors-class.js} +0 -0
- /package/dist/models/{rest-get-product-config-version-response-class.js → calculation-item-errors-class.js} +0 -0
- /package/dist/models/{rest-list-product-config-versions-response-class.js → calculation-message-class.js} +0 -0
- /package/dist/models/{rest-update-product-config-version-response-class.js → category-calculation-order-class.js} +0 -0
- /package/dist/models/{shared-product-version-config-class.js → category-coverage-summary-class.js} +0 -0
- /package/dist/models/{update-product-config-request-dto.js → category-definition-class.js} +0 -0
package/.openapi-generator/FILES
CHANGED
|
@@ -42,7 +42,15 @@ models/booking-funnel-class.ts
|
|
|
42
42
|
models/calculate-custom-premium-request-dto.ts
|
|
43
43
|
models/calculate-premium-request-dto.ts
|
|
44
44
|
models/calculate-product-fields-request-dto.ts
|
|
45
|
+
models/calculated-policy-object-class.ts
|
|
46
|
+
models/calculation-errors-class.ts
|
|
47
|
+
models/calculation-item-errors-class.ts
|
|
48
|
+
models/calculation-message-class.ts
|
|
49
|
+
models/category-calculation-order-class.ts
|
|
50
|
+
models/category-calculation-step-class.ts
|
|
45
51
|
models/category-class.ts
|
|
52
|
+
models/category-coverage-summary-class.ts
|
|
53
|
+
models/category-definition-class.ts
|
|
46
54
|
models/claim-config-class.ts
|
|
47
55
|
models/claim-position-fields-class.ts
|
|
48
56
|
models/clone-lead-request-dto.ts
|
|
@@ -53,6 +61,7 @@ models/commission-agreement-product-class.ts
|
|
|
53
61
|
models/commission-agreement-version-class.ts
|
|
54
62
|
models/commission-recipient-class.ts
|
|
55
63
|
models/coverage-class.ts
|
|
64
|
+
models/coverage-definition-class.ts
|
|
56
65
|
models/coverage-term-class.ts
|
|
57
66
|
models/create-account-request-dto.ts
|
|
58
67
|
models/create-bank-account-request-dto.ts
|
|
@@ -102,7 +111,6 @@ models/csv-product-factor-dto.ts
|
|
|
102
111
|
models/custom-field-class.ts
|
|
103
112
|
models/deductible-class.ts
|
|
104
113
|
models/delete-draft-policy-request-dto.ts
|
|
105
|
-
models/delete-response-by-code-class.ts
|
|
106
114
|
models/delete-response-class.ts
|
|
107
115
|
models/emil-function-class.ts
|
|
108
116
|
models/emil-function-secret-class.ts
|
|
@@ -133,6 +141,7 @@ models/get-policy-request-dto.ts
|
|
|
133
141
|
models/get-policy-response-class.ts
|
|
134
142
|
models/get-premium-formula-request-dto.ts
|
|
135
143
|
models/get-premium-formula-response-class.ts
|
|
144
|
+
models/get-product-config-tariffs-response-class.ts
|
|
136
145
|
models/get-product-factor-response-class.ts
|
|
137
146
|
models/get-product-factor-value-request-dto.ts
|
|
138
147
|
models/get-product-factor-value-response-class.ts
|
|
@@ -158,6 +167,7 @@ models/invoice-item-class.ts
|
|
|
158
167
|
models/invoice-status-class.ts
|
|
159
168
|
models/lead-bank-account-class.ts
|
|
160
169
|
models/lead-class.ts
|
|
170
|
+
models/lead-policy-object-class.ts
|
|
161
171
|
models/lead-status-class.ts
|
|
162
172
|
models/link-lead-partner-request-dto.ts
|
|
163
173
|
models/link-partner-request-dto.ts
|
|
@@ -215,6 +225,7 @@ models/premium-override-dto.ts
|
|
|
215
225
|
models/premium-override-request-class.ts
|
|
216
226
|
models/premium-override-request-dto.ts
|
|
217
227
|
models/product-class.ts
|
|
228
|
+
models/product-config-summary-class.ts
|
|
218
229
|
models/product-factor-class.ts
|
|
219
230
|
models/product-factor-for-version-class.ts
|
|
220
231
|
models/product-factor-value-class.ts
|
|
@@ -222,20 +233,19 @@ models/product-factor-value-for-version-class.ts
|
|
|
222
233
|
models/product-field-class.ts
|
|
223
234
|
models/product-field-type-class.ts
|
|
224
235
|
models/product-version-class.ts
|
|
236
|
+
models/rest-calculate-product-tariff-quote-request-dto.ts
|
|
237
|
+
models/rest-calculate-product-tariff-quote-response-class.ts
|
|
225
238
|
models/rest-clone-lead-account-request-dto.ts
|
|
226
239
|
models/rest-create-product-config-response-class.ts
|
|
227
|
-
models/rest-create-product-config-version-response-class.ts
|
|
228
240
|
models/rest-get-product-config-response-class.ts
|
|
229
|
-
models/rest-get-product-config-version-response-class.ts
|
|
230
|
-
models/rest-list-product-config-versions-response-class.ts
|
|
231
241
|
models/rest-list-product-configs-response-class.ts
|
|
232
242
|
models/rest-update-product-config-response-class.ts
|
|
233
|
-
models/rest-update-product-config-version-response-class.ts
|
|
234
243
|
models/restore-policy-version-request-dto.ts
|
|
235
244
|
models/restore-policy-version-response-class.ts
|
|
236
245
|
models/sepa-dto.ts
|
|
237
246
|
models/shared-bank-transfer-response-class.ts
|
|
238
247
|
models/shared-billing-address-response-class.ts
|
|
248
|
+
models/shared-create-estimated-invoice-response-class.ts
|
|
239
249
|
models/shared-create-lead-policy-request-dto.ts
|
|
240
250
|
models/shared-create-payment-method-request-dto.ts
|
|
241
251
|
models/shared-eis-sepa-debit-dto.ts
|
|
@@ -247,10 +257,10 @@ models/shared-mandate-hash-data-response-class.ts
|
|
|
247
257
|
models/shared-mandate-response-class.ts
|
|
248
258
|
models/shared-payment-method-response-class.ts
|
|
249
259
|
models/shared-product-config-class.ts
|
|
250
|
-
models/shared-product-config-
|
|
260
|
+
models/shared-product-config-data-class.ts
|
|
251
261
|
models/shared-product-field-class.ts
|
|
252
262
|
models/shared-product-field-override-class.ts
|
|
253
|
-
models/shared-product-
|
|
263
|
+
models/shared-product-tariff-quote-class.ts
|
|
254
264
|
models/shared-sepa-response-class.ts
|
|
255
265
|
models/shared-tariff-variation-class.ts
|
|
256
266
|
models/shared-update-named-range-request-dto.ts
|
|
@@ -263,7 +273,12 @@ models/suspend-policy-response-class.ts
|
|
|
263
273
|
models/swap-premium-formulas-order-request-dto.ts
|
|
264
274
|
models/swap-product-fields-order-request-dto.ts
|
|
265
275
|
models/tag-class.ts
|
|
276
|
+
models/tariff-calculation-order-class.ts
|
|
277
|
+
models/tariff-calculation-step-class.ts
|
|
278
|
+
models/tariff-category-summary-class.ts
|
|
266
279
|
models/tariff-coverage-term-class.ts
|
|
280
|
+
models/tariff-info-class.ts
|
|
281
|
+
models/tariff-summary-class.ts
|
|
267
282
|
models/terminate-policy-request-dto.ts
|
|
268
283
|
models/terminate-policy-response-class.ts
|
|
269
284
|
models/timeslice-class.ts
|
|
@@ -295,8 +310,6 @@ models/update-policy-request-dto.ts
|
|
|
295
310
|
models/update-policy-response-class.ts
|
|
296
311
|
models/update-premium-formula-request-dto.ts
|
|
297
312
|
models/update-premium-formula-response-class.ts
|
|
298
|
-
models/update-product-config-request-dto.ts
|
|
299
|
-
models/update-product-config-version-status-request-dto.ts
|
|
300
313
|
models/update-product-field-request-dto.ts
|
|
301
314
|
models/update-product-field-response-class.ts
|
|
302
315
|
models/update-product-request-dto.ts
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/insurance-sdk@1.
|
|
20
|
+
npm install @emilgroup/insurance-sdk@1.96.1-beta.0 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk@1.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk@1.96.1-beta.0
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|