@adimm/x-injection 2.0.4 → 2.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/README.md CHANGED
@@ -310,7 +310,7 @@ The below list shows them in order of priority _(highest to lowest)_, meaning th
310
310
  3. By providing the [defaultScope](https://adimarianmutu.github.io/x-injection/interfaces/ProviderModuleOptions.html#defaultscope) property when initializing a `ProviderModule`:
311
311
  ```ts
312
312
  const RainModuleDef = new ProviderModuleDef({
313
- identifier: 'RainModule',
313
+ id: 'RainModule',
314
314
  defaultScope: InjectionScope.Transient,
315
315
  });
316
316
  ```
@@ -499,7 +499,7 @@ const UnknownModule = ProviderModule.create({
499
499
  exports: [SecondService],
500
500
  });
501
501
 
502
- InnerModule.update.addImport(UnknownModule);
502
+ InnerModule.update.addImport(UnknownModule, true); // Don't forget to provide `true` to the `addToExports` optional parameter!
503
503
 
504
504
  const secondService = OuterModule.get(SecondService);
505
505
  ```
@@ -543,13 +543,9 @@ The [ProviderModuleBlueprint](https://adimarianmutu.github.io/x-injection/classe
543
543
 
544
544
  Whenever you _import_ a `blueprint` into a `module`, it'll automatically be "transformed" to a `ProviderModule` instance by the engine, this step is crucial as a `blueprint` per se does not contain a _container_, just its _definitions_.
545
545
 
546
- This has a "gotcha", because the conversion happens internally, you'll "not" be able to get a reference to that imported module, not directly at least _(I may change this in a future patch)_, this means that if you don't have the reference of the `ProviderModule`, you can't remove it from the _imported_ module _(if you'll ever need to remove it)_.
547
-
548
546
  > [!NOTE]
549
547
  >
550
- > There's currently an workaround for this, you can `subscribe` to the `Import` event and get from there the `ProviderModule` instance, just make sure to check the `id` of the module via `module.toString()` when doing so.
551
-
552
- It is also important, to understand the _injection_ `scope` of an imported `blueprint`; we previously learned that when we import a `blueprint` into a `module` it automatically creates an instance of the `ProviderModule` from it, this means that all the `singleton` providers of the `blueprint` definition are now _scoped singleton_, where _scoped_ means _singleton in relation to their imported module_.
548
+ > Therefore it is important to understand the _injection_ `scope` of an imported `blueprint`; we previously learned that when we import a `blueprint` into a `module` it automatically creates an instance of the `ProviderModule` from it, this means that all the `singleton` providers of the `blueprint` definition are now _scoped singleton_, where _scoped_ means _singleton in relation to their imported module_.
553
549
 
554
550
  ### isGlobal
555
551
 
@@ -812,7 +808,7 @@ const ApiModuleBp = new ProviderModule.blueprint({
812
808
 
813
809
  // Clone returns a `deep` clone and wraps all the `methods` to break their reference!
814
810
  const ApiModuleBpMocked = ApiModuleBp.clone().updateDefinition({
815
- identifier: 'ApiModuleMocked',
811
+ id: 'ApiModuleMocked',
816
812
  providers: [
817
813
  {
818
814
  provide: UserService,
package/dist/index.cjs CHANGED
@@ -17,11 +17,11 @@ var e, t = Object.defineProperty, i = Object.getOwnPropertyDescriptor, o = Objec
17
17
  InjectFromBase: () => N,
18
18
  Injectable: () => q,
19
19
  InjectionError: () => I,
20
- InjectionProviderModuleDisposedError: () => P,
20
+ InjectionProviderModuleDisposedError: () => w,
21
21
  InjectionProviderModuleError: () => b,
22
22
  InjectionProviderModuleMissingIdentifierError: () => x,
23
23
  InjectionProviderModuleMissingProviderError: () => E,
24
- InjectionProviderModuleUnknownProviderError: () => w,
24
+ InjectionProviderModuleUnknownProviderError: () => P,
25
25
  InjectionScope: () => u,
26
26
  MiddlewareType: () => a,
27
27
  MultiInject: () => U,
@@ -194,7 +194,7 @@ var g, I = class e extends Error {
194
194
  } catch {}
195
195
  super(`{ProviderModule.${i}} => ${t}`);
196
196
  }
197
- }, w = class e extends b {
197
+ }, P = class e extends b {
198
198
  static {
199
199
  n(this, "InjectionProviderModuleUnknownProviderError");
200
200
  }
@@ -202,7 +202,7 @@ var g, I = class e extends Error {
202
202
  constructor(e, t) {
203
203
  super(e, `The [${h.providerTokenToString(t)}] provider is of an unknown type!`);
204
204
  }
205
- }, P = class e extends b {
205
+ }, w = class e extends b {
206
206
  static {
207
207
  n(this, "InjectionProviderModuleDisposedError");
208
208
  }
@@ -270,7 +270,7 @@ var g, I = class e extends Error {
270
270
  return t.useFactory(...i);
271
271
  }))), "bind")
272
272
  } ], {bind: o} = i.find((({providerTypeMatches: t}) => t(e))) ?? {};
273
- if (!o) throw new w(this.providerModule, e);
273
+ if (!o) throw new P(this.providerModule, e);
274
274
  const r = h.isProviderIdentifier(e);
275
275
  let s = o();
276
276
  if (h.isValueToken(e) || r || (s = this.setBindingScope(e, s)), r) return;
@@ -388,7 +388,7 @@ var g, I = class e extends Error {
388
388
  return this.providerModule.moduleContainer;
389
389
  }
390
390
  get subscribe() {
391
- if (null === this.event$) throw new P(this.providerModule);
391
+ if (null === this.event$) throw new w(this.providerModule);
392
392
  return this.event$.subscribe.bind(this.event$);
393
393
  }
394
394
  moduleDef;
@@ -444,22 +444,24 @@ var g, I = class e extends Error {
444
444
  this.addProvider(i, t);
445
445
  }
446
446
  removeImport(e) {
447
- if (!this.moduleDef.imports.has(e)) return !1;
448
- if (!1 === this.providerModule.middlewaresManager.applyMiddlewares(a.BeforeRemoveImport, e)) return !1;
449
- this.unsubscribeFromImportedModuleEvents(e);
450
- return this.providerModule.importedModuleContainers.get(e).dispose(), this.providerModule.importedModuleContainers.delete(e),
451
- this.moduleDef.imports.delete(e), this.emitEventSafely({
447
+ const t = g.isModule(e) ? e : this.getImportedModuleById(e);
448
+ if (!t) return !1;
449
+ if (!1 === this.providerModule.middlewaresManager.applyMiddlewares(a.BeforeRemoveImport, t)) return !1;
450
+ this.unsubscribeFromImportedModuleEvents(t);
451
+ return this.providerModule.importedModuleContainers.get(t).dispose(), this.providerModule.importedModuleContainers.delete(t),
452
+ this.moduleDef.imports.delete(t), this.emitEventSafely({
452
453
  type: p.ImportRemoved,
453
- change: e
454
- }), this.removeFromExports(e), !0;
454
+ change: t
455
+ }), this.removeFromExports(t), !0;
455
456
  }
456
457
  removeProvider(e) {
457
- if (!this.moduleDef.providers.has(e)) return !1;
458
- return !1 !== this.providerModule.middlewaresManager.applyMiddlewares(a.BeforeRemoveProvider, e) && (this.moduleDef.providers.delete(e),
459
- this.moduleContainer.container.unbindSync(h.toProviderIdentifier(e)), this.emitEventSafely({
458
+ const t = h.isProviderIdentifier(e) ? this.getProviderByIdentifier(e) : e;
459
+ if (!t) return !1;
460
+ return !1 !== this.providerModule.middlewaresManager.applyMiddlewares(a.BeforeRemoveProvider, t) && (this.moduleDef.providers.delete(t),
461
+ this.moduleContainer.container.unbindSync(h.toProviderIdentifier(t)), this.emitEventSafely({
460
462
  type: p.ProviderRemoved,
461
- change: e
462
- }), this.removeFromExports(e), !0);
463
+ change: t
464
+ }), this.removeFromExports(t), !0);
463
465
  }
464
466
  removeFromExports(e) {
465
467
  if (!this.moduleDef.exports.has(e)) return !1;
@@ -475,6 +477,12 @@ var g, I = class e extends Error {
475
477
  change: e
476
478
  }), !0);
477
479
  }
480
+ getImportedModuleById(e) {
481
+ return this.moduleDef.imports.values().find((t => t.id === e));
482
+ }
483
+ getProviderByIdentifier(e) {
484
+ return this.moduleDef.providers.values().find((t => h.toProviderIdentifier(t) === e));
485
+ }
478
486
  emitEventSafely(e) {
479
487
  if (!this.emittingModules.has(this.providerModule)) try {
480
488
  this.emittingModules.add(this.providerModule), this.event$.emit(e);
@@ -535,7 +543,7 @@ var g, I = class e extends Error {
535
543
  i ? i.push(t) : this.middlewaresMap.set(e, [ t ]);
536
544
  }
537
545
  applyMiddlewares(e, ...t) {
538
- if (null === this.middlewaresMap) throw new P(this.providerModule);
546
+ if (null === this.middlewaresMap) throw new w(this.providerModule);
539
547
  const i = this.middlewaresMap.get(e);
540
548
  switch (e) {
541
549
  case a.BeforeAddImport:
@@ -709,7 +717,7 @@ var g, I = class e extends Error {
709
717
  if (!this.options.id || 0 === this.options.id.toString().trim().length) throw new x(this);
710
718
  }
711
719
  throwIfDisposed() {
712
- if (this.isDisposed) throw new P(this);
720
+ if (this.isDisposed) throw new w(this);
713
721
  }
714
722
  };
715
723
 
@@ -811,4 +819,4 @@ var Z = new G({
811
819
  id: "AppModule"
812
820
  });
813
821
 
814
- G.APP_MODULE_REF = Z;//# sourceMappingURL=index.cjs.map
822
+ G.APP_MODULE_REF = Z;
package/dist/index.d.cts CHANGED
@@ -313,18 +313,18 @@ interface IDynamicModuleDefinition {
313
313
  *
314
314
  * **Note:** _You can always add it back with the {@link addImport} or {@link addImportLazy} methods._
315
315
  *
316
- * @param module The {@link IProviderModule | Module} to be removed.
316
+ * @param moduleOrId Either the `module` reference itself or its `id`.
317
317
  */
318
- removeImport(module: IProviderModule): boolean;
318
+ removeImport(moduleOrId: IProviderModule | ModuleIdentifier): boolean;
319
319
  /**
320
320
  * Can be used to remove a `provider` from the _current_ {@link IProviderModule | Module}'s `container`.
321
321
  * It'll also automatically remove it from the `exports` definition.
322
322
  *
323
323
  * **Note:** _You can always add it back with the {@link addProvider} or {@link addProviderLazy} methods._
324
324
  *
325
- * @param provider The {@link DependencyProvider | Provider} to be removed.
325
+ * @param providerOrIdentifier Either the `provider` reference itself or its `{ provide }` property value.
326
326
  */
327
- removeProvider<T>(provider: DependencyProvider<T>): boolean;
327
+ removeProvider<T>(providerOrIdentifier: DependencyProvider<T> | ProviderIdentifier<T>): boolean;
328
328
  /**
329
329
  * Can be used to remove a {@link IProviderModule | Module} or {@link DependencyProvider | Provider} from
330
330
  * the `exports` definition of this `module`.
@@ -355,9 +355,11 @@ declare class DynamicModuleDefinition implements IDynamicModuleDefinition {
355
355
  addImportLazy(lazyCb: AsyncMethod<ProviderModule>, addToExports?: boolean): Promise<void>;
356
356
  addProvider<T>(provider: DependencyProvider<T>, addToExports?: boolean): void;
357
357
  addProviderLazy<T>(lazyCb: AsyncMethod<DependencyProvider<T>>, addToExports?: boolean): Promise<void>;
358
- removeImport(module: IProviderModule): boolean;
359
- removeProvider<T>(provider: DependencyProvider<T>): boolean;
358
+ removeImport(moduleOrId: IProviderModule | ModuleIdentifier): boolean;
359
+ removeProvider<T>(providerOrIdentifier: DependencyProvider<T> | ProviderIdentifier<T>): boolean;
360
360
  removeFromExports(exportDefinition: ExportDefinition): boolean;
361
+ getImportedModuleById(id: ModuleIdentifier): ProviderModule | undefined;
362
+ getProviderByIdentifier<T>(identifier: ProviderIdentifier<T>): DependencyProvider<T> | undefined;
361
363
  emitEventSafely(event: DefinitionEvent): void;
362
364
  dispose(): void;
363
365
  private buildInitialDefinition;
@@ -471,7 +473,9 @@ declare abstract class IProviderModule {
471
473
  *
472
474
  * // Later in your code
473
475
  *
474
- * GarageModuleBlueprint.imports = [...GarageModuleBlueprint.imports, PorscheModule, FerrariModuleBlueprint];
476
+ * GarageModuleBlueprint.updateDefinition({
477
+ * imports: [...GarageModuleBlueprint.imports, PorscheModule, FerrariModuleBlueprint]
478
+ * });
475
479
  *
476
480
  * // ...
477
481
  *
@@ -807,4 +811,4 @@ declare function isClassOrFunction(value: any): value is Function | Class<any>;
807
811
 
808
812
  declare function deepClone<T>(obj: T): T;
809
813
 
810
- export { AppModule, DefinitionEventType, type DependencyProvider, type ExportDefinition, type ExportsDefinition, type ExportsDefinitionOptimized, IProviderModule, Inject, InjectFromBase, Injectable, InjectionError, InjectionProviderModuleDisposedError, InjectionProviderModuleError, InjectionProviderModuleMissingIdentifierError, InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError, InjectionScope, MiddlewareType, MultiInject, Named, Optional, type ProviderClassToken, type ProviderFactoryToken, type ProviderIdentifier, ProviderModule, ProviderModuleBlueprint, type ProviderModuleGetManyParam, type ProviderModuleGetManyReturn, type ProviderModuleGetReturn, ProviderModuleHelpers, type ProviderModuleOptions, type ProviderModuleOptionsInternal, type ProviderOptions, type ProviderScopeOption, type ProviderToken, ProviderTokenHelpers, type ProviderValueToken, Tagged, Unmanaged, bindingScopeToInjectionScope, deepClone, injectionScopeToBindingScope, isClass, isClassOrFunction, isFunction, isPlainObject };
814
+ export { AppModule, DefinitionEventType, type DependencyProvider, type ExportDefinition, type ExportsDefinition, type ExportsDefinitionOptimized, IProviderModule, Inject, InjectFromBase, Injectable, InjectionError, InjectionProviderModuleDisposedError, InjectionProviderModuleError, InjectionProviderModuleMissingIdentifierError, InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError, InjectionScope, MiddlewareType, type ModuleOrBlueprint, MultiInject, Named, Optional, type ProviderClassToken, type ProviderFactoryToken, type ProviderIdentifier, ProviderModule, ProviderModuleBlueprint, type ProviderModuleGetManyParam, type ProviderModuleGetManyReturn, type ProviderModuleGetReturn, ProviderModuleHelpers, type ProviderModuleOptions, type ProviderModuleOptionsInternal, type ProviderOptions, type ProviderScopeOption, type ProviderToken, ProviderTokenHelpers, type ProviderValueToken, Tagged, Unmanaged, bindingScopeToInjectionScope, deepClone, injectionScopeToBindingScope, isClass, isClassOrFunction, isFunction, isPlainObject };
package/dist/index.d.ts CHANGED
@@ -313,18 +313,18 @@ interface IDynamicModuleDefinition {
313
313
  *
314
314
  * **Note:** _You can always add it back with the {@link addImport} or {@link addImportLazy} methods._
315
315
  *
316
- * @param module The {@link IProviderModule | Module} to be removed.
316
+ * @param moduleOrId Either the `module` reference itself or its `id`.
317
317
  */
318
- removeImport(module: IProviderModule): boolean;
318
+ removeImport(moduleOrId: IProviderModule | ModuleIdentifier): boolean;
319
319
  /**
320
320
  * Can be used to remove a `provider` from the _current_ {@link IProviderModule | Module}'s `container`.
321
321
  * It'll also automatically remove it from the `exports` definition.
322
322
  *
323
323
  * **Note:** _You can always add it back with the {@link addProvider} or {@link addProviderLazy} methods._
324
324
  *
325
- * @param provider The {@link DependencyProvider | Provider} to be removed.
325
+ * @param providerOrIdentifier Either the `provider` reference itself or its `{ provide }` property value.
326
326
  */
327
- removeProvider<T>(provider: DependencyProvider<T>): boolean;
327
+ removeProvider<T>(providerOrIdentifier: DependencyProvider<T> | ProviderIdentifier<T>): boolean;
328
328
  /**
329
329
  * Can be used to remove a {@link IProviderModule | Module} or {@link DependencyProvider | Provider} from
330
330
  * the `exports` definition of this `module`.
@@ -355,9 +355,11 @@ declare class DynamicModuleDefinition implements IDynamicModuleDefinition {
355
355
  addImportLazy(lazyCb: AsyncMethod<ProviderModule>, addToExports?: boolean): Promise<void>;
356
356
  addProvider<T>(provider: DependencyProvider<T>, addToExports?: boolean): void;
357
357
  addProviderLazy<T>(lazyCb: AsyncMethod<DependencyProvider<T>>, addToExports?: boolean): Promise<void>;
358
- removeImport(module: IProviderModule): boolean;
359
- removeProvider<T>(provider: DependencyProvider<T>): boolean;
358
+ removeImport(moduleOrId: IProviderModule | ModuleIdentifier): boolean;
359
+ removeProvider<T>(providerOrIdentifier: DependencyProvider<T> | ProviderIdentifier<T>): boolean;
360
360
  removeFromExports(exportDefinition: ExportDefinition): boolean;
361
+ getImportedModuleById(id: ModuleIdentifier): ProviderModule | undefined;
362
+ getProviderByIdentifier<T>(identifier: ProviderIdentifier<T>): DependencyProvider<T> | undefined;
361
363
  emitEventSafely(event: DefinitionEvent): void;
362
364
  dispose(): void;
363
365
  private buildInitialDefinition;
@@ -471,7 +473,9 @@ declare abstract class IProviderModule {
471
473
  *
472
474
  * // Later in your code
473
475
  *
474
- * GarageModuleBlueprint.imports = [...GarageModuleBlueprint.imports, PorscheModule, FerrariModuleBlueprint];
476
+ * GarageModuleBlueprint.updateDefinition({
477
+ * imports: [...GarageModuleBlueprint.imports, PorscheModule, FerrariModuleBlueprint]
478
+ * });
475
479
  *
476
480
  * // ...
477
481
  *
@@ -807,4 +811,4 @@ declare function isClassOrFunction(value: any): value is Function | Class<any>;
807
811
 
808
812
  declare function deepClone<T>(obj: T): T;
809
813
 
810
- export { AppModule, DefinitionEventType, type DependencyProvider, type ExportDefinition, type ExportsDefinition, type ExportsDefinitionOptimized, IProviderModule, Inject, InjectFromBase, Injectable, InjectionError, InjectionProviderModuleDisposedError, InjectionProviderModuleError, InjectionProviderModuleMissingIdentifierError, InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError, InjectionScope, MiddlewareType, MultiInject, Named, Optional, type ProviderClassToken, type ProviderFactoryToken, type ProviderIdentifier, ProviderModule, ProviderModuleBlueprint, type ProviderModuleGetManyParam, type ProviderModuleGetManyReturn, type ProviderModuleGetReturn, ProviderModuleHelpers, type ProviderModuleOptions, type ProviderModuleOptionsInternal, type ProviderOptions, type ProviderScopeOption, type ProviderToken, ProviderTokenHelpers, type ProviderValueToken, Tagged, Unmanaged, bindingScopeToInjectionScope, deepClone, injectionScopeToBindingScope, isClass, isClassOrFunction, isFunction, isPlainObject };
814
+ export { AppModule, DefinitionEventType, type DependencyProvider, type ExportDefinition, type ExportsDefinition, type ExportsDefinitionOptimized, IProviderModule, Inject, InjectFromBase, Injectable, InjectionError, InjectionProviderModuleDisposedError, InjectionProviderModuleError, InjectionProviderModuleMissingIdentifierError, InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError, InjectionScope, MiddlewareType, type ModuleOrBlueprint, MultiInject, Named, Optional, type ProviderClassToken, type ProviderFactoryToken, type ProviderIdentifier, ProviderModule, ProviderModuleBlueprint, type ProviderModuleGetManyParam, type ProviderModuleGetManyReturn, type ProviderModuleGetReturn, ProviderModuleHelpers, type ProviderModuleOptions, type ProviderModuleOptionsInternal, type ProviderOptions, type ProviderScopeOption, type ProviderToken, ProviderTokenHelpers, type ProviderValueToken, Tagged, Unmanaged, bindingScopeToInjectionScope, deepClone, injectionScopeToBindingScope, isClass, isClassOrFunction, isFunction, isPlainObject };
package/dist/index.js CHANGED
@@ -409,22 +409,24 @@ var E, S = class {
409
409
  this.addProvider(i, t);
410
410
  }
411
411
  removeImport(e) {
412
- if (!this.moduleDef.imports.has(e)) return !1;
413
- if (!1 === this.providerModule.middlewaresManager.applyMiddlewares(n.BeforeRemoveImport, e)) return !1;
414
- this.unsubscribeFromImportedModuleEvents(e);
415
- return this.providerModule.importedModuleContainers.get(e).dispose(), this.providerModule.importedModuleContainers.delete(e),
416
- this.moduleDef.imports.delete(e), this.emitEventSafely({
412
+ const t = E.isModule(e) ? e : this.getImportedModuleById(e);
413
+ if (!t) return !1;
414
+ if (!1 === this.providerModule.middlewaresManager.applyMiddlewares(n.BeforeRemoveImport, t)) return !1;
415
+ this.unsubscribeFromImportedModuleEvents(t);
416
+ return this.providerModule.importedModuleContainers.get(t).dispose(), this.providerModule.importedModuleContainers.delete(t),
417
+ this.moduleDef.imports.delete(t), this.emitEventSafely({
417
418
  type: s.ImportRemoved,
418
- change: e
419
- }), this.removeFromExports(e), !0;
419
+ change: t
420
+ }), this.removeFromExports(t), !0;
420
421
  }
421
422
  removeProvider(e) {
422
- if (!this.moduleDef.providers.has(e)) return !1;
423
- return !1 !== this.providerModule.middlewaresManager.applyMiddlewares(n.BeforeRemoveProvider, e) && (this.moduleDef.providers.delete(e),
424
- this.moduleContainer.container.unbindSync(o.toProviderIdentifier(e)), this.emitEventSafely({
423
+ const t = o.isProviderIdentifier(e) ? this.getProviderByIdentifier(e) : e;
424
+ if (!t) return !1;
425
+ return !1 !== this.providerModule.middlewaresManager.applyMiddlewares(n.BeforeRemoveProvider, t) && (this.moduleDef.providers.delete(t),
426
+ this.moduleContainer.container.unbindSync(o.toProviderIdentifier(t)), this.emitEventSafely({
425
427
  type: s.ProviderRemoved,
426
- change: e
427
- }), this.removeFromExports(e), !0);
428
+ change: t
429
+ }), this.removeFromExports(t), !0);
428
430
  }
429
431
  removeFromExports(e) {
430
432
  if (!this.moduleDef.exports.has(e)) return !1;
@@ -440,6 +442,12 @@ var E, S = class {
440
442
  change: e
441
443
  }), !0);
442
444
  }
445
+ getImportedModuleById(e) {
446
+ return this.moduleDef.imports.values().find((t => t.id === e));
447
+ }
448
+ getProviderByIdentifier(e) {
449
+ return this.moduleDef.providers.values().find((t => o.toProviderIdentifier(t) === e));
450
+ }
443
451
  emitEventSafely(e) {
444
452
  if (!this.emittingModules.has(this.providerModule)) try {
445
453
  this.emittingModules.add(this.providerModule), this.event$.emit(e);
@@ -778,4 +786,4 @@ var K = new B({
778
786
 
779
787
  B.APP_MODULE_REF = K;
780
788
 
781
- export { K as AppModule, s as DefinitionEventType, F as Inject, q as InjectFromBase, j as Injectable, f as InjectionError, M as InjectionProviderModuleDisposedError, m as InjectionProviderModuleError, y as InjectionProviderModuleMissingIdentifierError, g as InjectionProviderModuleMissingProviderError, v as InjectionProviderModuleUnknownProviderError, r as InjectionScope, n as MiddlewareType, $ as MultiInject, L as Named, W as Optional, B as ProviderModule, T as ProviderModuleBlueprint, E as ProviderModuleHelpers, o as ProviderTokenHelpers, z as Tagged, J as Unmanaged, p as bindingScopeToInjectionScope, O as deepClone, d as injectionScopeToBindingScope, a as isClass, l as isClassOrFunction, A as isFunction, h as isPlainObject };//# sourceMappingURL=index.js.map
789
+ export { K as AppModule, s as DefinitionEventType, F as Inject, q as InjectFromBase, j as Injectable, f as InjectionError, M as InjectionProviderModuleDisposedError, m as InjectionProviderModuleError, y as InjectionProviderModuleMissingIdentifierError, g as InjectionProviderModuleMissingProviderError, v as InjectionProviderModuleUnknownProviderError, r as InjectionScope, n as MiddlewareType, $ as MultiInject, L as Named, W as Optional, B as ProviderModule, T as ProviderModuleBlueprint, E as ProviderModuleHelpers, o as ProviderTokenHelpers, z as Tagged, J as Unmanaged, p as bindingScopeToInjectionScope, O as deepClone, d as injectionScopeToBindingScope, a as isClass, l as isClassOrFunction, A as isFunction, h as isPlainObject };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adimm/x-injection",
3
3
  "description": "Powerful IoC library built on-top of InversifyJS inspired by NestJS's DI.",
4
- "version": "2.0.4",
4
+ "version": "2.1.1",
5
5
  "author": "Adi-Marian Mutu",
6
6
  "homepage": "https://github.com/AdiMarianMutu/x-injection#readme",
7
7
  "bugs": "https://github.com/AdiMarianMutu/x-injection/issues",
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/index.ts","../src/decorators/injectable.ts","../src/enums/injection-scope.enum.ts","../src/enums/middleware-type.enum.ts","../src/enums/definition-event-type.enum.ts","../src/helpers/scope-converter.ts","../src/helpers/provider-token.ts","../src/helpers/is-class.ts","../src/helpers/is-class-or-function.ts","../src/helpers/is-plain-object.ts","../src/errors/base.error.ts","../src/errors/provider-module.error.ts","../src/errors/provider-module-unknown-provider.ts","../src/errors/provider-module-disposed.error.ts","../src/errors/provider-module-missing-identifier.ts","../src/errors/provider-module-missing-provider.ts","../src/core/container/module-container.ts","../src/core/app-module/container.ts","../src/core/container/imported-module-container.ts","../src/utils/signal.ts","../src/core/dynamic-module-definition/dynamic-module-definition.ts","../src/core/middlewares-manager/middlewares-manager.ts","../src/core/provider-module-blueprint/provider-module-blueprint.ts","../src/core/provider-module/provider-module.ts","../src/helpers/provider-module.ts","../src/helpers/is-function.ts","../src/helpers/deep-clone.ts","../src/decorators/inject.ts","../src/decorators/multi-inject.ts","../src/decorators/inject-from-base.ts","../src/decorators/named.ts","../src/decorators/optional.ts","../src/decorators/tagged.ts","../src/decorators/unmanaged.ts","../src/core/app-module/app.module.ts"],"sourcesContent":["export * from './decorators';\nexport * from './errors';\nexport * from './enums';\nexport * from './helpers';\n\nexport { AppModule, ProviderModule, ProviderModuleBlueprint } from './core';\n\nexport type {\n IProviderModule,\n ProviderModuleOptions,\n ProviderModuleOptionsInternal,\n ProviderModuleGetReturn,\n ProviderModuleGetManyParam,\n ProviderModuleGetManyReturn,\n} from './core';\nexport type {\n DependencyProvider,\n ProviderToken,\n ProviderClassToken,\n ProviderValueToken,\n ProviderFactoryToken,\n ProviderIdentifier,\n ProviderOptions,\n ProviderScopeOption,\n ExportDefinition,\n ExportsDefinition,\n ExportsDefinitionOptimized,\n} from './types';\n","import { injectable as _injectable } from 'inversify';\n\nimport { InjectionScope } from '../enums';\nimport { injectionScopeToBindingScope } from '../helpers';\n\n/** See {@link https://inversify.io/docs/api/decorator/#injectable} for more details. */\nexport function Injectable(scope?: InjectionScope) {\n if (scope === undefined) return _injectable();\n\n return _injectable(injectionScopeToBindingScope(scope));\n}\n","export enum InjectionScope {\n /** When the service is resolved, the same cached resolved value will be used. */\n Singleton,\n\n /** When the service is resolved, a new resolved value will be used each time. */\n Transient,\n\n /** When the service is resolved within the same container request, the same resolved value will be used. */\n Request,\n}\n","export enum MiddlewareType {\n /**\n * Can be used to register a `middleware` which will be invoked right before importing a `module` into _this_ module.\n *\n * The provided middleware `callback` can either return a `boolean` or a `ProviderModule` instance.\n *\n * **Note:** _Returning `true` can be used to pass through the middleware without modifying_\n * _the `ProviderModule` instance, while returning `false` will reject the request of importing that specific module._\n */\n BeforeAddImport,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before adding a provider to _this_ module.\n *\n * The provided middleware `callback` can either return a `boolean` or a `ProviderToken` object type.\n *\n * **Note:** _Returning `true` can be used to pass through the middleware without modifying_\n * _the `ProviderToken` object, while returning `false` will reject the request of adding that specific provider._\n */\n BeforeAddProvider,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before a provider is returned to the consumer from _this_ module container.\n *\n * The provided middleware `callback` can return `anything`.\n */\n BeforeGet,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing an imported module from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the imported module can be removed and `false` means to keep it._\n */\n BeforeRemoveImport,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing a provider from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the provider can be removed and `false` means to keep it._\n */\n BeforeRemoveProvider,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing an `ExportDefinition` from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the `ExportDefinition` can be removed and `false` means to keep it._\n */\n BeforeRemoveExport,\n\n /**\n * Can be used to register a `middleware` which will be invoked each time\n * a _consumer_ `module` tries to access the `ExportDefinition` list of _this_ module to `get` a provider.\n *\n * **Note:** _The provided middleware `callback` will be invoked for each `ProviderToken` of the `ExportsDefinition` list_\n * _and must return a `boolean` where `true` means that the `ProviderToken` is authorized to be used by the importer module._\n */\n OnExportAccess,\n}\n","export enum DefinitionEventType {\n /** No-Operation, yet. */\n Noop,\n\n /**\n * A new `module` or `blueprint` has been added.\n *\n * **Note:** _The occurred change type is: `ModuleOrBlueprint`_\n */\n Import,\n\n /**\n * A new `provider` has been added.\n *\n * **Note:** _The occurred change type is: `DependencyProvider`_\n */\n Provider,\n\n /**\n * A `module` is retrieving from its container a `provider`.\n *\n * **Note:** _The occurred change type is: `any`_\n */\n GetProvider,\n\n /**\n * A new `module` or `provider` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ExportDefinition`_\n */\n Export,\n\n /**\n * A new `module` or `blueprint` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ModuleOrBlueprint`_\n */\n ExportModule,\n\n /**\n * A new `provider` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ProviderToken`_\n */\n ExportProvider,\n\n /**\n * A `module` has been removed.\n *\n * **Note:** _The occurred change type is: `IProviderModule`_\n */\n ImportRemoved,\n\n /**\n * A `provider` has been removed.\n *\n * **Note:** _The occurred change type is: `DependencyProvider`_\n */\n ProviderRemoved,\n\n /**\n * An `ExportDefinition` has been removed.\n *\n * **Note:** _The occurred change type is: `ExportDefinition`_\n */\n ExportRemoved,\n\n /**\n * A `module` has been removed from the `export` definition.\n *\n * **Note:** _The occurred change type is: `IProviderModule`_\n */\n ExportModuleRemoved,\n\n /**\n * A `provider` has been removed from the `export` definition.\n *\n * **Note:** _The occurred change type is: `ProviderToken`_\n */\n ExportProviderRemoved,\n}\n","import type { BindingScope } from 'inversify';\n\nimport { InjectionScope } from '../enums';\n\nexport function injectionScopeToBindingScope(injectionScope: InjectionScope): BindingScope {\n switch (injectionScope) {\n case InjectionScope.Singleton:\n return 'Singleton';\n case InjectionScope.Transient:\n return 'Transient';\n case InjectionScope.Request:\n return 'Request';\n }\n}\n\nexport function bindingScopeToInjectionScope(bindingScope: BindingScope): InjectionScope {\n switch (bindingScope) {\n case 'Singleton':\n return InjectionScope.Singleton;\n case 'Transient':\n return InjectionScope.Transient;\n case 'Request':\n return InjectionScope.Request;\n }\n}\n","import { getClassMetadata } from '@inversifyjs/core';\n\nimport { InjectionScope } from '../enums';\nimport type {\n ProviderClassToken,\n ProviderFactoryToken,\n ProviderIdentifier,\n ProviderOptions,\n ProviderScopeOption,\n ProviderToken,\n ProviderValueToken,\n} from '../types';\nimport { isClass } from './is-class';\nimport { isClassOrFunction } from './is-class-or-function';\nimport { isPlainObject } from './is-plain-object';\nimport { bindingScopeToInjectionScope } from './scope-converter';\n\nexport namespace ProviderTokenHelpers {\n export function isClassToken<T>(provider: ProviderToken<T>): provider is ProviderClassToken<T> {\n return hasProvideProperty(provider) && 'useClass' in provider;\n }\n\n export function isValueToken<T>(provider: ProviderToken<T>): provider is ProviderValueToken<T> {\n return hasProvideProperty(provider) && 'useValue' in provider;\n }\n\n export function isFactoryToken<T>(provider: ProviderToken<T>): provider is ProviderFactoryToken<T> {\n return hasProvideProperty(provider) && 'useFactory' in provider;\n }\n\n export function isProviderIdentifier<T = any>(value: any): value is ProviderIdentifier<T> {\n return typeof value === 'string' || typeof value === 'symbol' || isClassOrFunction(value);\n }\n\n export function toProviderIdentifier<T = any>(provider: ProviderToken<T>): ProviderIdentifier<T> {\n return isProviderIdentifier(provider) ? provider : provider.provide;\n }\n\n export function toProviderIdentifiers(providers: ProviderToken[]): ProviderIdentifier<unknown>[] {\n return providers.map((provider) => toProviderIdentifier(provider));\n }\n\n export function providerIdentifierToString(providerIdentifier: ProviderIdentifier): string {\n if (typeof providerIdentifier === 'symbol' || typeof providerIdentifier === 'string') {\n return providerIdentifier.toString();\n }\n\n return providerIdentifier.name;\n }\n\n export function providerTokenToString(providerToken: ProviderToken): string {\n const providerIdentifier = toProviderIdentifier(providerToken);\n\n return providerIdentifierToString(providerIdentifier);\n }\n\n export function providerTokensAreEqual(p0: ProviderToken, p1: ProviderToken): boolean {\n if (p0 === p1) return true;\n\n const id0 = toProviderIdentifier(p0);\n const id1 = toProviderIdentifier(p1);\n\n if (id0 !== id1) return false;\n\n if (isClassToken(p0) && isClassToken(p1)) {\n return p0.useClass === p1.useClass;\n }\n\n if (isValueToken(p0) && isValueToken(p1)) {\n return p0.useValue === p1.useValue;\n }\n\n if (isFactoryToken(p0) && isFactoryToken(p1)) {\n if (p0.useFactory !== p1.useFactory) return false;\n\n // const inject0 = p0.inject ?? [];\n // const inject1 = p1.inject ?? [];\n\n // if (inject0.length !== inject1.length) return false;\n\n // for (let i = 0; i < inject0.length; i++) {\n // if (inject0[i] !== inject1[i]) return false;\n // }\n\n return true;\n }\n\n // At this point, identifiers are equal but tokens are not class/value/factory tokens,\n // so consider them equal based on identifier alone.\n return true;\n }\n\n /**\n * The priority order is as follows:\n * 1. From the `ProviderToken.scope`\n * 2. From the class `@Injectable(scope)` decorator\n * 3. From the `ProviderModule` default scope.\n *\n * @param provider The {@link ProviderToken}.\n * @param moduleDefaultScope The module default scope.\n */\n export function getInjectionScopeByPriority(\n provider: ProviderToken,\n moduleDefaultScope: InjectionScope\n ): InjectionScope {\n return tryGetScopeFromProvider(provider) ?? tryGetDecoratorScopeFromClass(provider) ?? moduleDefaultScope;\n }\n\n export function tryGetProviderOptions<T>(\n provider: ProviderToken<T>\n ): (ProviderOptions<T> & ProviderScopeOption) | undefined {\n if (!hasProvideProperty(provider)) return;\n\n return provider as any;\n }\n\n export function tryGetScopeFromProvider(provider: ProviderToken): InjectionScope | undefined {\n const providerOptions = tryGetProviderOptions(provider);\n if (!providerOptions) return;\n\n return providerOptions.scope;\n }\n\n export function tryGetDecoratorScopeFromClass<T = any>(provider: ProviderToken<T>): InjectionScope | undefined {\n const providerClass = toProviderIdentifier(provider);\n if (!isClass(providerClass)) return;\n\n const inversifyScope = getClassMetadata(providerClass as any)?.scope;\n if (!inversifyScope) return;\n\n return bindingScopeToInjectionScope(inversifyScope);\n }\n\n function hasProvideProperty(provider: any): provider is object {\n return isPlainObject(provider) && typeof provider === 'object' && 'provide' in provider;\n }\n}\n","export function isClass(v: any): boolean {\n if (typeof v !== 'function') return false;\n\n return Function.prototype.toString.call(v).startsWith('class ');\n}\n","import type { Class } from 'type-fest';\n\nexport function isClassOrFunction(value: any): value is Function | Class<any> {\n return typeof value === 'function';\n}\n","/*\n * is-plain-object <https://github.com/jonschlinkert/is-plain-object>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */\n\nfunction isObject(o: any): boolean {\n return Object.prototype.toString.call(o) === '[object Object]';\n}\n\nexport function isPlainObject(o: any): o is object {\n if (isObject(o) === false) return false;\n\n // If has modified constructor\n const ctor = o.constructor;\n if (ctor === undefined) return true;\n\n // If has modified prototype\n const prot = ctor.prototype;\n if (isObject(prot) === false) return false;\n\n // If constructor does not have an Object-specific method\n if (prot.hasOwnProperty('isPrototypeOf') === false) {\n return false;\n }\n\n // Most likely a plain Object\n return true;\n}\n","/** Exception which indicates that there is a generic error. */\nexport class InjectionError extends Error {\n override name = InjectionError.name;\n}\n","import type { IProviderModule } from '../core';\n\n/** Exception which indicates that there is a generic error with an instance of {@link IProviderModule}. */\nexport class InjectionProviderModuleError extends Error {\n override name = InjectionProviderModuleError.name;\n\n constructor(module: IProviderModule, message: string) {\n let moduleId = 'Unknown';\n\n try {\n moduleId = module.toString();\n } catch {}\n\n super(`{ProviderModule.${moduleId}} => ${message}`);\n }\n}\n","import type { IProviderModule } from '../core';\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that an `unknown` type of {@link ProviderToken} has been supplied. */\nexport class InjectionProviderModuleUnknownProviderError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleUnknownProviderError.name;\n\n constructor(module: IProviderModule, providerToken: ProviderToken) {\n super(module, `The [${ProviderTokenHelpers.providerTokenToString(providerToken)}] provider is of an unknown type!`);\n }\n}\n","import type { IProviderModule } from '../core';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates an invokation of a disposed module. */\nexport class InjectionProviderModuleDisposedError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleDisposedError.name;\n\n constructor(module: IProviderModule) {\n super(module, 'Has been disposed!');\n }\n}\n","import type { IProviderModule } from '../core';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that a module has been initialized without an `identifier`. */\nexport class InjectionProviderModuleMissingIdentifierError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleMissingIdentifierError.name;\n\n constructor(module: IProviderModule) {\n super(module, 'An `identifier` must be supplied!');\n }\n}\n","import type { IProviderModule } from '../core';\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that a module container does not contain the requested provider. */\nexport class InjectionProviderModuleMissingProviderError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleMissingProviderError.name;\n\n constructor(module: IProviderModule, providerToken: ProviderToken) {\n super(\n module,\n `The [${ProviderTokenHelpers.providerTokenToString(providerToken)}] provider is not bound to this (or any imported) module container, and was not found either in the 'AppModule'!`\n );\n }\n}\n","import { Container, type BindInWhenOnFluentSyntax, type BindWhenOnFluentSyntax } from 'inversify';\n\nimport { InjectionScope, MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError } from '../../errors';\nimport { injectionScopeToBindingScope, isPlainObject, ProviderTokenHelpers } from '../../helpers';\nimport type {\n DependencyProvider,\n ProviderClassToken,\n ProviderFactoryToken,\n ProviderOptions,\n ProviderToken,\n ProviderValueToken,\n} from '../../types';\nimport { AppModuleInversifyContainer } from '../app-module/container';\nimport type {\n ProviderModuleGetManyParam,\n ProviderModuleGetManyReturn,\n ProviderModuleGetReturn,\n} from '../provider-module';\nimport { ProviderModule } from '../provider-module/provider-module';\n\nexport class ModuleContainer {\n readonly container: Container;\n private readonly providerModule: ProviderModule;\n\n constructor(providerModule: ProviderModule, inversifyParentContainer?: Container) {\n this.providerModule = providerModule;\n\n const { defaultScope = InjectionScope.Singleton } = providerModule.options;\n\n this.container =\n providerModule.id === 'AppModule'\n ? AppModuleInversifyContainer\n : new Container({\n parent: inversifyParentContainer ?? this.providerModule.appModuleRef.moduleContainer.container,\n defaultScope: injectionScopeToBindingScope(defaultScope),\n });\n\n this.providerModule.options.providers?.forEach((x) => this.bindToContainer(x));\n }\n\n get<T, IsOptional extends boolean | undefined = undefined, AsList extends boolean | undefined = undefined>(\n provider: ProviderToken<T>,\n isOptional?: IsOptional,\n asList?: AsList\n ): ProviderModuleGetReturn<T, IsOptional, AsList> {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<any>(\n MiddlewareType.BeforeGet,\n this.getProvider(provider, asList),\n provider,\n this.getProvider.bind(this)\n );\n if (middlewareResult || middlewareResult === null) return middlewareResult;\n\n if (isOptional) return undefined as any;\n\n throw new InjectionProviderModuleMissingProviderError(this.providerModule, provider);\n }\n\n getMany<D extends (ProviderModuleGetManyParam<any> | ProviderToken)[]>(\n ...deps: D | unknown[]\n ): ProviderModuleGetManyReturn<D> {\n return (deps as D).map((dep) => {\n const withOptions = isPlainObject(dep) && 'provider' in dep;\n\n return this.get(\n withOptions ? dep.provider : dep,\n withOptions ? dep.isOptional : false,\n withOptions ? dep.asList : false\n );\n }) as any;\n }\n\n bindToContainer<T>(provider: DependencyProvider<T>): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n const binders: Array<{\n providerTypeMatches: (p: any) => boolean;\n bind: () => BindInWhenOnFluentSyntax<any> | BindWhenOnFluentSyntax<any>;\n }> = [\n {\n providerTypeMatches: ProviderTokenHelpers.isProviderIdentifier,\n bind: () => this.container.bind(providerIdentifier).toSelf(),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isClassToken,\n bind: () => this.container.bind(providerIdentifier).to((provider as ProviderClassToken<T>).useClass),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isValueToken,\n bind: () =>\n this.container.bind(providerIdentifier).toConstantValue((provider as ProviderValueToken<T>).useValue),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isFactoryToken,\n bind: () =>\n this.container.bind(providerIdentifier).toResolvedValue(() => {\n const p = provider as ProviderFactoryToken<T>;\n\n const dependencies = this.providerModule.getMany(...(p.inject ?? []));\n\n return p.useFactory(...dependencies);\n }),\n },\n ];\n\n const { bind } = binders.find(({ providerTypeMatches }) => providerTypeMatches(provider)) ?? {};\n if (!bind) {\n throw new InjectionProviderModuleUnknownProviderError(this.providerModule, provider);\n }\n\n const isProviderIdentifier = ProviderTokenHelpers.isProviderIdentifier(provider);\n\n // Create initial inversify binding fluent syntax object\n let binding = bind();\n\n // A `ValueToken` is always a constant, so there's no point in binding a specific scope.\n // And if the provider is a simple `ProviderIdentifier` then it means that it'll use the container default scope.\n if (!ProviderTokenHelpers.isValueToken(provider) && !isProviderIdentifier) {\n binding = this.setBindingScope(provider, binding as BindInWhenOnFluentSyntax<any>);\n }\n\n // If it is a simple `ProviderIdentifier` there's nothing more we can do\n // as it is not an object which contains the `ProviderOptions` properties.\n if (isProviderIdentifier) return;\n\n const opts = provider as ProviderOptions<unknown>;\n\n if (opts.when) {\n binding.when(opts.when) as any;\n }\n }\n\n setBindingScope<T>(provider: ProviderToken<T>, binding: BindInWhenOnFluentSyntax<T>): BindWhenOnFluentSyntax<T> {\n const injectionScope = ProviderTokenHelpers.getInjectionScopeByPriority(\n provider,\n this.providerModule.options.defaultScope ?? InjectionScope.Singleton\n );\n\n switch (injectionScope) {\n case InjectionScope.Singleton:\n return binding.inSingletonScope();\n case InjectionScope.Transient:\n return binding.inTransientScope();\n case InjectionScope.Request:\n return binding.inRequestScope();\n }\n }\n\n dispose(): void {\n //@ts-expect-error Read-only property.\n this.providerModule = null;\n //@ts-expect-error Read-only property.\n this.container = null;\n }\n\n private getProvider<T>(provider: ProviderToken<T>, asList?: boolean): T | T[] | void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n if (asList) {\n return this.container.getAll(providerIdentifier, { optional: true });\n }\n\n return this.container.get(providerIdentifier, { optional: true });\n }\n}\n","import { Container } from 'inversify';\n\nexport const AppModuleInversifyContainer = new Container({ defaultScope: 'Singleton' });\n","import { ContainerModule, type ContainerModuleLoadOptions } from 'inversify';\n\nimport { DefinitionEventType, MiddlewareType } from '../../enums';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type { ExportsDefinitionOptimized, ModuleDefinition, ProviderToken } from '../../types';\nimport { ProviderModule } from '../provider-module/provider-module';\n\nexport class ImportedModuleContainer {\n get moduleDef(): ModuleDefinition<true> {\n return this.providerModule.dynamicModuleDef.moduleDef;\n }\n\n /** The {@link ProviderModule} which imported {@link providerModule | this} module. */\n private readonly importedIntoModule: ProviderModule;\n private readonly providerModule: ProviderModule;\n private readonly proxyContainer: ContainerModule;\n private proxyContainerOptions!: ContainerModuleLoadOptions;\n\n constructor(importedIntoModule: ProviderModule, providerModule: ProviderModule) {\n this.importedIntoModule = importedIntoModule;\n this.providerModule = providerModule;\n\n this.proxyContainer = this.buildProxyContainer();\n }\n\n dispose(): void {\n this.importedIntoModule.moduleContainer.container.unloadSync(this.proxyContainer);\n\n //@ts-expect-error Read-only property.\n this.importedIntoModule = null;\n //@ts-expect-error Read-only property.\n this.providerModule = null;\n //@ts-expect-error Read-only property.\n this.proxyContainer = null;\n //@ts-expect-error Read-only property.\n this.proxyContainerOptions = null;\n }\n\n private buildProxyContainer(): ContainerModule {\n const proxyContainer = new ContainerModule((options) => {\n this.proxyContainerOptions = options;\n\n this.traverseExportGraph((providerToken, foundInModule) => {\n this.proxyProviderIdentifier(providerToken, foundInModule);\n }, this.moduleDef.exports);\n\n // Subscribe to export changes only on this imported module.\n this.providerModule.dynamicModuleDef.event$.subscribe(({ type, change }) => {\n if (type !== DefinitionEventType.Export && type !== DefinitionEventType.ExportRemoved) return;\n\n const changeIsProvider = !ProviderModuleHelpers.isModule(change);\n\n if (changeIsProvider) {\n if (type === DefinitionEventType.Export) {\n this.proxyProviderIdentifier(change, this.providerModule);\n } else if (type === DefinitionEventType.ExportRemoved) {\n this.unproxyProviderIdentifier(change);\n }\n\n return;\n }\n\n // change is a module added or removed from exports\n const changedModule = change as ProviderModule;\n\n if (type === DefinitionEventType.Export) {\n // New exported module added: bind its providers recursively\n this.traverseExportGraph((providerToken, foundInModule) => {\n this.proxyProviderIdentifier(providerToken, foundInModule);\n }, changedModule.dynamicModuleDef.moduleDef.exports);\n } else {\n // Exported module removed: unbind its providers recursively\n this.traverseExportGraph((providerToken) => {\n this.unproxyProviderIdentifier(providerToken);\n }, changedModule.dynamicModuleDef.moduleDef.exports);\n }\n });\n });\n\n this.importedIntoModule.moduleContainer.container.loadSync(proxyContainer);\n\n return proxyContainer;\n }\n\n private proxyProviderIdentifier(providerToken: ProviderToken, fromModule: ProviderModule): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(providerToken);\n\n if (this.proxyContainerOptions.isBound(providerIdentifier)) return;\n\n const bind = this.proxyContainerOptions.bind(providerIdentifier).toDynamicValue(() => {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.OnExportAccess,\n this.importedIntoModule,\n providerIdentifier\n );\n\n if (middlewareResult === false) {\n this.proxyContainerOptions.unbind(providerIdentifier);\n return undefined;\n }\n\n return fromModule.moduleContainer.container.get(providerIdentifier);\n });\n\n this.providerModule.moduleContainer.setBindingScope(providerToken, bind);\n }\n\n private unproxyProviderIdentifier(providerToken: ProviderToken): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(providerToken);\n\n /* istanbul ignore next */\n if (!this.proxyContainerOptions.isBound(providerIdentifier)) return;\n\n this.proxyContainerOptions.unbind(providerIdentifier);\n }\n\n private traverseExportGraph(\n cb: (providerToken: ProviderToken, foundInModule: ProviderModule) => void,\n currentExportsNode: ExportsDefinitionOptimized\n ): void {\n // As the `exports` array can be a mix of `Providers` and `Modules`\n // we want to tap into the `exports` of an imported module as the last resort\n // as that could mean recursively going into the `exports` of the imported module and so on.\n //\n // Therefore we first iterate over the entire array and cache any module we find\n // into the `discoveredExportedModules` temporary array, then skip over the iteration,\n // this allows us to make sure that we always 1st try to get the provider from the current `export`\n // and only as a last resort to tap into the `exports` of the imported modules by iterating over the `discoveredExportedModules` temp array.\n\n const discoveredExportedModules: ProviderModule[] = [];\n\n for (const exportedModuleOrProvider of currentExportsNode) {\n const isModule = exportedModuleOrProvider instanceof ProviderModule;\n if (isModule) {\n discoveredExportedModules.push(exportedModuleOrProvider);\n\n // Will get to it later in the eventuality we'll not find the\n // provider into the current `exports` of the imported module.\n continue;\n } else {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.OnExportAccess,\n this.importedIntoModule,\n exportedModuleOrProvider\n );\n\n if (middlewareResult === false) continue;\n\n // Found it into the `exports` of this imported module.\n cb(exportedModuleOrProvider as any, this.providerModule);\n }\n }\n\n // If we got here it means that the `provider` has not been found in the\n // `exports` of the current imported module, therefore we must recursively drill into\n // the exported modules of the imported module.\n for (const exportedModule of discoveredExportedModules) {\n this.traverseExportGraph(cb, exportedModule.dynamicModuleDef.moduleDef.exports);\n }\n }\n}\n","export class Signal<T> {\n private value: T;\n\n private readonly subscribers = new Set<SignalCallback<T>>();\n\n constructor(initialValue: T) {\n this.value = initialValue;\n }\n\n /** Can be used to `emit` a _new_ value and notify the _subscribers_. */\n emit(newValue: T): void {\n this.value = newValue;\n\n this.subscribers.forEach((cb) => cb(this.value));\n }\n\n /** Can be used to retrieve the _current_ value of the {@link Signal} imperatively. */\n get(): T {\n return this.value;\n }\n\n /**\n * Can be used to `subscribe` to the emitted values of this {@link Signal}.\n *\n * @param callback The `callback` which will be invoked when a _new_ value is emitted.\n * @param invokeImmediately When set to `true` it'll invoke the provided {@link callback} immediately with the latest value available. _(defaults to `false`)_\n */\n subscribe(callback: SignalCallback<T>, invokeImmediately?: boolean): () => void {\n this.subscribers.add(callback);\n\n if (invokeImmediately) callback(this.value);\n\n return () => this.subscribers.delete(callback);\n }\n\n /** Disposes of the internal references. */\n dispose(): void {\n //@ts-expect-error Read-only property.\n this.subscribers = null;\n this.value = null as any;\n }\n}\n\ntype SignalCallback<T> = (value: T) => void | Promise<void>;\n","import { DefinitionEventType, MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleDisposedError, InjectionProviderModuleError } from '../../errors';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type {\n AsyncMethod,\n DependencyProvider,\n ExportDefinition,\n ModuleDefinition,\n ModuleOrBlueprint,\n} from '../../types';\nimport { Signal } from '../../utils';\nimport { ImportedModuleContainer, type ModuleContainer } from '../container';\nimport type { IProviderModule, ProviderModuleOptions } from '../provider-module';\nimport type { ProviderModule } from '../provider-module/provider-module';\nimport type { DefinitionEvent, IDynamicModuleDefinition } from './interfaces';\n\nexport class DynamicModuleDefinition implements IDynamicModuleDefinition {\n get moduleContainer(): ModuleContainer {\n return this.providerModule.moduleContainer;\n }\n\n get subscribe(): IDynamicModuleDefinition['subscribe'] {\n /* istanbul ignore next */\n if (this.event$ === null) {\n throw new InjectionProviderModuleDisposedError(this.providerModule);\n }\n\n return this.event$.subscribe.bind(this.event$);\n }\n\n readonly moduleDef: ModuleDefinition<true>;\n readonly event$ = new Signal<DefinitionEvent>({\n type: DefinitionEventType.Noop,\n change: null,\n });\n\n private readonly providerModule: ProviderModule;\n private emittingModules = new Set<ProviderModule>();\n\n // Track subscriptions to imported modules' events for bubbling\n private importedModuleSubscriptions = new Map<ProviderModule, () => void>();\n\n constructor(providerModule: ProviderModule) {\n this.providerModule = providerModule;\n this.moduleDef = {\n imports: new Set(),\n providers: new Set(),\n exports: new Set(),\n };\n\n this.buildInitialDefinition(providerModule.options);\n }\n\n addImport(moduleOrBlueprint: ModuleOrBlueprint, addToExports = false): void {\n let providerModule = ProviderModuleHelpers.tryBlueprintToModule(moduleOrBlueprint) as ProviderModule;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<ProviderModule | false>(\n MiddlewareType.BeforeAddImport,\n providerModule\n );\n\n if (middlewareResult === false) return;\n providerModule = middlewareResult;\n\n this.moduleDef.imports.add(providerModule);\n\n this.createImportedModuleContainer(providerModule);\n\n // Subscribe to imported module's export events to bubble them\n this.subscribeToImportedModuleEvents(providerModule);\n\n this.emitEventSafely({\n type: DefinitionEventType.Export,\n change: providerModule,\n });\n\n this.emitEventSafely({\n type: DefinitionEventType.Import,\n change: providerModule,\n });\n\n if (!addToExports) return;\n\n this.moduleDef.exports.add(providerModule);\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportModule,\n change: providerModule,\n });\n }\n\n async addImportLazy(lazyCb: AsyncMethod<ProviderModule>, addToExports?: boolean): Promise<void> {\n const providerModule = await lazyCb();\n\n this.addImport(providerModule, addToExports);\n }\n\n addProvider<T>(provider: DependencyProvider<T>, addToExports = false): void {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<DependencyProvider<T> | false>(\n MiddlewareType.BeforeAddProvider,\n provider\n );\n\n if (middlewareResult === false) return;\n provider = middlewareResult;\n\n this.moduleDef.providers.add(provider);\n\n this.moduleContainer.bindToContainer(provider);\n\n this.emitEventSafely({\n type: DefinitionEventType.Provider,\n change: provider,\n });\n\n if (!addToExports) return;\n\n this.moduleDef.exports.add(provider);\n\n this.emitEventSafely({\n type: DefinitionEventType.Export,\n change: provider,\n });\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportProvider,\n change: provider,\n });\n }\n\n async addProviderLazy<T>(lazyCb: AsyncMethod<DependencyProvider<T>>, addToExports?: boolean): Promise<void> {\n const provider = await lazyCb();\n\n this.addProvider(provider, addToExports);\n }\n\n removeImport(module: IProviderModule): boolean {\n /* istanbul ignore next */\n if (!this.moduleDef.imports.has(module)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveImport,\n module\n );\n\n if (middlewareResult === false) return false;\n\n this.unsubscribeFromImportedModuleEvents(module as ProviderModule);\n\n const importedModuleContainer = this.providerModule.importedModuleContainers.get(module)!;\n importedModuleContainer.dispose();\n this.providerModule.importedModuleContainers.delete(module);\n this.moduleDef.imports.delete(module);\n\n this.emitEventSafely({\n type: DefinitionEventType.ImportRemoved,\n change: module,\n });\n\n this.removeFromExports(module);\n\n return true;\n }\n\n removeProvider<T>(provider: DependencyProvider<T>): boolean {\n if (!this.moduleDef.providers.has(provider)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveProvider,\n provider\n );\n\n if (middlewareResult === false) return false;\n\n this.moduleDef.providers.delete(provider);\n this.moduleContainer.container.unbindSync(ProviderTokenHelpers.toProviderIdentifier(provider));\n\n this.emitEventSafely({\n type: DefinitionEventType.ProviderRemoved,\n change: provider,\n });\n\n this.removeFromExports(provider);\n\n return true;\n }\n\n removeFromExports(exportDefinition: ExportDefinition): boolean {\n if (!this.moduleDef.exports.has(exportDefinition)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveExport,\n exportDefinition\n );\n\n if (middlewareResult === false) return false;\n\n this.moduleDef.exports.delete(exportDefinition);\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportRemoved,\n change: exportDefinition,\n });\n\n if (ProviderModuleHelpers.isModule(exportDefinition)) {\n this.emitEventSafely({\n type: DefinitionEventType.ExportModuleRemoved,\n change: exportDefinition,\n });\n } else {\n this.emitEventSafely({\n type: DefinitionEventType.ExportProviderRemoved,\n change: exportDefinition,\n });\n }\n\n return true;\n }\n\n emitEventSafely(event: DefinitionEvent): void {\n if (this.emittingModules.has(this.providerModule)) {\n // Already emitting for this module, skip to prevent cycle\n return;\n }\n\n try {\n this.emittingModules.add(this.providerModule);\n this.event$.emit(event);\n } finally {\n this.emittingModules.delete(this.providerModule);\n }\n }\n\n dispose(): void {\n //@ts-expect-error Null not assignable.\n this.importedModuleSubscriptions = null;\n //@ts-expect-error Null not assignable.\n this.emittingModules = null;\n\n this.event$.dispose();\n //@ts-expect-error Read-only property.\n this.event$ = null;\n //@ts-expect-error Read-only property.\n this.moduleDef = null;\n }\n\n private buildInitialDefinition({ imports = [], providers = [], exports = [] }: ProviderModuleOptions): void {\n //@ts-expect-error Read-only property.\n this.moduleDef.providers = new Set(providers);\n\n exports.forEach((x) => {\n // We do not want to add `modules` or `blueprint` at this stage in the `exports` definition,\n // as if it is a `blueprint` we must first \"convert\" it to a `module`.\n // (which will happen down here in the `imports.forEach` loop)\n\n if (ProviderModuleHelpers.isModuleOrBlueprint(x)) return;\n\n this.moduleDef.exports.add(x);\n });\n\n imports.forEach((imp) => {\n const isModule = ProviderModuleHelpers.isModule(imp);\n const isGlobal = isModule ? (imp as ProviderModule).options.isGlobal : imp.isGlobal;\n\n // Importing global modules is pointless as\n // each module has access to the `AppModule`.\n if (isGlobal) return;\n\n const importedModule = ProviderModuleHelpers.tryBlueprintToModule(imp) as ProviderModule;\n const isPartOfTheExportsList = exports.some(\n (x) => ProviderModuleHelpers.isModuleOrBlueprint(x) && x.id === importedModule.id\n );\n\n this.addImport(importedModule, isPartOfTheExportsList);\n });\n }\n\n private createImportedModuleContainer(importedModule: ProviderModule): void {\n if (importedModule.isAppModule) {\n throw new InjectionProviderModuleError(this.providerModule, `The 'AppModule' can't be imported!`);\n }\n\n this.providerModule.importedModuleContainers.set(\n importedModule,\n new ImportedModuleContainer(this.providerModule, importedModule)\n );\n }\n\n private subscribeToImportedModuleEvents(importedModule: ProviderModule): void {\n if (this.importedModuleSubscriptions.has(importedModule)) return;\n\n const subscription = importedModule.dynamicModuleDef.event$.subscribe(({ type, change }) => {\n // Bubble only export-related events up to this module's event$\n switch (type) {\n case DefinitionEventType.Export:\n case DefinitionEventType.ExportRemoved:\n case DefinitionEventType.ExportModule:\n case DefinitionEventType.ExportModuleRemoved:\n case DefinitionEventType.ExportProvider:\n case DefinitionEventType.ExportProviderRemoved:\n this.emitEventSafely({ type, change });\n break;\n }\n });\n\n this.importedModuleSubscriptions.set(importedModule, subscription);\n }\n\n private unsubscribeFromImportedModuleEvents(importedModule: ProviderModule): void {\n const unsubscribe = this.importedModuleSubscriptions.get(importedModule);\n /* istanbul ignore next */\n if (!unsubscribe) return;\n\n unsubscribe();\n this.importedModuleSubscriptions.delete(importedModule);\n }\n}\n","import { MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleDisposedError } from '../../errors';\nimport type { ProviderModule } from '../provider-module';\nimport type { AddMiddlewareCallbackType, IMiddlewaresManager } from './middlewares-manager.interfaces';\n\nexport class MiddlewaresManager implements IMiddlewaresManager {\n private middlewaresMap: Map<MiddlewareType, Function[]> = new Map();\n private readonly providerModule: ProviderModule;\n\n constructor(providerModule: ProviderModule) {\n this.providerModule = providerModule;\n }\n\n add<T extends MiddlewareType>(type: MiddlewareType, cb: AddMiddlewareCallbackType<T>): void {\n const currentMiddlewares = this.middlewaresMap.get(type);\n\n if (currentMiddlewares) {\n currentMiddlewares.push(cb);\n\n return;\n }\n\n // First middleware\n this.middlewaresMap.set(type, [cb]);\n }\n\n applyMiddlewares<T>(type: MiddlewareType, ...args: any[]): T {\n if (this.middlewaresMap === null) throw new InjectionProviderModuleDisposedError(this.providerModule);\n\n const middlewares = this.middlewaresMap.get(type);\n\n switch (type) {\n case MiddlewareType.BeforeAddImport:\n case MiddlewareType.BeforeAddProvider:\n if (!middlewares) return args[0];\n\n let chainedArg = args[0];\n\n for (const middleware of middlewares) {\n const result = middleware(chainedArg);\n\n if (result === false) return false as T;\n if (result === true) continue;\n\n chainedArg = result;\n }\n\n return chainedArg;\n\n case MiddlewareType.BeforeGet:\n return !middlewares\n ? args[0]\n : middlewares.reduce((arg, middleware) => middleware(arg, args[1], args[2]), args[0]);\n\n case MiddlewareType.BeforeRemoveImport:\n case MiddlewareType.BeforeRemoveProvider:\n case MiddlewareType.BeforeRemoveExport:\n case MiddlewareType.OnExportAccess:\n return (!middlewares || !middlewares.some((middleware) => !middleware(args[0], args[1]))) as T;\n }\n }\n\n clear(): void {\n this.middlewaresMap.clear();\n }\n\n dispose(): void {\n //@ts-expect-error `null` not being assignable to Map.\n this.middlewaresMap = null;\n }\n}\n","import { deepClone } from '../../helpers';\nimport { ProviderModule, type ProviderModuleOptions } from '../provider-module';\nimport type { ModuleBlueprintOptions } from './interfaces';\n\nexport class ProviderModuleBlueprint {\n id!: ProviderModuleOptions['id'];\n imports?: ProviderModuleOptions['imports'];\n providers?: ProviderModuleOptions['providers'];\n exports?: ProviderModuleOptions['exports'];\n defaultScope?: ProviderModuleOptions['defaultScope'];\n isGlobal?: ProviderModuleOptions['isGlobal'];\n onReady?: ProviderModuleOptions['onReady'];\n onReset?: ProviderModuleOptions['onReset'];\n onDispose?: ProviderModuleOptions['onDispose'];\n\n private readonly blueprintOptions: ModuleBlueprintOptions;\n\n constructor(options: ProviderModuleOptions, blueprintOptions?: ModuleBlueprintOptions) {\n this.updateDefinition(options);\n\n this.blueprintOptions = {\n autoImportIntoAppModuleWhenGlobal: blueprintOptions?.autoImportIntoAppModuleWhenGlobal ?? true,\n };\n\n this.convertToModuleAndInjectIntoAppModuleIfGlobal();\n }\n\n /** Can be used to update the {@link ProviderModuleBlueprint | Blueprint} definition. */\n updateDefinition(options: ProviderModuleOptions): this {\n this.id = options.id;\n this.imports = options.imports;\n this.providers = options.providers;\n this.exports = options.exports;\n this.defaultScope = options.defaultScope;\n this.isGlobal = options.isGlobal;\n this.onReady = options.onReady;\n this.onReset = options.onReset;\n this.onDispose = options.onDispose;\n\n return this;\n }\n\n /** Returns the {@link ProviderModuleOptions} of this {@link ProviderModuleBlueprint | Blueprint}. */\n getDefinition(): ProviderModuleOptions {\n return {\n id: this.id,\n imports: this.imports,\n providers: this.providers,\n exports: this.exports,\n defaultScope: this.defaultScope,\n isGlobal: this.isGlobal,\n onReady: this.onReady,\n onReset: this.onReset,\n onDispose: this.onDispose,\n };\n }\n\n /**\n * Can be used to instantiate a _new_ `blueprint` with the same exact options as _this_ one.\n *\n * **Note:** _Everything is deep cloned, you can safely overwrite all the properties of the cloned instance._\n */\n clone(): ProviderModuleBlueprint {\n return new ProviderModuleBlueprint(deepClone(this.getDefinition()), { ...this.blueprintOptions });\n }\n\n private convertToModuleAndInjectIntoAppModuleIfGlobal(): void {\n if (!this.isGlobal || !this.blueprintOptions?.autoImportIntoAppModuleWhenGlobal) return;\n\n ProviderModule.APP_MODULE_REF.update.addImport(this);\n }\n}\n","import { DefinitionEventType } from '../../enums';\nimport {\n InjectionError,\n InjectionProviderModuleDisposedError,\n InjectionProviderModuleMissingIdentifierError,\n} from '../../errors';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type { ModuleDefinition, ModuleIdentifier, ProviderIdentifier, ProviderToken } from '../../types';\nimport { ModuleContainer } from '../container';\nimport { ImportedModuleContainer } from '../container/imported-module-container';\nimport { DynamicModuleDefinition, type IDynamicModuleDefinition } from '../dynamic-module-definition';\nimport { MiddlewaresManager, type IMiddlewaresManager } from '../middlewares-manager';\nimport { ProviderModuleBlueprint, type ModuleBlueprintOptions } from '../provider-module-blueprint';\nimport type {\n IProviderModule,\n OnCleanupOptions,\n ProviderModuleGetManyParam,\n ProviderModuleGetManyReturn,\n ProviderModuleGetReturn,\n ProviderModuleOptions,\n ProviderModuleOptionsInternal,\n} from './types';\n\nexport class ProviderModule implements IProviderModule {\n get id(): ModuleIdentifier {\n return this.options.id;\n }\n\n get definition(): ModuleDefinition<true> {\n this.throwIfDisposed();\n\n return this.dynamicModuleDef.moduleDef;\n }\n\n get update(): IDynamicModuleDefinition {\n this.throwIfDisposed();\n\n return this.dynamicModuleDef;\n }\n\n get middlewares(): IMiddlewaresManager {\n this.throwIfDisposed();\n\n return this.middlewaresManager;\n }\n\n get isDisposed(): boolean {\n return this.disposed;\n }\n\n get isAppModule(): boolean {\n return this.id === 'AppModule';\n }\n\n /**\n * Holds a reference to the `AppModule`.\n *\n * Static property needed in order to avoid introducing a _cirular dependency_ between\n * the `AppModule` instance and the `ProviderModule` class.\n */\n static readonly APP_MODULE_REF: IProviderModule;\n\n readonly appModuleRef: ProviderModule;\n readonly options: ProviderModuleOptions;\n readonly middlewaresManager: MiddlewaresManager;\n readonly dynamicModuleDef: DynamicModuleDefinition;\n readonly moduleContainer: ModuleContainer;\n readonly importedModuleContainers: Map<IProviderModule, ImportedModuleContainer> = new Map();\n\n private disposed = false;\n\n constructor({\n appModuleRef: appModule = ProviderModule.APP_MODULE_REF,\n inversify,\n ...publicOptions\n }: ProviderModuleOptionsInternal) {\n this.appModuleRef = appModule as ProviderModule;\n this.options = publicOptions;\n\n this.throwIfIdIsMissing();\n\n this.middlewaresManager = new MiddlewaresManager(this);\n this.moduleContainer = new ModuleContainer(this, inversify?.parentContainer);\n this.dynamicModuleDef = new DynamicModuleDefinition(this);\n\n if (!this.isAppModule && this.options.isGlobal) {\n this.appModuleRef.update.addImport(this, true);\n }\n\n this.options.onReady?.(this);\n }\n\n static create(optionsOrBlueprint: ProviderModuleOptions | ProviderModuleBlueprint): IProviderModule {\n const options = ProviderModuleHelpers.isBlueprint(optionsOrBlueprint)\n ? optionsOrBlueprint.getDefinition()\n : optionsOrBlueprint;\n\n if (options.id === 'AppModule') {\n throw new InjectionError(\n `The 'AppModule' id can't be used as it is already being used by the built-in 'AppModule'`\n );\n }\n\n return new ProviderModule(options as any);\n }\n\n static blueprint(\n moduleOptions: ProviderModuleOptions,\n blueprintOptions?: ModuleBlueprintOptions\n ): ProviderModuleBlueprint {\n return new ProviderModuleBlueprint(moduleOptions, blueprintOptions);\n }\n\n isImportingModule(idOrModule: ModuleIdentifier | IProviderModule): boolean {\n this.throwIfDisposed();\n\n if (ProviderModuleHelpers.isModule(idOrModule)) {\n return this.importedModuleContainers.has(idOrModule);\n }\n\n return this.importedModuleContainers.keys().some((m) => m.id === idOrModule);\n }\n\n hasProvider<T>(provider: ProviderToken<T>): boolean {\n this.throwIfDisposed();\n\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n return this.moduleContainer.container.isBound(providerIdentifier);\n }\n\n get<T, IsOptional extends boolean | undefined = undefined, AsList extends boolean | undefined = undefined>(\n provider: ProviderToken<T>,\n isOptional?: IsOptional,\n asList?: AsList\n ): ProviderModuleGetReturn<T, IsOptional, AsList> {\n this.throwIfDisposed();\n\n const value = this.moduleContainer.get<T, IsOptional, AsList>(provider, isOptional, asList);\n\n this.dynamicModuleDef.emitEventSafely({\n type: DefinitionEventType.GetProvider,\n change: value,\n });\n\n return value;\n }\n\n getMany<D extends (ProviderModuleGetManyParam<any> | ProviderToken)[]>(\n ...deps: D | unknown[]\n ): ProviderModuleGetManyReturn<D> {\n this.throwIfDisposed();\n\n return this.moduleContainer.getMany<D>(...deps);\n }\n\n isExportingModule(idOrModule: ModuleIdentifier | IProviderModule): boolean {\n this.throwIfDisposed();\n\n if (!this.isImportingModule(idOrModule)) return false;\n\n if (ProviderModuleHelpers.isModule(idOrModule)) {\n return this.definition.exports.has(idOrModule);\n }\n\n // It means that we have to search by the `ModuleIdentifier` instead,\n // this may be slower, but most times should be negligible.\n\n return this.definition.exports.keys().some((x) => ProviderModuleHelpers.isModule(x) && x.id === idOrModule);\n }\n\n isExportingProvider(tokenOrIdentifier: ProviderToken | ProviderIdentifier): boolean {\n this.throwIfDisposed();\n\n let found = this.definition.exports.has(tokenOrIdentifier);\n\n if (!found && ProviderTokenHelpers.isProviderIdentifier(tokenOrIdentifier)) {\n // It means that we have to search by the `ProviderIdentifier` instead,\n // this may be slower, but most times should be negligible.\n\n found = this.definition.exports\n .keys()\n .some(\n (x) =>\n !ProviderModuleHelpers.isModuleOrBlueprint(x) &&\n ProviderTokenHelpers.toProviderIdentifier(x) === tokenOrIdentifier\n );\n }\n\n return found;\n }\n\n async reset(shouldInvokeCb = true): Promise<void> {\n this.throwIfDisposed();\n\n let before: OnCleanupOptions['before'];\n let after: OnCleanupOptions['after'];\n\n if (shouldInvokeCb) {\n const cbs = (this.options.onReset?.() ?? {}) as OnCleanupOptions;\n\n before = cbs.before;\n after = cbs.after;\n\n await before?.(this);\n }\n\n this.middlewaresManager.clear();\n this.moduleContainer.container.unbindAll();\n this.definition.imports.clear();\n this.definition.providers.clear();\n this.definition.exports.clear();\n this.importedModuleContainers.clear();\n\n if (shouldInvokeCb) {\n await after?.();\n }\n }\n\n async dispose(): Promise<void> {\n this.throwIfDisposed();\n\n const { before, after } = this.options.onDispose?.() ?? {};\n await before?.(this);\n\n await this.reset(false);\n\n this.middlewaresManager.dispose();\n this.dynamicModuleDef.dispose();\n /* istanbul ignore next */\n this.importedModuleContainers.forEach((x) => x.dispose());\n this.moduleContainer.dispose();\n\n //@ts-expect-error Read-only property.\n this.options = {\n // We leave only the `id` as it is needed\n // to correctly show it when the `InjectionProviderModuleDisposedError` is thrown.\n id: this.options.id,\n };\n //@ts-expect-error Read-only property.\n this.dynamicModuleDef = null;\n //@ts-expect-error Read-only property.\n this.importedModuleContainers = null;\n //@ts-expect-error Read-only property.\n this.moduleContainer = null;\n\n this.disposed = true;\n\n await after?.();\n }\n\n toString(): string {\n return this.id.toString();\n }\n\n private throwIfIdIsMissing(): void {\n if (!this.options.id || this.options.id.toString().trim().length === 0) {\n throw new InjectionProviderModuleMissingIdentifierError(this);\n }\n }\n\n private throwIfDisposed(): void {\n if (!this.isDisposed) return;\n\n throw new InjectionProviderModuleDisposedError(this);\n }\n}\n","import { ProviderModule, type IProviderModule } from '../core/provider-module';\r\nimport { ProviderModuleBlueprint } from '../core/provider-module-blueprint/provider-module-blueprint';\r\n\r\nexport namespace ProviderModuleHelpers {\r\n export function isModule(value: any): value is IProviderModule {\r\n return value instanceof ProviderModule;\r\n }\r\n\r\n export function isBlueprint(value: any): value is ProviderModuleBlueprint {\r\n return value instanceof ProviderModuleBlueprint;\r\n }\r\n\r\n export function isModuleOrBlueprint(value: any): value is IProviderModule | ProviderModuleBlueprint {\r\n return isModule(value) || isBlueprint(value);\r\n }\r\n\r\n export function tryBlueprintToModule(value: IProviderModule | ProviderModuleBlueprint): IProviderModule {\r\n if (!(value instanceof ProviderModuleBlueprint)) return value;\r\n\r\n return blueprintToModule(value);\r\n }\r\n\r\n export function blueprintToModule(moduleBlueprint: ProviderModuleBlueprint): IProviderModule {\r\n return ProviderModule.create(moduleBlueprint.getDefinition());\r\n }\r\n}\r\n","export function isFunction(v: any): boolean {\n if (typeof v !== 'function') return false;\n\n return !Function.prototype.toString.call(v).startsWith('class ');\n}\n","export function deepClone<T>(obj: T): T {\n if (obj === null || typeof obj !== 'object') return obj;\n\n if (typeof obj === 'function') {\n // Create a new function that calls the original function\n // This ensures the cloned function is a different reference\n return ((...args: any[]) => (obj as any)(...args)) as any;\n }\n\n if (Array.isArray(obj)) return obj.map((item) => deepClone(item)) as T;\n\n const clonedObj: any = {};\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n clonedObj[key] = deepClone((obj as any)[key]);\n }\n }\n\n return clonedObj;\n}\n","import { inject as _inject } from 'inversify';\n\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\n\n/** See {@link https://inversify.io/docs/api/decorator/#inject} for more details. */\nexport function Inject(provider: ProviderToken) {\n return _inject(ProviderTokenHelpers.toProviderIdentifier(provider));\n}\n","import { multiInject as _multiInject } from 'inversify';\n\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\n\n/** See {@link https://inversify.io/docs/api/decorator/#multiinject} for more details. */\nexport function MultiInject(provider: ProviderToken) {\n return _multiInject(ProviderTokenHelpers.toProviderIdentifier(provider));\n}\n","import { injectFromBase as _injectFromBase } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#injectfrombase} for more details. */\nexport function InjectFromBase(options?: Parameters<typeof _injectFromBase>[0]) {\n return _injectFromBase(options);\n}\n","import { named as _named, type MetadataName } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#named} for more details. */\nexport function Named(name: MetadataName) {\n return _named(name);\n}\n","import { optional as _optional } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#optional} for more details. */\nexport function Optional() {\n return _optional();\n}\n","import { tagged as _tagged, type MetadataTag } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#tagged} for more details. */\nexport function Tagged(key: MetadataTag, value: unknown) {\n return _tagged(key, value);\n}\n","import { unmanaged as _unmanaged } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#unmanaged} for more details. */\nexport function Unmanaged() {\n return _unmanaged();\n}\n","import type { IProviderModule } from '../provider-module';\nimport { ProviderModule } from '../provider-module/provider-module';\n\n/**\n * The `root` {@link IProviderModule} of your application.\n *\n * All global modules are imported into the {@link AppModule} and all your custom\n * modules inherit from it.\n */\nexport const AppModule = new ProviderModule({\n id: 'AppModule',\n}) as IProviderModule;\n\n//@ts-expect-error Read-only property.\n// This is done to avoid a circular dependency between\n// the `ProviderModule` class and the `AppModule` instance.\nProviderModule.APP_MODULE_REF = AppModule;\n"],"mappings":"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","names":["import_inversify","InjectionScope","MiddlewareType","DefinitionEventType","injectionScopeToBindingScope","injectionScope","InjectionScope","Singleton","Transient","Request","bindingScopeToInjectionScope","bindingScope","isClass","v","Function","prototype","toString","call","startsWith","isClassOrFunction","value","isObject","o","Object","prototype","toString","call","isPlainObject","ctor","undefined","prot","hasOwnProperty","ProviderTokenHelpers","isClassToken","provider","hasProvideProperty","isValueToken","isFactoryToken","isProviderIdentifier","value","isClassOrFunction","toProviderIdentifier","provide","toProviderIdentifiers","providers","map","providerIdentifierToString","providerIdentifier","toString","name","providerTokenToString","providerToken","providerTokensAreEqual","p0","p1","id0","id1","useClass","useValue","useFactory","getInjectionScopeByPriority","moduleDefaultScope","tryGetScopeFromProvider","tryGetDecoratorScopeFromClass","tryGetProviderOptions","providerOptions","scope","providerClass","isClass","inversifyScope","getClassMetadata","bindingScopeToInjectionScope","isPlainObject","InjectionError","Error","name","InjectionProviderModuleError","Error","name","module","message","moduleId","toString","InjectionProviderModuleUnknownProviderError","InjectionProviderModuleError","name","module","providerToken","ProviderTokenHelpers","providerTokenToString","InjectionProviderModuleDisposedError","InjectionProviderModuleError","name","module","InjectionProviderModuleMissingIdentifierError","InjectionProviderModuleError","name","module","InjectionProviderModuleMissingProviderError","InjectionProviderModuleError","name","module","providerToken","ProviderTokenHelpers","providerTokenToString","import_inversify","AppModuleInversifyContainer","Container","defaultScope","ModuleContainer","container","providerModule","inversifyParentContainer","defaultScope","InjectionScope","Singleton","options","id","AppModuleInversifyContainer","Container","parent","appModuleRef","moduleContainer","injectionScopeToBindingScope","providers","forEach","x","bindToContainer","get","provider","isOptional","asList","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","BeforeGet","getProvider","bind","undefined","InjectionProviderModuleMissingProviderError","getMany","deps","map","dep","withOptions","isPlainObject","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","binders","providerTypeMatches","isProviderIdentifier","toSelf","isClassToken","to","useClass","isValueToken","toConstantValue","useValue","isFactoryToken","toResolvedValue","p","dependencies","inject","useFactory","find","InjectionProviderModuleUnknownProviderError","binding","setBindingScope","opts","when","injectionScope","getInjectionScopeByPriority","inSingletonScope","Transient","inTransientScope","Request","inRequestScope","dispose","getAll","optional","import_inversify","ImportedModuleContainer","moduleDef","providerModule","dynamicModuleDef","importedIntoModule","proxyContainer","proxyContainerOptions","buildProxyContainer","dispose","moduleContainer","container","unloadSync","ContainerModule","options","traverseExportGraph","providerToken","foundInModule","proxyProviderIdentifier","exports","event$","subscribe","type","change","DefinitionEventType","Export","ExportRemoved","changeIsProvider","ProviderModuleHelpers","isModule","unproxyProviderIdentifier","changedModule","loadSync","fromModule","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","isBound","bind","toDynamicValue","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","OnExportAccess","unbind","undefined","get","setBindingScope","cb","currentExportsNode","discoveredExportedModules","exportedModuleOrProvider","ProviderModule","push","exportedModule","Signal","value","subscribers","Set","initialValue","emit","newValue","forEach","cb","get","subscribe","callback","invokeImmediately","add","delete","dispose","DynamicModuleDefinition","moduleContainer","providerModule","subscribe","event$","InjectionProviderModuleDisposedError","bind","moduleDef","Signal","type","DefinitionEventType","Noop","change","emittingModules","Set","importedModuleSubscriptions","Map","imports","providers","exports","buildInitialDefinition","options","addImport","moduleOrBlueprint","addToExports","ProviderModuleHelpers","tryBlueprintToModule","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","BeforeAddImport","add","createImportedModuleContainer","subscribeToImportedModuleEvents","emitEventSafely","Export","Import","ExportModule","addImportLazy","lazyCb","addProvider","provider","BeforeAddProvider","bindToContainer","Provider","ExportProvider","addProviderLazy","removeImport","module","has","BeforeRemoveImport","unsubscribeFromImportedModuleEvents","importedModuleContainer","importedModuleContainers","get","dispose","delete","ImportRemoved","removeFromExports","removeProvider","BeforeRemoveProvider","container","unbindSync","ProviderTokenHelpers","toProviderIdentifier","ProviderRemoved","exportDefinition","BeforeRemoveExport","ExportRemoved","isModule","ExportModuleRemoved","ExportProviderRemoved","event","emit","forEach","x","isModuleOrBlueprint","imp","isGlobal","importedModule","isPartOfTheExportsList","some","id","isAppModule","InjectionProviderModuleError","set","ImportedModuleContainer","subscription","dynamicModuleDef","unsubscribe","MiddlewaresManager","middlewaresMap","Map","providerModule","add","type","cb","currentMiddlewares","get","push","set","applyMiddlewares","args","InjectionProviderModuleDisposedError","middlewares","MiddlewareType","BeforeAddImport","BeforeAddProvider","chainedArg","middleware","result","BeforeGet","reduce","arg","BeforeRemoveImport","BeforeRemoveProvider","BeforeRemoveExport","OnExportAccess","some","clear","dispose","ProviderModuleBlueprint","id","imports","providers","exports","defaultScope","isGlobal","onReady","onReset","onDispose","blueprintOptions","options","updateDefinition","autoImportIntoAppModuleWhenGlobal","convertToModuleAndInjectIntoAppModuleIfGlobal","getDefinition","clone","deepClone","ProviderModule","APP_MODULE_REF","update","addImport","ProviderModule","id","options","definition","throwIfDisposed","dynamicModuleDef","moduleDef","update","middlewares","middlewaresManager","isDisposed","disposed","isAppModule","APP_MODULE_REF","appModuleRef","moduleContainer","importedModuleContainers","Map","appModule","inversify","publicOptions","throwIfIdIsMissing","MiddlewaresManager","ModuleContainer","parentContainer","DynamicModuleDefinition","isGlobal","addImport","onReady","create","optionsOrBlueprint","ProviderModuleHelpers","isBlueprint","getDefinition","InjectionError","blueprint","moduleOptions","blueprintOptions","ProviderModuleBlueprint","isImportingModule","idOrModule","isModule","has","keys","some","m","hasProvider","provider","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","container","isBound","get","isOptional","asList","value","emitEventSafely","type","DefinitionEventType","GetProvider","change","getMany","deps","isExportingModule","exports","x","isExportingProvider","tokenOrIdentifier","found","isProviderIdentifier","isModuleOrBlueprint","reset","shouldInvokeCb","before","after","cbs","onReset","clear","unbindAll","imports","providers","dispose","onDispose","forEach","toString","trim","length","InjectionProviderModuleMissingIdentifierError","InjectionProviderModuleDisposedError","ProviderModuleHelpers","isModule","value","ProviderModule","isBlueprint","ProviderModuleBlueprint","isModuleOrBlueprint","tryBlueprintToModule","blueprintToModule","moduleBlueprint","create","getDefinition","isFunction","v","Function","prototype","toString","call","startsWith","deepClone","obj","args","Array","isArray","map","item","clonedObj","key","Object","prototype","hasOwnProperty","call","Injectable","scope","undefined","_injectable","injectionScopeToBindingScope","import_inversify","Inject","provider","_inject","ProviderTokenHelpers","toProviderIdentifier","import_inversify","MultiInject","provider","_multiInject","ProviderTokenHelpers","toProviderIdentifier","import_inversify","InjectFromBase","options","_injectFromBase","import_inversify","Named","name","_named","import_inversify","Optional","_optional","import_inversify","Tagged","key","value","_tagged","import_inversify","Unmanaged","_unmanaged","AppModule","ProviderModule","id","APP_MODULE_REF"]}
package/dist/index.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["../src/decorators/injectable.ts","../src/enums/injection-scope.enum.ts","../src/enums/middleware-type.enum.ts","../src/enums/definition-event-type.enum.ts","../src/helpers/scope-converter.ts","../src/helpers/provider-token.ts","../src/helpers/is-class.ts","../src/helpers/is-class-or-function.ts","../src/helpers/is-plain-object.ts","../src/errors/base.error.ts","../src/errors/provider-module.error.ts","../src/errors/provider-module-unknown-provider.ts","../src/errors/provider-module-disposed.error.ts","../src/errors/provider-module-missing-identifier.ts","../src/errors/provider-module-missing-provider.ts","../src/core/container/module-container.ts","../src/core/app-module/container.ts","../src/core/container/imported-module-container.ts","../src/utils/signal.ts","../src/core/dynamic-module-definition/dynamic-module-definition.ts","../src/core/middlewares-manager/middlewares-manager.ts","../src/core/provider-module-blueprint/provider-module-blueprint.ts","../src/core/provider-module/provider-module.ts","../src/helpers/provider-module.ts","../src/helpers/is-function.ts","../src/helpers/deep-clone.ts","../src/decorators/inject.ts","../src/decorators/multi-inject.ts","../src/decorators/inject-from-base.ts","../src/decorators/named.ts","../src/decorators/optional.ts","../src/decorators/tagged.ts","../src/decorators/unmanaged.ts","../src/core/app-module/app.module.ts"],"sourcesContent":["import { injectable as _injectable } from 'inversify';\n\nimport { InjectionScope } from '../enums';\nimport { injectionScopeToBindingScope } from '../helpers';\n\n/** See {@link https://inversify.io/docs/api/decorator/#injectable} for more details. */\nexport function Injectable(scope?: InjectionScope) {\n if (scope === undefined) return _injectable();\n\n return _injectable(injectionScopeToBindingScope(scope));\n}\n","export enum InjectionScope {\n /** When the service is resolved, the same cached resolved value will be used. */\n Singleton,\n\n /** When the service is resolved, a new resolved value will be used each time. */\n Transient,\n\n /** When the service is resolved within the same container request, the same resolved value will be used. */\n Request,\n}\n","export enum MiddlewareType {\n /**\n * Can be used to register a `middleware` which will be invoked right before importing a `module` into _this_ module.\n *\n * The provided middleware `callback` can either return a `boolean` or a `ProviderModule` instance.\n *\n * **Note:** _Returning `true` can be used to pass through the middleware without modifying_\n * _the `ProviderModule` instance, while returning `false` will reject the request of importing that specific module._\n */\n BeforeAddImport,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before adding a provider to _this_ module.\n *\n * The provided middleware `callback` can either return a `boolean` or a `ProviderToken` object type.\n *\n * **Note:** _Returning `true` can be used to pass through the middleware without modifying_\n * _the `ProviderToken` object, while returning `false` will reject the request of adding that specific provider._\n */\n BeforeAddProvider,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before a provider is returned to the consumer from _this_ module container.\n *\n * The provided middleware `callback` can return `anything`.\n */\n BeforeGet,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing an imported module from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the imported module can be removed and `false` means to keep it._\n */\n BeforeRemoveImport,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing a provider from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the provider can be removed and `false` means to keep it._\n */\n BeforeRemoveProvider,\n\n /**\n * Can be used to register a `middleware` which will be invoked right before removing an `ExportDefinition` from _this_ module.\n *\n * **Note:** _The provided middleware `callback` must return a `boolean` where `true` means that_\n * _the `ExportDefinition` can be removed and `false` means to keep it._\n */\n BeforeRemoveExport,\n\n /**\n * Can be used to register a `middleware` which will be invoked each time\n * a _consumer_ `module` tries to access the `ExportDefinition` list of _this_ module to `get` a provider.\n *\n * **Note:** _The provided middleware `callback` will be invoked for each `ProviderToken` of the `ExportsDefinition` list_\n * _and must return a `boolean` where `true` means that the `ProviderToken` is authorized to be used by the importer module._\n */\n OnExportAccess,\n}\n","export enum DefinitionEventType {\n /** No-Operation, yet. */\n Noop,\n\n /**\n * A new `module` or `blueprint` has been added.\n *\n * **Note:** _The occurred change type is: `ModuleOrBlueprint`_\n */\n Import,\n\n /**\n * A new `provider` has been added.\n *\n * **Note:** _The occurred change type is: `DependencyProvider`_\n */\n Provider,\n\n /**\n * A `module` is retrieving from its container a `provider`.\n *\n * **Note:** _The occurred change type is: `any`_\n */\n GetProvider,\n\n /**\n * A new `module` or `provider` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ExportDefinition`_\n */\n Export,\n\n /**\n * A new `module` or `blueprint` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ModuleOrBlueprint`_\n */\n ExportModule,\n\n /**\n * A new `provider` has been added to the `exports` definition.\n *\n * **Note:** _The occurred change type is: `ProviderToken`_\n */\n ExportProvider,\n\n /**\n * A `module` has been removed.\n *\n * **Note:** _The occurred change type is: `IProviderModule`_\n */\n ImportRemoved,\n\n /**\n * A `provider` has been removed.\n *\n * **Note:** _The occurred change type is: `DependencyProvider`_\n */\n ProviderRemoved,\n\n /**\n * An `ExportDefinition` has been removed.\n *\n * **Note:** _The occurred change type is: `ExportDefinition`_\n */\n ExportRemoved,\n\n /**\n * A `module` has been removed from the `export` definition.\n *\n * **Note:** _The occurred change type is: `IProviderModule`_\n */\n ExportModuleRemoved,\n\n /**\n * A `provider` has been removed from the `export` definition.\n *\n * **Note:** _The occurred change type is: `ProviderToken`_\n */\n ExportProviderRemoved,\n}\n","import type { BindingScope } from 'inversify';\n\nimport { InjectionScope } from '../enums';\n\nexport function injectionScopeToBindingScope(injectionScope: InjectionScope): BindingScope {\n switch (injectionScope) {\n case InjectionScope.Singleton:\n return 'Singleton';\n case InjectionScope.Transient:\n return 'Transient';\n case InjectionScope.Request:\n return 'Request';\n }\n}\n\nexport function bindingScopeToInjectionScope(bindingScope: BindingScope): InjectionScope {\n switch (bindingScope) {\n case 'Singleton':\n return InjectionScope.Singleton;\n case 'Transient':\n return InjectionScope.Transient;\n case 'Request':\n return InjectionScope.Request;\n }\n}\n","import { getClassMetadata } from '@inversifyjs/core';\n\nimport { InjectionScope } from '../enums';\nimport type {\n ProviderClassToken,\n ProviderFactoryToken,\n ProviderIdentifier,\n ProviderOptions,\n ProviderScopeOption,\n ProviderToken,\n ProviderValueToken,\n} from '../types';\nimport { isClass } from './is-class';\nimport { isClassOrFunction } from './is-class-or-function';\nimport { isPlainObject } from './is-plain-object';\nimport { bindingScopeToInjectionScope } from './scope-converter';\n\nexport namespace ProviderTokenHelpers {\n export function isClassToken<T>(provider: ProviderToken<T>): provider is ProviderClassToken<T> {\n return hasProvideProperty(provider) && 'useClass' in provider;\n }\n\n export function isValueToken<T>(provider: ProviderToken<T>): provider is ProviderValueToken<T> {\n return hasProvideProperty(provider) && 'useValue' in provider;\n }\n\n export function isFactoryToken<T>(provider: ProviderToken<T>): provider is ProviderFactoryToken<T> {\n return hasProvideProperty(provider) && 'useFactory' in provider;\n }\n\n export function isProviderIdentifier<T = any>(value: any): value is ProviderIdentifier<T> {\n return typeof value === 'string' || typeof value === 'symbol' || isClassOrFunction(value);\n }\n\n export function toProviderIdentifier<T = any>(provider: ProviderToken<T>): ProviderIdentifier<T> {\n return isProviderIdentifier(provider) ? provider : provider.provide;\n }\n\n export function toProviderIdentifiers(providers: ProviderToken[]): ProviderIdentifier<unknown>[] {\n return providers.map((provider) => toProviderIdentifier(provider));\n }\n\n export function providerIdentifierToString(providerIdentifier: ProviderIdentifier): string {\n if (typeof providerIdentifier === 'symbol' || typeof providerIdentifier === 'string') {\n return providerIdentifier.toString();\n }\n\n return providerIdentifier.name;\n }\n\n export function providerTokenToString(providerToken: ProviderToken): string {\n const providerIdentifier = toProviderIdentifier(providerToken);\n\n return providerIdentifierToString(providerIdentifier);\n }\n\n export function providerTokensAreEqual(p0: ProviderToken, p1: ProviderToken): boolean {\n if (p0 === p1) return true;\n\n const id0 = toProviderIdentifier(p0);\n const id1 = toProviderIdentifier(p1);\n\n if (id0 !== id1) return false;\n\n if (isClassToken(p0) && isClassToken(p1)) {\n return p0.useClass === p1.useClass;\n }\n\n if (isValueToken(p0) && isValueToken(p1)) {\n return p0.useValue === p1.useValue;\n }\n\n if (isFactoryToken(p0) && isFactoryToken(p1)) {\n if (p0.useFactory !== p1.useFactory) return false;\n\n // const inject0 = p0.inject ?? [];\n // const inject1 = p1.inject ?? [];\n\n // if (inject0.length !== inject1.length) return false;\n\n // for (let i = 0; i < inject0.length; i++) {\n // if (inject0[i] !== inject1[i]) return false;\n // }\n\n return true;\n }\n\n // At this point, identifiers are equal but tokens are not class/value/factory tokens,\n // so consider them equal based on identifier alone.\n return true;\n }\n\n /**\n * The priority order is as follows:\n * 1. From the `ProviderToken.scope`\n * 2. From the class `@Injectable(scope)` decorator\n * 3. From the `ProviderModule` default scope.\n *\n * @param provider The {@link ProviderToken}.\n * @param moduleDefaultScope The module default scope.\n */\n export function getInjectionScopeByPriority(\n provider: ProviderToken,\n moduleDefaultScope: InjectionScope\n ): InjectionScope {\n return tryGetScopeFromProvider(provider) ?? tryGetDecoratorScopeFromClass(provider) ?? moduleDefaultScope;\n }\n\n export function tryGetProviderOptions<T>(\n provider: ProviderToken<T>\n ): (ProviderOptions<T> & ProviderScopeOption) | undefined {\n if (!hasProvideProperty(provider)) return;\n\n return provider as any;\n }\n\n export function tryGetScopeFromProvider(provider: ProviderToken): InjectionScope | undefined {\n const providerOptions = tryGetProviderOptions(provider);\n if (!providerOptions) return;\n\n return providerOptions.scope;\n }\n\n export function tryGetDecoratorScopeFromClass<T = any>(provider: ProviderToken<T>): InjectionScope | undefined {\n const providerClass = toProviderIdentifier(provider);\n if (!isClass(providerClass)) return;\n\n const inversifyScope = getClassMetadata(providerClass as any)?.scope;\n if (!inversifyScope) return;\n\n return bindingScopeToInjectionScope(inversifyScope);\n }\n\n function hasProvideProperty(provider: any): provider is object {\n return isPlainObject(provider) && typeof provider === 'object' && 'provide' in provider;\n }\n}\n","export function isClass(v: any): boolean {\n if (typeof v !== 'function') return false;\n\n return Function.prototype.toString.call(v).startsWith('class ');\n}\n","import type { Class } from 'type-fest';\n\nexport function isClassOrFunction(value: any): value is Function | Class<any> {\n return typeof value === 'function';\n}\n","/*\n * is-plain-object <https://github.com/jonschlinkert/is-plain-object>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */\n\nfunction isObject(o: any): boolean {\n return Object.prototype.toString.call(o) === '[object Object]';\n}\n\nexport function isPlainObject(o: any): o is object {\n if (isObject(o) === false) return false;\n\n // If has modified constructor\n const ctor = o.constructor;\n if (ctor === undefined) return true;\n\n // If has modified prototype\n const prot = ctor.prototype;\n if (isObject(prot) === false) return false;\n\n // If constructor does not have an Object-specific method\n if (prot.hasOwnProperty('isPrototypeOf') === false) {\n return false;\n }\n\n // Most likely a plain Object\n return true;\n}\n","/** Exception which indicates that there is a generic error. */\nexport class InjectionError extends Error {\n override name = InjectionError.name;\n}\n","import type { IProviderModule } from '../core';\n\n/** Exception which indicates that there is a generic error with an instance of {@link IProviderModule}. */\nexport class InjectionProviderModuleError extends Error {\n override name = InjectionProviderModuleError.name;\n\n constructor(module: IProviderModule, message: string) {\n let moduleId = 'Unknown';\n\n try {\n moduleId = module.toString();\n } catch {}\n\n super(`{ProviderModule.${moduleId}} => ${message}`);\n }\n}\n","import type { IProviderModule } from '../core';\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that an `unknown` type of {@link ProviderToken} has been supplied. */\nexport class InjectionProviderModuleUnknownProviderError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleUnknownProviderError.name;\n\n constructor(module: IProviderModule, providerToken: ProviderToken) {\n super(module, `The [${ProviderTokenHelpers.providerTokenToString(providerToken)}] provider is of an unknown type!`);\n }\n}\n","import type { IProviderModule } from '../core';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates an invokation of a disposed module. */\nexport class InjectionProviderModuleDisposedError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleDisposedError.name;\n\n constructor(module: IProviderModule) {\n super(module, 'Has been disposed!');\n }\n}\n","import type { IProviderModule } from '../core';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that a module has been initialized without an `identifier`. */\nexport class InjectionProviderModuleMissingIdentifierError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleMissingIdentifierError.name;\n\n constructor(module: IProviderModule) {\n super(module, 'An `identifier` must be supplied!');\n }\n}\n","import type { IProviderModule } from '../core';\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\nimport { InjectionProviderModuleError } from './provider-module.error';\n\n/** Exception which indicates that a module container does not contain the requested provider. */\nexport class InjectionProviderModuleMissingProviderError extends InjectionProviderModuleError {\n override name = InjectionProviderModuleMissingProviderError.name;\n\n constructor(module: IProviderModule, providerToken: ProviderToken) {\n super(\n module,\n `The [${ProviderTokenHelpers.providerTokenToString(providerToken)}] provider is not bound to this (or any imported) module container, and was not found either in the 'AppModule'!`\n );\n }\n}\n","import { Container, type BindInWhenOnFluentSyntax, type BindWhenOnFluentSyntax } from 'inversify';\n\nimport { InjectionScope, MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleMissingProviderError, InjectionProviderModuleUnknownProviderError } from '../../errors';\nimport { injectionScopeToBindingScope, isPlainObject, ProviderTokenHelpers } from '../../helpers';\nimport type {\n DependencyProvider,\n ProviderClassToken,\n ProviderFactoryToken,\n ProviderOptions,\n ProviderToken,\n ProviderValueToken,\n} from '../../types';\nimport { AppModuleInversifyContainer } from '../app-module/container';\nimport type {\n ProviderModuleGetManyParam,\n ProviderModuleGetManyReturn,\n ProviderModuleGetReturn,\n} from '../provider-module';\nimport { ProviderModule } from '../provider-module/provider-module';\n\nexport class ModuleContainer {\n readonly container: Container;\n private readonly providerModule: ProviderModule;\n\n constructor(providerModule: ProviderModule, inversifyParentContainer?: Container) {\n this.providerModule = providerModule;\n\n const { defaultScope = InjectionScope.Singleton } = providerModule.options;\n\n this.container =\n providerModule.id === 'AppModule'\n ? AppModuleInversifyContainer\n : new Container({\n parent: inversifyParentContainer ?? this.providerModule.appModuleRef.moduleContainer.container,\n defaultScope: injectionScopeToBindingScope(defaultScope),\n });\n\n this.providerModule.options.providers?.forEach((x) => this.bindToContainer(x));\n }\n\n get<T, IsOptional extends boolean | undefined = undefined, AsList extends boolean | undefined = undefined>(\n provider: ProviderToken<T>,\n isOptional?: IsOptional,\n asList?: AsList\n ): ProviderModuleGetReturn<T, IsOptional, AsList> {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<any>(\n MiddlewareType.BeforeGet,\n this.getProvider(provider, asList),\n provider,\n this.getProvider.bind(this)\n );\n if (middlewareResult || middlewareResult === null) return middlewareResult;\n\n if (isOptional) return undefined as any;\n\n throw new InjectionProviderModuleMissingProviderError(this.providerModule, provider);\n }\n\n getMany<D extends (ProviderModuleGetManyParam<any> | ProviderToken)[]>(\n ...deps: D | unknown[]\n ): ProviderModuleGetManyReturn<D> {\n return (deps as D).map((dep) => {\n const withOptions = isPlainObject(dep) && 'provider' in dep;\n\n return this.get(\n withOptions ? dep.provider : dep,\n withOptions ? dep.isOptional : false,\n withOptions ? dep.asList : false\n );\n }) as any;\n }\n\n bindToContainer<T>(provider: DependencyProvider<T>): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n const binders: Array<{\n providerTypeMatches: (p: any) => boolean;\n bind: () => BindInWhenOnFluentSyntax<any> | BindWhenOnFluentSyntax<any>;\n }> = [\n {\n providerTypeMatches: ProviderTokenHelpers.isProviderIdentifier,\n bind: () => this.container.bind(providerIdentifier).toSelf(),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isClassToken,\n bind: () => this.container.bind(providerIdentifier).to((provider as ProviderClassToken<T>).useClass),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isValueToken,\n bind: () =>\n this.container.bind(providerIdentifier).toConstantValue((provider as ProviderValueToken<T>).useValue),\n },\n {\n providerTypeMatches: ProviderTokenHelpers.isFactoryToken,\n bind: () =>\n this.container.bind(providerIdentifier).toResolvedValue(() => {\n const p = provider as ProviderFactoryToken<T>;\n\n const dependencies = this.providerModule.getMany(...(p.inject ?? []));\n\n return p.useFactory(...dependencies);\n }),\n },\n ];\n\n const { bind } = binders.find(({ providerTypeMatches }) => providerTypeMatches(provider)) ?? {};\n if (!bind) {\n throw new InjectionProviderModuleUnknownProviderError(this.providerModule, provider);\n }\n\n const isProviderIdentifier = ProviderTokenHelpers.isProviderIdentifier(provider);\n\n // Create initial inversify binding fluent syntax object\n let binding = bind();\n\n // A `ValueToken` is always a constant, so there's no point in binding a specific scope.\n // And if the provider is a simple `ProviderIdentifier` then it means that it'll use the container default scope.\n if (!ProviderTokenHelpers.isValueToken(provider) && !isProviderIdentifier) {\n binding = this.setBindingScope(provider, binding as BindInWhenOnFluentSyntax<any>);\n }\n\n // If it is a simple `ProviderIdentifier` there's nothing more we can do\n // as it is not an object which contains the `ProviderOptions` properties.\n if (isProviderIdentifier) return;\n\n const opts = provider as ProviderOptions<unknown>;\n\n if (opts.when) {\n binding.when(opts.when) as any;\n }\n }\n\n setBindingScope<T>(provider: ProviderToken<T>, binding: BindInWhenOnFluentSyntax<T>): BindWhenOnFluentSyntax<T> {\n const injectionScope = ProviderTokenHelpers.getInjectionScopeByPriority(\n provider,\n this.providerModule.options.defaultScope ?? InjectionScope.Singleton\n );\n\n switch (injectionScope) {\n case InjectionScope.Singleton:\n return binding.inSingletonScope();\n case InjectionScope.Transient:\n return binding.inTransientScope();\n case InjectionScope.Request:\n return binding.inRequestScope();\n }\n }\n\n dispose(): void {\n //@ts-expect-error Read-only property.\n this.providerModule = null;\n //@ts-expect-error Read-only property.\n this.container = null;\n }\n\n private getProvider<T>(provider: ProviderToken<T>, asList?: boolean): T | T[] | void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n if (asList) {\n return this.container.getAll(providerIdentifier, { optional: true });\n }\n\n return this.container.get(providerIdentifier, { optional: true });\n }\n}\n","import { Container } from 'inversify';\n\nexport const AppModuleInversifyContainer = new Container({ defaultScope: 'Singleton' });\n","import { ContainerModule, type ContainerModuleLoadOptions } from 'inversify';\n\nimport { DefinitionEventType, MiddlewareType } from '../../enums';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type { ExportsDefinitionOptimized, ModuleDefinition, ProviderToken } from '../../types';\nimport { ProviderModule } from '../provider-module/provider-module';\n\nexport class ImportedModuleContainer {\n get moduleDef(): ModuleDefinition<true> {\n return this.providerModule.dynamicModuleDef.moduleDef;\n }\n\n /** The {@link ProviderModule} which imported {@link providerModule | this} module. */\n private readonly importedIntoModule: ProviderModule;\n private readonly providerModule: ProviderModule;\n private readonly proxyContainer: ContainerModule;\n private proxyContainerOptions!: ContainerModuleLoadOptions;\n\n constructor(importedIntoModule: ProviderModule, providerModule: ProviderModule) {\n this.importedIntoModule = importedIntoModule;\n this.providerModule = providerModule;\n\n this.proxyContainer = this.buildProxyContainer();\n }\n\n dispose(): void {\n this.importedIntoModule.moduleContainer.container.unloadSync(this.proxyContainer);\n\n //@ts-expect-error Read-only property.\n this.importedIntoModule = null;\n //@ts-expect-error Read-only property.\n this.providerModule = null;\n //@ts-expect-error Read-only property.\n this.proxyContainer = null;\n //@ts-expect-error Read-only property.\n this.proxyContainerOptions = null;\n }\n\n private buildProxyContainer(): ContainerModule {\n const proxyContainer = new ContainerModule((options) => {\n this.proxyContainerOptions = options;\n\n this.traverseExportGraph((providerToken, foundInModule) => {\n this.proxyProviderIdentifier(providerToken, foundInModule);\n }, this.moduleDef.exports);\n\n // Subscribe to export changes only on this imported module.\n this.providerModule.dynamicModuleDef.event$.subscribe(({ type, change }) => {\n if (type !== DefinitionEventType.Export && type !== DefinitionEventType.ExportRemoved) return;\n\n const changeIsProvider = !ProviderModuleHelpers.isModule(change);\n\n if (changeIsProvider) {\n if (type === DefinitionEventType.Export) {\n this.proxyProviderIdentifier(change, this.providerModule);\n } else if (type === DefinitionEventType.ExportRemoved) {\n this.unproxyProviderIdentifier(change);\n }\n\n return;\n }\n\n // change is a module added or removed from exports\n const changedModule = change as ProviderModule;\n\n if (type === DefinitionEventType.Export) {\n // New exported module added: bind its providers recursively\n this.traverseExportGraph((providerToken, foundInModule) => {\n this.proxyProviderIdentifier(providerToken, foundInModule);\n }, changedModule.dynamicModuleDef.moduleDef.exports);\n } else {\n // Exported module removed: unbind its providers recursively\n this.traverseExportGraph((providerToken) => {\n this.unproxyProviderIdentifier(providerToken);\n }, changedModule.dynamicModuleDef.moduleDef.exports);\n }\n });\n });\n\n this.importedIntoModule.moduleContainer.container.loadSync(proxyContainer);\n\n return proxyContainer;\n }\n\n private proxyProviderIdentifier(providerToken: ProviderToken, fromModule: ProviderModule): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(providerToken);\n\n if (this.proxyContainerOptions.isBound(providerIdentifier)) return;\n\n const bind = this.proxyContainerOptions.bind(providerIdentifier).toDynamicValue(() => {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.OnExportAccess,\n this.importedIntoModule,\n providerIdentifier\n );\n\n if (middlewareResult === false) {\n this.proxyContainerOptions.unbind(providerIdentifier);\n return undefined;\n }\n\n return fromModule.moduleContainer.container.get(providerIdentifier);\n });\n\n this.providerModule.moduleContainer.setBindingScope(providerToken, bind);\n }\n\n private unproxyProviderIdentifier(providerToken: ProviderToken): void {\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(providerToken);\n\n /* istanbul ignore next */\n if (!this.proxyContainerOptions.isBound(providerIdentifier)) return;\n\n this.proxyContainerOptions.unbind(providerIdentifier);\n }\n\n private traverseExportGraph(\n cb: (providerToken: ProviderToken, foundInModule: ProviderModule) => void,\n currentExportsNode: ExportsDefinitionOptimized\n ): void {\n // As the `exports` array can be a mix of `Providers` and `Modules`\n // we want to tap into the `exports` of an imported module as the last resort\n // as that could mean recursively going into the `exports` of the imported module and so on.\n //\n // Therefore we first iterate over the entire array and cache any module we find\n // into the `discoveredExportedModules` temporary array, then skip over the iteration,\n // this allows us to make sure that we always 1st try to get the provider from the current `export`\n // and only as a last resort to tap into the `exports` of the imported modules by iterating over the `discoveredExportedModules` temp array.\n\n const discoveredExportedModules: ProviderModule[] = [];\n\n for (const exportedModuleOrProvider of currentExportsNode) {\n const isModule = exportedModuleOrProvider instanceof ProviderModule;\n if (isModule) {\n discoveredExportedModules.push(exportedModuleOrProvider);\n\n // Will get to it later in the eventuality we'll not find the\n // provider into the current `exports` of the imported module.\n continue;\n } else {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.OnExportAccess,\n this.importedIntoModule,\n exportedModuleOrProvider\n );\n\n if (middlewareResult === false) continue;\n\n // Found it into the `exports` of this imported module.\n cb(exportedModuleOrProvider as any, this.providerModule);\n }\n }\n\n // If we got here it means that the `provider` has not been found in the\n // `exports` of the current imported module, therefore we must recursively drill into\n // the exported modules of the imported module.\n for (const exportedModule of discoveredExportedModules) {\n this.traverseExportGraph(cb, exportedModule.dynamicModuleDef.moduleDef.exports);\n }\n }\n}\n","export class Signal<T> {\n private value: T;\n\n private readonly subscribers = new Set<SignalCallback<T>>();\n\n constructor(initialValue: T) {\n this.value = initialValue;\n }\n\n /** Can be used to `emit` a _new_ value and notify the _subscribers_. */\n emit(newValue: T): void {\n this.value = newValue;\n\n this.subscribers.forEach((cb) => cb(this.value));\n }\n\n /** Can be used to retrieve the _current_ value of the {@link Signal} imperatively. */\n get(): T {\n return this.value;\n }\n\n /**\n * Can be used to `subscribe` to the emitted values of this {@link Signal}.\n *\n * @param callback The `callback` which will be invoked when a _new_ value is emitted.\n * @param invokeImmediately When set to `true` it'll invoke the provided {@link callback} immediately with the latest value available. _(defaults to `false`)_\n */\n subscribe(callback: SignalCallback<T>, invokeImmediately?: boolean): () => void {\n this.subscribers.add(callback);\n\n if (invokeImmediately) callback(this.value);\n\n return () => this.subscribers.delete(callback);\n }\n\n /** Disposes of the internal references. */\n dispose(): void {\n //@ts-expect-error Read-only property.\n this.subscribers = null;\n this.value = null as any;\n }\n}\n\ntype SignalCallback<T> = (value: T) => void | Promise<void>;\n","import { DefinitionEventType, MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleDisposedError, InjectionProviderModuleError } from '../../errors';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type {\n AsyncMethod,\n DependencyProvider,\n ExportDefinition,\n ModuleDefinition,\n ModuleOrBlueprint,\n} from '../../types';\nimport { Signal } from '../../utils';\nimport { ImportedModuleContainer, type ModuleContainer } from '../container';\nimport type { IProviderModule, ProviderModuleOptions } from '../provider-module';\nimport type { ProviderModule } from '../provider-module/provider-module';\nimport type { DefinitionEvent, IDynamicModuleDefinition } from './interfaces';\n\nexport class DynamicModuleDefinition implements IDynamicModuleDefinition {\n get moduleContainer(): ModuleContainer {\n return this.providerModule.moduleContainer;\n }\n\n get subscribe(): IDynamicModuleDefinition['subscribe'] {\n /* istanbul ignore next */\n if (this.event$ === null) {\n throw new InjectionProviderModuleDisposedError(this.providerModule);\n }\n\n return this.event$.subscribe.bind(this.event$);\n }\n\n readonly moduleDef: ModuleDefinition<true>;\n readonly event$ = new Signal<DefinitionEvent>({\n type: DefinitionEventType.Noop,\n change: null,\n });\n\n private readonly providerModule: ProviderModule;\n private emittingModules = new Set<ProviderModule>();\n\n // Track subscriptions to imported modules' events for bubbling\n private importedModuleSubscriptions = new Map<ProviderModule, () => void>();\n\n constructor(providerModule: ProviderModule) {\n this.providerModule = providerModule;\n this.moduleDef = {\n imports: new Set(),\n providers: new Set(),\n exports: new Set(),\n };\n\n this.buildInitialDefinition(providerModule.options);\n }\n\n addImport(moduleOrBlueprint: ModuleOrBlueprint, addToExports = false): void {\n let providerModule = ProviderModuleHelpers.tryBlueprintToModule(moduleOrBlueprint) as ProviderModule;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<ProviderModule | false>(\n MiddlewareType.BeforeAddImport,\n providerModule\n );\n\n if (middlewareResult === false) return;\n providerModule = middlewareResult;\n\n this.moduleDef.imports.add(providerModule);\n\n this.createImportedModuleContainer(providerModule);\n\n // Subscribe to imported module's export events to bubble them\n this.subscribeToImportedModuleEvents(providerModule);\n\n this.emitEventSafely({\n type: DefinitionEventType.Export,\n change: providerModule,\n });\n\n this.emitEventSafely({\n type: DefinitionEventType.Import,\n change: providerModule,\n });\n\n if (!addToExports) return;\n\n this.moduleDef.exports.add(providerModule);\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportModule,\n change: providerModule,\n });\n }\n\n async addImportLazy(lazyCb: AsyncMethod<ProviderModule>, addToExports?: boolean): Promise<void> {\n const providerModule = await lazyCb();\n\n this.addImport(providerModule, addToExports);\n }\n\n addProvider<T>(provider: DependencyProvider<T>, addToExports = false): void {\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares<DependencyProvider<T> | false>(\n MiddlewareType.BeforeAddProvider,\n provider\n );\n\n if (middlewareResult === false) return;\n provider = middlewareResult;\n\n this.moduleDef.providers.add(provider);\n\n this.moduleContainer.bindToContainer(provider);\n\n this.emitEventSafely({\n type: DefinitionEventType.Provider,\n change: provider,\n });\n\n if (!addToExports) return;\n\n this.moduleDef.exports.add(provider);\n\n this.emitEventSafely({\n type: DefinitionEventType.Export,\n change: provider,\n });\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportProvider,\n change: provider,\n });\n }\n\n async addProviderLazy<T>(lazyCb: AsyncMethod<DependencyProvider<T>>, addToExports?: boolean): Promise<void> {\n const provider = await lazyCb();\n\n this.addProvider(provider, addToExports);\n }\n\n removeImport(module: IProviderModule): boolean {\n /* istanbul ignore next */\n if (!this.moduleDef.imports.has(module)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveImport,\n module\n );\n\n if (middlewareResult === false) return false;\n\n this.unsubscribeFromImportedModuleEvents(module as ProviderModule);\n\n const importedModuleContainer = this.providerModule.importedModuleContainers.get(module)!;\n importedModuleContainer.dispose();\n this.providerModule.importedModuleContainers.delete(module);\n this.moduleDef.imports.delete(module);\n\n this.emitEventSafely({\n type: DefinitionEventType.ImportRemoved,\n change: module,\n });\n\n this.removeFromExports(module);\n\n return true;\n }\n\n removeProvider<T>(provider: DependencyProvider<T>): boolean {\n if (!this.moduleDef.providers.has(provider)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveProvider,\n provider\n );\n\n if (middlewareResult === false) return false;\n\n this.moduleDef.providers.delete(provider);\n this.moduleContainer.container.unbindSync(ProviderTokenHelpers.toProviderIdentifier(provider));\n\n this.emitEventSafely({\n type: DefinitionEventType.ProviderRemoved,\n change: provider,\n });\n\n this.removeFromExports(provider);\n\n return true;\n }\n\n removeFromExports(exportDefinition: ExportDefinition): boolean {\n if (!this.moduleDef.exports.has(exportDefinition)) return false;\n\n const middlewareResult = this.providerModule.middlewaresManager.applyMiddlewares(\n MiddlewareType.BeforeRemoveExport,\n exportDefinition\n );\n\n if (middlewareResult === false) return false;\n\n this.moduleDef.exports.delete(exportDefinition);\n\n this.emitEventSafely({\n type: DefinitionEventType.ExportRemoved,\n change: exportDefinition,\n });\n\n if (ProviderModuleHelpers.isModule(exportDefinition)) {\n this.emitEventSafely({\n type: DefinitionEventType.ExportModuleRemoved,\n change: exportDefinition,\n });\n } else {\n this.emitEventSafely({\n type: DefinitionEventType.ExportProviderRemoved,\n change: exportDefinition,\n });\n }\n\n return true;\n }\n\n emitEventSafely(event: DefinitionEvent): void {\n if (this.emittingModules.has(this.providerModule)) {\n // Already emitting for this module, skip to prevent cycle\n return;\n }\n\n try {\n this.emittingModules.add(this.providerModule);\n this.event$.emit(event);\n } finally {\n this.emittingModules.delete(this.providerModule);\n }\n }\n\n dispose(): void {\n //@ts-expect-error Null not assignable.\n this.importedModuleSubscriptions = null;\n //@ts-expect-error Null not assignable.\n this.emittingModules = null;\n\n this.event$.dispose();\n //@ts-expect-error Read-only property.\n this.event$ = null;\n //@ts-expect-error Read-only property.\n this.moduleDef = null;\n }\n\n private buildInitialDefinition({ imports = [], providers = [], exports = [] }: ProviderModuleOptions): void {\n //@ts-expect-error Read-only property.\n this.moduleDef.providers = new Set(providers);\n\n exports.forEach((x) => {\n // We do not want to add `modules` or `blueprint` at this stage in the `exports` definition,\n // as if it is a `blueprint` we must first \"convert\" it to a `module`.\n // (which will happen down here in the `imports.forEach` loop)\n\n if (ProviderModuleHelpers.isModuleOrBlueprint(x)) return;\n\n this.moduleDef.exports.add(x);\n });\n\n imports.forEach((imp) => {\n const isModule = ProviderModuleHelpers.isModule(imp);\n const isGlobal = isModule ? (imp as ProviderModule).options.isGlobal : imp.isGlobal;\n\n // Importing global modules is pointless as\n // each module has access to the `AppModule`.\n if (isGlobal) return;\n\n const importedModule = ProviderModuleHelpers.tryBlueprintToModule(imp) as ProviderModule;\n const isPartOfTheExportsList = exports.some(\n (x) => ProviderModuleHelpers.isModuleOrBlueprint(x) && x.id === importedModule.id\n );\n\n this.addImport(importedModule, isPartOfTheExportsList);\n });\n }\n\n private createImportedModuleContainer(importedModule: ProviderModule): void {\n if (importedModule.isAppModule) {\n throw new InjectionProviderModuleError(this.providerModule, `The 'AppModule' can't be imported!`);\n }\n\n this.providerModule.importedModuleContainers.set(\n importedModule,\n new ImportedModuleContainer(this.providerModule, importedModule)\n );\n }\n\n private subscribeToImportedModuleEvents(importedModule: ProviderModule): void {\n if (this.importedModuleSubscriptions.has(importedModule)) return;\n\n const subscription = importedModule.dynamicModuleDef.event$.subscribe(({ type, change }) => {\n // Bubble only export-related events up to this module's event$\n switch (type) {\n case DefinitionEventType.Export:\n case DefinitionEventType.ExportRemoved:\n case DefinitionEventType.ExportModule:\n case DefinitionEventType.ExportModuleRemoved:\n case DefinitionEventType.ExportProvider:\n case DefinitionEventType.ExportProviderRemoved:\n this.emitEventSafely({ type, change });\n break;\n }\n });\n\n this.importedModuleSubscriptions.set(importedModule, subscription);\n }\n\n private unsubscribeFromImportedModuleEvents(importedModule: ProviderModule): void {\n const unsubscribe = this.importedModuleSubscriptions.get(importedModule);\n /* istanbul ignore next */\n if (!unsubscribe) return;\n\n unsubscribe();\n this.importedModuleSubscriptions.delete(importedModule);\n }\n}\n","import { MiddlewareType } from '../../enums';\nimport { InjectionProviderModuleDisposedError } from '../../errors';\nimport type { ProviderModule } from '../provider-module';\nimport type { AddMiddlewareCallbackType, IMiddlewaresManager } from './middlewares-manager.interfaces';\n\nexport class MiddlewaresManager implements IMiddlewaresManager {\n private middlewaresMap: Map<MiddlewareType, Function[]> = new Map();\n private readonly providerModule: ProviderModule;\n\n constructor(providerModule: ProviderModule) {\n this.providerModule = providerModule;\n }\n\n add<T extends MiddlewareType>(type: MiddlewareType, cb: AddMiddlewareCallbackType<T>): void {\n const currentMiddlewares = this.middlewaresMap.get(type);\n\n if (currentMiddlewares) {\n currentMiddlewares.push(cb);\n\n return;\n }\n\n // First middleware\n this.middlewaresMap.set(type, [cb]);\n }\n\n applyMiddlewares<T>(type: MiddlewareType, ...args: any[]): T {\n if (this.middlewaresMap === null) throw new InjectionProviderModuleDisposedError(this.providerModule);\n\n const middlewares = this.middlewaresMap.get(type);\n\n switch (type) {\n case MiddlewareType.BeforeAddImport:\n case MiddlewareType.BeforeAddProvider:\n if (!middlewares) return args[0];\n\n let chainedArg = args[0];\n\n for (const middleware of middlewares) {\n const result = middleware(chainedArg);\n\n if (result === false) return false as T;\n if (result === true) continue;\n\n chainedArg = result;\n }\n\n return chainedArg;\n\n case MiddlewareType.BeforeGet:\n return !middlewares\n ? args[0]\n : middlewares.reduce((arg, middleware) => middleware(arg, args[1], args[2]), args[0]);\n\n case MiddlewareType.BeforeRemoveImport:\n case MiddlewareType.BeforeRemoveProvider:\n case MiddlewareType.BeforeRemoveExport:\n case MiddlewareType.OnExportAccess:\n return (!middlewares || !middlewares.some((middleware) => !middleware(args[0], args[1]))) as T;\n }\n }\n\n clear(): void {\n this.middlewaresMap.clear();\n }\n\n dispose(): void {\n //@ts-expect-error `null` not being assignable to Map.\n this.middlewaresMap = null;\n }\n}\n","import { deepClone } from '../../helpers';\nimport { ProviderModule, type ProviderModuleOptions } from '../provider-module';\nimport type { ModuleBlueprintOptions } from './interfaces';\n\nexport class ProviderModuleBlueprint {\n id!: ProviderModuleOptions['id'];\n imports?: ProviderModuleOptions['imports'];\n providers?: ProviderModuleOptions['providers'];\n exports?: ProviderModuleOptions['exports'];\n defaultScope?: ProviderModuleOptions['defaultScope'];\n isGlobal?: ProviderModuleOptions['isGlobal'];\n onReady?: ProviderModuleOptions['onReady'];\n onReset?: ProviderModuleOptions['onReset'];\n onDispose?: ProviderModuleOptions['onDispose'];\n\n private readonly blueprintOptions: ModuleBlueprintOptions;\n\n constructor(options: ProviderModuleOptions, blueprintOptions?: ModuleBlueprintOptions) {\n this.updateDefinition(options);\n\n this.blueprintOptions = {\n autoImportIntoAppModuleWhenGlobal: blueprintOptions?.autoImportIntoAppModuleWhenGlobal ?? true,\n };\n\n this.convertToModuleAndInjectIntoAppModuleIfGlobal();\n }\n\n /** Can be used to update the {@link ProviderModuleBlueprint | Blueprint} definition. */\n updateDefinition(options: ProviderModuleOptions): this {\n this.id = options.id;\n this.imports = options.imports;\n this.providers = options.providers;\n this.exports = options.exports;\n this.defaultScope = options.defaultScope;\n this.isGlobal = options.isGlobal;\n this.onReady = options.onReady;\n this.onReset = options.onReset;\n this.onDispose = options.onDispose;\n\n return this;\n }\n\n /** Returns the {@link ProviderModuleOptions} of this {@link ProviderModuleBlueprint | Blueprint}. */\n getDefinition(): ProviderModuleOptions {\n return {\n id: this.id,\n imports: this.imports,\n providers: this.providers,\n exports: this.exports,\n defaultScope: this.defaultScope,\n isGlobal: this.isGlobal,\n onReady: this.onReady,\n onReset: this.onReset,\n onDispose: this.onDispose,\n };\n }\n\n /**\n * Can be used to instantiate a _new_ `blueprint` with the same exact options as _this_ one.\n *\n * **Note:** _Everything is deep cloned, you can safely overwrite all the properties of the cloned instance._\n */\n clone(): ProviderModuleBlueprint {\n return new ProviderModuleBlueprint(deepClone(this.getDefinition()), { ...this.blueprintOptions });\n }\n\n private convertToModuleAndInjectIntoAppModuleIfGlobal(): void {\n if (!this.isGlobal || !this.blueprintOptions?.autoImportIntoAppModuleWhenGlobal) return;\n\n ProviderModule.APP_MODULE_REF.update.addImport(this);\n }\n}\n","import { DefinitionEventType } from '../../enums';\nimport {\n InjectionError,\n InjectionProviderModuleDisposedError,\n InjectionProviderModuleMissingIdentifierError,\n} from '../../errors';\nimport { ProviderModuleHelpers, ProviderTokenHelpers } from '../../helpers';\nimport type { ModuleDefinition, ModuleIdentifier, ProviderIdentifier, ProviderToken } from '../../types';\nimport { ModuleContainer } from '../container';\nimport { ImportedModuleContainer } from '../container/imported-module-container';\nimport { DynamicModuleDefinition, type IDynamicModuleDefinition } from '../dynamic-module-definition';\nimport { MiddlewaresManager, type IMiddlewaresManager } from '../middlewares-manager';\nimport { ProviderModuleBlueprint, type ModuleBlueprintOptions } from '../provider-module-blueprint';\nimport type {\n IProviderModule,\n OnCleanupOptions,\n ProviderModuleGetManyParam,\n ProviderModuleGetManyReturn,\n ProviderModuleGetReturn,\n ProviderModuleOptions,\n ProviderModuleOptionsInternal,\n} from './types';\n\nexport class ProviderModule implements IProviderModule {\n get id(): ModuleIdentifier {\n return this.options.id;\n }\n\n get definition(): ModuleDefinition<true> {\n this.throwIfDisposed();\n\n return this.dynamicModuleDef.moduleDef;\n }\n\n get update(): IDynamicModuleDefinition {\n this.throwIfDisposed();\n\n return this.dynamicModuleDef;\n }\n\n get middlewares(): IMiddlewaresManager {\n this.throwIfDisposed();\n\n return this.middlewaresManager;\n }\n\n get isDisposed(): boolean {\n return this.disposed;\n }\n\n get isAppModule(): boolean {\n return this.id === 'AppModule';\n }\n\n /**\n * Holds a reference to the `AppModule`.\n *\n * Static property needed in order to avoid introducing a _cirular dependency_ between\n * the `AppModule` instance and the `ProviderModule` class.\n */\n static readonly APP_MODULE_REF: IProviderModule;\n\n readonly appModuleRef: ProviderModule;\n readonly options: ProviderModuleOptions;\n readonly middlewaresManager: MiddlewaresManager;\n readonly dynamicModuleDef: DynamicModuleDefinition;\n readonly moduleContainer: ModuleContainer;\n readonly importedModuleContainers: Map<IProviderModule, ImportedModuleContainer> = new Map();\n\n private disposed = false;\n\n constructor({\n appModuleRef: appModule = ProviderModule.APP_MODULE_REF,\n inversify,\n ...publicOptions\n }: ProviderModuleOptionsInternal) {\n this.appModuleRef = appModule as ProviderModule;\n this.options = publicOptions;\n\n this.throwIfIdIsMissing();\n\n this.middlewaresManager = new MiddlewaresManager(this);\n this.moduleContainer = new ModuleContainer(this, inversify?.parentContainer);\n this.dynamicModuleDef = new DynamicModuleDefinition(this);\n\n if (!this.isAppModule && this.options.isGlobal) {\n this.appModuleRef.update.addImport(this, true);\n }\n\n this.options.onReady?.(this);\n }\n\n static create(optionsOrBlueprint: ProviderModuleOptions | ProviderModuleBlueprint): IProviderModule {\n const options = ProviderModuleHelpers.isBlueprint(optionsOrBlueprint)\n ? optionsOrBlueprint.getDefinition()\n : optionsOrBlueprint;\n\n if (options.id === 'AppModule') {\n throw new InjectionError(\n `The 'AppModule' id can't be used as it is already being used by the built-in 'AppModule'`\n );\n }\n\n return new ProviderModule(options as any);\n }\n\n static blueprint(\n moduleOptions: ProviderModuleOptions,\n blueprintOptions?: ModuleBlueprintOptions\n ): ProviderModuleBlueprint {\n return new ProviderModuleBlueprint(moduleOptions, blueprintOptions);\n }\n\n isImportingModule(idOrModule: ModuleIdentifier | IProviderModule): boolean {\n this.throwIfDisposed();\n\n if (ProviderModuleHelpers.isModule(idOrModule)) {\n return this.importedModuleContainers.has(idOrModule);\n }\n\n return this.importedModuleContainers.keys().some((m) => m.id === idOrModule);\n }\n\n hasProvider<T>(provider: ProviderToken<T>): boolean {\n this.throwIfDisposed();\n\n const providerIdentifier = ProviderTokenHelpers.toProviderIdentifier(provider);\n\n return this.moduleContainer.container.isBound(providerIdentifier);\n }\n\n get<T, IsOptional extends boolean | undefined = undefined, AsList extends boolean | undefined = undefined>(\n provider: ProviderToken<T>,\n isOptional?: IsOptional,\n asList?: AsList\n ): ProviderModuleGetReturn<T, IsOptional, AsList> {\n this.throwIfDisposed();\n\n const value = this.moduleContainer.get<T, IsOptional, AsList>(provider, isOptional, asList);\n\n this.dynamicModuleDef.emitEventSafely({\n type: DefinitionEventType.GetProvider,\n change: value,\n });\n\n return value;\n }\n\n getMany<D extends (ProviderModuleGetManyParam<any> | ProviderToken)[]>(\n ...deps: D | unknown[]\n ): ProviderModuleGetManyReturn<D> {\n this.throwIfDisposed();\n\n return this.moduleContainer.getMany<D>(...deps);\n }\n\n isExportingModule(idOrModule: ModuleIdentifier | IProviderModule): boolean {\n this.throwIfDisposed();\n\n if (!this.isImportingModule(idOrModule)) return false;\n\n if (ProviderModuleHelpers.isModule(idOrModule)) {\n return this.definition.exports.has(idOrModule);\n }\n\n // It means that we have to search by the `ModuleIdentifier` instead,\n // this may be slower, but most times should be negligible.\n\n return this.definition.exports.keys().some((x) => ProviderModuleHelpers.isModule(x) && x.id === idOrModule);\n }\n\n isExportingProvider(tokenOrIdentifier: ProviderToken | ProviderIdentifier): boolean {\n this.throwIfDisposed();\n\n let found = this.definition.exports.has(tokenOrIdentifier);\n\n if (!found && ProviderTokenHelpers.isProviderIdentifier(tokenOrIdentifier)) {\n // It means that we have to search by the `ProviderIdentifier` instead,\n // this may be slower, but most times should be negligible.\n\n found = this.definition.exports\n .keys()\n .some(\n (x) =>\n !ProviderModuleHelpers.isModuleOrBlueprint(x) &&\n ProviderTokenHelpers.toProviderIdentifier(x) === tokenOrIdentifier\n );\n }\n\n return found;\n }\n\n async reset(shouldInvokeCb = true): Promise<void> {\n this.throwIfDisposed();\n\n let before: OnCleanupOptions['before'];\n let after: OnCleanupOptions['after'];\n\n if (shouldInvokeCb) {\n const cbs = (this.options.onReset?.() ?? {}) as OnCleanupOptions;\n\n before = cbs.before;\n after = cbs.after;\n\n await before?.(this);\n }\n\n this.middlewaresManager.clear();\n this.moduleContainer.container.unbindAll();\n this.definition.imports.clear();\n this.definition.providers.clear();\n this.definition.exports.clear();\n this.importedModuleContainers.clear();\n\n if (shouldInvokeCb) {\n await after?.();\n }\n }\n\n async dispose(): Promise<void> {\n this.throwIfDisposed();\n\n const { before, after } = this.options.onDispose?.() ?? {};\n await before?.(this);\n\n await this.reset(false);\n\n this.middlewaresManager.dispose();\n this.dynamicModuleDef.dispose();\n /* istanbul ignore next */\n this.importedModuleContainers.forEach((x) => x.dispose());\n this.moduleContainer.dispose();\n\n //@ts-expect-error Read-only property.\n this.options = {\n // We leave only the `id` as it is needed\n // to correctly show it when the `InjectionProviderModuleDisposedError` is thrown.\n id: this.options.id,\n };\n //@ts-expect-error Read-only property.\n this.dynamicModuleDef = null;\n //@ts-expect-error Read-only property.\n this.importedModuleContainers = null;\n //@ts-expect-error Read-only property.\n this.moduleContainer = null;\n\n this.disposed = true;\n\n await after?.();\n }\n\n toString(): string {\n return this.id.toString();\n }\n\n private throwIfIdIsMissing(): void {\n if (!this.options.id || this.options.id.toString().trim().length === 0) {\n throw new InjectionProviderModuleMissingIdentifierError(this);\n }\n }\n\n private throwIfDisposed(): void {\n if (!this.isDisposed) return;\n\n throw new InjectionProviderModuleDisposedError(this);\n }\n}\n","import { ProviderModule, type IProviderModule } from '../core/provider-module';\r\nimport { ProviderModuleBlueprint } from '../core/provider-module-blueprint/provider-module-blueprint';\r\n\r\nexport namespace ProviderModuleHelpers {\r\n export function isModule(value: any): value is IProviderModule {\r\n return value instanceof ProviderModule;\r\n }\r\n\r\n export function isBlueprint(value: any): value is ProviderModuleBlueprint {\r\n return value instanceof ProviderModuleBlueprint;\r\n }\r\n\r\n export function isModuleOrBlueprint(value: any): value is IProviderModule | ProviderModuleBlueprint {\r\n return isModule(value) || isBlueprint(value);\r\n }\r\n\r\n export function tryBlueprintToModule(value: IProviderModule | ProviderModuleBlueprint): IProviderModule {\r\n if (!(value instanceof ProviderModuleBlueprint)) return value;\r\n\r\n return blueprintToModule(value);\r\n }\r\n\r\n export function blueprintToModule(moduleBlueprint: ProviderModuleBlueprint): IProviderModule {\r\n return ProviderModule.create(moduleBlueprint.getDefinition());\r\n }\r\n}\r\n","export function isFunction(v: any): boolean {\n if (typeof v !== 'function') return false;\n\n return !Function.prototype.toString.call(v).startsWith('class ');\n}\n","export function deepClone<T>(obj: T): T {\n if (obj === null || typeof obj !== 'object') return obj;\n\n if (typeof obj === 'function') {\n // Create a new function that calls the original function\n // This ensures the cloned function is a different reference\n return ((...args: any[]) => (obj as any)(...args)) as any;\n }\n\n if (Array.isArray(obj)) return obj.map((item) => deepClone(item)) as T;\n\n const clonedObj: any = {};\n for (const key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n clonedObj[key] = deepClone((obj as any)[key]);\n }\n }\n\n return clonedObj;\n}\n","import { inject as _inject } from 'inversify';\n\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\n\n/** See {@link https://inversify.io/docs/api/decorator/#inject} for more details. */\nexport function Inject(provider: ProviderToken) {\n return _inject(ProviderTokenHelpers.toProviderIdentifier(provider));\n}\n","import { multiInject as _multiInject } from 'inversify';\n\nimport { ProviderTokenHelpers } from '../helpers';\nimport type { ProviderToken } from '../types';\n\n/** See {@link https://inversify.io/docs/api/decorator/#multiinject} for more details. */\nexport function MultiInject(provider: ProviderToken) {\n return _multiInject(ProviderTokenHelpers.toProviderIdentifier(provider));\n}\n","import { injectFromBase as _injectFromBase } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#injectfrombase} for more details. */\nexport function InjectFromBase(options?: Parameters<typeof _injectFromBase>[0]) {\n return _injectFromBase(options);\n}\n","import { named as _named, type MetadataName } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#named} for more details. */\nexport function Named(name: MetadataName) {\n return _named(name);\n}\n","import { optional as _optional } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#optional} for more details. */\nexport function Optional() {\n return _optional();\n}\n","import { tagged as _tagged, type MetadataTag } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#tagged} for more details. */\nexport function Tagged(key: MetadataTag, value: unknown) {\n return _tagged(key, value);\n}\n","import { unmanaged as _unmanaged } from 'inversify';\n\n/** See {@link https://inversify.io/docs/api/decorator/#unmanaged} for more details. */\nexport function Unmanaged() {\n return _unmanaged();\n}\n","import type { IProviderModule } from '../provider-module';\nimport { ProviderModule } from '../provider-module/provider-module';\n\n/**\n * The `root` {@link IProviderModule} of your application.\n *\n * All global modules are imported into the {@link AppModule} and all your custom\n * modules inherit from it.\n */\nexport const AppModule = new ProviderModule({\n id: 'AppModule',\n}) as IProviderModule;\n\n//@ts-expect-error Read-only property.\n// This is done to avoid a circular dependency between\n// the `ProviderModule` class and the `AppModule` instance.\nProviderModule.APP_MODULE_REF = AppModule;\n"],"mappings":"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","names":["injectable","_injectable","InjectionScope","MiddlewareType","DefinitionEventType","injectionScopeToBindingScope","injectionScope","InjectionScope","Singleton","Transient","Request","bindingScopeToInjectionScope","bindingScope","getClassMetadata","isClass","v","Function","prototype","toString","call","startsWith","isClassOrFunction","value","isObject","o","Object","prototype","toString","call","isPlainObject","ctor","undefined","prot","hasOwnProperty","ProviderTokenHelpers","isClassToken","provider","hasProvideProperty","isValueToken","isFactoryToken","isProviderIdentifier","value","isClassOrFunction","toProviderIdentifier","provide","toProviderIdentifiers","providers","map","providerIdentifierToString","providerIdentifier","toString","name","providerTokenToString","providerToken","providerTokensAreEqual","p0","p1","id0","id1","useClass","useValue","useFactory","getInjectionScopeByPriority","moduleDefaultScope","tryGetScopeFromProvider","tryGetDecoratorScopeFromClass","tryGetProviderOptions","providerOptions","scope","providerClass","isClass","inversifyScope","getClassMetadata","bindingScopeToInjectionScope","isPlainObject","InjectionError","Error","name","InjectionProviderModuleError","Error","name","module","message","moduleId","toString","InjectionProviderModuleUnknownProviderError","InjectionProviderModuleError","name","module","providerToken","ProviderTokenHelpers","providerTokenToString","InjectionProviderModuleDisposedError","InjectionProviderModuleError","name","module","InjectionProviderModuleMissingIdentifierError","InjectionProviderModuleError","name","module","InjectionProviderModuleMissingProviderError","InjectionProviderModuleError","name","module","providerToken","ProviderTokenHelpers","providerTokenToString","Container","Container","AppModuleInversifyContainer","defaultScope","ModuleContainer","container","providerModule","inversifyParentContainer","defaultScope","InjectionScope","Singleton","options","id","AppModuleInversifyContainer","Container","parent","appModuleRef","moduleContainer","injectionScopeToBindingScope","providers","forEach","x","bindToContainer","get","provider","isOptional","asList","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","BeforeGet","getProvider","bind","undefined","InjectionProviderModuleMissingProviderError","getMany","deps","map","dep","withOptions","isPlainObject","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","binders","providerTypeMatches","isProviderIdentifier","toSelf","isClassToken","to","useClass","isValueToken","toConstantValue","useValue","isFactoryToken","toResolvedValue","p","dependencies","inject","useFactory","find","InjectionProviderModuleUnknownProviderError","binding","setBindingScope","opts","when","injectionScope","getInjectionScopeByPriority","inSingletonScope","Transient","inTransientScope","Request","inRequestScope","dispose","getAll","optional","ContainerModule","ImportedModuleContainer","moduleDef","providerModule","dynamicModuleDef","importedIntoModule","proxyContainer","proxyContainerOptions","buildProxyContainer","dispose","moduleContainer","container","unloadSync","ContainerModule","options","traverseExportGraph","providerToken","foundInModule","proxyProviderIdentifier","exports","event$","subscribe","type","change","DefinitionEventType","Export","ExportRemoved","changeIsProvider","ProviderModuleHelpers","isModule","unproxyProviderIdentifier","changedModule","loadSync","fromModule","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","isBound","bind","toDynamicValue","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","OnExportAccess","unbind","undefined","get","setBindingScope","cb","currentExportsNode","discoveredExportedModules","exportedModuleOrProvider","ProviderModule","push","exportedModule","Signal","value","subscribers","Set","initialValue","emit","newValue","forEach","cb","get","subscribe","callback","invokeImmediately","add","delete","dispose","DynamicModuleDefinition","moduleContainer","providerModule","subscribe","event$","InjectionProviderModuleDisposedError","bind","moduleDef","Signal","type","DefinitionEventType","Noop","change","emittingModules","Set","importedModuleSubscriptions","Map","imports","providers","exports","buildInitialDefinition","options","addImport","moduleOrBlueprint","addToExports","ProviderModuleHelpers","tryBlueprintToModule","middlewareResult","middlewaresManager","applyMiddlewares","MiddlewareType","BeforeAddImport","add","createImportedModuleContainer","subscribeToImportedModuleEvents","emitEventSafely","Export","Import","ExportModule","addImportLazy","lazyCb","addProvider","provider","BeforeAddProvider","bindToContainer","Provider","ExportProvider","addProviderLazy","removeImport","module","has","BeforeRemoveImport","unsubscribeFromImportedModuleEvents","importedModuleContainer","importedModuleContainers","get","dispose","delete","ImportRemoved","removeFromExports","removeProvider","BeforeRemoveProvider","container","unbindSync","ProviderTokenHelpers","toProviderIdentifier","ProviderRemoved","exportDefinition","BeforeRemoveExport","ExportRemoved","isModule","ExportModuleRemoved","ExportProviderRemoved","event","emit","forEach","x","isModuleOrBlueprint","imp","isGlobal","importedModule","isPartOfTheExportsList","some","id","isAppModule","InjectionProviderModuleError","set","ImportedModuleContainer","subscription","dynamicModuleDef","unsubscribe","MiddlewaresManager","middlewaresMap","Map","providerModule","add","type","cb","currentMiddlewares","get","push","set","applyMiddlewares","args","InjectionProviderModuleDisposedError","middlewares","MiddlewareType","BeforeAddImport","BeforeAddProvider","chainedArg","middleware","result","BeforeGet","reduce","arg","BeforeRemoveImport","BeforeRemoveProvider","BeforeRemoveExport","OnExportAccess","some","clear","dispose","ProviderModuleBlueprint","id","imports","providers","exports","defaultScope","isGlobal","onReady","onReset","onDispose","blueprintOptions","options","updateDefinition","autoImportIntoAppModuleWhenGlobal","convertToModuleAndInjectIntoAppModuleIfGlobal","getDefinition","clone","deepClone","ProviderModule","APP_MODULE_REF","update","addImport","ProviderModule","id","options","definition","throwIfDisposed","dynamicModuleDef","moduleDef","update","middlewares","middlewaresManager","isDisposed","disposed","isAppModule","APP_MODULE_REF","appModuleRef","moduleContainer","importedModuleContainers","Map","appModule","inversify","publicOptions","throwIfIdIsMissing","MiddlewaresManager","ModuleContainer","parentContainer","DynamicModuleDefinition","isGlobal","addImport","onReady","create","optionsOrBlueprint","ProviderModuleHelpers","isBlueprint","getDefinition","InjectionError","blueprint","moduleOptions","blueprintOptions","ProviderModuleBlueprint","isImportingModule","idOrModule","isModule","has","keys","some","m","hasProvider","provider","providerIdentifier","ProviderTokenHelpers","toProviderIdentifier","container","isBound","get","isOptional","asList","value","emitEventSafely","type","DefinitionEventType","GetProvider","change","getMany","deps","isExportingModule","exports","x","isExportingProvider","tokenOrIdentifier","found","isProviderIdentifier","isModuleOrBlueprint","reset","shouldInvokeCb","before","after","cbs","onReset","clear","unbindAll","imports","providers","dispose","onDispose","forEach","toString","trim","length","InjectionProviderModuleMissingIdentifierError","InjectionProviderModuleDisposedError","ProviderModuleHelpers","isModule","value","ProviderModule","isBlueprint","ProviderModuleBlueprint","isModuleOrBlueprint","tryBlueprintToModule","blueprintToModule","moduleBlueprint","create","getDefinition","isFunction","v","Function","prototype","toString","call","startsWith","deepClone","obj","args","Array","isArray","map","item","clonedObj","key","Object","prototype","hasOwnProperty","call","Injectable","scope","undefined","_injectable","injectionScopeToBindingScope","inject","_inject","Inject","provider","_inject","ProviderTokenHelpers","toProviderIdentifier","multiInject","_multiInject","MultiInject","provider","_multiInject","ProviderTokenHelpers","toProviderIdentifier","injectFromBase","_injectFromBase","InjectFromBase","options","_injectFromBase","named","_named","Named","name","_named","optional","_optional","Optional","_optional","tagged","_tagged","Tagged","key","value","_tagged","unmanaged","_unmanaged","Unmanaged","_unmanaged","AppModule","ProviderModule","id","APP_MODULE_REF"]}