@elyx-code/project-logic-tree 0.0.6913 → 0.0.6914

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
@@ -32194,9 +32194,12 @@ export declare enum BaseValueDescriptorIds {
32194
32194
  Number = "number",
32195
32195
  Boolean = "boolean",
32196
32196
  Null = "null",
32197
- Date = "date"
32197
+ Date = "date",
32198
+ Array = "array"
32198
32199
  }
32199
32200
 
32201
+ declare type SearchNode = SearchStatementState | SortStatement | AllColumnsSelector | ColumnRef | DataSource | NestedSearchStatement | WhereStatement | SearchStatementLiteralValue | ValueRef | AggregationStatement | FunctionCall;
32202
+
32200
32203
  export declare class SearchNodeImplementationModule extends BaseRegisteredExtension<ISearchNodeImplementationModule> implements IRegisteredExtension<ISearchNodeImplementationModule> {
32201
32204
  manifest: ExtensionManifest;
32202
32205
  module: {
@@ -32424,11 +32427,14 @@ export declare enum BaseValueDescriptorIds {
32424
32427
  declare class SearchStatementLiteralValue implements ISearchNode {
32425
32428
  owner: SearchStatementState;
32426
32429
  valueType: SearchLiteralValueType;
32427
- value: string | number | boolean | null | Date;
32430
+ value: string | number | boolean | null | Date | SearchStatementLiteralValue[];
32428
32431
  _id: string;
32429
32432
  constructor(owner: SearchStatementState);
32430
32433
  get type(): SearchStatementNodeType.LiteralValue;
32431
32434
  get id(): string;
32435
+ get isValid(): boolean;
32436
+ flattenRawValue(): SearchStatementRecursiveLiteralRawValue;
32437
+ private arrayItemsToJson;
32432
32438
  toQuery(): string;
32433
32439
  }
32434
32440
 
@@ -32446,6 +32452,10 @@ export declare enum BaseValueDescriptorIds {
32446
32452
  FunctionCall = "function-call"
32447
32453
  }
32448
32454
 
32455
+ declare type SearchStatementPrimitiveLiteralRawValue = string | number | boolean | null | Date;
32456
+
32457
+ declare type SearchStatementRecursiveLiteralRawValue = SearchStatementPrimitiveLiteralRawValue | SearchStatementPrimitiveLiteralRawValue[] | SearchStatementRecursiveLiteralRawValue[];
32458
+
32449
32459
  declare class SearchStatementState implements ISearchNode {
32450
32460
  id: string;
32451
32461
  selections: (ColumnRef | AllColumnsSelector | FunctionCall)[];
@@ -32514,7 +32524,8 @@ export declare enum BaseValueDescriptorIds {
32514
32524
  ColumnRef,
32515
32525
  AllColumnsSelector,
32516
32526
  SortStatement,
32517
- SearchStatementState
32527
+ SearchStatementState,
32528
+ SearchNode
32518
32529
  }
32519
32530
  }
32520
32531
  export { searchStatementState }