@elyx-code/project-logic-tree 0.0.7016 → 0.0.7018

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
@@ -10078,6 +10078,8 @@ export declare enum BaseValueDescriptorIds {
10078
10078
 
10079
10079
  export declare const clampToRangeOperation: IActionDescriptorTransfer;
10080
10080
 
10081
+ export declare function cloneLiteralValueAsStandaloneIfBelongsToProject(entity: LiteralValueState, parent: EntityWithValueState): LiteralValueState;
10082
+
10081
10083
  export declare function cloneOntoExistingProject(source: ProjectState, target: ProjectState, changeSet?: ChangeSet | null, { enrich, shallowErrors, ...other }?: {
10082
10084
  enrich?: boolean;
10083
10085
  shallowErrors?: boolean;
@@ -28204,6 +28206,8 @@ export declare enum BaseValueDescriptorIds {
28204
28206
 
28205
28207
  export declare function rebaseStack<T = any>(undoableStackValueIndex: number, history: T[], newItem: T): number;
28206
28208
 
28209
+ export declare function recursivelyGenerateZodSchemaForDataTypeState(dataType: DataTypeState | null, propertyContext: PropertyState): z.ZodType<any>;
28210
+
28207
28211
  export declare function recursivelyMakeAllEditableAndDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;
28208
28212
 
28209
28213
  export declare function recursivelyMakeAllNonEditableAndNonDeletableFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet | null): void;