@gpc-cli/cli 0.9.72 → 0.9.73

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.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  createProgram,
4
4
  handleCliError,
5
5
  loadPlugins
6
- } from "./chunk-CE55NKPB.js";
6
+ } from "./chunk-TXKXP5OB.js";
7
7
  import {
8
8
  checkForUpdate,
9
9
  formatUpdateNotification
@@ -57,7 +57,7 @@ if (!_isJsonMode && !_isQuiet && !_isSetupCommand && !existsSync(getUserConfigPa
57
57
  }
58
58
  await setupNetworking();
59
59
  initAudit(getConfigDir());
60
- var currentVersion = "0.9.72";
60
+ var currentVersion = "0.9.73";
61
61
  var isUpdateCommand = process.argv[2] === "update";
62
62
  var isCompletionProvider = process.argv[2] === "__complete";
63
63
  var updateCheckPromise = isUpdateCommand || isCompletionProvider ? Promise.resolve(null) : checkForUpdate(currentVersion);
@@ -67,19 +67,19 @@ function registerPluginCommands(program, manager) {
67
67
  import { Command } from "commander";
68
68
  async function createProgram(pluginManager) {
69
69
  const program = new Command();
70
- program.name("gpc").description("GPC \u2014 Google Play Console CLI").version("0.9.72", "-V, --version").option("-o, --output <format>", "Output format: table, json, yaml, markdown, csv, tsv, junit").option("-v, --verbose", "Enable debug logging").option("-q, --quiet", "Suppress non-essential output").option("-a, --app <package>", "App package name").option("-p, --profile <name>", "Auth profile name").option("--no-color", "Disable colored output").option("--no-interactive", "Disable interactive prompts").option("-y, --yes", "Skip confirmation prompts").option("--dry-run", "Preview changes without executing").option("--notify [target]", "Send webhook notification on completion (slack, discord, custom)").option("--ci", "Force CI mode (JSON output, no prompts, strict exit codes)").option("-j, --json", "Shorthand for --output json").option("--apps <csv>", "Comma-separated package names for multi-app operations").showSuggestionAfterError(false);
70
+ program.name("gpc").description("GPC \u2014 Google Play Console CLI").version("0.9.73", "-V, --version").option("-o, --output <format>", "Output format: table, json, yaml, markdown, csv, tsv, junit").option("-v, --verbose", "Enable debug logging").option("-q, --quiet", "Suppress non-essential output").option("-a, --app <package>", "App package name").option("-p, --profile <name>", "Auth profile name").option("--no-color", "Disable colored output").option("--no-interactive", "Disable interactive prompts").option("-y, --yes", "Skip confirmation prompts").option("--dry-run", "Preview changes without executing").option("--notify [target]", "Send webhook notification on completion (slack, discord, custom)").option("--ci", "Force CI mode (JSON output, no prompts, strict exit codes)").option("-j, --json", "Shorthand for --output json").option("--apps <csv>", "Comma-separated package names for multi-app operations").showSuggestionAfterError(false);
71
71
  const commandLoaders = {
72
72
  auth: async () => {
73
73
  (await import("./auth-4DRT7ZH2.js")).registerAuthCommands(program);
74
74
  },
75
75
  config: async () => {
76
- (await import("./config-FRRVRPMS.js")).registerConfigCommands(program);
76
+ (await import("./config-4XQ6IDUL.js")).registerConfigCommands(program);
77
77
  },
78
78
  doctor: async () => {
79
- (await import("./doctor-YAGR6P4M.js")).registerDoctorCommand(program);
79
+ (await import("./doctor-HG6RAGIX.js")).registerDoctorCommand(program);
80
80
  },
81
81
  update: async () => {
82
- (await import("./update-C2J3PFBR.js")).registerUpdateCommand(program);
82
+ (await import("./update-OBVICSJY.js")).registerUpdateCommand(program);
83
83
  },
84
84
  docs: async () => {
85
85
  (await import("./docs-OU6LSSJD.js")).registerDocsCommand(program);
@@ -199,13 +199,13 @@ async function createProgram(pluginManager) {
199
199
  (await import("./verify-O2PSBTIC.js")).registerVerifyCommand(program);
200
200
  },
201
201
  version: async () => {
202
- (await import("./version-NBZL2G7F.js")).registerVersionCommand(program);
202
+ (await import("./version-GEAIW3J7.js")).registerVersionCommand(program);
203
203
  },
204
204
  cache: async () => {
205
205
  (await import("./cache-FGNP7Y37.js")).registerCacheCommand(program);
206
206
  },
207
207
  feedback: async () => {
208
- (await import("./feedback-X24F7JNC.js")).registerFeedbackCommand(program);
208
+ (await import("./feedback-D6UPL6KC.js")).registerFeedbackCommand(program);
209
209
  },
210
210
  setup: async () => {
211
211
  (await import("./setup-IKHZQJIH.js")).registerSetupCommand(program);
@@ -479,4 +479,4 @@ export {
479
479
  createProgram,
480
480
  handleCliError
481
481
  };
482
- //# sourceMappingURL=chunk-CE55NKPB.js.map
482
+ //# sourceMappingURL=chunk-TXKXP5OB.js.map
@@ -78,7 +78,7 @@ Configuration file created: ${path}`);
78
78
  });
79
79
  console.log("\nVerifying setup...");
80
80
  try {
81
- const { registerDoctorCommand } = await import("./doctor-YAGR6P4M.js");
81
+ const { registerDoctorCommand } = await import("./doctor-HG6RAGIX.js");
82
82
  const { Command } = await import("commander");
83
83
  const doctorProgram = new Command();
84
84
  doctorProgram.option("-o, --output <format>", "Output format").option("-j, --json", "JSON mode");
@@ -107,4 +107,4 @@ Configuration file created: ${path}`);
107
107
  export {
108
108
  registerConfigCommands
109
109
  };
110
- //# sourceMappingURL=config-FRRVRPMS.js.map
110
+ //# sourceMappingURL=config-4XQ6IDUL.js.map
@@ -142,7 +142,7 @@ function checkCiEnvironment() {
142
142
  };
143
143
  }
144
144
  async function checkGpcVersion() {
145
- const currentVersion = "0.9.72";
145
+ const currentVersion = "0.9.73";
146
146
  if (currentVersion === "0.0.0") {
147
147
  return { name: "version", status: "info", message: "GPC development build" };
148
148
  }
@@ -1136,4 +1136,4 @@ export {
1136
1136
  checkVerificationDeadline,
1137
1137
  registerDoctorCommand
1138
1138
  };
1139
- //# sourceMappingURL=doctor-YAGR6P4M.js.map
1139
+ //# sourceMappingURL=doctor-HG6RAGIX.js.map
@@ -9,7 +9,7 @@ import { execFile } from "child_process";
9
9
  import { listAuditEvents } from "@gpc-cli/core";
10
10
  function registerFeedbackCommand(program) {
11
11
  program.command("feedback").description("Open a pre-filled GitHub issue with system diagnostics").option("--title <title>", "Issue title").option("--print", "Print the report to stdout instead of opening a browser").action(async (opts) => {
12
- const version = "0.9.72";
12
+ const version = "0.9.73";
13
13
  let lastCommand = "";
14
14
  try {
15
15
  const events = await listAuditEvents({ limit: 3 });
@@ -67,4 +67,4 @@ ${url}`);
67
67
  export {
68
68
  registerFeedbackCommand
69
69
  };
70
- //# sourceMappingURL=feedback-X24F7JNC.js.map
70
+ //# sourceMappingURL=feedback-D6UPL6KC.js.map