@emilgroup/insurance-sdk 1.0.2 → 1.0.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.
- package/.openapi-generator/FILES +3 -0
- package/README.md +2 -2
- package/api/products-api.ts +562 -0
- package/dist/api/products-api.d.ts +308 -0
- package/dist/api/products-api.js +481 -0
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/dist/models/update-premium-formula-response-class.d.ts +25 -0
- package/dist/models/update-premium-formula-response-class.js +15 -0
- package/dist/models/update-product-field-response-class.d.ts +25 -0
- package/dist/models/update-product-field-response-class.js +15 -0
- package/dist/models/update-product-version-response-class.d.ts +25 -0
- package/dist/models/update-product-version-response-class.js +15 -0
- package/models/index.ts +3 -0
- package/models/update-premium-formula-response-class.ts +31 -0
- package/models/update-product-field-response-class.ts +31 -0
- package/models/update-product-version-response-class.ts +31 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -82,10 +82,13 @@ models/update-insured-object-request-dto.ts
|
|
|
82
82
|
models/update-policy-request-dto.ts
|
|
83
83
|
models/update-policy-response-class.ts
|
|
84
84
|
models/update-premium-formula-request-dto.ts
|
|
85
|
+
models/update-premium-formula-response-class.ts
|
|
85
86
|
models/update-product-field-request-dto.ts
|
|
87
|
+
models/update-product-field-response-class.ts
|
|
86
88
|
models/update-product-request-dto.ts
|
|
87
89
|
models/update-product-response-class.ts
|
|
88
90
|
models/update-product-version-request-dto.ts
|
|
91
|
+
models/update-product-version-response-class.ts
|
|
89
92
|
models/uploaded-document-dto.ts
|
|
90
93
|
models/validate-product-factors-request-dto.ts
|
|
91
94
|
package.json
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @emilgroup/insurance-sdk@1.0.
|
|
1
|
+
## @emilgroup/insurance-sdk@1.0.3
|
|
2
2
|
|
|
3
3
|
This TypeScript/JavaScript client utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -22,7 +22,7 @@ It can be used in both TypeScript and JavaScript. In TypeScript, the definition
|
|
|
22
22
|
navigate to the folder of your consuming project and run one of the following commands.
|
|
23
23
|
|
|
24
24
|
```
|
|
25
|
-
npm install @emilgroup/insurance-sdk@1.0.
|
|
25
|
+
npm install @emilgroup/insurance-sdk@1.0.3 --save
|
|
26
26
|
```
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
28
28
|
|