protobuf-platform 1.2.410 → 1.2.411
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 +1 -0
- package/user/user_pb.js +49 -1
package/package.json
CHANGED
package/user/user.proto
CHANGED
|
@@ -1013,6 +1013,7 @@ message StartUserKycVerificationRequest {
|
|
|
1013
1013
|
optional string callback_url = 6;
|
|
1014
1014
|
optional string correlation_id = 7;
|
|
1015
1015
|
optional string flow = 8;
|
|
1016
|
+
optional string ip = 9;
|
|
1016
1017
|
}
|
|
1017
1018
|
message StartUserKycVerificationResponse {
|
|
1018
1019
|
int32 user_id = 1;
|
package/user/user_pb.js
CHANGED
|
@@ -43031,7 +43031,8 @@ proto.user.StartUserKycVerificationRequest.toObject = function(includeInstance,
|
|
|
43031
43031
|
returnUrl: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
43032
43032
|
callbackUrl: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
43033
43033
|
correlationId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
43034
|
-
flow: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
43034
|
+
flow: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
43035
|
+
ip: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
43035
43036
|
};
|
|
43036
43037
|
|
|
43037
43038
|
if (includeInstance) {
|
|
@@ -43100,6 +43101,10 @@ proto.user.StartUserKycVerificationRequest.deserializeBinaryFromReader = functio
|
|
|
43100
43101
|
var value = /** @type {string} */ (reader.readString());
|
|
43101
43102
|
msg.setFlow(value);
|
|
43102
43103
|
break;
|
|
43104
|
+
case 9:
|
|
43105
|
+
var value = /** @type {string} */ (reader.readString());
|
|
43106
|
+
msg.setIp(value);
|
|
43107
|
+
break;
|
|
43103
43108
|
default:
|
|
43104
43109
|
reader.skipField();
|
|
43105
43110
|
break;
|
|
@@ -43185,6 +43190,13 @@ proto.user.StartUserKycVerificationRequest.serializeBinaryToWriter = function(me
|
|
|
43185
43190
|
f
|
|
43186
43191
|
);
|
|
43187
43192
|
}
|
|
43193
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 9));
|
|
43194
|
+
if (f != null) {
|
|
43195
|
+
writer.writeString(
|
|
43196
|
+
9,
|
|
43197
|
+
f
|
|
43198
|
+
);
|
|
43199
|
+
}
|
|
43188
43200
|
};
|
|
43189
43201
|
|
|
43190
43202
|
|
|
@@ -43458,6 +43470,42 @@ proto.user.StartUserKycVerificationRequest.prototype.hasFlow = function() {
|
|
|
43458
43470
|
};
|
|
43459
43471
|
|
|
43460
43472
|
|
|
43473
|
+
/**
|
|
43474
|
+
* optional string ip = 9;
|
|
43475
|
+
* @return {string}
|
|
43476
|
+
*/
|
|
43477
|
+
proto.user.StartUserKycVerificationRequest.prototype.getIp = function() {
|
|
43478
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
43479
|
+
};
|
|
43480
|
+
|
|
43481
|
+
|
|
43482
|
+
/**
|
|
43483
|
+
* @param {string} value
|
|
43484
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
43485
|
+
*/
|
|
43486
|
+
proto.user.StartUserKycVerificationRequest.prototype.setIp = function(value) {
|
|
43487
|
+
return jspb.Message.setField(this, 9, value);
|
|
43488
|
+
};
|
|
43489
|
+
|
|
43490
|
+
|
|
43491
|
+
/**
|
|
43492
|
+
* Clears the field making it undefined.
|
|
43493
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
43494
|
+
*/
|
|
43495
|
+
proto.user.StartUserKycVerificationRequest.prototype.clearIp = function() {
|
|
43496
|
+
return jspb.Message.setField(this, 9, undefined);
|
|
43497
|
+
};
|
|
43498
|
+
|
|
43499
|
+
|
|
43500
|
+
/**
|
|
43501
|
+
* Returns whether this field is set.
|
|
43502
|
+
* @return {boolean}
|
|
43503
|
+
*/
|
|
43504
|
+
proto.user.StartUserKycVerificationRequest.prototype.hasIp = function() {
|
|
43505
|
+
return jspb.Message.getField(this, 9) != null;
|
|
43506
|
+
};
|
|
43507
|
+
|
|
43508
|
+
|
|
43461
43509
|
|
|
43462
43510
|
|
|
43463
43511
|
|