@xmobitea/gn-typescript-client 2.4.3 → 2.4.4

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.
@@ -8184,7 +8184,7 @@ class OperationRequest {
8184
8184
  }
8185
8185
  toString() {
8186
8186
  var _a;
8187
- return "Code: " + CodeHelper.getOperationCodeName(this.operationCode) + " (" + this.operationCode + ")" + ", requestId: " + this.requestId + ", parameters " + ((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData()) + ", encrypted " + this.encrypted;
8187
+ return "Code: " + CodeHelper.getOperationCodeName(this.operationCode) + " (" + this.operationCode + ")" + ", requestId: " + this.requestId + ", parameters " + JSON.stringify((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData()) + ", encrypted " + this.encrypted;
8188
8188
  }
8189
8189
  }
8190
8190
  OperationRequest.defaultTimeOut = 15;
@@ -28706,7 +28706,7 @@ class OperationEvent {
28706
28706
  }
28707
28707
  toString() {
28708
28708
  var _a;
28709
- return "Code: " + CodeHelper.getEventCodeName(this.eventCode) + " (" + this.eventCode + ")" + ", parameters " + ((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData()) + ", encrypted " + this.encrypted;
28709
+ return "Code: " + CodeHelper.getEventCodeName(this.eventCode) + " (" + this.eventCode + ")" + ", parameters " + JSON.stringify((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData()) + ", encrypted " + this.encrypted;
28710
28710
  }
28711
28711
  }
28712
28712
 
@@ -28800,7 +28800,7 @@ class OperationResponse {
28800
28800
  let stringBuilder = "";
28801
28801
  stringBuilder += "Code: " + CodeHelper.getOperationCodeName(this.operationCode) + " (" + this.operationCode + ")" + ", responseId: " + this.responseId + ", returnCode " + CodeHelper.getReturnCodeName(this.returnCode);
28802
28802
  if (this.returnCode == ReturnCode.Ok)
28803
- stringBuilder += ", parameters " + ((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData());
28803
+ stringBuilder += ", parameters " + JSON.stringify((_a = this.parameters) === null || _a === void 0 ? void 0 : _a.toData());
28804
28804
  else if (this.returnCode == ReturnCode.InvalidRequestParameters) {
28805
28805
  if (this.invalidMembers != null) {
28806
28806
  let invalidStr = "";