@loopback/example-graphql 0.9.5 → 0.10.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.
Files changed (2) hide show
  1. package/dist/application.d.ts +18 -18
  2. package/package.json +13 -13
@@ -78,18 +78,18 @@ declare const GraphqlDemoApplication_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
  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>;
@@ -168,18 +168,18 @@ declare const GraphqlDemoApplication_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: (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;
171
+ addListener: <K_1_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
172
+ removeListener: <K_2_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
173
+ off: <K_3_1>(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: (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;
177
+ listeners: <K_4_1>(eventName: string | symbol) => Function[];
178
+ rawListeners: <K_5_1>(eventName: string | symbol) => Function[];
179
+ emit: <K_6_1>(eventName: string | symbol, ...args: any[]) => boolean;
180
+ listenerCount: <K_7_1>(eventName: string | symbol, listener?: Function | undefined) => number;
181
+ prependListener: <K_8_1>(eventName: string | symbol, listener: (...args: any[]) => void) => import("@loopback/core").Application;
182
+ prependOnceListener: <K_9_1>(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 GraphqlDemoApplication extends GraphqlDemoApplication_base {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/example-graphql",
3
3
  "description": "GraphQL Example Application",
4
- "version": "0.9.5",
4
+ "version": "0.10.0",
5
5
  "keywords": [
6
6
  "loopback-application",
7
7
  "loopback"
@@ -17,7 +17,7 @@
17
17
  "directory": "examples/graphql"
18
18
  },
19
19
  "engines": {
20
- "node": "16 || 18 || 20"
20
+ "node": "18 || 20"
21
21
  },
22
22
  "scripts": {
23
23
  "acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
@@ -49,24 +49,24 @@
49
49
  "!*/__tests__"
50
50
  ],
51
51
  "dependencies": {
52
- "@loopback/boot": "^6.1.5",
53
- "@loopback/core": "^5.1.5",
54
- "@loopback/graphql": "^0.10.5",
55
- "@loopback/repository": "^6.1.5",
56
- "@loopback/rest": "^13.1.5",
52
+ "@loopback/boot": "^7.0.0",
53
+ "@loopback/core": "^6.0.0",
54
+ "@loopback/graphql": "^0.11.0",
55
+ "@loopback/repository": "^7.0.0",
56
+ "@loopback/rest": "^14.0.0",
57
57
  "class-transformer": "^0.5.1",
58
58
  "tslib": "^2.6.2"
59
59
  },
60
60
  "devDependencies": {
61
- "@loopback/build": "^10.1.5",
62
- "@loopback/eslint-config": "^14.0.5",
63
- "@loopback/testlab": "^6.1.5",
61
+ "@loopback/build": "^11.0.0",
62
+ "@loopback/eslint-config": "^15.0.0",
63
+ "@loopback/testlab": "^7.0.0",
64
64
  "@types/multer": "^1.4.11",
65
- "@types/node": "^16.18.70",
66
- "eslint": "^8.51.0",
65
+ "@types/node": "^16.18.86",
66
+ "eslint": "^8.57.0",
67
67
  "rimraf": "^5.0.5",
68
68
  "source-map-support": "^0.5.21",
69
69
  "typescript": "~5.2.2"
70
70
  },
71
- "gitHead": "3f73360ac38e1615317cae977ac20c2e124e3518"
71
+ "gitHead": "bb4864f7405492d9c86c7db6e714542a292a8790"
72
72
  }