@trackunit/iris-app-runtime-core 0.3.37 → 0.3.38
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/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/CustomFieldRuntime.d.ts +1 -1
package/index.cjs
CHANGED
|
@@ -91,7 +91,7 @@ const CurrentUserRuntime = {
|
|
|
91
91
|
*
|
|
92
92
|
* @param customFieldDefinition the definition of the custom field
|
|
93
93
|
* @param newValue the new value to set
|
|
94
|
-
* @returns { CustomFieldValue }
|
|
94
|
+
* @returns { CustomFieldValue } an updated CustomFieldValue
|
|
95
95
|
*/
|
|
96
96
|
const getCustomFieldValueFromRawValue = (customFieldDefinition, newValue) => {
|
|
97
97
|
if (customFieldDefinition.type === irisAppRuntimeCoreApi.CustomFieldType.BOOLEAN) {
|
package/index.js
CHANGED
|
@@ -88,7 +88,7 @@ const CurrentUserRuntime = {
|
|
|
88
88
|
*
|
|
89
89
|
* @param customFieldDefinition the definition of the custom field
|
|
90
90
|
* @param newValue the new value to set
|
|
91
|
-
* @returns { CustomFieldValue }
|
|
91
|
+
* @returns { CustomFieldValue } an updated CustomFieldValue
|
|
92
92
|
*/
|
|
93
93
|
const getCustomFieldValueFromRawValue = (customFieldDefinition, newValue) => {
|
|
94
94
|
if (customFieldDefinition.type === CustomFieldType.BOOLEAN) {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@ export interface DropdownSelection {
|
|
|
7
7
|
*
|
|
8
8
|
* @param customFieldDefinition the definition of the custom field
|
|
9
9
|
* @param newValue the new value to set
|
|
10
|
-
* @returns { CustomFieldValue }
|
|
10
|
+
* @returns { CustomFieldValue } an updated CustomFieldValue
|
|
11
11
|
*/
|
|
12
12
|
export declare const getCustomFieldValueFromRawValue: (customFieldDefinition: CustomFieldDefinition, newValue: boolean | string | string[] | DropdownSelection[] | DropdownSelection | number) => CustomFieldValue;
|
|
13
13
|
/**
|