@temporalio/nexus 1.13.0 → 1.13.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -1,2 +1,7 @@
1
+ /**
2
+ * Invoke and implement Nexus operations.
3
+ *
4
+ * @module
5
+ */
1
6
  export { log, getClient, metricMeter, } from './context';
2
7
  export { startWorkflow, WorkflowHandle, WorkflowRunOperationHandler, WorkflowRunOperationStartHandler, WorkflowStartOptions, } from './workflow-helpers';
package/lib/index.js CHANGED
@@ -1,4 +1,9 @@
1
1
  "use strict";
2
+ /**
3
+ * Invoke and implement Nexus operations.
4
+ *
5
+ * @module
6
+ */
2
7
  Object.defineProperty(exports, "__esModule", { value: true });
3
8
  exports.WorkflowRunOperationHandler = exports.startWorkflow = exports.metricMeter = exports.getClient = exports.log = void 0;
4
9
  var context_1 = require("./context");
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,qCAKmB;AAJjB,EAAE;AACF,8FAAA,GAAG,OAAA;AACH,oGAAA,SAAS,OAAA;AACT,sGAAA,WAAW,OAAA;AAGb,uDAM4B;AAL1B,iHAAA,aAAa,OAAA;AAEb,+HAAA,2BAA2B,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH,qCAKmB;AAJjB,EAAE;AACF,8FAAA,GAAG,OAAA;AACH,oGAAA,SAAS,OAAA;AACT,sGAAA,WAAW,OAAA;AAGb,uDAM4B;AAL1B,iHAAA,aAAa,OAAA;AAEb,+HAAA,2BAA2B,OAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temporalio/nexus",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Temporal.io SDK Nexus sub-package",
5
5
  "main": "lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -13,9 +13,9 @@
13
13
  "author": "Temporal Technologies Inc. <sdk@temporal.io>",
14
14
  "license": "MIT",
15
15
  "dependencies": {
16
- "@temporalio/client": "1.13.0",
17
- "@temporalio/common": "1.13.0",
18
- "@temporalio/proto": "1.13.0",
16
+ "@temporalio/client": "1.13.1",
17
+ "@temporalio/common": "1.13.1",
18
+ "@temporalio/proto": "1.13.1",
19
19
  "long": "^5.2.3",
20
20
  "nexus-rpc": "^0.0.1"
21
21
  },
@@ -38,5 +38,5 @@
38
38
  "src",
39
39
  "lib"
40
40
  ],
41
- "gitHead": "cf7c1e7d70f0c775f1382fd335b8bd721495f8cc"
41
+ "gitHead": "7904e19bc72dcdf9eb0275ecaa585a2ff2fec072"
42
42
  }
package/src/index.ts CHANGED
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Invoke and implement Nexus operations.
3
+ *
4
+ * @module
5
+ */
6
+
1
7
  export {
2
8
  //
3
9
  log,