@ricsam/r5d-worker 0.0.25 → 0.0.26
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/cjs/main.cjs +2 -0
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/main.mjs +2 -0
- package/dist/mjs/package.json +1 -1
- package/package.json +1 -1
package/dist/cjs/main.cjs
CHANGED
|
@@ -1926,6 +1926,7 @@ async function executeStreamingCommand(input) {
|
|
|
1926
1926
|
projectId: input.projectId,
|
|
1927
1927
|
sessionId: input.message.sessionId,
|
|
1928
1928
|
branchName: input.message.branchName,
|
|
1929
|
+
credentialId: input.message.credentialId,
|
|
1929
1930
|
argv: input.message.argv,
|
|
1930
1931
|
command: input.message.command,
|
|
1931
1932
|
cwd: input.message.cwd,
|
|
@@ -1999,6 +2000,7 @@ function buildActiveProcessReports() {
|
|
|
1999
2000
|
projectId: active.projectId,
|
|
2000
2001
|
sessionId: active.sessionId,
|
|
2001
2002
|
branchName: active.branchName,
|
|
2003
|
+
...active.credentialId ? { credentialId: active.credentialId } : {},
|
|
2002
2004
|
argv: active.argv,
|
|
2003
2005
|
command: active.command,
|
|
2004
2006
|
...active.cwd ? { cwd: active.cwd } : {},
|
package/dist/cjs/package.json
CHANGED
package/dist/mjs/main.mjs
CHANGED
|
@@ -1883,6 +1883,7 @@ async function executeStreamingCommand(input) {
|
|
|
1883
1883
|
projectId: input.projectId,
|
|
1884
1884
|
sessionId: input.message.sessionId,
|
|
1885
1885
|
branchName: input.message.branchName,
|
|
1886
|
+
credentialId: input.message.credentialId,
|
|
1886
1887
|
argv: input.message.argv,
|
|
1887
1888
|
command: input.message.command,
|
|
1888
1889
|
cwd: input.message.cwd,
|
|
@@ -1956,6 +1957,7 @@ function buildActiveProcessReports() {
|
|
|
1956
1957
|
projectId: active.projectId,
|
|
1957
1958
|
sessionId: active.sessionId,
|
|
1958
1959
|
branchName: active.branchName,
|
|
1960
|
+
...active.credentialId ? { credentialId: active.credentialId } : {},
|
|
1959
1961
|
argv: active.argv,
|
|
1960
1962
|
command: active.command,
|
|
1961
1963
|
...active.cwd ? { cwd: active.cwd } : {},
|
package/dist/mjs/package.json
CHANGED