update dist

This commit is contained in:
woodser 2025-04-27 09:24:38 -04:00 committed by woodser
parent 49ac67a336
commit 7e27a194c6
3 changed files with 36 additions and 2 deletions

View file

@ -953,6 +953,9 @@ export class AckMessage extends jspb.Message {
getErrorMessage(): string;
setErrorMessage(value: string): AckMessage;
getUpdatedMultisigHex(): string;
setUpdatedMultisigHex(value: string): AckMessage;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): AckMessage.AsObject;
static toObject(includeInstance: boolean, msg: AckMessage): AckMessage.AsObject;
@ -971,6 +974,7 @@ export namespace AckMessage {
sourceId: string,
success: boolean,
errorMessage: string,
updatedMultisigHex: string,
}
}

View file

@ -11314,7 +11314,8 @@ sourceMsgClassName: jspb.Message.getFieldWithDefault(msg, 4, ""),
sourceUid: jspb.Message.getFieldWithDefault(msg, 5, ""),
sourceId: jspb.Message.getFieldWithDefault(msg, 6, ""),
success: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
errorMessage: jspb.Message.getFieldWithDefault(msg, 8, "")
errorMessage: jspb.Message.getFieldWithDefault(msg, 8, ""),
updatedMultisigHex: jspb.Message.getFieldWithDefault(msg, 9, "")
};
if (includeInstance) {
@ -11384,6 +11385,10 @@ proto.io.haveno.protobuffer.AckMessage.deserializeBinaryFromReader = function(ms
var value = /** @type {string} */ (reader.readString());
msg.setErrorMessage(value);
break;
case 9:
var value = /** @type {string} */ (reader.readString());
msg.setUpdatedMultisigHex(value);
break;
default:
reader.skipField();
break;
@ -11470,6 +11475,13 @@ proto.io.haveno.protobuffer.AckMessage.serializeBinaryToWriter = function(messag
f
);
}
f = message.getUpdatedMultisigHex();
if (f.length > 0) {
writer.writeString(
9,
f
);
}
};
@ -11636,6 +11648,24 @@ proto.io.haveno.protobuffer.AckMessage.prototype.setErrorMessage = function(valu
};
/**
* optional string updated_multisig_hex = 9;
* @return {string}
*/
proto.io.haveno.protobuffer.AckMessage.prototype.getUpdatedMultisigHex = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
};
/**
* @param {string} value
* @return {!proto.io.haveno.protobuffer.AckMessage} returns this
*/
proto.io.haveno.protobuffer.AckMessage.prototype.setUpdatedMultisigHex = function(value) {
return jspb.Message.setProto3StringField(this, 9, value);
};

File diff suppressed because one or more lines are too long