@trackunit/iris-app-runtime-core-api 0.0.35 → 0.0.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.
@@ -143,6 +143,10 @@ export interface ValueAndDefinition {
143
143
  definition: CustomFieldDefinition;
144
144
  value: CustomFieldValue;
145
145
  }
146
+ export interface AbstractValueAndDefinition {
147
+ definition: AbstractCustomFieldDefinitionObject;
148
+ value: AbstractCustomFieldValue;
149
+ }
146
150
  export interface ValueAndDefinitionKey {
147
151
  definitionKey: string;
148
152
  value: CustomFieldValue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-runtime-core-api",
3
- "version": "0.0.35",
3
+ "version": "0.0.38",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "MIT",
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.35"
11
+ "@trackunit/react-core-contexts-api": "0.0.37"
12
12
  },
13
13
  "peerDependencies": {}
14
14
  }