@sniipwebmaster/user-service-client-grpcweb-ts 24.12.11464 → 24.12.11484

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.
@@ -5534,6 +5534,11 @@ export class VerifyPhoneRequest extends jspb.Message {
5534
5534
  getPassword(): string;
5535
5535
  setPassword(value: string): VerifyPhoneRequest;
5536
5536
 
5537
+ getAppaccounttype(): AppAccountType;
5538
+ setAppaccounttype(value: AppAccountType): VerifyPhoneRequest;
5539
+ hasAppaccounttype(): boolean;
5540
+ clearAppaccounttype(): VerifyPhoneRequest;
5541
+
5537
5542
  serializeBinary(): Uint8Array;
5538
5543
  toObject(includeInstance?: boolean): VerifyPhoneRequest.AsObject;
5539
5544
  static toObject(includeInstance: boolean, msg: VerifyPhoneRequest): VerifyPhoneRequest.AsObject;
@@ -5550,6 +5555,12 @@ export namespace VerifyPhoneRequest {
5550
5555
  regioncode: string,
5551
5556
  sociallogin: boolean,
5552
5557
  password: string,
5558
+ appaccounttype?: AppAccountType,
5559
+ }
5560
+
5561
+ export enum AppaccounttypeCase {
5562
+ _APPACCOUNTTYPE_NOT_SET = 0,
5563
+ APPACCOUNTTYPE = 7,
5553
5564
  }
5554
5565
  }
5555
5566
 
@@ -45281,7 +45281,8 @@ proto.sniipuserservice.VerifyPhoneRequest.toObject = function(includeInstance, m
45281
45281
  phonenumber: jspb.Message.getFieldWithDefault(msg, 3, ""),
45282
45282
  regioncode: jspb.Message.getFieldWithDefault(msg, 4, ""),
45283
45283
  sociallogin: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
45284
- password: jspb.Message.getFieldWithDefault(msg, 6, "")
45284
+ password: jspb.Message.getFieldWithDefault(msg, 6, ""),
45285
+ appaccounttype: jspb.Message.getFieldWithDefault(msg, 7, 0)
45285
45286
  };
45286
45287
 
45287
45288
  if (includeInstance) {
@@ -45342,6 +45343,10 @@ proto.sniipuserservice.VerifyPhoneRequest.deserializeBinaryFromReader = function
45342
45343
  var value = /** @type {string} */ (reader.readString());
45343
45344
  msg.setPassword(value);
45344
45345
  break;
45346
+ case 7:
45347
+ var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
45348
+ msg.setAppaccounttype(value);
45349
+ break;
45345
45350
  default:
45346
45351
  reader.skipField();
45347
45352
  break;
@@ -45413,6 +45418,13 @@ proto.sniipuserservice.VerifyPhoneRequest.serializeBinaryToWriter = function(mes
45413
45418
  f
45414
45419
  );
45415
45420
  }
45421
+ f = /** @type {!proto.sniipuserservice.AppAccountType} */ (jspb.Message.getField(message, 7));
45422
+ if (f != null) {
45423
+ writer.writeEnum(
45424
+ 7,
45425
+ f
45426
+ );
45427
+ }
45416
45428
  };
45417
45429
 
45418
45430
 
@@ -45524,6 +45536,42 @@ proto.sniipuserservice.VerifyPhoneRequest.prototype.setPassword = function(value
45524
45536
  };
45525
45537
 
45526
45538
 
45539
+ /**
45540
+ * optional AppAccountType appAccountType = 7;
45541
+ * @return {!proto.sniipuserservice.AppAccountType}
45542
+ */
45543
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.getAppaccounttype = function() {
45544
+ return /** @type {!proto.sniipuserservice.AppAccountType} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
45545
+ };
45546
+
45547
+
45548
+ /**
45549
+ * @param {!proto.sniipuserservice.AppAccountType} value
45550
+ * @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
45551
+ */
45552
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.setAppaccounttype = function(value) {
45553
+ return jspb.Message.setField(this, 7, value);
45554
+ };
45555
+
45556
+
45557
+ /**
45558
+ * Clears the field making it undefined.
45559
+ * @return {!proto.sniipuserservice.VerifyPhoneRequest} returns this
45560
+ */
45561
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.clearAppaccounttype = function() {
45562
+ return jspb.Message.setField(this, 7, undefined);
45563
+ };
45564
+
45565
+
45566
+ /**
45567
+ * Returns whether this field is set.
45568
+ * @return {boolean}
45569
+ */
45570
+ proto.sniipuserservice.VerifyPhoneRequest.prototype.hasAppaccounttype = function() {
45571
+ return jspb.Message.getField(this, 7) != null;
45572
+ };
45573
+
45574
+
45527
45575
 
45528
45576
 
45529
45577
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sniipwebmaster/user-service-client-grpcweb-ts",
3
- "version": "24.12.11464",
3
+ "version": "24.12.11484",
4
4
  "description": "user-service-client-grpcweb-ts",
5
5
  "author": "Sniip Development Team",
6
6
  "license": "MIT",