@danypops/pi-packed 0.28.11 → 0.28.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danypops/pi-packed",
3
- "version": "0.28.11",
3
+ "version": "0.28.12",
4
4
  "description": "Pi package lifecycle, validation, daemon, tools, profiles, and TUI",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,6 +10,11 @@
10
10
  "pi": {
11
11
  "extensions": ["extension/src/index.ts"]
12
12
  },
13
+ "zodiac": {
14
+ "integrations": [
15
+ { "kind": "vehicle-surface", "vehicleName": "pi-packed", "title": "Packed" }
16
+ ]
17
+ },
13
18
  "packed": {
14
19
  "daemonService": {
15
20
  "name": "pi-packed",
@@ -30,9 +35,9 @@
30
35
  "@danypops/armada": "^0.5.1",
31
36
  "@danypops/packed": "^0.7.0",
32
37
  "@danypops/pi-extension-harness": "^0.7.0",
33
- "@danypops/vehicle-client": "^0.10.6",
34
- "@danypops/vehicle-core": "^0.18.4",
35
- "@danypops/vehicle-server": "^0.26.1",
38
+ "@danypops/vehicle-client": "^0.10.7",
39
+ "@danypops/vehicle-core": "^0.19.0",
40
+ "@danypops/vehicle-server": "^0.27.0",
36
41
  "jiti": "^2.7.0",
37
42
  "malevich-tui-components": "^0.32.1",
38
43
  "publint": "0.3.22",
@@ -40,8 +45,8 @@
40
45
  },
41
46
  "devDependencies": {
42
47
  "@danypops/pi-tui-harness": "^0.0.1",
43
- "@danypops/vehicle-client-pi": "^0.45.2",
44
- "@danypops/vehicle-conformance": "^0.4.0",
48
+ "@danypops/vehicle-client-pi": "^0.45.3",
49
+ "@danypops/vehicle-conformance": "^0.4.1",
45
50
  "@types/semver": "^7.7.1",
46
51
  "follow-redirects": "^1.16.0"
47
52
  },
@@ -70,14 +70,16 @@ async function invoke(app: { fetch(request: Request): Promise<Response> }, name:
70
70
  }
71
71
 
72
72
  describe("packed's daemon operation surface, through the real Vehicle wire protocol", () => {
73
- it("GET /vehicle/manifest lists all 29 operations plus the registry's own vehicle.approval.resolve, authenticated the same as /api/v1/ops", async () => {
73
+ it("GET /vehicle/manifest lists all 29 operations plus the registry's own vehicle.approval.resolve/vehicle.approval.status, authenticated the same as /api/v1/ops", async () => {
74
74
  const app = createApp(deps());
75
75
  const unauthorized = await app.fetch(new Request("http://packed.internal/vehicle/manifest"));
76
76
  expect(unauthorized.status).toBe(401);
77
77
  const response = await app.fetch(new Request("http://packed.internal/vehicle/manifest", { headers: { authorization: "Bearer test-token" } }));
78
78
  expect(response.status).toBe(200);
79
79
  const body = (await response.json()) as { operations: Array<{ name: string }> };
80
- expect(body.operations.map((o) => o.name).sort()).toEqual([...OPERATION_NAMES, "vehicle.approval.resolve"].sort());
80
+ expect(body.operations.map((o) => o.name).sort()).toEqual(
81
+ [...OPERATION_NAMES, "vehicle.approval.resolve", "vehicle.approval.status"].sort(),
82
+ );
81
83
  });
82
84
 
83
85
  it("a mutation's approvalRequired reflects security.ts's own per-operation classification, not a coarse effect default -- restart_service is gated despite sharing external-write with the never-gated catalog.sync", async () => {