@elyx-code/project-logic-tree 0.0.6233 → 0.0.6235
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.
- package/dist/definitions/types/data-type.d.ts +6 -0
- package/dist/definitions/types/primitives.d.ts +4 -4
- package/dist/index.js +12473 -11777
- package/dist/index.umd.cjs +146 -146
- package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/break-statement/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/condition/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/continue-statement/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/data-type/data-type.d.ts +3 -0
- package/dist/tree/state/definition-entity/validation/validation-schema.d.ts +8 -8
- package/dist/tree/state/function-call/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/function-declaration/validation/validation-schema.d.ts +6 -6
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/installed-project/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/literal-value/literal-value.d.ts +5 -2
- package/dist/tree/state/loop/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/operation/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/return-statement/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/search/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +4 -4
- package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +4 -4
- package/package.json +1 -1
|
@@ -428,6 +428,8 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
428
428
|
entityId: string;
|
|
429
429
|
};
|
|
430
430
|
version: number;
|
|
431
|
+
x: number;
|
|
432
|
+
y: number;
|
|
431
433
|
dataType: Record<string, any> | {
|
|
432
434
|
type: EntityType.DataType;
|
|
433
435
|
} | null;
|
|
@@ -440,8 +442,6 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
440
442
|
} | {
|
|
441
443
|
type: EntityType.VariableInstance;
|
|
442
444
|
})[];
|
|
443
|
-
x: number;
|
|
444
|
-
y: number;
|
|
445
445
|
}, {
|
|
446
446
|
id: string;
|
|
447
447
|
type: EntityType.ArgumentDeclaration;
|
|
@@ -472,6 +472,8 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
472
472
|
entityId: string;
|
|
473
473
|
};
|
|
474
474
|
version: number;
|
|
475
|
+
x: number;
|
|
476
|
+
y: number;
|
|
475
477
|
dataType: Record<string, any> | {
|
|
476
478
|
type: EntityType.DataType;
|
|
477
479
|
} | null;
|
|
@@ -484,6 +486,4 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
484
486
|
} | {
|
|
485
487
|
type: EntityType.VariableInstance;
|
|
486
488
|
})[];
|
|
487
|
-
x: number;
|
|
488
|
-
y: number;
|
|
489
489
|
}>;
|
|
@@ -995,11 +995,11 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
995
995
|
entityId: string;
|
|
996
996
|
};
|
|
997
997
|
version: number;
|
|
998
|
+
x: number;
|
|
999
|
+
y: number;
|
|
998
1000
|
outputs: (Record<string, any> | {
|
|
999
1001
|
type: EntityType.ReturnDeclaration;
|
|
1000
1002
|
})[];
|
|
1001
|
-
x: number;
|
|
1002
|
-
y: number;
|
|
1003
1003
|
throws?: Record<string, any> | {
|
|
1004
1004
|
type: EntityType.ReturnDeclaration;
|
|
1005
1005
|
} | undefined;
|
|
@@ -1106,11 +1106,11 @@ export declare function getBreakStatementSchema(): z.ZodObject<z.objectUtil.exte
|
|
|
1106
1106
|
entityId: string;
|
|
1107
1107
|
};
|
|
1108
1108
|
version: number;
|
|
1109
|
+
x: number;
|
|
1110
|
+
y: number;
|
|
1109
1111
|
outputs: (Record<string, any> | {
|
|
1110
1112
|
type: EntityType.ReturnDeclaration;
|
|
1111
1113
|
})[];
|
|
1112
|
-
x: number;
|
|
1113
|
-
y: number;
|
|
1114
1114
|
throws?: Record<string, any> | {
|
|
1115
1115
|
type: EntityType.ReturnDeclaration;
|
|
1116
1116
|
} | undefined;
|
|
@@ -2023,6 +2023,8 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2023
2023
|
entityId: string;
|
|
2024
2024
|
};
|
|
2025
2025
|
version: number;
|
|
2026
|
+
x: number;
|
|
2027
|
+
y: number;
|
|
2026
2028
|
successCalls: ({
|
|
2027
2029
|
id: string;
|
|
2028
2030
|
type: EntityType.GenericReference;
|
|
@@ -2135,8 +2137,6 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2135
2137
|
entityType: EntityType.ContinueStatement;
|
|
2136
2138
|
entityId: string;
|
|
2137
2139
|
})[];
|
|
2138
|
-
x: number;
|
|
2139
|
-
y: number;
|
|
2140
2140
|
leftValue: Record<string, any> | {
|
|
2141
2141
|
type: EntityType.InputMap;
|
|
2142
2142
|
};
|
|
@@ -2262,6 +2262,8 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2262
2262
|
entityId: string;
|
|
2263
2263
|
};
|
|
2264
2264
|
version: number;
|
|
2265
|
+
x: number;
|
|
2266
|
+
y: number;
|
|
2265
2267
|
successCalls: ({
|
|
2266
2268
|
id: string;
|
|
2267
2269
|
type: EntityType.GenericReference;
|
|
@@ -2374,8 +2376,6 @@ export declare function getConditionSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2374
2376
|
entityType: EntityType.ContinueStatement;
|
|
2375
2377
|
entityId: string;
|
|
2376
2378
|
})[];
|
|
2377
|
-
x: number;
|
|
2378
|
-
y: number;
|
|
2379
2379
|
leftValue: Record<string, any> | {
|
|
2380
2380
|
type: EntityType.InputMap;
|
|
2381
2381
|
};
|
|
@@ -995,11 +995,11 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
|
|
|
995
995
|
entityId: string;
|
|
996
996
|
};
|
|
997
997
|
version: number;
|
|
998
|
+
x: number;
|
|
999
|
+
y: number;
|
|
998
1000
|
outputs: (Record<string, any> | {
|
|
999
1001
|
type: EntityType.ReturnDeclaration;
|
|
1000
1002
|
})[];
|
|
1001
|
-
x: number;
|
|
1002
|
-
y: number;
|
|
1003
1003
|
throws?: Record<string, any> | {
|
|
1004
1004
|
type: EntityType.ReturnDeclaration;
|
|
1005
1005
|
} | undefined;
|
|
@@ -1106,11 +1106,11 @@ export declare function getContinueStatementSchema(): z.ZodObject<z.objectUtil.e
|
|
|
1106
1106
|
entityId: string;
|
|
1107
1107
|
};
|
|
1108
1108
|
version: number;
|
|
1109
|
+
x: number;
|
|
1110
|
+
y: number;
|
|
1109
1111
|
outputs: (Record<string, any> | {
|
|
1110
1112
|
type: EntityType.ReturnDeclaration;
|
|
1111
1113
|
})[];
|
|
1112
|
-
x: number;
|
|
1113
|
-
y: number;
|
|
1114
1114
|
throws?: Record<string, any> | {
|
|
1115
1115
|
type: EntityType.ReturnDeclaration;
|
|
1116
1116
|
} | undefined;
|
|
@@ -34,6 +34,9 @@ export declare class DataTypeState extends VersionedState implements IDataType,
|
|
|
34
34
|
like: boolean;
|
|
35
35
|
implementationChooseOne: boolean;
|
|
36
36
|
inferred: boolean;
|
|
37
|
+
staticEntities: boolean | null;
|
|
38
|
+
interactiveEntities: boolean | null;
|
|
39
|
+
actionEntities: boolean | null;
|
|
37
40
|
entity: DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState | null;
|
|
38
41
|
andChildrenGroup: DataTypeState[] | null;
|
|
39
42
|
orChildrenGroup: DataTypeState[] | null;
|
|
@@ -63,20 +63,20 @@ export declare function getDefinitionEntityMetaSchema(): z.ZodObject<z.objectUti
|
|
|
63
63
|
name: string;
|
|
64
64
|
description: string | null;
|
|
65
65
|
version: number;
|
|
66
|
-
static: boolean;
|
|
67
|
-
abstract: boolean;
|
|
68
66
|
x: number;
|
|
69
67
|
y: number;
|
|
68
|
+
static: boolean;
|
|
69
|
+
abstract: boolean;
|
|
70
70
|
}, {
|
|
71
71
|
id: string;
|
|
72
72
|
type: EntityType.DefinitionEntity;
|
|
73
73
|
name: string;
|
|
74
74
|
description: string | null;
|
|
75
75
|
version: number;
|
|
76
|
-
static: boolean;
|
|
77
|
-
abstract: boolean;
|
|
78
76
|
x: number;
|
|
79
77
|
y: number;
|
|
78
|
+
static: boolean;
|
|
79
|
+
abstract: boolean;
|
|
80
80
|
}>;
|
|
81
81
|
export declare function getDefinitionEntityGenerationTargetSchema(): z.ZodObject<z.objectUtil.extendShape<{
|
|
82
82
|
id: z.ZodString;
|
|
@@ -419,6 +419,8 @@ export declare function getDefinitionEntitySchema(): z.ZodObject<z.objectUtil.ex
|
|
|
419
419
|
methods: (Record<string, any> | {
|
|
420
420
|
type: EntityType.FunctionDeclaration;
|
|
421
421
|
})[];
|
|
422
|
+
x: number;
|
|
423
|
+
y: number;
|
|
422
424
|
properties: (Record<string, any> | {
|
|
423
425
|
type: EntityType.Property;
|
|
424
426
|
})[];
|
|
@@ -427,8 +429,6 @@ export declare function getDefinitionEntitySchema(): z.ZodObject<z.objectUtil.ex
|
|
|
427
429
|
})[];
|
|
428
430
|
static: boolean;
|
|
429
431
|
abstract: boolean;
|
|
430
|
-
x: number;
|
|
431
|
-
y: number;
|
|
432
432
|
}, {
|
|
433
433
|
id: string;
|
|
434
434
|
type: EntityType.DefinitionEntity;
|
|
@@ -459,6 +459,8 @@ export declare function getDefinitionEntitySchema(): z.ZodObject<z.objectUtil.ex
|
|
|
459
459
|
methods: (Record<string, any> | {
|
|
460
460
|
type: EntityType.FunctionDeclaration;
|
|
461
461
|
})[];
|
|
462
|
+
x: number;
|
|
463
|
+
y: number;
|
|
462
464
|
properties: (Record<string, any> | {
|
|
463
465
|
type: EntityType.Property;
|
|
464
466
|
})[];
|
|
@@ -467,6 +469,4 @@ export declare function getDefinitionEntitySchema(): z.ZodObject<z.objectUtil.ex
|
|
|
467
469
|
})[];
|
|
468
470
|
static: boolean;
|
|
469
471
|
abstract: boolean;
|
|
470
|
-
x: number;
|
|
471
|
-
y: number;
|
|
472
472
|
}>;
|
|
@@ -2129,6 +2129,8 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2129
2129
|
entityId: string;
|
|
2130
2130
|
};
|
|
2131
2131
|
version: number;
|
|
2132
|
+
x: number;
|
|
2133
|
+
y: number;
|
|
2132
2134
|
inputs: (Record<string, any> | {
|
|
2133
2135
|
type: EntityType.InputMap;
|
|
2134
2136
|
})[];
|
|
@@ -2256,8 +2258,6 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2256
2258
|
} | {
|
|
2257
2259
|
type: EntityType.VariableInstance;
|
|
2258
2260
|
})[];
|
|
2259
|
-
x: number;
|
|
2260
|
-
y: number;
|
|
2261
2261
|
error?: Record<string, any> | {
|
|
2262
2262
|
type: EntityType.OutputMap;
|
|
2263
2263
|
} | undefined;
|
|
@@ -2382,6 +2382,8 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2382
2382
|
entityId: string;
|
|
2383
2383
|
};
|
|
2384
2384
|
version: number;
|
|
2385
|
+
x: number;
|
|
2386
|
+
y: number;
|
|
2385
2387
|
inputs: (Record<string, any> | {
|
|
2386
2388
|
type: EntityType.InputMap;
|
|
2387
2389
|
})[];
|
|
@@ -2509,8 +2511,6 @@ export declare function getFunctionCallSchema(): z.ZodObject<z.objectUtil.extend
|
|
|
2509
2511
|
} | {
|
|
2510
2512
|
type: EntityType.VariableInstance;
|
|
2511
2513
|
})[];
|
|
2512
|
-
x: number;
|
|
2513
|
-
y: number;
|
|
2514
2514
|
error?: Record<string, any> | {
|
|
2515
2515
|
type: EntityType.OutputMap;
|
|
2516
2516
|
} | undefined;
|
|
@@ -56,18 +56,18 @@ export declare function getFunctionDeclarationMetaSchema(): z.ZodObject<z.object
|
|
|
56
56
|
name: string;
|
|
57
57
|
description: string | null;
|
|
58
58
|
version: number;
|
|
59
|
-
index: number | null;
|
|
60
59
|
x: number;
|
|
61
60
|
y: number;
|
|
61
|
+
index: number | null;
|
|
62
62
|
}, {
|
|
63
63
|
id: string;
|
|
64
64
|
type: EntityType.FunctionDeclaration;
|
|
65
65
|
name: string;
|
|
66
66
|
description: string | null;
|
|
67
67
|
version: number;
|
|
68
|
-
index: number | null;
|
|
69
68
|
x: number;
|
|
70
69
|
y: number;
|
|
70
|
+
index: number | null;
|
|
71
71
|
}>;
|
|
72
72
|
export declare function getFunctionDeclarationGenerationTargetSchema(): z.ZodObject<{
|
|
73
73
|
id: z.ZodString;
|
|
@@ -444,12 +444,12 @@ export declare function getFunctionDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
444
444
|
entityId: string;
|
|
445
445
|
};
|
|
446
446
|
version: number;
|
|
447
|
+
x: number;
|
|
448
|
+
y: number;
|
|
447
449
|
index: number | null;
|
|
448
450
|
inputs: (Record<string, any> | {
|
|
449
451
|
type: EntityType.ArgumentDeclaration;
|
|
450
452
|
})[];
|
|
451
|
-
x: number;
|
|
452
|
-
y: number;
|
|
453
453
|
returnStatements: (Record<string, any> | {
|
|
454
454
|
type: EntityType.ReturnStatement;
|
|
455
455
|
})[];
|
|
@@ -493,12 +493,12 @@ export declare function getFunctionDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
493
493
|
entityId: string;
|
|
494
494
|
};
|
|
495
495
|
version: number;
|
|
496
|
+
x: number;
|
|
497
|
+
y: number;
|
|
496
498
|
index: number | null;
|
|
497
499
|
inputs: (Record<string, any> | {
|
|
498
500
|
type: EntityType.ArgumentDeclaration;
|
|
499
501
|
})[];
|
|
500
|
-
x: number;
|
|
501
|
-
y: number;
|
|
502
502
|
returnStatements: (Record<string, any> | {
|
|
503
503
|
type: EntityType.ReturnStatement;
|
|
504
504
|
})[];
|
|
@@ -1100,11 +1100,11 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1100
1100
|
entityId: string;
|
|
1101
1101
|
};
|
|
1102
1102
|
version: number;
|
|
1103
|
+
x: number;
|
|
1104
|
+
y: number;
|
|
1103
1105
|
inputs: (Record<string, any> | {
|
|
1104
1106
|
type: EntityType.ArgumentDeclaration;
|
|
1105
1107
|
})[];
|
|
1106
|
-
x: number;
|
|
1107
|
-
y: number;
|
|
1108
1108
|
collapsed: boolean;
|
|
1109
1109
|
returnStatements: (Record<string, any> | {
|
|
1110
1110
|
type: EntityType.ReturnStatement;
|
|
@@ -1215,11 +1215,11 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1215
1215
|
entityId: string;
|
|
1216
1216
|
};
|
|
1217
1217
|
version: number;
|
|
1218
|
+
x: number;
|
|
1219
|
+
y: number;
|
|
1218
1220
|
inputs: (Record<string, any> | {
|
|
1219
1221
|
type: EntityType.ArgumentDeclaration;
|
|
1220
1222
|
})[];
|
|
1221
|
-
x: number;
|
|
1222
|
-
y: number;
|
|
1223
1223
|
collapsed: boolean;
|
|
1224
1224
|
returnStatements: (Record<string, any> | {
|
|
1225
1225
|
type: EntityType.ReturnStatement;
|
|
@@ -204,14 +204,14 @@ export declare function getInstalledProjectSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
204
204
|
entityId: string;
|
|
205
205
|
};
|
|
206
206
|
version: number;
|
|
207
|
+
x: number;
|
|
208
|
+
y: number;
|
|
207
209
|
functions: (Record<string, any> | {
|
|
208
210
|
type: EntityType.FunctionDeclaration;
|
|
209
211
|
})[];
|
|
210
212
|
events: (Record<string, any> | {
|
|
211
213
|
type: EntityType.GlobalEvent;
|
|
212
214
|
})[];
|
|
213
|
-
x: number;
|
|
214
|
-
y: number;
|
|
215
215
|
}, {
|
|
216
216
|
description: string | null;
|
|
217
217
|
implements: {
|
|
@@ -227,12 +227,12 @@ export declare function getInstalledProjectSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
227
227
|
entityId: string;
|
|
228
228
|
};
|
|
229
229
|
version: number;
|
|
230
|
+
x: number;
|
|
231
|
+
y: number;
|
|
230
232
|
functions: (Record<string, any> | {
|
|
231
233
|
type: EntityType.FunctionDeclaration;
|
|
232
234
|
})[];
|
|
233
235
|
events: (Record<string, any> | {
|
|
234
236
|
type: EntityType.GlobalEvent;
|
|
235
237
|
})[];
|
|
236
|
-
x: number;
|
|
237
|
-
y: number;
|
|
238
238
|
}>;
|
|
@@ -7,7 +7,6 @@ import { ZodError } from 'zod';
|
|
|
7
7
|
import { BaseState, ChildEntityState, IEditableEntityPersistanceRepository, IEntityJSONCloneOptions, IEntityPersistanceOptions, IEntityRecursionOptions, UserManagedEntityStateTemplate } from '../base';
|
|
8
8
|
import { FunctionDeclarationState } from '../function-declaration';
|
|
9
9
|
import { EntityError, EntityGenerationError } from '../error';
|
|
10
|
-
import { OperationState } from '../operation';
|
|
11
10
|
import { EntityState, EntityWithValueState, UserManagedEntityState } from '../types';
|
|
12
11
|
import { PropertyState } from '../property';
|
|
13
12
|
import { ArgumentDeclarationState } from '../argument-declaration';
|
|
@@ -18,12 +17,16 @@ import { OutputMapState } from '../output-map';
|
|
|
18
17
|
import { VariableInstanceState } from '../variable-instance';
|
|
19
18
|
import { VersionedState } from '../version';
|
|
20
19
|
import { ChangeSet, IChangeSet } from '../change-set';
|
|
20
|
+
import { ActionDescriptorState } from '../action-descriptor';
|
|
21
|
+
import { BuiltInBaseEntityState } from '../built-in-base-entity';
|
|
22
|
+
import { OperationState } from '../operation';
|
|
23
|
+
import { FunctionCallState } from '../function-call';
|
|
21
24
|
|
|
22
25
|
export declare enum LiteralValueDependencyField {
|
|
23
26
|
ValueAsTypeSingle = "value-as-type-single",
|
|
24
27
|
ValueAsTypeList = "value-as-type-list"
|
|
25
28
|
}
|
|
26
|
-
export type ValueAsTypeState = DefinitionEntityState | FunctionDeclarationState | OperationState;
|
|
29
|
+
export type ValueAsTypeState = DefinitionEntityState | FunctionDeclarationState | OperationState | FunctionCallState | ActionDescriptorState | BuiltInBaseEntityState;
|
|
27
30
|
export declare class LiteralValueState extends VersionedState implements BaseState, UserManagedEntityStateTemplate, ChildEntityState, ILiteralValue {
|
|
28
31
|
initialData: ILiteralValue | ILiteralValueTransfer;
|
|
29
32
|
readonly type: EntityType.LiteralValue;
|
|
@@ -2158,6 +2158,8 @@ export declare function getLoopSchema(): z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
2158
2158
|
type: EntityType.OutputMap;
|
|
2159
2159
|
};
|
|
2160
2160
|
version: number;
|
|
2161
|
+
x: number;
|
|
2162
|
+
y: number;
|
|
2161
2163
|
inputs: (Record<string, any> | {
|
|
2162
2164
|
type: EntityType.InputMap;
|
|
2163
2165
|
})[];
|
|
@@ -2276,8 +2278,6 @@ export declare function getLoopSchema(): z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
2276
2278
|
entityType: EntityType.ContinueStatement;
|
|
2277
2279
|
entityId: string;
|
|
2278
2280
|
})[];
|
|
2279
|
-
x: number;
|
|
2280
|
-
y: number;
|
|
2281
2281
|
outputsDeclarations: ({
|
|
2282
2282
|
type: EntityType.ValueDescriptor;
|
|
2283
2283
|
} | Record<string, any>)[];
|
|
@@ -2414,6 +2414,8 @@ export declare function getLoopSchema(): z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
2414
2414
|
type: EntityType.OutputMap;
|
|
2415
2415
|
};
|
|
2416
2416
|
version: number;
|
|
2417
|
+
x: number;
|
|
2418
|
+
y: number;
|
|
2417
2419
|
inputs: (Record<string, any> | {
|
|
2418
2420
|
type: EntityType.InputMap;
|
|
2419
2421
|
})[];
|
|
@@ -2532,8 +2534,6 @@ export declare function getLoopSchema(): z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
2532
2534
|
entityType: EntityType.ContinueStatement;
|
|
2533
2535
|
entityId: string;
|
|
2534
2536
|
})[];
|
|
2535
|
-
x: number;
|
|
2536
|
-
y: number;
|
|
2537
2537
|
outputsDeclarations: ({
|
|
2538
2538
|
type: EntityType.ValueDescriptor;
|
|
2539
2539
|
} | Record<string, any>)[];
|
|
@@ -2142,6 +2142,8 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2142
2142
|
type: EntityType.OutputMap;
|
|
2143
2143
|
})[];
|
|
2144
2144
|
version: number;
|
|
2145
|
+
x: number;
|
|
2146
|
+
y: number;
|
|
2145
2147
|
inputs: (Record<string, any> | {
|
|
2146
2148
|
type: EntityType.InputMap;
|
|
2147
2149
|
})[];
|
|
@@ -2269,8 +2271,6 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2269
2271
|
} | {
|
|
2270
2272
|
type: EntityType.VariableInstance;
|
|
2271
2273
|
})[];
|
|
2272
|
-
x: number;
|
|
2273
|
-
y: number;
|
|
2274
2274
|
}, {
|
|
2275
2275
|
id: string;
|
|
2276
2276
|
type: EntityType.Operation;
|
|
@@ -2395,6 +2395,8 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2395
2395
|
type: EntityType.OutputMap;
|
|
2396
2396
|
})[];
|
|
2397
2397
|
version: number;
|
|
2398
|
+
x: number;
|
|
2399
|
+
y: number;
|
|
2398
2400
|
inputs: (Record<string, any> | {
|
|
2399
2401
|
type: EntityType.InputMap;
|
|
2400
2402
|
})[];
|
|
@@ -2522,6 +2524,4 @@ export declare function getOperationSchema(): z.ZodObject<z.objectUtil.extendSha
|
|
|
2522
2524
|
} | {
|
|
2523
2525
|
type: EntityType.VariableInstance;
|
|
2524
2526
|
})[];
|
|
2525
|
-
x: number;
|
|
2526
|
-
y: number;
|
|
2527
2527
|
}>;
|
|
@@ -1085,11 +1085,11 @@ export declare function getReturnStatementSchema(): z.ZodObject<z.objectUtil.ext
|
|
|
1085
1085
|
entityId: string;
|
|
1086
1086
|
};
|
|
1087
1087
|
version: number;
|
|
1088
|
+
x: number;
|
|
1089
|
+
y: number;
|
|
1088
1090
|
outputs: (Record<string, any> | {
|
|
1089
1091
|
type: EntityType.ReturnDeclaration;
|
|
1090
1092
|
})[];
|
|
1091
|
-
x: number;
|
|
1092
|
-
y: number;
|
|
1093
1093
|
throws?: Record<string, any> | {
|
|
1094
1094
|
type: EntityType.ReturnDeclaration;
|
|
1095
1095
|
} | undefined;
|
|
@@ -1206,11 +1206,11 @@ export declare function getReturnStatementSchema(): z.ZodObject<z.objectUtil.ext
|
|
|
1206
1206
|
entityId: string;
|
|
1207
1207
|
};
|
|
1208
1208
|
version: number;
|
|
1209
|
+
x: number;
|
|
1210
|
+
y: number;
|
|
1209
1211
|
outputs: (Record<string, any> | {
|
|
1210
1212
|
type: EntityType.ReturnDeclaration;
|
|
1211
1213
|
})[];
|
|
1212
|
-
x: number;
|
|
1213
|
-
y: number;
|
|
1214
1214
|
throws?: Record<string, any> | {
|
|
1215
1215
|
type: EntityType.ReturnDeclaration;
|
|
1216
1216
|
} | undefined;
|
|
@@ -2113,6 +2113,8 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2113
2113
|
type: EntityType.OutputMap;
|
|
2114
2114
|
} | null;
|
|
2115
2115
|
version: number;
|
|
2116
|
+
x: number;
|
|
2117
|
+
y: number;
|
|
2116
2118
|
inputs: (Record<string, any> | {
|
|
2117
2119
|
type: EntityType.InputMap;
|
|
2118
2120
|
})[];
|
|
@@ -2231,8 +2233,6 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2231
2233
|
entityType: EntityType.ContinueStatement;
|
|
2232
2234
|
entityId: string;
|
|
2233
2235
|
})[];
|
|
2234
|
-
x: number;
|
|
2235
|
-
y: number;
|
|
2236
2236
|
outputsDeclarations: ({
|
|
2237
2237
|
type: EntityType.ValueDescriptor;
|
|
2238
2238
|
} | Record<string, any>)[];
|
|
@@ -2363,6 +2363,8 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2363
2363
|
type: EntityType.OutputMap;
|
|
2364
2364
|
} | null;
|
|
2365
2365
|
version: number;
|
|
2366
|
+
x: number;
|
|
2367
|
+
y: number;
|
|
2366
2368
|
inputs: (Record<string, any> | {
|
|
2367
2369
|
type: EntityType.InputMap;
|
|
2368
2370
|
})[];
|
|
@@ -2481,8 +2483,6 @@ export declare function getSearchSchema(): z.ZodObject<z.objectUtil.extendShape<
|
|
|
2481
2483
|
entityType: EntityType.ContinueStatement;
|
|
2482
2484
|
entityId: string;
|
|
2483
2485
|
})[];
|
|
2484
|
-
x: number;
|
|
2485
|
-
y: number;
|
|
2486
2486
|
outputsDeclarations: ({
|
|
2487
2487
|
type: EntityType.ValueDescriptor;
|
|
2488
2488
|
} | Record<string, any>)[];
|
|
@@ -2264,6 +2264,8 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2264
2264
|
entityId: string;
|
|
2265
2265
|
};
|
|
2266
2266
|
version: number;
|
|
2267
|
+
x: number;
|
|
2268
|
+
y: number;
|
|
2267
2269
|
dataType: Record<string, any> | {
|
|
2268
2270
|
type: EntityType.DataType;
|
|
2269
2271
|
} | null;
|
|
@@ -2394,8 +2396,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2394
2396
|
} | {
|
|
2395
2397
|
type: EntityType.VariableInstance;
|
|
2396
2398
|
})[];
|
|
2397
|
-
x: number;
|
|
2398
|
-
y: number;
|
|
2399
2399
|
readsValue: Record<string, any> | {
|
|
2400
2400
|
type: EntityType.OutputMap;
|
|
2401
2401
|
} | {
|
|
@@ -2534,6 +2534,8 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2534
2534
|
entityId: string;
|
|
2535
2535
|
};
|
|
2536
2536
|
version: number;
|
|
2537
|
+
x: number;
|
|
2538
|
+
y: number;
|
|
2537
2539
|
dataType: Record<string, any> | {
|
|
2538
2540
|
type: EntityType.DataType;
|
|
2539
2541
|
} | null;
|
|
@@ -2664,8 +2666,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2664
2666
|
} | {
|
|
2665
2667
|
type: EntityType.VariableInstance;
|
|
2666
2668
|
})[];
|
|
2667
|
-
x: number;
|
|
2668
|
-
y: number;
|
|
2669
2669
|
readsValue: Record<string, any> | {
|
|
2670
2670
|
type: EntityType.OutputMap;
|
|
2671
2671
|
} | {
|
|
@@ -2265,6 +2265,8 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2265
2265
|
entityId: string;
|
|
2266
2266
|
};
|
|
2267
2267
|
version: number;
|
|
2268
|
+
x: number;
|
|
2269
|
+
y: number;
|
|
2268
2270
|
dataType: Record<string, any> | {
|
|
2269
2271
|
type: EntityType.DataType;
|
|
2270
2272
|
} | null;
|
|
@@ -2395,8 +2397,6 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2395
2397
|
} | {
|
|
2396
2398
|
type: EntityType.VariableInstance;
|
|
2397
2399
|
})[];
|
|
2398
|
-
x: number;
|
|
2399
|
-
y: number;
|
|
2400
2400
|
readsValue: Record<string, any> | {
|
|
2401
2401
|
type: EntityType.OutputMap;
|
|
2402
2402
|
} | {
|
|
@@ -2536,6 +2536,8 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2536
2536
|
entityId: string;
|
|
2537
2537
|
};
|
|
2538
2538
|
version: number;
|
|
2539
|
+
x: number;
|
|
2540
|
+
y: number;
|
|
2539
2541
|
dataType: Record<string, any> | {
|
|
2540
2542
|
type: EntityType.DataType;
|
|
2541
2543
|
} | null;
|
|
@@ -2666,8 +2668,6 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2666
2668
|
} | {
|
|
2667
2669
|
type: EntityType.VariableInstance;
|
|
2668
2670
|
})[];
|
|
2669
|
-
x: number;
|
|
2670
|
-
y: number;
|
|
2671
2671
|
readsValue: Record<string, any> | {
|
|
2672
2672
|
type: EntityType.OutputMap;
|
|
2673
2673
|
} | {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6235",
|
|
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",
|