@alfe.ai/gateway 0.0.23 → 0.0.24

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 +3 -16
  2. package/package.json +1 -1
package/dist/health.js CHANGED
@@ -351,21 +351,6 @@ var AuthService = class {
351
351
  deleteToken(tokenId) {
352
352
  return this.client.request(`${this.prefix}/tokens/${tokenId}`, { method: "DELETE" });
353
353
  }
354
- getReferralCode() {
355
- return this.client.request(`${this.prefix}/referral/code`);
356
- }
357
- redeemCode(code) {
358
- return this.client.request(`${this.prefix}/referral/redeem`, {
359
- method: "POST",
360
- body: JSON.stringify({ code })
361
- });
362
- }
363
- getReferralStatus() {
364
- return this.client.request(`${this.prefix}/referral/status`);
365
- }
366
- getReferralHistory() {
367
- return this.client.request(`${this.prefix}/referral/history`);
368
- }
369
354
  getOnboardingStatus() {
370
355
  return this.client.request(`${this.prefix}/onboarding/status`);
371
356
  }
@@ -3226,7 +3211,8 @@ enumValues({
3226
3211
  Revoked: "revoked"
3227
3212
  });
3228
3213
  enumValues({
3229
- Pending: "pending",
3214
+ PendingCard: "pending_card",
3215
+ CardFulfilled: "card_fulfilled",
3230
3216
  Completed: "completed",
3231
3217
  Failed: "failed"
3232
3218
  });
@@ -19811,6 +19797,7 @@ var RuntimeProcess = class {
19811
19797
  workspace: this.options.workspace
19812
19798
  }, "Starting runtime process");
19813
19799
  this.child = spawn(command, args, {
19800
+ cwd: this.options.workspace,
19814
19801
  env: {
19815
19802
  ...process.env,
19816
19803
  ...this.options.env
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/gateway",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Alfe local gateway daemon — persistent control plane for agent integrations",
5
5
  "type": "module",
6
6
  "bin": {