@penvhq/cli 0.13.0 → 0.15.0
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/bin.cjs +281 -292
- package/dist/bin.cjs.map +1 -1
- package/dist/{chunk-OBIHFXCK.js → chunk-4RR6UFVZ.js} +48 -23
- package/dist/chunk-4RR6UFVZ.js.map +1 -0
- package/dist/index.cjs +137 -153
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/index.js +120 -135
- package/dist/index.js.map +1 -1
- package/dist/install.cjs +48 -22
- package/dist/install.cjs.map +1 -1
- package/dist/install.d.cts +29 -4
- package/dist/install.d.ts +29 -4
- package/dist/install.js +3 -1
- package/package.json +7 -7
- package/dist/chunk-OBIHFXCK.js.map +0 -1
package/dist/index.d.cts
CHANGED
|
@@ -968,13 +968,9 @@ interface PushOptions {
|
|
|
968
968
|
readonly envFlags?: readonly string[];
|
|
969
969
|
/** Permits sealed values to be decrypted locally and pushed as plaintext for the destination to re-seal. */
|
|
970
970
|
readonly allowDecrypt?: boolean;
|
|
971
|
-
/** One-shot destination override: a provider package name. Nothing is persisted. */
|
|
972
|
-
readonly destination?: string;
|
|
973
|
-
/** The destination-side place, when `destination` needs one — `--location`. */
|
|
974
|
-
readonly location?: string;
|
|
975
971
|
/** Pre-approves creating a missing destination-side target (`--yes`). */
|
|
976
972
|
readonly yes?: boolean;
|
|
977
|
-
/** Injected in tests: the destination provider. Defaults to the one the
|
|
973
|
+
/** Injected in tests: the destination provider. Defaults to the one the environment's entry declares. */
|
|
978
974
|
readonly provider?: AnyProvider;
|
|
979
975
|
/** Injected in tests: answers the create-target question. Defaults to a terminal prompt. */
|
|
980
976
|
readonly confirm?: (question: string) => Promise<boolean>;
|
|
@@ -987,8 +983,6 @@ interface PushResult {
|
|
|
987
983
|
readonly destination: string;
|
|
988
984
|
/** What the destination holds, which decided what crossed. */
|
|
989
985
|
readonly mode: "records" | "projection";
|
|
990
|
-
/** The `location` targeted, when one was declared. */
|
|
991
|
-
readonly location: string | undefined;
|
|
992
986
|
/** Values sent — resolved secrets for a projection, value files for records. */
|
|
993
987
|
readonly pushed: number;
|
|
994
988
|
/** Meta records mirrored. Records mode only. */
|
package/dist/index.d.ts
CHANGED
|
@@ -968,13 +968,9 @@ interface PushOptions {
|
|
|
968
968
|
readonly envFlags?: readonly string[];
|
|
969
969
|
/** Permits sealed values to be decrypted locally and pushed as plaintext for the destination to re-seal. */
|
|
970
970
|
readonly allowDecrypt?: boolean;
|
|
971
|
-
/** One-shot destination override: a provider package name. Nothing is persisted. */
|
|
972
|
-
readonly destination?: string;
|
|
973
|
-
/** The destination-side place, when `destination` needs one — `--location`. */
|
|
974
|
-
readonly location?: string;
|
|
975
971
|
/** Pre-approves creating a missing destination-side target (`--yes`). */
|
|
976
972
|
readonly yes?: boolean;
|
|
977
|
-
/** Injected in tests: the destination provider. Defaults to the one the
|
|
973
|
+
/** Injected in tests: the destination provider. Defaults to the one the environment's entry declares. */
|
|
978
974
|
readonly provider?: AnyProvider;
|
|
979
975
|
/** Injected in tests: answers the create-target question. Defaults to a terminal prompt. */
|
|
980
976
|
readonly confirm?: (question: string) => Promise<boolean>;
|
|
@@ -987,8 +983,6 @@ interface PushResult {
|
|
|
987
983
|
readonly destination: string;
|
|
988
984
|
/** What the destination holds, which decided what crossed. */
|
|
989
985
|
readonly mode: "records" | "projection";
|
|
990
|
-
/** The `location` targeted, when one was declared. */
|
|
991
|
-
readonly location: string | undefined;
|
|
992
986
|
/** Values sent — resolved secrets for a projection, value files for records. */
|
|
993
987
|
readonly pushed: number;
|
|
994
988
|
/** Meta records mirrored. Records mode only. */
|