diff --git a/packages/docs/docs/index.md b/packages/docs/docs/index.md index 3f768aeb6..8ba5c8d56 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,