@sniipwebmaster/user-service-client-grpcweb-ts 23.11.10549 → 23.11.10566

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.
@@ -5248,6 +5248,9 @@ export class VerifyPhoneRequest extends jspb.Message {
5248
5248
  getSociallogin(): boolean;
5249
5249
  setSociallogin(value: boolean): VerifyPhoneRequest;
5250
5250
 
5251
+ getPassword(): string;
5252
+ setPassword(value: string): VerifyPhoneRequest;
5253
+
5251
5254
  serializeBinary(): Uint8Array;
5252
5255
  toObject(includeInstance?: boolean): VerifyPhoneRequest.AsObject;
5253
5256
  static toObject(includeInstance: boolean, msg: VerifyPhoneRequest): VerifyPhoneRequest.AsObject;
@@ -5263,6 +5266,7 @@ export namespace VerifyPhoneRequest {
5263
5266
  phonenumber: string,
5264
5267
  regioncode: string,
5265
5268
  sociallogin: boolean,
5269
+ password: string,
5266
5270
  }
5267
5271
  }
5268
5272
 
@@ -43295,7 +43295,8 @@ proto.sniipuserservice.VerifyPhoneRequest.toObject = function(includeInstance, m
43295
43295
  call: jspb.Message.getBooleanFieldWithDefault(msg, 2, false),
43296
43296
  phonenumber: jspb.Message.getFieldWithDefault(msg, 3, ""),
43297
43297
  regioncode: jspb.Message.getFieldWithDefault(msg, 4, ""),
43298
- sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false)
43298
+ sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
43299
+ password: jspb.Message.getFieldWithDefault(msg, 6, "")
43299
43300
  };
43300
43301
 
43301
43302
  if (includeInstance) {
@@ -43352,6 +43353,10 @@ proto.sniipuserservice.VerifyPhoneRequest.deserializeBinaryFromReader = function
43352
43353
  var value = /** @type {boolean} */ (reader.readBool());
43353
43354
  msg.setSociallogin(value);
43354
43355
  break;
43356
+ case 6:
43357
+ var value = /** @type {string} */ (reader.readString());
43358
+ msg.setPassword(value);
43359
+ break;
43355
43360
  default:
43356
43361
  reader.skipField();
43357
43362
  break;
@@ -43416,6 +43421,13 @@ proto.sniipuserservice.VerifyPhoneRequest.serializeBinaryToWriter = function(mes
43416
43421
  f
43417
43422
  );
43418
43423
  }
43424
+ f = message.getPassword();
43425
+ if (f.length > 0) {
43426
+ writer.writeString(
43427
+ 6,
43428
+ f
43429
+ );
43430
+ }
43419
43431
  };
43420
43432
 
43421
43433
 
@@ -43509,6 +43521,24 @@ proto.sniipuserservice.VerifyPhoneRequest.prototype.setSociallogin = function(va
43509
43521
  };
43510
43522
 
43511
43523
 
43524
+ /**
43525
+ * optional string password = 6;
43526
+ * @return {string}
43527
+ */
43528
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.getPassword = function() {
43529
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
43530
+ };
43531
+
43532
+
43533
+ /**
43534
+ * @param {string} value
43535
+ * @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
43536
+ */
43537
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.setPassword = function(value) {
43538
+ return jspb.Message.setProto3StringField(this, 6, value);
43539
+ };
43540
+
43541
+
43512
43542
 
43513
43543
 
43514
43544
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/user-service-client-grpcweb-ts",
3
- "version": "23.11.10549",
3
+ "version": "23.11.10566",
4
4
  "description": "user-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",