Skip to content

Commit 35a9fec

Browse files
Release
1 parent 6138691 commit 35a9fec

28 files changed

+46
-1848
lines changed

.github/workflows/ci.yaml

-39
This file was deleted.

.github/workflows/debug.yaml

-39
This file was deleted.

.github/workflows/publish-action.yaml

-37
This file was deleted.

.github/workflows/release.yaml

-29
This file was deleted.

.gitignore

-26
This file was deleted.

.husky/pre-commit

-1
This file was deleted.

biome.json

-30
This file was deleted.

dist/index.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"type": "module"
3+
}

dist/src/constant.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export declare const MAX_CONCURRENT_SSM_PROMISES = 3;
2+
export declare const ENV_FILENAME = ".env";
3+
export declare const ENV_OUTPUT_KEY = "env";
4+
//# sourceMappingURL=constant.d.ts.map

dist/src/constant.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/src/env.d.ts

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export declare const env: {
2+
SECRET: string;
3+
WITH_DECRYPTION: boolean;
4+
PARAMETER_PREFIX: string | undefined;
5+
ENV_FILE_PATH: string;
6+
IS_JSON: boolean;
7+
};
8+
//# sourceMappingURL=env.d.ts.map

dist/src/env.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/src/index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export {};
2+
//# sourceMappingURL=index.d.ts.map

dist/src/index.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/src/schemas.d.ts

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { z } from "zod";
2+
type Literal = z.infer<typeof literalSchema>;
3+
type Json = Literal | {
4+
[key: string]: Json;
5+
} | Json[];
6+
declare const literalSchema: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
7+
export declare const jsonSchema: z.ZodType<Json>;
8+
export declare const parsedSecret: z.ZodArray<z.ZodTuple<[z.ZodString, z.ZodString], null>, "many">;
9+
export type ParsedSecret = z.infer<typeof parsedSecret>;
10+
export {};
11+
//# sourceMappingURL=schemas.d.ts.map

dist/src/schemas.d.ts.map

+1
Original file line numberDiff line numberDiff line change

dist/src/utils.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { Effect } from "effect";
2+
import { type ParsedSecret } from "./schemas.js";
3+
export declare const loadParameterFromSSM: (name: string, WithDecryption: boolean) => Promise<string | undefined>;
4+
export declare const parseSecrets: (secret: string, isJSON: boolean) => [string, string][];
5+
export declare const fetchParameters: (pathKey: string, { prefix, withDecryption, }: {
6+
prefix: string | undefined;
7+
withDecryption: boolean;
8+
}) => Effect.Effect<string | undefined, import("effect/Cause").UnknownException, never>;
9+
export declare const saveEnvToPath: (path: string, result: ParsedSecret) => Promise<void>;
10+
//# sourceMappingURL=utils.d.ts.map

dist/src/utils.d.ts.map

+1
Original file line numberDiff line numberDiff line change

package.json

-52
This file was deleted.

0 commit comments

Comments
 (0)