@getstrata/core 0.5.83 → 0.5.85

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,13 @@
1
1
  # @getstrata/core changelog
2
2
 
3
+ ## 0.5.85
4
+
5
+ - `applicationRegistry` prefers the latest `Symbol.for("@getstrata/applicationContext")` on `globalThis` so a stale module-local context cannot hide the bootstrapped app after `build:framework`.
6
+
7
+ ## 0.5.84
8
+
9
+ - `eventBus` is a `Symbol.for("@getstrata/eventBus")` process singleton so model writes from a built `@getstrata/core/database/baseRepository` bundle reach app listeners that imported a different copy of `@getstrata/core/events` (GitHub Actions `build:framework` before tests).
10
+
3
11
  ## 0.5.83
4
12
 
5
13
  - `MEMBER_ABILITIES` includes `auth:tokens:delete` so Jetstream-style personal access token revoke works for members (`DELETE /auth/tokens/:id`). HTML `/account/tokens/:id/revoke` was already authenticated-only.
package/README.md CHANGED
@@ -82,7 +82,7 @@ import type { Migration } from "@getstrata/core/database/migrations/types";
82
82
  Package name: **`@getstrata/core`** (npm org [`@getstrata`](https://www.npmjs.com/org/getstrata)).
83
83
 
84
84
  1. Add `NPM_TOKEN` to GitHub repository secrets.
85
- 2. Tag a release: `git tag v0.5.84 && git push origin v0.5.84`
85
+ 2. Tag a release: `git tag v0.5.85 && git push origin v0.5.85`
86
86
  3. [Release workflow](../../.github/workflows/release.yml) builds and runs `npm publish --access public`.
87
87
 
88
88
  Previously published as `@eyk-workhub/framework@0.1.0`, deprecated in favor of this package.
@@ -5,6 +5,7 @@ declare class EventBus {
5
5
  listen(event: string, listener: EventListener): () => void;
6
6
  dispatch(event: string, payload: unknown): Promise<void>;
7
7
  }
8
+ declare function readSharedEventBus(): EventBus;
8
9
  declare const eventBus: EventBus;
9
10
  export type { EventListener };
10
- export { EventBus, eventBus };
11
+ export { EventBus, eventBus, readSharedEventBus };
@@ -1,4 +1,4 @@
1
1
  export type { EventListener } from "./eventBus";
2
- export { EventBus, eventBus } from "./eventBus";
2
+ export { EventBus, eventBus, readSharedEventBus } from "./eventBus";
3
3
  declare function modelEventName(tableName: string, action: string): string;
4
4
  export { modelEventName };
@@ -14,8 +14,9 @@ class DispatchWebhookJob extends Job {
14
14
  maxAttempts = 3;
15
15
  backoffMs = 2000;
16
16
  async handle(payload) {
17
- const tenant = await resolveTenant(payload.tenantId) ?? {
18
- id: payload.tenantId,
17
+ const tenantId = Number(payload.tenantId);
18
+ const tenant = await resolveTenant(tenantId) ?? {
19
+ id: tenantId,
19
20
  slug: "job",
20
21
  plan: "free",
21
22
  region: "eu"
@@ -26,13 +27,16 @@ class DispatchWebhookJob extends Job {
26
27
  }
27
28
  }
28
29
  async deliver(payload) {
29
- const rows = await db`
30
- SELECT id, url, secret
31
- FROM webhook
32
- WHERE id = ${payload.webhookId} AND active = TRUE
33
- LIMIT 1
34
- `;
35
- const webhook = rows[0];
30
+ const queuedUrl = typeof payload.url === "string" ? payload.url : "";
31
+ const queuedSecret = typeof payload.secret === "string" ? payload.secret : "";
32
+ const queued = queuedUrl !== "" && queuedSecret !== "" ? { id: payload.webhookId, url: queuedUrl, secret: queuedSecret } : null;
33
+ const rows = queued ? [] : await db`
34
+ SELECT id, url, secret
35
+ FROM webhook
36
+ WHERE id = ${payload.webhookId} AND active = TRUE
37
+ LIMIT 1
38
+ `;
39
+ const webhook = queued ?? rows[0];
36
40
  if (!webhook) {
37
41
  return;
38
42
  }
@@ -66,10 +66,16 @@ var PUBLIC_ROUTE_DESCRIPTIONS = {
66
66
  "POST /auth/tokens": "Create API token",
67
67
  "DELETE /auth/tokens/:id": "Revoke API token",
68
68
  "GET /users/me/export": "GDPR export of user data",
69
+ "GET /users/me/current-organization": "Current Jetstream organization",
70
+ "PUT /users/me/current-organization": "Switch current Jetstream organization",
71
+ "GET /users/me/invitations": "List pending team invitations for the signed-in email",
72
+ "POST /users/me/invitations/:id/accept": "Accept a pending team invitation",
73
+ "DELETE /users/me/invitations/:id": "Decline a pending team invitation",
69
74
  "DELETE /users/me": "GDPR account erasure (anonymize user, revoke tokens)",
70
75
  "GET /organizations": "List organizations",
71
76
  "POST /organizations": "Create organization",
72
77
  "GET /organizations/:id/members": "List organization members",
78
+ "POST /organizations/:id/invitations/:invitationId/resend": "Resend a pending team invitation and rotate its token",
73
79
  "GET /projects": "List projects",
74
80
  "POST /projects": "Create project",
75
81
  "GET /tasks": "List tasks",
package/dist/index.js CHANGED
@@ -588,12 +588,10 @@ var appLogger = new Logger("app");
588
588
  var APPLICATION_CONTEXT_KEY = Symbol.for("@getstrata/applicationContext");
589
589
  var activeContext;
590
590
  function readStoredApplicationContext() {
591
- if (activeContext) {
592
- return activeContext;
593
- }
594
591
  const globalContext = globalThis[APPLICATION_CONTEXT_KEY];
595
592
  if (globalContext) {
596
593
  activeContext = globalContext;
594
+ return activeContext;
597
595
  }
598
596
  return activeContext;
599
597
  }
@@ -1532,7 +1530,17 @@ class EventBus {
1532
1530
  }
1533
1531
  }
1534
1532
  }
1535
- var eventBus = new EventBus;
1533
+ var EVENT_BUS_KEY = Symbol.for("@getstrata/eventBus");
1534
+ function readSharedEventBus() {
1535
+ const globalBus = globalThis[EVENT_BUS_KEY];
1536
+ if (globalBus) {
1537
+ return globalBus;
1538
+ }
1539
+ const bus = new EventBus;
1540
+ globalThis[EVENT_BUS_KEY] = bus;
1541
+ return bus;
1542
+ }
1543
+ var eventBus = readSharedEventBus();
1536
1544
 
1537
1545
  // ../../src/core/events/index.ts
1538
1546
  function modelEventName(tableName, action) {
@@ -4,6 +4,8 @@ interface DispatchWebhookPayload {
4
4
  tenantId: number;
5
5
  event: string;
6
6
  payload: Record<string, unknown>;
7
+ url?: string;
8
+ secret?: string;
7
9
  }
8
10
  declare class DispatchWebhookJob extends Job<DispatchWebhookPayload> {
9
11
  readonly maxAttempts = 3;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getstrata/core",
3
- "version": "0.5.83",
3
+ "version": "0.5.85",
4
4
  "description": "Strata — Laravel-inspired Bun framework public API",
5
5
  "type": "module",
6
6
  "license": "MIT",