@sniipwebmaster/user-service-client-grpcweb 24.14.11792 → 24.14.11806
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
|
@@ -44822,7 +44822,8 @@ proto.sniipuserservice.WexAccountExistsRequest.prototype.toObject = function(opt
|
|
|
44822
44822
|
*/
|
|
44823
44823
|
proto.sniipuserservice.WexAccountExistsRequest.toObject = function(includeInstance, msg) {
|
|
44824
44824
|
var f, obj = {
|
|
44825
|
-
token: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
44825
|
+
token: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
44826
|
+
provider: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
44826
44827
|
};
|
|
44827
44828
|
|
|
44828
44829
|
if (includeInstance) {
|
|
@@ -44863,6 +44864,10 @@ proto.sniipuserservice.WexAccountExistsRequest.deserializeBinaryFromReader = fun
|
|
|
44863
44864
|
var value = /** @type {string} */ (reader.readString());
|
|
44864
44865
|
msg.setToken(value);
|
|
44865
44866
|
break;
|
|
44867
|
+
case 2:
|
|
44868
|
+
var value = /** @type {string} */ (reader.readString());
|
|
44869
|
+
msg.setProvider(value);
|
|
44870
|
+
break;
|
|
44866
44871
|
default:
|
|
44867
44872
|
reader.skipField();
|
|
44868
44873
|
break;
|
|
@@ -44899,6 +44904,13 @@ proto.sniipuserservice.WexAccountExistsRequest.serializeBinaryToWriter = functio
|
|
|
44899
44904
|
f
|
|
44900
44905
|
);
|
|
44901
44906
|
}
|
|
44907
|
+
f = message.getProvider();
|
|
44908
|
+
if (f.length > 0) {
|
|
44909
|
+
writer.writeString(
|
|
44910
|
+
2,
|
|
44911
|
+
f
|
|
44912
|
+
);
|
|
44913
|
+
}
|
|
44902
44914
|
};
|
|
44903
44915
|
|
|
44904
44916
|
|
|
@@ -44920,6 +44932,24 @@ proto.sniipuserservice.WexAccountExistsRequest.prototype.setToken = function(val
|
|
|
44920
44932
|
};
|
|
44921
44933
|
|
|
44922
44934
|
|
|
44935
|
+
/**
|
|
44936
|
+
* optional string provider = 2;
|
|
44937
|
+
* @return {string}
|
|
44938
|
+
*/
|
|
44939
|
+
proto.sniipuserservice.WexAccountExistsRequest.prototype.getProvider = function() {
|
|
44940
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
|
44941
|
+
};
|
|
44942
|
+
|
|
44943
|
+
|
|
44944
|
+
/**
|
|
44945
|
+
* @param {string} value
|
|
44946
|
+
* @return {!proto.sniipuserservice.WexAccountExistsRequest} returns this
|
|
44947
|
+
*/
|
|
44948
|
+
proto.sniipuserservice.WexAccountExistsRequest.prototype.setProvider = function(value) {
|
|
44949
|
+
return jspb.Message.setProto3StringField(this, 2, value);
|
|
44950
|
+
};
|
|
44951
|
+
|
|
44952
|
+
|
|
44923
44953
|
|
|
44924
44954
|
|
|
44925
44955
|
|