Skip to content

Commit ecee046

Browse files
committed
Merge branch 'main' into copilot/enhance-object-grid-component
2 parents ebd21f2 + b5ad0fd commit ecee046

File tree

9 files changed

+18
-9022
lines changed

9 files changed

+18
-9022
lines changed

ARCHITECTURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ObjectOS is a **metadata-driven runtime engine** that transforms declarative YAM
1212
- **Key Packages**:
1313
- `@objectql/core` - Metadata parser, AST builder, query compiler
1414
- `@objectql/types` - TypeScript type definitions for the protocol
15-
- `@objectql/driver-knex` - SQL database driver (PostgreSQL, MySQL, SQLite)
15+
- `@objectql/driver-sql` - SQL database driver (PostgreSQL, MySQL, SQLite)
1616
- `@objectql/driver-mongo` - MongoDB driver
1717

1818
### ObjectOS Repository (Runtime Implementation)
@@ -206,7 +206,7 @@ interface ObjectQLDriver {
206206

207207
| Driver | Package | Databases |
208208
|--------|---------|-----------|
209-
| Knex Driver | `@objectql/driver-knex` | PostgreSQL, MySQL, SQLite |
209+
| SQL Driver | `@objectql/driver-sql` | PostgreSQL, MySQL, SQLite |
210210
| MongoDB Driver | `@objectql/driver-mongo` | MongoDB |
211211

212212
## Layer 4: HTTP Layer (@objectos/server)

QUICK_REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fields:
5757
5858
```typescript
5959
import { ObjectOS } from '@objectos/kernel';
60-
import { PostgresDriver } from '@objectql/driver-knex';
60+
import { PostgresDriver } from '@objectql/driver-sql';
6161

6262
const kernel = new ObjectOS();
6363
const driver = new PostgresDriver({ /* config */ });

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ You will see a **Data Grid** for Deals. Click "New" to see the **Form**. All CRU
166166
| --- | --- | --- |
167167
| **`@objectql/core`** | [objectql/objectql](https://github.com/objectql/objectql) | Metadata parser and validator |
168168
| **`@objectql/types`** | [objectql/objectql](https://github.com/objectql/objectql) | TypeScript type definitions for ObjectQL protocol |
169-
| **`@objectql/driver-knex`** | [objectql/objectql](https://github.com/objectql/objectql) | PostgreSQL/MySQL/SQLite driver implementation |
169+
| **`@objectql/driver-sql`** | [objectql/objectql](https://github.com/objectql/objectql) | PostgreSQL/MySQL/SQLite driver implementation |
170170
| **`@objectql/driver-mongo`** | [objectql/objectql](https://github.com/objectql/objectql) | MongoDB driver implementation |
171171

172172
---

docs/guide/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ cd my-app
115115
npm init -y
116116
117117
# Install ObjectOS packages
118-
npm install @objectos/kernel @objectos/server @objectql/driver-knex
118+
npm install @objectos/kernel @objectos/server @objectql/driver-sql
119119
120120
# Install database driver
121121
npm install pg # for PostgreSQL
@@ -215,7 +215,7 @@ Create `src/main.ts`:
215215

216216
```typescript
217217
import { ObjectOS } from '@objectos/kernel';
218-
import { PostgresDriver } from '@objectql/driver-knex';
218+
import { PostgresDriver } from '@objectql/driver-sql';
219219
import * as yaml from 'js-yaml';
220220
import * as fs from 'fs';
221221
import * as path from 'path';

0 commit comments

Comments
 (0)