@helipod/admin 0.1.0 → 0.1.3

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 (2) hide show
  1. package/README.md +21 -0
  2. package/package.json +12 -12
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # @helipod/admin
2
+
3
+ Admin API for the Helipod engine, used by the built-in dashboard.
4
+
5
+ This package implements the authenticated admin surface a running deployment exposes
6
+ alongside the regular sync protocol: live table-browse subscriptions with cursor
7
+ pagination and structured filters, a log stream for the logs viewer, system functions,
8
+ and the function runner. It plugs into the engine's HTTP server as an admin router and
9
+ authenticates every request against the deployment admin key.
10
+
11
+ It exists so the dashboard (and any other operator tooling) can observe and drive a
12
+ deployment through one well-defined boundary instead of reaching into engine internals.
13
+ Browse results are delivered through the same reactive subscription machinery as
14
+ application queries, so the data browser updates live as documents change.
15
+
16
+ > This is an internal package of the Helipod engine. Most applications should install
17
+ > [`helipod`](https://www.npmjs.com/package/helipod) instead.
18
+
19
+ Part of [Helipod](https://github.com/helipod-sh/helipod) — docs at https://helipod-six.vercel.app/docs
20
+
21
+ License: FSL-1.1-Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helipod/admin",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {
@@ -13,21 +13,21 @@
13
13
  "scripts": {
14
14
  "build": "tsup",
15
15
  "typecheck": "tsc --noEmit",
16
- "test": "vitest run"
16
+ "test": "vitest run --testTimeout=60000 --hookTimeout=60000"
17
17
  },
18
18
  "dependencies": {
19
- "@helipod/docstore": "0.1.0",
20
- "@helipod/errors": "0.1.0",
21
- "@helipod/executor": "0.1.0",
22
- "@helipod/id-codec": "0.1.0",
23
- "@helipod/query-engine": "0.1.0",
24
- "@helipod/runtime-embedded": "0.1.0",
25
- "@helipod/values": "0.1.0"
19
+ "@helipod/docstore": "0.1.3",
20
+ "@helipod/errors": "0.1.3",
21
+ "@helipod/executor": "0.1.3",
22
+ "@helipod/id-codec": "0.1.3",
23
+ "@helipod/query-engine": "0.1.3",
24
+ "@helipod/runtime-embedded": "0.1.3",
25
+ "@helipod/values": "0.1.3"
26
26
  },
27
27
  "devDependencies": {
28
- "@helipod/component": "0.1.0",
29
- "@helipod/docstore-sqlite": "0.1.0",
30
- "@helipod/query-engine": "0.1.0",
28
+ "@helipod/component": "0.1.3",
29
+ "@helipod/docstore-sqlite": "0.1.3",
30
+ "@helipod/query-engine": "0.1.3",
31
31
  "@types/node": "^22.10.5",
32
32
  "tsup": "^8.3.5",
33
33
  "typescript": "^5.7.2",