@gpc-cli/cli 0.9.41 → 0.9.42
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 +2 -2
- package/dist/{chunk-25HYD4WO.js → chunk-MO6QT7L2.js} +5 -5
- package/dist/{feedback-YIFDVXST.js → feedback-J7LXP3AW.js} +2 -2
- package/dist/index.js +1 -1
- package/dist/{update-ISG6JXID.js → update-W6INIH3K.js} +2 -2
- package/dist/{version-BN45CRWB.js → version-FXP5WOBO.js} +2 -2
- package/package.json +5 -5
- /package/dist/{chunk-25HYD4WO.js.map → chunk-MO6QT7L2.js.map} +0 -0
- /package/dist/{feedback-YIFDVXST.js.map → feedback-J7LXP3AW.js.map} +0 -0
- /package/dist/{update-ISG6JXID.js.map → update-W6INIH3K.js.map} +0 -0
- /package/dist/{version-BN45CRWB.js.map → version-FXP5WOBO.js.map} +0 -0
package/dist/bin.js
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
createProgram,
|
|
4
4
|
handleCliError,
|
|
5
5
|
loadPlugins
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-MO6QT7L2.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.
|
|
47
|
+
var currentVersion = "0.9.42";
|
|
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.
|
|
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);
|
|
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-
|
|
82
|
+
(await import("./update-W6INIH3K.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-
|
|
180
|
+
(await import("./version-FXP5WOBO.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-
|
|
186
|
+
(await import("./feedback-J7LXP3AW.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-
|
|
447
|
+
//# sourceMappingURL=chunk-MO6QT7L2.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.
|
|
12
|
+
const version = "0.9.42";
|
|
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-
|
|
70
|
+
//# sourceMappingURL=feedback-J7LXP3AW.js.map
|
package/dist/index.js
CHANGED
|
@@ -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.
|
|
19
|
+
const currentVersion = "0.9.42";
|
|
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-
|
|
163
|
+
//# sourceMappingURL=update-W6INIH3K.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.
|
|
10
|
+
const version = "0.9.42";
|
|
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-
|
|
28
|
+
//# sourceMappingURL=version-FXP5WOBO.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpc-cli/cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.42",
|
|
4
4
|
"description": "GPC — Google Play Console CLI. 187 API endpoints, one tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"commander": "^14.0.3",
|
|
22
|
-
"@gpc-cli/api": "1.0.
|
|
22
|
+
"@gpc-cli/api": "1.0.22",
|
|
23
|
+
"@gpc-cli/config": "0.9.9",
|
|
23
24
|
"@gpc-cli/auth": "0.9.10",
|
|
24
|
-
"@gpc-cli/
|
|
25
|
-
"@gpc-cli/
|
|
26
|
-
"@gpc-cli/config": "0.9.9"
|
|
25
|
+
"@gpc-cli/core": "0.9.35",
|
|
26
|
+
"@gpc-cli/plugin-sdk": "0.9.7"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"google-play",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|