Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
1 change: 1 addition & 0 deletions packages/meta/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
1 change: 1 addition & 0 deletions packages/meta/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
6 changes: 6 additions & 0 deletions packages/nexus/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* Invoke and implement Nexus operations.
*
* @module
*/

export {
//
log,
Expand Down