@sniipwebmaster/user-service-client-grpcweb 21.13.5020 → 21.13.5040
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/dependancies/service_pb.js +56 -2
- package/package.json +1 -1
|
@@ -8698,7 +8698,8 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.toObject = function(opt_in
|
|
|
8698
8698
|
*/
|
|
8699
8699
|
proto.sniipuserservice.DeleteAccountRequest.toObject = function(includeInstance, msg) {
|
|
8700
8700
|
var f, obj = {
|
|
8701
|
-
feedback: msg.getFeedback()
|
|
8701
|
+
feedback: msg.getFeedback(),
|
|
8702
|
+
reason: msg.getReason()
|
|
8702
8703
|
};
|
|
8703
8704
|
|
|
8704
8705
|
if (includeInstance) {
|
|
@@ -8739,6 +8740,10 @@ proto.sniipuserservice.DeleteAccountRequest.deserializeBinaryFromReader = functi
|
|
|
8739
8740
|
var value = /** @type {string} */ (reader.readString());
|
|
8740
8741
|
msg.setFeedback(value);
|
|
8741
8742
|
break;
|
|
8743
|
+
case 2:
|
|
8744
|
+
var value = /** @type {string} */ (reader.readString());
|
|
8745
|
+
msg.setReason(value);
|
|
8746
|
+
break;
|
|
8742
8747
|
default:
|
|
8743
8748
|
reader.skipField();
|
|
8744
8749
|
break;
|
|
@@ -8784,6 +8789,13 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.serializeBinaryToWriter =
|
|
|
8784
8789
|
f
|
|
8785
8790
|
);
|
|
8786
8791
|
}
|
|
8792
|
+
f = this.getReason();
|
|
8793
|
+
if (f.length > 0) {
|
|
8794
|
+
writer.writeString(
|
|
8795
|
+
2,
|
|
8796
|
+
f
|
|
8797
|
+
);
|
|
8798
|
+
}
|
|
8787
8799
|
};
|
|
8788
8800
|
|
|
8789
8801
|
|
|
@@ -8811,6 +8823,21 @@ proto.sniipuserservice.DeleteAccountRequest.prototype.setFeedback = function(val
|
|
|
8811
8823
|
};
|
|
8812
8824
|
|
|
8813
8825
|
|
|
8826
|
+
/**
|
|
8827
|
+
* optional string reason = 2;
|
|
8828
|
+
* @return {string}
|
|
8829
|
+
*/
|
|
8830
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.getReason = function() {
|
|
8831
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 2, ""));
|
|
8832
|
+
};
|
|
8833
|
+
|
|
8834
|
+
|
|
8835
|
+
/** @param {string} value */
|
|
8836
|
+
proto.sniipuserservice.DeleteAccountRequest.prototype.setReason = function(value) {
|
|
8837
|
+
jspb.Message.setField(this, 2, value);
|
|
8838
|
+
};
|
|
8839
|
+
|
|
8840
|
+
|
|
8814
8841
|
|
|
8815
8842
|
/**
|
|
8816
8843
|
* Generated by JsPbCodeGenerator.
|
|
@@ -9754,7 +9781,8 @@ proto.sniipuserservice.FeedbackRequest.prototype.toObject = function(opt_include
|
|
|
9754
9781
|
proto.sniipuserservice.FeedbackRequest.toObject = function(includeInstance, msg) {
|
|
9755
9782
|
var f, obj = {
|
|
9756
9783
|
event: msg.getEvent(),
|
|
9757
|
-
feedback: msg.getFeedback()
|
|
9784
|
+
feedback: msg.getFeedback(),
|
|
9785
|
+
reason: msg.getReason()
|
|
9758
9786
|
};
|
|
9759
9787
|
|
|
9760
9788
|
if (includeInstance) {
|
|
@@ -9799,6 +9827,10 @@ proto.sniipuserservice.FeedbackRequest.deserializeBinaryFromReader = function(ms
|
|
|
9799
9827
|
var value = /** @type {string} */ (reader.readString());
|
|
9800
9828
|
msg.setFeedback(value);
|
|
9801
9829
|
break;
|
|
9830
|
+
case 3:
|
|
9831
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9832
|
+
msg.setReason(value);
|
|
9833
|
+
break;
|
|
9802
9834
|
default:
|
|
9803
9835
|
reader.skipField();
|
|
9804
9836
|
break;
|
|
@@ -9851,6 +9883,13 @@ proto.sniipuserservice.FeedbackRequest.prototype.serializeBinaryToWriter = funct
|
|
|
9851
9883
|
f
|
|
9852
9884
|
);
|
|
9853
9885
|
}
|
|
9886
|
+
f = this.getReason();
|
|
9887
|
+
if (f.length > 0) {
|
|
9888
|
+
writer.writeString(
|
|
9889
|
+
3,
|
|
9890
|
+
f
|
|
9891
|
+
);
|
|
9892
|
+
}
|
|
9854
9893
|
};
|
|
9855
9894
|
|
|
9856
9895
|
|
|
@@ -9893,6 +9932,21 @@ proto.sniipuserservice.FeedbackRequest.prototype.setFeedback = function(value) {
|
|
|
9893
9932
|
};
|
|
9894
9933
|
|
|
9895
9934
|
|
|
9935
|
+
/**
|
|
9936
|
+
* optional string reason = 3;
|
|
9937
|
+
* @return {string}
|
|
9938
|
+
*/
|
|
9939
|
+
proto.sniipuserservice.FeedbackRequest.prototype.getReason = function() {
|
|
9940
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 3, ""));
|
|
9941
|
+
};
|
|
9942
|
+
|
|
9943
|
+
|
|
9944
|
+
/** @param {string} value */
|
|
9945
|
+
proto.sniipuserservice.FeedbackRequest.prototype.setReason = function(value) {
|
|
9946
|
+
jspb.Message.setField(this, 3, value);
|
|
9947
|
+
};
|
|
9948
|
+
|
|
9949
|
+
|
|
9896
9950
|
|
|
9897
9951
|
/**
|
|
9898
9952
|
* Generated by JsPbCodeGenerator.
|