@elyx-code/project-logic-tree 0.0.6421 → 0.0.6423
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/index.d.ts +22 -0
- package/dist/index.js +14207 -14083
- package/dist/index.umd.cjs +151 -151
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -816,6 +816,17 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
816
816
|
id: string;
|
|
817
817
|
};
|
|
818
818
|
};
|
|
819
|
+
methods: {
|
|
820
|
+
save: {
|
|
821
|
+
id: BuiltInFunctionIds;
|
|
822
|
+
};
|
|
823
|
+
update: {
|
|
824
|
+
id: BuiltInFunctionIds;
|
|
825
|
+
};
|
|
826
|
+
delete: {
|
|
827
|
+
id: BuiltInFunctionIds;
|
|
828
|
+
};
|
|
829
|
+
};
|
|
819
830
|
};
|
|
820
831
|
BUILT_IN_RELATIONAL_DATABASE_ENTITY: {
|
|
821
832
|
id: BaseEntityNames;
|
|
@@ -1494,6 +1505,7 @@ export declare type BuiltInElementTypesUnion = BuiltInElement | BuiltInElementTr
|
|
|
1494
1505
|
export declare enum BuiltInFunctionIds {
|
|
1495
1506
|
DeletePersistedEntity = "base-delete-persisted-entity",
|
|
1496
1507
|
SavePersistedEntity = "base-save-persisted-entity",
|
|
1508
|
+
UpdatePersistedEntity = "base-update-persisted-entity",
|
|
1497
1509
|
AbortExecution = "base-abort-execution"
|
|
1498
1510
|
}
|
|
1499
1511
|
|
|
@@ -2562,6 +2574,7 @@ export declare const DEFAULT_MODULE_IDS: {
|
|
|
2562
2574
|
SEARCH_NODE_IMPLEMENTATION: string;
|
|
2563
2575
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__ABORT_EXECUTION: string;
|
|
2564
2576
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__SAVE_PERSISTED_ENTITY: string;
|
|
2577
|
+
BUILT_IN_FUNCTION_IMPLEMENTATIONS__UPDATE_PERSISTED_ENTITY: string;
|
|
2565
2578
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__DELETE_PERSISTED_ENTITY: string;
|
|
2566
2579
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__HTTP_REQUEST: string;
|
|
2567
2580
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALIDATE_ENTITY: string;
|
|
@@ -4052,6 +4065,8 @@ export declare function flattenVariables(element: CanvasEntityState, seenVariabl
|
|
|
4052
4065
|
|
|
4053
4066
|
export declare function flattenVariableWrites(variable: VariableState, seenVariables?: Set<string>): VariableState[];
|
|
4054
4067
|
|
|
4068
|
+
export declare function flattenWrites(entity: ValueWritingEntityState, seenEntities?: Set<string>): ValueReadingEntityState[];
|
|
4069
|
+
|
|
4055
4070
|
declare const FORBIDDEN_SQL_KEYWORDS: string[];
|
|
4056
4071
|
|
|
4057
4072
|
export declare function fromChangeSetToRecordChangeSet<TSelf extends {
|
|
@@ -6486,6 +6501,11 @@ export declare function getEarliestIndividualCommonCallerAncestor(entityA: Execu
|
|
|
6486
6501
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | 'same-entity' | null;
|
|
6487
6502
|
};
|
|
6488
6503
|
|
|
6504
|
+
export declare function getEarliestSingleCallerAncestorOfValueWriterAndItsValueReaders(entity: VariableDeclarationState | OutputMapState): {
|
|
6505
|
+
ancestor: CallerEntityState | null;
|
|
6506
|
+
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
6507
|
+
};
|
|
6508
|
+
|
|
6489
6509
|
export declare function getEntitiesCreatedSinceInitialization(projectState: ProjectState, preInitDate: string): UserManagedEntityState[];
|
|
6490
6510
|
|
|
6491
6511
|
export declare function getEntitiesToPropagateValuesTo(entity: EntityWithValueState, project: ProjectState, seenInRecursion?: Set<EntityId>): EntityWithValueState[];
|
|
@@ -7750,6 +7770,8 @@ export declare function getParentCanvasEntityFromTransfer(entity: Element_2 | El
|
|
|
7750
7770
|
|
|
7751
7771
|
export declare function getParentEntryPoint(entity: EntityState): EntryPointEntityState | null;
|
|
7752
7772
|
|
|
7773
|
+
export declare function getParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
|
|
7774
|
+
|
|
7753
7775
|
export declare function getParentPassthroughCallableEntity(entity: EntityState): PassThroughCallableEntityState | null;
|
|
7754
7776
|
|
|
7755
7777
|
export declare function getPassThroughCallableEntityReferenceSchema(): z_2.ZodUnion<[z_2.ZodObject<{
|