@pleri/olam-cli 0.1.88 → 0.1.90

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,9 +1,9 @@
1
1
  {
2
2
  "auth": "sha256:acd77f9b4b2764841207e6e749e0bd5044843458f789eb5548cb4363d02fb985",
3
- "devbox": "sha256:edda28d8b75bd1d6aaa599100b97d83260bae05b3e81949c95b2f9192b1cfa04",
4
- "host-cp": "sha256:4e8cc568ee28d6ea33bdaa6eb30f2dd03ba55ccf9c57e832a75345db91087a98",
3
+ "devbox": "sha256:5b9a61ab9cc7762b84440e1281e2067c9983266fd033fd24721881111e5f513c",
4
+ "host-cp": "sha256:93faa60dd1f39f4a23449d33ab94d7cc320ee16fb96bc0e0c17a4a0e7ab12646",
5
5
  "mcp-auth": "sha256:e47169ad3fbc9cab216248fecbc56874343a5daab84b1f18d67529b7d415cf95",
6
6
  "$schema_version": 1,
7
- "$published_version": "0.1.88",
7
+ "$published_version": "0.1.90",
8
8
  "$registry": "ghcr.io/pleri"
9
9
  }
@@ -229,7 +229,9 @@ export async function buildVersionSnapshot({ authServiceUrl, dockerApiBase }) {
229
229
  fetchAuthServiceSha(authServiceUrl),
230
230
  fetchDevboxImageSha(dockerApiBase),
231
231
  fetchLatestImageSha(dockerApiBase, 'ghcr.io/pleri/olam-host-cp:latest'),
232
- fetchLatestImageSha(dockerApiBase, 'ghcr.io/pleri/olam-auth-service:latest'),
232
+ // NOTE: docker tag is `olam-auth` (no `-service` suffix); npm
233
+ // workspace is `auth-service`. The two diverged historically.
234
+ fetchLatestImageSha(dockerApiBase, 'ghcr.io/pleri/olam-auth:latest'),
233
235
  fetchLatestImageSha(dockerApiBase, 'ghcr.io/pleri/olam-devbox:latest'),
234
236
  ]);
235
237
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pleri/olam-cli",
3
- "version": "0.1.88",
3
+ "version": "0.1.90",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "olam": "./bin/olam.cjs"