@loopback/example-rest-crud 5.0.0 → 5.1.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
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [5.1.1](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rest-crud@5.1.0...@loopback/example-rest-crud@5.1.1) (2023-07-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/example-rest-crud
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [5.1.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rest-crud@5.0.0...@loopback/example-rest-crud@5.1.0) (2023-06-28)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* update dependency @types/node to ^16 ([2af42b7](https://github.com/loopbackio/loopback-next/commit/2af42b721c6dfc2df49bfcac1cbea478aba417ab))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [5.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/example-rest-crud@4.0.10...@loopback/example-rest-crud@5.0.0) (2023-05-15)
|
|
7
26
|
|
|
8
27
|
|
package/dist/application.d.ts
CHANGED
|
@@ -13,24 +13,24 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
13
13
|
mountComponentBooters(componentInstanceOrClass: import("@loopback/core").Constructor<unknown> | import("@loopback/boot").InstanceWithBooters): void;
|
|
14
14
|
readonly options: ApplicationConfig;
|
|
15
15
|
readonly state: string;
|
|
16
|
-
controller: <
|
|
17
|
-
server: <
|
|
18
|
-
servers: <
|
|
19
|
-
getServer: <
|
|
16
|
+
controller: <T>(controllerCtor: import("@loopback/core").ControllerClass<T>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T>;
|
|
17
|
+
server: <T_1 extends import("@loopback/core").Server>(ctor: import("@loopback/core").Constructor<T_1>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T_1>;
|
|
18
|
+
servers: <T_2 extends import("@loopback/core").Server>(ctors: import("@loopback/core").Constructor<T_2>[]) => import("@loopback/boot").Binding<any>[];
|
|
19
|
+
getServer: <T_3 extends import("@loopback/core").Server>(target: string | import("@loopback/core").Constructor<T_3>) => Promise<T_3>;
|
|
20
20
|
init: () => Promise<void>;
|
|
21
21
|
onInit: (fn: () => import("@loopback/core").ValueOrPromise<void>) => import("@loopback/boot").Binding<import("@loopback/core").LifeCycleObserver>;
|
|
22
22
|
onStart: (fn: () => import("@loopback/core").ValueOrPromise<void>) => import("@loopback/boot").Binding<import("@loopback/core").LifeCycleObserver>;
|
|
23
23
|
stop: () => Promise<void>;
|
|
24
24
|
onStop: (fn: () => import("@loopback/core").ValueOrPromise<void>) => import("@loopback/boot").Binding<import("@loopback/core").LifeCycleObserver>;
|
|
25
25
|
setMetadata: (metadata: import("@loopback/core").ApplicationMetadata) => void;
|
|
26
|
-
lifeCycleObserver: <
|
|
26
|
+
lifeCycleObserver: <T_4 extends import("@loopback/core").LifeCycleObserver>(ctor: import("@loopback/core").Constructor<T_4>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T_4>;
|
|
27
27
|
service: <S>(cls: import("@loopback/core").ServiceOrProviderClass<S>, nameOrOptions?: string | import("@loopback/core").ServiceOptions | undefined) => import("@loopback/boot").Binding<S>;
|
|
28
28
|
interceptor: (interceptor: import("@loopback/core").Interceptor | import("@loopback/core").Constructor<import("@loopback/core").Provider<import("@loopback/core").Interceptor>>, nameOrOptions?: string | import("@loopback/core").InterceptorBindingOptions | undefined) => import("@loopback/boot").Binding<import("@loopback/core").Interceptor>;
|
|
29
29
|
readonly name: string;
|
|
30
30
|
readonly subscriptionManager: import("@loopback/core").ContextSubscriptionManager;
|
|
31
31
|
scope: import("@loopback/core").BindingScope;
|
|
32
32
|
readonly parent: import("@loopback/core").Context | undefined;
|
|
33
|
-
emitEvent: <
|
|
33
|
+
emitEvent: <T_5 extends import("@loopback/core").ContextEvent>(type: string, event: T_5) => void;
|
|
34
34
|
emitError: (err: unknown) => void;
|
|
35
35
|
bind: <ValueType = any>(key: import("@loopback/core").BindingAddress<ValueType>) => import("@loopback/boot").Binding<ValueType>;
|
|
36
36
|
add: (binding: import("@loopback/boot").Binding<unknown>) => import("@loopback/core").Application;
|
|
@@ -43,7 +43,7 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
43
43
|
unsubscribe: (observer: import("@loopback/core").ContextEventObserver) => boolean;
|
|
44
44
|
close: () => void;
|
|
45
45
|
isSubscribed: (observer: import("@loopback/core").ContextObserver) => boolean;
|
|
46
|
-
createView: <
|
|
46
|
+
createView: <T_6 = unknown>(filter: import("@loopback/core").BindingFilter, comparator?: import("@loopback/core").BindingComparator | undefined, options?: Omit<import("@loopback/core").ResolutionOptions, "session"> | undefined) => import("@loopback/core").ContextView<T_6>;
|
|
47
47
|
contains: (key: import("@loopback/core").BindingAddress<unknown>) => boolean;
|
|
48
48
|
isBound: (key: import("@loopback/core").BindingAddress<unknown>) => boolean;
|
|
49
49
|
getOwnerContext: (keyOrBinding: import("@loopback/core").BindingAddress<unknown> | Readonly<import("@loopback/boot").Binding<unknown>>) => import("@loopback/core").Context | undefined;
|
|
@@ -66,7 +66,7 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
66
66
|
optional?: boolean | undefined;
|
|
67
67
|
} | undefined): import("@loopback/boot").Binding<ValueType_8> | undefined;
|
|
68
68
|
};
|
|
69
|
-
findOrCreateBinding: <
|
|
69
|
+
findOrCreateBinding: <T_7>(key: import("@loopback/core").BindingAddress<T_7>, policy?: import("@loopback/core").BindingCreationPolicy | undefined) => import("@loopback/boot").Binding<T_7>;
|
|
70
70
|
getValueOrPromise: <ValueType_9>(keyWithPath: import("@loopback/core").BindingAddress<ValueType_9>, optionsOrSession?: import("@loopback/core").ResolutionOptionsOrSession | undefined) => import("@loopback/core").ValueOrPromise<ValueType_9 | undefined>;
|
|
71
71
|
toJSON: () => import("@loopback/core").JSONObject;
|
|
72
72
|
inspect: (options?: import("@loopback/core").ContextInspectOptions | undefined) => import("@loopback/core").JSONObject;
|
|
@@ -78,18 +78,18 @@ declare const TodoApplication_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: (
|
|
82
|
-
removeListener: (
|
|
83
|
-
off: (
|
|
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;
|
|
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: (
|
|
88
|
-
rawListeners: (
|
|
89
|
-
emit: (
|
|
90
|
-
listenerCount: (
|
|
91
|
-
prependListener: (
|
|
92
|
-
prependOnceListener: (
|
|
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;
|
|
93
93
|
eventNames: () => (string | symbol)[];
|
|
94
94
|
}) & (new (...args: any[]) => {
|
|
95
95
|
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>;
|
|
@@ -102,10 +102,10 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
102
102
|
migrateSchema(options?: import("@loopback/repository").SchemaMigrationOptions | undefined): Promise<void>;
|
|
103
103
|
readonly options: ApplicationConfig;
|
|
104
104
|
readonly state: string;
|
|
105
|
-
controller: <
|
|
106
|
-
server: <
|
|
107
|
-
servers: <
|
|
108
|
-
getServer: <
|
|
105
|
+
controller: <T_8>(controllerCtor: import("@loopback/core").ControllerClass<T_8>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T_8>;
|
|
106
|
+
server: <T_1_1 extends import("@loopback/core").Server>(ctor: import("@loopback/core").Constructor<T_1_1>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T_1_1>;
|
|
107
|
+
servers: <T_2_1 extends import("@loopback/core").Server>(ctors: import("@loopback/core").Constructor<T_2_1>[]) => import("@loopback/boot").Binding<any>[];
|
|
108
|
+
getServer: <T_3_1 extends import("@loopback/core").Server>(target: string | import("@loopback/core").Constructor<T_3_1>) => Promise<T_3_1>;
|
|
109
109
|
init: () => Promise<void>;
|
|
110
110
|
onInit: (fn: () => import("@loopback/core").ValueOrPromise<void>) => import("@loopback/boot").Binding<import("@loopback/core").LifeCycleObserver>;
|
|
111
111
|
start: () => Promise<void>;
|
|
@@ -113,14 +113,14 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
113
113
|
stop: () => Promise<void>;
|
|
114
114
|
onStop: (fn: () => import("@loopback/core").ValueOrPromise<void>) => import("@loopback/boot").Binding<import("@loopback/core").LifeCycleObserver>;
|
|
115
115
|
setMetadata: (metadata: import("@loopback/core").ApplicationMetadata) => void;
|
|
116
|
-
lifeCycleObserver: <
|
|
116
|
+
lifeCycleObserver: <T_4_1 extends import("@loopback/core").LifeCycleObserver>(ctor: import("@loopback/core").Constructor<T_4_1>, nameOrOptions?: string | import("@loopback/core").BindingFromClassOptions | undefined) => import("@loopback/boot").Binding<T_4_1>;
|
|
117
117
|
service: <S_1>(cls: import("@loopback/core").ServiceOrProviderClass<S_1>, nameOrOptions?: string | import("@loopback/core").ServiceOptions | undefined) => import("@loopback/boot").Binding<S_1>;
|
|
118
118
|
interceptor: (interceptor: import("@loopback/core").Interceptor | import("@loopback/core").Constructor<import("@loopback/core").Provider<import("@loopback/core").Interceptor>>, nameOrOptions?: string | import("@loopback/core").InterceptorBindingOptions | undefined) => import("@loopback/boot").Binding<import("@loopback/core").Interceptor>;
|
|
119
119
|
readonly name: string;
|
|
120
120
|
readonly subscriptionManager: import("@loopback/core").ContextSubscriptionManager;
|
|
121
121
|
scope: import("@loopback/core").BindingScope;
|
|
122
122
|
readonly parent: import("@loopback/core").Context | undefined;
|
|
123
|
-
emitEvent: <
|
|
123
|
+
emitEvent: <T_5_1 extends import("@loopback/core").ContextEvent>(type: string, event: T_5_1) => void;
|
|
124
124
|
emitError: (err: unknown) => void;
|
|
125
125
|
bind: <ValueType_10 = any>(key: import("@loopback/core").BindingAddress<ValueType_10>) => import("@loopback/boot").Binding<ValueType_10>;
|
|
126
126
|
add: (binding: import("@loopback/boot").Binding<unknown>) => import("@loopback/core").Application;
|
|
@@ -133,7 +133,7 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
133
133
|
unsubscribe: (observer: import("@loopback/core").ContextEventObserver) => boolean;
|
|
134
134
|
close: () => void;
|
|
135
135
|
isSubscribed: (observer: import("@loopback/core").ContextObserver) => boolean;
|
|
136
|
-
createView: <
|
|
136
|
+
createView: <T_6_1 = unknown>(filter: import("@loopback/core").BindingFilter, comparator?: import("@loopback/core").BindingComparator | undefined, options?: Omit<import("@loopback/core").ResolutionOptions, "session"> | undefined) => import("@loopback/core").ContextView<T_6_1>;
|
|
137
137
|
contains: (key: import("@loopback/core").BindingAddress<unknown>) => boolean;
|
|
138
138
|
isBound: (key: import("@loopback/core").BindingAddress<unknown>) => boolean;
|
|
139
139
|
getOwnerContext: (keyOrBinding: import("@loopback/core").BindingAddress<unknown> | Readonly<import("@loopback/boot").Binding<unknown>>) => import("@loopback/core").Context | undefined;
|
|
@@ -156,7 +156,7 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
156
156
|
optional?: boolean | undefined;
|
|
157
157
|
} | undefined): import("@loopback/boot").Binding<ValueType_8_1> | undefined;
|
|
158
158
|
};
|
|
159
|
-
findOrCreateBinding: <
|
|
159
|
+
findOrCreateBinding: <T_7_1>(key: import("@loopback/core").BindingAddress<T_7_1>, policy?: import("@loopback/core").BindingCreationPolicy | undefined) => import("@loopback/boot").Binding<T_7_1>;
|
|
160
160
|
getValueOrPromise: <ValueType_9_1>(keyWithPath: import("@loopback/core").BindingAddress<ValueType_9_1>, optionsOrSession?: import("@loopback/core").ResolutionOptionsOrSession | undefined) => import("@loopback/core").ValueOrPromise<ValueType_9_1 | undefined>;
|
|
161
161
|
toJSON: () => import("@loopback/core").JSONObject;
|
|
162
162
|
inspect: (options?: import("@loopback/core").ContextInspectOptions | undefined) => import("@loopback/core").JSONObject;
|
|
@@ -168,18 +168,18 @@ declare const TodoApplication_base: (new (...args: any[]) => {
|
|
|
168
168
|
(eventName: "bind" | "unbind", listener: import("@loopback/core").ContextEventListener): import("@loopback/core").Application;
|
|
169
169
|
(event: string | symbol, listener: (...args: any[]) => void): import("@loopback/core").Application;
|
|
170
170
|
};
|
|
171
|
-
addListener: (
|
|
172
|
-
removeListener: (
|
|
173
|
-
off: (
|
|
171
|
+
addListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
172
|
+
removeListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
173
|
+
off: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
174
174
|
removeAllListeners: (event?: string | symbol | undefined) => import("@loopback/core").Application;
|
|
175
175
|
setMaxListeners: (n: number) => import("@loopback/core").Application;
|
|
176
176
|
getMaxListeners: () => number;
|
|
177
|
-
listeners: (
|
|
178
|
-
rawListeners: (
|
|
179
|
-
emit: (
|
|
180
|
-
listenerCount: (
|
|
181
|
-
prependListener: (
|
|
182
|
-
prependOnceListener: (
|
|
177
|
+
listeners: (eventName: string | symbol) => Function[];
|
|
178
|
+
rawListeners: (eventName: string | symbol) => Function[];
|
|
179
|
+
emit: (eventName: string | symbol, ...args: any[]) => boolean;
|
|
180
|
+
listenerCount: (eventName: string | symbol) => number;
|
|
181
|
+
prependListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
182
|
+
prependOnceListener: (eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
|
|
183
183
|
eventNames: () => (string | symbol)[];
|
|
184
184
|
}) & typeof RestApplication;
|
|
185
185
|
export declare class TodoApplication extends TodoApplication_base {
|
|
@@ -14,16 +14,15 @@ const config = {
|
|
|
14
14
|
localStorage: '',
|
|
15
15
|
file: './data/db.json',
|
|
16
16
|
};
|
|
17
|
-
let DbDataSource = class DbDataSource extends repository_1.juggler.DataSource {
|
|
17
|
+
let DbDataSource = exports.DbDataSource = class DbDataSource extends repository_1.juggler.DataSource {
|
|
18
18
|
constructor(dbConfig = config) {
|
|
19
19
|
super(dbConfig);
|
|
20
20
|
}
|
|
21
21
|
};
|
|
22
22
|
DbDataSource.dataSourceName = 'db';
|
|
23
23
|
DbDataSource.defaultConfig = config;
|
|
24
|
-
DbDataSource = tslib_1.__decorate([
|
|
24
|
+
exports.DbDataSource = DbDataSource = tslib_1.__decorate([
|
|
25
25
|
tslib_1.__param(0, (0, core_1.inject)('datasources.config.db', { optional: true })),
|
|
26
26
|
tslib_1.__metadata("design:paramtypes", [Object])
|
|
27
27
|
], DbDataSource);
|
|
28
|
-
exports.DbDataSource = DbDataSource;
|
|
29
28
|
//# sourceMappingURL=db.datasource.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"db.datasource.js","sourceRoot":"","sources":["../../src/datasources/db.datasource.ts"],"names":[],"mappings":";AAAA,2EAA2E;AAC3E,2CAA2C;AAC3C,+CAA+C;AAC/C,gEAAgE;;;;AAEhE,yCAAsC;AACtC,qDAA6C;AAE7C,MAAM,MAAM,GAAG;IACb,IAAI,EAAE,IAAI;IACV,SAAS,EAAE,QAAQ;IACnB,YAAY,EAAE,EAAE;IAChB,IAAI,EAAE,gBAAgB;CACvB,CAAC;
|
|
1
|
+
{"version":3,"file":"db.datasource.js","sourceRoot":"","sources":["../../src/datasources/db.datasource.ts"],"names":[],"mappings":";AAAA,2EAA2E;AAC3E,2CAA2C;AAC3C,+CAA+C;AAC/C,gEAAgE;;;;AAEhE,yCAAsC;AACtC,qDAA6C;AAE7C,MAAM,MAAM,GAAG;IACb,IAAI,EAAE,IAAI;IACV,SAAS,EAAE,QAAQ;IACnB,YAAY,EAAE,EAAE;IAChB,IAAI,EAAE,gBAAgB;CACvB,CAAC;AAEF,IAAa,YAAY,0BAAzB,MAAa,YAAa,SAAQ,oBAAO,CAAC,UAAU;IAIlD,YAEE,WAAmB,MAAM;QAEzB,KAAK,CAAC,QAAQ,CAAC,CAAC;IAClB,CAAC;;AARM,2BAAc,GAAG,IAAI,AAAP,CAAQ;AACb,0BAAa,GAAG,MAAM,AAAT,CAAU;uBAF5B,YAAY;IAKpB,mBAAA,IAAA,aAAM,EAAC,uBAAuB,EAAE,EAAC,QAAQ,EAAE,IAAI,EAAC,CAAC,CAAA;;GALzC,YAAY,CAUxB"}
|
|
@@ -7,7 +7,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
7
7
|
exports.Todo = void 0;
|
|
8
8
|
const tslib_1 = require("tslib");
|
|
9
9
|
const repository_1 = require("@loopback/repository");
|
|
10
|
-
let Todo = class Todo extends repository_1.Entity {
|
|
10
|
+
let Todo = exports.Todo = class Todo extends repository_1.Entity {
|
|
11
11
|
constructor(data) {
|
|
12
12
|
super(data);
|
|
13
13
|
}
|
|
@@ -39,9 +39,8 @@ tslib_1.__decorate([
|
|
|
39
39
|
}),
|
|
40
40
|
tslib_1.__metadata("design:type", Boolean)
|
|
41
41
|
], Todo.prototype, "isComplete", void 0);
|
|
42
|
-
Todo = tslib_1.__decorate([
|
|
42
|
+
exports.Todo = Todo = tslib_1.__decorate([
|
|
43
43
|
(0, repository_1.model)(),
|
|
44
44
|
tslib_1.__metadata("design:paramtypes", [Object])
|
|
45
45
|
], Todo);
|
|
46
|
-
exports.Todo = Todo;
|
|
47
46
|
//# sourceMappingURL=todo.model.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"todo.model.js","sourceRoot":"","sources":["../../src/models/todo.model.ts"],"names":[],"mappings":";AAAA,2EAA2E;AAC3E,2CAA2C;AAC3C,+CAA+C;AAC/C,gEAAgE;;;;AAEhE,qDAA6D;AAGtD,IAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"todo.model.js","sourceRoot":"","sources":["../../src/models/todo.model.ts"],"names":[],"mappings":";AAAA,2EAA2E;AAC3E,2CAA2C;AAC3C,+CAA+C;AAC/C,gEAAgE;;;;AAEhE,qDAA6D;AAGtD,IAAM,IAAI,kBAAV,MAAM,IAAK,SAAQ,mBAAM;IAwB9B,YAAY,IAAoB;QAC9B,KAAK,CAAC,IAAI,CAAC,CAAC;IACd,CAAC;CACF,CAAA;AArBC;IALC,IAAA,qBAAQ,EAAC;QACR,IAAI,EAAE,QAAQ;QACd,EAAE,EAAE,IAAI;QACR,SAAS,EAAE,KAAK;KACjB,CAAC;;gCACU;AAMZ;IAJC,IAAA,qBAAQ,EAAC;QACR,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE,IAAI;KACf,CAAC;;mCACY;AAKd;IAHC,IAAA,qBAAQ,EAAC;QACR,IAAI,EAAE,QAAQ;KACf,CAAC;;kCACY;AAKd;IAHC,IAAA,qBAAQ,EAAC;QACR,IAAI,EAAE,SAAS;KAChB,CAAC;;wCACmB;eAtBV,IAAI;IADhB,IAAA,kBAAK,GAAE;;GACK,IAAI,CA2BhB"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/example-rest-crud",
|
|
3
3
|
"description": "An example showing how to use @loopback/rest-crud to define default repository and controller classes",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.1.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback",
|
|
7
7
|
"LoopBack",
|
|
@@ -50,25 +50,25 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@loopback/boot": "^6.
|
|
54
|
-
"@loopback/core": "^5.
|
|
55
|
-
"@loopback/repository": "^6.
|
|
56
|
-
"@loopback/rest": "^13.
|
|
57
|
-
"@loopback/rest-crud": "^0.
|
|
58
|
-
"@loopback/rest-explorer": "^6.
|
|
53
|
+
"@loopback/boot": "^6.1.1",
|
|
54
|
+
"@loopback/core": "^5.1.1",
|
|
55
|
+
"@loopback/repository": "^6.1.1",
|
|
56
|
+
"@loopback/rest": "^13.1.1",
|
|
57
|
+
"@loopback/rest-crud": "^0.17.1",
|
|
58
|
+
"@loopback/rest-explorer": "^6.1.1",
|
|
59
59
|
"loopback-connector-rest": "^4.0.3",
|
|
60
|
-
"tslib": "^2.
|
|
60
|
+
"tslib": "^2.6.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@loopback/build": "^10.
|
|
64
|
-
"@loopback/eslint-config": "^14.0.
|
|
65
|
-
"@loopback/http-caching-proxy": "^5.
|
|
66
|
-
"@loopback/testlab": "^6.
|
|
67
|
-
"@types/lodash": "^4.14.
|
|
68
|
-
"@types/node": "^
|
|
69
|
-
"eslint": "^8.
|
|
63
|
+
"@loopback/build": "^10.1.1",
|
|
64
|
+
"@loopback/eslint-config": "^14.0.2",
|
|
65
|
+
"@loopback/http-caching-proxy": "^5.1.1",
|
|
66
|
+
"@loopback/testlab": "^6.1.1",
|
|
67
|
+
"@types/lodash": "^4.14.195",
|
|
68
|
+
"@types/node": "^16.18.38",
|
|
69
|
+
"eslint": "^8.45.0",
|
|
70
70
|
"lodash": "^4.17.21",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.1.6"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "be0c53e30bbe9edf7753c4fcd7ab3199f7cd3b8c"
|
|
74
74
|
}
|