@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/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 config (or `--destination`) declares. */
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 config (or `--destination`) declares. */
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. */