@emilgroup/insurance-sdk-node 1.93.0 → 1.93.1-beta.11
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 +29 -0
- package/README.md +2 -2
- package/api/product-configs-api.ts +1371 -0
- package/api.ts +2 -0
- package/dist/api/product-configs-api.d.ts +765 -0
- package/dist/api/product-configs-api.js +1225 -0
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/models/amount-with-limit-class.d.ts +30 -0
- package/dist/models/amount-with-limit-class.js +15 -0
- package/dist/models/category-class.d.ts +57 -0
- package/dist/models/category-class.js +15 -0
- package/dist/models/claim-config-class.d.ts +39 -0
- package/dist/models/claim-config-class.js +15 -0
- package/dist/models/claim-position-fields-class.d.ts +31 -0
- package/dist/models/claim-position-fields-class.js +15 -0
- package/dist/models/coverage-class.d.ts +43 -0
- package/dist/models/coverage-class.js +15 -0
- package/dist/models/coverage-term-class.d.ts +54 -0
- package/dist/models/coverage-term-class.js +25 -0
- package/dist/models/custom-field-class.d.ts +50 -0
- package/dist/models/custom-field-class.js +23 -0
- package/dist/models/deductible-class.d.ts +60 -0
- package/dist/models/deductible-class.js +25 -0
- package/dist/models/delete-response-by-code-class.d.ts +24 -0
- package/dist/models/delete-response-by-code-class.js +15 -0
- package/dist/models/general-setting-class.d.ts +56 -0
- package/dist/models/general-setting-class.js +33 -0
- package/dist/models/index.d.ts +28 -0
- package/dist/models/index.js +28 -0
- package/dist/models/rest-create-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-response-class.js +15 -0
- package/dist/models/rest-create-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-create-product-config-version-response-class.js +15 -0
- package/dist/models/rest-get-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-response-class.js +15 -0
- package/dist/models/rest-get-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-get-product-config-version-response-class.js +15 -0
- package/dist/models/rest-list-product-config-versions-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-config-versions-response-class.js +15 -0
- package/dist/models/rest-list-product-configs-response-class.d.ts +43 -0
- package/dist/models/rest-list-product-configs-response-class.js +15 -0
- package/dist/models/rest-update-product-config-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-response-class.js +15 -0
- package/dist/models/rest-update-product-config-version-response-class.d.ts +25 -0
- package/dist/models/rest-update-product-config-version-response-class.js +15 -0
- package/dist/models/shared-product-config-class.d.ts +79 -0
- package/dist/models/shared-product-config-class.js +15 -0
- package/dist/models/shared-product-config-version-class.d.ts +85 -0
- package/dist/models/shared-product-config-version-class.js +21 -0
- package/dist/models/shared-product-field-override-class.d.ts +48 -0
- package/dist/models/shared-product-field-override-class.js +15 -0
- package/dist/models/shared-product-version-config-class.d.ts +32 -0
- package/dist/models/shared-product-version-config-class.js +15 -0
- package/dist/models/shared-tariff-variation-class.d.ts +64 -0
- package/dist/models/shared-tariff-variation-class.js +15 -0
- package/dist/models/tariff-coverage-term-class.d.ts +72 -0
- package/dist/models/tariff-coverage-term-class.js +30 -0
- package/dist/models/update-product-config-request-dto.d.ts +24 -0
- package/dist/models/update-product-config-request-dto.js +15 -0
- package/dist/models/update-product-config-version-status-request-dto.d.ts +30 -0
- package/dist/models/update-product-config-version-status-request-dto.js +21 -0
- package/dist/models/waiting-period-class.d.ts +41 -0
- package/dist/models/waiting-period-class.js +20 -0
- package/dist/models/warning-class.d.ts +47 -0
- package/dist/models/warning-class.js +20 -0
- package/models/amount-with-limit-class.ts +36 -0
- package/models/category-class.ts +63 -0
- package/models/claim-config-class.ts +45 -0
- package/models/claim-position-fields-class.ts +37 -0
- package/models/coverage-class.ts +49 -0
- package/models/coverage-term-class.ts +64 -0
- package/models/custom-field-class.ts +59 -0
- package/models/deductible-class.ts +70 -0
- package/models/delete-response-by-code-class.ts +30 -0
- package/models/general-setting-class.ts +66 -0
- package/models/index.ts +28 -0
- package/models/rest-create-product-config-response-class.ts +31 -0
- package/models/rest-create-product-config-version-response-class.ts +31 -0
- package/models/rest-get-product-config-response-class.ts +31 -0
- package/models/rest-get-product-config-version-response-class.ts +31 -0
- package/models/rest-list-product-config-versions-response-class.ts +49 -0
- package/models/rest-list-product-configs-response-class.ts +49 -0
- package/models/rest-update-product-config-response-class.ts +31 -0
- package/models/rest-update-product-config-version-response-class.ts +31 -0
- package/models/shared-product-config-class.ts +85 -0
- package/models/shared-product-config-version-class.ts +94 -0
- package/models/shared-product-field-override-class.ts +54 -0
- package/models/shared-product-version-config-class.ts +38 -0
- package/models/shared-tariff-variation-class.ts +70 -0
- package/models/tariff-coverage-term-class.ts +83 -0
- package/models/update-product-config-request-dto.ts +30 -0
- package/models/update-product-config-version-status-request-dto.ts +39 -0
- package/models/waiting-period-class.ts +50 -0
- package/models/warning-class.ts +56 -0
- package/package.json +2 -2
package/.openapi-generator/FILES
CHANGED
|
@@ -22,6 +22,7 @@ api/partner-links-api.ts
|
|
|
22
22
|
api/partner-roles-api.ts
|
|
23
23
|
api/policies-api.ts
|
|
24
24
|
api/premium-formulas-api.ts
|
|
25
|
+
api/product-configs-api.ts
|
|
25
26
|
api/product-factors-api.ts
|
|
26
27
|
api/product-fields-api.ts
|
|
27
28
|
api/product-versions-api.ts
|
|
@@ -34,12 +35,16 @@ git_push.sh
|
|
|
34
35
|
index.ts
|
|
35
36
|
models/activate-policy-request-dto.ts
|
|
36
37
|
models/activate-policy-response-class.ts
|
|
38
|
+
models/amount-with-limit-class.ts
|
|
37
39
|
models/bank-transfer-dto.ts
|
|
38
40
|
models/billing-address-dto.ts
|
|
39
41
|
models/booking-funnel-class.ts
|
|
40
42
|
models/calculate-custom-premium-request-dto.ts
|
|
41
43
|
models/calculate-premium-request-dto.ts
|
|
42
44
|
models/calculate-product-fields-request-dto.ts
|
|
45
|
+
models/category-class.ts
|
|
46
|
+
models/claim-config-class.ts
|
|
47
|
+
models/claim-position-fields-class.ts
|
|
43
48
|
models/clone-lead-request-dto.ts
|
|
44
49
|
models/clone-product-version-request-dto.ts
|
|
45
50
|
models/commission-agreement-class.ts
|
|
@@ -47,6 +52,8 @@ models/commission-agreement-item-class.ts
|
|
|
47
52
|
models/commission-agreement-product-class.ts
|
|
48
53
|
models/commission-agreement-version-class.ts
|
|
49
54
|
models/commission-recipient-class.ts
|
|
55
|
+
models/coverage-class.ts
|
|
56
|
+
models/coverage-term-class.ts
|
|
50
57
|
models/create-account-request-dto.ts
|
|
51
58
|
models/create-bank-account-request-dto.ts
|
|
52
59
|
models/create-booking-funnel-request-dto.ts
|
|
@@ -92,7 +99,10 @@ models/create-product-version-request-dto.ts
|
|
|
92
99
|
models/create-status-transition-rule-request-dto.ts
|
|
93
100
|
models/create-status-transition-rule-response-class.ts
|
|
94
101
|
models/csv-product-factor-dto.ts
|
|
102
|
+
models/custom-field-class.ts
|
|
103
|
+
models/deductible-class.ts
|
|
95
104
|
models/delete-draft-policy-request-dto.ts
|
|
105
|
+
models/delete-response-by-code-class.ts
|
|
96
106
|
models/delete-response-class.ts
|
|
97
107
|
models/emil-function-class.ts
|
|
98
108
|
models/emil-function-secret-class.ts
|
|
@@ -100,6 +110,7 @@ models/empty-response-class.ts
|
|
|
100
110
|
models/execute-emil-function-request-dto.ts
|
|
101
111
|
models/filter-named-range-request-dto.ts
|
|
102
112
|
models/filter-named-range-response-class.ts
|
|
113
|
+
models/general-setting-class.ts
|
|
103
114
|
models/get-booking-funnel-response-class.ts
|
|
104
115
|
models/get-booking-funnel-version-request-dto.ts
|
|
105
116
|
models/get-commission-agreement-item-response-class.ts
|
|
@@ -212,6 +223,14 @@ models/product-field-class.ts
|
|
|
212
223
|
models/product-field-type-class.ts
|
|
213
224
|
models/product-version-class.ts
|
|
214
225
|
models/rest-clone-lead-account-request-dto.ts
|
|
226
|
+
models/rest-create-product-config-response-class.ts
|
|
227
|
+
models/rest-create-product-config-version-response-class.ts
|
|
228
|
+
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
|
+
models/rest-list-product-configs-response-class.ts
|
|
232
|
+
models/rest-update-product-config-response-class.ts
|
|
233
|
+
models/rest-update-product-config-version-response-class.ts
|
|
215
234
|
models/restore-policy-version-request-dto.ts
|
|
216
235
|
models/restore-policy-version-response-class.ts
|
|
217
236
|
models/sepa-dto.ts
|
|
@@ -227,8 +246,13 @@ models/shared-mandate-hash-data-dto.ts
|
|
|
227
246
|
models/shared-mandate-hash-data-response-class.ts
|
|
228
247
|
models/shared-mandate-response-class.ts
|
|
229
248
|
models/shared-payment-method-response-class.ts
|
|
249
|
+
models/shared-product-config-class.ts
|
|
250
|
+
models/shared-product-config-version-class.ts
|
|
230
251
|
models/shared-product-field-class.ts
|
|
252
|
+
models/shared-product-field-override-class.ts
|
|
253
|
+
models/shared-product-version-config-class.ts
|
|
231
254
|
models/shared-sepa-response-class.ts
|
|
255
|
+
models/shared-tariff-variation-class.ts
|
|
232
256
|
models/shared-update-named-range-request-dto.ts
|
|
233
257
|
models/shared-update-premium-formula-request-dto.ts
|
|
234
258
|
models/status-transition-rule-class.ts
|
|
@@ -239,6 +263,7 @@ models/suspend-policy-response-class.ts
|
|
|
239
263
|
models/swap-premium-formulas-order-request-dto.ts
|
|
240
264
|
models/swap-product-fields-order-request-dto.ts
|
|
241
265
|
models/tag-class.ts
|
|
266
|
+
models/tariff-coverage-term-class.ts
|
|
242
267
|
models/terminate-policy-request-dto.ts
|
|
243
268
|
models/terminate-policy-response-class.ts
|
|
244
269
|
models/timeslice-class.ts
|
|
@@ -270,6 +295,8 @@ models/update-policy-request-dto.ts
|
|
|
270
295
|
models/update-policy-response-class.ts
|
|
271
296
|
models/update-premium-formula-request-dto.ts
|
|
272
297
|
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
|
|
273
300
|
models/update-product-field-request-dto.ts
|
|
274
301
|
models/update-product-field-response-class.ts
|
|
275
302
|
models/update-product-request-dto.ts
|
|
@@ -280,6 +307,8 @@ models/update-status-transition-rule-request-dto.ts
|
|
|
280
307
|
models/update-status-transition-rule-response-class.ts
|
|
281
308
|
models/uploaded-document-dto.ts
|
|
282
309
|
models/validate-product-factors-request-dto.ts
|
|
310
|
+
models/waiting-period-class.ts
|
|
311
|
+
models/warning-class.ts
|
|
283
312
|
models/withdraw-policy-response-class.ts
|
|
284
313
|
package.json
|
|
285
314
|
tsconfig.json
|
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-node@1.93.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.93.1-beta.11 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.93.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.11
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|