@trackunit/iris-app-runtime-core-api 0.0.56-alpha-f5134ec7c.0 → 0.0.57-alpha-97c5e688c.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.
@@ -31,7 +31,7 @@ export declare type BooleanFieldDefinition = AbstractCustomFieldDefinitionObject
31
31
  type: CustomFieldType.BOOLEAN;
32
32
  };
33
33
  export declare type DateFieldDefinition = AbstractCustomFieldDefinitionObject & {
34
- defaultStringValue?: string | null;
34
+ defaultDateValue?: Date | null;
35
35
  type: CustomFieldType.DATE;
36
36
  };
37
37
  export declare type PhoneNumberFieldDefinition = AbstractCustomFieldDefinitionObject & {
@@ -117,7 +117,7 @@ export declare type BooleanFieldValue = AbstractCustomFieldValue & {
117
117
  booleanValue?: boolean | null;
118
118
  };
119
119
  export declare type DateFieldValue = AbstractCustomFieldValue & {
120
- stringValue?: string | null;
120
+ dateValue?: Date | null;
121
121
  };
122
122
  export declare type DropDownFieldValue = AbstractCustomFieldValue & {
123
123
  stringArrayValue?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core-api",
3
- "version": "0.0.56-alpha-f5134ec7c.0",
3
+ "version": "0.0.57-alpha-97c5e688c.0",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "UNLICENSED",
6
6
  "module": "./index.js",
@@ -8,7 +8,7 @@
8
8
  "type": "module",
9
9
  "types": "./index.d.ts",
10
10
  "dependencies": {
11
- "@trackunit/react-core-contexts-api": "0.0.53-alpha-f5134ec7c.0"
11
+ "@trackunit/react-core-contexts-api": "0.0.53-alpha-97c5e688c.0"
12
12
  },
13
13
  "peerDependencies": {}
14
14
  }