bigal 13.0.0-beta3 → 13.0.0-beta5

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/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  ### BREAKING CHANGES
9
9
 
10
- - Consolidated exports for /errors, /query, and /types to root
10
+ - Consolidated exports for /decorators, /errors, /metadata, /query, and /types to root
11
11
 
12
12
  ## 12.1.5 - 2024-05-13
13
13
 
package/README.md CHANGED
@@ -29,8 +29,7 @@ npm install pg postgres-pool bigal
29
29
  Model definitions need to extend `Entity`.
30
30
 
31
31
  ```ts
32
- import { Entity } from 'bigal';
33
- import { column, primaryColumn, table } from 'bigal/decorators';
32
+ import { column, primaryColumn, table, Entity } from 'bigal';
34
33
  import { Store } from './Store';
35
34
  import { Category } from './Category';
36
35
  import { ProductCategory } from './ProductCategory';