@feathersjs/feathers 5.0.0-pre.1 → 5.0.0-pre.15

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 (46) hide show
  1. package/CHANGELOG.md +182 -0
  2. package/LICENSE +1 -1
  3. package/lib/application.d.ts +19 -8
  4. package/lib/application.js +80 -78
  5. package/lib/application.js.map +1 -1
  6. package/lib/declarations.d.ts +207 -106
  7. package/lib/dependencies.d.ts +4 -0
  8. package/lib/dependencies.js +18 -0
  9. package/lib/dependencies.js.map +1 -0
  10. package/lib/events.d.ts +4 -4
  11. package/lib/events.js +16 -69
  12. package/lib/events.js.map +1 -1
  13. package/lib/hooks/index.d.ts +13 -2
  14. package/lib/hooks/index.js +84 -146
  15. package/lib/hooks/index.js.map +1 -1
  16. package/lib/hooks/regular.d.ts +12 -0
  17. package/lib/hooks/regular.js +169 -0
  18. package/lib/hooks/regular.js.map +1 -0
  19. package/lib/index.d.ts +9 -4
  20. package/lib/index.js +9 -12
  21. package/lib/index.js.map +1 -1
  22. package/lib/service.d.ts +21 -0
  23. package/lib/service.js +68 -0
  24. package/lib/service.js.map +1 -0
  25. package/lib/version.d.ts +1 -1
  26. package/lib/version.js +1 -1
  27. package/lib/version.js.map +1 -1
  28. package/package.json +12 -13
  29. package/readme.md +1 -77
  30. package/src/application.ts +115 -105
  31. package/src/declarations.ts +274 -121
  32. package/src/dependencies.ts +5 -0
  33. package/src/events.ts +18 -75
  34. package/src/hooks/index.ts +95 -150
  35. package/src/hooks/regular.ts +207 -0
  36. package/src/index.ts +10 -17
  37. package/src/service.ts +91 -0
  38. package/src/version.ts +1 -1
  39. package/lib/hooks/base.d.ts +0 -3
  40. package/lib/hooks/base.js +0 -29
  41. package/lib/hooks/base.js.map +0 -1
  42. package/lib/hooks/commons.d.ts +0 -20
  43. package/lib/hooks/commons.js +0 -298
  44. package/lib/hooks/commons.js.map +0 -1
  45. package/src/hooks/base.ts +0 -32
  46. package/src/hooks/commons.ts +0 -336
package/CHANGELOG.md CHANGED
@@ -3,6 +3,188 @@
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.0.0-pre.15](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.14...v5.0.0-pre.15) (2021-11-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **typescript:** Overall typing improvements ([#2478](https://github.com/feathersjs/feathers/issues/2478)) ([b8eb804](https://github.com/feathersjs/feathers/commit/b8eb804158556d9651a8607e3c3fda15e0bfd110))
12
+
13
+
14
+ ### Features
15
+
16
+ * **core:** add `context.http` and move `statusCode` there ([#2496](https://github.com/feathersjs/feathers/issues/2496)) ([b701bf7](https://github.com/feathersjs/feathers/commit/b701bf77fb83048aa1dffa492b3d77dd53f7b72b))
17
+ * **core:** Improve legacy hooks integration ([08c8b40](https://github.com/feathersjs/feathers/commit/08c8b40999bf3889c61a4d4fad97a2c4f78bafc9))
18
+ * **transport-commons:** Ability to register routes with custom params ([#2482](https://github.com/feathersjs/feathers/issues/2482)) ([497990a](https://github.com/feathersjs/feathers/commit/497990ae4a980e5a52a1f0f932db12cd0e6e254a))
19
+
20
+
21
+
22
+
23
+
24
+ # [5.0.0-pre.14](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.13...v5.0.0-pre.14) (2021-10-13)
25
+
26
+ **Note:** Version bump only for package @feathersjs/feathers
27
+
28
+
29
+
30
+
31
+
32
+ # [5.0.0-pre.13](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.12...v5.0.0-pre.13) (2021-10-13)
33
+
34
+ **Note:** Version bump only for package @feathersjs/feathers
35
+
36
+
37
+
38
+
39
+
40
+ # [5.0.0-pre.12](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.11...v5.0.0-pre.12) (2021-10-12)
41
+
42
+ **Note:** Version bump only for package @feathersjs/feathers
43
+
44
+
45
+
46
+
47
+
48
+ # [5.0.0-pre.11](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.10...v5.0.0-pre.11) (2021-10-06)
49
+
50
+
51
+ ### Bug Fixes
52
+
53
+ * **core:** Allow to return a new hook context in basic hooks ([#2462](https://github.com/feathersjs/feathers/issues/2462)) ([422b6fc](https://github.com/feathersjs/feathers/commit/422b6fc11cf9e42f4234f0823a0b06a4df50982d))
54
+
55
+
56
+
57
+
58
+
59
+ # [5.0.0-pre.10](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.9...v5.0.0-pre.10) (2021-09-19)
60
+
61
+ **Note:** Version bump only for package @feathersjs/feathers
62
+
63
+
64
+
65
+
66
+
67
+ # [5.0.0-pre.9](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.8...v5.0.0-pre.9) (2021-08-09)
68
+
69
+ **Note:** Version bump only for package @feathersjs/feathers
70
+
71
+
72
+
73
+
74
+
75
+ # [5.0.0-pre.8](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.7...v5.0.0-pre.8) (2021-08-09)
76
+
77
+ **Note:** Version bump only for package @feathersjs/feathers
78
+
79
+
80
+
81
+
82
+
83
+ # [5.0.0-pre.7](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.6...v5.0.0-pre.7) (2021-08-09)
84
+
85
+
86
+ ### Bug Fixes
87
+
88
+ * **core:** Clean up readme ([eb3b4f2](https://github.com/feathersjs/feathers/commit/eb3b4f248c0816c92a2300cceed18a6f2518508a))
89
+ * **core:** Set version back to development ([b328767](https://github.com/feathersjs/feathers/commit/b3287676cd773e164fd646ba4cffbf81983a9157))
90
+
91
+
92
+
93
+
94
+
95
+ # [5.0.0-pre.6](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.5...v5.0.0-pre.6) (2021-08-08)
96
+
97
+ **Note:** Version bump only for package @feathersjs/feathers
98
+
99
+
100
+
101
+
102
+
103
+ # [5.0.0-pre.5](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.4...v5.0.0-pre.5) (2021-06-23)
104
+
105
+
106
+ ### Bug Fixes
107
+
108
+ * **core:** Add list of protected methods that can not be used for custom methods ([#2390](https://github.com/feathersjs/feathers/issues/2390)) ([6584a21](https://github.com/feathersjs/feathers/commit/6584a216e5a7d5f2a45822be6bfcb91c35cc2252))
109
+
110
+
111
+
112
+
113
+
114
+ # [5.0.0-pre.4](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.3...v5.0.0-pre.4) (2021-05-13)
115
+
116
+
117
+ ### Bug Fixes
118
+
119
+ * **typescript:** Move Paginated type back for better compatibility ([#2350](https://github.com/feathersjs/feathers/issues/2350)) ([2917d05](https://github.com/feathersjs/feathers/commit/2917d05fffb4716d3c4cdaa5ac6a1aee0972e8a6))
120
+
121
+
122
+
123
+
124
+
125
+ # [5.0.0-pre.3](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.2...v5.0.0-pre.3) (2021-04-21)
126
+
127
+
128
+ ### Bug Fixes
129
+
130
+ * **typescript:** Improve TypeScript backwards compatibility ([#2310](https://github.com/feathersjs/feathers/issues/2310)) ([f33be73](https://github.com/feathersjs/feathers/commit/f33be73fc46a533efb15df9aab0658e3240d3897))
131
+
132
+
133
+ ### Features
134
+
135
+ * **deno:** Feathers core build for Deno ([#2299](https://github.com/feathersjs/feathers/issues/2299)) ([dece8fb](https://github.com/feathersjs/feathers/commit/dece8fbc0e7601f1505ce8bbb1e4e69cc26e8f98))
136
+ * **dependencies:** Remove direct debug dependency ([#2296](https://github.com/feathersjs/feathers/issues/2296)) ([501d416](https://github.com/feathersjs/feathers/commit/501d4164d30c6a126906dc640cdfdc82207ba34a))
137
+
138
+
139
+
140
+
141
+
142
+ # [5.0.0-pre.2](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.1...v5.0.0-pre.2) (2021-04-06)
143
+
144
+ **Note:** Version bump only for package @feathersjs/feathers
145
+
146
+
147
+
148
+
149
+
150
+ # [5.0.0-beta.1](https://github.com/feathersjs/feathers/compare/v5.0.0-beta.0...v5.0.0-beta.1) (2021-04-03)
151
+
152
+
153
+ ### Bug Fixes
154
+
155
+ * **dependencies:** Fix transport-commons dependency and update other dependencies ([#2284](https://github.com/feathersjs/feathers/issues/2284)) ([05b03b2](https://github.com/feathersjs/feathers/commit/05b03b27b40604d956047e3021d8053c3a137616))
156
+ * **feathers:** Always enable hooks on default service methods ([#2275](https://github.com/feathersjs/feathers/issues/2275)) ([827cc9b](https://github.com/feathersjs/feathers/commit/827cc9b752eecdaf63605d7dffd86f531b7e4af3))
157
+
158
+
159
+
160
+
161
+
162
+ # [5.0.0-beta.0](https://github.com/feathersjs/feathers/compare/v5.0.0-pre.1...v5.0.0-beta.0) (2021-03-28)
163
+
164
+
165
+ ### Bug Fixes
166
+
167
+ * Resolve some type problems ([#2260](https://github.com/feathersjs/feathers/issues/2260)) ([a3d75fa](https://github.com/feathersjs/feathers/commit/a3d75fa29490e8a19412a12bc993ee7bb573068f))
168
+ * Update Grant usage and other dependencies ([#2264](https://github.com/feathersjs/feathers/issues/2264)) ([7b0f8fa](https://github.com/feathersjs/feathers/commit/7b0f8fad252419ed0ad0bf259cdf3104d322ab60))
169
+
170
+
171
+ ### Features
172
+
173
+ * **core:** Public custom service methods ([#2270](https://github.com/feathersjs/feathers/issues/2270)) ([e65abfb](https://github.com/feathersjs/feathers/commit/e65abfb5388df6c19a11c565cf1076a29f32668d))
174
+ * Application service types default to any ([#1566](https://github.com/feathersjs/feathers/issues/1566)) ([d93ba9a](https://github.com/feathersjs/feathers/commit/d93ba9a17edd20d3397bb00f4f6e82e804e42ed6))
175
+ * Feathers v5 core refactoring and features ([#2255](https://github.com/feathersjs/feathers/issues/2255)) ([2dafb7c](https://github.com/feathersjs/feathers/commit/2dafb7ce14ba57406aeec13d10ca45b1e709bee9))
176
+ * **core:** Remove Uberproto ([#2178](https://github.com/feathersjs/feathers/issues/2178)) ([ddf8821](https://github.com/feathersjs/feathers/commit/ddf8821f53317e6a378657f7d66acb03a037ee47))
177
+
178
+
179
+ ### BREAKING CHANGES
180
+
181
+ * **core:** Services no longer extend Uberproto objects and
182
+ `service.mixin()` is no longer available.
183
+
184
+
185
+
186
+
187
+
6
188
  # [5.0.0-pre.1](https://github.com/feathersjs/feathers/compare/v4.5.11...v5.0.0-pre.1) (2020-12-17)
7
189
 
8
190
 
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2020 Feathers
3
+ Copyright (c) 2021 Feathers
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,10 +1,21 @@
1
- import { BaseApplication, Service } from './declarations';
2
- interface AppExtensions {
1
+ /// <reference types="node" />
2
+ import { EventEmitter } from './dependencies';
3
+ import { FeathersApplication, ServiceMixin, Service, ServiceOptions, ServiceInterface, Application, HookOptions, FeathersService, HookMap } from './declarations';
4
+ export declare class Feathers<Services, Settings> extends EventEmitter implements FeathersApplication<Services, Settings> {
5
+ services: Services;
6
+ settings: Settings;
7
+ mixins: ServiceMixin<Application<Services, Settings>>[];
8
+ version: string;
3
9
  _isSetup: boolean;
4
- init(): void;
5
- services: {
6
- [key: string]: Service<any>;
7
- };
10
+ appHooks: HookMap<Application<Services, Settings>, any>;
11
+ private regularHooks;
12
+ constructor();
13
+ get<L extends keyof Settings & string>(name: L): Settings[L];
14
+ set<L extends keyof Settings & string>(name: L, value: Settings[L]): this;
15
+ configure(callback: (this: this, app: this) => void): this;
16
+ defaultService(location: string): ServiceInterface;
17
+ service<L extends keyof Services & string>(location: L): FeathersService<this, keyof any extends keyof Services ? Service : Services[L]>;
18
+ use<L extends keyof Services & string>(path: L, service: keyof any extends keyof Services ? ServiceInterface | Application : Services[L], options?: ServiceOptions): this;
19
+ hooks(hookMap: HookOptions<this, any>): any;
20
+ setup(): Promise<this>;
8
21
  }
9
- declare const _default: BaseApplication & AppExtensions;
10
- export default _default;
@@ -3,111 +3,113 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- const debug_1 = __importDefault(require("debug"));
7
- const commons_1 = require("@feathersjs/commons");
8
- // @ts-ignore
9
- const uberproto_1 = __importDefault(require("uberproto"));
10
- const events_1 = __importDefault(require("./events"));
11
- const hooks_1 = __importDefault(require("./hooks"));
6
+ exports.Feathers = void 0;
12
7
  const version_1 = __importDefault(require("./version"));
13
- const debug = debug_1.default('feathers:application');
14
- const Proto = uberproto_1.default.extend({
15
- create: null
16
- });
17
- exports.default = {
18
- init() {
19
- Object.assign(this, {
20
- version: version_1.default,
21
- methods: [
22
- 'find', 'get', 'create', 'update', 'patch', 'remove'
23
- ],
24
- mixins: [],
25
- services: {},
26
- providers: [],
27
- _setup: false,
28
- settings: {}
29
- });
30
- this.configure(hooks_1.default());
31
- this.configure(events_1.default());
32
- },
8
+ const dependencies_1 = require("./dependencies");
9
+ const events_1 = require("./events");
10
+ const index_1 = require("./hooks/index");
11
+ const service_1 = require("./service");
12
+ const regular_1 = require("./hooks/regular");
13
+ const debug = (0, dependencies_1.createDebug)('@feathersjs/feathers');
14
+ class Feathers extends dependencies_1.EventEmitter {
15
+ constructor() {
16
+ super();
17
+ this.services = {};
18
+ this.settings = {};
19
+ this.mixins = [index_1.hookMixin, events_1.eventMixin];
20
+ this.version = version_1.default;
21
+ this._isSetup = false;
22
+ this.appHooks = {
23
+ [dependencies_1.HOOKS]: [events_1.eventHook]
24
+ };
25
+ this.regularHooks = (0, regular_1.enableRegularHooks)(this);
26
+ }
33
27
  get(name) {
34
28
  return this.settings[name];
35
- },
29
+ }
36
30
  set(name, value) {
37
31
  this.settings[name] = value;
38
32
  return this;
39
- },
40
- disable(name) {
41
- this.settings[name] = false;
42
- return this;
43
- },
44
- disabled(name) {
45
- return !this.settings[name];
46
- },
47
- enable(name) {
48
- this.settings[name] = true;
49
- return this;
50
- },
51
- enabled(name) {
52
- return !!this.settings[name];
53
- },
54
- configure(fn) {
55
- fn.call(this, this);
33
+ }
34
+ configure(callback) {
35
+ callback.call(this, this);
56
36
  return this;
57
- },
58
- service(path) {
59
- const location = commons_1.stripSlashes(path) || '/';
60
- const current = this.services[location];
61
- if (typeof current === 'undefined' && typeof this.defaultService === 'function') {
62
- return this.use(location, this.defaultService(location))
63
- .service(location);
37
+ }
38
+ defaultService(location) {
39
+ throw new Error(`Can not find service '${location}'`);
40
+ }
41
+ service(location) {
42
+ const path = ((0, dependencies_1.stripSlashes)(location) || '/');
43
+ const current = this.services[path];
44
+ if (typeof current === 'undefined') {
45
+ this.use(path, this.defaultService(path));
46
+ return this.service(path);
64
47
  }
65
48
  return current;
66
- },
67
- use(path, service, options = {}) {
49
+ }
50
+ use(path, service, options) {
68
51
  if (typeof path !== 'string') {
69
52
  throw new Error(`'${path}' is not a valid service path.`);
70
53
  }
71
- const location = commons_1.stripSlashes(path) || '/';
72
- const isSubApp = typeof service.service === 'function' && service.services;
73
- const isService = this.methods.concat('setup').some(name => typeof service[name] === 'function');
54
+ const location = ((0, dependencies_1.stripSlashes)(path) || '/');
55
+ const subApp = service;
56
+ const isSubApp = typeof subApp.service === 'function' && subApp.services;
74
57
  if (isSubApp) {
75
- const subApp = service;
76
58
  Object.keys(subApp.services).forEach(subPath => this.use(`${location}/${subPath}`, subApp.service(subPath)));
77
59
  return this;
78
60
  }
79
- if (!isService) {
80
- throw new Error(`Invalid service object passed for path \`${location}\``);
61
+ const protoService = (0, service_1.wrapService)(location, service, options);
62
+ const serviceOptions = (0, service_1.getServiceOptions)(service, options);
63
+ for (const name of service_1.protectedMethods) {
64
+ if (serviceOptions.methods.includes(name)) {
65
+ throw new Error(`'${name}' on service '${location}' is not allowed as a custom method name`);
66
+ }
81
67
  }
82
- // If the service is already Uberproto'd use it directly
83
- const protoService = Proto.isPrototypeOf(service) ? service : Proto.extend(service);
84
68
  debug(`Registering new service at \`${location}\``);
85
69
  // Add all the mixins
86
- this.mixins.forEach(fn => fn.call(this, protoService, location, options));
87
- if (typeof protoService._setup === 'function') {
88
- protoService._setup(this, location);
89
- }
90
- // Run the provider functions to register the service
91
- this.providers.forEach(provider => provider.call(this, protoService, location, options));
92
- // If we ran setup already, set this service up explicitly
70
+ this.mixins.forEach(fn => fn.call(this, protoService, location, serviceOptions));
71
+ // If we ran setup already, set this service up explicitly, this will not `await`
93
72
  if (this._isSetup && typeof protoService.setup === 'function') {
94
73
  debug(`Setting up service for \`${location}\``);
95
74
  protoService.setup(this, location);
96
75
  }
97
76
  this.services[location] = protoService;
98
77
  return this;
99
- },
78
+ }
79
+ hooks(hookMap) {
80
+ const regularMap = hookMap;
81
+ if (regularMap.before || regularMap.after || regularMap.error) {
82
+ return this.regularHooks(regularMap);
83
+ }
84
+ if (Array.isArray(hookMap)) {
85
+ this.appHooks[dependencies_1.HOOKS].push(...hookMap);
86
+ }
87
+ else {
88
+ const methodHookMap = hookMap;
89
+ Object.keys(methodHookMap).forEach(key => {
90
+ const methodHooks = this.appHooks[key] || [];
91
+ this.appHooks[key] = methodHooks.concat(methodHookMap[key]);
92
+ });
93
+ }
94
+ return this;
95
+ }
100
96
  setup() {
97
+ let promise = Promise.resolve();
101
98
  // Setup each service (pass the app so that they can look up other services etc.)
102
- Object.keys(this.services).forEach(path => {
103
- const service = this.services[path];
104
- debug(`Setting up service for \`${path}\``);
105
- if (typeof service.setup === 'function') {
106
- service.setup(this, path);
107
- }
99
+ for (const path of Object.keys(this.services)) {
100
+ promise = promise.then(() => {
101
+ const service = this.service(path);
102
+ if (typeof service.setup === 'function') {
103
+ debug(`Setting up service for \`${path}\``);
104
+ return service.setup(this, path);
105
+ }
106
+ });
107
+ }
108
+ return promise.then(() => {
109
+ this._isSetup = true;
110
+ return this;
108
111
  });
109
- this._isSetup = true;
110
- return this;
111
112
  }
112
- };
113
+ }
114
+ exports.Feathers = Feathers;
113
115
  //# sourceMappingURL=application.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"application.js","sourceRoot":"","sources":["../src/application.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"application.js","sourceRoot":"","sources":["../src/application.ts"],"names":[],"mappings":"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"}