@emilgroup/insurance-sdk-node 1.93.1-beta.30 → 1.93.1-beta.31
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/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.1-beta.
|
|
20
|
+
npm install @emilgroup/insurance-sdk-node@1.93.1-beta.31 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.
|
|
24
|
+
yarn add @emilgroup/insurance-sdk-node@1.93.1-beta.31
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `PoliciesApi`.
|
|
@@ -46,5 +46,7 @@ export declare const CustomFieldClassTypeEnum: {
|
|
|
46
46
|
readonly DateTime: "dateTime";
|
|
47
47
|
readonly String: "string";
|
|
48
48
|
readonly Number: "number";
|
|
49
|
+
readonly Select: "select";
|
|
50
|
+
readonly MultiSelect: "multiSelect";
|
|
49
51
|
};
|
|
50
52
|
export type CustomFieldClassTypeEnum = typeof CustomFieldClassTypeEnum[keyof typeof CustomFieldClassTypeEnum];
|
|
@@ -51,7 +51,9 @@ export const CustomFieldClassTypeEnum = {
|
|
|
51
51
|
Date: 'date',
|
|
52
52
|
DateTime: 'dateTime',
|
|
53
53
|
String: 'string',
|
|
54
|
-
Number: 'number'
|
|
54
|
+
Number: 'number',
|
|
55
|
+
Select: 'select',
|
|
56
|
+
MultiSelect: 'multiSelect'
|
|
55
57
|
} as const;
|
|
56
58
|
|
|
57
59
|
export type CustomFieldClassTypeEnum = typeof CustomFieldClassTypeEnum[keyof typeof CustomFieldClassTypeEnum];
|