@elyx-code/project-logic-tree 0.0.6086 → 0.0.6087

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.
@@ -17,7 +17,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
17
17
  id: string;
18
18
  properties: {};
19
19
  };
20
- json: {
20
+ "key-value": {
21
21
  id: string;
22
22
  properties: {};
23
23
  };
@@ -47,6 +47,10 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
47
47
  id: string;
48
48
  properties: {};
49
49
  };
50
+ untyped: {
51
+ id: string;
52
+ properties: {};
53
+ };
50
54
  };
51
55
  "value-descriptor": {
52
56
  "action-ongoing-process-output-value-descriptor-id": {
@@ -4,7 +4,7 @@ export declare const stringPrototype: IPrimitiveEntity;
4
4
  export declare const booleanPrototype: IPrimitiveEntity;
5
5
  export declare const numberPrototype: IPrimitiveEntity;
6
6
  export declare const nullPrototype: IPrimitiveEntity;
7
- export declare const untypedObjectPrototype: IPrimitiveEntity;
7
+ export declare const untypedDataPrototype: IPrimitiveEntity;
8
8
  export declare const enumOptionsPropertyDataTypeRef: IDataTypeReference;
9
9
  export declare const enumOptionsPropertyRef: IPropertyReference;
10
10
  export declare const enumOptionsPropertyDataType: IDataTypeTransfer;
@@ -13,4 +13,4 @@ export declare const enumOptionsProperty: IPropertyTransfer;
13
13
  export declare const enumPrototype: IPrimitiveEntityTransfer;
14
14
  export declare const datePrototype: IPrimitiveEntity;
15
15
  export declare const uuidPrototype: IPrimitiveEntity;
16
- export declare const jsonPrototype: IPrimitiveEntity;
16
+ export declare const keyValuePrototype: IPrimitiveEntity;
@@ -8,10 +8,11 @@ export declare enum PrimitiveTypes {
8
8
  Boolean = "boolean",
9
9
  Null = "null",
10
10
  Enum = "enum",
11
- JSON = "json",
11
+ KeyValue = "key-value",
12
12
  Date = "date",
13
13
  UUID = "uuid",
14
- File = "file"
14
+ File = "file",
15
+ Untyped = "untyped"
15
16
  }
16
17
  export declare enum PrimitiveValueParentChildRelation {
17
18
  DataTypeLiteralValue = "data-type-literal-value"
@@ -110,12 +111,12 @@ export interface IPrimitiveEnumValue extends IPrimitiveValue {
110
111
  autogeneration: BooleanAutogenerationOptions | null;
111
112
  }
112
113
  export interface IPrimitiveJSONValueTransfer extends IPrimitiveValueTransfer {
113
- name: PrimitiveTypes.JSON;
114
+ name: PrimitiveTypes.KeyValue;
114
115
  value: UntypedValue | null;
115
116
  autogeneration: null;
116
117
  }
117
118
  export interface IPrimitiveJSONValue extends IPrimitiveValue {
118
- name: PrimitiveTypes.JSON;
119
+ name: PrimitiveTypes.KeyValue;
119
120
  value: UntypedValue | null;
120
121
  autogeneration: null;
121
122
  }
@@ -192,7 +193,7 @@ export interface IEnum extends IPrimitiveEntity {
192
193
  options: string[];
193
194
  }
194
195
  export interface IJSON extends IPrimitiveEntity {
195
- name: PrimitiveTypes.JSON;
196
+ name: PrimitiveTypes.KeyValue;
196
197
  }
197
198
  export interface IDate extends IPrimitiveEntity {
198
199
  name: PrimitiveTypes.Date;