@alfe.ai/gateway 0.0.26 → 0.0.27

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/dist/health.js +14 -0
  2. package/package.json +3 -3
package/dist/health.js CHANGED
@@ -78,6 +78,8 @@ const ID_PREFIXES = {
78
78
  team: "team",
79
79
  project: "proj",
80
80
  goal: "goal",
81
+ memory: "mem",
82
+ knowledgeTriple: "kgt",
81
83
  run: "run",
82
84
  request: "req",
83
85
  connection: "conn",
@@ -379,6 +381,18 @@ var AuthService = class {
379
381
  body: JSON.stringify(input)
380
382
  });
381
383
  }
384
+ updateSeats(seats) {
385
+ return this.client.request(`${this.prefix}/subscription/seats`, {
386
+ method: "POST",
387
+ body: JSON.stringify({ seats })
388
+ });
389
+ }
390
+ previewSeatChange(seats) {
391
+ return this.client.request(`${this.prefix}/subscription/seats/preview`, {
392
+ method: "POST",
393
+ body: JSON.stringify({ seats })
394
+ });
395
+ }
382
396
  };
383
397
  //#endregion
384
398
  //#region ../../packages-internal/api-client/dist/services/integrations.js
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/gateway",
3
- "version": "0.0.26",
3
+ "version": "0.0.27",
4
4
  "description": "Alfe local gateway daemon — persistent control plane for agent integrations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -24,8 +24,8 @@
24
24
  "ws": "^8.18.0",
25
25
  "@alfe.ai/ai-proxy-local": "^0.0.5",
26
26
  "@alfe.ai/config": "^0.0.5",
27
- "@alfe.ai/integration-manifest": "^0.0.7",
28
- "@alfe.ai/integrations": "^0.0.17"
27
+ "@alfe.ai/integration-manifest": "^0.0.8",
28
+ "@alfe.ai/integrations": "^0.0.18"
29
29
  },
30
30
  "license": "UNLICENSED",
31
31
  "scripts": {