bump version to v0.0.16 and update dist

This commit is contained in:
woodser 2023-10-10 18:28:21 -04:00
parent e730243c1d
commit f7cbbf725d
5 changed files with 5 additions and 39 deletions

View File

@ -7170,9 +7170,6 @@ export class BlockChainExplorer extends jspb.Message {
getTxUrl(): string;
setTxUrl(value: string): BlockChainExplorer;
getAddressUrl(): string;
setAddressUrl(value: string): BlockChainExplorer;
serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): BlockChainExplorer.AsObject;
static toObject(includeInstance: boolean, msg: BlockChainExplorer): BlockChainExplorer.AsObject;
@ -7185,7 +7182,6 @@ export namespace BlockChainExplorer {
export type AsObject = {
name: string,
txUrl: string,
addressUrl: string,
}
}

View File

@ -57918,8 +57918,7 @@ proto.io.haveno.protobuffer.BlockChainExplorer.prototype.toObject = function(opt
proto.io.haveno.protobuffer.BlockChainExplorer.toObject = function(includeInstance, msg) {
var f, obj = {
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
txUrl: jspb.Message.getFieldWithDefault(msg, 2, ""),
addressUrl: jspb.Message.getFieldWithDefault(msg, 3, "")
txUrl: jspb.Message.getFieldWithDefault(msg, 2, "")
};
if (includeInstance) {
@ -57964,10 +57963,6 @@ proto.io.haveno.protobuffer.BlockChainExplorer.deserializeBinaryFromReader = fun
var value = /** @type {string} */ (reader.readString());
msg.setTxUrl(value);
break;
case 3:
var value = /** @type {string} */ (reader.readString());
msg.setAddressUrl(value);
break;
default:
reader.skipField();
break;
@ -58011,13 +58006,6 @@ proto.io.haveno.protobuffer.BlockChainExplorer.serializeBinaryToWriter = functio
f
);
}
f = message.getAddressUrl();
if (f.length > 0) {
writer.writeString(
3,
f
);
}
};
@ -58057,24 +58045,6 @@ proto.io.haveno.protobuffer.BlockChainExplorer.prototype.setTxUrl = function(val
};
/**
* optional string address_url = 3;
* @return {string}
*/
proto.io.haveno.protobuffer.BlockChainExplorer.prototype.getAddressUrl = function() {
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
};
/**
* @param {string} value
* @return {!proto.io.haveno.protobuffer.BlockChainExplorer} returns this
*/
proto.io.haveno.protobuffer.BlockChainExplorer.prototype.setAddressUrl = function(value) {
return jspb.Message.setProto3StringField(this, 3, value);
};
/**
* List of repeated fields within this message type.

File diff suppressed because one or more lines are too long

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "haveno-ts",
"version": "0.0.15",
"version": "0.0.16",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "haveno-ts",
"version": "0.0.15",
"version": "0.0.16",
"license": "Apache-2.0",
"dependencies": {
"@types/node": "^18.14.2",

View File

@ -1,6 +1,6 @@
{
"name": "haveno-ts",
"version": "0.0.15",
"version": "0.0.16",
"description": "Haveno TypeScript interface",
"main": "dist/index.js",
"types": "dist/index.d.ts",