vibedate 0.7.2 → 0.8.1

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.
@@ -1,3 +1,9 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
1
7
  // src/index.ts
2
8
  import { readHarnessUsage } from "@pooriaarab/vibe-core";
3
9
  import { createConsentLedger as createConsentLedger2 } from "@pooriaarab/vibe-core";
@@ -1378,6 +1384,7 @@ function matches(myLeague, candidates = CANDIDATES) {
1378
1384
  }
1379
1385
 
1380
1386
  export {
1387
+ __export,
1381
1388
  parseFrame,
1382
1389
  defaultStateDir,
1383
1390
  connectProfile,
package/dist/cli.d.ts CHANGED
@@ -44,5 +44,10 @@ declare function formatAgo(iso: string, now?: Date): string;
44
44
  * Interactive TTY behavior is unchanged: Ctrl+D / EOF still exits.
45
45
  */
46
46
  declare function shouldKeepAlive(flag: boolean, stdinIsTTY: boolean | undefined): boolean;
47
+ declare function parseSendCommand(text: string): {
48
+ path: string;
49
+ } | {
50
+ error: 'missing_path';
51
+ } | null;
47
52
 
48
- export { type Command, type ParsedArgs, formatAgo, parseArgs, shouldKeepAlive };
53
+ export { type Command, type ParsedArgs, formatAgo, parseArgs, parseSendCommand, shouldKeepAlive };