@elyx-code/project-logic-tree 0.0.6957 → 0.0.6958

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
@@ -336,7 +336,7 @@ declare class AggregationStatement implements ISearchNode {
336
336
  get columns(): ColumnRef[];
337
337
  get isValid(): boolean;
338
338
  get selections(): (ColumnRef | AllColumnsSelector | FunctionCall)[];
339
- get selectedColumns(): ColumnRef[];
339
+ get selectedColumns(): (ColumnRef | FunctionCall)[];
340
340
  get primaryKeys(): ColumnRef[];
341
341
  get primaryKey(): ColumnRef | null;
342
342
  setDataSource(dataSource: DataSource): void;
@@ -10158,7 +10158,7 @@ export declare enum BaseValueDescriptorIds {
10158
10158
 
10159
10159
  declare class ColumnRef implements ISearchNode {
10160
10160
  owner: SearchStatementState;
10161
- source: ColumnRef | PropertyState | ValueRef | SearchStatementLiteralValue | null;
10161
+ source: ColumnRef | PropertyState | ValueRef | SearchStatementLiteralValue | FunctionCall | null;
10162
10162
  parent: DataSource | null;
10163
10163
  _id: string;
10164
10164
  _as: string | null;
@@ -10995,7 +10995,7 @@ export declare enum BaseValueDescriptorIds {
10995
10995
  get columns(): ColumnRef[];
10996
10996
  get selections(): (ColumnRef | AllColumnsSelector | FunctionCall)[];
10997
10997
  get mainPersistedEntity(): DefinitionEntityState | null;
10998
- get selectedColumns(): ColumnRef[];
10998
+ get selectedColumns(): (ColumnRef | FunctionCall)[];
10999
10999
  get primaryKeys(): ColumnRef[];
11000
11000
  get primaryKey(): ColumnRef | null;
11001
11001
  }
@@ -15076,6 +15076,8 @@ export declare enum BaseValueDescriptorIds {
15076
15076
  set as(as: string);
15077
15077
  get as(): string;
15078
15078
  get type(): SearchStatementNodeType.FunctionCall;
15079
+ get property(): null;
15080
+ get literalValue(): null;
15079
15081
  get id(): string;
15080
15082
  get isValid(): boolean;
15081
15083
  toQuery(): string;
@@ -31958,6 +31960,8 @@ export declare enum BaseValueDescriptorIds {
31958
31960
 
31959
31961
  export declare function resolvePrimitiveEntityForSearchLiteralValueType(valueType: SearchLiteralValueType, project: ProjectState): PrimitiveEntityState;
31960
31962
 
31963
+ export declare function resolvePrimitiveEntityForSQLDataType(dataType: string | null, project: ProjectState): PrimitiveEntityState;
31964
+
31961
31965
  export declare function resolvePrimitiveEntityName(primitiveEntity: {
31962
31966
  name: PrimitiveTypes;
31963
31967
  [key: string]: any;
@@ -32517,9 +32521,9 @@ export declare enum BaseValueDescriptorIds {
32517
32521
  get mainPersistedEntity(): DefinitionEntityState | null;
32518
32522
  get mainDatabaseEntity(): DefinitionEntityState | null;
32519
32523
  get validSortings(): SortStatement[];
32520
- get selectedColumns(): ColumnRef[];
32524
+ get selectedColumns(): (ColumnRef | FunctionCall)[];
32521
32525
  get validSelections(): (ColumnRef | AllColumnsSelector | FunctionCall)[];
32522
- get validSelectedColumns(): ColumnRef[];
32526
+ get validSelectedColumns(): (ColumnRef | FunctionCall)[];
32523
32527
  get columns(): ColumnRef[];
32524
32528
  get isValid(): boolean;
32525
32529
  get primaryKeys(): ColumnRef[];