@elyx-code/project-logic-tree 0.0.53 → 0.0.55

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.
@@ -0,0 +1 @@
1
+ export {};
@@ -34,21 +34,21 @@ export declare function getPropertyBaseSchema(): z.ZodObject<{
34
34
  required: z.ZodBoolean;
35
35
  abstract: z.ZodBoolean;
36
36
  }, "strip", z.ZodTypeAny, {
37
+ private: boolean;
37
38
  id: string;
38
39
  type: EntityType.Property;
39
40
  name: string;
40
41
  description: string | null;
41
42
  required: boolean;
42
- private: boolean;
43
43
  static: boolean;
44
44
  abstract: boolean;
45
45
  }, {
46
+ private: boolean;
46
47
  id: string;
47
48
  type: EntityType.Property;
48
49
  name: string;
49
50
  description: string | null;
50
51
  required: boolean;
51
- private: boolean;
52
52
  static: boolean;
53
53
  abstract: boolean;
54
54
  }>;
@@ -65,23 +65,23 @@ export declare function getPropertyMetaSchema(): z.ZodObject<z.objectUtil.extend
65
65
  version: z.ZodNumber;
66
66
  index: z.ZodNumber;
67
67
  }>, "strip", z.ZodTypeAny, {
68
+ private: boolean;
68
69
  id: string;
69
70
  type: EntityType.Property;
70
71
  name: string;
71
72
  description: string | null;
72
73
  required: boolean;
73
- private: boolean;
74
74
  version: number;
75
75
  index: number;
76
76
  static: boolean;
77
77
  abstract: boolean;
78
78
  }, {
79
+ private: boolean;
79
80
  id: string;
80
81
  type: EntityType.Property;
81
82
  name: string;
82
83
  description: string | null;
83
84
  required: boolean;
84
- private: boolean;
85
85
  version: number;
86
86
  index: number;
87
87
  static: boolean;
@@ -97,21 +97,21 @@ export declare function getPropertyGenerationTargetSchema(): z.ZodObject<z.objec
97
97
  required: z.ZodBoolean;
98
98
  abstract: z.ZodBoolean;
99
99
  }, {}>, "strip", z.ZodTypeAny, {
100
+ private: boolean;
100
101
  id: string;
101
102
  type: EntityType.Property;
102
103
  name: string;
103
104
  description: string | null;
104
105
  required: boolean;
105
- private: boolean;
106
106
  static: boolean;
107
107
  abstract: boolean;
108
108
  }, {
109
+ private: boolean;
109
110
  id: string;
110
111
  type: EntityType.Property;
111
112
  name: string;
112
113
  description: string | null;
113
114
  required: boolean;
114
- private: boolean;
115
115
  static: boolean;
116
116
  abstract: boolean;
117
117
  }>;
@@ -297,6 +297,7 @@ export declare function getPropertySchema(): z.ZodObject<z.objectUtil.extendShap
297
297
  entityId: string;
298
298
  }>]>;
299
299
  }>, "strip", z.ZodTypeAny, {
300
+ private: boolean;
300
301
  id: string;
301
302
  type: EntityType.Property;
302
303
  name: string;
@@ -305,7 +306,6 @@ export declare function getPropertySchema(): z.ZodObject<z.objectUtil.extendShap
305
306
  type: EntityType.Property;
306
307
  } | null;
307
308
  required: boolean;
308
- private: boolean;
309
309
  parent: {
310
310
  id: string;
311
311
  type: EntityType.GenericReference;
@@ -330,6 +330,7 @@ export declare function getPropertySchema(): z.ZodObject<z.objectUtil.extendShap
330
330
  type: EntityType.DataType;
331
331
  };
332
332
  }, {
333
+ private: boolean;
333
334
  id: string;
334
335
  type: EntityType.Property;
335
336
  name: string;
@@ -338,7 +339,6 @@ export declare function getPropertySchema(): z.ZodObject<z.objectUtil.extendShap
338
339
  type: EntityType.Property;
339
340
  } | null;
340
341
  required: boolean;
341
- private: boolean;
342
342
  parent: {
343
343
  id: string;
344
344
  type: EntityType.GenericReference;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.53",
3
+ "version": "0.0.55",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
@@ -25,6 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@elyx-code/definitions": "^0.0.7956",
28
+ "@rollup/plugin-node-resolve": "^15.2.3",
28
29
  "axios": "^1.6.5",
29
30
  "short-uuid": "^5.2.0",
30
31
  "underscore": "^1.13.7",