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

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
@@ -1987,6 +1987,8 @@ export declare class DataTypeState extends VersionedState implements IDataType,
1987
1987
  isObject(): boolean;
1988
1988
  canBeObject(): boolean;
1989
1989
  hasStrictObjectStructure(): boolean;
1990
+ isInlineDeclaredEntity(): boolean;
1991
+ canModifyInlineDeclaredEntity(): boolean;
1990
1992
  inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
1991
1993
  }
1992
1994
 
@@ -2244,6 +2246,12 @@ export declare class DefinitionEntityState extends VersionedState implements Bas
2244
2246
  implement(newEntityName: string, changeSet?: ChangeSet | null, newId?: string): DefinitionEntityState;
2245
2247
  getAllInteractiveMethods(): FunctionDeclarationState[];
2246
2248
  inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DefinitionEntityState>;
2249
+ getRawDefaultValue(): {
2250
+ [propertyName: string]: any;
2251
+ };
2252
+ getActiveRawDefaultValue(): {
2253
+ [propertyName: string]: any;
2254
+ };
2247
2255
  }
2248
2256
 
2249
2257
  export declare function definitionEntityToZodSchema(entity: IDefinitionEntity): z.ZodObject<any>;
@@ -11686,6 +11694,7 @@ export declare class ProjectState extends CombinedVersionedEvents implements IPr
11686
11694
 
11687
11695
  export declare enum ProjectStateEvents {
11688
11696
  PROJECT_INITIALIZED = "project-initialized",
11697
+ CHANGE_SET_CLOSED = "change-set-closed",
11689
11698
  DEFINITION_ENTITY_ADDED = "definition-entity-added",
11690
11699
  DEFINITION_ENTITY_REMOVED = "definition-entity-removed",
11691
11700
  DEFINITION_ENTITY_UPDATED = "definition-entity-updated",