@timo-bank/nestjs 0.1.2 → 0.1.3

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/dist/index.d.mts CHANGED
@@ -41,7 +41,7 @@ interface TimoModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
41
41
  /**
42
42
  * Use factory function
43
43
  */
44
- useFactory?: (...args: any[]) => Promise<TimoModuleOptions> | TimoModuleOptions;
44
+ useFactory?: (...args: unknown[]) => Promise<TimoModuleOptions> | TimoModuleOptions;
45
45
  /**
46
46
  * Inject dependencies for factory
47
47
  */
package/dist/index.d.ts CHANGED
@@ -41,7 +41,7 @@ interface TimoModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
41
41
  /**
42
42
  * Use factory function
43
43
  */
44
- useFactory?: (...args: any[]) => Promise<TimoModuleOptions> | TimoModuleOptions;
44
+ useFactory?: (...args: unknown[]) => Promise<TimoModuleOptions> | TimoModuleOptions;
45
45
  /**
46
46
  * Inject dependencies for factory
47
47
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timo-bank/nestjs",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Unofficial Timo Bank SDK - NestJS module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -39,7 +39,7 @@
39
39
  "access": "public"
40
40
  },
41
41
  "dependencies": {
42
- "@timo-bank/core": "0.1.2"
42
+ "@timo-bank/core": "0.1.3"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@nestjs/common": ">=9.0.0",