@avaprotocol/sdk-js 2.3.8 → 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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/models/step.js +1 -1
- package/package.json +1 -1
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:
|
package/dist/models/step.js
CHANGED
|
@@ -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