inboxctl 0.4.0 → 0.5.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/README.md +5 -2
- package/dist/{chunk-2PN3TSVQ.js → chunk-5RC6TQRY.js} +2950 -2598
- package/dist/chunk-5RC6TQRY.js.map +1 -0
- package/dist/cli.js +7 -2
- package/dist/cli.js.map +1 -1
- package/dist/mcp.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-2PN3TSVQ.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -69,7 +69,7 @@ import {
|
|
|
69
69
|
syncLabels,
|
|
70
70
|
undoRun,
|
|
71
71
|
unsubscribe
|
|
72
|
-
} from "./chunk-
|
|
72
|
+
} from "./chunk-5RC6TQRY.js";
|
|
73
73
|
|
|
74
74
|
// src/cli.ts
|
|
75
75
|
import { Command } from "commander";
|
|
@@ -1877,6 +1877,11 @@ var DemoTransport = class {
|
|
|
1877
1877
|
throw new Error(`Demo filter not found: ${id}`);
|
|
1878
1878
|
}
|
|
1879
1879
|
}
|
|
1880
|
+
async deleteLabel(id) {
|
|
1881
|
+
if (!this.labels.delete(id)) {
|
|
1882
|
+
throw new Error(`Demo label not found: ${id}`);
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1880
1885
|
};
|
|
1881
1886
|
function createDemoTransport(dataset) {
|
|
1882
1887
|
return new DemoTransport(dataset);
|
|
@@ -4291,7 +4296,7 @@ function printDriftReport(result) {
|
|
|
4291
4296
|
);
|
|
4292
4297
|
}
|
|
4293
4298
|
}
|
|
4294
|
-
program.name("inboxctl").description("CLI email management with MCP server, rules-as-code, and TUI").version("0.
|
|
4299
|
+
program.name("inboxctl").description("CLI email management with MCP server, rules-as-code, and TUI").version("0.5.0").option("--demo", "Launch the seeded demo mailbox").option("--no-sync", "Launch the TUI without running the initial background sync");
|
|
4295
4300
|
program.command("setup").description("Run the interactive Google Cloud and OAuth setup wizard").option("--skip-gcloud", "Skip gcloud detection and API enablement").option("--project <id>", "Pre-set the Google Cloud project ID").action(async (options) => {
|
|
4296
4301
|
try {
|
|
4297
4302
|
await runSetupWizard({
|