@elyx-code/project-logic-tree 0.0.6886 → 0.0.6888
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.cjs +174 -174
- package/dist/index.d.ts +6 -6
- package/dist/index.js +10209 -10207
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -32137,6 +32137,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32137
32137
|
declare namespace searchStatementDefs {
|
|
32138
32138
|
export {
|
|
32139
32139
|
SearchStatementNodeType,
|
|
32140
|
+
DataSourceType,
|
|
32141
|
+
SortStatementDirection,
|
|
32142
|
+
WhereStatementOperator,
|
|
32143
|
+
SearchLiteralValueType,
|
|
32140
32144
|
AggregationStatementType,
|
|
32141
32145
|
SQLFunctionCategory,
|
|
32142
32146
|
SQLDataType,
|
|
@@ -32229,8 +32233,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32229
32233
|
removeSort(sort: SortStatement): void;
|
|
32230
32234
|
editSort(sort: SortStatement): void;
|
|
32231
32235
|
addSelection(selection: ColumnRef | AllColumnsSelector | FunctionCall): void;
|
|
32232
|
-
removeSelection(selection: ColumnRef | AllColumnsSelector): void;
|
|
32233
|
-
editSelection(selection: ColumnRef | AllColumnsSelector): void;
|
|
32236
|
+
removeSelection(selection: ColumnRef | AllColumnsSelector | FunctionCall): void;
|
|
32237
|
+
editSelection(selection: ColumnRef | AllColumnsSelector | FunctionCall): void;
|
|
32234
32238
|
setFrom(from: DataSource): void;
|
|
32235
32239
|
setWhere(where: WhereStatement): void;
|
|
32236
32240
|
setLimit(limit: SearchStatementLiteralValue | ValueRef): void;
|
|
@@ -32247,16 +32251,12 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32247
32251
|
FunctionCall,
|
|
32248
32252
|
AggregationStatement,
|
|
32249
32253
|
ValueRef,
|
|
32250
|
-
SearchLiteralValueType,
|
|
32251
32254
|
SearchStatementLiteralValue,
|
|
32252
|
-
WhereStatementOperator,
|
|
32253
32255
|
WhereStatement,
|
|
32254
32256
|
NestedSearchStatement,
|
|
32255
|
-
DataSourceType,
|
|
32256
32257
|
DataSource,
|
|
32257
32258
|
ColumnRef,
|
|
32258
32259
|
AllColumnsSelector,
|
|
32259
|
-
SortStatementDirection,
|
|
32260
32260
|
SortStatement,
|
|
32261
32261
|
SearchStatementState
|
|
32262
32262
|
}
|