myorm_pg 1.0.4 → 1.0.6

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.
@@ -127,8 +127,8 @@ export class Message
127
127
 
128
128
  ```typescript
129
129
  import { PGDBManager, PGDBContext, PGDBSet} from 'myorm_pg';
130
- import { Message } from './Message';
131
- import { Person } from './Person';
130
+ import { Message } from './entities/Message';
131
+ import { Person } from './entities/Person';
132
132
 
133
133
 
134
134
  export default class Context extends PGDBContext
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "myorm_pg",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "A ORM writen in typescript for postgres",
5
5
  "main": "Index.js",
6
6
  "types": "./lib/Index.d.ts",
7
7
  "files": [
8
- "./lib"
8
+ "./lib",
9
+ "README.md"
9
10
  ],
10
11
  "scripts": {
11
12
  "test": "jest"