@sniipwebmaster/user-service-client-grpcweb-ts 25.9.13293 → 25.9.13315
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.
|
@@ -899,6 +899,9 @@ export class CreateUserAccountWebRequest extends jspb.Message {
|
|
|
899
899
|
getAppaccounttype(): AppAccountType;
|
|
900
900
|
setAppaccounttype(value: AppAccountType): CreateUserAccountWebRequest;
|
|
901
901
|
|
|
902
|
+
getAbnnumber(): string;
|
|
903
|
+
setAbnnumber(value: string): CreateUserAccountWebRequest;
|
|
904
|
+
|
|
902
905
|
serializeBinary(): Uint8Array;
|
|
903
906
|
toObject(includeInstance?: boolean): CreateUserAccountWebRequest.AsObject;
|
|
904
907
|
static toObject(includeInstance: boolean, msg: CreateUserAccountWebRequest): CreateUserAccountWebRequest.AsObject;
|
|
@@ -921,6 +924,7 @@ export namespace CreateUserAccountWebRequest {
|
|
|
921
924
|
promocode: string,
|
|
922
925
|
preferredfirstname: string,
|
|
923
926
|
appaccounttype: AppAccountType,
|
|
927
|
+
abnnumber: string,
|
|
924
928
|
}
|
|
925
929
|
}
|
|
926
930
|
|
|
@@ -10897,7 +10897,8 @@ proto.sniipuserservice.CreateUserAccountWebRequest.toObject = function(includeIn
|
|
|
10897
10897
|
regioncode: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
10898
10898
|
promocode: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
10899
10899
|
preferredfirstname: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
10900
|
-
appaccounttype: jspb.Message.getFieldWithDefault(msg, 12, 0)
|
|
10900
|
+
appaccounttype: jspb.Message.getFieldWithDefault(msg, 12, 0),
|
|
10901
|
+
abnnumber: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
10901
10902
|
};
|
|
10902
10903
|
|
|
10903
10904
|
if (includeInstance) {
|
|
@@ -10983,6 +10984,10 @@ proto.sniipuserservice.CreateUserAccountWebRequest.deserializeBinaryFromReader =
|
|
|
10983
10984
|
var value = /** @type {!proto.sniipuserservice.AppAccountType} */ (reader.readEnum());
|
|
10984
10985
|
msg.setAppaccounttype(value);
|
|
10985
10986
|
break;
|
|
10987
|
+
case 13:
|
|
10988
|
+
var value = /** @type {string} */ (reader.readString());
|
|
10989
|
+
msg.setAbnnumber(value);
|
|
10990
|
+
break;
|
|
10986
10991
|
default:
|
|
10987
10992
|
reader.skipField();
|
|
10988
10993
|
break;
|
|
@@ -11097,6 +11102,13 @@ proto.sniipuserservice.CreateUserAccountWebRequest.serializeBinaryToWriter = fun
|
|
|
11097
11102
|
f
|
|
11098
11103
|
);
|
|
11099
11104
|
}
|
|
11105
|
+
f = message.getAbnnumber();
|
|
11106
|
+
if (f.length > 0) {
|
|
11107
|
+
writer.writeString(
|
|
11108
|
+
13,
|
|
11109
|
+
f
|
|
11110
|
+
);
|
|
11111
|
+
}
|
|
11100
11112
|
};
|
|
11101
11113
|
|
|
11102
11114
|
|
|
@@ -11335,6 +11347,24 @@ proto.sniipuserservice.CreateUserAccountWebRequest.prototype.setAppaccounttype =
|
|
|
11335
11347
|
};
|
|
11336
11348
|
|
|
11337
11349
|
|
|
11350
|
+
/**
|
|
11351
|
+
* optional string abnNumber = 13;
|
|
11352
|
+
* @return {string}
|
|
11353
|
+
*/
|
|
11354
|
+
proto.sniipuserservice.CreateUserAccountWebRequest.prototype.getAbnnumber = function() {
|
|
11355
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
11356
|
+
};
|
|
11357
|
+
|
|
11358
|
+
|
|
11359
|
+
/**
|
|
11360
|
+
* @param {string} value
|
|
11361
|
+
* @return {!proto.sniipuserservice.CreateUserAccountWebRequest} returns this
|
|
11362
|
+
*/
|
|
11363
|
+
proto.sniipuserservice.CreateUserAccountWebRequest.prototype.setAbnnumber = function(value) {
|
|
11364
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
11365
|
+
};
|
|
11366
|
+
|
|
11367
|
+
|
|
11338
11368
|
|
|
11339
11369
|
|
|
11340
11370
|
|