@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 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 } an updated 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 } an updated 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core",
3
- "version": "0.3.37",
3
+ "version": "0.3.38",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "module": "./index.js",
@@ -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 } an updated 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
  /**