@itgorillaz/configify 1.3.0 → 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/dist/src/configify.module.js.map +1 -1
- package/dist/src/configuration/resolvers/aws/parameter-store-configuration.resolver.js.map +1 -1
- package/dist/src/configuration/resolvers/aws/secrets-manager-configuration.resolver.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/configify.module.ts +1 -1
- package/src/configuration/resolvers/aws/parameter-store-configuration.resolver.ts +1 -1
- package/src/configuration/resolvers/aws/secrets-manager-configuration.resolver.ts +1 -1
package/package.json
CHANGED
package/src/configify.module.ts
CHANGED
|
@@ -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
|
}
|