File tree Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Expand file tree Collapse file tree 4 files changed +9
-0
lines changed Original file line number Diff line number Diff 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 |
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change @@ -7,5 +7,6 @@ export * as workflow from '@temporalio/workflow';
77export * as activity from '@temporalio/activity' ;
88export * as worker from '@temporalio/worker' ;
99export * as client from '@temporalio/client' ;
10+ export * as nexus from '@temporalio/nexus' ;
1011export * as testing from '@temporalio/testing' ;
1112export * as opentelemetry from '@temporalio/interceptors-opentelemetry' ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Invoke and implement Nexus operations.
3+ *
4+ * @module
5+ */
6+
17export {
28 //
39 log ,
You can’t perform that action at this time.
0 commit comments