@elyx-code/project-logic-tree 0.0.6895 → 0.0.6897

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
@@ -12519,6 +12519,7 @@ export declare enum BaseValueDescriptorIds {
12519
12519
  Inherited = "inherited",
12520
12520
  DefaultValue = "default-value",
12521
12521
  Missing = "missing",
12522
+ Undefined = "undefined",
12522
12523
  Empty = "empty",
12523
12524
  AutoCalculated = "auto-calculated",
12524
12525
  QueuedAutocalculation = "queued-autocalculation",
@@ -22741,7 +22742,7 @@ export declare enum BaseValueDescriptorIds {
22741
22742
 
22742
22743
  export declare function inferContinueStatementDataType(entity: ContinueStatementState, _changeSet?: ChangeSet | null): DataTypeState | null;
22743
22744
 
22744
- export declare function inferDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
22745
+ export declare function inferDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState | FunctionDeclarationState | GlobalEventState, changeSet?: ChangeSet | null): DataTypeState | null;
22745
22746
 
22746
22747
  export declare function inferFunctionCallDataType(entity: FunctionCallState, _changeSet?: ChangeSet | null): DataTypeState | null;
22747
22748
 
@@ -31796,7 +31797,7 @@ export declare enum BaseValueDescriptorIds {
31796
31797
 
31797
31798
  export declare function resolveConditionOperatorLabel(condition: ConditionState): "is equal to" | "is not equal to" | "is empty" | "is present" | "is greater than" | "is greater than or equal to" | "is less than" | "is less than or equal to" | "contains" | "starts with" | "ends with" | "is false" | "is true" | "and" | "or" | undefined;
31798
31799
 
31799
- export declare function resolveDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState, changeSet?: ChangeSet | null): DataTypeState | null;
31800
+ export declare function resolveDataType(entity: EntityWithValueState | PropertyState | ValueDescriptorState | TerminationEntityState | FunctionDeclarationState | GlobalEventState, changeSet?: ChangeSet | null): DataTypeState | null;
31800
31801
 
31801
31802
  export declare function resolveDataTypeEntityOrNestedChildrenFromLiteralValue(value: any, parentDataType: DataTypeState, newDefinitionEntityMetadata: {
31802
31803
  id?: EntityId;