@elyx-code/project-logic-tree 0.0.6913 → 0.0.6915
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 +181 -181
- package/dist/index.d.ts +17 -3
- package/dist/index.js +22785 -22695
- package/package.json +1 -1
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 }
|
|
@@ -32522,6 +32533,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32522
32533
|
declare namespace searchStatementUtils {
|
|
32523
32534
|
export {
|
|
32524
32535
|
sanitizeSQLIdentifierText,
|
|
32536
|
+
tryHydrateJsonArrayString,
|
|
32525
32537
|
sanitizeQuery,
|
|
32526
32538
|
fromNameToTableDescription,
|
|
32527
32539
|
loadProjectDatasources,
|
|
@@ -34494,6 +34506,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
34494
34506
|
} & YieldOptions): Promise<Traverser>;
|
|
34495
34507
|
}
|
|
34496
34508
|
|
|
34509
|
+
declare function tryHydrateJsonArrayString(state: SearchStatementState, rawValue: string): SearchStatementLiteralValue | null;
|
|
34510
|
+
|
|
34497
34511
|
declare type TypedArray = Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | BigUint64Array | BigInt64Array | Float32Array | Float64Array;
|
|
34498
34512
|
|
|
34499
34513
|
export declare function unfreezeDownstreamEntitiesFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet, seenEntities?: Set<string>): void;
|