Skip to content

Commit

Permalink
feat: Added dist directory temporarily for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mani-polarr committed Feb 24, 2021
1 parent 04368b5 commit 350e68d
Show file tree
Hide file tree
Showing 21 changed files with 308 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ coverage/

# production
build/
dist/

# misc
.DS_Store
Expand Down
8 changes: 8 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfig.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export declare class FeatureConfig {
key: string;
path?: string;
deprecated?: boolean;
value?: any;
constructor(options: { key: string; value?: any; path?: string; deprecated?: boolean });
}
//# sourceMappingURL=FeatureConfig.d.ts.map
1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfig.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfig.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfig.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfigManager.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import { OnModuleDestroy, OnModuleInit } from "@nestjs/common";
import { FeatureConfig } from "./FeatureConfig";
import { FeatureConfigModuleOptions } from "./FeatureConfigModuleOptions";
export declare class FeatureConfigManager implements OnModuleInit, OnModuleDestroy {
private readonly options;
private featureConfigMap;
private redisClient?;
private redisSubscriptionClient?;
private readonly ssmClient?;
getConfigValue(options: { configName: string }): any;
reloadConfigValue(config: FeatureConfig): Promise<void>;
updateFeatureConfig(config: FeatureConfig): Promise<void>;
initializeConfig(config: FeatureConfig): Promise<void>;
private fetchParameterValue;
private getFeatureConfigMap;
private initializeFeatureConfigs;
private initFeatureConfigMap;
private getFeatureConfigKeys;
onModuleInit(): Promise<any>;
onModuleDestroy(): Promise<void>;
constructor(options: FeatureConfigModuleOptions);
}
//# sourceMappingURL=FeatureConfigManager.d.ts.map
1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfigManager.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

158 changes: 158 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfigManager.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfigManager.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfigModule.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { DynamicModule } from "@nestjs/common";
import { FeatureConfigModuleOptions } from "./FeatureConfigModuleOptions";
export declare class FeatureConfigModule {
static forRoot(options: FeatureConfigModuleOptions): DynamicModule;
static forRootAsync(options: Promise<FeatureConfigModuleOptions>): DynamicModule;
}
//# sourceMappingURL=FeatureConfigModule.d.ts.map
1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfigModule.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

51 changes: 51 additions & 0 deletions dist/lib/FeatureConfig/FeatureConfigModule.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/lib/FeatureConfig/FeatureConfigModule.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 350e68d

Please sign in to comment.