protobuf-platform 1.2.343 → 1.2.344
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
|
@@ -868,6 +868,7 @@ message StartUserKycVerificationRequest {
|
|
|
868
868
|
optional string return_url = 5;
|
|
869
869
|
optional string callback_url = 6;
|
|
870
870
|
optional string correlation_id = 7;
|
|
871
|
+
optional string flow = 8;
|
|
871
872
|
}
|
|
872
873
|
message StartUserKycVerificationResponse {
|
|
873
874
|
int32 user_id = 1;
|
package/user/user_pb.js
CHANGED
|
@@ -36853,7 +36853,8 @@ proto.user.StartUserKycVerificationRequest.toObject = function(includeInstance,
|
|
|
36853
36853
|
locale: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
36854
36854
|
returnUrl: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
36855
36855
|
callbackUrl: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
36856
|
-
correlationId: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
36856
|
+
correlationId: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
36857
|
+
flow: jspb.Message.getFieldWithDefault(msg, 8, "")
|
|
36857
36858
|
};
|
|
36858
36859
|
|
|
36859
36860
|
if (includeInstance) {
|
|
@@ -36918,6 +36919,10 @@ proto.user.StartUserKycVerificationRequest.deserializeBinaryFromReader = functio
|
|
|
36918
36919
|
var value = /** @type {string} */ (reader.readString());
|
|
36919
36920
|
msg.setCorrelationId(value);
|
|
36920
36921
|
break;
|
|
36922
|
+
case 8:
|
|
36923
|
+
var value = /** @type {string} */ (reader.readString());
|
|
36924
|
+
msg.setFlow(value);
|
|
36925
|
+
break;
|
|
36921
36926
|
default:
|
|
36922
36927
|
reader.skipField();
|
|
36923
36928
|
break;
|
|
@@ -36996,6 +37001,13 @@ proto.user.StartUserKycVerificationRequest.serializeBinaryToWriter = function(me
|
|
|
36996
37001
|
f
|
|
36997
37002
|
);
|
|
36998
37003
|
}
|
|
37004
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 8));
|
|
37005
|
+
if (f != null) {
|
|
37006
|
+
writer.writeString(
|
|
37007
|
+
8,
|
|
37008
|
+
f
|
|
37009
|
+
);
|
|
37010
|
+
}
|
|
36999
37011
|
};
|
|
37000
37012
|
|
|
37001
37013
|
|
|
@@ -37233,6 +37245,42 @@ proto.user.StartUserKycVerificationRequest.prototype.hasCorrelationId = function
|
|
|
37233
37245
|
};
|
|
37234
37246
|
|
|
37235
37247
|
|
|
37248
|
+
/**
|
|
37249
|
+
* optional string flow = 8;
|
|
37250
|
+
* @return {string}
|
|
37251
|
+
*/
|
|
37252
|
+
proto.user.StartUserKycVerificationRequest.prototype.getFlow = function() {
|
|
37253
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
37254
|
+
};
|
|
37255
|
+
|
|
37256
|
+
|
|
37257
|
+
/**
|
|
37258
|
+
* @param {string} value
|
|
37259
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
37260
|
+
*/
|
|
37261
|
+
proto.user.StartUserKycVerificationRequest.prototype.setFlow = function(value) {
|
|
37262
|
+
return jspb.Message.setField(this, 8, value);
|
|
37263
|
+
};
|
|
37264
|
+
|
|
37265
|
+
|
|
37266
|
+
/**
|
|
37267
|
+
* Clears the field making it undefined.
|
|
37268
|
+
* @return {!proto.user.StartUserKycVerificationRequest} returns this
|
|
37269
|
+
*/
|
|
37270
|
+
proto.user.StartUserKycVerificationRequest.prototype.clearFlow = function() {
|
|
37271
|
+
return jspb.Message.setField(this, 8, undefined);
|
|
37272
|
+
};
|
|
37273
|
+
|
|
37274
|
+
|
|
37275
|
+
/**
|
|
37276
|
+
* Returns whether this field is set.
|
|
37277
|
+
* @return {boolean}
|
|
37278
|
+
*/
|
|
37279
|
+
proto.user.StartUserKycVerificationRequest.prototype.hasFlow = function() {
|
|
37280
|
+
return jspb.Message.getField(this, 8) != null;
|
|
37281
|
+
};
|
|
37282
|
+
|
|
37283
|
+
|
|
37236
37284
|
|
|
37237
37285
|
|
|
37238
37286
|
|