vibedate 0.1.0 → 0.2.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/dist/cli.d.ts CHANGED
@@ -1,10 +1,14 @@
1
1
  #!/usr/bin/env node
2
2
  /** Recognized top-level commands, plus the synthetic help/version. */
3
- type Command = 'connect' | 'matches' | 'open' | 'mcp' | 'help' | 'version' | null;
3
+ type Command = 'connect' | 'matches' | 'discover' | 'open' | 'live' | 'mcp' | 'help' | 'version' | null;
4
4
  interface ParsedArgs {
5
5
  readonly command: Command;
6
6
  /** Port for `open --port`; undefined means "let the OS pick". */
7
7
  readonly port: number | undefined;
8
+ /** Explicit opt-in to live P2P discovery (`discover --live`). Default false. */
9
+ readonly live: boolean;
10
+ /** `live --dating`: pick-a-handle mode vs omegle auto-pair. Default false. */
11
+ readonly dating: boolean;
8
12
  }
9
13
  /**
10
14
  * Parse argv (the slice AFTER the program name) into a command + options.