@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.
@@ -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-DyGdpDFr.cjs';
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-nQ1ATBlN.js';
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-DyGdpDFr.cjs';
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';
@@ -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-nQ1ATBlN.js';
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nicia-ai/typegraph",
3
- "version": "0.11.0",
3
+ "version": "0.11.1",
4
4
  "description": "TypeScript-first embedded knowledge graph library with ontological reasoning",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",