@elyx-code/project-logic-tree 0.0.6299 → 0.0.6300

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
@@ -2244,6 +2244,12 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
2244
2244
  implement(newEntityName: string, changeSet?: ChangeSet | null, newId?: string): DefinitionEntityState;
2245
2245
  getAllInteractiveMethods(): FunctionDeclarationState[];
2246
2246
  inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
2247
+ getRawDefaultValue(): {
2248
+ [propertyName: string]: any;
2249
+ };
2250
+ getActiveRawDefaultValue(): {
2251
+ [propertyName: string]: any;
2252
+ };
2247
2253
  }
2248
2254
 
2249
2255
  export declare function definitionEntityToZodSchema(entity: IDefinitionEntity): z.ZodObject<any>;