@elyx-code/project-logic-tree 0.0.7026 → 0.0.7028

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
@@ -10113,6 +10113,7 @@ export declare enum BaseValueDescriptorIds {
10113
10113
  export declare function cloneProject(project: ProjectState, { enrich, shallowErrors, ...other }?: {
10114
10114
  enrich?: boolean;
10115
10115
  shallowErrors?: boolean;
10116
+ keepIds?: boolean;
10116
10117
  resetVersionOptions?: {
10117
10118
  commonTimestamp?: string;
10118
10119
  author?: string;
@@ -10126,6 +10127,7 @@ export declare enum BaseValueDescriptorIds {
10126
10127
  export declare function cloneProjectAsync(project: ProjectState, { enrich, shallowErrors, ...other }?: YieldOptions & {
10127
10128
  enrich?: boolean;
10128
10129
  shallowErrors?: boolean;
10130
+ keepIds?: boolean;
10129
10131
  resetVersionOptions?: {
10130
10132
  commonTimestamp?: string;
10131
10133
  author?: string;
@@ -32628,6 +32630,11 @@ export declare enum BaseValueDescriptorIds {
32628
32630
  toQuery(): string;
32629
32631
  }
32630
32632
 
32633
+ export declare enum ValuesOperations {
32634
+ MergeEmpty = "op-values-merge-empty",
32635
+ MergeFalsy = "op-values-merge-falsy"
32636
+ }
32637
+
32631
32638
  export declare type ValueValidationCallback<T = LiteralValueType, TCode = SharedEntityErrorCode | EntityInstanceErrorCode> = (self: EntityWithValueState, value: T) => IValueValidationResult<T, TCode>;
32632
32639
 
32633
32640
  export declare type ValueWritingEntity = IVariableDeclaration | IVariableInstance | IArgumentDeclaration | IOutputMap | PassThroughCallableEntityWithOutputs;