@punks/backend-entity-manager 0.0.336 → 0.0.338

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.
@@ -6,6 +6,7 @@ export declare const createTestServer: (options?: {
6
6
  useVersioning?: boolean;
7
7
  extraControllers?: any[];
8
8
  extraProviders?: any[];
9
+ extraGlobalProviders?: any[];
9
10
  extraModules?: any[];
10
11
  enableLogging?: boolean;
11
12
  }) => Promise<{
@@ -0,0 +1,8 @@
1
+ import { TypeormCacheInstance } from "../../../../../integrations";
2
+ import { AppCacheEntry } from "../../server/database/core/entities/appCacheEntry.entity";
3
+ import { Repository } from "typeorm";
4
+ export declare class OtherCacheInstance extends TypeormCacheInstance<AppCacheEntry> {
5
+ private repository;
6
+ constructor(repository: Repository<AppCacheEntry>);
7
+ protected getRepository(): Repository<AppCacheEntry>;
8
+ }
@@ -1,2 +1,3 @@
1
1
  export { DynamoDbCollection } from "./collection";
2
2
  export { AwsDynamoDbModule } from "./module";
3
+ export { AwsDynamoDbSettings } from "./settings";
package/dist/esm/index.js CHANGED
@@ -1180,7 +1180,7 @@ class ServiceLocator {
1180
1180
  this.services[name] = service;
1181
1181
  }
1182
1182
  registerMultiple(serviceName, instanceName, service) {
1183
- if (!this.services[serviceName]) {
1183
+ if (!this.multipleServices[serviceName]) {
1184
1184
  this.multipleServices[serviceName] = {};
1185
1185
  }
1186
1186
  if (this.multipleServices[serviceName][instanceName]) {