@trackunit/iris-app-runtime-core-api 1.3.149 → 1.3.151
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@trackunit/iris-app-runtime-core-api",
|
3
|
-
"version": "1.3.
|
3
|
+
"version": "1.3.151",
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
6
6
|
"engines": {
|
@@ -8,8 +8,8 @@
|
|
8
8
|
},
|
9
9
|
"dependencies": {
|
10
10
|
"jest-fetch-mock": "^3.0.3",
|
11
|
-
"@trackunit/react-core-contexts-api": "1.4.
|
12
|
-
"@trackunit/react-test-setup": "1.0.
|
11
|
+
"@trackunit/react-core-contexts-api": "1.4.148",
|
12
|
+
"@trackunit/react-test-setup": "1.0.31"
|
13
13
|
},
|
14
14
|
"module": "./index.esm.js",
|
15
15
|
"main": "./index.cjs.js",
|
@@ -51,12 +51,12 @@ export type WebAddressFieldDefinition = AbstractCustomFieldDefinitionObject & {
|
|
51
51
|
};
|
52
52
|
export type DropDownFieldDefinition = AbstractCustomFieldDefinitionObject & {
|
53
53
|
multiSelect?: boolean | null;
|
54
|
-
allValues?: string
|
54
|
+
allValues?: Array<string> | null;
|
55
55
|
__typename: "DropDownFieldDefinition";
|
56
56
|
};
|
57
57
|
export type StringListFieldDefinition = AbstractCustomFieldDefinitionObject & {
|
58
58
|
__typename: "StringListFieldDefinition";
|
59
|
-
allValues?: string
|
59
|
+
allValues?: Array<string> | null;
|
60
60
|
};
|
61
61
|
export declare const UnitOfMeasurement: {
|
62
62
|
readonly NEWTON: "NEWTON";
|
@@ -213,11 +213,11 @@ export type DateFieldValue = {
|
|
213
213
|
};
|
214
214
|
export type StringListFieldValue = {
|
215
215
|
__typename: "StringListFieldValue";
|
216
|
-
stringArrayValue?: string
|
216
|
+
stringArrayValue?: Array<string> | null;
|
217
217
|
};
|
218
218
|
export type DropDownFieldValue = {
|
219
219
|
__typename: "DropDownFieldValue";
|
220
|
-
stringArrayValue?: string
|
220
|
+
stringArrayValue?: Array<string> | null;
|
221
221
|
};
|
222
222
|
export type EmailFieldValue = {
|
223
223
|
__typename: "EmailFieldValue";
|