@legioncodeinc/hive 0.4.0 → 0.5.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.
Files changed (56) hide show
  1. package/README.md +1 -1
  2. package/dist/daemon/dashboard/app.js +12 -12
  3. package/dist/daemon/gate.d.ts +10 -6
  4. package/dist/daemon/gate.js +20 -8
  5. package/dist/daemon/gate.js.map +1 -1
  6. package/dist/daemon/installer/funnel-telemetry.d.ts +17 -2
  7. package/dist/daemon/installer/funnel-telemetry.js +34 -3
  8. package/dist/daemon/installer/funnel-telemetry.js.map +1 -1
  9. package/dist/daemon/installer/manifest-snapshot.json +5 -5
  10. package/dist/daemon/installer/routes.js +6 -2
  11. package/dist/daemon/installer/routes.js.map +1 -1
  12. package/dist/daemon/installer/security.d.ts +9 -2
  13. package/dist/daemon/installer/security.js +8 -0
  14. package/dist/daemon/installer/security.js.map +1 -1
  15. package/dist/daemon/server.d.ts +3 -0
  16. package/dist/daemon/server.js +1 -0
  17. package/dist/daemon/server.js.map +1 -1
  18. package/dist/daemon/setup-tenancy.d.ts +18 -0
  19. package/dist/daemon/setup-tenancy.js +37 -0
  20. package/dist/daemon/setup-tenancy.js.map +1 -0
  21. package/dist/dashboard/web/active-tenancy-display.d.ts +34 -0
  22. package/dist/dashboard/web/active-tenancy-display.js +84 -0
  23. package/dist/dashboard/web/active-tenancy-display.js.map +1 -0
  24. package/dist/dashboard/web/app.js +6 -2
  25. package/dist/dashboard/web/app.js.map +1 -1
  26. package/dist/dashboard/web/onboarding/contracts.d.ts +1 -1
  27. package/dist/dashboard/web/onboarding/contracts.js +9 -1
  28. package/dist/dashboard/web/onboarding/contracts.js.map +1 -1
  29. package/dist/dashboard/web/onboarding/login-step.d.ts +3 -4
  30. package/dist/dashboard/web/onboarding/login-step.js +37 -31
  31. package/dist/dashboard/web/onboarding/login-step.js.map +1 -1
  32. package/dist/dashboard/web/onboarding/onboarding-screen.d.ts +8 -4
  33. package/dist/dashboard/web/onboarding/onboarding-screen.js +90 -13
  34. package/dist/dashboard/web/onboarding/onboarding-screen.js.map +1 -1
  35. package/dist/dashboard/web/onboarding/tenancy-client.d.ts +19 -0
  36. package/dist/dashboard/web/onboarding/tenancy-client.js +84 -0
  37. package/dist/dashboard/web/onboarding/tenancy-client.js.map +1 -0
  38. package/dist/dashboard/web/onboarding/tenancy-contracts.d.ts +119 -0
  39. package/dist/dashboard/web/onboarding/tenancy-contracts.js +79 -0
  40. package/dist/dashboard/web/onboarding/tenancy-contracts.js.map +1 -0
  41. package/dist/dashboard/web/onboarding/tenancy-step.d.ts +32 -0
  42. package/dist/dashboard/web/onboarding/tenancy-step.js +223 -0
  43. package/dist/dashboard/web/onboarding/tenancy-step.js.map +1 -0
  44. package/dist/dashboard/web/pages/hive-graph.js +16 -7
  45. package/dist/dashboard/web/pages/hive-graph.js.map +1 -1
  46. package/dist/dashboard/web/setup-gate.js +11 -1
  47. package/dist/dashboard/web/setup-gate.js.map +1 -1
  48. package/dist/dashboard/web/wire.d.ts +20 -0
  49. package/dist/dashboard/web/wire.js +34 -0
  50. package/dist/dashboard/web/wire.js.map +1 -1
  51. package/dist/shared/fleet-readiness.js +13 -2
  52. package/dist/shared/fleet-readiness.js.map +1 -1
  53. package/dist/telemetry/emit.d.ts +17 -4
  54. package/dist/telemetry/emit.js +8 -1
  55. package/dist/telemetry/emit.js.map +1 -1
  56. package/package.json +1 -1
package/README.md CHANGED
@@ -219,7 +219,7 @@ No MCP server, no SDK, and none pretending. The workload daemons own those surfa
219
219
 
220
220
  <h2 align="center"><a href="https://ideas.theapiary.sh">📍 Status & Roadmap</a></h2>
221
221
 
222
- Hive is **production ready (v0.4.x)** and fully tested in live scenarios. The whole PRD program has shipped: the portal daemon, the migrated dashboard, the server-side BFF proxy, the OS service units and registry wiring, the portal gate, the fleet readiness surface, the Hive Graph page, and the onboarding installer. We document what's shipped; the roadmap and idea board for what comes next live at [ideas.theapiary.sh](https://ideas.theapiary.sh).
222
+ Hive is **production ready (v0.5.x)** and fully tested in live scenarios. The whole PRD program has shipped: the portal daemon, the migrated dashboard, the server-side BFF proxy, the OS service units and registry wiring, the portal gate, the fleet readiness surface, the Hive Graph page, and the onboarding installer. We document what's shipped; the roadmap and idea board for what comes next live at [ideas.theapiary.sh](https://ideas.theapiary.sh).
223
223
 
224
224
  <img src="assets/brand/divider-minor.svg" width="100%" height="3">
225
225