@sniipwebmaster/user-service-client-grpcweb-ts 24.14.11792 → 24.14.11815

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.
@@ -5449,6 +5449,9 @@ export class WexAccountExistsRequest extends jspb.Message {
5449
5449
  getToken(): string;
5450
5450
  setToken(value: string): WexAccountExistsRequest;
5451
5451
 
5452
+ getProvider(): string;
5453
+ setProvider(value: string): WexAccountExistsRequest;
5454
+
5452
5455
  serializeBinary(): Uint8Array;
5453
5456
  toObject(includeInstance?: boolean): WexAccountExistsRequest.AsObject;
5454
5457
  static toObject(includeInstance: boolean, msg: WexAccountExistsRequest): WexAccountExistsRequest.AsObject;
@@ -5460,6 +5463,7 @@ export class WexAccountExistsRequest extends jspb.Message {
5460
5463
  export namespace WexAccountExistsRequest {
5461
5464
  export type AsObject = {
5462
5465
  token: string,
5466
+ provider: string,
5463
5467
  }
5464
5468
  }
5465
5469
 
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/user-service-client-grpcweb-ts",
3
- "version": "24.14.11792",
3
+ "version": "24.14.11815",
4
4
  "description": "user-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",