@elyx-code/project-logic-tree 0.0.6024 → 0.0.6026

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.
@@ -4,6 +4,46 @@ export declare enum BaseValueDescriptorIds {
4
4
  ActionOngoingProcessOutputValue = "action-ongoing-process-output-value-descriptor-id"
5
5
  }
6
6
  export declare const BUILT_IN_BASE_ENTITY_IDS: {
7
+ "primitive-entity": {
8
+ string: {
9
+ id: string;
10
+ properties: {};
11
+ };
12
+ boolean: {
13
+ id: string;
14
+ properties: {};
15
+ };
16
+ number: {
17
+ id: string;
18
+ properties: {};
19
+ };
20
+ json: {
21
+ id: string;
22
+ properties: {};
23
+ };
24
+ enum: {
25
+ id: string;
26
+ properties: {
27
+ options: {
28
+ id: string;
29
+ dataType: {
30
+ id: string;
31
+ defaultValue: {
32
+ id: string;
33
+ };
34
+ };
35
+ };
36
+ };
37
+ };
38
+ uuid: {
39
+ id: string;
40
+ properties: {};
41
+ };
42
+ date: {
43
+ id: string;
44
+ properties: {};
45
+ };
46
+ };
7
47
  "value-descriptor": {
8
48
  "action-ongoing-process-output-value-descriptor-id": {
9
49
  id: BaseValueDescriptorIds;
@@ -19,33 +59,57 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
19
59
  BUILT_IN_HTTP_ENDPOINT_ENTITY: {
20
60
  id: BaseEntityNames;
21
61
  properties: {
22
- method: string;
23
- path: string;
24
- cors: string;
62
+ method: {
63
+ id: string;
64
+ };
65
+ path: {
66
+ id: string;
67
+ };
68
+ cors: {
69
+ id: string;
70
+ };
25
71
  };
26
72
  };
27
73
  BUILT_IN_PERSISTED_ENTITY_ENTITY: {
28
74
  id: BaseEntityNames;
29
75
  properties: {
30
- database: string;
31
- identifier: string;
76
+ database: {
77
+ id: string;
78
+ };
79
+ identifier: {
80
+ id: string;
81
+ };
32
82
  };
33
83
  };
34
84
  BUILT_IN_RELATIONAL_DATABASE_ENTITY: {
35
85
  id: BaseEntityNames;
36
86
  properties: {
37
- identifier: string;
38
- username: string;
39
- password: string;
40
- minSize: string;
41
- default: string;
42
- autoscaling: string;
87
+ identifier: {
88
+ id: string;
89
+ };
90
+ username: {
91
+ id: string;
92
+ };
93
+ password: {
94
+ id: string;
95
+ };
96
+ minSize: {
97
+ id: string;
98
+ };
99
+ default: {
100
+ id: string;
101
+ };
102
+ autoscaling: {
103
+ id: string;
104
+ };
43
105
  };
44
106
  };
45
107
  BUILT_IN_CRON_JOB_ENTITY: {
46
108
  id: BaseEntityNames;
47
109
  properties: {
48
- expression: string;
110
+ expression: {
111
+ id: string;
112
+ };
49
113
  };
50
114
  };
51
115
  };
@@ -53,28 +117,54 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
53
117
  "string-join": {
54
118
  id: StringOperations;
55
119
  inputs: {
56
- first: string;
57
- second: string;
120
+ first: {
121
+ id: string;
122
+ };
123
+ second: {
124
+ id: string;
125
+ };
58
126
  };
59
127
  outputs: {
60
- result: string;
61
- error: string;
128
+ result: {
129
+ id: string;
130
+ };
131
+ error: {
132
+ id: string;
133
+ };
62
134
  };
63
135
  };
64
136
  "base-http-request": {
65
137
  id: HTTPOperations;
66
138
  inputs: {
67
- url: string;
68
- query: string;
69
- method: string;
70
- headers: string;
71
- body: string;
139
+ url: {
140
+ id: string;
141
+ };
142
+ query: {
143
+ id: string;
144
+ };
145
+ method: {
146
+ id: string;
147
+ };
148
+ headers: {
149
+ id: string;
150
+ };
151
+ body: {
152
+ id: string;
153
+ };
72
154
  };
73
155
  outputs: {
74
- code: string;
75
- body: string;
76
- headers: string;
77
- error: string;
156
+ code: {
157
+ id: string;
158
+ };
159
+ body: {
160
+ id: string;
161
+ };
162
+ headers: {
163
+ id: string;
164
+ };
165
+ error: {
166
+ id: string;
167
+ };
78
168
  };
79
169
  };
80
170
  };
@@ -82,53 +172,75 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
82
172
  "list-loop": {
83
173
  id: LoopTypes;
84
174
  inputs: {
85
- list: string;
175
+ list: {
176
+ id: string;
177
+ };
86
178
  };
87
179
  outputs: {
88
- results: string;
180
+ results: {
181
+ id: string;
182
+ };
89
183
  };
90
184
  };
91
185
  "string-loop": {
92
186
  id: LoopTypes;
93
187
  inputs: {
94
- string: string;
188
+ string: {
189
+ id: string;
190
+ };
95
191
  };
96
192
  outputs: {
97
- results: string;
193
+ results: {
194
+ id: string;
195
+ };
98
196
  };
99
197
  };
100
198
  "object-keys-loop": {
101
199
  id: LoopTypes;
102
200
  inputs: {
103
- object: string;
201
+ object: {
202
+ id: string;
203
+ };
104
204
  };
105
205
  outputs: {
106
- results: string;
206
+ results: {
207
+ id: string;
208
+ };
107
209
  };
108
210
  };
109
211
  "object-values-loop": {
110
212
  id: LoopTypes;
111
213
  inputs: {
112
- object: string;
214
+ object: {
215
+ id: string;
216
+ };
113
217
  };
114
218
  outputs: {
115
- results: string;
219
+ results: {
220
+ id: string;
221
+ };
116
222
  };
117
223
  };
118
224
  "manual-flow-loop": {
119
225
  id: LoopTypes;
120
226
  inputs: {};
121
227
  outputs: {
122
- results: string;
228
+ results: {
229
+ id: string;
230
+ };
123
231
  };
124
232
  };
125
233
  "counted-loop": {
126
234
  id: LoopTypes;
127
235
  inputs: {
128
- number: string;
236
+ number: {
237
+ id: string;
238
+ };
129
239
  };
130
240
  outputs: {
131
- results: string;
241
+ results: {
242
+ id: string;
243
+ };
132
244
  };
133
245
  };
134
246
  };
@@ -136,14 +248,20 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
136
248
  "more-than-or-equal": {
137
249
  id: ComparisonOperatorTypes;
138
250
  inputs: {
139
- leftHand: string;
140
- rightHand: string;
251
+ leftHand: {
252
+ id: string;
253
+ };
254
+ rightHand: {
255
+ id: string;
256
+ };
141
257
  };
142
258
  };
143
259
  "not-empty": {
144
260
  id: StandaloneOperatorTypes;
145
261
  inputs: {
146
- leftHand: string;
262
+ leftHand: {
263
+ id: string;
264
+ };
147
265
  };
148
266
  };
149
267
  };