@loopback/example-todo-jwt 5.1.5 → 6.0.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.
- package/CHANGELOG.md +26 -0
- package/dist/application.d.ts +27 -27
- package/package.json +20 -20
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-todo-jwt@6.0.0...@loopback/example-todo-jwt@6.0.1) (2024-04-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/example-todo-jwt
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [6.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-todo-jwt@5.1.5...@loopback/example-todo-jwt@6.0.0) (2024-03-04)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### chore
|
|
18
|
+
|
|
19
|
+
* drop Node.js 16 support ([b9efcb4](https://github.com/loopbackio/loopback-next/commit/b9efcb477d50507ba3c778ba23ea7acba7692593))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### BREAKING CHANGES
|
|
23
|
+
|
|
24
|
+
* Drop Node.js 16 support in all LB4 modules and extensions
|
|
25
|
+
|
|
26
|
+
Signed-off-by: dhmlau <dhmlau@ca.ibm.com>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
6
32
|
## [5.1.5](https://github.com/loopbackio/loopback-next/compare/@loopback/example-todo-jwt@5.1.4...@loopback/example-todo-jwt@5.1.5) (2024-01-11)
|
|
7
33
|
|
|
8
34
|
**Note:** Version bump only for package @loopback/example-todo-jwt
|
package/dist/application.d.ts
CHANGED
|
@@ -78,18 +78,18 @@ declare const TodoListApplication_base: (new (...args: any[]) => {
|
|
|
78
78
|
(eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
|
|
79
79
|
(event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
|
|
80
80
|
};
|
|
81
|
-
addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
82
|
-
removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
83
|
-
off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
81
|
+
addListener: <K_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
82
|
+
removeListener: <K_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
83
|
+
off: <K_3>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
84
84
|
removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
|
|
85
85
|
setMaxListeners: (n: number) => import("@loopback/core").Application;
|
|
86
86
|
getMaxListeners: () => number;
|
|
87
|
-
listeners: (eventName: string | symbol) => Function[];
|
|
88
|
-
rawListeners: (eventName: string | symbol) => Function[];
|
|
89
|
-
emit: (eventName: string | symbol, ...args: any[]) => boolean;
|
|
90
|
-
listenerCount: (eventName: string | symbol) => number;
|
|
91
|
-
prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
92
|
-
prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
87
|
+
listeners: <K_4>(eventName: string | symbol) => Function[];
|
|
88
|
+
rawListeners: <K_5>(eventName: string | symbol) => Function[];
|
|
89
|
+
emit: <K_6>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
90
|
+
listenerCount: <K_7>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
91
|
+
prependListener: <K_8>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
92
|
+
prependOnceListener: <K_9>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
93
93
|
eventNames: () => (string | symbol)[];
|
|
94
94
|
}) & (new (...args: any[]) => {
|
|
95
95
|
serviceProvider<S_1>(provider: import("@loopback/core").Constructor<import("@loopback/core").Provider<S_1>>, nameOrOptions?: string | import("@loopback/core").ServiceOptions | undefined): import("@loopback/boot").Binding<S_1>;
|
|
@@ -163,18 +163,18 @@ declare const TodoListApplication_base: (new (...args: any[]) => {
|
|
|
163
163
|
(eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
|
|
164
164
|
(event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
|
|
165
165
|
};
|
|
166
|
-
addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
167
|
-
removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
168
|
-
off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
166
|
+
addListener: <K_1_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
167
|
+
removeListener: <K_2_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
168
|
+
off: <K_3_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
169
169
|
removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
|
|
170
170
|
setMaxListeners: (n: number) => import("@loopback/core").Application;
|
|
171
171
|
getMaxListeners: () => number;
|
|
172
|
-
listeners: (eventName: string | symbol) => Function[];
|
|
173
|
-
rawListeners: (eventName: string | symbol) => Function[];
|
|
174
|
-
emit: (eventName: string | symbol, ...args: any[]) => boolean;
|
|
175
|
-
listenerCount: (eventName: string | symbol) => number;
|
|
176
|
-
prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
177
|
-
prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
172
|
+
listeners: <K_4_1>(eventName: string | symbol) => Function[];
|
|
173
|
+
rawListeners: <K_5_1>(eventName: string | symbol) => Function[];
|
|
174
|
+
emit: <K_6_1>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
175
|
+
listenerCount: <K_7_1>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
176
|
+
prependListener: <K_8_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
177
|
+
prependOnceListener: <K_9_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
178
178
|
eventNames: () => (string | symbol)[];
|
|
179
179
|
}) & (new (...args: any[]) => {
|
|
180
180
|
repository<R extends import("@loopback/repository").Repository<any>>(repoClass: import("@loopback/repository").Class<R>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined): import("@loopback/boot").Binding<R>;
|
|
@@ -253,18 +253,18 @@ declare const TodoListApplication_base: (new (...args: any[]) => {
|
|
|
253
253
|
(eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
|
|
254
254
|
(event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
|
|
255
255
|
};
|
|
256
|
-
addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
257
|
-
removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
258
|
-
off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
256
|
+
addListener: <K_1_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
257
|
+
removeListener: <K_2_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
258
|
+
off: <K_3_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
259
259
|
removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
|
|
260
260
|
setMaxListeners: (n: number) => import("@loopback/core").Application;
|
|
261
261
|
getMaxListeners: () => number;
|
|
262
|
-
listeners: (eventName: string | symbol) => Function[];
|
|
263
|
-
rawListeners: (eventName: string | symbol) => Function[];
|
|
264
|
-
emit: (eventName: string | symbol, ...args: any[]) => boolean;
|
|
265
|
-
listenerCount: (eventName: string | symbol) => number;
|
|
266
|
-
prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
267
|
-
prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
262
|
+
listeners: <K_4_2>(eventName: string | symbol) => Function[];
|
|
263
|
+
rawListeners: <K_5_2>(eventName: string | symbol) => Function[];
|
|
264
|
+
emit: <K_6_2>(eventName: string | symbol, ...args: any[]) => boolean;
|
|
265
|
+
listenerCount: <K_7_2>(eventName: string | symbol, listener?: Function | undefined) => number;
|
|
266
|
+
prependListener: <K_8_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
267
|
+
prependOnceListener: <K_9_2>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
268
268
|
eventNames: () => (string | symbol)[];
|
|
269
269
|
}) & typeof RestApplication;
|
|
270
270
|
export declare class TodoListApplication extends TodoListApplication_base {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/example-todo-jwt",
|
|
3
3
|
"description": "A modified Todo tutorial how to build an application with JWT authentication and LoopBack 4",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "6.0.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback",
|
|
7
7
|
"LoopBack",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"directory": "examples/todo-jwt"
|
|
25
25
|
},
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": "
|
|
27
|
+
"node": "18 || 20"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "lb-tsc",
|
|
@@ -53,30 +53,30 @@
|
|
|
53
53
|
"access": "public"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@loopback/authentication": "^
|
|
57
|
-
"@loopback/authentication-jwt": "^0.
|
|
58
|
-
"@loopback/boot": "^
|
|
59
|
-
"@loopback/core": "^
|
|
60
|
-
"@loopback/repository": "^
|
|
61
|
-
"@loopback/rest": "^
|
|
62
|
-
"@loopback/rest-explorer": "^
|
|
63
|
-
"@loopback/security": "^0.
|
|
64
|
-
"@loopback/service-proxy": "^
|
|
56
|
+
"@loopback/authentication": "^11.0.1",
|
|
57
|
+
"@loopback/authentication-jwt": "^0.15.1",
|
|
58
|
+
"@loopback/boot": "^7.0.1",
|
|
59
|
+
"@loopback/core": "^6.0.1",
|
|
60
|
+
"@loopback/repository": "^7.0.1",
|
|
61
|
+
"@loopback/rest": "^14.0.1",
|
|
62
|
+
"@loopback/rest-explorer": "^7.0.1",
|
|
63
|
+
"@loopback/security": "^0.11.1",
|
|
64
|
+
"@loopback/service-proxy": "^7.0.1",
|
|
65
65
|
"@types/bcryptjs": "^2.4.6",
|
|
66
66
|
"bcryptjs": "^2.4.3",
|
|
67
|
-
"loopback-connector-rest": "^
|
|
67
|
+
"loopback-connector-rest": "^5.0.1",
|
|
68
68
|
"tslib": "^2.6.2"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@loopback/build": "^
|
|
72
|
-
"@loopback/eslint-config": "^
|
|
73
|
-
"@loopback/http-caching-proxy": "^
|
|
74
|
-
"@loopback/testlab": "^
|
|
75
|
-
"@types/lodash": "^4.
|
|
76
|
-
"@types/node": "^16.18.
|
|
77
|
-
"eslint": "^8.
|
|
71
|
+
"@loopback/build": "^11.0.1",
|
|
72
|
+
"@loopback/eslint-config": "^15.0.1",
|
|
73
|
+
"@loopback/http-caching-proxy": "^6.0.1",
|
|
74
|
+
"@loopback/testlab": "^7.0.1",
|
|
75
|
+
"@types/lodash": "^4.17.0",
|
|
76
|
+
"@types/node": "^16.18.95",
|
|
77
|
+
"eslint": "^8.57.0",
|
|
78
78
|
"lodash": "^4.17.21",
|
|
79
79
|
"typescript": "~5.2.2"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "2bdb95fe5122f3664368261c12e3037ee8c71c27"
|
|
82
82
|
}
|