mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-08-07 05:52:23 -04:00
update dist
This commit is contained in:
parent
e44b4a83a6
commit
9d02c735ae
9 changed files with 686 additions and 79 deletions
94
dist/protobuf/grpc_pb.js
vendored
94
dist/protobuf/grpc_pb.js
vendored
|
@ -14838,7 +14838,9 @@ triggerPrice: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|||
reserveExactAmount: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
|
||||
paymentAccountId: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
||||
isPrivateOffer: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
||||
buyerAsTakerWithoutDeposit: jspb.Message.getBooleanFieldWithDefault(msg, 13, false)
|
||||
buyerAsTakerWithoutDeposit: jspb.Message.getBooleanFieldWithDefault(msg, 13, false),
|
||||
extraInfo: jspb.Message.getFieldWithDefault(msg, 14, ""),
|
||||
sourceOfferId: jspb.Message.getFieldWithDefault(msg, 15, "")
|
||||
};
|
||||
|
||||
if (includeInstance) {
|
||||
|
@ -14927,6 +14929,14 @@ proto.io.haveno.protobuffer.PostOfferRequest.deserializeBinaryFromReader = funct
|
|||
var value = /** @type {boolean} */ (reader.readBool());
|
||||
msg.setBuyerAsTakerWithoutDeposit(value);
|
||||
break;
|
||||
case 14:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setExtraInfo(value);
|
||||
break;
|
||||
case 15:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setSourceOfferId(value);
|
||||
break;
|
||||
default:
|
||||
reader.skipField();
|
||||
break;
|
||||
|
@ -15047,6 +15057,20 @@ proto.io.haveno.protobuffer.PostOfferRequest.serializeBinaryToWriter = function(
|
|||
f
|
||||
);
|
||||
}
|
||||
f = message.getExtraInfo();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
14,
|
||||
f
|
||||
);
|
||||
}
|
||||
f = message.getSourceOfferId();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
15,
|
||||
f
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
@ -15284,6 +15308,42 @@ proto.io.haveno.protobuffer.PostOfferRequest.prototype.setBuyerAsTakerWithoutDep
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* optional string extra_info = 14;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.io.haveno.protobuffer.PostOfferRequest.prototype.getExtraInfo = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {!proto.io.haveno.protobuffer.PostOfferRequest} returns this
|
||||
*/
|
||||
proto.io.haveno.protobuffer.PostOfferRequest.prototype.setExtraInfo = function(value) {
|
||||
return jspb.Message.setProto3StringField(this, 14, value);
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* optional string source_offer_id = 15;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.io.haveno.protobuffer.PostOfferRequest.prototype.getSourceOfferId = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 15, ""));
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {!proto.io.haveno.protobuffer.PostOfferRequest} returns this
|
||||
*/
|
||||
proto.io.haveno.protobuffer.PostOfferRequest.prototype.setSourceOfferId = function(value) {
|
||||
return jspb.Message.setProto3StringField(this, 15, value);
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -15730,7 +15790,8 @@ arbitratorSigner: jspb.Message.getFieldWithDefault(msg, 29, ""),
|
|||
splitOutputTxHash: jspb.Message.getFieldWithDefault(msg, 30, ""),
|
||||
splitOutputTxFee: jspb.Message.getFieldWithDefault(msg, 31, "0"),
|
||||
isPrivateOffer: jspb.Message.getBooleanFieldWithDefault(msg, 32, false),
|
||||
challenge: jspb.Message.getFieldWithDefault(msg, 33, "")
|
||||
challenge: jspb.Message.getFieldWithDefault(msg, 33, ""),
|
||||
extraInfo: jspb.Message.getFieldWithDefault(msg, 34, "")
|
||||
};
|
||||
|
||||
if (includeInstance) {
|
||||
|
@ -15899,6 +15960,10 @@ proto.io.haveno.protobuffer.OfferInfo.deserializeBinaryFromReader = function(msg
|
|||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setChallenge(value);
|
||||
break;
|
||||
case 34:
|
||||
var value = /** @type {string} */ (reader.readString());
|
||||
msg.setExtraInfo(value);
|
||||
break;
|
||||
default:
|
||||
reader.skipField();
|
||||
break;
|
||||
|
@ -16159,6 +16224,13 @@ proto.io.haveno.protobuffer.OfferInfo.serializeBinaryToWriter = function(message
|
|||
f
|
||||
);
|
||||
}
|
||||
f = message.getExtraInfo();
|
||||
if (f.length > 0) {
|
||||
writer.writeString(
|
||||
34,
|
||||
f
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
@ -16756,6 +16828,24 @@ proto.io.haveno.protobuffer.OfferInfo.prototype.setChallenge = function(value) {
|
|||
};
|
||||
|
||||
|
||||
/**
|
||||
* optional string extra_info = 34;
|
||||
* @return {string}
|
||||
*/
|
||||
proto.io.haveno.protobuffer.OfferInfo.prototype.getExtraInfo = function() {
|
||||
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 34, ""));
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {!proto.io.haveno.protobuffer.OfferInfo} returns this
|
||||
*/
|
||||
proto.io.haveno.protobuffer.OfferInfo.prototype.setExtraInfo = function(value) {
|
||||
return jspb.Message.setProto3StringField(this, 34, value);
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue