@gpc-cli/cli 0.9.42 → 0.9.43

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-MO6QT7L2.js";
6
+ } from "./chunk-VK53B56I.js";
7
7
  import {
8
8
  checkForUpdate,
9
9
  formatUpdateNotification
@@ -44,7 +44,7 @@ if (!_isJsonMode && !_isQuiet && !existsSync(getUserConfigPath())) {
44
44
  }
45
45
  await setupNetworking();
46
46
  initAudit(getConfigDir());
47
- var currentVersion = "0.9.42";
47
+ var currentVersion = "0.9.43";
48
48
  var isUpdateCommand = process.argv[2] === "update";
49
49
  var updateCheckPromise = isUpdateCommand ? Promise.resolve(null) : checkForUpdate(currentVersion);
50
50
  if (process.argv.includes("--ci")) {
@@ -67,7 +67,7 @@ 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.42", "-V, --version").option("-o, --output <format>", "Output format: table, json, yaml, markdown, 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.43", "-V, --version").option("-o, --output <format>", "Output format: table, json, yaml, markdown, 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-XGSTT5G5.js")).registerAuthCommands(program);
@@ -79,7 +79,7 @@ async function createProgram(pluginManager) {
79
79
  (await import("./doctor-3Z4ARPM2.js")).registerDoctorCommand(program);
80
80
  },
81
81
  update: async () => {
82
- (await import("./update-W6INIH3K.js")).registerUpdateCommand(program);
82
+ (await import("./update-XUZHWWDD.js")).registerUpdateCommand(program);
83
83
  },
84
84
  docs: async () => {
85
85
  (await import("./docs-7DUXIKA3.js")).registerDocsCommand(program);
@@ -177,13 +177,13 @@ async function createProgram(pluginManager) {
177
177
  (await import("./install-skills-OV4HVANW.js")).registerInstallSkillsCommand(program);
178
178
  },
179
179
  version: async () => {
180
- (await import("./version-FXP5WOBO.js")).registerVersionCommand(program);
180
+ (await import("./version-ABKNE54K.js")).registerVersionCommand(program);
181
181
  },
182
182
  cache: async () => {
183
183
  (await import("./cache-SLNFRTI2.js")).registerCacheCommand(program);
184
184
  },
185
185
  feedback: async () => {
186
- (await import("./feedback-J7LXP3AW.js")).registerFeedbackCommand(program);
186
+ (await import("./feedback-MVLGSBOE.js")).registerFeedbackCommand(program);
187
187
  },
188
188
  quickstart: async () => {
189
189
  (await import("./quickstart-4HB62YEL.js")).registerQuickstartCommand(program);
@@ -444,4 +444,4 @@ export {
444
444
  createProgram,
445
445
  handleCliError
446
446
  };
447
- //# sourceMappingURL=chunk-MO6QT7L2.js.map
447
+ //# sourceMappingURL=chunk-VK53B56I.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.42";
12
+ const version = "0.9.43";
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-J7LXP3AW.js.map
70
+ //# sourceMappingURL=feedback-MVLGSBOE.js.map
package/dist/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  createProgram,
4
4
  handleCliError
5
- } from "./chunk-MO6QT7L2.js";
5
+ } from "./chunk-VK53B56I.js";
6
6
  export {
7
7
  createProgram,
8
8
  handleCliError
@@ -16,7 +16,7 @@ function registerUpdateCommand(program) {
16
16
  program.command("update").description("Update gpc to the latest version").option("--check", "Check for updates without installing (exits 0 always)").option("--force", "Update even if already on the latest version").action(async (opts, cmd) => {
17
17
  const parentOpts = cmd.parent?.opts() ?? {};
18
18
  const jsonMode = !!(parentOpts["json"] || parentOpts["output"] === "json");
19
- const currentVersion = "0.9.42";
19
+ const currentVersion = "0.9.43";
20
20
  if (currentVersion === "0.0.0") {
21
21
  if (jsonMode) {
22
22
  console.log(
@@ -160,4 +160,4 @@ Run: gpc update`);
160
160
  export {
161
161
  registerUpdateCommand
162
162
  };
163
- //# sourceMappingURL=update-W6INIH3K.js.map
163
+ //# sourceMappingURL=update-XUZHWWDD.js.map
@@ -7,7 +7,7 @@ import "./chunk-4O4D5SGL.js";
7
7
  // src/commands/version.ts
8
8
  function registerVersionCommand(program) {
9
9
  program.command("version").description("Show version information").action(() => {
10
- const version = "0.9.42";
10
+ const version = "0.9.43";
11
11
  if (program.opts()["output"] === "json") {
12
12
  console.log(
13
13
  JSON.stringify({
@@ -25,4 +25,4 @@ function registerVersionCommand(program) {
25
25
  export {
26
26
  registerVersionCommand
27
27
  };
28
- //# sourceMappingURL=version-FXP5WOBO.js.map
28
+ //# sourceMappingURL=version-ABKNE54K.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpc-cli/cli",
3
- "version": "0.9.42",
3
+ "version": "0.9.43",
4
4
  "description": "GPC — Google Play Console CLI. 187 API endpoints, one tool.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -19,10 +19,10 @@
19
19
  ],
20
20
  "dependencies": {
21
21
  "commander": "^14.0.3",
22
- "@gpc-cli/api": "1.0.22",
23
- "@gpc-cli/config": "0.9.9",
22
+ "@gpc-cli/api": "1.0.23",
24
23
  "@gpc-cli/auth": "0.9.10",
25
- "@gpc-cli/core": "0.9.35",
24
+ "@gpc-cli/core": "0.9.36",
25
+ "@gpc-cli/config": "0.9.9",
26
26
  "@gpc-cli/plugin-sdk": "0.9.7"
27
27
  },
28
28
  "keywords": [