botapp-cli 0.2.5 → 0.2.8
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/bot.js +495 -122
- package/dist/bin/bot.js.map +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +486 -122
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,11 @@ interface DaemonProfile {
|
|
|
10
10
|
daemonId: string;
|
|
11
11
|
daemonName: string;
|
|
12
12
|
token: string;
|
|
13
|
+
/** Email of the dashboard user this profile is paired under. Captured
|
|
14
|
+
* from the browser-auth callback so `bot daemon list` can show which
|
|
15
|
+
* account each profile lives in without a server round-trip. Absent
|
|
16
|
+
* for legacy pairings or `--token` flows where no callback ran. */
|
|
17
|
+
userEmail?: string;
|
|
13
18
|
}
|
|
14
19
|
declare function loadDaemonProfiles(): DaemonProfile[];
|
|
15
20
|
/** Back-compat: return the first paired profile, or null. */
|