@loopback/sequelize 0.2.0 → 0.3.0
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 +23 -23
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/application.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/book-category.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/book.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/category.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/developer.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/doctor-patient.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/doctor.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/index.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/patient.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/product.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/programming-languange.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/test.controller.base.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/todo-list-todo.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/todo-list.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/todo-todo-list.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/todo.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/transaction.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/user-todo-list.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/user.controller.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/datasources/config.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/datasources/primary.datasource.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/datasources/secondary.datasource.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/appointment.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/book.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/category.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/developer.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/doctor.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/index.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/patient.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/product.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/programming-language.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/todo-list.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/todo.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/models/user.model.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/appointment.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/book.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/category.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/developer.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/doctor.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/index.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/patient.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/product.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/programming-language.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/todo-list.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/todo.repository.js +0 -0
- /package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/user.repository.js +0 -0
package/package.json
CHANGED
|
@@ -1,17 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/sequelize",
|
|
3
|
-
"version": "0.2.0",
|
|
4
3
|
"description": "Loopback 4 Extension That Provides Sequelize Crud Repository Compatible With Default Loopback Models.",
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback-extension",
|
|
7
7
|
"loopback",
|
|
8
8
|
"sequelize-connector",
|
|
9
9
|
"sequelize"
|
|
10
10
|
],
|
|
11
|
+
"license": "MIT",
|
|
11
12
|
"main": "dist/index.js",
|
|
12
13
|
"types": "dist/index.d.ts",
|
|
14
|
+
"author": "IBM Corp. and LoopBack contributors",
|
|
15
|
+
"copyright.owner": "IBM Corp. and LoopBack contributors",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/loopbackio/loopback-next.git",
|
|
19
|
+
"directory": "extensions/sequelize"
|
|
20
|
+
},
|
|
13
21
|
"engines": {
|
|
14
|
-
"node": "
|
|
22
|
+
"node": "16 || 18 || 20"
|
|
15
23
|
},
|
|
16
24
|
"scripts": {
|
|
17
25
|
"build": "lb-tsc",
|
|
@@ -21,13 +29,9 @@
|
|
|
21
29
|
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
|
|
22
30
|
"rebuild": "npm run clean && npm run build"
|
|
23
31
|
},
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"url": "https://github.com/loopbackio/loopback-next.git",
|
|
27
|
-
"directory": "extensions/sequelize"
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
28
34
|
},
|
|
29
|
-
"author": "IBM Corp. and LoopBack contributors",
|
|
30
|
-
"license": "MIT",
|
|
31
35
|
"files": [
|
|
32
36
|
"README.md",
|
|
33
37
|
"dist",
|
|
@@ -35,30 +39,26 @@
|
|
|
35
39
|
"!*/__tests__"
|
|
36
40
|
],
|
|
37
41
|
"peerDependencies": {
|
|
38
|
-
"@loopback/core": "^
|
|
39
|
-
"@loopback/repository": "^
|
|
42
|
+
"@loopback/core": "^5.0.0",
|
|
43
|
+
"@loopback/repository": "^6.0.0"
|
|
40
44
|
},
|
|
41
45
|
"dependencies": {
|
|
42
46
|
"debug": "^4.3.4",
|
|
43
|
-
"sequelize": "^6.31.
|
|
47
|
+
"sequelize": "^6.31.1",
|
|
44
48
|
"tslib": "^2.5.0"
|
|
45
49
|
},
|
|
46
50
|
"devDependencies": {
|
|
47
|
-
"@loopback/boot": "^
|
|
48
|
-
"@loopback/build": "^
|
|
49
|
-
"@loopback/core": "^
|
|
50
|
-
"@loopback/repository": "^
|
|
51
|
-
"@loopback/rest": "^
|
|
52
|
-
"@loopback/testlab": "^
|
|
53
|
-
"@types/node": "^14.18.
|
|
51
|
+
"@loopback/boot": "^6.0.0",
|
|
52
|
+
"@loopback/build": "^10.0.0",
|
|
53
|
+
"@loopback/core": "^5.0.0",
|
|
54
|
+
"@loopback/repository": "^6.0.0",
|
|
55
|
+
"@loopback/rest": "^13.0.0",
|
|
56
|
+
"@loopback/testlab": "^6.0.0",
|
|
57
|
+
"@types/node": "^14.18.47",
|
|
54
58
|
"pg": "^8.10.0",
|
|
55
59
|
"pg-hstore": "^2.3.4",
|
|
56
60
|
"sqlite3": "^5.1.4",
|
|
57
61
|
"typescript": "~4.9.5"
|
|
58
62
|
},
|
|
59
|
-
"
|
|
60
|
-
"publishConfig": {
|
|
61
|
-
"access": "public"
|
|
62
|
-
},
|
|
63
|
-
"gitHead": "3a98ded2622420d0f09dbc3c0fe961c0234b097f"
|
|
63
|
+
"gitHead": "97a26bd5973830a1d5f28aa2f58040f953995c17"
|
|
64
64
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/controllers/programming-languange.controller.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/.sandbox/{67481g1551m → 61612HwhooZ}/repositories/programming-language.repository.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|