@aurios/mizzle 1.1.0 → 1.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/package.json +11 -32
- package/CHANGELOG.md +0 -35
package/package.json
CHANGED
|
@@ -1,41 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurios/mizzle",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "a drizzle-like orm for dynamoDB",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"main": "./
|
|
8
|
-
"module": "./
|
|
9
|
-
"types": "./
|
|
7
|
+
"main": "./src/index.ts",
|
|
8
|
+
"module": "./src/index.ts",
|
|
9
|
+
"types": "./src/index.ts",
|
|
10
10
|
"exports": {
|
|
11
|
-
".":
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"./
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
},
|
|
19
|
-
"./table": {
|
|
20
|
-
"types": "./dist/table.d.ts",
|
|
21
|
-
"import": "./dist/table.js"
|
|
22
|
-
},
|
|
23
|
-
"./snapshot": {
|
|
24
|
-
"types": "./dist/snapshot.d.ts",
|
|
25
|
-
"import": "./dist/snapshot.js"
|
|
26
|
-
},
|
|
27
|
-
"./diff": {
|
|
28
|
-
"types": "./dist/diff.d.ts",
|
|
29
|
-
"import": "./dist/diff.js"
|
|
30
|
-
},
|
|
31
|
-
"./introspection": {
|
|
32
|
-
"types": "./dist/introspection.d.ts",
|
|
33
|
-
"import": "./dist/introspection.js"
|
|
34
|
-
},
|
|
35
|
-
"./db": {
|
|
36
|
-
"types": "./dist/db.d.ts",
|
|
37
|
-
"import": "./dist/db.js"
|
|
38
|
-
}
|
|
11
|
+
".": "./src/index.ts",
|
|
12
|
+
"./columns": "./src/columns/index.ts",
|
|
13
|
+
"./table": "./src/core/table.ts",
|
|
14
|
+
"./snapshot": "./src/core/snapshot.ts",
|
|
15
|
+
"./diff": "./src/core/diff.ts",
|
|
16
|
+
"./introspection": "./src/core/introspection.ts",
|
|
17
|
+
"./db": "./src/db.ts"
|
|
39
18
|
},
|
|
40
19
|
"author": {
|
|
41
20
|
"name": "Lucas",
|
package/CHANGELOG.md
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# mizzle
|
|
2
|
-
|
|
3
|
-
## 2.0.0
|
|
4
|
-
|
|
5
|
-
### Major Changes
|
|
6
|
-
|
|
7
|
-
- 5dd0c9f: rename packages to @aurios scope
|
|
8
|
-
|
|
9
|
-
### Patch Changes
|
|
10
|
-
|
|
11
|
-
- 114efb9: Completed 100% JSDoc/TSDoc coverage for all public APIs and improved internal type safety.
|
|
12
|
-
|
|
13
|
-
- **@aurios/mizzle**: Added comprehensive documentation to Query Builders, Schema Definitions, and the main entry point. Resolved numerous linting issues by replacing `any` with safer alternatives.
|
|
14
|
-
- **@aurios/mizzling**: Fixed CLI entry point in E2E and integration tests, ensuring CI stability.
|
|
15
|
-
- **@mizzle/shared**: Enhanced utility type safety.
|
|
16
|
-
- **Infrastructure**: Updated Turbo configuration to handle new environment variables.
|
|
17
|
-
|
|
18
|
-
## 1.0.1
|
|
19
|
-
|
|
20
|
-
### Patch Changes
|
|
21
|
-
|
|
22
|
-
- fix: resolve schema discovery issues in monorepos and stabilize test suite.
|
|
23
|
-
|
|
24
|
-
## 1.0.0
|
|
25
|
-
|
|
26
|
-
### Major Changes
|
|
27
|
-
|
|
28
|
-
- Initial production release of Mizzle ORM and Mizzling CLI.
|
|
29
|
-
Includes:
|
|
30
|
-
- Fluent Query Builder (Select, Insert, Update, Delete)
|
|
31
|
-
- Native Date Support with ISO 8601 storage
|
|
32
|
-
- Relational Queries with Single-Table optimization
|
|
33
|
-
- Atomic Transactions support
|
|
34
|
-
- Migration CLI with schema discovery and push/pull
|
|
35
|
-
- High-performance tsup-based bundling
|