@hammr/do-orm 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,13 +6,13 @@ DO-ORM makes Durable Objects queryable like a real database while maintaining th
6
6
 
7
7
  ## Features
8
8
 
9
- **Type-safe schema definitions** - Full TypeScript inference for all CRUD operations
10
- **Automatic validation** - Schema validation on every write operation
11
- **Efficient indexing** - Single-field indexes for O(log n) queries instead of O(n) scans
12
- **Fluent query builder** - Chain `.where()`, `.after()`, `.before()`, `.limit()`, `.orderBy()`
13
- **Full CRUD support** - `create()`, `find()`, `update()`, `delete()`, and bulk operations
14
- **Zero dependencies** - Pure TypeScript using DO storage primitives
15
- **Zero runtime overhead** - Direct wrapper around Durable Objects storage API
9
+ **Type-safe schema definitions** - Full TypeScript inference for all CRUD operations
10
+ **Automatic validation** - Schema validation on every write operation
11
+ **Efficient indexing** - Single-field indexes for O(log n) queries instead of O(n) scans
12
+ **Fluent query builder** - Chain `.where()`, `.after()`, `.before()`, `.limit()`, `.orderBy()`
13
+ **Full CRUD support** - `create()`, `find()`, `update()`, `delete()`, and bulk operations
14
+ **Zero dependencies** - Pure TypeScript using DO storage primitives
15
+ **Zero runtime overhead** - Direct wrapper around Durable Objects storage API
16
16
 
17
17
  ## Installation
18
18
 
@@ -553,7 +553,7 @@ This is v1 - there's lots of room for improvement!
553
553
 
554
554
  ## License
555
555
 
556
- MIT
556
+ Apache-2.0
557
557
 
558
558
  ---
559
559
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hammr/do-orm",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Type-safe ORM for Cloudflare Durable Objects with zero runtime overhead",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",