@qpfai/pf-gate-cli 1.0.16 → 1.0.18

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-02-16T22:39:32.770Z",
3
+ "generatedAt": "2026-02-16T23:33:44.591Z",
4
4
  "pythonPackage": "persons-field",
5
5
  "pythonPackageVersion": "1.0.0",
6
6
  "wheel": "persons_field-1.0.0-py3-none-any.whl",
7
- "sha256": "10cbc5c716202bace88f1b20f3a671030cca7c3bbc45b470ba5f52e64e188833"
7
+ "sha256": "a88d63b32404d4ff543fa095d1e9349dbf0150504fa1c25fc693c7c589bceed6"
8
8
  }
package/lib/main.mjs CHANGED
@@ -685,6 +685,11 @@ async function installRuntime(runtimeRoot, source, cliVersion) {
685
685
  "Installing PF Gate runtime..."
686
686
  );
687
687
  }
688
+ await runCommandWithSphereSpinner(
689
+ pythonPath,
690
+ [...runtimePipArgs(runtimeRoot), "install", "--upgrade", "prompt_toolkit>=3.0.39"],
691
+ "Installing terminal UX dependencies..."
692
+ );
688
693
  const fingerprint = desiredStateFingerprint(source, cliVersion);
689
694
  writeInstallState(runtimeRoot, {
690
695
  installedAt: new Date().toISOString(),
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@qpfai/pf-gate-cli",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "PF Gate terminal launcher with first-run runtime bootstrap.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "bin": {
8
+ "PF": "bin/pf.mjs",
8
9
  "pf": "bin/pf.mjs",
9
10
  "pf-gate": "bin/pf.mjs"
10
11
  },