From 98ccf3c642d4276bd6ed1c324c620eb7f820f347 Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Thu, 4 Sep 2025 10:16:01 -0700 Subject: [PATCH 1/2] Fix Nexus missing from meta package --- packages/docs/docs/index.md | 1 + packages/meta/package.json | 1 + packages/meta/src/index.ts | 1 + packages/nexus/src/index.ts | 6 ++++++ 4 files changed, 9 insertions(+) diff --git a/packages/docs/docs/index.md b/packages/docs/docs/index.md index 3f768aeb6..b9ddd2bfe 100644 --- a/packages/docs/docs/index.md +++ b/packages/docs/docs/index.md @@ -14,6 +14,7 @@ slug: / | [@temporalio/worker](./api/namespaces/worker) | Runs Workflows and Activities | | [@temporalio/workflow](./api/namespaces/workflow) | Workflow runtime library | | [@temporalio/activity](./api/namespaces/activity) | Get current Activity's context | +| [@temporalio/nexus](./api/namespaces/nexus) | Implement and invoke Nexus Operations | [@temporalio/client](./api/namespaces/client) | Send commands to Temporal Server | | [@temporalio/common](./api/namespaces/common) | Common library for code that's used across the Client, Worker, and/or Workflow | | [@temporalio/proto](./api/namespaces/proto) | Compiled protobuf definitions | diff --git a/packages/meta/package.json b/packages/meta/package.json index 96de7e55c..c2e000a58 100644 --- a/packages/meta/package.json +++ b/packages/meta/package.json @@ -6,6 +6,7 @@ "@temporalio/client": "file:../client", "@temporalio/common": "file:../common", "@temporalio/interceptors-opentelemetry": "file:../interceptors-opentelemetry", + "@temporalio/nexus": "file:../nexus", "@temporalio/proto": "file:../proto", "@temporalio/testing": "file:../testing", "@temporalio/worker": "file:../worker", diff --git a/packages/meta/src/index.ts b/packages/meta/src/index.ts index 3a1820245..c4ed0a6ef 100644 --- a/packages/meta/src/index.ts +++ b/packages/meta/src/index.ts @@ -7,5 +7,6 @@ export * as workflow from '@temporalio/workflow'; export * as activity from '@temporalio/activity'; export * as worker from '@temporalio/worker'; export * as client from '@temporalio/client'; +export * as nexus from '@temporalio/nexus'; export * as testing from '@temporalio/testing'; export * as opentelemetry from '@temporalio/interceptors-opentelemetry'; diff --git a/packages/nexus/src/index.ts b/packages/nexus/src/index.ts index 66e861017..8118c3296 100644 --- a/packages/nexus/src/index.ts +++ b/packages/nexus/src/index.ts @@ -1,3 +1,9 @@ +/** + * Invoke and implement Nexus operations. + * + * @module + */ + export { // log, From da8627fc5ae202ff2d7d8b2ea9233123a821915e Mon Sep 17 00:00:00 2001 From: Spencer Judge Date: Thu, 4 Sep 2025 10:21:23 -0700 Subject: [PATCH 2/2] Fix broken table --- packages/docs/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/docs/index.md b/packages/docs/docs/index.md index b9ddd2bfe..8ba5c8d56 100644 --- a/packages/docs/docs/index.md +++ b/packages/docs/docs/index.md @@ -14,7 +14,7 @@ slug: / | [@temporalio/worker](./api/namespaces/worker) | Runs Workflows and Activities | | [@temporalio/workflow](./api/namespaces/workflow) | Workflow runtime library | | [@temporalio/activity](./api/namespaces/activity) | Get current Activity's context | -| [@temporalio/nexus](./api/namespaces/nexus) | Implement and invoke Nexus Operations +| [@temporalio/nexus](./api/namespaces/nexus) | Implement and invoke Nexus Operations | | [@temporalio/client](./api/namespaces/client) | Send commands to Temporal Server | | [@temporalio/common](./api/namespaces/common) | Common library for code that's used across the Client, Worker, and/or Workflow | | [@temporalio/proto](./api/namespaces/proto) | Compiled protobuf definitions |