@avaprotocol/sdk-js 2.3.7 → 2.3.9-dev.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @avaprotocol/sdk-js
2
2
 
3
+ ## 2.3.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 36ac928: Replace the old value getScheduleList to getSchedulesList
8
+ - Updated dependencies [36ac928]
9
+ - @avaprotocol/types@2.2.8
10
+
3
11
  ## 2.3.7
4
12
 
5
13
  ### Patch Changes
package/dist/index.js CHANGED
@@ -17716,7 +17716,7 @@ var Step = class _Step {
17716
17716
  return nodeOutputMessage && nodeOutputMessage.hasData() ? convertProtobufValueToJs(nodeOutputMessage.getData()) : void 0;
17717
17717
  case avs_pb20.Execution.Step.OutputDataCase.REST_API:
17718
17718
  nodeOutputMessage = step.getRestApi();
17719
- return nodeOutputMessage && nodeOutputMessage.hasData() ? nodeOutputMessage.getData() : void 0;
17719
+ return nodeOutputMessage && nodeOutputMessage.hasData() ? convertProtobufValueToJs(nodeOutputMessage.getData()) : void 0;
17720
17720
  case avs_pb20.Execution.Step.OutputDataCase.BRANCH:
17721
17721
  return step.getBranch()?.toObject();
17722
17722
  case avs_pb20.Execution.Step.OutputDataCase.FILTER:
package/dist/index.mjs CHANGED
@@ -17699,7 +17699,7 @@ var Step = class _Step {
17699
17699
  return nodeOutputMessage && nodeOutputMessage.hasData() ? convertProtobufValueToJs(nodeOutputMessage.getData()) : void 0;
17700
17700
  case avs_pb20.Execution.Step.OutputDataCase.REST_API:
17701
17701
  nodeOutputMessage = step.getRestApi();
17702
- return nodeOutputMessage && nodeOutputMessage.hasData() ? nodeOutputMessage.getData() : void 0;
17702
+ return nodeOutputMessage && nodeOutputMessage.hasData() ? convertProtobufValueToJs(nodeOutputMessage.getData()) : void 0;
17703
17703
  case avs_pb20.Execution.Step.OutputDataCase.BRANCH:
17704
17704
  return step.getBranch()?.toObject();
17705
17705
  case avs_pb20.Execution.Step.OutputDataCase.FILTER:
@@ -192,7 +192,7 @@ class Step {
192
192
  case avs_pb.Execution.Step.OutputDataCase.REST_API:
193
193
  nodeOutputMessage = step.getRestApi();
194
194
  return nodeOutputMessage && nodeOutputMessage.hasData()
195
- ? nodeOutputMessage.getData()
195
+ ? convertProtobufValueToJs(nodeOutputMessage.getData())
196
196
  : undefined;
197
197
  case avs_pb.Execution.Step.OutputDataCase.BRANCH:
198
198
  return step.getBranch()?.toObject();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avaprotocol/sdk-js",
3
- "version": "2.3.7",
3
+ "version": "2.3.9-dev.1",
4
4
  "description": "A JavaScript/TypeScript SDK designed to simplify integration with Ava Protocol's AVS",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",