aegis-platform-sdk 1.3.0 → 1.3.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.3.1 — 2026-07-31
4
+
5
+ Docs only — no API change.
6
+
7
+ - **`skills/aegis-sdk/SKILL.md`** (which ships inside the package, and is what
8
+ Claude Code reads to use the SDK) still described the pre-1.3.0 surface, so
9
+ `alerts.setChannel`/`deleteChannel` and `edge.createPairingCode({grants})`
10
+ were invisible to anyone driving the SDK through the skill.
11
+
3
12
  ## 1.3.0 — 2026-07-31
4
13
 
5
14
  Two operator gestures born with the desk app. Additive; no breaking changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aegis-platform-sdk",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "AEGIS Ontology SDK — typed TypeScript client for the AEGIS HTTPS API (Safe-Core Technologies)",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Safe-Core Technologies",
@@ -99,10 +99,10 @@ dumps the raw manifest JSON.
99
99
  - `client.datasets` — `list/get/sample`, branches, transactions (`beginTransaction(name, "SNAPSHOT"|"APPEND"|"UPDATE"|"DELETE")` → `commitTransaction`/`abortTransaction`), `mergeFastForward`/`mergeThreeWay`, classification, markings
100
100
  - **Reading**: `client.geo` (nodes/nodeTypes/sources/edges/zones), `client.mapTemplates` (list/get/create/instantiate/exportSvg), `client.media` (sets + item metadata), `client.docs` (tree/read), `client.pages` (registry CRUD/publish), `client.dossier` (startGeneric/startComposite → poll `get`), `client.timeseries` (charts + render)
101
101
  - **Public guest** (anonymous, token in path — build `new AegisClient({ baseUrl })` with NO token): `client.publicGuest` — `menu(token)`, `fix(token, {lat,lng})` (GPS → evaluate_fix), `invoke(token, actionId, input)` (e.g. open gate; 403 geofence-gate / 429 throttle), `position(token)` (resident reads the visitor's live location — operator issues the resident token with `geo.live_ref` = visitor token id; poll it, no push), `document`/`queryObjectSet`/`documentNode`, `page`/`evaluatePage`, `mediaUrl(token, key)` (string for `<img src>`, no request). Visita finalizada → 410. Counterpart to operator-side `client.guestTokens`.
102
- - **Operational**: `client.alerts` (`feeds`/`watches`/`geofences`/`shares`/`routes` incl. silence/`inbox` + `escalate`/`channels`), `client.alarms` (threshold rules), `client.events` (pipelineStatus + DLQ retry/purge), `client.connectors` (list/patch/register/test/run/skillCatalog), `client.pipelines` (CRUD/build/runs/previews), `client.chat` (channels/messages), `client.notepad`
102
+ - **Operational**: `client.alerts` (`feeds`/`watches`/`geofences`/`shares`/`routes` incl. silence/`inbox` + `escalate`/`channels` — read the registry, plus `setChannel(ref, cfg)`/`deleteChannel(ref)` to POINT a channel at its destination; reads return the config masked, since a webhook URL is the credential), `client.alarms` (threshold rules), `client.events` (pipelineStatus + DLQ retry/purge), `client.connectors` (list/patch/register/test/run/skillCatalog), `client.pipelines` (CRUD/build/runs/previews), `client.chat` (channels/messages), `client.notepad`
103
103
  - **Governance**: `client.lineage` (graph/events), `client.accessAudit`, `client.markings` (+`categories`, eligibility), `client.resourceMarkings`, `client.propertyMarkings`, `client.rowPolicies`, `client.erasure` (ALWAYS `preview` before `forget`; `forget` needs `confirm:true`), `client.retention`, `client.guestTokens` (issue returns plaintext once)
104
104
  - **Platform**: `client.workshop` (`briefings`/`dossiers`/`covs`/`widgetCatalog` — no apps/widgets CRUD, by design), `client.compute` (`providers`/`releases`/selectModel/visionCount + `control(providerId)` scoped plane), `client.inference` (complete/chat/chatWithRag/models/auditTrail — server-audited LLM), `client.codegen`, `client.correlation` (quickLinks/startChain→getChain→saveChain), `client.situational` (nearby/correlate/cut), `client.merge` (suggestTarget/preview/apply)
105
- - **Domain**: `client.atlas` (layers/KML/evaluator), `client.briefing`, `client.cctv` (streams/detections/recordings/exports/bookmarks/gcps/hotlist; `recordingsPlaylist` returns raw m3u8 text), `client.edge` (pairing codes/fleet version), `client.video`, `client.comunicados`, `client.campaign.briefing`
105
+ - **Domain**: `client.atlas` (layers/KML/evaluator), `client.briefing`, `client.cctv` (streams/detections/recordings/exports/bookmarks/gcps/hotlist; `recordingsPlaylist` returns raw m3u8 text), `client.edge` (pairing codes — `createPairingCode({grants})` may GRANT gestures to whichever device redeems the code, default read-only; fleet version; `revoke`), `client.video`, `client.comunicados`, `client.campaign.briefing`
106
106
  - **Collaboration**: `client.forms` (governed submissions), `client.appShell` (banner/footer/userMenu/sidenav/homepage get/put), `client.groups`, `client.projects` (move + `constraints`), `client.organizations`, `client.spaces`, `client.solutions` (design→materialize→teardown; marketplace listings), `client.workspaces` (+`versions`, navigation, promotions, kiosk), `client.workspaceUpdates`, `client.marketplace` (storefront/install wizard)
107
107
  - **Versioned surfaces** (`client.platformV22`…`platformV26`): action-log/quiver/usage (v22); aip-logic/action-types/assist/automate/health/contour/vertex/repos/object-sets/styles incl. `styles.uploadLogo` multipart (v23); rules/checkpoints/expectations/change-requests/scenarios/searchAround/aggregateObjectSet (v24); machinery/branch-protection/kiosk/analyst/dataset rollback/freshness/code-scan/evals (v25); promotions/object-views/capacity/listeners/scanner/monitoring/health-checks/insight/peers/run-history (v26)
108
108
  - **SSE streaming**: `for await (const ev of client.stream(path, {params, json, signal}))` — yields `{event, data, id?, retry?}`; pass `signal` to cancel (no default timeout). `parseSseStream` is exported for custom transports.