@nicia-ai/typegraph 0.11.0 → 0.11.1
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 +45 -12
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +45 -12
- package/dist/index.js.map +1 -1
- package/dist/interchange/index.d.cts +1 -1
- package/dist/interchange/index.d.ts +1 -1
- package/dist/profiler/index.d.cts +1 -1
- package/dist/profiler/index.d.ts +1 -1
- package/dist/{store-DyGdpDFr.d.cts → store-C01_WsOg.d.cts} +4 -0
- package/dist/{store-nQ1ATBlN.d.ts → store-Cy6gSNqg.d.ts} +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { G as GraphDef } from '../manager-DGSnJa1v.cjs';
|
|
3
|
-
import { L as Store } from '../store-
|
|
3
|
+
import { L as Store } from '../store-C01_WsOg.cjs';
|
|
4
4
|
import '../types-DMzKq0d5.cjs';
|
|
5
5
|
import '../types-GLkwvQvS.cjs';
|
|
6
6
|
import 'drizzle-orm';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { G as GraphDef } from '../manager-BCLhWysp.js';
|
|
3
|
-
import { L as Store } from '../store-
|
|
3
|
+
import { L as Store } from '../store-Cy6gSNqg.js';
|
|
4
4
|
import '../types-DMzKq0d5.js';
|
|
5
5
|
import '../types-1YJKodRv.js';
|
|
6
6
|
import 'drizzle-orm';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { G as GraphDef } from '../manager-DGSnJa1v.cjs';
|
|
2
2
|
import { Q as QueryAst } from '../ast-Bh2NDeaK.cjs';
|
|
3
|
-
import { L as Store } from '../store-
|
|
3
|
+
import { L as Store } from '../store-C01_WsOg.cjs';
|
|
4
4
|
import { P as ProfilerOptions, a as ProfileReport } from '../types-CVtGFpB9.cjs';
|
|
5
5
|
export { D as DeclaredIndex, I as IndexRecommendation, b as ProfileSummary, c as PropertyAccessStats, d as PropertyPath, R as RecommendationPriority, U as UsageContext } from '../types-CVtGFpB9.cjs';
|
|
6
6
|
import '../types-DMzKq0d5.cjs';
|
package/dist/profiler/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { G as GraphDef } from '../manager-BCLhWysp.js';
|
|
2
2
|
import { Q as QueryAst } from '../ast-COMyNeMn.js';
|
|
3
|
-
import { L as Store } from '../store-
|
|
3
|
+
import { L as Store } from '../store-Cy6gSNqg.js';
|
|
4
4
|
import { P as ProfilerOptions, a as ProfileReport } from '../types-COPePE8_.js';
|
|
5
5
|
export { D as DeclaredIndex, I as IndexRecommendation, b as ProfileSummary, c as PropertyAccessStats, d as PropertyPath, R as RecommendationPriority, U as UsageContext } from '../types-COPePE8_.js';
|
|
6
6
|
import '../types-DMzKq0d5.js';
|
|
@@ -340,6 +340,10 @@ type BaseFieldAccessor = Readonly<{
|
|
|
340
340
|
notIn: (values: readonly unknown[]) => Predicate;
|
|
341
341
|
}>;
|
|
342
342
|
type StringFieldAccessor = BaseFieldAccessor & Readonly<{
|
|
343
|
+
gt: (value: string | ParameterRef) => Predicate;
|
|
344
|
+
gte: (value: string | ParameterRef) => Predicate;
|
|
345
|
+
lt: (value: string | ParameterRef) => Predicate;
|
|
346
|
+
lte: (value: string | ParameterRef) => Predicate;
|
|
343
347
|
contains: (pattern: string | ParameterRef) => Predicate;
|
|
344
348
|
startsWith: (pattern: string | ParameterRef) => Predicate;
|
|
345
349
|
endsWith: (pattern: string | ParameterRef) => Predicate;
|
|
@@ -340,6 +340,10 @@ type BaseFieldAccessor = Readonly<{
|
|
|
340
340
|
notIn: (values: readonly unknown[]) => Predicate;
|
|
341
341
|
}>;
|
|
342
342
|
type StringFieldAccessor = BaseFieldAccessor & Readonly<{
|
|
343
|
+
gt: (value: string | ParameterRef) => Predicate;
|
|
344
|
+
gte: (value: string | ParameterRef) => Predicate;
|
|
345
|
+
lt: (value: string | ParameterRef) => Predicate;
|
|
346
|
+
lte: (value: string | ParameterRef) => Predicate;
|
|
343
347
|
contains: (pattern: string | ParameterRef) => Predicate;
|
|
344
348
|
startsWith: (pattern: string | ParameterRef) => Predicate;
|
|
345
349
|
endsWith: (pattern: string | ParameterRef) => Predicate;
|