dblx 0.1.48 → 0.1.49
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2714,7 +2714,7 @@ function localDate(dateArg) {
|
|
|
2714
2714
|
const d2 = String(now.getDate()).padStart(2, "0");
|
|
2715
2715
|
return `${y}-${m}-${d2}`;
|
|
2716
2716
|
}
|
|
2717
|
-
var todayCommand = new Command("today").description("Today view — threads and daily note").option("--date <date>", "Date (YYYY-MM-DD)").option("--json", "Output as JSON").action(async (opts) => {
|
|
2717
|
+
var todayCommand = new Command("today").description("Today view — threads and daily note").enablePositionalOptions().passThroughOptions().option("--date <date>", "Date (YYYY-MM-DD)").option("--json", "Output as JSON").action(async (opts) => {
|
|
2718
2718
|
const date = localDate(opts.date);
|
|
2719
2719
|
const api = getApi();
|
|
2720
2720
|
const { data, error } = await api.api.cli.v1.today.get({
|
|
@@ -2776,7 +2776,7 @@ var todayCommand = new Command("today").description("Today view — threads and
|
|
|
2776
2776
|
// package.json
|
|
2777
2777
|
var package_default = {
|
|
2778
2778
|
name: "dblx",
|
|
2779
|
-
version: "0.1.
|
|
2779
|
+
version: "0.1.49",
|
|
2780
2780
|
description: "CLI for dblebox — thread-first communication",
|
|
2781
2781
|
type: "module",
|
|
2782
2782
|
bin: {
|
|
@@ -2801,7 +2801,7 @@ var package_default = {
|
|
|
2801
2801
|
};
|
|
2802
2802
|
|
|
2803
2803
|
// src/index.ts
|
|
2804
|
-
var program2 = new Command().name("dblx").description("CLI for dblebox — thread-first communication").version(package_default.version);
|
|
2804
|
+
var program2 = new Command().name("dblx").description("CLI for dblebox — thread-first communication").version(package_default.version).enablePositionalOptions();
|
|
2805
2805
|
program2.addCommand(authCommand);
|
|
2806
2806
|
program2.addCommand(threadsCommand);
|
|
2807
2807
|
program2.addCommand(commentsCommand);
|