leoric 2.7.3 → 2.8.2
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/History.md +29 -0
- package/index.d.ts +20 -808
- package/index.js +1 -0
- package/package.json +1 -1
- package/src/adapters/sequelize.d.ts +194 -0
- package/src/adapters/sequelize.js +21 -17
- package/src/bone.d.ts +53 -0
- package/src/bone.js +2 -2
- package/src/decorators.js +1 -1
- package/src/decorators.js.map +1 -1
- package/src/decorators.ts +4 -3
- package/src/drivers/index.d.ts +188 -0
- package/src/expr.js +2 -1
- package/src/{types/hint.d.ts → hint.d.ts} +49 -31
- package/src/hint.js +7 -1
- package/src/spell.d.ts +160 -0
- package/src/spell.js +24 -9
- package/src/types/abstract_bone.d.ts +360 -0
- package/src/types/common.d.ts +125 -3
package/History.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
2.8.2 / 2022-09-13
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
## What's Changed
|
|
5
|
+
* fix: AssociateOptions in HasMany, BelongdsTo decorators by @cyjake in https://github.com/cyjake/leoric/pull/341
|
|
6
|
+
* fix: invokable dataType in decorators should work and dts fix by @JimmyDaddy in https://github.com/cyjake/leoric/pull/342
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
**Full Changelog**: https://github.com/cyjake/leoric/compare/v2.8.1...v2.8.2
|
|
10
|
+
|
|
11
|
+
2.8.1 / 2022-08-31
|
|
12
|
+
==================
|
|
13
|
+
|
|
14
|
+
## What's Changed
|
|
15
|
+
* fix: metro exports error by @JimmyDaddy in https://github.com/cyjake/leoric/pull/339
|
|
16
|
+
* fix: Model.count(field) in sequelize adapter by @cyjake in https://github.com/cyjake/leoric/pull/340
|
|
17
|
+
|
|
18
|
+
**Full Changelog**: https://github.com/cyjake/leoric/compare/v2.8.0...v2.8.1
|
|
19
|
+
|
|
20
|
+
2.8.0 / 2022-08-30
|
|
21
|
+
==================
|
|
22
|
+
|
|
23
|
+
## What's Changed
|
|
24
|
+
* feat: refactor type definitions to export SequelizeBone, complete spell type definitions and fix index hints logic by @JimmyDaddy in https://github.com/cyjake/leoric/pull/337
|
|
25
|
+
* fix: throw error if token is not expected when parse expr by @cyjake in https://github.com/cyjake/leoric/pull/338
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
**Full Changelog**: https://github.com/cyjake/leoric/compare/v2.7.3...v2.8.0
|
|
29
|
+
|
|
1
30
|
2.7.3 / 2022-08-25
|
|
2
31
|
==================
|
|
3
32
|
|