@loopback/boot 5.0.5 → 5.0.6

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 (40) hide show
  1. package/dist/.sandbox/{17643eUAaGe → 24238EG4e50}/model-endpoints/product.rest-config.js +0 -0
  2. package/dist/.sandbox/{17643eUAaGe → 24238EG4e50}/models/product.model.js +0 -0
  3. package/dist/.sandbox/{176449RtCfn → 24238ZbNDFr}/application.js +0 -0
  4. package/dist/.sandbox/{17649wvh2oB → 24238ZbNDFr}/services/bindable-classes.service.js +0 -0
  5. package/dist/.sandbox/{17649wvh2oB → 24238ZbNDFr}/services/date.service.js +0 -0
  6. package/dist/.sandbox/{17649wvh2oB → 24238ZbNDFr}/services/geocoder.service.js +0 -0
  7. package/dist/.sandbox/{17649wvh2oB → 24238ZbNDFr}/services/greeting.service.js +0 -0
  8. package/dist/.sandbox/{176449dR7kH → 24238k8WMpO}/application.js +0 -0
  9. package/dist/.sandbox/{17646nb6rvC → 24238k8WMpO}/interceptors/interceptor.interceptor.js +0 -0
  10. package/dist/.sandbox/{17646nb6rvC → 24238k8WMpO}/interceptors/non-global-interceptor.interceptor.js +0 -0
  11. package/dist/.sandbox/{17644bDPWw9 → 242396rQcxT}/application.js +0 -0
  12. package/dist/.sandbox/{17642q4taV3 → 242396rQcxT}/controllers/multiple.controller.js +0 -0
  13. package/dist/.sandbox/{17642q4taV3 → 242396rQcxT}/package.json +0 -0
  14. package/dist/.sandbox/{17646U4Weli → 24239BG2oxv}/datasource.artifact.js +0 -0
  15. package/dist/.sandbox/{17646X9EUwX → 24239bnUCCI}/application.js +0 -0
  16. package/dist/.sandbox/{17649fdkwqg → 24239bnUCCI}/models/multiple-models.model.js +0 -0
  17. package/dist/.sandbox/{17649Hlkxrq → 24239bnUCCI}/models/no-entity.model.js +0 -0
  18. package/dist/.sandbox/{17649fdkwqg → 24239bnUCCI}/models/product.model.js +0 -0
  19. package/dist/.sandbox/{17646bzXhJt → 24239n9BZEx}/application.js +0 -0
  20. package/dist/.sandbox/{176449RtCfn → 24239n9BZEx}/controllers/multiple.controller.js +0 -0
  21. package/dist/.sandbox/{17649Hlkxrq → 242403rNeId}/model-endpoints/no-entity.rest-config.js +0 -0
  22. package/dist/.sandbox/{17649fdkwqg → 242403rNeId}/models/no-entity.model.js +0 -0
  23. package/dist/.sandbox/{17644DEUQOq → 24240Ey0m5D}/multiple.artifact.js +0 -0
  24. package/dist/.sandbox/{176499tFI7u → 24240F42VCR}/multiple.artifact.js +0 -0
  25. package/dist/.sandbox/{17646nb6rvC → 242412rS8ng}/application.js +0 -0
  26. package/dist/.sandbox/{17646bzXhJt → 242412rS8ng}/repositories/multiple.repository.js +0 -0
  27. package/dist/.sandbox/{17649fdkwqg → 24241E5B3d5}/application.js +0 -0
  28. package/dist/.sandbox/{17644bDPWw9 → 24241E5B3d5}/datasources/db.datasource.js +0 -0
  29. package/dist/.sandbox/{176426cjFK6 → 24241LscMec}/service-provider.artifact.js +0 -0
  30. package/dist/.sandbox/{17649wvh2oB → 24241RRfcG9}/application.js +0 -0
  31. package/dist/.sandbox/{176449dR7kH → 24241RRfcG9}/observers/lifecycle-observer.observer.js +0 -0
  32. package/dist/.sandbox/{17642q4taV3 → 24243932BX3/dist}/application.js +0 -0
  33. package/dist/.sandbox/{17645bHShiq → 24243932BX3}/package.json +0 -0
  34. package/dist/.sandbox/{17645bHShiq/dist → 24246GFjmrI}/application.js +0 -0
  35. package/dist/.sandbox/{17646X9EUwX → 24246GFjmrI}/controllers/multiple.controller.js +0 -0
  36. package/dist/.sandbox/{17646X9EUwX → 24246GFjmrI}/package.json +0 -0
  37. package/dist/booters/interceptor.booter.d.ts +1 -1
  38. package/dist/booters/lifecyle-observer.booter.d.ts +1 -1
  39. package/dist/types.d.ts +3 -3
  40. package/package.json +13 -13
@@ -1,7 +1,7 @@
1
1
  import { Application, Constructor, Interceptor, Provider } from '@loopback/core';
2
2
  import { ArtifactOptions } from '../types';
3
3
  import { BaseArtifactBooter } from './base-artifact.booter';
4
- declare type InterceptorProviderClass = Constructor<Provider<Interceptor>>;
4
+ type InterceptorProviderClass = Constructor<Provider<Interceptor>>;
5
5
  /**
6
6
  * A class that extends BaseArtifactBooter to boot the 'InterceptorProvider' artifact type.
7
7
  *
@@ -1,7 +1,7 @@
1
1
  import { Application, Constructor, LifeCycleObserver } from '@loopback/core';
2
2
  import { ArtifactOptions } from '../types';
3
3
  import { BaseArtifactBooter } from './base-artifact.booter';
4
- declare type LifeCycleObserverClass = Constructor<LifeCycleObserver>;
4
+ type LifeCycleObserverClass = Constructor<LifeCycleObserver>;
5
5
  /**
6
6
  * A class that extends BaseArtifactBooter to boot the 'LifeCycleObserver' artifact type.
7
7
  *
package/dist/types.d.ts CHANGED
@@ -3,7 +3,7 @@ import { Binding, BindingSpec, Constructor } from '@loopback/core';
3
3
  * Type definition for ArtifactOptions. These are the options supported by
4
4
  * this Booter.
5
5
  */
6
- export declare type ArtifactOptions = {
6
+ export type ArtifactOptions = {
7
7
  /**
8
8
  * Array of directories to check for artifacts.
9
9
  * Paths must be relative. Defaults to ['controllers']
@@ -55,7 +55,7 @@ export declare const BOOTER_PHASES: string[];
55
55
  /**
56
56
  * Options to configure `Bootstrapper`
57
57
  */
58
- export declare type BootOptions = {
58
+ export type BootOptions = {
59
59
  controllers?: ArtifactOptions;
60
60
  repositories?: ArtifactOptions;
61
61
  /**
@@ -66,7 +66,7 @@ export declare type BootOptions = {
66
66
  /**
67
67
  * Options for boot() execution
68
68
  */
69
- export declare type BootExecutionOptions = {
69
+ export type BootExecutionOptions = {
70
70
  /**
71
71
  * Optional array of Booter Classes to bind to the application before running bootstrapper.
72
72
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/boot",
3
3
  "description": "A collection of Booters for LoopBack 4 Applications",
4
- "version": "5.0.5",
4
+ "version": "5.0.6",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -35,12 +35,12 @@
35
35
  "!*/__tests__"
36
36
  ],
37
37
  "peerDependencies": {
38
- "@loopback/core": "^4.0.5"
38
+ "@loopback/core": "^4.0.6"
39
39
  },
40
40
  "dependencies": {
41
- "@loopback/model-api-builder": "^4.0.5",
42
- "@loopback/repository": "^5.1.0",
43
- "@loopback/service-proxy": "^5.0.5",
41
+ "@loopback/model-api-builder": "^4.0.6",
42
+ "@loopback/repository": "^5.1.1",
43
+ "@loopback/service-proxy": "^5.0.6",
44
44
  "@types/debug": "^4.1.7",
45
45
  "@types/glob": "^8.0.0",
46
46
  "debug": "^4.3.4",
@@ -48,13 +48,13 @@
48
48
  "tslib": "^2.4.1"
49
49
  },
50
50
  "devDependencies": {
51
- "@loopback/build": "^9.0.5",
52
- "@loopback/core": "^4.0.5",
53
- "@loopback/eslint-config": "^13.0.5",
54
- "@loopback/rest": "^12.0.5",
55
- "@loopback/rest-crud": "^0.15.4",
56
- "@loopback/testlab": "^5.0.5",
57
- "@types/node": "^14.18.33"
51
+ "@loopback/build": "^9.0.6",
52
+ "@loopback/core": "^4.0.6",
53
+ "@loopback/eslint-config": "^13.0.6",
54
+ "@loopback/rest": "^12.0.6",
55
+ "@loopback/rest-crud": "^0.15.5",
56
+ "@loopback/testlab": "^5.0.6",
57
+ "@types/node": "^14.18.34"
58
58
  },
59
- "gitHead": "2d762e2a1bcc73263dd7776e072b3ec3a9279472"
59
+ "gitHead": "709a5ecd1ffddeb02262cecabf7b663c7b4d7e47"
60
60
  }