@staff0rd/assist 0.527.0 → 0.528.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.
- package/dist/commands/sessions/web/bundle.js +197 -197
- package/dist/index.js +7 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.
|
|
9
|
+
version: "0.528.1",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -22519,7 +22519,8 @@ function requestAssistSession(assistArgs, cwd, options2) {
|
|
|
22519
22519
|
type: "create-assist",
|
|
22520
22520
|
assistArgs,
|
|
22521
22521
|
cwd,
|
|
22522
|
-
inPlace: options2?.inPlace === true
|
|
22522
|
+
inPlace: options2?.inPlace === true,
|
|
22523
|
+
launchedFrom: options2?.launchedFrom ?? process.env.ASSIST_SESSION_ID
|
|
22523
22524
|
});
|
|
22524
22525
|
}
|
|
22525
22526
|
|
|
@@ -33617,7 +33618,8 @@ function createAssistSession(id, assistArgs, cwd, meta, holdPty) {
|
|
|
33617
33618
|
),
|
|
33618
33619
|
scrollback: "",
|
|
33619
33620
|
assistArgs,
|
|
33620
|
-
cwd
|
|
33621
|
+
cwd,
|
|
33622
|
+
launchedFrom: meta?.launchedFrom
|
|
33621
33623
|
};
|
|
33622
33624
|
}
|
|
33623
33625
|
|
|
@@ -34221,7 +34223,8 @@ var messageHandlers = {
|
|
|
34221
34223
|
{
|
|
34222
34224
|
title: d.title,
|
|
34223
34225
|
subtitle: d.subtitle,
|
|
34224
|
-
inPlace: d.inPlace === true
|
|
34226
|
+
inPlace: d.inPlace === true,
|
|
34227
|
+
launchedFrom: d.launchedFrom
|
|
34225
34228
|
}
|
|
34226
34229
|
)
|
|
34227
34230
|
),
|