metal-orm 1.0.10 → 1.0.11
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 +13 -12
- package/package.json +1 -1
- package/src/index.ts +11 -10
package/README.md
CHANGED
|
@@ -22,10 +22,10 @@ Use only the layer you need in each part of your codebase.
|
|
|
22
22
|
<a id="table-of-contents"></a>
|
|
23
23
|
## Table of Contents 🧭
|
|
24
24
|
|
|
25
|
-
- [Documentation](#documentation)
|
|
26
|
-
- [Features](#features)
|
|
27
|
-
- [Installation](#installation)
|
|
28
|
-
- [Quick start
|
|
25
|
+
- [Documentation](#documentation)
|
|
26
|
+
- [Features](#features)
|
|
27
|
+
- [Installation](#installation)
|
|
28
|
+
- [Quick start - three levels](#quick-start)
|
|
29
29
|
- [Level 1 – Query builder & hydration](#level-1)
|
|
30
30
|
- [Level 2 – Entities + Unit of Work](#level-2)
|
|
31
31
|
- [Level 3 – Decorator entities](#level-3)
|
|
@@ -41,13 +41,14 @@ Use only the layer you need in each part of your codebase.
|
|
|
41
41
|
|
|
42
42
|
Full docs live in the `docs/` folder:
|
|
43
43
|
|
|
44
|
-
- [Introduction](https://github.com/celsowm/metal-orm/blob/main/docs/index.md)
|
|
45
|
-
- [Getting Started](https://github.com/celsowm/metal-orm/blob/main/docs/getting-started.md)
|
|
46
|
-
- [
|
|
47
|
-
- [
|
|
48
|
-
- [
|
|
49
|
-
- [
|
|
50
|
-
- [
|
|
44
|
+
- [Introduction](https://github.com/celsowm/metal-orm/blob/main/docs/index.md)
|
|
45
|
+
- [Getting Started](https://github.com/celsowm/metal-orm/blob/main/docs/getting-started.md)
|
|
46
|
+
- [Level 3 Backend Tutorial](https://github.com/celsowm/metal-orm/blob/main/docs/level-3-backend-tutorial.md)
|
|
47
|
+
- [Schema Definition](https://github.com/celsowm/metal-orm/blob/main/docs/schema-definition.md)
|
|
48
|
+
- [Query Builder](https://github.com/celsowm/metal-orm/blob/main/docs/query-builder.md)
|
|
49
|
+
- [DML Operations](https://github.com/celsowm/metal-orm/blob/main/docs/dml-operations.md)
|
|
50
|
+
- [Hydration & Entities](https://github.com/celsowm/metal-orm/blob/main/docs/hydration.md)
|
|
51
|
+
- [Runtime & Unit of Work](https://github.com/celsowm/metal-orm/blob/main/docs/runtime.md)
|
|
51
52
|
- [Advanced Features](https://github.com/celsowm/metal-orm/blob/main/docs/advanced-features.md)
|
|
52
53
|
- [Multi-Dialect Support](https://github.com/celsowm/metal-orm/blob/main/docs/multi-dialect-support.md)
|
|
53
54
|
- [API Reference](https://github.com/celsowm/metal-orm/blob/main/docs/api-reference.md)
|
|
@@ -492,4 +493,4 @@ See the contributing guide for details.
|
|
|
492
493
|
<a id="license"></a>
|
|
493
494
|
## License 📄
|
|
494
495
|
|
|
495
|
-
MetalORM is MIT licensed.
|
|
496
|
+
MetalORM is MIT licensed.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -3,19 +3,20 @@ export * from './schema/table.js';
|
|
|
3
3
|
export * from './schema/column.js';
|
|
4
4
|
export * from './schema/relation.js';
|
|
5
5
|
export * from './schema/types.js';
|
|
6
|
-
export * from './query-builder/select.js';
|
|
7
|
-
export * from './query-builder/insert.js';
|
|
8
|
-
export * from './query-builder/update.js';
|
|
9
|
-
export * from './query-builder/delete.js';
|
|
10
|
-
export * from './core/ast/expression.js';
|
|
6
|
+
export * from './query-builder/select.js';
|
|
7
|
+
export * from './query-builder/insert.js';
|
|
8
|
+
export * from './query-builder/update.js';
|
|
9
|
+
export * from './query-builder/delete.js';
|
|
10
|
+
export * from './core/ast/expression.js';
|
|
11
11
|
export * from './core/dialect/mysql/index.js';
|
|
12
12
|
export * from './core/dialect/mssql/index.js';
|
|
13
13
|
export * from './core/dialect/sqlite/index.js';
|
|
14
|
-
export * from './
|
|
15
|
-
export * from './orm/
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './orm/
|
|
14
|
+
export * from './core/dialect/postgres/index.js';
|
|
15
|
+
export * from './orm/als.js';
|
|
16
|
+
export * from './orm/hydration.js';
|
|
17
|
+
export * from './codegen/typescript.js';
|
|
18
|
+
export * from './orm/orm-context.js';
|
|
19
|
+
export * from './orm/entity.js';
|
|
19
20
|
export * from './orm/lazy-batch.js';
|
|
20
21
|
export * from './orm/relations/has-many.js';
|
|
21
22
|
export * from './orm/relations/belongs-to.js';
|