@emilgroup/insurance-sdk-node 1.0.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 +97 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +51 -0
- package/api/insured-object-types-api.ts +236 -0
- package/api/insured-objects-api.ts +446 -0
- package/api/leads-api.ts +402 -0
- package/api/policies-api.ts +580 -0
- package/api/products-api.ts +3027 -0
- package/api.ts +44 -0
- package/base.ts +189 -0
- package/common.ts +138 -0
- package/configuration.ts +109 -0
- package/dist/api/insured-object-types-api.d.ts +141 -0
- package/dist/api/insured-object-types-api.js +258 -0
- package/dist/api/insured-objects-api.d.ts +254 -0
- package/dist/api/insured-objects-api.js +443 -0
- package/dist/api/leads-api.d.ts +225 -0
- package/dist/api/leads-api.js +427 -0
- package/dist/api/policies-api.d.ts +329 -0
- package/dist/api/policies-api.js +548 -0
- package/dist/api/products-api.d.ts +1683 -0
- package/dist/api/products-api.js +2521 -0
- package/dist/api.d.ts +20 -0
- package/dist/api.js +40 -0
- package/dist/base.d.ts +69 -0
- package/dist/base.js +252 -0
- package/dist/common.d.ts +66 -0
- package/dist/common.js +244 -0
- package/dist/configuration.d.ts +90 -0
- package/dist/configuration.js +44 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +35 -0
- package/dist/models/calculate-custom-premium-request-dto.d.ts +34 -0
- package/dist/models/calculate-custom-premium-request-dto.js +19 -0
- package/dist/models/calculate-premium-request-dto.d.ts +31 -0
- package/dist/models/calculate-premium-request-dto.js +15 -0
- package/dist/models/create-account-request-dto.d.ts +84 -0
- package/dist/models/create-account-request-dto.js +15 -0
- package/dist/models/create-bank-account-request-dto.d.ts +30 -0
- package/dist/models/create-bank-account-request-dto.js +15 -0
- package/dist/models/create-claim-request-dto.d.ts +83 -0
- package/dist/models/create-claim-request-dto.js +25 -0
- package/dist/models/create-custom-application-request-dto.d.ts +40 -0
- package/dist/models/create-custom-application-request-dto.js +19 -0
- package/dist/models/create-dummy-policy-request-dto.d.ts +31 -0
- package/dist/models/create-dummy-policy-request-dto.js +15 -0
- package/dist/models/create-insured-object-request-dto.d.ts +42 -0
- package/dist/models/create-insured-object-request-dto.js +15 -0
- package/dist/models/create-insured-object-response-class.d.ts +25 -0
- package/dist/models/create-insured-object-response-class.js +15 -0
- package/dist/models/create-lead-request-dto.d.ts +71 -0
- package/dist/models/create-lead-request-dto.js +22 -0
- package/dist/models/create-policy-request-dto.d.ts +37 -0
- package/dist/models/create-policy-request-dto.js +15 -0
- package/dist/models/create-policy-response-class.d.ts +25 -0
- package/dist/models/create-policy-response-class.js +15 -0
- package/dist/models/create-premium-formula-request-dto.d.ts +65 -0
- package/dist/models/create-premium-formula-request-dto.js +25 -0
- package/dist/models/create-premium-formula-response-class.d.ts +25 -0
- package/dist/models/create-premium-formula-response-class.js +15 -0
- package/dist/models/create-product-field-request-dto.d.ts +113 -0
- package/dist/models/create-product-field-request-dto.js +20 -0
- package/dist/models/create-product-field-response-class.d.ts +25 -0
- package/dist/models/create-product-field-response-class.js +15 -0
- package/dist/models/create-product-request-dto.d.ts +57 -0
- package/dist/models/create-product-request-dto.js +30 -0
- package/dist/models/create-product-response-class.d.ts +25 -0
- package/dist/models/create-product-response-class.js +15 -0
- package/dist/models/csv-product-factor-dto.d.ts +48 -0
- package/dist/models/csv-product-factor-dto.js +15 -0
- package/dist/models/delete-request-dto.d.ts +24 -0
- package/dist/models/delete-request-dto.js +15 -0
- package/dist/models/get-insured-object-request-dto.d.ts +24 -0
- package/dist/models/get-insured-object-request-dto.js +15 -0
- package/dist/models/get-insured-object-response-class.d.ts +25 -0
- package/dist/models/get-insured-object-response-class.js +15 -0
- package/dist/models/get-policy-request-dto.d.ts +30 -0
- package/dist/models/get-policy-request-dto.js +15 -0
- package/dist/models/get-policy-response-class.d.ts +25 -0
- package/dist/models/get-policy-response-class.js +15 -0
- package/dist/models/get-premium-formula-request-dto.d.ts +24 -0
- package/dist/models/get-premium-formula-request-dto.js +15 -0
- package/dist/models/get-premium-formula-response-class.d.ts +25 -0
- package/dist/models/get-premium-formula-response-class.js +15 -0
- package/dist/models/get-product-factor-response-class.d.ts +32 -0
- package/dist/models/get-product-factor-response-class.js +15 -0
- package/dist/models/get-product-factor-value-request-dto.d.ts +42 -0
- package/dist/models/get-product-factor-value-request-dto.js +15 -0
- package/dist/models/get-product-factor-value-response-class.d.ts +25 -0
- package/dist/models/get-product-factor-value-response-class.js +15 -0
- package/dist/models/get-product-field-request-dto.d.ts +24 -0
- package/dist/models/get-product-field-request-dto.js +15 -0
- package/dist/models/get-product-field-response-class.d.ts +25 -0
- package/dist/models/get-product-field-response-class.js +15 -0
- package/dist/models/get-product-request-dto.d.ts +36 -0
- package/dist/models/get-product-request-dto.js +15 -0
- package/dist/models/get-product-response-class.d.ts +25 -0
- package/dist/models/get-product-response-class.js +15 -0
- package/dist/models/get-product-version-request-dto.d.ts +24 -0
- package/dist/models/get-product-version-request-dto.js +15 -0
- package/dist/models/get-product-version-response-class.d.ts +25 -0
- package/dist/models/get-product-version-response-class.js +15 -0
- package/dist/models/grouped-product-factor-class.d.ts +37 -0
- package/dist/models/grouped-product-factor-class.js +15 -0
- package/dist/models/grouped-product-factor-value-class.d.ts +36 -0
- package/dist/models/grouped-product-factor-value-class.js +15 -0
- package/dist/models/grouped-product-factors-response-class.d.ts +25 -0
- package/dist/models/grouped-product-factors-response-class.js +15 -0
- package/dist/models/grpc-create-policy-request-dto.d.ts +37 -0
- package/dist/models/grpc-create-policy-request-dto.js +15 -0
- package/dist/models/index.d.ts +79 -0
- package/dist/models/index.js +95 -0
- package/dist/models/insured-object-class.d.ts +67 -0
- package/dist/models/insured-object-class.js +15 -0
- package/dist/models/insured-object-type-class.d.ts +48 -0
- package/dist/models/insured-object-type-class.js +15 -0
- package/dist/models/list-insured-object-types-response-class.d.ts +31 -0
- package/dist/models/list-insured-object-types-response-class.js +15 -0
- package/dist/models/list-insured-objects-response-class.d.ts +30 -0
- package/dist/models/list-insured-objects-response-class.js +15 -0
- package/dist/models/list-policies-response-class.d.ts +31 -0
- package/dist/models/list-policies-response-class.js +15 -0
- package/dist/models/list-premium-formulas-response-class.d.ts +31 -0
- package/dist/models/list-premium-formulas-response-class.js +15 -0
- package/dist/models/list-product-factors-response-class.d.ts +31 -0
- package/dist/models/list-product-factors-response-class.js +15 -0
- package/dist/models/list-product-field-types-response-class.d.ts +30 -0
- package/dist/models/list-product-field-types-response-class.js +15 -0
- package/dist/models/list-product-fields-response-class.d.ts +31 -0
- package/dist/models/list-product-fields-response-class.js +15 -0
- package/dist/models/list-products-response-class.d.ts +31 -0
- package/dist/models/list-products-response-class.js +15 -0
- package/dist/models/list-request-dto.d.ts +54 -0
- package/dist/models/list-request-dto.js +15 -0
- package/dist/models/policy-class.d.ts +86 -0
- package/dist/models/policy-class.js +15 -0
- package/dist/models/policy-object-class.d.ts +42 -0
- package/dist/models/policy-object-class.js +15 -0
- package/dist/models/policy-object-dto.d.ts +30 -0
- package/dist/models/policy-object-dto.js +15 -0
- package/dist/models/policy-premium-class.d.ts +43 -0
- package/dist/models/policy-premium-class.js +15 -0
- package/dist/models/policy-premium-item-class.d.ts +49 -0
- package/dist/models/policy-premium-item-class.js +15 -0
- package/dist/models/policy-version-class.d.ts +55 -0
- package/dist/models/policy-version-class.js +15 -0
- package/dist/models/premium-formula-class.d.ts +79 -0
- package/dist/models/premium-formula-class.js +15 -0
- package/dist/models/product-class.d.ts +74 -0
- package/dist/models/product-class.js +15 -0
- package/dist/models/product-factor-class.d.ts +68 -0
- package/dist/models/product-factor-class.js +15 -0
- package/dist/models/product-factor-value-class.d.ts +80 -0
- package/dist/models/product-factor-value-class.js +15 -0
- package/dist/models/product-field-class.d.ts +114 -0
- package/dist/models/product-field-class.js +15 -0
- package/dist/models/product-version-class.d.ts +54 -0
- package/dist/models/product-version-class.js +15 -0
- package/dist/models/store-product-factors-request-dto.d.ts +31 -0
- package/dist/models/store-product-factors-request-dto.js +15 -0
- package/dist/models/store-product-factors-response-class.d.ts +25 -0
- package/dist/models/store-product-factors-response-class.js +15 -0
- package/dist/models/timeslice-class.d.ts +62 -0
- package/dist/models/timeslice-class.js +15 -0
- package/dist/models/update-insured-object-request-dto.d.ts +48 -0
- package/dist/models/update-insured-object-request-dto.js +15 -0
- package/dist/models/update-lead-request-dto.d.ts +71 -0
- package/dist/models/update-lead-request-dto.js +22 -0
- package/dist/models/update-policy-request-dto.d.ts +43 -0
- package/dist/models/update-policy-request-dto.js +15 -0
- package/dist/models/update-policy-response-class.d.ts +25 -0
- package/dist/models/update-policy-response-class.js +15 -0
- package/dist/models/update-premium-formula-request-dto.d.ts +71 -0
- package/dist/models/update-premium-formula-request-dto.js +25 -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-request-dto.d.ts +119 -0
- package/dist/models/update-product-field-request-dto.js +20 -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-request-dto.d.ts +42 -0
- package/dist/models/update-product-request-dto.js +15 -0
- package/dist/models/update-product-response-class.d.ts +25 -0
- package/dist/models/update-product-response-class.js +15 -0
- package/dist/models/update-product-version-request-dto.d.ts +43 -0
- package/dist/models/update-product-version-request-dto.js +22 -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/dist/models/uploaded-document-dto.d.ts +24 -0
- package/dist/models/uploaded-document-dto.js +15 -0
- package/dist/models/validate-product-factors-request-dto.d.ts +31 -0
- package/dist/models/validate-product-factors-request-dto.js +15 -0
- package/git_push.sh +57 -0
- package/index.ts +19 -0
- package/models/calculate-custom-premium-request-dto.ts +43 -0
- package/models/calculate-premium-request-dto.ts +37 -0
- package/models/create-account-request-dto.ts +90 -0
- package/models/create-bank-account-request-dto.ts +36 -0
- package/models/create-claim-request-dto.ts +93 -0
- package/models/create-custom-application-request-dto.ts +49 -0
- package/models/create-dummy-policy-request-dto.ts +37 -0
- package/models/create-insured-object-request-dto.ts +48 -0
- package/models/create-insured-object-response-class.ts +31 -0
- package/models/create-lead-request-dto.ts +80 -0
- package/models/create-policy-request-dto.ts +43 -0
- package/models/create-policy-response-class.ts +31 -0
- package/models/create-premium-formula-request-dto.ts +75 -0
- package/models/create-premium-formula-response-class.ts +31 -0
- package/models/create-product-field-request-dto.ts +122 -0
- package/models/create-product-field-response-class.ts +31 -0
- package/models/create-product-request-dto.ts +66 -0
- package/models/create-product-response-class.ts +31 -0
- package/models/csv-product-factor-dto.ts +54 -0
- package/models/delete-request-dto.ts +30 -0
- package/models/get-insured-object-request-dto.ts +30 -0
- package/models/get-insured-object-response-class.ts +31 -0
- package/models/get-policy-request-dto.ts +36 -0
- package/models/get-policy-response-class.ts +31 -0
- package/models/get-premium-formula-request-dto.ts +30 -0
- package/models/get-premium-formula-response-class.ts +31 -0
- package/models/get-product-factor-response-class.ts +38 -0
- package/models/get-product-factor-value-request-dto.ts +48 -0
- package/models/get-product-factor-value-response-class.ts +31 -0
- package/models/get-product-field-request-dto.ts +30 -0
- package/models/get-product-field-response-class.ts +31 -0
- package/models/get-product-request-dto.ts +42 -0
- package/models/get-product-response-class.ts +31 -0
- package/models/get-product-version-request-dto.ts +30 -0
- package/models/get-product-version-response-class.ts +31 -0
- package/models/grouped-product-factor-class.ts +43 -0
- package/models/grouped-product-factor-value-class.ts +42 -0
- package/models/grouped-product-factors-response-class.ts +31 -0
- package/models/grpc-create-policy-request-dto.ts +43 -0
- package/models/index.ts +79 -0
- package/models/insured-object-class.ts +73 -0
- package/models/insured-object-type-class.ts +54 -0
- package/models/list-insured-object-types-response-class.ts +37 -0
- package/models/list-insured-objects-response-class.ts +36 -0
- package/models/list-policies-response-class.ts +37 -0
- package/models/list-premium-formulas-response-class.ts +37 -0
- package/models/list-product-factors-response-class.ts +37 -0
- package/models/list-product-field-types-response-class.ts +36 -0
- package/models/list-product-fields-response-class.ts +37 -0
- package/models/list-products-response-class.ts +37 -0
- package/models/list-request-dto.ts +60 -0
- package/models/policy-class.ts +92 -0
- package/models/policy-object-class.ts +48 -0
- package/models/policy-object-dto.ts +36 -0
- package/models/policy-premium-class.ts +49 -0
- package/models/policy-premium-item-class.ts +55 -0
- package/models/policy-version-class.ts +61 -0
- package/models/premium-formula-class.ts +85 -0
- package/models/product-class.ts +80 -0
- package/models/product-factor-class.ts +74 -0
- package/models/product-factor-value-class.ts +86 -0
- package/models/product-field-class.ts +120 -0
- package/models/product-version-class.ts +60 -0
- package/models/store-product-factors-request-dto.ts +37 -0
- package/models/store-product-factors-response-class.ts +31 -0
- package/models/timeslice-class.ts +68 -0
- package/models/update-insured-object-request-dto.ts +54 -0
- package/models/update-lead-request-dto.ts +80 -0
- package/models/update-policy-request-dto.ts +49 -0
- package/models/update-policy-response-class.ts +31 -0
- package/models/update-premium-formula-request-dto.ts +81 -0
- package/models/update-premium-formula-response-class.ts +31 -0
- package/models/update-product-field-request-dto.ts +128 -0
- package/models/update-product-field-response-class.ts +31 -0
- package/models/update-product-request-dto.ts +48 -0
- package/models/update-product-response-class.ts +31 -0
- package/models/update-product-version-request-dto.ts +52 -0
- package/models/update-product-version-response-class.ts +31 -0
- package/models/uploaded-document-dto.ts +30 -0
- package/models/validate-product-factors-request-dto.ts +37 -0
- package/package.json +29 -0
- package/tsconfig.json +22 -0
|
@@ -0,0 +1,80 @@
|
|
|
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
|
+
*
|
|
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 { CreateAccountRequestDto } from './create-account-request-dto';
|
|
17
|
+
import { CreateBankAccountRequestDto } from './create-bank-account-request-dto';
|
|
18
|
+
import { CreatePolicyRequestDto } from './create-policy-request-dto';
|
|
19
|
+
import { UploadedDocumentDto } from './uploaded-document-dto';
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @export
|
|
24
|
+
* @interface UpdateLeadRequestDto
|
|
25
|
+
*/
|
|
26
|
+
export interface UpdateLeadRequestDto {
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof UpdateLeadRequestDto
|
|
31
|
+
*/
|
|
32
|
+
'code': string;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {CreateAccountRequestDto}
|
|
36
|
+
* @memberof UpdateLeadRequestDto
|
|
37
|
+
*/
|
|
38
|
+
'account': CreateAccountRequestDto;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {CreatePolicyRequestDto}
|
|
42
|
+
* @memberof UpdateLeadRequestDto
|
|
43
|
+
*/
|
|
44
|
+
'policy': CreatePolicyRequestDto;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {object}
|
|
48
|
+
* @memberof UpdateLeadRequestDto
|
|
49
|
+
*/
|
|
50
|
+
'customData': object;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* @memberof UpdateLeadRequestDto
|
|
55
|
+
*/
|
|
56
|
+
'status': UpdateLeadRequestDtoStatusEnum;
|
|
57
|
+
/**
|
|
58
|
+
*
|
|
59
|
+
* @type {CreateBankAccountRequestDto}
|
|
60
|
+
* @memberof UpdateLeadRequestDto
|
|
61
|
+
*/
|
|
62
|
+
'bankAccount'?: CreateBankAccountRequestDto;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {UploadedDocumentDto}
|
|
66
|
+
* @memberof UpdateLeadRequestDto
|
|
67
|
+
*/
|
|
68
|
+
'uploadedDocument'?: UploadedDocumentDto;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export const UpdateLeadRequestDtoStatusEnum = {
|
|
72
|
+
Created: 'created',
|
|
73
|
+
Approved: 'approved',
|
|
74
|
+
Activated: 'activated',
|
|
75
|
+
Declined: 'declined'
|
|
76
|
+
} as const;
|
|
77
|
+
|
|
78
|
+
export type UpdateLeadRequestDtoStatusEnum = typeof UpdateLeadRequestDtoStatusEnum[keyof typeof UpdateLeadRequestDtoStatusEnum];
|
|
79
|
+
|
|
80
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
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
|
+
*
|
|
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 { PolicyObjectDto } from './policy-object-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdatePolicyRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdatePolicyRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Policy code
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdatePolicyRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'code': string;
|
|
30
|
+
/**
|
|
31
|
+
* Policy objects
|
|
32
|
+
* @type {Array<PolicyObjectDto>}
|
|
33
|
+
* @memberof UpdatePolicyRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'policyObjects': Array<PolicyObjectDto>;
|
|
36
|
+
/**
|
|
37
|
+
* Update from
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UpdatePolicyRequestDto
|
|
40
|
+
*/
|
|
41
|
+
'from': string;
|
|
42
|
+
/**
|
|
43
|
+
* Update to
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UpdatePolicyRequestDto
|
|
46
|
+
*/
|
|
47
|
+
'to'?: string;
|
|
48
|
+
}
|
|
49
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { PolicyClass } from './policy-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdatePolicyResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdatePolicyResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Policy
|
|
26
|
+
* @type {PolicyClass}
|
|
27
|
+
* @memberof UpdatePolicyResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'policy': PolicyClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
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
|
+
*
|
|
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 UpdatePremiumFormulaRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdatePremiumFormulaRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Product version id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'productVersionId': number;
|
|
29
|
+
/**
|
|
30
|
+
* Group name
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'group': string;
|
|
35
|
+
/**
|
|
36
|
+
* Premium name
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'name': string;
|
|
41
|
+
/**
|
|
42
|
+
* Premium expression
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'expression': string;
|
|
47
|
+
/**
|
|
48
|
+
* Product type
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'type': UpdatePremiumFormulaRequestDtoTypeEnum;
|
|
53
|
+
/**
|
|
54
|
+
* Premium type unit
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'unit': UpdatePremiumFormulaRequestDtoUnitEnum;
|
|
59
|
+
/**
|
|
60
|
+
* Premium formula id
|
|
61
|
+
* @type {number}
|
|
62
|
+
* @memberof UpdatePremiumFormulaRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'id': number;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export const UpdatePremiumFormulaRequestDtoTypeEnum = {
|
|
68
|
+
Time: 'time'
|
|
69
|
+
} as const;
|
|
70
|
+
|
|
71
|
+
export type UpdatePremiumFormulaRequestDtoTypeEnum = typeof UpdatePremiumFormulaRequestDtoTypeEnum[keyof typeof UpdatePremiumFormulaRequestDtoTypeEnum];
|
|
72
|
+
export const UpdatePremiumFormulaRequestDtoUnitEnum = {
|
|
73
|
+
Day: 'day',
|
|
74
|
+
Week: 'week',
|
|
75
|
+
Month: 'month',
|
|
76
|
+
Year: 'year'
|
|
77
|
+
} as const;
|
|
78
|
+
|
|
79
|
+
export type UpdatePremiumFormulaRequestDtoUnitEnum = typeof UpdatePremiumFormulaRequestDtoUnitEnum[keyof typeof UpdatePremiumFormulaRequestDtoUnitEnum];
|
|
80
|
+
|
|
81
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { PremiumFormulaClass } from './premium-formula-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdatePremiumFormulaResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdatePremiumFormulaResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Premium formula
|
|
26
|
+
* @type {PremiumFormulaClass}
|
|
27
|
+
* @memberof UpdatePremiumFormulaResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'premiumFormula': PremiumFormulaClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,128 @@
|
|
|
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
|
+
*
|
|
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 UpdateProductFieldRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProductFieldRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Product field id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof UpdateProductFieldRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Product field name
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateProductFieldRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'name': string;
|
|
35
|
+
/**
|
|
36
|
+
* Product field label
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateProductFieldRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'label': string;
|
|
41
|
+
/**
|
|
42
|
+
* Product field type
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateProductFieldRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'typeEntity': UpdateProductFieldRequestDtoTypeEntityEnum;
|
|
47
|
+
/**
|
|
48
|
+
* Product field type id
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof UpdateProductFieldRequestDto
|
|
51
|
+
*/
|
|
52
|
+
'typeId': number;
|
|
53
|
+
/**
|
|
54
|
+
* Insured object id
|
|
55
|
+
* @type {number}
|
|
56
|
+
* @memberof UpdateProductFieldRequestDto
|
|
57
|
+
*/
|
|
58
|
+
'insuredObjectId': number;
|
|
59
|
+
/**
|
|
60
|
+
* Product field group
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof UpdateProductFieldRequestDto
|
|
63
|
+
*/
|
|
64
|
+
'group': string;
|
|
65
|
+
/**
|
|
66
|
+
* Is field required?
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof UpdateProductFieldRequestDto
|
|
69
|
+
*/
|
|
70
|
+
'isRequired': boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Is field hidden on the booking funnel?
|
|
73
|
+
* @type {boolean}
|
|
74
|
+
* @memberof UpdateProductFieldRequestDto
|
|
75
|
+
*/
|
|
76
|
+
'isHidden': boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Should the field value be unique across policies?
|
|
79
|
+
* @type {boolean}
|
|
80
|
+
* @memberof UpdateProductFieldRequestDto
|
|
81
|
+
*/
|
|
82
|
+
'isUnique': boolean;
|
|
83
|
+
/**
|
|
84
|
+
* Booking funnel description
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof UpdateProductFieldRequestDto
|
|
87
|
+
*/
|
|
88
|
+
'bfDescription'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Booking funnel tooltip
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof UpdateProductFieldRequestDto
|
|
93
|
+
*/
|
|
94
|
+
'bfTooltip'?: string;
|
|
95
|
+
/**
|
|
96
|
+
* Booking funnel label
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof UpdateProductFieldRequestDto
|
|
99
|
+
*/
|
|
100
|
+
'bfLabel'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" }
|
|
103
|
+
* @type {object}
|
|
104
|
+
* @memberof UpdateProductFieldRequestDto
|
|
105
|
+
*/
|
|
106
|
+
'defaultValue': object;
|
|
107
|
+
/**
|
|
108
|
+
* Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" }
|
|
109
|
+
* @type {object}
|
|
110
|
+
* @memberof UpdateProductFieldRequestDto
|
|
111
|
+
*/
|
|
112
|
+
'minValue'?: object;
|
|
113
|
+
/**
|
|
114
|
+
* Default value of the field. For the field type date-time, it should be { \"templated\" : \"{{today}}\" }
|
|
115
|
+
* @type {object}
|
|
116
|
+
* @memberof UpdateProductFieldRequestDto
|
|
117
|
+
*/
|
|
118
|
+
'maxValue'?: object;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export const UpdateProductFieldRequestDtoTypeEntityEnum = {
|
|
122
|
+
SystemProductFieldType: 'system_product_field_type',
|
|
123
|
+
ProductFactorType: 'product_factor_type'
|
|
124
|
+
} as const;
|
|
125
|
+
|
|
126
|
+
export type UpdateProductFieldRequestDtoTypeEntityEnum = typeof UpdateProductFieldRequestDtoTypeEntityEnum[keyof typeof UpdateProductFieldRequestDtoTypeEntityEnum];
|
|
127
|
+
|
|
128
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { ProductFieldClass } from './product-field-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateProductFieldResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateProductFieldResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* product field
|
|
26
|
+
* @type {ProductFieldClass}
|
|
27
|
+
* @memberof UpdateProductFieldResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productField': ProductFieldClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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
|
+
*
|
|
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 UpdateProductRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProductRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Product name
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateProductRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'name': string;
|
|
29
|
+
/**
|
|
30
|
+
* Contract duration in days
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof UpdateProductRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'contractDurationDays': number;
|
|
35
|
+
/**
|
|
36
|
+
* Product slug
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateProductRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'slug': string;
|
|
41
|
+
/**
|
|
42
|
+
* Product id
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof UpdateProductRequestDto
|
|
45
|
+
*/
|
|
46
|
+
'id': number;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { ProductClass } from './product-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateProductResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateProductResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Product
|
|
26
|
+
* @type {ProductClass}
|
|
27
|
+
* @memberof UpdateProductResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'product': ProductClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
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
|
+
*
|
|
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 UpdateProductVersionRequestDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateProductVersionRequestDto {
|
|
23
|
+
/**
|
|
24
|
+
* Product version id
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof UpdateProductVersionRequestDto
|
|
27
|
+
*/
|
|
28
|
+
'id': number;
|
|
29
|
+
/**
|
|
30
|
+
* Product version description
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateProductVersionRequestDto
|
|
33
|
+
*/
|
|
34
|
+
'description': string;
|
|
35
|
+
/**
|
|
36
|
+
* Product version status
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateProductVersionRequestDto
|
|
39
|
+
*/
|
|
40
|
+
'status': UpdateProductVersionRequestDtoStatusEnum;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export const UpdateProductVersionRequestDtoStatusEnum = {
|
|
44
|
+
Draft: 'draft',
|
|
45
|
+
Active: 'active',
|
|
46
|
+
Passive: 'passive',
|
|
47
|
+
Archived: 'archived'
|
|
48
|
+
} as const;
|
|
49
|
+
|
|
50
|
+
export type UpdateProductVersionRequestDtoStatusEnum = typeof UpdateProductVersionRequestDtoStatusEnum[keyof typeof UpdateProductVersionRequestDtoStatusEnum];
|
|
51
|
+
|
|
52
|
+
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
*
|
|
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 { ProductVersionClass } from './product-version-class';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface UpdateProductVersionResponseClass
|
|
22
|
+
*/
|
|
23
|
+
export interface UpdateProductVersionResponseClass {
|
|
24
|
+
/**
|
|
25
|
+
* Product version
|
|
26
|
+
* @type {ProductVersionClass}
|
|
27
|
+
* @memberof UpdateProductVersionResponseClass
|
|
28
|
+
*/
|
|
29
|
+
'productVersion': ProductVersionClass;
|
|
30
|
+
}
|
|
31
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
*
|
|
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 UploadedDocumentDto
|
|
21
|
+
*/
|
|
22
|
+
export interface UploadedDocumentDto {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof UploadedDocumentDto
|
|
27
|
+
*/
|
|
28
|
+
'codes': Array<string>;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
*
|
|
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 { CsvProductFactorDto } from './csv-product-factor-dto';
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @export
|
|
21
|
+
* @interface ValidateProductFactorsRequestDto
|
|
22
|
+
*/
|
|
23
|
+
export interface ValidateProductFactorsRequestDto {
|
|
24
|
+
/**
|
|
25
|
+
* Product version id
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof ValidateProductFactorsRequestDto
|
|
28
|
+
*/
|
|
29
|
+
'productVersionId': number;
|
|
30
|
+
/**
|
|
31
|
+
* Factors
|
|
32
|
+
* @type {Array<CsvProductFactorDto>}
|
|
33
|
+
* @memberof ValidateProductFactorsRequestDto
|
|
34
|
+
*/
|
|
35
|
+
'productFactors': Array<CsvProductFactorDto>;
|
|
36
|
+
}
|
|
37
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@emilgroup/insurance-sdk-node",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "OpenAPI client for @emilgroup/insurance-sdk-node",
|
|
5
|
+
"author": "OpenAPI-Generator Contributors",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"axios",
|
|
8
|
+
"typescript",
|
|
9
|
+
"openapi-client",
|
|
10
|
+
"openapi-generator",
|
|
11
|
+
"@emilgroup/insurance-sdk-node"
|
|
12
|
+
],
|
|
13
|
+
"license": "Unlicense",
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"typings": "./dist/index.d.ts",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc --outDir dist/",
|
|
18
|
+
"prepare": "npm run build"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"axios": "^0.26.1",
|
|
22
|
+
"form-data": "^4.0.0",
|
|
23
|
+
"url": "^0.11.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@types/node": "^12.11.5",
|
|
27
|
+
"typescript": "^4.0"
|
|
28
|
+
}
|
|
29
|
+
}
|