@elyx-code/project-logic-tree 0.0.6322 → 0.0.6324

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 CHANGED
@@ -8903,8 +8903,9 @@ export declare function initProject(data: IProjectTransfer, { enrich, }?: {
8903
8903
  enrich: boolean;
8904
8904
  }): ProjectState;
8905
8905
 
8906
- export declare function initProjectFromFetchResult(result: IProjectFetchResult, { enrich }?: {
8907
- enrich: boolean;
8906
+ export declare function initProjectFromFetchResult(result: IProjectFetchResult, options?: {
8907
+ enrich?: boolean;
8908
+ shallowErrors?: boolean;
8908
8909
  }): ProjectState;
8909
8910
 
8910
8911
  export declare enum InputMapDependencyField {
@@ -10425,13 +10426,6 @@ export declare enum ListOperations {
10425
10426
  Prepend = "list-prepend"
10426
10427
  }
10427
10428
 
10428
- declare namespace literalValudValidation {
10429
- export {
10430
- validate_24 as validate
10431
- }
10432
- }
10433
- export { literalValudValidation }
10434
-
10435
10429
  export declare type LiteralValueAsType = IDefinitionEntity | IFunctionDeclaration | IOperation | IFunctionCall | IActionDescriptor | IBuiltInBaseEntity;
10436
10430
 
10437
10431
  export declare type LiteralValueAsTypeReference = IDefinitionEntityReference | IFunctionDeclarationReference | IOperationReference | IFunctionCallReference | IActionDescriptorReference | IBuiltInBaseEntityReference;
@@ -10564,6 +10558,13 @@ export declare type LiteralValueType = string | number | boolean | null | Date |
10564
10558
 
10565
10559
  export declare type LiteralValueTypesUnion = ILiteralValue | ILiteralValueTransfer | ILiteralValueShallowTransfer | ILiteralValueGenerationTarget;
10566
10560
 
10561
+ declare namespace literalValueValidation {
10562
+ export {
10563
+ validate_24 as validate
10564
+ }
10565
+ }
10566
+ export { literalValueValidation }
10567
+
10567
10568
  declare function loadProjectDatasources(project: ProjectState): DefinitionEntityState[];
10568
10569
 
10569
10570
  export declare enum LoopDependencyField {