botmux-workflow-core 3.23.0 → 3.24.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.
@@ -699,6 +699,7 @@ function validateHostInputShape(executor, input, nodeId, problems) {
699
699
  "rootMessageId",
700
700
  "scope",
701
701
  "larkAppId",
702
+ "ownerOpenId",
702
703
  "repeat",
703
704
  "deliver"
704
705
  ]
@@ -1550,6 +1551,23 @@ function readProcessStartIdentity(pid) {
1550
1551
  }
1551
1552
  return void 0;
1552
1553
  }
1554
+ if (process.platform === "win32") {
1555
+ try {
1556
+ const started = (0, import_node_child_process.execFileSync)("powershell.exe", [
1557
+ "-NoProfile",
1558
+ "-NonInteractive",
1559
+ "-Command",
1560
+ `$p = Get-CimInstance Win32_Process -Filter "ProcessId = ${pid}"; if ($p) { $p.CreationDate.ToUniversalTime().Ticks }`
1561
+ ], {
1562
+ encoding: "utf-8",
1563
+ timeout: 2e3,
1564
+ stdio: ["ignore", "pipe", "ignore"]
1565
+ }).trim();
1566
+ return started || void 0;
1567
+ } catch {
1568
+ return void 0;
1569
+ }
1570
+ }
1553
1571
  const ps = systemPsBin();
1554
1572
  if (!ps) return void 0;
1555
1573
  try {