@itgorillaz/configify 1.3.1 → 1.3.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itgorillaz/configify",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "NestJS Config on Steroids",
5
5
  "author": "tommelo",
6
6
  "private": false,
@@ -134,7 +134,7 @@ export class ConfigifyModule {
134
134
  * @returns {ConfigurationProviders} the module configuration providers
135
135
  */
136
136
  private static buildConfigurationProviders(): ConfigurationProviders {
137
- const exports = [];
137
+ const exports: unknown[] = [];
138
138
  const providers: Provider[] = [];
139
139
 
140
140
  const registry = ConfigurationRegistry.getRegistry();
@@ -106,7 +106,7 @@ export class AwsParameterStoreConfigurationResolver
106
106
  private buildBulkRequest(
107
107
  config: Record<string, any>,
108
108
  ): Promise<ResolvedValue>[] {
109
- const promises = [];
109
+ const promises: Promise<ResolvedValue>[] = [];
110
110
  for (const [key, value] of Object.entries(config)) {
111
111
  promises.push(this.resolveSecretValue(key, value));
112
112
  }
@@ -108,7 +108,7 @@ export class AwsSecretsManagerConfigurationResolver
108
108
  private buildBulkRequest(
109
109
  config: Record<string, any>,
110
110
  ): Promise<ResolvedValue>[] {
111
- const promises = [];
111
+ const promises: Promise<ResolvedValue>[] = [];
112
112
  for (const [key, value] of Object.entries(config)) {
113
113
  promises.push(this.resolveSecretValue(key, value));
114
114
  }