@sniipwebmaster/user-service-client-grpcweb 22.23.8613 → 22.23.8638
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 +28 -1
- package/package.json +1 -1
|
@@ -29598,7 +29598,8 @@ proto.sniipuserservice.SendCustomerSmsRequest.toObject = function(includeInstanc
|
|
|
29598
29598
|
var f, obj = {
|
|
29599
29599
|
userid: msg.getUserid(),
|
|
29600
29600
|
phonenumber: msg.getPhonenumber(),
|
|
29601
|
-
message: msg.getMessage()
|
|
29601
|
+
message: msg.getMessage(),
|
|
29602
|
+
password: msg.getPassword()
|
|
29602
29603
|
};
|
|
29603
29604
|
|
|
29604
29605
|
if (includeInstance) {
|
|
@@ -29647,6 +29648,10 @@ proto.sniipuserservice.SendCustomerSmsRequest.deserializeBinaryFromReader = func
|
|
|
29647
29648
|
var value = /** @type {string} */ (reader.readString());
|
|
29648
29649
|
msg.setMessage(value);
|
|
29649
29650
|
break;
|
|
29651
|
+
case 4:
|
|
29652
|
+
var value = /** @type {string} */ (reader.readString());
|
|
29653
|
+
msg.setPassword(value);
|
|
29654
|
+
break;
|
|
29650
29655
|
default:
|
|
29651
29656
|
reader.skipField();
|
|
29652
29657
|
break;
|
|
@@ -29706,6 +29711,13 @@ proto.sniipuserservice.SendCustomerSmsRequest.prototype.serializeBinaryToWriter
|
|
|
29706
29711
|
f
|
|
29707
29712
|
);
|
|
29708
29713
|
}
|
|
29714
|
+
f = this.getPassword();
|
|
29715
|
+
if (f.length > 0) {
|
|
29716
|
+
writer.writeString(
|
|
29717
|
+
4,
|
|
29718
|
+
f
|
|
29719
|
+
);
|
|
29720
|
+
}
|
|
29709
29721
|
};
|
|
29710
29722
|
|
|
29711
29723
|
|
|
@@ -29763,6 +29775,21 @@ proto.sniipuserservice.SendCustomerSmsRequest.prototype.setMessage = function(va
|
|
|
29763
29775
|
};
|
|
29764
29776
|
|
|
29765
29777
|
|
|
29778
|
+
/**
|
|
29779
|
+
* optional string password = 4;
|
|
29780
|
+
* @return {string}
|
|
29781
|
+
*/
|
|
29782
|
+
proto.sniipuserservice.SendCustomerSmsRequest.prototype.getPassword = function() {
|
|
29783
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
29784
|
+
};
|
|
29785
|
+
|
|
29786
|
+
|
|
29787
|
+
/** @param {string} value */
|
|
29788
|
+
proto.sniipuserservice.SendCustomerSmsRequest.prototype.setPassword = function(value) {
|
|
29789
|
+
jspb.Message.setField(this, 4, value);
|
|
29790
|
+
};
|
|
29791
|
+
|
|
29792
|
+
|
|
29766
29793
|
|
|
29767
29794
|
/**
|
|
29768
29795
|
* Generated by JsPbCodeGenerator.
|