@elyx-code/project-logic-tree 0.0.6684 → 0.0.6686
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.cjs +73 -73
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4152 -4132
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13818,6 +13818,8 @@ export declare function filterOutDuplicateEntitiesAsync(entities: (EntityState |
|
|
|
13818
13818
|
|
|
13819
13819
|
export declare function filterOutDuplicateErrors(errors: (EntityGenerationError | EntityError)[]): EntityGenerationError[] | EntityError[];
|
|
13820
13820
|
|
|
13821
|
+
export declare function filterOutDuplicateErrorsAsync(errors: (EntityGenerationError | EntityError)[], options?: YieldOptions): Promise<EntityGenerationError[] | EntityError[]>;
|
|
13822
|
+
|
|
13821
13823
|
export declare function findEntityFromKeys(keys: string[], project: ProjectState): DefinitionEntityState | null;
|
|
13822
13824
|
|
|
13823
13825
|
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|
|
@@ -29296,6 +29298,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29296
29298
|
initialized: boolean;
|
|
29297
29299
|
startedInitialization: boolean;
|
|
29298
29300
|
diggestedBuiltInBaseEntitiesIds: Set<EntityId>;
|
|
29301
|
+
_testProp: boolean;
|
|
29299
29302
|
onPersistChangeSetSequentiallyCallback: ((changeSet: ChangeSet) => Promise<{
|
|
29300
29303
|
success: boolean;
|
|
29301
29304
|
}>) | null;
|