@loopback/rest-crud 0.15.0 → 0.15.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -75,7 +75,7 @@ For the examples in the following sections, we are also assuming a model named
75
75
  ### Creating a CRUD Controller
76
76
 
77
77
  Here is how you would use `defineCrudRestController` for exposing the CRUD
78
- endpoints of an existing model with a respository.
78
+ endpoints of an existing model with a repository.
79
79
 
80
80
  1. Create a REST CRUD controller class for your model.
81
81
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/rest-crud",
3
3
  "description": "REST API controller implementing default CRUD semantics",
4
- "version": "0.15.0",
4
+ "version": "0.15.1",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -32,23 +32,23 @@
32
32
  "!*/__tests__"
33
33
  ],
34
34
  "peerDependencies": {
35
- "@loopback/core": "^4.0.1",
36
- "@loopback/repository": "^5.0.1",
37
- "@loopback/rest": "^12.0.1"
35
+ "@loopback/core": "^4.0.2",
36
+ "@loopback/repository": "^5.0.2",
37
+ "@loopback/rest": "^12.0.2"
38
38
  },
39
39
  "dependencies": {
40
- "@loopback/model-api-builder": "^4.0.1",
40
+ "@loopback/model-api-builder": "^4.0.2",
41
41
  "debug": "^4.3.4",
42
42
  "tslib": "^2.4.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@loopback/build": "^9.0.1",
46
- "@loopback/core": "^4.0.1",
47
- "@loopback/repository": "^5.0.1",
48
- "@loopback/rest": "^12.0.1",
49
- "@loopback/testlab": "^5.0.1",
45
+ "@loopback/build": "^9.0.2",
46
+ "@loopback/core": "^4.0.2",
47
+ "@loopback/repository": "^5.0.2",
48
+ "@loopback/rest": "^12.0.2",
49
+ "@loopback/testlab": "^5.0.2",
50
50
  "@types/debug": "^4.1.7",
51
51
  "@types/node": "^14.18.21"
52
52
  },
53
- "gitHead": "ccf7863d0639de966d6c6129b4aa94ba1dce2c33"
53
+ "gitHead": "d2eddfc1319810f4c0126e613c24499b5685f7e4"
54
54
  }