protobuf-platform 1.2.561 → 1.2.563
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 +31 -1
package/package.json
CHANGED
package/user/user.proto
CHANGED
package/user/user_pb.js
CHANGED
|
@@ -75558,7 +75558,8 @@ proto.user.GetUserVerificationFlowRequest.prototype.toObject = function(opt_incl
|
|
|
75558
75558
|
proto.user.GetUserVerificationFlowRequest.toObject = function(includeInstance, msg) {
|
|
75559
75559
|
var f, obj = {
|
|
75560
75560
|
userId: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
75561
|
-
purpose: jspb.Message.getFieldWithDefault(msg, 2, "")
|
|
75561
|
+
purpose: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
75562
|
+
correlationId: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
75562
75563
|
};
|
|
75563
75564
|
|
|
75564
75565
|
if (includeInstance) {
|
|
@@ -75603,6 +75604,10 @@ proto.user.GetUserVerificationFlowRequest.deserializeBinaryFromReader = function
|
|
|
75603
75604
|
var value = /** @type {string} */ (reader.readString());
|
|
75604
75605
|
msg.setPurpose(value);
|
|
75605
75606
|
break;
|
|
75607
|
+
case 3:
|
|
75608
|
+
var value = /** @type {string} */ (reader.readString());
|
|
75609
|
+
msg.setCorrelationId(value);
|
|
75610
|
+
break;
|
|
75606
75611
|
default:
|
|
75607
75612
|
reader.skipField();
|
|
75608
75613
|
break;
|
|
@@ -75646,6 +75651,13 @@ proto.user.GetUserVerificationFlowRequest.serializeBinaryToWriter = function(mes
|
|
|
75646
75651
|
f
|
|
75647
75652
|
);
|
|
75648
75653
|
}
|
|
75654
|
+
f = message.getCorrelationId();
|
|
75655
|
+
if (f.length > 0) {
|
|
75656
|
+
writer.writeString(
|
|
75657
|
+
3,
|
|
75658
|
+
f
|
|
75659
|
+
);
|
|
75660
|
+
}
|
|
75649
75661
|
};
|
|
75650
75662
|
|
|
75651
75663
|
|
|
@@ -75685,6 +75697,24 @@ proto.user.GetUserVerificationFlowRequest.prototype.setPurpose = function(value)
|
|
|
75685
75697
|
};
|
|
75686
75698
|
|
|
75687
75699
|
|
|
75700
|
+
/**
|
|
75701
|
+
* optional string correlation_id = 3;
|
|
75702
|
+
* @return {string}
|
|
75703
|
+
*/
|
|
75704
|
+
proto.user.GetUserVerificationFlowRequest.prototype.getCorrelationId = function() {
|
|
75705
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
75706
|
+
};
|
|
75707
|
+
|
|
75708
|
+
|
|
75709
|
+
/**
|
|
75710
|
+
* @param {string} value
|
|
75711
|
+
* @return {!proto.user.GetUserVerificationFlowRequest} returns this
|
|
75712
|
+
*/
|
|
75713
|
+
proto.user.GetUserVerificationFlowRequest.prototype.setCorrelationId = function(value) {
|
|
75714
|
+
return jspb.Message.setProto3StringField(this, 3, value);
|
|
75715
|
+
};
|
|
75716
|
+
|
|
75717
|
+
|
|
75688
75718
|
|
|
75689
75719
|
/**
|
|
75690
75720
|
* List of repeated fields within this message type.
|