@pleri/olam-cli 0.1.146 → 0.1.148

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 (85) hide show
  1. package/dist/commands/auth.d.ts.map +1 -1
  2. package/dist/commands/auth.js +26 -1
  3. package/dist/commands/auth.js.map +1 -1
  4. package/dist/commands/doctor.d.ts +31 -3
  5. package/dist/commands/doctor.d.ts.map +1 -1
  6. package/dist/commands/doctor.js +274 -6
  7. package/dist/commands/doctor.js.map +1 -1
  8. package/dist/commands/services.d.ts +41 -3
  9. package/dist/commands/services.d.ts.map +1 -1
  10. package/dist/commands/services.js +221 -13
  11. package/dist/commands/services.js.map +1 -1
  12. package/dist/commands/skills-migrate-hooks-back.d.ts +19 -0
  13. package/dist/commands/skills-migrate-hooks-back.d.ts.map +1 -0
  14. package/dist/commands/skills-migrate-hooks-back.js +83 -0
  15. package/dist/commands/skills-migrate-hooks-back.js.map +1 -0
  16. package/dist/commands/skills-migrate-hooks.d.ts +40 -0
  17. package/dist/commands/skills-migrate-hooks.d.ts.map +1 -0
  18. package/dist/commands/skills-migrate-hooks.js +178 -0
  19. package/dist/commands/skills-migrate-hooks.js.map +1 -0
  20. package/dist/commands/skills.d.ts.map +1 -1
  21. package/dist/commands/skills.js +49 -1
  22. package/dist/commands/skills.js.map +1 -1
  23. package/dist/commands/substrate-audit-log.d.ts +2 -0
  24. package/dist/commands/substrate-audit-log.d.ts.map +1 -1
  25. package/dist/commands/substrate-audit-log.js +13 -0
  26. package/dist/commands/substrate-audit-log.js.map +1 -1
  27. package/dist/image-digests.json +7 -7
  28. package/dist/index.js +4390 -2615
  29. package/dist/index.js.map +1 -1
  30. package/dist/lib/auth-refresh-kubernetes.d.ts +62 -0
  31. package/dist/lib/auth-refresh-kubernetes.d.ts.map +1 -0
  32. package/dist/lib/auth-refresh-kubernetes.js +127 -0
  33. package/dist/lib/auth-refresh-kubernetes.js.map +1 -0
  34. package/dist/lib/kubectl-wrap.d.ts +6 -0
  35. package/dist/lib/kubectl-wrap.d.ts.map +1 -1
  36. package/dist/lib/kubectl-wrap.js +6 -1
  37. package/dist/lib/kubectl-wrap.js.map +1 -1
  38. package/dist/lib/manifest-refresh.d.ts +8 -1
  39. package/dist/lib/manifest-refresh.d.ts.map +1 -1
  40. package/dist/lib/manifest-refresh.js +17 -7
  41. package/dist/lib/manifest-refresh.js.map +1 -1
  42. package/dist/lib/peripheral-registry.d.ts +36 -0
  43. package/dist/lib/peripheral-registry.d.ts.map +1 -0
  44. package/dist/lib/peripheral-registry.js +55 -0
  45. package/dist/lib/peripheral-registry.js.map +1 -0
  46. package/dist/lib/port-forward.d.ts +67 -0
  47. package/dist/lib/port-forward.d.ts.map +1 -1
  48. package/dist/lib/port-forward.js +153 -0
  49. package/dist/lib/port-forward.js.map +1 -1
  50. package/dist/lib/upgrade-kubernetes.d.ts +35 -11
  51. package/dist/lib/upgrade-kubernetes.d.ts.map +1 -1
  52. package/dist/lib/upgrade-kubernetes.js +265 -21
  53. package/dist/lib/upgrade-kubernetes.js.map +1 -1
  54. package/dist/mcp-server.js +1196 -412
  55. package/host-cp/k8s/manifests/auth-service/10-serviceaccount.yaml +8 -0
  56. package/host-cp/k8s/manifests/auth-service/20-rbac.yaml +34 -0
  57. package/host-cp/k8s/manifests/auth-service/30-configmap.yaml +24 -0
  58. package/host-cp/k8s/manifests/auth-service/45-pvc.yaml +25 -0
  59. package/host-cp/k8s/manifests/auth-service/50-deployment.yaml +114 -0
  60. package/host-cp/k8s/manifests/auth-service/60-service.yaml +21 -0
  61. package/host-cp/k8s/manifests/kg-service/10-serviceaccount.yaml +8 -0
  62. package/host-cp/k8s/manifests/kg-service/20-rbac.yaml +34 -0
  63. package/host-cp/k8s/manifests/kg-service/30-configmap.yaml +18 -0
  64. package/host-cp/k8s/manifests/kg-service/45-pvc.yaml +25 -0
  65. package/host-cp/k8s/manifests/kg-service/50-deployment.yaml +108 -0
  66. package/host-cp/k8s/manifests/kg-service/60-service.yaml +21 -0
  67. package/host-cp/k8s/manifests/mcp-auth-service/10-serviceaccount.yaml +8 -0
  68. package/host-cp/k8s/manifests/mcp-auth-service/20-rbac.yaml +34 -0
  69. package/host-cp/k8s/manifests/mcp-auth-service/30-configmap.yaml +18 -0
  70. package/host-cp/k8s/manifests/mcp-auth-service/45-pvc.yaml +25 -0
  71. package/host-cp/k8s/manifests/mcp-auth-service/50-deployment.yaml +114 -0
  72. package/host-cp/k8s/manifests/mcp-auth-service/60-service.yaml +21 -0
  73. package/host-cp/k8s/manifests/memory-service/10-serviceaccount.yaml +8 -0
  74. package/host-cp/k8s/manifests/memory-service/20-rbac.yaml +34 -0
  75. package/host-cp/k8s/manifests/memory-service/30-configmap.yaml +20 -0
  76. package/host-cp/k8s/manifests/memory-service/45-pvc.yaml +25 -0
  77. package/host-cp/k8s/manifests/memory-service/50-deployment.yaml +116 -0
  78. package/host-cp/k8s/manifests/memory-service/60-service.yaml +21 -0
  79. package/host-cp/k8s/templates/auth-service-secret-template.yaml +28 -0
  80. package/host-cp/k8s/templates/kg-service-secret-template.yaml +28 -0
  81. package/host-cp/k8s/templates/mcp-auth-service-secret-template.yaml +28 -0
  82. package/host-cp/k8s/templates/memory-service-secret-template.yaml +29 -0
  83. package/host-cp/src/plan-chat-service.mjs +22 -3
  84. package/host-cp/src/server.mjs +4 -4
  85. package/package.json +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.