@elyx-code/project-logic-tree 0.0.6914 → 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 +113 -113
- package/dist/index.d.ts +3 -0
- package/dist/index.js +20270 -20248
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -32533,6 +32533,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
32533
32533
|
declare namespace searchStatementUtils {
|
|
32534
32534
|
export {
|
|
32535
32535
|
sanitizeSQLIdentifierText,
|
|
32536
|
+
tryHydrateJsonArrayString,
|
|
32536
32537
|
sanitizeQuery,
|
|
32537
32538
|
fromNameToTableDescription,
|
|
32538
32539
|
loadProjectDatasources,
|
|
@@ -34505,6 +34506,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
34505
34506
|
} & YieldOptions): Promise<Traverser>;
|
|
34506
34507
|
}
|
|
34507
34508
|
|
|
34509
|
+
declare function tryHydrateJsonArrayString(state: SearchStatementState, rawValue: string): SearchStatementLiteralValue | null;
|
|
34510
|
+
|
|
34508
34511
|
declare type TypedArray = Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | BigUint64Array | BigInt64Array | Float32Array | Float64Array;
|
|
34509
34512
|
|
|
34510
34513
|
export declare function unfreezeDownstreamEntitiesFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet, seenEntities?: Set<string>): void;
|