protobuf-platform 1.2.465 → 1.2.468
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/package.json +1 -1
- package/user/user.proto +6 -0
- package/user/user_pb.js +289 -1
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -557,6 +557,12 @@ message UserDataResponse {
|
|
|
557
557
|
optional string house = 50;
|
|
558
558
|
optional string apartment = 51;
|
|
559
559
|
optional bool two_fa_enabled = 52;
|
|
560
|
+
optional string nationality = 53;
|
|
561
|
+
optional string last_ip = 54;
|
|
562
|
+
optional string referral = 55;
|
|
563
|
+
optional string updated_at = 56;
|
|
564
|
+
optional string email_subscribed_at = 57;
|
|
565
|
+
optional string email_unsubscribed_at = 58;
|
|
560
566
|
}
|
|
561
567
|
message UserDepositProfileResponse {
|
|
562
568
|
int32 id = 1;
|
package/user/user_pb.js
CHANGED
|
@@ -19914,7 +19914,13 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
|
|
|
19914
19914
|
street: jspb.Message.getFieldWithDefault(msg, 49, ""),
|
|
19915
19915
|
house: jspb.Message.getFieldWithDefault(msg, 50, ""),
|
|
19916
19916
|
apartment: jspb.Message.getFieldWithDefault(msg, 51, ""),
|
|
19917
|
-
twoFaEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 52, false)
|
|
19917
|
+
twoFaEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 52, false),
|
|
19918
|
+
nationality: jspb.Message.getFieldWithDefault(msg, 53, ""),
|
|
19919
|
+
lastIp: jspb.Message.getFieldWithDefault(msg, 54, ""),
|
|
19920
|
+
referral: jspb.Message.getFieldWithDefault(msg, 55, ""),
|
|
19921
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 56, ""),
|
|
19922
|
+
emailSubscribedAt: jspb.Message.getFieldWithDefault(msg, 57, ""),
|
|
19923
|
+
emailUnsubscribedAt: jspb.Message.getFieldWithDefault(msg, 58, "")
|
|
19918
19924
|
};
|
|
19919
19925
|
|
|
19920
19926
|
if (includeInstance) {
|
|
@@ -20160,6 +20166,30 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
|
|
|
20160
20166
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
20161
20167
|
msg.setTwoFaEnabled(value);
|
|
20162
20168
|
break;
|
|
20169
|
+
case 53:
|
|
20170
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20171
|
+
msg.setNationality(value);
|
|
20172
|
+
break;
|
|
20173
|
+
case 54:
|
|
20174
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20175
|
+
msg.setLastIp(value);
|
|
20176
|
+
break;
|
|
20177
|
+
case 55:
|
|
20178
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20179
|
+
msg.setReferral(value);
|
|
20180
|
+
break;
|
|
20181
|
+
case 56:
|
|
20182
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20183
|
+
msg.setUpdatedAt(value);
|
|
20184
|
+
break;
|
|
20185
|
+
case 57:
|
|
20186
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20187
|
+
msg.setEmailSubscribedAt(value);
|
|
20188
|
+
break;
|
|
20189
|
+
case 58:
|
|
20190
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20191
|
+
msg.setEmailUnsubscribedAt(value);
|
|
20192
|
+
break;
|
|
20163
20193
|
default:
|
|
20164
20194
|
reader.skipField();
|
|
20165
20195
|
break;
|
|
@@ -20554,6 +20584,48 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
|
|
|
20554
20584
|
f
|
|
20555
20585
|
);
|
|
20556
20586
|
}
|
|
20587
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 53));
|
|
20588
|
+
if (f != null) {
|
|
20589
|
+
writer.writeString(
|
|
20590
|
+
53,
|
|
20591
|
+
f
|
|
20592
|
+
);
|
|
20593
|
+
}
|
|
20594
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 54));
|
|
20595
|
+
if (f != null) {
|
|
20596
|
+
writer.writeString(
|
|
20597
|
+
54,
|
|
20598
|
+
f
|
|
20599
|
+
);
|
|
20600
|
+
}
|
|
20601
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 55));
|
|
20602
|
+
if (f != null) {
|
|
20603
|
+
writer.writeString(
|
|
20604
|
+
55,
|
|
20605
|
+
f
|
|
20606
|
+
);
|
|
20607
|
+
}
|
|
20608
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 56));
|
|
20609
|
+
if (f != null) {
|
|
20610
|
+
writer.writeString(
|
|
20611
|
+
56,
|
|
20612
|
+
f
|
|
20613
|
+
);
|
|
20614
|
+
}
|
|
20615
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 57));
|
|
20616
|
+
if (f != null) {
|
|
20617
|
+
writer.writeString(
|
|
20618
|
+
57,
|
|
20619
|
+
f
|
|
20620
|
+
);
|
|
20621
|
+
}
|
|
20622
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 58));
|
|
20623
|
+
if (f != null) {
|
|
20624
|
+
writer.writeString(
|
|
20625
|
+
58,
|
|
20626
|
+
f
|
|
20627
|
+
);
|
|
20628
|
+
}
|
|
20557
20629
|
};
|
|
20558
20630
|
|
|
20559
20631
|
|
|
@@ -22394,6 +22466,222 @@ proto.user.UserDataResponse.prototype.hasTwoFaEnabled = function() {
|
|
|
22394
22466
|
};
|
|
22395
22467
|
|
|
22396
22468
|
|
|
22469
|
+
/**
|
|
22470
|
+
* optional string nationality = 53;
|
|
22471
|
+
* @return {string}
|
|
22472
|
+
*/
|
|
22473
|
+
proto.user.UserDataResponse.prototype.getNationality = function() {
|
|
22474
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 53, ""));
|
|
22475
|
+
};
|
|
22476
|
+
|
|
22477
|
+
|
|
22478
|
+
/**
|
|
22479
|
+
* @param {string} value
|
|
22480
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22481
|
+
*/
|
|
22482
|
+
proto.user.UserDataResponse.prototype.setNationality = function(value) {
|
|
22483
|
+
return jspb.Message.setField(this, 53, value);
|
|
22484
|
+
};
|
|
22485
|
+
|
|
22486
|
+
|
|
22487
|
+
/**
|
|
22488
|
+
* Clears the field making it undefined.
|
|
22489
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22490
|
+
*/
|
|
22491
|
+
proto.user.UserDataResponse.prototype.clearNationality = function() {
|
|
22492
|
+
return jspb.Message.setField(this, 53, undefined);
|
|
22493
|
+
};
|
|
22494
|
+
|
|
22495
|
+
|
|
22496
|
+
/**
|
|
22497
|
+
* Returns whether this field is set.
|
|
22498
|
+
* @return {boolean}
|
|
22499
|
+
*/
|
|
22500
|
+
proto.user.UserDataResponse.prototype.hasNationality = function() {
|
|
22501
|
+
return jspb.Message.getField(this, 53) != null;
|
|
22502
|
+
};
|
|
22503
|
+
|
|
22504
|
+
|
|
22505
|
+
/**
|
|
22506
|
+
* optional string last_ip = 54;
|
|
22507
|
+
* @return {string}
|
|
22508
|
+
*/
|
|
22509
|
+
proto.user.UserDataResponse.prototype.getLastIp = function() {
|
|
22510
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 54, ""));
|
|
22511
|
+
};
|
|
22512
|
+
|
|
22513
|
+
|
|
22514
|
+
/**
|
|
22515
|
+
* @param {string} value
|
|
22516
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22517
|
+
*/
|
|
22518
|
+
proto.user.UserDataResponse.prototype.setLastIp = function(value) {
|
|
22519
|
+
return jspb.Message.setField(this, 54, value);
|
|
22520
|
+
};
|
|
22521
|
+
|
|
22522
|
+
|
|
22523
|
+
/**
|
|
22524
|
+
* Clears the field making it undefined.
|
|
22525
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22526
|
+
*/
|
|
22527
|
+
proto.user.UserDataResponse.prototype.clearLastIp = function() {
|
|
22528
|
+
return jspb.Message.setField(this, 54, undefined);
|
|
22529
|
+
};
|
|
22530
|
+
|
|
22531
|
+
|
|
22532
|
+
/**
|
|
22533
|
+
* Returns whether this field is set.
|
|
22534
|
+
* @return {boolean}
|
|
22535
|
+
*/
|
|
22536
|
+
proto.user.UserDataResponse.prototype.hasLastIp = function() {
|
|
22537
|
+
return jspb.Message.getField(this, 54) != null;
|
|
22538
|
+
};
|
|
22539
|
+
|
|
22540
|
+
|
|
22541
|
+
/**
|
|
22542
|
+
* optional string referral = 55;
|
|
22543
|
+
* @return {string}
|
|
22544
|
+
*/
|
|
22545
|
+
proto.user.UserDataResponse.prototype.getReferral = function() {
|
|
22546
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 55, ""));
|
|
22547
|
+
};
|
|
22548
|
+
|
|
22549
|
+
|
|
22550
|
+
/**
|
|
22551
|
+
* @param {string} value
|
|
22552
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22553
|
+
*/
|
|
22554
|
+
proto.user.UserDataResponse.prototype.setReferral = function(value) {
|
|
22555
|
+
return jspb.Message.setField(this, 55, value);
|
|
22556
|
+
};
|
|
22557
|
+
|
|
22558
|
+
|
|
22559
|
+
/**
|
|
22560
|
+
* Clears the field making it undefined.
|
|
22561
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22562
|
+
*/
|
|
22563
|
+
proto.user.UserDataResponse.prototype.clearReferral = function() {
|
|
22564
|
+
return jspb.Message.setField(this, 55, undefined);
|
|
22565
|
+
};
|
|
22566
|
+
|
|
22567
|
+
|
|
22568
|
+
/**
|
|
22569
|
+
* Returns whether this field is set.
|
|
22570
|
+
* @return {boolean}
|
|
22571
|
+
*/
|
|
22572
|
+
proto.user.UserDataResponse.prototype.hasReferral = function() {
|
|
22573
|
+
return jspb.Message.getField(this, 55) != null;
|
|
22574
|
+
};
|
|
22575
|
+
|
|
22576
|
+
|
|
22577
|
+
/**
|
|
22578
|
+
* optional string updated_at = 56;
|
|
22579
|
+
* @return {string}
|
|
22580
|
+
*/
|
|
22581
|
+
proto.user.UserDataResponse.prototype.getUpdatedAt = function() {
|
|
22582
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 56, ""));
|
|
22583
|
+
};
|
|
22584
|
+
|
|
22585
|
+
|
|
22586
|
+
/**
|
|
22587
|
+
* @param {string} value
|
|
22588
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22589
|
+
*/
|
|
22590
|
+
proto.user.UserDataResponse.prototype.setUpdatedAt = function(value) {
|
|
22591
|
+
return jspb.Message.setField(this, 56, value);
|
|
22592
|
+
};
|
|
22593
|
+
|
|
22594
|
+
|
|
22595
|
+
/**
|
|
22596
|
+
* Clears the field making it undefined.
|
|
22597
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22598
|
+
*/
|
|
22599
|
+
proto.user.UserDataResponse.prototype.clearUpdatedAt = function() {
|
|
22600
|
+
return jspb.Message.setField(this, 56, undefined);
|
|
22601
|
+
};
|
|
22602
|
+
|
|
22603
|
+
|
|
22604
|
+
/**
|
|
22605
|
+
* Returns whether this field is set.
|
|
22606
|
+
* @return {boolean}
|
|
22607
|
+
*/
|
|
22608
|
+
proto.user.UserDataResponse.prototype.hasUpdatedAt = function() {
|
|
22609
|
+
return jspb.Message.getField(this, 56) != null;
|
|
22610
|
+
};
|
|
22611
|
+
|
|
22612
|
+
|
|
22613
|
+
/**
|
|
22614
|
+
* optional string email_subscribed_at = 57;
|
|
22615
|
+
* @return {string}
|
|
22616
|
+
*/
|
|
22617
|
+
proto.user.UserDataResponse.prototype.getEmailSubscribedAt = function() {
|
|
22618
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 57, ""));
|
|
22619
|
+
};
|
|
22620
|
+
|
|
22621
|
+
|
|
22622
|
+
/**
|
|
22623
|
+
* @param {string} value
|
|
22624
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22625
|
+
*/
|
|
22626
|
+
proto.user.UserDataResponse.prototype.setEmailSubscribedAt = function(value) {
|
|
22627
|
+
return jspb.Message.setField(this, 57, value);
|
|
22628
|
+
};
|
|
22629
|
+
|
|
22630
|
+
|
|
22631
|
+
/**
|
|
22632
|
+
* Clears the field making it undefined.
|
|
22633
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22634
|
+
*/
|
|
22635
|
+
proto.user.UserDataResponse.prototype.clearEmailSubscribedAt = function() {
|
|
22636
|
+
return jspb.Message.setField(this, 57, undefined);
|
|
22637
|
+
};
|
|
22638
|
+
|
|
22639
|
+
|
|
22640
|
+
/**
|
|
22641
|
+
* Returns whether this field is set.
|
|
22642
|
+
* @return {boolean}
|
|
22643
|
+
*/
|
|
22644
|
+
proto.user.UserDataResponse.prototype.hasEmailSubscribedAt = function() {
|
|
22645
|
+
return jspb.Message.getField(this, 57) != null;
|
|
22646
|
+
};
|
|
22647
|
+
|
|
22648
|
+
|
|
22649
|
+
/**
|
|
22650
|
+
* optional string email_unsubscribed_at = 58;
|
|
22651
|
+
* @return {string}
|
|
22652
|
+
*/
|
|
22653
|
+
proto.user.UserDataResponse.prototype.getEmailUnsubscribedAt = function() {
|
|
22654
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 58, ""));
|
|
22655
|
+
};
|
|
22656
|
+
|
|
22657
|
+
|
|
22658
|
+
/**
|
|
22659
|
+
* @param {string} value
|
|
22660
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22661
|
+
*/
|
|
22662
|
+
proto.user.UserDataResponse.prototype.setEmailUnsubscribedAt = function(value) {
|
|
22663
|
+
return jspb.Message.setField(this, 58, value);
|
|
22664
|
+
};
|
|
22665
|
+
|
|
22666
|
+
|
|
22667
|
+
/**
|
|
22668
|
+
* Clears the field making it undefined.
|
|
22669
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22670
|
+
*/
|
|
22671
|
+
proto.user.UserDataResponse.prototype.clearEmailUnsubscribedAt = function() {
|
|
22672
|
+
return jspb.Message.setField(this, 58, undefined);
|
|
22673
|
+
};
|
|
22674
|
+
|
|
22675
|
+
|
|
22676
|
+
/**
|
|
22677
|
+
* Returns whether this field is set.
|
|
22678
|
+
* @return {boolean}
|
|
22679
|
+
*/
|
|
22680
|
+
proto.user.UserDataResponse.prototype.hasEmailUnsubscribedAt = function() {
|
|
22681
|
+
return jspb.Message.getField(this, 58) != null;
|
|
22682
|
+
};
|
|
22683
|
+
|
|
22684
|
+
|
|
22397
22685
|
|
|
22398
22686
|
|
|
22399
22687
|
|