Skip to content

Commit 0706361

Browse files
authored
Fix Nexus missing from meta package (#1781)
1 parent 49df572 commit 0706361

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

packages/docs/docs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ slug: /
1414
| [@temporalio/worker](./api/namespaces/worker) | Runs Workflows and Activities |
1515
| [@temporalio/workflow](./api/namespaces/workflow) | Workflow runtime library |
1616
| [@temporalio/activity](./api/namespaces/activity) | Get current Activity's context |
17+
| [@temporalio/nexus](./api/namespaces/nexus) | Implement and invoke Nexus Operations |
1718
| [@temporalio/client](./api/namespaces/client) | Send commands to Temporal Server |
1819
| [@temporalio/common](./api/namespaces/common) | Common library for code that's used across the Client, Worker, and/or Workflow |
1920
| [@temporalio/proto](./api/namespaces/proto) | Compiled protobuf definitions |

packages/meta/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"@temporalio/client": "file:../client",
77
"@temporalio/common": "file:../common",
88
"@temporalio/interceptors-opentelemetry": "file:../interceptors-opentelemetry",
9+
"@temporalio/nexus": "file:../nexus",
910
"@temporalio/proto": "file:../proto",
1011
"@temporalio/testing": "file:../testing",
1112
"@temporalio/worker": "file:../worker",

packages/meta/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ export * as workflow from '@temporalio/workflow';
77
export * as activity from '@temporalio/activity';
88
export * as worker from '@temporalio/worker';
99
export * as client from '@temporalio/client';
10+
export * as nexus from '@temporalio/nexus';
1011
export * as testing from '@temporalio/testing';
1112
export * as opentelemetry from '@temporalio/interceptors-opentelemetry';

packages/nexus/src/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Invoke and implement Nexus operations.
3+
*
4+
* @module
5+
*/
6+
17
export {
28
//
39
log,

0 commit comments

Comments
 (0)