@vectororm/core 0.1.0 → 0.1.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/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm](https://img.shields.io/npm/v/@vectororm/core)](https://www.npmjs.com/package/@vectororm/core)
4
4
  [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
5
5
 
6
- Core package for [Glyph VectorORM](https://github.com/aviramroi/VectorORM) — a TypeScript-first vector ORM with Vertical and Horizontal RAG.
6
+ Core package for [VectorORM](https://github.com/aviramroi/VectorORM) — a TypeScript-first vector ORM with Vertical and Horizontal RAG.
7
7
 
8
8
  Includes the abstract adapter base class, universal filter language, metadata builders, ingestion pipeline, enrichment pipeline, query composition layer, and the unified RAGClient facade.
9
9
 
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Represents a vector record in the database.
3
3
  *
4
- * This is the fundamental unit of storage in Glyph, containing:
4
+ * This is the fundamental unit of storage in VectorORM, containing:
5
5
  * - Unique identifier
6
6
  * - Embedding vector
7
7
  * - Metadata (including V/H/S fields)
@@ -39,7 +39,7 @@ interface SearchResult {
39
39
  }
40
40
 
41
41
  /**
42
- * Metadata field prefixes for the three axes of Glyph's schema.
42
+ * Metadata field prefixes for the three axes of VectorORM's schema.
43
43
  *
44
44
  * These prefixes separate framework fields from user-defined metadata:
45
45
  * - __v_: Vertical axis (document identity)
@@ -449,7 +449,7 @@ declare abstract class VectorDBAdapter {
449
449
  /**
450
450
  * Query Composition Layer - Retrieval Types and Interfaces
451
451
  *
452
- * Defines the core interfaces for retrieval operations in Glyph.
452
+ * Defines the core interfaces for retrieval operations in VectorORM.
453
453
  * These types abstract query parameters and results across different
454
454
  * vector database adapters.
455
455
  */
@@ -2421,7 +2421,7 @@ interface RAGResponse {
2421
2421
  }
2422
2422
 
2423
2423
  /**
2424
- * RAGClient - Unified facade for all Glyph VectorORM operations.
2424
+ * RAGClient - Unified facade for all VectorORM operations.
2425
2425
  *
2426
2426
  * Ties together adapter, embedder, LLM, ingestion, enrichment, and query
2427
2427
  * into a single developer-facing API.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Represents a vector record in the database.
3
3
  *
4
- * This is the fundamental unit of storage in Glyph, containing:
4
+ * This is the fundamental unit of storage in VectorORM, containing:
5
5
  * - Unique identifier
6
6
  * - Embedding vector
7
7
  * - Metadata (including V/H/S fields)
@@ -39,7 +39,7 @@ interface SearchResult {
39
39
  }
40
40
 
41
41
  /**
42
- * Metadata field prefixes for the three axes of Glyph's schema.
42
+ * Metadata field prefixes for the three axes of VectorORM's schema.
43
43
  *
44
44
  * These prefixes separate framework fields from user-defined metadata:
45
45
  * - __v_: Vertical axis (document identity)
@@ -449,7 +449,7 @@ declare abstract class VectorDBAdapter {
449
449
  /**
450
450
  * Query Composition Layer - Retrieval Types and Interfaces
451
451
  *
452
- * Defines the core interfaces for retrieval operations in Glyph.
452
+ * Defines the core interfaces for retrieval operations in VectorORM.
453
453
  * These types abstract query parameters and results across different
454
454
  * vector database adapters.
455
455
  */
@@ -2421,7 +2421,7 @@ interface RAGResponse {
2421
2421
  }
2422
2422
 
2423
2423
  /**
2424
- * RAGClient - Unified facade for all Glyph VectorORM operations.
2424
+ * RAGClient - Unified facade for all VectorORM operations.
2425
2425
  *
2426
2426
  * Ties together adapter, embedder, LLM, ingestion, enrichment, and query
2427
2427
  * into a single developer-facing API.