@sniipwebmaster/user-service-client-grpcweb 24.14.11836 → 24.14.11855
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 +31 -1
- package/package.json +1 -1
|
@@ -6710,7 +6710,8 @@ proto.sniipuserservice.CheckIfAccountUsedRequest.toObject = function(includeInst
|
|
|
6710
6710
|
var f, obj = {
|
|
6711
6711
|
account: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
6712
6712
|
accounttype: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
6713
|
-
userid: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
6713
|
+
userid: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
6714
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 4, "")
|
|
6714
6715
|
};
|
|
6715
6716
|
|
|
6716
6717
|
if (includeInstance) {
|
|
@@ -6759,6 +6760,10 @@ proto.sniipuserservice.CheckIfAccountUsedRequest.deserializeBinaryFromReader = f
|
|
|
6759
6760
|
var value = /** @type {number} */ (reader.readInt64());
|
|
6760
6761
|
msg.setUserid(value);
|
|
6761
6762
|
break;
|
|
6763
|
+
case 4:
|
|
6764
|
+
var value = /** @type {string} */ (reader.readString());
|
|
6765
|
+
msg.setAppaccounttype(value);
|
|
6766
|
+
break;
|
|
6762
6767
|
default:
|
|
6763
6768
|
reader.skipField();
|
|
6764
6769
|
break;
|
|
@@ -6809,6 +6814,13 @@ proto.sniipuserservice.CheckIfAccountUsedRequest.serializeBinaryToWriter = funct
|
|
|
6809
6814
|
f
|
|
6810
6815
|
);
|
|
6811
6816
|
}
|
|
6817
|
+
f = message.getAppaccounttype();
|
|
6818
|
+
if (f.length > 0) {
|
|
6819
|
+
writer.writeString(
|
|
6820
|
+
4,
|
|
6821
|
+
f
|
|
6822
|
+
);
|
|
6823
|
+
}
|
|
6812
6824
|
};
|
|
6813
6825
|
|
|
6814
6826
|
|
|
@@ -6866,6 +6878,24 @@ proto.sniipuserservice.CheckIfAccountUsedRequest.prototype.setUserid = function(
|
|
|
6866
6878
|
};
|
|
6867
6879
|
|
|
6868
6880
|
|
|
6881
|
+
/**
|
|
6882
|
+
* optional string appAccountType = 4;
|
|
6883
|
+
* @return {string}
|
|
6884
|
+
*/
|
|
6885
|
+
proto.sniipuserservice.CheckIfAccountUsedRequest.prototype.getAppaccounttype = function() {
|
|
6886
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
|
|
6887
|
+
};
|
|
6888
|
+
|
|
6889
|
+
|
|
6890
|
+
/**
|
|
6891
|
+
* @param {string} value
|
|
6892
|
+
* @return {!proto.sniipuserservice.CheckIfAccountUsedRequest} returns this
|
|
6893
|
+
*/
|
|
6894
|
+
proto.sniipuserservice.CheckIfAccountUsedRequest.prototype.setAppaccounttype = function(value) {
|
|
6895
|
+
return jspb.Message.setProto3StringField(this, 4, value);
|
|
6896
|
+
};
|
|
6897
|
+
|
|
6898
|
+
|
|
6869
6899
|
|
|
6870
6900
|
|
|
6871
6901
|
|