Skip to content

Commit

Permalink
build : v1.0.0
Browse files Browse the repository at this point in the history
essential2189 committed May 1, 2023
1 parent 177f216 commit d88a8aa
Showing 120 changed files with 930 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export * from "./nestjs-parameter-store.module";
export * from "./services/aws-param-store.service";
export * from "./nestjs-parameter-store.constant";
export * from "./interfaces";
export * from "./providers";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/index.d.ts.map

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

22 changes: 22 additions & 0 deletions dist/index.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/index.js.map

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

12 changes: 12 additions & 0 deletions dist/interfaces/config-param-store-async.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ModuleMetadata, Type } from "@nestjs/common";
import { GetParametersByPathRequest } from "@aws-sdk/client-ssm";
export interface ConfigParamStoreFactory {
createOptions(): Promise<GetParametersByPathRequest> | GetParametersByPathRequest;
}
export interface ConfigParamStoreAsync extends Pick<ModuleMetadata, "imports"> {
useExisting?: Type<ConfigParamStoreFactory>;
useClass?: Type<ConfigParamStoreFactory>;
useFactory?: (...args: any[]) => Promise<GetParametersByPathRequest> | GetParametersByPathRequest;
inject?: any[];
}
//# sourceMappingURL=config-param-store-async.interface.d.ts.map

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

3 changes: 3 additions & 0 deletions dist/interfaces/config-param-store-async.interface.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/interfaces/config-param-store-async.interface.js.map

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

12 changes: 12 additions & 0 deletions dist/interfaces/config-ssm-client-async.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ModuleMetadata, Type } from "@nestjs/common";
import { SSMClientConfig } from "@aws-sdk/client-ssm";
export interface ConfigSsmClientFactory {
createOptions(): Promise<SSMClientConfig> | SSMClientConfig;
}
export interface ConfigSsmClientAsync extends Pick<ModuleMetadata, "imports"> {
useExisting?: Type<ConfigSsmClientFactory>;
useClass?: Type<ConfigSsmClientFactory>;
useFactory?: (...args: any[]) => Promise<SSMClientConfig> | SSMClientConfig;
inject?: any[];
}
//# sourceMappingURL=config-ssm-client-async.interface.d.ts.map
1 change: 1 addition & 0 deletions dist/interfaces/config-ssm-client-async.interface.d.ts.map

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

3 changes: 3 additions & 0 deletions dist/interfaces/config-ssm-client-async.interface.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/interfaces/config-ssm-client-async.interface.js.map

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

5 changes: 5 additions & 0 deletions dist/interfaces/get-param-by-path.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { GetParametersByPathRequest } from "@aws-sdk/client-ssm";
export interface GetParamByPathRequest extends GetParametersByPathRequest {
OnlyValue?: boolean;
}
//# sourceMappingURL=get-param-by-path.interface.d.ts.map
1 change: 1 addition & 0 deletions dist/interfaces/get-param-by-path.interface.d.ts.map

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

3 changes: 3 additions & 0 deletions dist/interfaces/get-param-by-path.interface.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/interfaces/get-param-by-path.interface.js.map

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

4 changes: 4 additions & 0 deletions dist/interfaces/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from "./config-param-store-async.interface";
export * from "./config-ssm-client-async.interface";
export * from "./get-param-by-path.interface";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/interfaces/index.d.ts.map

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

20 changes: 20 additions & 0 deletions dist/interfaces/index.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/interfaces/index.js.map

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

4 changes: 4 additions & 0 deletions dist/nestjs-parameter-store.constant.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export declare const SSM_CLIENT = "SSM_CLIENT";
export declare const CONFIG_OPTIONS = "CONFIG_OPTIONS";
export declare const GET_PARAMETERS = "GET_PARAMETERS";
//# sourceMappingURL=nestjs-parameter-store.constant.d.ts.map
1 change: 1 addition & 0 deletions dist/nestjs-parameter-store.constant.d.ts.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/nestjs-parameter-store.constant.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/nestjs-parameter-store.constant.js.map

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

12 changes: 12 additions & 0 deletions dist/nestjs-parameter-store.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { DynamicModule } from "@nestjs/common";
import { ConfigParamStoreAsync, ConfigSsmClientAsync } from "./interfaces";
import { GetParametersByPathRequest, SSMClientConfig } from "@aws-sdk/client-ssm";
export declare class NestjsParameterStoreModule {
static forRoot(options: SSMClientConfig): DynamicModule;
static forRootAsync(options: ConfigSsmClientAsync): DynamicModule;
static registerParamStore(options: GetParametersByPathRequest): DynamicModule;
static registerParamStoreAsync(options: ConfigParamStoreAsync): DynamicModule;
private static asyncSsmClientProvider;
private static asyncParamStoreProvider;
}
//# sourceMappingURL=nestjs-parameter-store.module.d.ts.map
1 change: 1 addition & 0 deletions dist/nestjs-parameter-store.module.d.ts.map

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

84 changes: 84 additions & 0 deletions dist/nestjs-parameter-store.module.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/nestjs-parameter-store.module.js.map

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

4 changes: 4 additions & 0 deletions dist/providers/config-param-store-async.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Provider } from "@nestjs/common";
import { ConfigParamStoreAsync } from "../interfaces";
export declare const configParamStoreAsyncProvider: (options: ConfigParamStoreAsync) => Provider;
//# sourceMappingURL=config-param-store-async.provider.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/config-param-store-async.provider.d.ts.map

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

32 changes: 32 additions & 0 deletions dist/providers/config-param-store-async.provider.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/providers/config-param-store-async.provider.js.map

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

4 changes: 4 additions & 0 deletions dist/providers/config-register.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { ValueProvider } from "@nestjs/common";
import { GetParametersByPathRequest, SSMClientConfig } from "@aws-sdk/client-ssm";
export declare const configRegisterProvider: (options: SSMClientConfig | GetParametersByPathRequest) => ValueProvider<SSMClientConfig | GetParametersByPathRequest>;
//# sourceMappingURL=config-register.provider.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/config-register.provider.d.ts.map
12 changes: 12 additions & 0 deletions dist/providers/config-register.provider.js
1 change: 1 addition & 0 deletions dist/providers/config-register.provider.js.map
4 changes: 4 additions & 0 deletions dist/providers/config-ssm-client-async.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Provider } from "@nestjs/common";
import { ConfigSsmClientAsync } from "../interfaces";
export declare const configSsmClientAsyncProvider: (options: ConfigSsmClientAsync) => Provider;
//# sourceMappingURL=config-ssm-client-async.provider.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/config-ssm-client-async.provider.d.ts.map
32 changes: 32 additions & 0 deletions dist/providers/config-ssm-client-async.provider.js
1 change: 1 addition & 0 deletions dist/providers/config-ssm-client-async.provider.js.map
4 changes: 4 additions & 0 deletions dist/providers/get-parameters.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FactoryProvider } from "@nestjs/common";
import { Parameter } from "@aws-sdk/client-ssm";
export declare const getParametersProvider: FactoryProvider<Parameter[] | Record<string, unknown>>;
//# sourceMappingURL=get-parameters.provider.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/get-parameters.provider.d.ts.map
13 changes: 13 additions & 0 deletions dist/providers/get-parameters.provider.js
1 change: 1 addition & 0 deletions dist/providers/get-parameters.provider.js.map
6 changes: 6 additions & 0 deletions dist/providers/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export * from "./get-parameters.provider";
export * from "./ssm-client.provider";
export * from "./config-register.provider";
export * from "./config-param-store-async.provider";
export * from "./config-ssm-client-async.provider";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/index.d.ts.map
22 changes: 22 additions & 0 deletions dist/providers/index.js
1 change: 1 addition & 0 deletions dist/providers/index.js.map
4 changes: 4 additions & 0 deletions dist/providers/ssm-client.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FactoryProvider } from "@nestjs/common";
import { SSMClient } from "@aws-sdk/client-ssm";
export declare const ssmClientProvider: FactoryProvider<SSMClient>;
//# sourceMappingURL=ssm-client.provider.d.ts.map
1 change: 1 addition & 0 deletions dist/providers/ssm-client.provider.d.ts.map
22 changes: 22 additions & 0 deletions dist/providers/ssm-client.provider.js
1 change: 1 addition & 0 deletions dist/providers/ssm-client.provider.js.map
11 changes: 11 additions & 0 deletions dist/services/aws-param-store.service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { GetParameterRequest, GetParametersRequest, Parameter, SSMClient } from "@aws-sdk/client-ssm";
import { GetParamByPathRequest } from "../interfaces";
export declare class AwsParamStoreService {
private readonly ssmClient;
constructor(ssmClient: SSMClient);
getParameter(options: GetParameterRequest): Promise<Parameter | undefined>;
getParameters(options: GetParametersRequest): Promise<Parameter[] | undefined>;
getParametersByPath(options: GetParamByPathRequest): Promise<Parameter[] | Record<string, unknown>>;
private getValueObject;
}
//# sourceMappingURL=aws-param-store.service.d.ts.map
1 change: 1 addition & 0 deletions dist/services/aws-param-store.service.d.ts.map
101 changes: 101 additions & 0 deletions dist/services/aws-param-store.service.js
1 change: 1 addition & 0 deletions dist/services/aws-param-store.service.js.map
2 changes: 2 additions & 0 deletions dist/services/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { AwsParamStoreService } from "./aws-param-store.service";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions dist/services/index.d.ts.map
6 changes: 6 additions & 0 deletions dist/services/index.js
1 change: 1 addition & 0 deletions dist/services/index.js.map
6 changes: 6 additions & 0 deletions esm/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export * from "./nestjs-parameter-store.module";
export * from "./services/aws-param-store.service";
export * from "./nestjs-parameter-store.constant";
export * from "./interfaces";
export * from "./providers";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions esm/index.d.ts.map
6 changes: 6 additions & 0 deletions esm/index.js
1 change: 1 addition & 0 deletions esm/index.js.map
12 changes: 12 additions & 0 deletions esm/interfaces/config-param-store-async.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ModuleMetadata, Type } from "@nestjs/common";
import { GetParametersByPathRequest } from "@aws-sdk/client-ssm";
export interface ConfigParamStoreFactory {
createOptions(): Promise<GetParametersByPathRequest> | GetParametersByPathRequest;
}
export interface ConfigParamStoreAsync extends Pick<ModuleMetadata, "imports"> {
useExisting?: Type<ConfigParamStoreFactory>;
useClass?: Type<ConfigParamStoreFactory>;
useFactory?: (...args: any[]) => Promise<GetParametersByPathRequest> | GetParametersByPathRequest;
inject?: any[];
}
//# sourceMappingURL=config-param-store-async.interface.d.ts.map
1 change: 1 addition & 0 deletions esm/interfaces/config-param-store-async.interface.d.ts.map
2 changes: 2 additions & 0 deletions esm/interfaces/config-param-store-async.interface.js
1 change: 1 addition & 0 deletions esm/interfaces/config-param-store-async.interface.js.map
12 changes: 12 additions & 0 deletions esm/interfaces/config-ssm-client-async.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ModuleMetadata, Type } from "@nestjs/common";
import { SSMClientConfig } from "@aws-sdk/client-ssm";
export interface ConfigSsmClientFactory {
createOptions(): Promise<SSMClientConfig> | SSMClientConfig;
}
export interface ConfigSsmClientAsync extends Pick<ModuleMetadata, "imports"> {
useExisting?: Type<ConfigSsmClientFactory>;
useClass?: Type<ConfigSsmClientFactory>;
useFactory?: (...args: any[]) => Promise<SSMClientConfig> | SSMClientConfig;
inject?: any[];
}
//# sourceMappingURL=config-ssm-client-async.interface.d.ts.map
1 change: 1 addition & 0 deletions esm/interfaces/config-ssm-client-async.interface.d.ts.map
2 changes: 2 additions & 0 deletions esm/interfaces/config-ssm-client-async.interface.js
1 change: 1 addition & 0 deletions esm/interfaces/config-ssm-client-async.interface.js.map
5 changes: 5 additions & 0 deletions esm/interfaces/get-param-by-path.interface.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { GetParametersByPathRequest } from "@aws-sdk/client-ssm";
export interface GetParamByPathRequest extends GetParametersByPathRequest {
OnlyValue?: boolean;
}
//# sourceMappingURL=get-param-by-path.interface.d.ts.map
1 change: 1 addition & 0 deletions esm/interfaces/get-param-by-path.interface.d.ts.map
2 changes: 2 additions & 0 deletions esm/interfaces/get-param-by-path.interface.js
1 change: 1 addition & 0 deletions esm/interfaces/get-param-by-path.interface.js.map
4 changes: 4 additions & 0 deletions esm/interfaces/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from "./config-param-store-async.interface";
export * from "./config-ssm-client-async.interface";
export * from "./get-param-by-path.interface";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions esm/interfaces/index.d.ts.map
4 changes: 4 additions & 0 deletions esm/interfaces/index.js
1 change: 1 addition & 0 deletions esm/interfaces/index.js.map
4 changes: 4 additions & 0 deletions esm/nestjs-parameter-store.constant.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export declare const SSM_CLIENT = "SSM_CLIENT";
export declare const CONFIG_OPTIONS = "CONFIG_OPTIONS";
export declare const GET_PARAMETERS = "GET_PARAMETERS";
//# sourceMappingURL=nestjs-parameter-store.constant.d.ts.map
1 change: 1 addition & 0 deletions esm/nestjs-parameter-store.constant.d.ts.map
4 changes: 4 additions & 0 deletions esm/nestjs-parameter-store.constant.js
1 change: 1 addition & 0 deletions esm/nestjs-parameter-store.constant.js.map
12 changes: 12 additions & 0 deletions esm/nestjs-parameter-store.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { DynamicModule } from "@nestjs/common";
import { ConfigParamStoreAsync, ConfigSsmClientAsync } from "./interfaces";
import { GetParametersByPathRequest, SSMClientConfig } from "@aws-sdk/client-ssm";
export declare class NestjsParameterStoreModule {
static forRoot(options: SSMClientConfig): DynamicModule;
static forRootAsync(options: ConfigSsmClientAsync): DynamicModule;
static registerParamStore(options: GetParametersByPathRequest): DynamicModule;
static registerParamStoreAsync(options: ConfigParamStoreAsync): DynamicModule;
private static asyncSsmClientProvider;
private static asyncParamStoreProvider;
}
//# sourceMappingURL=nestjs-parameter-store.module.d.ts.map
1 change: 1 addition & 0 deletions esm/nestjs-parameter-store.module.d.ts.map
81 changes: 81 additions & 0 deletions esm/nestjs-parameter-store.module.js
1 change: 1 addition & 0 deletions esm/nestjs-parameter-store.module.js.map
4 changes: 4 additions & 0 deletions esm/providers/config-param-store-async.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Provider } from "@nestjs/common";
import { ConfigParamStoreAsync } from "../interfaces";
export declare const configParamStoreAsyncProvider: (options: ConfigParamStoreAsync) => Provider;
//# sourceMappingURL=config-param-store-async.provider.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/config-param-store-async.provider.d.ts.map
28 changes: 28 additions & 0 deletions esm/providers/config-param-store-async.provider.js
1 change: 1 addition & 0 deletions esm/providers/config-param-store-async.provider.js.map
4 changes: 4 additions & 0 deletions esm/providers/config-register.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { ValueProvider } from "@nestjs/common";
import { GetParametersByPathRequest, SSMClientConfig } from "@aws-sdk/client-ssm";
export declare const configRegisterProvider: (options: SSMClientConfig | GetParametersByPathRequest) => ValueProvider<SSMClientConfig | GetParametersByPathRequest>;
//# sourceMappingURL=config-register.provider.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/config-register.provider.d.ts.map
8 changes: 8 additions & 0 deletions esm/providers/config-register.provider.js
1 change: 1 addition & 0 deletions esm/providers/config-register.provider.js.map
4 changes: 4 additions & 0 deletions esm/providers/config-ssm-client-async.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Provider } from "@nestjs/common";
import { ConfigSsmClientAsync } from "../interfaces";
export declare const configSsmClientAsyncProvider: (options: ConfigSsmClientAsync) => Provider;
//# sourceMappingURL=config-ssm-client-async.provider.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/config-ssm-client-async.provider.d.ts.map
28 changes: 28 additions & 0 deletions esm/providers/config-ssm-client-async.provider.js
1 change: 1 addition & 0 deletions esm/providers/config-ssm-client-async.provider.js.map
4 changes: 4 additions & 0 deletions esm/providers/get-parameters.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FactoryProvider } from "@nestjs/common";
import { Parameter } from "@aws-sdk/client-ssm";
export declare const getParametersProvider: FactoryProvider<Parameter[] | Record<string, unknown>>;
//# sourceMappingURL=get-parameters.provider.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/get-parameters.provider.d.ts.map
10 changes: 10 additions & 0 deletions esm/providers/get-parameters.provider.js
1 change: 1 addition & 0 deletions esm/providers/get-parameters.provider.js.map
6 changes: 6 additions & 0 deletions esm/providers/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export * from "./get-parameters.provider";
export * from "./ssm-client.provider";
export * from "./config-register.provider";
export * from "./config-param-store-async.provider";
export * from "./config-ssm-client-async.provider";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/index.d.ts.map
6 changes: 6 additions & 0 deletions esm/providers/index.js
1 change: 1 addition & 0 deletions esm/providers/index.js.map
4 changes: 4 additions & 0 deletions esm/providers/ssm-client.provider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FactoryProvider } from "@nestjs/common";
import { SSMClient } from "@aws-sdk/client-ssm";
export declare const ssmClientProvider: FactoryProvider<SSMClient>;
//# sourceMappingURL=ssm-client.provider.d.ts.map
1 change: 1 addition & 0 deletions esm/providers/ssm-client.provider.d.ts.map
19 changes: 19 additions & 0 deletions esm/providers/ssm-client.provider.js
1 change: 1 addition & 0 deletions esm/providers/ssm-client.provider.js.map
11 changes: 11 additions & 0 deletions esm/services/aws-param-store.service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { GetParameterRequest, GetParametersRequest, Parameter, SSMClient } from "@aws-sdk/client-ssm";
import { GetParamByPathRequest } from "../interfaces";
export declare class AwsParamStoreService {
private readonly ssmClient;
constructor(ssmClient: SSMClient);
getParameter(options: GetParameterRequest): Promise<Parameter | undefined>;
getParameters(options: GetParametersRequest): Promise<Parameter[] | undefined>;
getParametersByPath(options: GetParamByPathRequest): Promise<Parameter[] | Record<string, unknown>>;
private getValueObject;
}
//# sourceMappingURL=aws-param-store.service.d.ts.map
1 change: 1 addition & 0 deletions esm/services/aws-param-store.service.d.ts.map
98 changes: 98 additions & 0 deletions esm/services/aws-param-store.service.js
1 change: 1 addition & 0 deletions esm/services/aws-param-store.service.js.map
2 changes: 2 additions & 0 deletions esm/services/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { AwsParamStoreService } from "./aws-param-store.service";
//# sourceMappingURL=index.d.ts.map
1 change: 1 addition & 0 deletions esm/services/index.d.ts.map
2 changes: 2 additions & 0 deletions esm/services/index.js
1 change: 1 addition & 0 deletions esm/services/index.js.map

0 comments on commit d88a8aa

Please sign in to comment.