@elyx-code/project-logic-tree 0.0.6029 → 0.0.6031
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/built-in-base-entities/operations/custom-entity/create-new.d.ts +6 -1
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/create-new-bank-account.d.ts +12 -4
- package/dist/definitions/mock/default-mock/functions/replace-back-account-in-company/ids.d.ts +1 -0
- package/dist/index.js +6674 -6538
- package/dist/index.umd.cjs +112 -112
- package/dist/tree/state/argument-declaration/validation/validation-schema.d.ts +12 -12
- package/dist/tree/state/variable-declaration/validation/validation-schema.d.ts +12 -12
- package/dist/tree/state/variable-instance/validation/validation-schema.d.ts +12 -12
- package/package.json +1 -1
|
@@ -215,9 +215,6 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
215
215
|
entityType: EntityType.BreakStatement;
|
|
216
216
|
entityId: string;
|
|
217
217
|
};
|
|
218
|
-
dataType: Record<string, any> | {
|
|
219
|
-
type: EntityType.DataType;
|
|
220
|
-
} | null;
|
|
221
218
|
writesValues: (Record<string, any> | {
|
|
222
219
|
type: EntityType.InputMap;
|
|
223
220
|
} | {
|
|
@@ -227,6 +224,9 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
227
224
|
} | {
|
|
228
225
|
type: EntityType.VariableInstance;
|
|
229
226
|
})[];
|
|
227
|
+
dataType: Record<string, any> | {
|
|
228
|
+
type: EntityType.DataType;
|
|
229
|
+
} | null;
|
|
230
230
|
}, {
|
|
231
231
|
parent: {
|
|
232
232
|
id: string;
|
|
@@ -254,9 +254,6 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
254
254
|
entityType: EntityType.BreakStatement;
|
|
255
255
|
entityId: string;
|
|
256
256
|
};
|
|
257
|
-
dataType: Record<string, any> | {
|
|
258
|
-
type: EntityType.DataType;
|
|
259
|
-
} | null;
|
|
260
257
|
writesValues: (Record<string, any> | {
|
|
261
258
|
type: EntityType.InputMap;
|
|
262
259
|
} | {
|
|
@@ -266,6 +263,9 @@ export declare function getArgumentDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
266
263
|
} | {
|
|
267
264
|
type: EntityType.VariableInstance;
|
|
268
265
|
})[];
|
|
266
|
+
dataType: Record<string, any> | {
|
|
267
|
+
type: EntityType.DataType;
|
|
268
|
+
} | null;
|
|
269
269
|
}>;
|
|
270
270
|
export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
271
271
|
id: z.ZodString;
|
|
@@ -430,9 +430,6 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
430
430
|
version: number;
|
|
431
431
|
x: number;
|
|
432
432
|
y: number;
|
|
433
|
-
dataType: Record<string, any> | {
|
|
434
|
-
type: EntityType.DataType;
|
|
435
|
-
} | null;
|
|
436
433
|
writesValues: (Record<string, any> | {
|
|
437
434
|
type: EntityType.InputMap;
|
|
438
435
|
} | {
|
|
@@ -442,6 +439,9 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
442
439
|
} | {
|
|
443
440
|
type: EntityType.VariableInstance;
|
|
444
441
|
})[];
|
|
442
|
+
dataType: Record<string, any> | {
|
|
443
|
+
type: EntityType.DataType;
|
|
444
|
+
} | null;
|
|
445
445
|
}, {
|
|
446
446
|
id: string;
|
|
447
447
|
type: EntityType.ArgumentDeclaration;
|
|
@@ -474,9 +474,6 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
474
474
|
version: number;
|
|
475
475
|
x: number;
|
|
476
476
|
y: number;
|
|
477
|
-
dataType: Record<string, any> | {
|
|
478
|
-
type: EntityType.DataType;
|
|
479
|
-
} | null;
|
|
480
477
|
writesValues: (Record<string, any> | {
|
|
481
478
|
type: EntityType.InputMap;
|
|
482
479
|
} | {
|
|
@@ -486,4 +483,7 @@ export declare function getArgumentDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
486
483
|
} | {
|
|
487
484
|
type: EntityType.VariableInstance;
|
|
488
485
|
})[];
|
|
486
|
+
dataType: Record<string, any> | {
|
|
487
|
+
type: EntityType.DataType;
|
|
488
|
+
} | null;
|
|
489
489
|
}>;
|
|
@@ -1093,9 +1093,6 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1093
1093
|
entityType: EntityType.ContinueStatement;
|
|
1094
1094
|
entityId: string;
|
|
1095
1095
|
})[];
|
|
1096
|
-
dataType: Record<string, any> | {
|
|
1097
|
-
type: EntityType.DataType;
|
|
1098
|
-
} | null;
|
|
1099
1096
|
writesValues: (Record<string, any> | {
|
|
1100
1097
|
type: EntityType.InputMap;
|
|
1101
1098
|
} | {
|
|
@@ -1105,6 +1102,9 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1105
1102
|
} | {
|
|
1106
1103
|
type: EntityType.VariableInstance;
|
|
1107
1104
|
})[];
|
|
1105
|
+
dataType: Record<string, any> | {
|
|
1106
|
+
type: EntityType.DataType;
|
|
1107
|
+
} | null;
|
|
1108
1108
|
internalCalls: (Record<string, any> | {
|
|
1109
1109
|
type: EntityType.InternalCall;
|
|
1110
1110
|
})[];
|
|
@@ -1356,9 +1356,6 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1356
1356
|
entityType: EntityType.ContinueStatement;
|
|
1357
1357
|
entityId: string;
|
|
1358
1358
|
})[];
|
|
1359
|
-
dataType: Record<string, any> | {
|
|
1360
|
-
type: EntityType.DataType;
|
|
1361
|
-
} | null;
|
|
1362
1359
|
writesValues: (Record<string, any> | {
|
|
1363
1360
|
type: EntityType.InputMap;
|
|
1364
1361
|
} | {
|
|
@@ -1368,6 +1365,9 @@ export declare function getVariableDeclarationNestedEntitiesSchema(): z.ZodObjec
|
|
|
1368
1365
|
} | {
|
|
1369
1366
|
type: EntityType.VariableInstance;
|
|
1370
1367
|
})[];
|
|
1368
|
+
dataType: Record<string, any> | {
|
|
1369
|
+
type: EntityType.DataType;
|
|
1370
|
+
} | null;
|
|
1371
1371
|
internalCalls: (Record<string, any> | {
|
|
1372
1372
|
type: EntityType.InternalCall;
|
|
1373
1373
|
})[];
|
|
@@ -2399,9 +2399,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2399
2399
|
entityType: EntityType.ContinueStatement;
|
|
2400
2400
|
entityId: string;
|
|
2401
2401
|
})[];
|
|
2402
|
-
dataType: Record<string, any> | {
|
|
2403
|
-
type: EntityType.DataType;
|
|
2404
|
-
} | null;
|
|
2405
2402
|
writesValues: (Record<string, any> | {
|
|
2406
2403
|
type: EntityType.InputMap;
|
|
2407
2404
|
} | {
|
|
@@ -2411,6 +2408,9 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2411
2408
|
} | {
|
|
2412
2409
|
type: EntityType.VariableInstance;
|
|
2413
2410
|
})[];
|
|
2411
|
+
dataType: Record<string, any> | {
|
|
2412
|
+
type: EntityType.DataType;
|
|
2413
|
+
} | null;
|
|
2414
2414
|
internalCalls: (Record<string, any> | {
|
|
2415
2415
|
type: EntityType.InternalCall;
|
|
2416
2416
|
})[];
|
|
@@ -2669,9 +2669,6 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2669
2669
|
entityType: EntityType.ContinueStatement;
|
|
2670
2670
|
entityId: string;
|
|
2671
2671
|
})[];
|
|
2672
|
-
dataType: Record<string, any> | {
|
|
2673
|
-
type: EntityType.DataType;
|
|
2674
|
-
} | null;
|
|
2675
2672
|
writesValues: (Record<string, any> | {
|
|
2676
2673
|
type: EntityType.InputMap;
|
|
2677
2674
|
} | {
|
|
@@ -2681,6 +2678,9 @@ export declare function getVariableDeclarationSchema(): z.ZodObject<z.objectUtil
|
|
|
2681
2678
|
} | {
|
|
2682
2679
|
type: EntityType.VariableInstance;
|
|
2683
2680
|
})[];
|
|
2681
|
+
dataType: Record<string, any> | {
|
|
2682
|
+
type: EntityType.DataType;
|
|
2683
|
+
} | null;
|
|
2684
2684
|
internalCalls: (Record<string, any> | {
|
|
2685
2685
|
type: EntityType.InternalCall;
|
|
2686
2686
|
})[];
|
|
@@ -1085,9 +1085,6 @@ export declare function getVariableInstanceNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1085
1085
|
entityType: EntityType.ContinueStatement;
|
|
1086
1086
|
entityId: string;
|
|
1087
1087
|
})[];
|
|
1088
|
-
dataType: Record<string, any> | {
|
|
1089
|
-
type: EntityType.DataType;
|
|
1090
|
-
} | null;
|
|
1091
1088
|
writesValues: (Record<string, any> | {
|
|
1092
1089
|
type: EntityType.InputMap;
|
|
1093
1090
|
} | {
|
|
@@ -1097,6 +1094,9 @@ export declare function getVariableInstanceNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1097
1094
|
} | {
|
|
1098
1095
|
type: EntityType.VariableInstance;
|
|
1099
1096
|
})[];
|
|
1097
|
+
dataType: Record<string, any> | {
|
|
1098
|
+
type: EntityType.DataType;
|
|
1099
|
+
} | null;
|
|
1100
1100
|
internalCalls: (Record<string, any> | {
|
|
1101
1101
|
type: EntityType.InternalCall;
|
|
1102
1102
|
})[];
|
|
@@ -1351,9 +1351,6 @@ export declare function getVariableInstanceNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1351
1351
|
entityType: EntityType.ContinueStatement;
|
|
1352
1352
|
entityId: string;
|
|
1353
1353
|
})[];
|
|
1354
|
-
dataType: Record<string, any> | {
|
|
1355
|
-
type: EntityType.DataType;
|
|
1356
|
-
} | null;
|
|
1357
1354
|
writesValues: (Record<string, any> | {
|
|
1358
1355
|
type: EntityType.InputMap;
|
|
1359
1356
|
} | {
|
|
@@ -1363,6 +1360,9 @@ export declare function getVariableInstanceNestedEntitiesSchema(): z.ZodObject<{
|
|
|
1363
1360
|
} | {
|
|
1364
1361
|
type: EntityType.VariableInstance;
|
|
1365
1362
|
})[];
|
|
1363
|
+
dataType: Record<string, any> | {
|
|
1364
|
+
type: EntityType.DataType;
|
|
1365
|
+
} | null;
|
|
1366
1366
|
internalCalls: (Record<string, any> | {
|
|
1367
1367
|
type: EntityType.InternalCall;
|
|
1368
1368
|
})[];
|
|
@@ -2400,9 +2400,6 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2400
2400
|
entityType: EntityType.ContinueStatement;
|
|
2401
2401
|
entityId: string;
|
|
2402
2402
|
})[];
|
|
2403
|
-
dataType: Record<string, any> | {
|
|
2404
|
-
type: EntityType.DataType;
|
|
2405
|
-
} | null;
|
|
2406
2403
|
writesValues: (Record<string, any> | {
|
|
2407
2404
|
type: EntityType.InputMap;
|
|
2408
2405
|
} | {
|
|
@@ -2412,6 +2409,9 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2412
2409
|
} | {
|
|
2413
2410
|
type: EntityType.VariableInstance;
|
|
2414
2411
|
})[];
|
|
2412
|
+
dataType: Record<string, any> | {
|
|
2413
|
+
type: EntityType.DataType;
|
|
2414
|
+
} | null;
|
|
2415
2415
|
internalCalls: (Record<string, any> | {
|
|
2416
2416
|
type: EntityType.InternalCall;
|
|
2417
2417
|
})[];
|
|
@@ -2671,9 +2671,6 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2671
2671
|
entityType: EntityType.ContinueStatement;
|
|
2672
2672
|
entityId: string;
|
|
2673
2673
|
})[];
|
|
2674
|
-
dataType: Record<string, any> | {
|
|
2675
|
-
type: EntityType.DataType;
|
|
2676
|
-
} | null;
|
|
2677
2674
|
writesValues: (Record<string, any> | {
|
|
2678
2675
|
type: EntityType.InputMap;
|
|
2679
2676
|
} | {
|
|
@@ -2683,6 +2680,9 @@ export declare function getVariableInstanceSchema(): z.ZodObject<z.objectUtil.ex
|
|
|
2683
2680
|
} | {
|
|
2684
2681
|
type: EntityType.VariableInstance;
|
|
2685
2682
|
})[];
|
|
2683
|
+
dataType: Record<string, any> | {
|
|
2684
|
+
type: EntityType.DataType;
|
|
2685
|
+
} | null;
|
|
2686
2686
|
internalCalls: (Record<string, any> | {
|
|
2687
2687
|
type: EntityType.InternalCall;
|
|
2688
2688
|
})[];
|
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.6031",
|
|
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",
|