From ac59838051c78dedf6758941c06fd997cfd3a305 Mon Sep 17 00:00:00 2001 From: michael1011 Date: Sat, 12 Oct 2019 11:05:26 +0200 Subject: [PATCH] chore: update NPM dependencies --- docs/api.md | 8 +- lib/Config.ts | 2 +- lib/cli/command.ts | 4 +- lib/cli/commands/addcurrency.ts | 2 +- lib/cli/commands/addpair.ts | 2 +- lib/cli/commands/ban.ts | 2 +- lib/cli/commands/connect.ts | 2 +- lib/cli/commands/create.ts | 2 +- lib/cli/commands/discovernodes.ts | 2 +- lib/cli/commands/executeswap.ts | 2 +- lib/cli/commands/getbalance.ts | 2 +- lib/cli/commands/getnodeinfo.ts | 2 +- lib/cli/commands/listorders.ts | 2 +- lib/cli/commands/listtrades.ts | 2 +- lib/cli/commands/openchannel.ts | 2 +- lib/cli/commands/orderbook.ts | 6 +- lib/cli/commands/removecurrency.ts | 2 +- lib/cli/commands/removeorder.ts | 2 +- lib/cli/commands/removepair.ts | 2 +- lib/cli/commands/streamorders.ts | 2 +- lib/cli/commands/unban.ts | 2 +- lib/cli/placeorder.ts | 2 +- lib/p2p/Framer.ts | 30 +- lib/p2p/packets/Packet.ts | 2 +- lib/proto/annotations_grpc_pb.js | 2 +- lib/proto/annotations_pb.js | 4 +- lib/proto/google/api/http_pb.js | 32 +- lib/proto/google/protobuf/descriptor_pb.js | 418 +- lib/proto/lndinvoices_pb.js | 32 +- lib/proto/lndrpc_pb.js | 1011 +-- lib/proto/xudp2p_pb.js | 180 +- lib/proto/xudrpc_pb.js | 377 +- npm-shrinkwrap.json | 6491 ++++++++++++-------- package.json | 76 +- 34 files changed, 4904 insertions(+), 3807 deletions(-) diff --git a/docs/api.md b/docs/api.md index 83afe9223..a5aecce0d 100644 --- a/docs/api.md +++ b/docs/api.md @@ -1177,16 +1177,16 @@ | ListPairs | [ListPairsRequest](#xudrpc.ListPairsRequest) | [ListPairsResponse](#xudrpc.ListPairsResponse) | Gets a list of this nodes suported trading pairs. | | ListPeers | [ListPeersRequest](#xudrpc.ListPeersRequest) | [ListPeersResponse](#xudrpc.ListPeersResponse) | Gets a list of connected peers. | | ListTrades | [ListTradesRequest](#xudrpc.ListTradesRequest) | [ListTradesResponse](#xudrpc.ListTradesResponse) | | -| PlaceOrder | [PlaceOrderRequest](#xudrpc.PlaceOrderRequest) | [PlaceOrderEvent](#xudrpc.PlaceOrderEvent) stream | Adds an order to the order book. If price is zero or unspecified a market order will get added. | +| PlaceOrder | [PlaceOrderRequest](#xudrpc.PlaceOrderRequest) | [PlaceOrderEvent](#xudrpc.PlaceOrderEvent) | Adds an order to the order book. If price is zero or unspecified a market order will get added. | | PlaceOrderSync | [PlaceOrderRequest](#xudrpc.PlaceOrderRequest) | [PlaceOrderResponse](#xudrpc.PlaceOrderResponse) | The synchronous non-streaming version of PlaceOrder. | | ExecuteSwap | [ExecuteSwapRequest](#xudrpc.ExecuteSwapRequest) | [SwapSuccess](#xudrpc.SwapSuccess) | Execute a swap on a maker peer order | | RemoveCurrency | [RemoveCurrencyRequest](#xudrpc.RemoveCurrencyRequest) | [RemoveCurrencyResponse](#xudrpc.RemoveCurrencyResponse) | Removes a currency from the list of supported currencies. Only currencies that are not in use for any currently supported trading pairs may be removed. Once removed, the currency can no longer be used for any supported trading pairs. | | RemovePair | [RemovePairRequest](#xudrpc.RemovePairRequest) | [RemovePairResponse](#xudrpc.RemovePairResponse) | Removes a trading pair from the list of currently supported trading pair. This call will effectively cancel any standing orders for that trading pair. Peers are informed when a pair is no longer supported so that they will know to stop sending orders for it. | | DiscoverNodes | [DiscoverNodesRequest](#xudrpc.DiscoverNodesRequest) | [DiscoverNodesResponse](#xudrpc.DiscoverNodesResponse) | Discover nodes from a specific peer and apply new connections | | Shutdown | [ShutdownRequest](#xudrpc.ShutdownRequest) | [ShutdownResponse](#xudrpc.ShutdownResponse) | Begin gracefully shutting down xud. | -| SubscribeOrders | [SubscribeOrdersRequest](#xudrpc.SubscribeOrdersRequest) | [OrderUpdate](#xudrpc.OrderUpdate) stream | Subscribes to orders being added to and removed from the order book. This call allows the client to maintain an up-to-date view of the order book. For example, an exchange that wants to show its users a real time view of the orders available to them would subscribe to this streaming call to be alerted as new orders are added and expired orders are removed. | -| SubscribeSwaps | [SubscribeSwapsRequest](#xudrpc.SubscribeSwapsRequest) | [SwapSuccess](#xudrpc.SwapSuccess) stream | Subscribes to completed swaps. By default, only swaps that are initiated by a remote peer are transmitted unless a flag is set to include swaps initiated by the local node. This call allows the client to get real-time notifications when its orders are filled by a peer. It can be used for tracking order executions, updating balances, and informing a trader when one of their orders is settled through the Exchange Union network. | -| SubscribeSwapFailures | [SubscribeSwapsRequest](#xudrpc.SubscribeSwapsRequest) | [SwapFailure](#xudrpc.SwapFailure) stream | Subscribes to failed swaps. By default, only swaps that are initiated by a remote peer are transmitted unless a flag is set to include swaps initiated by the local node. This call allows the client to get real-time notifications when swap attempts are failing. It can be used for status monitoring, debugging, and testing purposes. | +| SubscribeOrders | [SubscribeOrdersRequest](#xudrpc.SubscribeOrdersRequest) | [OrderUpdate](#xudrpc.OrderUpdate) | Subscribes to orders being added to and removed from the order book. This call allows the client to maintain an up-to-date view of the order book. For example, an exchange that wants to show its users a real time view of the orders available to them would subscribe to this streaming call to be alerted as new orders are added and expired orders are removed. | +| SubscribeSwaps | [SubscribeSwapsRequest](#xudrpc.SubscribeSwapsRequest) | [SwapSuccess](#xudrpc.SwapSuccess) | Subscribes to completed swaps. By default, only swaps that are initiated by a remote peer are transmitted unless a flag is set to include swaps initiated by the local node. This call allows the client to get real-time notifications when its orders are filled by a peer. It can be used for tracking order executions, updating balances, and informing a trader when one of their orders is settled through the Exchange Union network. | +| SubscribeSwapFailures | [SubscribeSwapsRequest](#xudrpc.SubscribeSwapsRequest) | [SwapFailure](#xudrpc.SwapFailure) | Subscribes to failed swaps. By default, only swaps that are initiated by a remote peer are transmitted unless a flag is set to include swaps initiated by the local node. This call allows the client to get real-time notifications when swap attempts are failing. It can be used for status monitoring, debugging, and testing purposes. | diff --git a/lib/Config.ts b/lib/Config.ts index 719fbc02a..233d5713c 100644 --- a/lib/Config.ts +++ b/lib/Config.ts @@ -209,7 +209,7 @@ class Config { deepMerge(this, args); } - if (!Object.values(Level).includes(this.loglevel)) { + if (!Object.values(Level).includes(this.loglevel)) { this.loglevel = this.getDefaultLogLevel(); } diff --git a/lib/cli/command.ts b/lib/cli/command.ts index cdef8888f..760d78d29 100644 --- a/lib/cli/command.ts +++ b/lib/cli/command.ts @@ -8,7 +8,7 @@ import { getDefaultCertPath } from './utils'; * A generic function to instantiate an XU client. * @param argv the command line arguments */ -export const loadXudClient = (argv: Arguments) => { +export const loadXudClient = (argv: Arguments) => { const certPath = argv.tlscertpath || getDefaultCertPath(); const cert = fs.readFileSync(certPath); const credentials = grpc.credentials.createSsl(cert); @@ -16,7 +16,7 @@ export const loadXudClient = (argv: Arguments) => { return new XudClient(`${argv.rpchost}:${argv.rpcport}`, credentials); }; -export const loadXudInitClient = (argv: Arguments) => { +export const loadXudInitClient = (argv: Arguments) => { const certPath = argv.tlscertpath || getDefaultCertPath(); const cert = fs.readFileSync(certPath); const credentials = grpc.credentials.createSsl(cert); diff --git a/lib/cli/commands/addcurrency.ts b/lib/cli/commands/addcurrency.ts index 1bef66d1a..2439c1ec4 100644 --- a/lib/cli/commands/addcurrency.ts +++ b/lib/cli/commands/addcurrency.ts @@ -28,7 +28,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new Currency(); request.setCurrency(argv.currency.toUpperCase()); request.setSwapClient(Number(SwapClientType[argv.swap_client])); diff --git a/lib/cli/commands/addpair.ts b/lib/cli/commands/addpair.ts index c8c71156b..12161c5a6 100644 --- a/lib/cli/commands/addpair.ts +++ b/lib/cli/commands/addpair.ts @@ -17,7 +17,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new AddPairRequest(); request.setBaseCurrency(argv.base_currency.toUpperCase()); request.setQuoteCurrency(argv.quote_currency.toUpperCase()); diff --git a/lib/cli/commands/ban.ts b/lib/cli/commands/ban.ts index b8c649dbd..64a6e65e1 100644 --- a/lib/cli/commands/ban.ts +++ b/lib/cli/commands/ban.ts @@ -13,7 +13,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new BanRequest(); request.setNodePubKey(argv.node_key); loadXudClient(argv).ban(request, callback(argv)); diff --git a/lib/cli/commands/connect.ts b/lib/cli/commands/connect.ts index 86b0ecbe2..dc2807a50 100644 --- a/lib/cli/commands/connect.ts +++ b/lib/cli/commands/connect.ts @@ -13,7 +13,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new ConnectRequest(); request.setNodeUri(argv.node_uri); loadXudClient(argv).connect(request, callback(argv)); diff --git a/lib/cli/commands/create.ts b/lib/cli/commands/create.ts index ddd6a0f5b..1851d0e8c 100644 --- a/lib/cli/commands/create.ts +++ b/lib/cli/commands/create.ts @@ -73,7 +73,7 @@ somewhere safe, it is your ONLY backup in case of data loss. } }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const rl = readline.createInterface({ input: process.stdin, terminal: true, diff --git a/lib/cli/commands/discovernodes.ts b/lib/cli/commands/discovernodes.ts index 1bbfdd808..844026f1c 100644 --- a/lib/cli/commands/discovernodes.ts +++ b/lib/cli/commands/discovernodes.ts @@ -13,7 +13,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new DiscoverNodesRequest(); request.setPeerPubKey(argv.node_key); loadXudClient(argv).discoverNodes(request, callback(argv)); diff --git a/lib/cli/commands/executeswap.ts b/lib/cli/commands/executeswap.ts index c613e743b..21b279501 100644 --- a/lib/cli/commands/executeswap.ts +++ b/lib/cli/commands/executeswap.ts @@ -32,7 +32,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new ExecuteSwapRequest(); request.setOrderId(argv.order_id); request.setPairId(argv.pair_id); diff --git a/lib/cli/commands/getbalance.ts b/lib/cli/commands/getbalance.ts index 6ee39623a..41545c868 100644 --- a/lib/cli/commands/getbalance.ts +++ b/lib/cli/commands/getbalance.ts @@ -60,7 +60,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new GetBalanceRequest(); if (argv.currency) { request.setCurrency(argv.currency.toUpperCase()); diff --git a/lib/cli/commands/getnodeinfo.ts b/lib/cli/commands/getnodeinfo.ts index bd0a95603..73ddea54c 100644 --- a/lib/cli/commands/getnodeinfo.ts +++ b/lib/cli/commands/getnodeinfo.ts @@ -26,7 +26,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new GetNodeInfoRequest(); request.setNodePubKey(argv.node_key); loadXudClient(argv).getNodeInfo(request, callback(argv, displayNodeInfo)); diff --git a/lib/cli/commands/listorders.ts b/lib/cli/commands/listorders.ts index 4d174ed1d..1a004730c 100644 --- a/lib/cli/commands/listorders.ts +++ b/lib/cli/commands/listorders.ts @@ -99,7 +99,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new ListOrdersRequest(); const pairId = argv.pair_id ? argv.pair_id.toUpperCase() : undefined; request.setPairId(pairId); diff --git a/lib/cli/commands/listtrades.ts b/lib/cli/commands/listtrades.ts index 82020865c..054b19db6 100644 --- a/lib/cli/commands/listtrades.ts +++ b/lib/cli/commands/listtrades.ts @@ -46,7 +46,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new ListTradesRequest(); request.setLimit(argv.limit); loadXudClient(argv).listTrades(request, callback(argv, displayTrades)); diff --git a/lib/cli/commands/openchannel.ts b/lib/cli/commands/openchannel.ts index a1677f051..6f419fa10 100644 --- a/lib/cli/commands/openchannel.ts +++ b/lib/cli/commands/openchannel.ts @@ -22,7 +22,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new OpenChannelRequest(); request.setNodePubKey(argv.node_key); request.setCurrency(argv.currency.toUpperCase()); diff --git a/lib/cli/commands/orderbook.ts b/lib/cli/commands/orderbook.ts index 4d63a6858..9cedfb33b 100644 --- a/lib/cli/commands/orderbook.ts +++ b/lib/cli/commands/orderbook.ts @@ -88,7 +88,7 @@ const displayOrderbook = (orderbook: FormattedOrderbook) => { console.log(table.toString()); }; -const displayTables = (orders: ListOrdersResponse.AsObject, argv: Arguments) => { +const displayTables = (orders: ListOrdersResponse.AsObject, argv: Arguments) => { createOrderbook(orders, argv.precision).forEach(displayOrderbook); }; @@ -156,7 +156,7 @@ export const builder = { }, }; -const displayJson = (orders: ListOrdersResponse.AsObject, argv: Arguments) => { +const displayJson = (orders: ListOrdersResponse.AsObject, argv: Arguments) => { const jsonOrderbooks: OrderbookJson[] = []; const quantityInSatoshisPerCoin = (bucket: Bucket) => { bucket.quantity = parseFloat( @@ -177,7 +177,7 @@ const displayJson = (orders: ListOrdersResponse.AsObject, argv: Arguments) => { console.log(JSON.stringify(jsonOrderbooks, undefined, 2)); }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new ListOrdersRequest(); const pairId = argv.pair_id ? argv.pair_id.toUpperCase() : undefined; request.setPairId(pairId); diff --git a/lib/cli/commands/removecurrency.ts b/lib/cli/commands/removecurrency.ts index 92c383236..7819dc464 100644 --- a/lib/cli/commands/removecurrency.ts +++ b/lib/cli/commands/removecurrency.ts @@ -13,7 +13,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new RemoveCurrencyRequest(); request.setCurrency(argv.currency.toUpperCase()); loadXudClient(argv).removeCurrency(request, callback(argv)); diff --git a/lib/cli/commands/removeorder.ts b/lib/cli/commands/removeorder.ts index aa9665982..1178f7407 100644 --- a/lib/cli/commands/removeorder.ts +++ b/lib/cli/commands/removeorder.ts @@ -17,7 +17,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new RemoveOrderRequest(); request.setOrderId(argv.order_id); if (argv.quantity) { diff --git a/lib/cli/commands/removepair.ts b/lib/cli/commands/removepair.ts index e56799be7..a21b61dba 100644 --- a/lib/cli/commands/removepair.ts +++ b/lib/cli/commands/removepair.ts @@ -13,7 +13,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new RemovePairRequest(); request.setPairId(argv.pair_id.toUpperCase()); loadXudClient(argv).removePair(request, callback(argv)); diff --git a/lib/cli/commands/streamorders.ts b/lib/cli/commands/streamorders.ts index 2303d0173..449deb832 100644 --- a/lib/cli/commands/streamorders.ts +++ b/lib/cli/commands/streamorders.ts @@ -34,7 +34,7 @@ const ensureConnection = (argv: Arguments, printError?: boolean) => { }); }; -const streamOrders = (argv: Arguments) => { +const streamOrders = (argv: Arguments) => { const xudClient = loadXudClient(argv); const ordersReqeust = new xudrpc.SubscribeOrdersRequest(); ordersReqeust.setExisting(argv.existing); diff --git a/lib/cli/commands/unban.ts b/lib/cli/commands/unban.ts index 0e60097e9..666136f3a 100644 --- a/lib/cli/commands/unban.ts +++ b/lib/cli/commands/unban.ts @@ -18,7 +18,7 @@ export const builder = { }, }; -export const handler = (argv: Arguments) => { +export const handler = (argv: Arguments) => { const request = new UnbanRequest(); request.setNodePubKey(argv.node_key); request.setReconnect(argv.reconnect); diff --git a/lib/cli/placeorder.ts b/lib/cli/placeorder.ts index 90aa6c36c..160d21938 100644 --- a/lib/cli/placeorder.ts +++ b/lib/cli/placeorder.ts @@ -30,7 +30,7 @@ export const placeOrderBuilder = (argv: Argv, side: OrderSide) => { .example(`$0 ${command} 10 ZRX/GNT market`, `place a market order to ${command} 10 ZRX for GNT`); }; -export const placeOrderHandler = (argv: Arguments, side: OrderSide) => { +export const placeOrderHandler = (argv: Arguments, side: OrderSide) => { const request = new PlaceOrderRequest(); const numericPrice = Number(argv.price); diff --git a/lib/p2p/Framer.ts b/lib/p2p/Framer.ts index e2e92a822..b8434c088 100644 --- a/lib/p2p/Framer.ts +++ b/lib/p2p/Framer.ts @@ -39,10 +39,10 @@ class Framer { const msg = Buffer.allocUnsafe(Framer.ENCRYPTED_MSG_PAYLOAD_HEADER_LENGTH + packetRaw.length); // length - msg.writeUInt32LE(packetRaw.length, 0, true); + msg.writeUInt32LE(packetRaw.length, 0); // type - msg.writeUInt32LE(packet.type, 4, true); + msg.writeUInt32LE(packet.type, 4); // packet packetRaw.copy(msg, 8); @@ -51,7 +51,7 @@ class Framer { const encryptedMsg = Buffer.allocUnsafe(Framer.ENCRYPTED_MSG_HEADER_LENGTH + ciphertext.length); // length - encryptedMsg.writeUInt32LE(ciphertext.length, 0, true); + encryptedMsg.writeUInt32LE(ciphertext.length, 0); // ciphertext ciphertext.copy(encryptedMsg, 4); @@ -61,13 +61,13 @@ class Framer { const msg = Buffer.allocUnsafe(Framer.MSG_HEADER_LENGTH + packetRaw.length); // network magic value - msg.writeUInt32LE(this.network.magic, 0, true); + msg.writeUInt32LE(this.network.magic, 0); // length - msg.writeUInt32LE(packetRaw.length, 4, true); + msg.writeUInt32LE(packetRaw.length, 4); // type - msg.writeUInt32LE(packet.type, 8, true); + msg.writeUInt32LE(packet.type, 8); // checksum msg.writeUInt32LE(packet.checksum(), 12); @@ -85,7 +85,7 @@ class Framer { public unframe = (msg: Buffer, encryptionKey?: Buffer): WireMsg => { let wireMsg: WireMsg; if (encryptionKey) { - const length = msg.readUInt32LE(0, true); + const length = msg.readUInt32LE(0); const ciphertext = msg.slice(Framer.ENCRYPTED_MSG_HEADER_LENGTH); if (length !== ciphertext.length) { @@ -116,7 +116,7 @@ class Framer { * Parse the length of a wire msg or an encrypted wire msg */ public parseLength = (data: Buffer, encrypted: boolean): number => { - const value = data.readUInt32LE(0, true); + const value = data.readUInt32LE(0); if (encrypted) { if (value === this.network.magic) { @@ -134,7 +134,7 @@ class Framer { } } - return data.readUInt32LE(4, true); + return data.readUInt32LE(4); } /** @@ -145,26 +145,26 @@ class Framer { assert(msg.length >= Framer.ENCRYPTED_MSG_PAYLOAD_HEADER_LENGTH, 'invalid msg header length: data is missing'); // length - const length = msg.readUInt32LE(0, true); + const length = msg.readUInt32LE(0); // type - const type = msg.readUInt32LE(4, true); + const type = msg.readUInt32LE(4); return { length, type }; } else { assert(msg.length >= Framer.MSG_HEADER_LENGTH, 'invalid msg header length: data is missing'); // network magic value - const magic = msg.readUInt32LE(0, true); + const magic = msg.readUInt32LE(0); // length - const length = msg.readUInt32LE(4, true); + const length = msg.readUInt32LE(4); // type - const type = msg.readUInt32LE(8, true); + const type = msg.readUInt32LE(8); // checksum - const checksum = msg.readUInt32LE(12, true); + const checksum = msg.readUInt32LE(12); return { magic, type, length, checksum }; } diff --git a/lib/p2p/packets/Packet.ts b/lib/p2p/packets/Packet.ts index 19fe4b8d3..effbce853 100644 --- a/lib/p2p/packets/Packet.ts +++ b/lib/p2p/packets/Packet.ts @@ -110,7 +110,7 @@ abstract class Packet implements PacketInterface { return createHash('sha256') .update(this.toJSON()) .digest() - .readUInt32LE(0, true); + .readUInt32LE(0); } } diff --git a/lib/proto/annotations_grpc_pb.js b/lib/proto/annotations_grpc_pb.js index 51b4d6959..97b3a2461 100644 --- a/lib/proto/annotations_grpc_pb.js +++ b/lib/proto/annotations_grpc_pb.js @@ -1 +1 @@ -// GENERATED CODE -- NO SERVICES IN PROTO +// GENERATED CODE -- NO SERVICES IN PROTO \ No newline at end of file diff --git a/lib/proto/annotations_pb.js b/lib/proto/annotations_pb.js index e21482bf8..98f2bef8c 100644 --- a/lib/proto/annotations_pb.js +++ b/lib/proto/annotations_pb.js @@ -12,13 +12,15 @@ var goog = jspb; var global = Function('return this')(); var google_api_http_pb = require('./google/api/http_pb.js'); +goog.object.extend(proto, google_api_http_pb); var google_protobuf_descriptor_pb = require('google-protobuf/google/protobuf/descriptor_pb.js'); +goog.object.extend(proto, google_protobuf_descriptor_pb); goog.exportSymbol('proto.google.api.http', null, global); /** * A tuple of {field number, class constructor} for the extension * field named `http`. - * @type {!jspb.ExtensionFieldInfo.} + * @type {!jspb.ExtensionFieldInfo} */ proto.google.api.http = new jspb.ExtensionFieldInfo( 72295728, diff --git a/lib/proto/google/api/http_pb.js b/lib/proto/google/api/http_pb.js index 14c73cfd1..3472878e5 100644 --- a/lib/proto/google/api/http_pb.js +++ b/lib/proto/google/api/http_pb.js @@ -153,15 +153,15 @@ proto.google.api.Http.serializeBinaryToWriter = function(message, writer) { /** * repeated HttpRule rules = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.api.Http.prototype.getRulesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.api.HttpRule, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.api.Http.prototype.setRulesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -458,7 +458,7 @@ proto.google.api.HttpRule.prototype.getSelector = function() { /** @param {string} value */ proto.google.api.HttpRule.prototype.setSelector = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -484,7 +484,7 @@ proto.google.api.HttpRule.prototype.clearGet = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasGet = function() { return jspb.Message.getField(this, 2) != null; @@ -513,7 +513,7 @@ proto.google.api.HttpRule.prototype.clearPut = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasPut = function() { return jspb.Message.getField(this, 3) != null; @@ -542,7 +542,7 @@ proto.google.api.HttpRule.prototype.clearPost = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasPost = function() { return jspb.Message.getField(this, 4) != null; @@ -571,7 +571,7 @@ proto.google.api.HttpRule.prototype.clearDelete = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasDelete = function() { return jspb.Message.getField(this, 5) != null; @@ -600,7 +600,7 @@ proto.google.api.HttpRule.prototype.clearPatch = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasPatch = function() { return jspb.Message.getField(this, 6) != null; @@ -630,7 +630,7 @@ proto.google.api.HttpRule.prototype.clearCustom = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.api.HttpRule.prototype.hasCustom = function() { return jspb.Message.getField(this, 8) != null; @@ -648,21 +648,21 @@ proto.google.api.HttpRule.prototype.getBody = function() { /** @param {string} value */ proto.google.api.HttpRule.prototype.setBody = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3StringField(this, 7, value); }; /** * repeated HttpRule additional_bindings = 11; - * @return {!Array.} + * @return {!Array} */ proto.google.api.HttpRule.prototype.getAdditionalBindingsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.api.HttpRule, 11)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.api.HttpRule.prototype.setAdditionalBindingsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 11, value); }; @@ -833,7 +833,7 @@ proto.google.api.CustomHttpPattern.prototype.getKind = function() { /** @param {string} value */ proto.google.api.CustomHttpPattern.prototype.setKind = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -848,7 +848,7 @@ proto.google.api.CustomHttpPattern.prototype.getPath = function() { /** @param {string} value */ proto.google.api.CustomHttpPattern.prototype.setPath = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; diff --git a/lib/proto/google/protobuf/descriptor_pb.js b/lib/proto/google/protobuf/descriptor_pb.js index 58059b83b..6b506d591 100644 --- a/lib/proto/google/protobuf/descriptor_pb.js +++ b/lib/proto/google/protobuf/descriptor_pb.js @@ -181,15 +181,15 @@ proto.google.protobuf.FileDescriptorSet.serializeBinaryToWriter = function(messa /** * repeated FileDescriptorProto file = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorSet.prototype.getFileList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.FileDescriptorProto, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorSet.prototype.setFileList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -514,7 +514,7 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -543,7 +543,7 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearPackage = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileDescriptorProto.prototype.hasPackage = function() { return jspb.Message.getField(this, 2) != null; @@ -552,21 +552,21 @@ proto.google.protobuf.FileDescriptorProto.prototype.hasPackage = function() { /** * repeated string dependency = 3; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getDependencyList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 3)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setDependencyList = function(value) { jspb.Message.setField(this, 3, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.google.protobuf.FileDescriptorProto.prototype.addDependency = function(value, opt_index) { @@ -581,21 +581,21 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearDependencyList = functi /** * repeated int32 public_dependency = 10; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getPublicDependencyList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 10)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 10)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setPublicDependencyList = function(value) { jspb.Message.setField(this, 10, value || []); }; /** - * @param {!number} value + * @param {number} value * @param {number=} opt_index */ proto.google.protobuf.FileDescriptorProto.prototype.addPublicDependency = function(value, opt_index) { @@ -610,21 +610,21 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearPublicDependencyList = /** * repeated int32 weak_dependency = 11; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getWeakDependencyList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 11)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 11)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setWeakDependencyList = function(value) { jspb.Message.setField(this, 11, value || []); }; /** - * @param {!number} value + * @param {number} value * @param {number=} opt_index */ proto.google.protobuf.FileDescriptorProto.prototype.addWeakDependency = function(value, opt_index) { @@ -639,15 +639,15 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearWeakDependencyList = fu /** * repeated DescriptorProto message_type = 4; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getMessageTypeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.DescriptorProto, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setMessageTypeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -670,15 +670,15 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearMessageTypeList = funct /** * repeated EnumDescriptorProto enum_type = 5; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getEnumTypeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.EnumDescriptorProto, 5)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setEnumTypeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 5, value); }; @@ -701,15 +701,15 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearEnumTypeList = function /** * repeated ServiceDescriptorProto service = 6; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getServiceList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.ServiceDescriptorProto, 6)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setServiceList = function(value) { jspb.Message.setRepeatedWrapperField(this, 6, value); }; @@ -732,15 +732,15 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearServiceList = function( /** * repeated FieldDescriptorProto extension = 7; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileDescriptorProto.prototype.getExtensionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.FieldDescriptorProto, 7)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileDescriptorProto.prototype.setExtensionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 7, value); }; @@ -784,7 +784,7 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearOptions = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 8) != null; @@ -814,7 +814,7 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearSourceCodeInfo = functi /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileDescriptorProto.prototype.hasSourceCodeInfo = function() { return jspb.Message.getField(this, 9) != null; @@ -843,7 +843,7 @@ proto.google.protobuf.FileDescriptorProto.prototype.clearSyntax = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileDescriptorProto.prototype.hasSyntax = function() { return jspb.Message.getField(this, 12) != null; @@ -1276,7 +1276,7 @@ proto.google.protobuf.DescriptorProto.ExtensionRange.prototype.clearStart = func /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.ExtensionRange.prototype.hasStart = function() { return jspb.Message.getField(this, 1) != null; @@ -1305,7 +1305,7 @@ proto.google.protobuf.DescriptorProto.ExtensionRange.prototype.clearEnd = functi /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.ExtensionRange.prototype.hasEnd = function() { return jspb.Message.getField(this, 2) != null; @@ -1473,7 +1473,7 @@ proto.google.protobuf.DescriptorProto.ReservedRange.prototype.clearStart = funct /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.ReservedRange.prototype.hasStart = function() { return jspb.Message.getField(this, 1) != null; @@ -1502,7 +1502,7 @@ proto.google.protobuf.DescriptorProto.ReservedRange.prototype.clearEnd = functio /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.ReservedRange.prototype.hasEnd = function() { return jspb.Message.getField(this, 2) != null; @@ -1531,7 +1531,7 @@ proto.google.protobuf.DescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -1540,15 +1540,15 @@ proto.google.protobuf.DescriptorProto.prototype.hasName = function() { /** * repeated FieldDescriptorProto field = 2; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getFieldList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.FieldDescriptorProto, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setFieldList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -1571,15 +1571,15 @@ proto.google.protobuf.DescriptorProto.prototype.clearFieldList = function() { /** * repeated FieldDescriptorProto extension = 6; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getExtensionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.FieldDescriptorProto, 6)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setExtensionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 6, value); }; @@ -1602,15 +1602,15 @@ proto.google.protobuf.DescriptorProto.prototype.clearExtensionList = function() /** * repeated DescriptorProto nested_type = 3; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getNestedTypeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.DescriptorProto, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setNestedTypeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -1633,15 +1633,15 @@ proto.google.protobuf.DescriptorProto.prototype.clearNestedTypeList = function() /** * repeated EnumDescriptorProto enum_type = 4; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getEnumTypeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.EnumDescriptorProto, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setEnumTypeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -1664,15 +1664,15 @@ proto.google.protobuf.DescriptorProto.prototype.clearEnumTypeList = function() { /** * repeated ExtensionRange extension_range = 5; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getExtensionRangeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.DescriptorProto.ExtensionRange, 5)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setExtensionRangeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 5, value); }; @@ -1695,15 +1695,15 @@ proto.google.protobuf.DescriptorProto.prototype.clearExtensionRangeList = functi /** * repeated OneofDescriptorProto oneof_decl = 8; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getOneofDeclList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.OneofDescriptorProto, 8)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setOneofDeclList = function(value) { jspb.Message.setRepeatedWrapperField(this, 8, value); }; @@ -1747,7 +1747,7 @@ proto.google.protobuf.DescriptorProto.prototype.clearOptions = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.DescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 7) != null; @@ -1756,15 +1756,15 @@ proto.google.protobuf.DescriptorProto.prototype.hasOptions = function() { /** * repeated ReservedRange reserved_range = 9; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getReservedRangeList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.DescriptorProto.ReservedRange, 9)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setReservedRangeList = function(value) { jspb.Message.setRepeatedWrapperField(this, 9, value); }; @@ -1787,21 +1787,21 @@ proto.google.protobuf.DescriptorProto.prototype.clearReservedRangeList = functio /** * repeated string reserved_name = 10; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.DescriptorProto.prototype.getReservedNameList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 10)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 10)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.DescriptorProto.prototype.setReservedNameList = function(value) { jspb.Message.setField(this, 10, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.google.protobuf.DescriptorProto.prototype.addReservedName = function(value, opt_index) { @@ -2106,7 +2106,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -2135,7 +2135,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearNumber = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasNumber = function() { return jspb.Message.getField(this, 3) != null; @@ -2164,7 +2164,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearLabel = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasLabel = function() { return jspb.Message.getField(this, 4) != null; @@ -2193,7 +2193,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearType = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasType = function() { return jspb.Message.getField(this, 5) != null; @@ -2222,7 +2222,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearTypeName = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasTypeName = function() { return jspb.Message.getField(this, 6) != null; @@ -2251,7 +2251,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearExtendee = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasExtendee = function() { return jspb.Message.getField(this, 2) != null; @@ -2280,7 +2280,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearDefaultValue = functio /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasDefaultValue = function() { return jspb.Message.getField(this, 7) != null; @@ -2309,7 +2309,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearOneofIndex = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasOneofIndex = function() { return jspb.Message.getField(this, 9) != null; @@ -2338,7 +2338,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearJsonName = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasJsonName = function() { return jspb.Message.getField(this, 10) != null; @@ -2368,7 +2368,7 @@ proto.google.protobuf.FieldDescriptorProto.prototype.clearOptions = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 8) != null; @@ -2538,7 +2538,7 @@ proto.google.protobuf.OneofDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.OneofDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -2568,7 +2568,7 @@ proto.google.protobuf.OneofDescriptorProto.prototype.clearOptions = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.OneofDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 2) != null; @@ -2760,7 +2760,7 @@ proto.google.protobuf.EnumDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -2769,15 +2769,15 @@ proto.google.protobuf.EnumDescriptorProto.prototype.hasName = function() { /** * repeated EnumValueDescriptorProto value = 2; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.EnumDescriptorProto.prototype.getValueList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.EnumValueDescriptorProto, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.EnumDescriptorProto.prototype.setValueList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -2821,7 +2821,7 @@ proto.google.protobuf.EnumDescriptorProto.prototype.clearOptions = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 3) != null; @@ -3003,7 +3003,7 @@ proto.google.protobuf.EnumValueDescriptorProto.prototype.clearName = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumValueDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -3032,7 +3032,7 @@ proto.google.protobuf.EnumValueDescriptorProto.prototype.clearNumber = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumValueDescriptorProto.prototype.hasNumber = function() { return jspb.Message.getField(this, 2) != null; @@ -3062,7 +3062,7 @@ proto.google.protobuf.EnumValueDescriptorProto.prototype.clearOptions = function /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumValueDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 3) != null; @@ -3254,7 +3254,7 @@ proto.google.protobuf.ServiceDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.ServiceDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -3263,15 +3263,15 @@ proto.google.protobuf.ServiceDescriptorProto.prototype.hasName = function() { /** * repeated MethodDescriptorProto method = 2; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.ServiceDescriptorProto.prototype.getMethodList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.MethodDescriptorProto, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.ServiceDescriptorProto.prototype.setMethodList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -3315,7 +3315,7 @@ proto.google.protobuf.ServiceDescriptorProto.prototype.clearOptions = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.ServiceDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 3) != null; @@ -3533,7 +3533,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearName = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasName = function() { return jspb.Message.getField(this, 1) != null; @@ -3562,7 +3562,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearInputType = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasInputType = function() { return jspb.Message.getField(this, 2) != null; @@ -3591,7 +3591,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearOutputType = function /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasOutputType = function() { return jspb.Message.getField(this, 3) != null; @@ -3621,7 +3621,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearOptions = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasOptions = function() { return jspb.Message.getField(this, 4) != null; @@ -3652,7 +3652,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearClientStreaming = fun /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasClientStreaming = function() { return jspb.Message.getField(this, 5) != null; @@ -3683,7 +3683,7 @@ proto.google.protobuf.MethodDescriptorProto.prototype.clearServerStreaming = fun /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodDescriptorProto.prototype.hasServerStreaming = function() { return jspb.Message.getField(this, 6) != null; @@ -4081,7 +4081,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaPackage = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaPackage = function() { return jspb.Message.getField(this, 1) != null; @@ -4110,7 +4110,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaOuterClassname = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaOuterClassname = function() { return jspb.Message.getField(this, 8) != null; @@ -4141,7 +4141,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaMultipleFiles = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaMultipleFiles = function() { return jspb.Message.getField(this, 10) != null; @@ -4172,7 +4172,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaGenerateEqualsAndHash = fun /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaGenerateEqualsAndHash = function() { return jspb.Message.getField(this, 20) != null; @@ -4203,7 +4203,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaStringCheckUtf8 = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaStringCheckUtf8 = function() { return jspb.Message.getField(this, 27) != null; @@ -4232,7 +4232,7 @@ proto.google.protobuf.FileOptions.prototype.clearOptimizeFor = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasOptimizeFor = function() { return jspb.Message.getField(this, 9) != null; @@ -4261,7 +4261,7 @@ proto.google.protobuf.FileOptions.prototype.clearGoPackage = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasGoPackage = function() { return jspb.Message.getField(this, 11) != null; @@ -4292,7 +4292,7 @@ proto.google.protobuf.FileOptions.prototype.clearCcGenericServices = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasCcGenericServices = function() { return jspb.Message.getField(this, 16) != null; @@ -4323,7 +4323,7 @@ proto.google.protobuf.FileOptions.prototype.clearJavaGenericServices = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasJavaGenericServices = function() { return jspb.Message.getField(this, 17) != null; @@ -4354,7 +4354,7 @@ proto.google.protobuf.FileOptions.prototype.clearPyGenericServices = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasPyGenericServices = function() { return jspb.Message.getField(this, 18) != null; @@ -4385,7 +4385,7 @@ proto.google.protobuf.FileOptions.prototype.clearPhpGenericServices = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasPhpGenericServices = function() { return jspb.Message.getField(this, 19) != null; @@ -4416,7 +4416,7 @@ proto.google.protobuf.FileOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 23) != null; @@ -4447,7 +4447,7 @@ proto.google.protobuf.FileOptions.prototype.clearCcEnableArenas = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasCcEnableArenas = function() { return jspb.Message.getField(this, 31) != null; @@ -4476,7 +4476,7 @@ proto.google.protobuf.FileOptions.prototype.clearObjcClassPrefix = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasObjcClassPrefix = function() { return jspb.Message.getField(this, 36) != null; @@ -4505,7 +4505,7 @@ proto.google.protobuf.FileOptions.prototype.clearCsharpNamespace = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasCsharpNamespace = function() { return jspb.Message.getField(this, 37) != null; @@ -4534,7 +4534,7 @@ proto.google.protobuf.FileOptions.prototype.clearSwiftPrefix = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasSwiftPrefix = function() { return jspb.Message.getField(this, 39) != null; @@ -4563,7 +4563,7 @@ proto.google.protobuf.FileOptions.prototype.clearPhpClassPrefix = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasPhpClassPrefix = function() { return jspb.Message.getField(this, 40) != null; @@ -4592,7 +4592,7 @@ proto.google.protobuf.FileOptions.prototype.clearPhpNamespace = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FileOptions.prototype.hasPhpNamespace = function() { return jspb.Message.getField(this, 41) != null; @@ -4601,15 +4601,15 @@ proto.google.protobuf.FileOptions.prototype.hasPhpNamespace = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FileOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FileOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -4641,7 +4641,7 @@ proto.google.protobuf.FileOptions.prototype.clearUninterpretedOptionList = funct * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.FileOptions.extensions = {}; @@ -4656,7 +4656,7 @@ proto.google.protobuf.FileOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.FileOptions.extensionsBinary = {}; @@ -4876,7 +4876,7 @@ proto.google.protobuf.MessageOptions.prototype.clearMessageSetWireFormat = funct /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MessageOptions.prototype.hasMessageSetWireFormat = function() { return jspb.Message.getField(this, 1) != null; @@ -4907,7 +4907,7 @@ proto.google.protobuf.MessageOptions.prototype.clearNoStandardDescriptorAccessor /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MessageOptions.prototype.hasNoStandardDescriptorAccessor = function() { return jspb.Message.getField(this, 2) != null; @@ -4938,7 +4938,7 @@ proto.google.protobuf.MessageOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MessageOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 3) != null; @@ -4969,7 +4969,7 @@ proto.google.protobuf.MessageOptions.prototype.clearMapEntry = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MessageOptions.prototype.hasMapEntry = function() { return jspb.Message.getField(this, 7) != null; @@ -4978,15 +4978,15 @@ proto.google.protobuf.MessageOptions.prototype.hasMapEntry = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.MessageOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.MessageOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -5018,7 +5018,7 @@ proto.google.protobuf.MessageOptions.prototype.clearUninterpretedOptionList = fu * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.MessageOptions.extensions = {}; @@ -5033,7 +5033,7 @@ proto.google.protobuf.MessageOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.MessageOptions.extensionsBinary = {}; @@ -5293,7 +5293,7 @@ proto.google.protobuf.FieldOptions.prototype.clearCtype = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasCtype = function() { return jspb.Message.getField(this, 1) != null; @@ -5324,7 +5324,7 @@ proto.google.protobuf.FieldOptions.prototype.clearPacked = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasPacked = function() { return jspb.Message.getField(this, 2) != null; @@ -5353,7 +5353,7 @@ proto.google.protobuf.FieldOptions.prototype.clearJstype = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasJstype = function() { return jspb.Message.getField(this, 6) != null; @@ -5384,7 +5384,7 @@ proto.google.protobuf.FieldOptions.prototype.clearLazy = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasLazy = function() { return jspb.Message.getField(this, 5) != null; @@ -5415,7 +5415,7 @@ proto.google.protobuf.FieldOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 3) != null; @@ -5446,7 +5446,7 @@ proto.google.protobuf.FieldOptions.prototype.clearWeak = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.FieldOptions.prototype.hasWeak = function() { return jspb.Message.getField(this, 10) != null; @@ -5455,15 +5455,15 @@ proto.google.protobuf.FieldOptions.prototype.hasWeak = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.FieldOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.FieldOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -5495,7 +5495,7 @@ proto.google.protobuf.FieldOptions.prototype.clearUninterpretedOptionList = func * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.FieldOptions.extensions = {}; @@ -5510,7 +5510,7 @@ proto.google.protobuf.FieldOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.FieldOptions.extensionsBinary = {}; @@ -5660,15 +5660,15 @@ proto.google.protobuf.OneofOptions.serializeBinaryToWriter = function(message, w /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.OneofOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.OneofOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -5700,7 +5700,7 @@ proto.google.protobuf.OneofOptions.prototype.clearUninterpretedOptionList = func * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.OneofOptions.extensions = {}; @@ -5715,7 +5715,7 @@ proto.google.protobuf.OneofOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.OneofOptions.extensionsBinary = {}; @@ -5911,7 +5911,7 @@ proto.google.protobuf.EnumOptions.prototype.clearAllowAlias = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumOptions.prototype.hasAllowAlias = function() { return jspb.Message.getField(this, 2) != null; @@ -5942,7 +5942,7 @@ proto.google.protobuf.EnumOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 3) != null; @@ -5951,15 +5951,15 @@ proto.google.protobuf.EnumOptions.prototype.hasDeprecated = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.EnumOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.EnumOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -5991,7 +5991,7 @@ proto.google.protobuf.EnumOptions.prototype.clearUninterpretedOptionList = funct * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.EnumOptions.extensions = {}; @@ -6006,7 +6006,7 @@ proto.google.protobuf.EnumOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.EnumOptions.extensionsBinary = {}; @@ -6190,7 +6190,7 @@ proto.google.protobuf.EnumValueOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.EnumValueOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 1) != null; @@ -6199,15 +6199,15 @@ proto.google.protobuf.EnumValueOptions.prototype.hasDeprecated = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.EnumValueOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.EnumValueOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -6239,7 +6239,7 @@ proto.google.protobuf.EnumValueOptions.prototype.clearUninterpretedOptionList = * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.EnumValueOptions.extensions = {}; @@ -6254,7 +6254,7 @@ proto.google.protobuf.EnumValueOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.EnumValueOptions.extensionsBinary = {}; @@ -6438,7 +6438,7 @@ proto.google.protobuf.ServiceOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.ServiceOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 33) != null; @@ -6447,15 +6447,15 @@ proto.google.protobuf.ServiceOptions.prototype.hasDeprecated = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.ServiceOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.ServiceOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -6487,7 +6487,7 @@ proto.google.protobuf.ServiceOptions.prototype.clearUninterpretedOptionList = fu * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.ServiceOptions.extensions = {}; @@ -6502,7 +6502,7 @@ proto.google.protobuf.ServiceOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.ServiceOptions.extensionsBinary = {}; @@ -6707,7 +6707,7 @@ proto.google.protobuf.MethodOptions.prototype.clearDeprecated = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodOptions.prototype.hasDeprecated = function() { return jspb.Message.getField(this, 33) != null; @@ -6736,7 +6736,7 @@ proto.google.protobuf.MethodOptions.prototype.clearIdempotencyLevel = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.MethodOptions.prototype.hasIdempotencyLevel = function() { return jspb.Message.getField(this, 34) != null; @@ -6745,15 +6745,15 @@ proto.google.protobuf.MethodOptions.prototype.hasIdempotencyLevel = function() { /** * repeated UninterpretedOption uninterpreted_option = 999; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.MethodOptions.prototype.getUninterpretedOptionList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption, 999)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.MethodOptions.prototype.setUninterpretedOptionList = function(value) { jspb.Message.setRepeatedWrapperField(this, 999, value); }; @@ -6785,7 +6785,7 @@ proto.google.protobuf.MethodOptions.prototype.clearUninterpretedOptionList = fun * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.MethodOptions.extensions = {}; @@ -6800,7 +6800,7 @@ proto.google.protobuf.MethodOptions.extensions = {}; * fieldName contains the JsCompiler renamed field name property so that it * works in OPTIMIZED mode. * - * @type {!Object.} + * @type {!Object} */ proto.google.protobuf.MethodOptions.extensionsBinary = {}; @@ -7174,7 +7174,7 @@ proto.google.protobuf.UninterpretedOption.NamePart.prototype.clearNamePart = fun /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.NamePart.prototype.hasNamePart = function() { return jspb.Message.getField(this, 1) != null; @@ -7205,7 +7205,7 @@ proto.google.protobuf.UninterpretedOption.NamePart.prototype.clearIsExtension = /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.NamePart.prototype.hasIsExtension = function() { return jspb.Message.getField(this, 2) != null; @@ -7214,15 +7214,15 @@ proto.google.protobuf.UninterpretedOption.NamePart.prototype.hasIsExtension = fu /** * repeated NamePart name = 2; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.UninterpretedOption.prototype.getNameList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.UninterpretedOption.NamePart, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.UninterpretedOption.prototype.setNameList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -7265,7 +7265,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearIdentifierValue = funct /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasIdentifierValue = function() { return jspb.Message.getField(this, 3) != null; @@ -7294,7 +7294,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearPositiveIntValue = func /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasPositiveIntValue = function() { return jspb.Message.getField(this, 4) != null; @@ -7323,7 +7323,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearNegativeIntValue = func /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasNegativeIntValue = function() { return jspb.Message.getField(this, 5) != null; @@ -7352,7 +7352,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearDoubleValue = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasDoubleValue = function() { return jspb.Message.getField(this, 6) != null; @@ -7405,7 +7405,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearStringValue = function( /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasStringValue = function() { return jspb.Message.getField(this, 7) != null; @@ -7434,7 +7434,7 @@ proto.google.protobuf.UninterpretedOption.prototype.clearAggregateValue = functi /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.UninterpretedOption.prototype.hasAggregateValue = function() { return jspb.Message.getField(this, 8) != null; @@ -7674,11 +7674,11 @@ proto.google.protobuf.SourceCodeInfo.Location.deserializeBinaryFromReader = func var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {!Array.} */ (reader.readPackedInt32()); + var value = /** @type {!Array} */ (reader.readPackedInt32()); msg.setPathList(value); break; case 2: - var value = /** @type {!Array.} */ (reader.readPackedInt32()); + var value = /** @type {!Array} */ (reader.readPackedInt32()); msg.setSpanList(value); break; case 3: @@ -7762,21 +7762,21 @@ proto.google.protobuf.SourceCodeInfo.Location.serializeBinaryToWriter = function /** * repeated int32 path = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.SourceCodeInfo.Location.prototype.getPathList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.SourceCodeInfo.Location.prototype.setPathList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!number} value + * @param {number} value * @param {number=} opt_index */ proto.google.protobuf.SourceCodeInfo.Location.prototype.addPath = function(value, opt_index) { @@ -7791,21 +7791,21 @@ proto.google.protobuf.SourceCodeInfo.Location.prototype.clearPathList = function /** * repeated int32 span = 2; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.SourceCodeInfo.Location.prototype.getSpanList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 2)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.SourceCodeInfo.Location.prototype.setSpanList = function(value) { jspb.Message.setField(this, 2, value || []); }; /** - * @param {!number} value + * @param {number} value * @param {number=} opt_index */ proto.google.protobuf.SourceCodeInfo.Location.prototype.addSpan = function(value, opt_index) { @@ -7840,7 +7840,7 @@ proto.google.protobuf.SourceCodeInfo.Location.prototype.clearLeadingComments = f /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.SourceCodeInfo.Location.prototype.hasLeadingComments = function() { return jspb.Message.getField(this, 3) != null; @@ -7869,7 +7869,7 @@ proto.google.protobuf.SourceCodeInfo.Location.prototype.clearTrailingComments = /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.SourceCodeInfo.Location.prototype.hasTrailingComments = function() { return jspb.Message.getField(this, 4) != null; @@ -7878,21 +7878,21 @@ proto.google.protobuf.SourceCodeInfo.Location.prototype.hasTrailingComments = fu /** * repeated string leading_detached_comments = 6; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.SourceCodeInfo.Location.prototype.getLeadingDetachedCommentsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 6)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 6)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.SourceCodeInfo.Location.prototype.setLeadingDetachedCommentsList = function(value) { jspb.Message.setField(this, 6, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.google.protobuf.SourceCodeInfo.Location.prototype.addLeadingDetachedComments = function(value, opt_index) { @@ -7907,15 +7907,15 @@ proto.google.protobuf.SourceCodeInfo.Location.prototype.clearLeadingDetachedComm /** * repeated Location location = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.SourceCodeInfo.prototype.getLocationList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.SourceCodeInfo.Location, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.SourceCodeInfo.prototype.setLocationList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -8168,7 +8168,7 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.deserializeBinaryFromReader = var field = reader.getFieldNumber(); switch (field) { case 1: - var value = /** @type {!Array.} */ (reader.readPackedInt32()); + var value = /** @type {!Array} */ (reader.readPackedInt32()); msg.setPathList(value); break; case 2: @@ -8245,21 +8245,21 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.serializeBinaryToWriter = fun /** * repeated int32 path = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.getPathList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.setPathList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!number} value + * @param {number} value * @param {number=} opt_index */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.addPath = function(value, opt_index) { @@ -8294,7 +8294,7 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.clearSourceFile = f /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.hasSourceFile = function() { return jspb.Message.getField(this, 2) != null; @@ -8323,7 +8323,7 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.clearBegin = functi /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.hasBegin = function() { return jspb.Message.getField(this, 3) != null; @@ -8352,7 +8352,7 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.clearEnd = function /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.hasEnd = function() { return jspb.Message.getField(this, 4) != null; @@ -8361,15 +8361,15 @@ proto.google.protobuf.GeneratedCodeInfo.Annotation.prototype.hasEnd = function() /** * repeated Annotation annotation = 1; - * @return {!Array.} + * @return {!Array} */ proto.google.protobuf.GeneratedCodeInfo.prototype.getAnnotationList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.google.protobuf.GeneratedCodeInfo.Annotation, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.google.protobuf.GeneratedCodeInfo.prototype.setAnnotationList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; diff --git a/lib/proto/lndinvoices_pb.js b/lib/proto/lndinvoices_pb.js index 615f0c035..47d344e79 100644 --- a/lib/proto/lndinvoices_pb.js +++ b/lib/proto/lndinvoices_pb.js @@ -12,7 +12,9 @@ var goog = jspb; var global = Function('return this')(); var annotations_pb = require('./annotations_pb.js'); +goog.object.extend(proto, annotations_pb); var lndrpc_pb = require('./lndrpc_pb.js'); +goog.object.extend(proto, lndrpc_pb); goog.exportSymbol('proto.invoicesrpc.AddHoldInvoiceRequest', null, global); goog.exportSymbol('proto.invoicesrpc.AddHoldInvoiceResp', null, global); goog.exportSymbol('proto.invoicesrpc.CancelInvoiceMsg', null, global); @@ -182,7 +184,7 @@ proto.invoicesrpc.CancelInvoiceMsg.prototype.getPaymentHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.invoicesrpc.CancelInvoiceMsg.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -546,7 +548,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getMemo = function() { /** @param {string} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setMemo = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -585,7 +587,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setHash = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -600,7 +602,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getValue = function() { /** @param {number} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setValue = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -639,7 +641,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getDescriptionHash_asU8 = func /** @param {!(string|Uint8Array)} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setDescriptionHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BytesField(this, 4, value); }; @@ -654,7 +656,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getExpiry = function() { /** @param {number} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setExpiry = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -669,7 +671,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getFallbackAddr = function() { /** @param {string} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setFallbackAddr = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -684,21 +686,21 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getCltvExpiry = function() { /** @param {number} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setCltvExpiry = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; /** * repeated lnrpc.RouteHint route_hints = 8; - * @return {!Array.} + * @return {!Array} */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getRouteHintsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, lndrpc_pb.RouteHint, 8)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setRouteHintsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 8, value); }; @@ -732,7 +734,7 @@ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.getPrivate = function() { /** @param {boolean} value */ proto.invoicesrpc.AddHoldInvoiceRequest.prototype.setPrivate = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3BooleanField(this, 9, value); }; @@ -874,7 +876,7 @@ proto.invoicesrpc.AddHoldInvoiceResp.prototype.getPaymentRequest = function() { /** @param {string} value */ proto.invoicesrpc.AddHoldInvoiceResp.prototype.setPaymentRequest = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1040,7 +1042,7 @@ proto.invoicesrpc.SettleInvoiceMsg.prototype.getPreimage_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.invoicesrpc.SettleInvoiceMsg.prototype.setPreimage = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -1322,7 +1324,7 @@ proto.invoicesrpc.SubscribeSingleInvoiceRequest.prototype.getRHash_asU8 = functi /** @param {!(string|Uint8Array)} value */ proto.invoicesrpc.SubscribeSingleInvoiceRequest.prototype.setRHash = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; diff --git a/lib/proto/lndrpc_pb.js b/lib/proto/lndrpc_pb.js index fb0e1139c..030fab5fd 100644 --- a/lib/proto/lndrpc_pb.js +++ b/lib/proto/lndrpc_pb.js @@ -12,6 +12,7 @@ var goog = jspb; var global = Function('return this')(); var annotations_pb = require('./annotations_pb.js'); +goog.object.extend(proto, annotations_pb); goog.exportSymbol('proto.lnrpc.AbandonChannelRequest', null, global); goog.exportSymbol('proto.lnrpc.AbandonChannelResponse', null, global); goog.exportSymbol('proto.lnrpc.AddInvoiceResponse', null, global); @@ -324,7 +325,7 @@ proto.lnrpc.GenSeedRequest.prototype.getAezeedPassphrase_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.GenSeedRequest.prototype.setAezeedPassphrase = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -363,7 +364,7 @@ proto.lnrpc.GenSeedRequest.prototype.getSeedEntropy_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.GenSeedRequest.prototype.setSeedEntropy = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -515,21 +516,21 @@ proto.lnrpc.GenSeedResponse.serializeBinaryToWriter = function(message, writer) /** * repeated string cipher_seed_mnemonic = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GenSeedResponse.prototype.getCipherSeedMnemonicList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GenSeedResponse.prototype.setCipherSeedMnemonicList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.GenSeedResponse.prototype.addCipherSeedMnemonic = function(value, opt_index) { @@ -577,7 +578,7 @@ proto.lnrpc.GenSeedResponse.prototype.getEncipheredSeed_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.GenSeedResponse.prototype.setEncipheredSeed = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -800,27 +801,27 @@ proto.lnrpc.InitWalletRequest.prototype.getWalletPassword_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.InitWalletRequest.prototype.setWalletPassword = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; /** * repeated string cipher_seed_mnemonic = 2; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.InitWalletRequest.prototype.getCipherSeedMnemonicList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 2)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.InitWalletRequest.prototype.setCipherSeedMnemonicList = function(value) { jspb.Message.setField(this, 2, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.InitWalletRequest.prototype.addCipherSeedMnemonic = function(value, opt_index) { @@ -868,7 +869,7 @@ proto.lnrpc.InitWalletRequest.prototype.getAezeedPassphrase_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.InitWalletRequest.prototype.setAezeedPassphrase = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BytesField(this, 3, value); }; @@ -883,7 +884,7 @@ proto.lnrpc.InitWalletRequest.prototype.getRecoveryWindow = function() { /** @param {number} value */ proto.lnrpc.InitWalletRequest.prototype.setRecoveryWindow = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -910,7 +911,7 @@ proto.lnrpc.InitWalletRequest.prototype.clearChannelBackups = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.InitWalletRequest.prototype.hasChannelBackups = function() { return jspb.Message.getField(this, 5) != null; @@ -1221,7 +1222,7 @@ proto.lnrpc.UnlockWalletRequest.prototype.getWalletPassword_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.UnlockWalletRequest.prototype.setWalletPassword = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -1236,7 +1237,7 @@ proto.lnrpc.UnlockWalletRequest.prototype.getRecoveryWindow = function() { /** @param {number} value */ proto.lnrpc.UnlockWalletRequest.prototype.setRecoveryWindow = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -1263,7 +1264,7 @@ proto.lnrpc.UnlockWalletRequest.prototype.clearChannelBackups = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.UnlockWalletRequest.prototype.hasChannelBackups = function() { return jspb.Message.getField(this, 3) != null; @@ -1560,7 +1561,7 @@ proto.lnrpc.ChangePasswordRequest.prototype.getCurrentPassword_asU8 = function() /** @param {!(string|Uint8Array)} value */ proto.lnrpc.ChangePasswordRequest.prototype.setCurrentPassword = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -1599,7 +1600,7 @@ proto.lnrpc.ChangePasswordRequest.prototype.getNewPassword_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.ChangePasswordRequest.prototype.setNewPassword = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -1919,7 +1920,7 @@ proto.lnrpc.Utxo.prototype.getType = function() { /** @param {!proto.lnrpc.AddressType} value */ proto.lnrpc.Utxo.prototype.setType = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3EnumField(this, 1, value); }; @@ -1934,7 +1935,7 @@ proto.lnrpc.Utxo.prototype.getAddress = function() { /** @param {string} value */ proto.lnrpc.Utxo.prototype.setAddress = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -1949,7 +1950,7 @@ proto.lnrpc.Utxo.prototype.getAmountSat = function() { /** @param {number} value */ proto.lnrpc.Utxo.prototype.setAmountSat = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -1964,7 +1965,7 @@ proto.lnrpc.Utxo.prototype.getPkScript = function() { /** @param {string} value */ proto.lnrpc.Utxo.prototype.setPkScript = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -1991,7 +1992,7 @@ proto.lnrpc.Utxo.prototype.clearOutpoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.Utxo.prototype.hasOutpoint = function() { return jspb.Message.getField(this, 5) != null; @@ -2009,7 +2010,7 @@ proto.lnrpc.Utxo.prototype.getConfirmations = function() { /** @param {number} value */ proto.lnrpc.Utxo.prototype.setConfirmations = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -2254,7 +2255,7 @@ proto.lnrpc.Transaction.prototype.getTxHash = function() { /** @param {string} value */ proto.lnrpc.Transaction.prototype.setTxHash = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2269,7 +2270,7 @@ proto.lnrpc.Transaction.prototype.getAmount = function() { /** @param {number} value */ proto.lnrpc.Transaction.prototype.setAmount = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -2284,7 +2285,7 @@ proto.lnrpc.Transaction.prototype.getNumConfirmations = function() { /** @param {number} value */ proto.lnrpc.Transaction.prototype.setNumConfirmations = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -2299,7 +2300,7 @@ proto.lnrpc.Transaction.prototype.getBlockHash = function() { /** @param {string} value */ proto.lnrpc.Transaction.prototype.setBlockHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -2314,7 +2315,7 @@ proto.lnrpc.Transaction.prototype.getBlockHeight = function() { /** @param {number} value */ proto.lnrpc.Transaction.prototype.setBlockHeight = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -2329,7 +2330,7 @@ proto.lnrpc.Transaction.prototype.getTimeStamp = function() { /** @param {number} value */ proto.lnrpc.Transaction.prototype.setTimeStamp = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -2344,27 +2345,27 @@ proto.lnrpc.Transaction.prototype.getTotalFees = function() { /** @param {number} value */ proto.lnrpc.Transaction.prototype.setTotalFees = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; /** * repeated string dest_addresses = 8; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.Transaction.prototype.getDestAddressesList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 8)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 8)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.Transaction.prototype.setDestAddressesList = function(value) { jspb.Message.setField(this, 8, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.Transaction.prototype.addDestAddresses = function(value, opt_index) { @@ -2388,7 +2389,7 @@ proto.lnrpc.Transaction.prototype.getRawTxHex = function() { /** @param {string} value */ proto.lnrpc.Transaction.prototype.setRawTxHex = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3StringField(this, 9, value); }; @@ -2647,15 +2648,15 @@ proto.lnrpc.TransactionDetails.serializeBinaryToWriter = function(message, write /** * repeated Transaction transactions = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.TransactionDetails.prototype.getTransactionsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Transaction, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.TransactionDetails.prototype.setTransactionsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -2863,7 +2864,7 @@ proto.lnrpc.FeeLimit.prototype.clearFixed = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.FeeLimit.prototype.hasFixed = function() { return jspb.Message.getField(this, 1) != null; @@ -2892,7 +2893,7 @@ proto.lnrpc.FeeLimit.prototype.clearPercent = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.FeeLimit.prototype.hasPercent = function() { return jspb.Message.getField(this, 2) != null; @@ -3171,7 +3172,7 @@ proto.lnrpc.SendRequest.prototype.getDest_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SendRequest.prototype.setDest = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -3186,7 +3187,7 @@ proto.lnrpc.SendRequest.prototype.getDestString = function() { /** @param {string} value */ proto.lnrpc.SendRequest.prototype.setDestString = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -3201,7 +3202,7 @@ proto.lnrpc.SendRequest.prototype.getAmt = function() { /** @param {number} value */ proto.lnrpc.SendRequest.prototype.setAmt = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -3240,7 +3241,7 @@ proto.lnrpc.SendRequest.prototype.getPaymentHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SendRequest.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BytesField(this, 4, value); }; @@ -3255,7 +3256,7 @@ proto.lnrpc.SendRequest.prototype.getPaymentHashString = function() { /** @param {string} value */ proto.lnrpc.SendRequest.prototype.setPaymentHashString = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -3270,7 +3271,7 @@ proto.lnrpc.SendRequest.prototype.getPaymentRequest = function() { /** @param {string} value */ proto.lnrpc.SendRequest.prototype.setPaymentRequest = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -3285,7 +3286,7 @@ proto.lnrpc.SendRequest.prototype.getFinalCltvDelta = function() { /** @param {number} value */ proto.lnrpc.SendRequest.prototype.setFinalCltvDelta = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -3312,7 +3313,7 @@ proto.lnrpc.SendRequest.prototype.clearFeeLimit = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.SendRequest.prototype.hasFeeLimit = function() { return jspb.Message.getField(this, 8) != null; @@ -3330,7 +3331,7 @@ proto.lnrpc.SendRequest.prototype.getOutgoingChanId = function() { /** @param {number} value */ proto.lnrpc.SendRequest.prototype.setOutgoingChanId = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -3345,7 +3346,7 @@ proto.lnrpc.SendRequest.prototype.getCltvLimit = function() { /** @param {number} value */ proto.lnrpc.SendRequest.prototype.setCltvLimit = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3IntField(this, 10, value); }; @@ -3525,7 +3526,7 @@ proto.lnrpc.SendResponse.prototype.getPaymentError = function() { /** @param {string} value */ proto.lnrpc.SendResponse.prototype.setPaymentError = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3564,7 +3565,7 @@ proto.lnrpc.SendResponse.prototype.getPaymentPreimage_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SendResponse.prototype.setPaymentPreimage = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -3591,7 +3592,7 @@ proto.lnrpc.SendResponse.prototype.clearPaymentRoute = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.SendResponse.prototype.hasPaymentRoute = function() { return jspb.Message.getField(this, 3) != null; @@ -3633,7 +3634,7 @@ proto.lnrpc.SendResponse.prototype.getPaymentHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SendResponse.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BytesField(this, 4, value); }; @@ -3825,7 +3826,7 @@ proto.lnrpc.SendToRouteRequest.prototype.getPaymentHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SendToRouteRequest.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -3840,7 +3841,7 @@ proto.lnrpc.SendToRouteRequest.prototype.getPaymentHashString = function() { /** @param {string} value */ proto.lnrpc.SendToRouteRequest.prototype.setPaymentHashString = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -3867,7 +3868,7 @@ proto.lnrpc.SendToRouteRequest.prototype.clearRoute = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.SendToRouteRequest.prototype.hasRoute = function() { return jspb.Message.getField(this, 4) != null; @@ -4097,7 +4098,7 @@ proto.lnrpc.ChannelPoint.prototype.clearFundingTxidBytes = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelPoint.prototype.hasFundingTxidBytes = function() { return jspb.Message.getField(this, 1) != null; @@ -4126,7 +4127,7 @@ proto.lnrpc.ChannelPoint.prototype.clearFundingTxidStr = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelPoint.prototype.hasFundingTxidStr = function() { return jspb.Message.getField(this, 2) != null; @@ -4144,7 +4145,7 @@ proto.lnrpc.ChannelPoint.prototype.getOutputIndex = function() { /** @param {number} value */ proto.lnrpc.ChannelPoint.prototype.setOutputIndex = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -4334,7 +4335,7 @@ proto.lnrpc.OutPoint.prototype.getTxidBytes_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.OutPoint.prototype.setTxidBytes = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -4349,7 +4350,7 @@ proto.lnrpc.OutPoint.prototype.getTxidStr = function() { /** @param {string} value */ proto.lnrpc.OutPoint.prototype.setTxidStr = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4364,7 +4365,7 @@ proto.lnrpc.OutPoint.prototype.getOutputIndex = function() { /** @param {number} value */ proto.lnrpc.OutPoint.prototype.setOutputIndex = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -4518,7 +4519,7 @@ proto.lnrpc.LightningAddress.prototype.getPubkey = function() { /** @param {string} value */ proto.lnrpc.LightningAddress.prototype.setPubkey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4533,7 +4534,7 @@ proto.lnrpc.LightningAddress.prototype.getHost = function() { /** @param {string} value */ proto.lnrpc.LightningAddress.prototype.setHost = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4625,7 +4626,7 @@ proto.lnrpc.EstimateFeeRequest.deserializeBinaryFromReader = function(msg, reade case 1: var value = msg.getAddrtoamountMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readInt64); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readInt64, null, ""); }); break; case 2: @@ -4704,7 +4705,7 @@ proto.lnrpc.EstimateFeeRequest.prototype.getTargetConf = function() { /** @param {number} value */ proto.lnrpc.EstimateFeeRequest.prototype.setTargetConf = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -4858,7 +4859,7 @@ proto.lnrpc.EstimateFeeResponse.prototype.getFeeSat = function() { /** @param {number} value */ proto.lnrpc.EstimateFeeResponse.prototype.setFeeSat = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -4873,7 +4874,7 @@ proto.lnrpc.EstimateFeeResponse.prototype.getFeerateSatPerByte = function() { /** @param {number} value */ proto.lnrpc.EstimateFeeResponse.prototype.setFeerateSatPerByte = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -4966,7 +4967,7 @@ proto.lnrpc.SendManyRequest.deserializeBinaryFromReader = function(msg, reader) case 1: var value = msg.getAddrtoamountMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readInt64); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readInt64, null, ""); }); break; case 3: @@ -5056,7 +5057,7 @@ proto.lnrpc.SendManyRequest.prototype.getTargetConf = function() { /** @param {number} value */ proto.lnrpc.SendManyRequest.prototype.setTargetConf = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -5071,7 +5072,7 @@ proto.lnrpc.SendManyRequest.prototype.getSatPerByte = function() { /** @param {number} value */ proto.lnrpc.SendManyRequest.prototype.setSatPerByte = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -5213,7 +5214,7 @@ proto.lnrpc.SendManyResponse.prototype.getTxid = function() { /** @param {string} value */ proto.lnrpc.SendManyResponse.prototype.setTxid = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -5403,7 +5404,7 @@ proto.lnrpc.SendCoinsRequest.prototype.getAddr = function() { /** @param {string} value */ proto.lnrpc.SendCoinsRequest.prototype.setAddr = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -5418,7 +5419,7 @@ proto.lnrpc.SendCoinsRequest.prototype.getAmount = function() { /** @param {number} value */ proto.lnrpc.SendCoinsRequest.prototype.setAmount = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -5433,7 +5434,7 @@ proto.lnrpc.SendCoinsRequest.prototype.getTargetConf = function() { /** @param {number} value */ proto.lnrpc.SendCoinsRequest.prototype.setTargetConf = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -5448,7 +5449,7 @@ proto.lnrpc.SendCoinsRequest.prototype.getSatPerByte = function() { /** @param {number} value */ proto.lnrpc.SendCoinsRequest.prototype.setSatPerByte = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -5465,7 +5466,7 @@ proto.lnrpc.SendCoinsRequest.prototype.getSendAll = function() { /** @param {boolean} value */ proto.lnrpc.SendCoinsRequest.prototype.setSendAll = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3BooleanField(this, 6, value); }; @@ -5607,7 +5608,7 @@ proto.lnrpc.SendCoinsResponse.prototype.getTxid = function() { /** @param {string} value */ proto.lnrpc.SendCoinsResponse.prototype.setTxid = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -5761,7 +5762,7 @@ proto.lnrpc.ListUnspentRequest.prototype.getMinConfs = function() { /** @param {number} value */ proto.lnrpc.ListUnspentRequest.prototype.setMinConfs = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -5776,7 +5777,7 @@ proto.lnrpc.ListUnspentRequest.prototype.getMaxConfs = function() { /** @param {number} value */ proto.lnrpc.ListUnspentRequest.prototype.setMaxConfs = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -5919,15 +5920,15 @@ proto.lnrpc.ListUnspentResponse.serializeBinaryToWriter = function(message, writ /** * repeated Utxo utxos = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ListUnspentResponse.prototype.getUtxosList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Utxo, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ListUnspentResponse.prototype.setUtxosList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -6086,7 +6087,7 @@ proto.lnrpc.NewAddressRequest.prototype.getType = function() { /** @param {!proto.lnrpc.AddressType} value */ proto.lnrpc.NewAddressRequest.prototype.setType = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3EnumField(this, 1, value); }; @@ -6228,7 +6229,7 @@ proto.lnrpc.NewAddressResponse.prototype.getAddress = function() { /** @param {string} value */ proto.lnrpc.NewAddressResponse.prototype.setAddress = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -6394,7 +6395,7 @@ proto.lnrpc.SignMessageRequest.prototype.getMsg_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.SignMessageRequest.prototype.setMsg = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -6536,7 +6537,7 @@ proto.lnrpc.SignMessageResponse.prototype.getSignature = function() { /** @param {string} value */ proto.lnrpc.SignMessageResponse.prototype.setSignature = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -6714,7 +6715,7 @@ proto.lnrpc.VerifyMessageRequest.prototype.getMsg_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.VerifyMessageRequest.prototype.setMsg = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -6729,7 +6730,7 @@ proto.lnrpc.VerifyMessageRequest.prototype.getSignature = function() { /** @param {string} value */ proto.lnrpc.VerifyMessageRequest.prototype.setSignature = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -6885,7 +6886,7 @@ proto.lnrpc.VerifyMessageResponse.prototype.getValid = function() { /** @param {boolean} value */ proto.lnrpc.VerifyMessageResponse.prototype.setValid = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -6900,7 +6901,7 @@ proto.lnrpc.VerifyMessageResponse.prototype.getPubkey = function() { /** @param {string} value */ proto.lnrpc.VerifyMessageResponse.prototype.setPubkey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -7068,7 +7069,7 @@ proto.lnrpc.ConnectPeerRequest.prototype.clearAddr = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ConnectPeerRequest.prototype.hasAddr = function() { return jspb.Message.getField(this, 1) != null; @@ -7088,7 +7089,7 @@ proto.lnrpc.ConnectPeerRequest.prototype.getPerm = function() { /** @param {boolean} value */ proto.lnrpc.ConnectPeerRequest.prototype.setPerm = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -7346,7 +7347,7 @@ proto.lnrpc.DisconnectPeerRequest.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.DisconnectPeerRequest.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -7642,7 +7643,7 @@ proto.lnrpc.HTLC.prototype.getIncoming = function() { /** @param {boolean} value */ proto.lnrpc.HTLC.prototype.setIncoming = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -7657,7 +7658,7 @@ proto.lnrpc.HTLC.prototype.getAmount = function() { /** @param {number} value */ proto.lnrpc.HTLC.prototype.setAmount = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -7696,7 +7697,7 @@ proto.lnrpc.HTLC.prototype.getHashLock_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.HTLC.prototype.setHashLock = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BytesField(this, 3, value); }; @@ -7711,7 +7712,7 @@ proto.lnrpc.HTLC.prototype.getExpirationHeight = function() { /** @param {number} value */ proto.lnrpc.HTLC.prototype.setExpirationHeight = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -8105,7 +8106,7 @@ proto.lnrpc.Channel.prototype.getActive = function() { /** @param {boolean} value */ proto.lnrpc.Channel.prototype.setActive = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -8120,7 +8121,7 @@ proto.lnrpc.Channel.prototype.getRemotePubkey = function() { /** @param {string} value */ proto.lnrpc.Channel.prototype.setRemotePubkey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -8135,7 +8136,7 @@ proto.lnrpc.Channel.prototype.getChannelPoint = function() { /** @param {string} value */ proto.lnrpc.Channel.prototype.setChannelPoint = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -8150,7 +8151,7 @@ proto.lnrpc.Channel.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.Channel.prototype.setChanId = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringIntField(this, 4, value); }; @@ -8165,7 +8166,7 @@ proto.lnrpc.Channel.prototype.getCapacity = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -8180,7 +8181,7 @@ proto.lnrpc.Channel.prototype.getLocalBalance = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setLocalBalance = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -8195,7 +8196,7 @@ proto.lnrpc.Channel.prototype.getRemoteBalance = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setRemoteBalance = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -8210,7 +8211,7 @@ proto.lnrpc.Channel.prototype.getCommitFee = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setCommitFee = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -8225,7 +8226,7 @@ proto.lnrpc.Channel.prototype.getCommitWeight = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setCommitWeight = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -8240,7 +8241,7 @@ proto.lnrpc.Channel.prototype.getFeePerKw = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setFeePerKw = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3IntField(this, 10, value); }; @@ -8255,7 +8256,7 @@ proto.lnrpc.Channel.prototype.getUnsettledBalance = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setUnsettledBalance = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3IntField(this, 11, value); }; @@ -8270,7 +8271,7 @@ proto.lnrpc.Channel.prototype.getTotalSatoshisSent = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setTotalSatoshisSent = function(value) { - jspb.Message.setField(this, 12, value); + jspb.Message.setProto3IntField(this, 12, value); }; @@ -8285,7 +8286,7 @@ proto.lnrpc.Channel.prototype.getTotalSatoshisReceived = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setTotalSatoshisReceived = function(value) { - jspb.Message.setField(this, 13, value); + jspb.Message.setProto3IntField(this, 13, value); }; @@ -8300,21 +8301,21 @@ proto.lnrpc.Channel.prototype.getNumUpdates = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setNumUpdates = function(value) { - jspb.Message.setField(this, 14, value); + jspb.Message.setProto3IntField(this, 14, value); }; /** * repeated HTLC pending_htlcs = 15; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.Channel.prototype.getPendingHtlcsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.HTLC, 15)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.Channel.prototype.setPendingHtlcsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 15, value); }; @@ -8346,7 +8347,7 @@ proto.lnrpc.Channel.prototype.getCsvDelay = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setCsvDelay = function(value) { - jspb.Message.setField(this, 16, value); + jspb.Message.setProto3IntField(this, 16, value); }; @@ -8363,7 +8364,7 @@ proto.lnrpc.Channel.prototype.getPrivate = function() { /** @param {boolean} value */ proto.lnrpc.Channel.prototype.setPrivate = function(value) { - jspb.Message.setField(this, 17, value); + jspb.Message.setProto3BooleanField(this, 17, value); }; @@ -8380,7 +8381,7 @@ proto.lnrpc.Channel.prototype.getInitiator = function() { /** @param {boolean} value */ proto.lnrpc.Channel.prototype.setInitiator = function(value) { - jspb.Message.setField(this, 18, value); + jspb.Message.setProto3BooleanField(this, 18, value); }; @@ -8395,7 +8396,7 @@ proto.lnrpc.Channel.prototype.getChanStatusFlags = function() { /** @param {string} value */ proto.lnrpc.Channel.prototype.setChanStatusFlags = function(value) { - jspb.Message.setField(this, 19, value); + jspb.Message.setProto3StringField(this, 19, value); }; @@ -8410,7 +8411,7 @@ proto.lnrpc.Channel.prototype.getLocalChanReserveSat = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setLocalChanReserveSat = function(value) { - jspb.Message.setField(this, 20, value); + jspb.Message.setProto3IntField(this, 20, value); }; @@ -8425,7 +8426,7 @@ proto.lnrpc.Channel.prototype.getRemoteChanReserveSat = function() { /** @param {number} value */ proto.lnrpc.Channel.prototype.setRemoteChanReserveSat = function(value) { - jspb.Message.setField(this, 21, value); + jspb.Message.setProto3IntField(this, 21, value); }; @@ -8605,7 +8606,7 @@ proto.lnrpc.ListChannelsRequest.prototype.getActiveOnly = function() { /** @param {boolean} value */ proto.lnrpc.ListChannelsRequest.prototype.setActiveOnly = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -8622,7 +8623,7 @@ proto.lnrpc.ListChannelsRequest.prototype.getInactiveOnly = function() { /** @param {boolean} value */ proto.lnrpc.ListChannelsRequest.prototype.setInactiveOnly = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -8639,7 +8640,7 @@ proto.lnrpc.ListChannelsRequest.prototype.getPublicOnly = function() { /** @param {boolean} value */ proto.lnrpc.ListChannelsRequest.prototype.setPublicOnly = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BooleanField(this, 3, value); }; @@ -8656,7 +8657,7 @@ proto.lnrpc.ListChannelsRequest.prototype.getPrivateOnly = function() { /** @param {boolean} value */ proto.lnrpc.ListChannelsRequest.prototype.setPrivateOnly = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BooleanField(this, 4, value); }; @@ -8799,15 +8800,15 @@ proto.lnrpc.ListChannelsResponse.serializeBinaryToWriter = function(message, wri /** * repeated Channel channels = 11; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ListChannelsResponse.prototype.getChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Channel, 11)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ListChannelsResponse.prototype.setChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 11, value); }; @@ -9086,7 +9087,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getChannelPoint = function() { /** @param {string} value */ proto.lnrpc.ChannelCloseSummary.prototype.setChannelPoint = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -9101,7 +9102,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.ChannelCloseSummary.prototype.setChanId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringIntField(this, 2, value); }; @@ -9116,7 +9117,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getChainHash = function() { /** @param {string} value */ proto.lnrpc.ChannelCloseSummary.prototype.setChainHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -9131,7 +9132,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getClosingTxHash = function() { /** @param {string} value */ proto.lnrpc.ChannelCloseSummary.prototype.setClosingTxHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -9146,7 +9147,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getRemotePubkey = function() { /** @param {string} value */ proto.lnrpc.ChannelCloseSummary.prototype.setRemotePubkey = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -9161,7 +9162,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getCapacity = function() { /** @param {number} value */ proto.lnrpc.ChannelCloseSummary.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -9176,7 +9177,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getCloseHeight = function() { /** @param {number} value */ proto.lnrpc.ChannelCloseSummary.prototype.setCloseHeight = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -9191,7 +9192,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getSettledBalance = function() { /** @param {number} value */ proto.lnrpc.ChannelCloseSummary.prototype.setSettledBalance = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -9206,7 +9207,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getTimeLockedBalance = function() { /** @param {number} value */ proto.lnrpc.ChannelCloseSummary.prototype.setTimeLockedBalance = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -9221,7 +9222,7 @@ proto.lnrpc.ChannelCloseSummary.prototype.getCloseType = function() { /** @param {!proto.lnrpc.ChannelCloseSummary.ClosureType} value */ proto.lnrpc.ChannelCloseSummary.prototype.setCloseType = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3EnumField(this, 10, value); }; @@ -9425,7 +9426,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getCooperative = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setCooperative = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -9442,7 +9443,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getLocalForce = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setLocalForce = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -9459,7 +9460,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getRemoteForce = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setRemoteForce = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BooleanField(this, 3, value); }; @@ -9476,7 +9477,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getBreach = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setBreach = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BooleanField(this, 4, value); }; @@ -9493,7 +9494,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getFundingCanceled = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setFundingCanceled = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3BooleanField(this, 5, value); }; @@ -9510,7 +9511,7 @@ proto.lnrpc.ClosedChannelsRequest.prototype.getAbandoned = function() { /** @param {boolean} value */ proto.lnrpc.ClosedChannelsRequest.prototype.setAbandoned = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3BooleanField(this, 6, value); }; @@ -9653,15 +9654,15 @@ proto.lnrpc.ClosedChannelsResponse.serializeBinaryToWriter = function(message, w /** * repeated ChannelCloseSummary channels = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ClosedChannelsResponse.prototype.getChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelCloseSummary, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ClosedChannelsResponse.prototype.setChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -9925,7 +9926,7 @@ proto.lnrpc.Peer.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.Peer.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -9940,7 +9941,7 @@ proto.lnrpc.Peer.prototype.getAddress = function() { /** @param {string} value */ proto.lnrpc.Peer.prototype.setAddress = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -9955,7 +9956,7 @@ proto.lnrpc.Peer.prototype.getBytesSent = function() { /** @param {number} value */ proto.lnrpc.Peer.prototype.setBytesSent = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -9970,7 +9971,7 @@ proto.lnrpc.Peer.prototype.getBytesRecv = function() { /** @param {number} value */ proto.lnrpc.Peer.prototype.setBytesRecv = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -9985,7 +9986,7 @@ proto.lnrpc.Peer.prototype.getSatSent = function() { /** @param {number} value */ proto.lnrpc.Peer.prototype.setSatSent = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -10000,7 +10001,7 @@ proto.lnrpc.Peer.prototype.getSatRecv = function() { /** @param {number} value */ proto.lnrpc.Peer.prototype.setSatRecv = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -10017,7 +10018,7 @@ proto.lnrpc.Peer.prototype.getInbound = function() { /** @param {boolean} value */ proto.lnrpc.Peer.prototype.setInbound = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3BooleanField(this, 8, value); }; @@ -10032,7 +10033,7 @@ proto.lnrpc.Peer.prototype.getPingTime = function() { /** @param {number} value */ proto.lnrpc.Peer.prototype.setPingTime = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -10047,7 +10048,7 @@ proto.lnrpc.Peer.prototype.getSyncType = function() { /** @param {!proto.lnrpc.Peer.SyncType} value */ proto.lnrpc.Peer.prototype.setSyncType = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3EnumField(this, 10, value); }; @@ -10306,15 +10307,15 @@ proto.lnrpc.ListPeersResponse.serializeBinaryToWriter = function(message, writer /** * repeated Peer peers = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ListPeersResponse.prototype.getPeersList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Peer, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ListPeersResponse.prototype.setPeersList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -10767,7 +10768,7 @@ proto.lnrpc.GetInfoResponse.prototype.getIdentityPubkey = function() { /** @param {string} value */ proto.lnrpc.GetInfoResponse.prototype.setIdentityPubkey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -10782,7 +10783,7 @@ proto.lnrpc.GetInfoResponse.prototype.getAlias = function() { /** @param {string} value */ proto.lnrpc.GetInfoResponse.prototype.setAlias = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -10797,7 +10798,7 @@ proto.lnrpc.GetInfoResponse.prototype.getNumPendingChannels = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setNumPendingChannels = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -10812,7 +10813,7 @@ proto.lnrpc.GetInfoResponse.prototype.getNumActiveChannels = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setNumActiveChannels = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -10827,7 +10828,7 @@ proto.lnrpc.GetInfoResponse.prototype.getNumPeers = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setNumPeers = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -10842,7 +10843,7 @@ proto.lnrpc.GetInfoResponse.prototype.getBlockHeight = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setBlockHeight = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -10857,7 +10858,7 @@ proto.lnrpc.GetInfoResponse.prototype.getBlockHash = function() { /** @param {string} value */ proto.lnrpc.GetInfoResponse.prototype.setBlockHash = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3StringField(this, 8, value); }; @@ -10874,7 +10875,7 @@ proto.lnrpc.GetInfoResponse.prototype.getSyncedToChain = function() { /** @param {boolean} value */ proto.lnrpc.GetInfoResponse.prototype.setSyncedToChain = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3BooleanField(this, 9, value); }; @@ -10891,27 +10892,27 @@ proto.lnrpc.GetInfoResponse.prototype.getTestnet = function() { /** @param {boolean} value */ proto.lnrpc.GetInfoResponse.prototype.setTestnet = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3BooleanField(this, 10, value); }; /** * repeated string uris = 12; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GetInfoResponse.prototype.getUrisList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 12)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 12)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GetInfoResponse.prototype.setUrisList = function(value) { jspb.Message.setField(this, 12, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.GetInfoResponse.prototype.addUris = function(value, opt_index) { @@ -10935,7 +10936,7 @@ proto.lnrpc.GetInfoResponse.prototype.getBestHeaderTimestamp = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setBestHeaderTimestamp = function(value) { - jspb.Message.setField(this, 13, value); + jspb.Message.setProto3IntField(this, 13, value); }; @@ -10950,7 +10951,7 @@ proto.lnrpc.GetInfoResponse.prototype.getVersion = function() { /** @param {string} value */ proto.lnrpc.GetInfoResponse.prototype.setVersion = function(value) { - jspb.Message.setField(this, 14, value); + jspb.Message.setProto3StringField(this, 14, value); }; @@ -10965,21 +10966,21 @@ proto.lnrpc.GetInfoResponse.prototype.getNumInactiveChannels = function() { /** @param {number} value */ proto.lnrpc.GetInfoResponse.prototype.setNumInactiveChannels = function(value) { - jspb.Message.setField(this, 15, value); + jspb.Message.setProto3IntField(this, 15, value); }; /** * repeated Chain chains = 16; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GetInfoResponse.prototype.getChainsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Chain, 16)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GetInfoResponse.prototype.setChainsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 16, value); }; @@ -11011,7 +11012,7 @@ proto.lnrpc.GetInfoResponse.prototype.getColor = function() { /** @param {string} value */ proto.lnrpc.GetInfoResponse.prototype.setColor = function(value) { - jspb.Message.setField(this, 17, value); + jspb.Message.setProto3StringField(this, 17, value); }; @@ -11165,7 +11166,7 @@ proto.lnrpc.Chain.prototype.getChain = function() { /** @param {string} value */ proto.lnrpc.Chain.prototype.setChain = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -11180,7 +11181,7 @@ proto.lnrpc.Chain.prototype.getNetwork = function() { /** @param {string} value */ proto.lnrpc.Chain.prototype.setNetwork = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -11370,7 +11371,7 @@ proto.lnrpc.ConfirmationUpdate.prototype.getBlockSha_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.ConfirmationUpdate.prototype.setBlockSha = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -11385,7 +11386,7 @@ proto.lnrpc.ConfirmationUpdate.prototype.getBlockHeight = function() { /** @param {number} value */ proto.lnrpc.ConfirmationUpdate.prototype.setBlockHeight = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -11400,7 +11401,7 @@ proto.lnrpc.ConfirmationUpdate.prototype.getNumConfsLeft = function() { /** @param {number} value */ proto.lnrpc.ConfirmationUpdate.prototype.setNumConfsLeft = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -11556,7 +11557,7 @@ proto.lnrpc.ChannelOpenUpdate.prototype.clearChannelPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelOpenUpdate.prototype.hasChannelPoint = function() { return jspb.Message.getField(this, 1) != null; @@ -11737,7 +11738,7 @@ proto.lnrpc.ChannelCloseUpdate.prototype.getClosingTxid_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.ChannelCloseUpdate.prototype.setClosingTxid = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -11754,7 +11755,7 @@ proto.lnrpc.ChannelCloseUpdate.prototype.getSuccess = function() { /** @param {boolean} value */ proto.lnrpc.ChannelCloseUpdate.prototype.setSuccess = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -11946,7 +11947,7 @@ proto.lnrpc.CloseChannelRequest.prototype.clearChannelPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.CloseChannelRequest.prototype.hasChannelPoint = function() { return jspb.Message.getField(this, 1) != null; @@ -11966,7 +11967,7 @@ proto.lnrpc.CloseChannelRequest.prototype.getForce = function() { /** @param {boolean} value */ proto.lnrpc.CloseChannelRequest.prototype.setForce = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -11981,7 +11982,7 @@ proto.lnrpc.CloseChannelRequest.prototype.getTargetConf = function() { /** @param {number} value */ proto.lnrpc.CloseChannelRequest.prototype.setTargetConf = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -11996,7 +11997,7 @@ proto.lnrpc.CloseChannelRequest.prototype.getSatPerByte = function() { /** @param {number} value */ proto.lnrpc.CloseChannelRequest.prototype.setSatPerByte = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -12192,7 +12193,7 @@ proto.lnrpc.CloseStatusUpdate.prototype.clearClosePending = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.CloseStatusUpdate.prototype.hasClosePending = function() { return jspb.Message.getField(this, 1) != null; @@ -12222,7 +12223,7 @@ proto.lnrpc.CloseStatusUpdate.prototype.clearChanClose = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.CloseStatusUpdate.prototype.hasChanClose = function() { return jspb.Message.getField(this, 3) != null; @@ -12403,7 +12404,7 @@ proto.lnrpc.PendingUpdate.prototype.getTxid_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.PendingUpdate.prototype.setTxid = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -12418,7 +12419,7 @@ proto.lnrpc.PendingUpdate.prototype.getOutputIndex = function() { /** @param {number} value */ proto.lnrpc.PendingUpdate.prototype.setOutputIndex = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -12704,7 +12705,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getNodePubkey_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.OpenChannelRequest.prototype.setNodePubkey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -12719,7 +12720,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getNodePubkeyString = function() { /** @param {string} value */ proto.lnrpc.OpenChannelRequest.prototype.setNodePubkeyString = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -12734,7 +12735,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getLocalFundingAmount = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setLocalFundingAmount = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -12749,7 +12750,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getPushSat = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setPushSat = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -12764,7 +12765,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getTargetConf = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setTargetConf = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -12779,7 +12780,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getSatPerByte = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setSatPerByte = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -12796,7 +12797,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getPrivate = function() { /** @param {boolean} value */ proto.lnrpc.OpenChannelRequest.prototype.setPrivate = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3BooleanField(this, 8, value); }; @@ -12811,7 +12812,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getMinHtlcMsat = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setMinHtlcMsat = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -12826,7 +12827,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getRemoteCsvDelay = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setRemoteCsvDelay = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3IntField(this, 10, value); }; @@ -12841,7 +12842,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getMinConfs = function() { /** @param {number} value */ proto.lnrpc.OpenChannelRequest.prototype.setMinConfs = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3IntField(this, 11, value); }; @@ -12858,7 +12859,7 @@ proto.lnrpc.OpenChannelRequest.prototype.getSpendUnconfirmed = function() { /** @param {boolean} value */ proto.lnrpc.OpenChannelRequest.prototype.setSpendUnconfirmed = function(value) { - jspb.Message.setField(this, 12, value); + jspb.Message.setProto3BooleanField(this, 12, value); }; @@ -13054,7 +13055,7 @@ proto.lnrpc.OpenStatusUpdate.prototype.clearChanPending = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.OpenStatusUpdate.prototype.hasChanPending = function() { return jspb.Message.getField(this, 1) != null; @@ -13084,7 +13085,7 @@ proto.lnrpc.OpenStatusUpdate.prototype.clearChanOpen = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.OpenStatusUpdate.prototype.hasChanOpen = function() { return jspb.Message.getField(this, 3) != null; @@ -13291,7 +13292,7 @@ proto.lnrpc.PendingHTLC.prototype.getIncoming = function() { /** @param {boolean} value */ proto.lnrpc.PendingHTLC.prototype.setIncoming = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -13306,7 +13307,7 @@ proto.lnrpc.PendingHTLC.prototype.getAmount = function() { /** @param {number} value */ proto.lnrpc.PendingHTLC.prototype.setAmount = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -13321,7 +13322,7 @@ proto.lnrpc.PendingHTLC.prototype.getOutpoint = function() { /** @param {string} value */ proto.lnrpc.PendingHTLC.prototype.setOutpoint = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -13336,7 +13337,7 @@ proto.lnrpc.PendingHTLC.prototype.getMaturityHeight = function() { /** @param {number} value */ proto.lnrpc.PendingHTLC.prototype.setMaturityHeight = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -13351,7 +13352,7 @@ proto.lnrpc.PendingHTLC.prototype.getBlocksTilMaturity = function() { /** @param {number} value */ proto.lnrpc.PendingHTLC.prototype.setBlocksTilMaturity = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -13366,7 +13367,7 @@ proto.lnrpc.PendingHTLC.prototype.getStage = function() { /** @param {number} value */ proto.lnrpc.PendingHTLC.prototype.setStage = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -13890,7 +13891,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getRemoteNodePub = /** @param {string} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setRemoteNodePub = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -13905,7 +13906,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getChannelPoint = f /** @param {string} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setChannelPoint = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -13920,7 +13921,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getCapacity = funct /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -13935,7 +13936,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getLocalBalance = f /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setLocalBalance = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -13950,7 +13951,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getRemoteBalance = /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setRemoteBalance = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -13965,7 +13966,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getLocalChanReserve /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setLocalChanReserveSat = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -13980,7 +13981,7 @@ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.getRemoteChanReserv /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingChannel.prototype.setRemoteChanReserveSat = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -14184,7 +14185,7 @@ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.clearChannel = /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.hasChannel = function() { return jspb.Message.getField(this, 1) != null; @@ -14202,7 +14203,7 @@ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.getConfirmation /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.setConfirmationHeight = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -14217,7 +14218,7 @@ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.getCommitFee = /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.setCommitFee = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -14232,7 +14233,7 @@ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.getCommitWeight /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.setCommitWeight = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -14247,7 +14248,7 @@ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.getFeePerKw = f /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.PendingOpenChannel.prototype.setFeePerKw = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -14415,7 +14416,7 @@ proto.lnrpc.PendingChannelsResponse.WaitingCloseChannel.prototype.clearChannel = /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PendingChannelsResponse.WaitingCloseChannel.prototype.hasChannel = function() { return jspb.Message.getField(this, 1) != null; @@ -14433,7 +14434,7 @@ proto.lnrpc.PendingChannelsResponse.WaitingCloseChannel.prototype.getLimboBalanc /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.WaitingCloseChannel.prototype.setLimboBalance = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -14601,7 +14602,7 @@ proto.lnrpc.PendingChannelsResponse.ClosedChannel.prototype.clearChannel = funct /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PendingChannelsResponse.ClosedChannel.prototype.hasChannel = function() { return jspb.Message.getField(this, 1) != null; @@ -14619,7 +14620,7 @@ proto.lnrpc.PendingChannelsResponse.ClosedChannel.prototype.getClosingTxid = fun /** @param {string} value */ proto.lnrpc.PendingChannelsResponse.ClosedChannel.prototype.setClosingTxid = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -14857,7 +14858,7 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.clearChannel = /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.hasChannel = function() { return jspb.Message.getField(this, 1) != null; @@ -14875,7 +14876,7 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getClosingTxid /** @param {string} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setClosingTxid = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -14890,7 +14891,7 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getLimboBalance /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setLimboBalance = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -14905,7 +14906,7 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getMaturityHeig /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setMaturityHeight = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -14920,7 +14921,7 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getBlocksTilMat /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setBlocksTilMaturity = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -14935,21 +14936,21 @@ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getRecoveredBal /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setRecoveredBalance = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; /** * repeated PendingHTLC pending_htlcs = 8; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.getPendingHtlcsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.PendingHTLC, 8)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PendingChannelsResponse.ForceClosedChannel.prototype.setPendingHtlcsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 8, value); }; @@ -14981,21 +14982,21 @@ proto.lnrpc.PendingChannelsResponse.prototype.getTotalLimboBalance = function() /** @param {number} value */ proto.lnrpc.PendingChannelsResponse.prototype.setTotalLimboBalance = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; /** * repeated PendingOpenChannel pending_open_channels = 2; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PendingChannelsResponse.prototype.getPendingOpenChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.PendingChannelsResponse.PendingOpenChannel, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PendingChannelsResponse.prototype.setPendingOpenChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -15018,15 +15019,15 @@ proto.lnrpc.PendingChannelsResponse.prototype.clearPendingOpenChannelsList = fun /** * repeated ClosedChannel pending_closing_channels = 3; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PendingChannelsResponse.prototype.getPendingClosingChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.PendingChannelsResponse.ClosedChannel, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PendingChannelsResponse.prototype.setPendingClosingChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -15049,15 +15050,15 @@ proto.lnrpc.PendingChannelsResponse.prototype.clearPendingClosingChannelsList = /** * repeated ForceClosedChannel pending_force_closing_channels = 4; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PendingChannelsResponse.prototype.getPendingForceClosingChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.PendingChannelsResponse.ForceClosedChannel, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PendingChannelsResponse.prototype.setPendingForceClosingChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -15080,15 +15081,15 @@ proto.lnrpc.PendingChannelsResponse.prototype.clearPendingForceClosingChannelsLi /** * repeated WaitingCloseChannel waiting_close_channels = 5; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PendingChannelsResponse.prototype.getWaitingCloseChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.PendingChannelsResponse.WaitingCloseChannel, 5)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PendingChannelsResponse.prototype.setWaitingCloseChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 5, value); }; @@ -15469,7 +15470,7 @@ proto.lnrpc.ChannelEventUpdate.prototype.clearOpenChannel = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEventUpdate.prototype.hasOpenChannel = function() { return jspb.Message.getField(this, 1) != null; @@ -15499,7 +15500,7 @@ proto.lnrpc.ChannelEventUpdate.prototype.clearClosedChannel = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEventUpdate.prototype.hasClosedChannel = function() { return jspb.Message.getField(this, 2) != null; @@ -15529,7 +15530,7 @@ proto.lnrpc.ChannelEventUpdate.prototype.clearActiveChannel = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEventUpdate.prototype.hasActiveChannel = function() { return jspb.Message.getField(this, 3) != null; @@ -15559,7 +15560,7 @@ proto.lnrpc.ChannelEventUpdate.prototype.clearInactiveChannel = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEventUpdate.prototype.hasInactiveChannel = function() { return jspb.Message.getField(this, 4) != null; @@ -15577,7 +15578,7 @@ proto.lnrpc.ChannelEventUpdate.prototype.getType = function() { /** @param {!proto.lnrpc.ChannelEventUpdate.UpdateType} value */ proto.lnrpc.ChannelEventUpdate.prototype.setType = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3EnumField(this, 5, value); }; @@ -15859,7 +15860,7 @@ proto.lnrpc.WalletBalanceResponse.prototype.getTotalBalance = function() { /** @param {number} value */ proto.lnrpc.WalletBalanceResponse.prototype.setTotalBalance = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -15874,7 +15875,7 @@ proto.lnrpc.WalletBalanceResponse.prototype.getConfirmedBalance = function() { /** @param {number} value */ proto.lnrpc.WalletBalanceResponse.prototype.setConfirmedBalance = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -15889,7 +15890,7 @@ proto.lnrpc.WalletBalanceResponse.prototype.getUnconfirmedBalance = function() { /** @param {number} value */ proto.lnrpc.WalletBalanceResponse.prototype.setUnconfirmedBalance = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -16159,7 +16160,7 @@ proto.lnrpc.ChannelBalanceResponse.prototype.getBalance = function() { /** @param {number} value */ proto.lnrpc.ChannelBalanceResponse.prototype.setBalance = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -16174,7 +16175,7 @@ proto.lnrpc.ChannelBalanceResponse.prototype.getPendingOpenBalance = function() /** @param {number} value */ proto.lnrpc.ChannelBalanceResponse.prototype.setPendingOpenBalance = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -16412,7 +16413,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.QueryRoutesRequest.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -16427,7 +16428,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.getAmt = function() { /** @param {number} value */ proto.lnrpc.QueryRoutesRequest.prototype.setAmt = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -16442,7 +16443,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.getFinalCltvDelta = function() { /** @param {number} value */ proto.lnrpc.QueryRoutesRequest.prototype.setFinalCltvDelta = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -16469,7 +16470,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.clearFeeLimit = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.QueryRoutesRequest.prototype.hasFeeLimit = function() { return jspb.Message.getField(this, 5) != null; @@ -16488,10 +16489,10 @@ proto.lnrpc.QueryRoutesRequest.prototype.getIgnoredNodesList = function() { /** * repeated bytes ignored_nodes = 6; * This is a type-conversion wrapper around `getIgnoredNodesList()` - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.QueryRoutesRequest.prototype.getIgnoredNodesList_asB64 = function() { - return /** @type {!Array.} */ (jspb.Message.bytesListAsB64( + return /** @type {!Array} */ (jspb.Message.bytesListAsB64( this.getIgnoredNodesList())); }; @@ -16501,10 +16502,10 @@ proto.lnrpc.QueryRoutesRequest.prototype.getIgnoredNodesList_asB64 = function() * Note that Uint8Array is not supported on all browsers. * @see http://caniuse.com/Uint8Array * This is a type-conversion wrapper around `getIgnoredNodesList()` - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.QueryRoutesRequest.prototype.getIgnoredNodesList_asU8 = function() { - return /** @type {!Array.} */ (jspb.Message.bytesListAsU8( + return /** @type {!Array} */ (jspb.Message.bytesListAsU8( this.getIgnoredNodesList())); }; @@ -16531,15 +16532,15 @@ proto.lnrpc.QueryRoutesRequest.prototype.clearIgnoredNodesList = function() { /** * repeated EdgeLocator ignored_edges = 7; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.QueryRoutesRequest.prototype.getIgnoredEdgesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.EdgeLocator, 7)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.QueryRoutesRequest.prototype.setIgnoredEdgesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 7, value); }; @@ -16571,7 +16572,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.getSourcePubKey = function() { /** @param {string} value */ proto.lnrpc.QueryRoutesRequest.prototype.setSourcePubKey = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3StringField(this, 8, value); }; @@ -16588,7 +16589,7 @@ proto.lnrpc.QueryRoutesRequest.prototype.getUseMissionControl = function() { /** @param {boolean} value */ proto.lnrpc.QueryRoutesRequest.prototype.setUseMissionControl = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3BooleanField(this, 9, value); }; @@ -16742,7 +16743,7 @@ proto.lnrpc.EdgeLocator.prototype.getChannelId = function() { /** @param {number} value */ proto.lnrpc.EdgeLocator.prototype.setChannelId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -16759,7 +16760,7 @@ proto.lnrpc.EdgeLocator.prototype.getDirectionReverse = function() { /** @param {boolean} value */ proto.lnrpc.EdgeLocator.prototype.setDirectionReverse = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -16902,15 +16903,15 @@ proto.lnrpc.QueryRoutesResponse.serializeBinaryToWriter = function(message, writ /** * repeated Route routes = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.QueryRoutesResponse.prototype.getRoutesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Route, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.QueryRoutesResponse.prototype.setRoutesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -17153,7 +17154,7 @@ proto.lnrpc.Hop.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.Hop.prototype.setChanId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringIntField(this, 1, value); }; @@ -17168,7 +17169,7 @@ proto.lnrpc.Hop.prototype.getChanCapacity = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setChanCapacity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -17183,7 +17184,7 @@ proto.lnrpc.Hop.prototype.getAmtToForward = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setAmtToForward = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -17198,7 +17199,7 @@ proto.lnrpc.Hop.prototype.getFee = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setFee = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -17213,7 +17214,7 @@ proto.lnrpc.Hop.prototype.getExpiry = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setExpiry = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -17228,7 +17229,7 @@ proto.lnrpc.Hop.prototype.getAmtToForwardMsat = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setAmtToForwardMsat = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -17243,7 +17244,7 @@ proto.lnrpc.Hop.prototype.getFeeMsat = function() { /** @param {number} value */ proto.lnrpc.Hop.prototype.setFeeMsat = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -17258,7 +17259,7 @@ proto.lnrpc.Hop.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.Hop.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3StringField(this, 8, value); }; @@ -17470,7 +17471,7 @@ proto.lnrpc.Route.prototype.getTotalTimeLock = function() { /** @param {number} value */ proto.lnrpc.Route.prototype.setTotalTimeLock = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -17485,7 +17486,7 @@ proto.lnrpc.Route.prototype.getTotalFees = function() { /** @param {number} value */ proto.lnrpc.Route.prototype.setTotalFees = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -17500,21 +17501,21 @@ proto.lnrpc.Route.prototype.getTotalAmt = function() { /** @param {number} value */ proto.lnrpc.Route.prototype.setTotalAmt = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; /** * repeated Hop hops = 4; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.Route.prototype.getHopsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Hop, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.Route.prototype.setHopsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -17546,7 +17547,7 @@ proto.lnrpc.Route.prototype.getTotalFeesMsat = function() { /** @param {number} value */ proto.lnrpc.Route.prototype.setTotalFeesMsat = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -17561,7 +17562,7 @@ proto.lnrpc.Route.prototype.getTotalAmtMsat = function() { /** @param {number} value */ proto.lnrpc.Route.prototype.setTotalAmtMsat = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -17715,7 +17716,7 @@ proto.lnrpc.NodeInfoRequest.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.NodeInfoRequest.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -17732,7 +17733,7 @@ proto.lnrpc.NodeInfoRequest.prototype.getIncludeChannels = function() { /** @param {boolean} value */ proto.lnrpc.NodeInfoRequest.prototype.setIncludeChannels = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -17934,7 +17935,7 @@ proto.lnrpc.NodeInfo.prototype.clearNode = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.NodeInfo.prototype.hasNode = function() { return jspb.Message.getField(this, 1) != null; @@ -17952,7 +17953,7 @@ proto.lnrpc.NodeInfo.prototype.getNumChannels = function() { /** @param {number} value */ proto.lnrpc.NodeInfo.prototype.setNumChannels = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -17967,21 +17968,21 @@ proto.lnrpc.NodeInfo.prototype.getTotalCapacity = function() { /** @param {number} value */ proto.lnrpc.NodeInfo.prototype.setTotalCapacity = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; /** * repeated ChannelEdge channels = 4; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.NodeInfo.prototype.getChannelsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelEdge, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.NodeInfo.prototype.setChannelsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -18198,7 +18199,7 @@ proto.lnrpc.LightningNode.prototype.getLastUpdate = function() { /** @param {number} value */ proto.lnrpc.LightningNode.prototype.setLastUpdate = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -18213,7 +18214,7 @@ proto.lnrpc.LightningNode.prototype.getPubKey = function() { /** @param {string} value */ proto.lnrpc.LightningNode.prototype.setPubKey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -18228,21 +18229,21 @@ proto.lnrpc.LightningNode.prototype.getAlias = function() { /** @param {string} value */ proto.lnrpc.LightningNode.prototype.setAlias = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; /** * repeated NodeAddress addresses = 4; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.LightningNode.prototype.getAddressesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.NodeAddress, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.LightningNode.prototype.setAddressesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -18274,7 +18275,7 @@ proto.lnrpc.LightningNode.prototype.getColor = function() { /** @param {string} value */ proto.lnrpc.LightningNode.prototype.setColor = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -18428,7 +18429,7 @@ proto.lnrpc.NodeAddress.prototype.getNetwork = function() { /** @param {string} value */ proto.lnrpc.NodeAddress.prototype.setNetwork = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -18443,7 +18444,7 @@ proto.lnrpc.NodeAddress.prototype.getAddr = function() { /** @param {string} value */ proto.lnrpc.NodeAddress.prototype.setAddr = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -18657,7 +18658,7 @@ proto.lnrpc.RoutingPolicy.prototype.getTimeLockDelta = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setTimeLockDelta = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -18672,7 +18673,7 @@ proto.lnrpc.RoutingPolicy.prototype.getMinHtlc = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setMinHtlc = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -18687,7 +18688,7 @@ proto.lnrpc.RoutingPolicy.prototype.getFeeBaseMsat = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setFeeBaseMsat = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -18702,7 +18703,7 @@ proto.lnrpc.RoutingPolicy.prototype.getFeeRateMilliMsat = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setFeeRateMilliMsat = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -18719,7 +18720,7 @@ proto.lnrpc.RoutingPolicy.prototype.getDisabled = function() { /** @param {boolean} value */ proto.lnrpc.RoutingPolicy.prototype.setDisabled = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3BooleanField(this, 5, value); }; @@ -18734,7 +18735,7 @@ proto.lnrpc.RoutingPolicy.prototype.getMaxHtlcMsat = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setMaxHtlcMsat = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -18749,7 +18750,7 @@ proto.lnrpc.RoutingPolicy.prototype.getLastUpdate = function() { /** @param {number} value */ proto.lnrpc.RoutingPolicy.prototype.setLastUpdate = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -18979,7 +18980,7 @@ proto.lnrpc.ChannelEdge.prototype.getChannelId = function() { /** @param {number} value */ proto.lnrpc.ChannelEdge.prototype.setChannelId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -18994,7 +18995,7 @@ proto.lnrpc.ChannelEdge.prototype.getChanPoint = function() { /** @param {string} value */ proto.lnrpc.ChannelEdge.prototype.setChanPoint = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -19009,7 +19010,7 @@ proto.lnrpc.ChannelEdge.prototype.getLastUpdate = function() { /** @param {number} value */ proto.lnrpc.ChannelEdge.prototype.setLastUpdate = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -19024,7 +19025,7 @@ proto.lnrpc.ChannelEdge.prototype.getNode1Pub = function() { /** @param {string} value */ proto.lnrpc.ChannelEdge.prototype.setNode1Pub = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -19039,7 +19040,7 @@ proto.lnrpc.ChannelEdge.prototype.getNode2Pub = function() { /** @param {string} value */ proto.lnrpc.ChannelEdge.prototype.setNode2Pub = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -19054,7 +19055,7 @@ proto.lnrpc.ChannelEdge.prototype.getCapacity = function() { /** @param {number} value */ proto.lnrpc.ChannelEdge.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -19081,7 +19082,7 @@ proto.lnrpc.ChannelEdge.prototype.clearNode1Policy = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEdge.prototype.hasNode1Policy = function() { return jspb.Message.getField(this, 7) != null; @@ -19111,7 +19112,7 @@ proto.lnrpc.ChannelEdge.prototype.clearNode2Policy = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEdge.prototype.hasNode2Policy = function() { return jspb.Message.getField(this, 8) != null; @@ -19258,7 +19259,7 @@ proto.lnrpc.ChannelGraphRequest.prototype.getIncludeUnannounced = function() { /** @param {boolean} value */ proto.lnrpc.ChannelGraphRequest.prototype.setIncludeUnannounced = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -19416,15 +19417,15 @@ proto.lnrpc.ChannelGraph.serializeBinaryToWriter = function(message, writer) { /** * repeated LightningNode nodes = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ChannelGraph.prototype.getNodesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.LightningNode, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ChannelGraph.prototype.setNodesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -19447,15 +19448,15 @@ proto.lnrpc.ChannelGraph.prototype.clearNodesList = function() { /** * repeated ChannelEdge edges = 2; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ChannelGraph.prototype.getEdgesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelEdge, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ChannelGraph.prototype.setEdgesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -19614,7 +19615,7 @@ proto.lnrpc.ChanInfoRequest.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.ChanInfoRequest.prototype.setChanId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringIntField(this, 1, value); }; @@ -19992,7 +19993,7 @@ proto.lnrpc.NetworkInfo.prototype.getGraphDiameter = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setGraphDiameter = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -20007,7 +20008,7 @@ proto.lnrpc.NetworkInfo.prototype.getAvgOutDegree = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setAvgOutDegree = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3FloatField(this, 2, value); }; @@ -20022,7 +20023,7 @@ proto.lnrpc.NetworkInfo.prototype.getMaxOutDegree = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setMaxOutDegree = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -20037,7 +20038,7 @@ proto.lnrpc.NetworkInfo.prototype.getNumNodes = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setNumNodes = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -20052,7 +20053,7 @@ proto.lnrpc.NetworkInfo.prototype.getNumChannels = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setNumChannels = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -20067,7 +20068,7 @@ proto.lnrpc.NetworkInfo.prototype.getTotalNetworkCapacity = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setTotalNetworkCapacity = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -20082,7 +20083,7 @@ proto.lnrpc.NetworkInfo.prototype.getAvgChannelSize = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setAvgChannelSize = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3FloatField(this, 7, value); }; @@ -20097,7 +20098,7 @@ proto.lnrpc.NetworkInfo.prototype.getMinChannelSize = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setMinChannelSize = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -20112,7 +20113,7 @@ proto.lnrpc.NetworkInfo.prototype.getMaxChannelSize = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setMaxChannelSize = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -20127,7 +20128,7 @@ proto.lnrpc.NetworkInfo.prototype.getMedianChannelSizeSat = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setMedianChannelSizeSat = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3IntField(this, 10, value); }; @@ -20142,7 +20143,7 @@ proto.lnrpc.NetworkInfo.prototype.getNumZombieChans = function() { /** @param {number} value */ proto.lnrpc.NetworkInfo.prototype.setNumZombieChans = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3IntField(this, 11, value); }; @@ -20663,15 +20664,15 @@ proto.lnrpc.GraphTopologyUpdate.serializeBinaryToWriter = function(message, writ /** * repeated NodeUpdate node_updates = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GraphTopologyUpdate.prototype.getNodeUpdatesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.NodeUpdate, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GraphTopologyUpdate.prototype.setNodeUpdatesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -20694,15 +20695,15 @@ proto.lnrpc.GraphTopologyUpdate.prototype.clearNodeUpdatesList = function() { /** * repeated ChannelEdgeUpdate channel_updates = 2; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GraphTopologyUpdate.prototype.getChannelUpdatesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelEdgeUpdate, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GraphTopologyUpdate.prototype.setChannelUpdatesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -20725,15 +20726,15 @@ proto.lnrpc.GraphTopologyUpdate.prototype.clearChannelUpdatesList = function() { /** * repeated ClosedChannelUpdate closed_chans = 3; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.GraphTopologyUpdate.prototype.getClosedChansList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ClosedChannelUpdate, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.GraphTopologyUpdate.prototype.setClosedChansList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -20938,21 +20939,21 @@ proto.lnrpc.NodeUpdate.serializeBinaryToWriter = function(message, writer) { /** * repeated string addresses = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.NodeUpdate.prototype.getAddressesList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.NodeUpdate.prototype.setAddressesList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.NodeUpdate.prototype.addAddresses = function(value, opt_index) { @@ -20976,7 +20977,7 @@ proto.lnrpc.NodeUpdate.prototype.getIdentityKey = function() { /** @param {string} value */ proto.lnrpc.NodeUpdate.prototype.setIdentityKey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -21015,7 +21016,7 @@ proto.lnrpc.NodeUpdate.prototype.getGlobalFeatures_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.NodeUpdate.prototype.setGlobalFeatures = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BytesField(this, 3, value); }; @@ -21030,7 +21031,7 @@ proto.lnrpc.NodeUpdate.prototype.getAlias = function() { /** @param {string} value */ proto.lnrpc.NodeUpdate.prototype.setAlias = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -21045,7 +21046,7 @@ proto.lnrpc.NodeUpdate.prototype.getColor = function() { /** @param {string} value */ proto.lnrpc.NodeUpdate.prototype.setColor = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -21251,7 +21252,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.ChannelEdgeUpdate.prototype.setChanId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringIntField(this, 1, value); }; @@ -21278,7 +21279,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.clearChanPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEdgeUpdate.prototype.hasChanPoint = function() { return jspb.Message.getField(this, 2) != null; @@ -21296,7 +21297,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.getCapacity = function() { /** @param {number} value */ proto.lnrpc.ChannelEdgeUpdate.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -21323,7 +21324,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.clearRoutingPolicy = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelEdgeUpdate.prototype.hasRoutingPolicy = function() { return jspb.Message.getField(this, 4) != null; @@ -21341,7 +21342,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.getAdvertisingNode = function() { /** @param {string} value */ proto.lnrpc.ChannelEdgeUpdate.prototype.setAdvertisingNode = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -21356,7 +21357,7 @@ proto.lnrpc.ChannelEdgeUpdate.prototype.getConnectingNode = function() { /** @param {string} value */ proto.lnrpc.ChannelEdgeUpdate.prototype.setConnectingNode = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -21536,7 +21537,7 @@ proto.lnrpc.ClosedChannelUpdate.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.ClosedChannelUpdate.prototype.setChanId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringIntField(this, 1, value); }; @@ -21551,7 +21552,7 @@ proto.lnrpc.ClosedChannelUpdate.prototype.getCapacity = function() { /** @param {number} value */ proto.lnrpc.ClosedChannelUpdate.prototype.setCapacity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -21566,7 +21567,7 @@ proto.lnrpc.ClosedChannelUpdate.prototype.getClosedHeight = function() { /** @param {number} value */ proto.lnrpc.ClosedChannelUpdate.prototype.setClosedHeight = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -21593,7 +21594,7 @@ proto.lnrpc.ClosedChannelUpdate.prototype.clearChanPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ClosedChannelUpdate.prototype.hasChanPoint = function() { return jspb.Message.getField(this, 4) != null; @@ -21786,7 +21787,7 @@ proto.lnrpc.HopHint.prototype.getNodeId = function() { /** @param {string} value */ proto.lnrpc.HopHint.prototype.setNodeId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -21801,7 +21802,7 @@ proto.lnrpc.HopHint.prototype.getChanId = function() { /** @param {string} value */ proto.lnrpc.HopHint.prototype.setChanId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringIntField(this, 2, value); }; @@ -21816,7 +21817,7 @@ proto.lnrpc.HopHint.prototype.getFeeBaseMsat = function() { /** @param {number} value */ proto.lnrpc.HopHint.prototype.setFeeBaseMsat = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -21831,7 +21832,7 @@ proto.lnrpc.HopHint.prototype.getFeeProportionalMillionths = function() { /** @param {number} value */ proto.lnrpc.HopHint.prototype.setFeeProportionalMillionths = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -21846,7 +21847,7 @@ proto.lnrpc.HopHint.prototype.getCltvExpiryDelta = function() { /** @param {number} value */ proto.lnrpc.HopHint.prototype.setCltvExpiryDelta = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -21989,15 +21990,15 @@ proto.lnrpc.RouteHint.serializeBinaryToWriter = function(message, writer) { /** * repeated HopHint hop_hints = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.RouteHint.prototype.getHopHintsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.HopHint, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.RouteHint.prototype.setHopHintsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -22416,7 +22417,7 @@ proto.lnrpc.Invoice.prototype.getMemo = function() { /** @param {string} value */ proto.lnrpc.Invoice.prototype.setMemo = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -22455,7 +22456,7 @@ proto.lnrpc.Invoice.prototype.getReceipt_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.Invoice.prototype.setReceipt = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -22494,7 +22495,7 @@ proto.lnrpc.Invoice.prototype.getRPreimage_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.Invoice.prototype.setRPreimage = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BytesField(this, 3, value); }; @@ -22533,7 +22534,7 @@ proto.lnrpc.Invoice.prototype.getRHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.Invoice.prototype.setRHash = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BytesField(this, 4, value); }; @@ -22548,7 +22549,7 @@ proto.lnrpc.Invoice.prototype.getValue = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setValue = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -22565,7 +22566,7 @@ proto.lnrpc.Invoice.prototype.getSettled = function() { /** @param {boolean} value */ proto.lnrpc.Invoice.prototype.setSettled = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3BooleanField(this, 6, value); }; @@ -22580,7 +22581,7 @@ proto.lnrpc.Invoice.prototype.getCreationDate = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setCreationDate = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -22595,7 +22596,7 @@ proto.lnrpc.Invoice.prototype.getSettleDate = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setSettleDate = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -22610,7 +22611,7 @@ proto.lnrpc.Invoice.prototype.getPaymentRequest = function() { /** @param {string} value */ proto.lnrpc.Invoice.prototype.setPaymentRequest = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3StringField(this, 9, value); }; @@ -22649,7 +22650,7 @@ proto.lnrpc.Invoice.prototype.getDescriptionHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.Invoice.prototype.setDescriptionHash = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3BytesField(this, 10, value); }; @@ -22664,7 +22665,7 @@ proto.lnrpc.Invoice.prototype.getExpiry = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setExpiry = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3IntField(this, 11, value); }; @@ -22679,7 +22680,7 @@ proto.lnrpc.Invoice.prototype.getFallbackAddr = function() { /** @param {string} value */ proto.lnrpc.Invoice.prototype.setFallbackAddr = function(value) { - jspb.Message.setField(this, 12, value); + jspb.Message.setProto3StringField(this, 12, value); }; @@ -22694,21 +22695,21 @@ proto.lnrpc.Invoice.prototype.getCltvExpiry = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setCltvExpiry = function(value) { - jspb.Message.setField(this, 13, value); + jspb.Message.setProto3IntField(this, 13, value); }; /** * repeated RouteHint route_hints = 14; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.Invoice.prototype.getRouteHintsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.RouteHint, 14)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.Invoice.prototype.setRouteHintsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 14, value); }; @@ -22742,7 +22743,7 @@ proto.lnrpc.Invoice.prototype.getPrivate = function() { /** @param {boolean} value */ proto.lnrpc.Invoice.prototype.setPrivate = function(value) { - jspb.Message.setField(this, 15, value); + jspb.Message.setProto3BooleanField(this, 15, value); }; @@ -22757,7 +22758,7 @@ proto.lnrpc.Invoice.prototype.getAddIndex = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setAddIndex = function(value) { - jspb.Message.setField(this, 16, value); + jspb.Message.setProto3IntField(this, 16, value); }; @@ -22772,7 +22773,7 @@ proto.lnrpc.Invoice.prototype.getSettleIndex = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setSettleIndex = function(value) { - jspb.Message.setField(this, 17, value); + jspb.Message.setProto3IntField(this, 17, value); }; @@ -22787,7 +22788,7 @@ proto.lnrpc.Invoice.prototype.getAmtPaid = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setAmtPaid = function(value) { - jspb.Message.setField(this, 18, value); + jspb.Message.setProto3IntField(this, 18, value); }; @@ -22802,7 +22803,7 @@ proto.lnrpc.Invoice.prototype.getAmtPaidSat = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setAmtPaidSat = function(value) { - jspb.Message.setField(this, 19, value); + jspb.Message.setProto3IntField(this, 19, value); }; @@ -22817,7 +22818,7 @@ proto.lnrpc.Invoice.prototype.getAmtPaidMsat = function() { /** @param {number} value */ proto.lnrpc.Invoice.prototype.setAmtPaidMsat = function(value) { - jspb.Message.setField(this, 20, value); + jspb.Message.setProto3IntField(this, 20, value); }; @@ -22832,7 +22833,7 @@ proto.lnrpc.Invoice.prototype.getState = function() { /** @param {!proto.lnrpc.Invoice.InvoiceState} value */ proto.lnrpc.Invoice.prototype.setState = function(value) { - jspb.Message.setField(this, 21, value); + jspb.Message.setProto3EnumField(this, 21, value); }; @@ -23022,7 +23023,7 @@ proto.lnrpc.AddInvoiceResponse.prototype.getRHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.AddInvoiceResponse.prototype.setRHash = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BytesField(this, 1, value); }; @@ -23037,7 +23038,7 @@ proto.lnrpc.AddInvoiceResponse.prototype.getPaymentRequest = function() { /** @param {string} value */ proto.lnrpc.AddInvoiceResponse.prototype.setPaymentRequest = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -23052,7 +23053,7 @@ proto.lnrpc.AddInvoiceResponse.prototype.getAddIndex = function() { /** @param {number} value */ proto.lnrpc.AddInvoiceResponse.prototype.setAddIndex = function(value) { - jspb.Message.setField(this, 16, value); + jspb.Message.setProto3IntField(this, 16, value); }; @@ -23206,7 +23207,7 @@ proto.lnrpc.PaymentHash.prototype.getRHashStr = function() { /** @param {string} value */ proto.lnrpc.PaymentHash.prototype.setRHashStr = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -23245,7 +23246,7 @@ proto.lnrpc.PaymentHash.prototype.getRHash_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.PaymentHash.prototype.setRHash = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -23425,7 +23426,7 @@ proto.lnrpc.ListInvoiceRequest.prototype.getPendingOnly = function() { /** @param {boolean} value */ proto.lnrpc.ListInvoiceRequest.prototype.setPendingOnly = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -23440,7 +23441,7 @@ proto.lnrpc.ListInvoiceRequest.prototype.getIndexOffset = function() { /** @param {number} value */ proto.lnrpc.ListInvoiceRequest.prototype.setIndexOffset = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -23455,7 +23456,7 @@ proto.lnrpc.ListInvoiceRequest.prototype.getNumMaxInvoices = function() { /** @param {number} value */ proto.lnrpc.ListInvoiceRequest.prototype.setNumMaxInvoices = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -23472,7 +23473,7 @@ proto.lnrpc.ListInvoiceRequest.prototype.getReversed = function() { /** @param {boolean} value */ proto.lnrpc.ListInvoiceRequest.prototype.setReversed = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3BooleanField(this, 6, value); }; @@ -23639,15 +23640,15 @@ proto.lnrpc.ListInvoiceResponse.serializeBinaryToWriter = function(message, writ /** * repeated Invoice invoices = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ListInvoiceResponse.prototype.getInvoicesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Invoice, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ListInvoiceResponse.prototype.setInvoicesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -23679,7 +23680,7 @@ proto.lnrpc.ListInvoiceResponse.prototype.getLastIndexOffset = function() { /** @param {number} value */ proto.lnrpc.ListInvoiceResponse.prototype.setLastIndexOffset = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -23694,7 +23695,7 @@ proto.lnrpc.ListInvoiceResponse.prototype.getFirstIndexOffset = function() { /** @param {number} value */ proto.lnrpc.ListInvoiceResponse.prototype.setFirstIndexOffset = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -23848,7 +23849,7 @@ proto.lnrpc.InvoiceSubscription.prototype.getAddIndex = function() { /** @param {number} value */ proto.lnrpc.InvoiceSubscription.prototype.setAddIndex = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -23863,7 +23864,7 @@ proto.lnrpc.InvoiceSubscription.prototype.getSettleIndex = function() { /** @param {number} value */ proto.lnrpc.InvoiceSubscription.prototype.setSettleIndex = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -24154,7 +24155,7 @@ proto.lnrpc.Payment.prototype.getPaymentHash = function() { /** @param {string} value */ proto.lnrpc.Payment.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -24169,7 +24170,7 @@ proto.lnrpc.Payment.prototype.getValue = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setValue = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -24184,27 +24185,27 @@ proto.lnrpc.Payment.prototype.getCreationDate = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setCreationDate = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; /** * repeated string path = 4; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.Payment.prototype.getPathList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 4)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.Payment.prototype.setPathList = function(value) { jspb.Message.setField(this, 4, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.lnrpc.Payment.prototype.addPath = function(value, opt_index) { @@ -24228,7 +24229,7 @@ proto.lnrpc.Payment.prototype.getFee = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setFee = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -24243,7 +24244,7 @@ proto.lnrpc.Payment.prototype.getPaymentPreimage = function() { /** @param {string} value */ proto.lnrpc.Payment.prototype.setPaymentPreimage = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -24258,7 +24259,7 @@ proto.lnrpc.Payment.prototype.getValueSat = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setValueSat = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -24273,7 +24274,7 @@ proto.lnrpc.Payment.prototype.getValueMsat = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setValueMsat = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -24288,7 +24289,7 @@ proto.lnrpc.Payment.prototype.getPaymentRequest = function() { /** @param {string} value */ proto.lnrpc.Payment.prototype.setPaymentRequest = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3StringField(this, 9, value); }; @@ -24303,7 +24304,7 @@ proto.lnrpc.Payment.prototype.getStatus = function() { /** @param {!proto.lnrpc.Payment.PaymentStatus} value */ proto.lnrpc.Payment.prototype.setStatus = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3EnumField(this, 10, value); }; @@ -24318,7 +24319,7 @@ proto.lnrpc.Payment.prototype.getFeeSat = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setFeeSat = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3IntField(this, 11, value); }; @@ -24333,7 +24334,7 @@ proto.lnrpc.Payment.prototype.getFeeMsat = function() { /** @param {number} value */ proto.lnrpc.Payment.prototype.setFeeMsat = function(value) { - jspb.Message.setField(this, 12, value); + jspb.Message.setProto3IntField(this, 12, value); }; @@ -24477,7 +24478,7 @@ proto.lnrpc.ListPaymentsRequest.prototype.getIncludeIncomplete = function() { /** @param {boolean} value */ proto.lnrpc.ListPaymentsRequest.prototype.setIncludeIncomplete = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -24620,15 +24621,15 @@ proto.lnrpc.ListPaymentsResponse.serializeBinaryToWriter = function(message, wri /** * repeated Payment payments = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ListPaymentsResponse.prototype.getPaymentsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.Payment, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ListPaymentsResponse.prototype.setPaymentsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -25033,7 +25034,7 @@ proto.lnrpc.AbandonChannelRequest.prototype.clearChannelPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.AbandonChannelRequest.prototype.hasChannelPoint = function() { return jspb.Message.getField(this, 1) != null; @@ -25308,7 +25309,7 @@ proto.lnrpc.DebugLevelRequest.prototype.getShow = function() { /** @param {boolean} value */ proto.lnrpc.DebugLevelRequest.prototype.setShow = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -25323,7 +25324,7 @@ proto.lnrpc.DebugLevelRequest.prototype.getLevelSpec = function() { /** @param {string} value */ proto.lnrpc.DebugLevelRequest.prototype.setLevelSpec = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -25465,7 +25466,7 @@ proto.lnrpc.DebugLevelResponse.prototype.getSubSystems = function() { /** @param {string} value */ proto.lnrpc.DebugLevelResponse.prototype.setSubSystems = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -25607,7 +25608,7 @@ proto.lnrpc.PayReqString.prototype.getPayReq = function() { /** @param {string} value */ proto.lnrpc.PayReqString.prototype.setPayReq = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -25867,7 +25868,7 @@ proto.lnrpc.PayReq.prototype.getDestination = function() { /** @param {string} value */ proto.lnrpc.PayReq.prototype.setDestination = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -25882,7 +25883,7 @@ proto.lnrpc.PayReq.prototype.getPaymentHash = function() { /** @param {string} value */ proto.lnrpc.PayReq.prototype.setPaymentHash = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -25897,7 +25898,7 @@ proto.lnrpc.PayReq.prototype.getNumSatoshis = function() { /** @param {number} value */ proto.lnrpc.PayReq.prototype.setNumSatoshis = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -25912,7 +25913,7 @@ proto.lnrpc.PayReq.prototype.getTimestamp = function() { /** @param {number} value */ proto.lnrpc.PayReq.prototype.setTimestamp = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -25927,7 +25928,7 @@ proto.lnrpc.PayReq.prototype.getExpiry = function() { /** @param {number} value */ proto.lnrpc.PayReq.prototype.setExpiry = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -25942,7 +25943,7 @@ proto.lnrpc.PayReq.prototype.getDescription = function() { /** @param {string} value */ proto.lnrpc.PayReq.prototype.setDescription = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -25957,7 +25958,7 @@ proto.lnrpc.PayReq.prototype.getDescriptionHash = function() { /** @param {string} value */ proto.lnrpc.PayReq.prototype.setDescriptionHash = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3StringField(this, 7, value); }; @@ -25972,7 +25973,7 @@ proto.lnrpc.PayReq.prototype.getFallbackAddr = function() { /** @param {string} value */ proto.lnrpc.PayReq.prototype.setFallbackAddr = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3StringField(this, 8, value); }; @@ -25987,21 +25988,21 @@ proto.lnrpc.PayReq.prototype.getCltvExpiry = function() { /** @param {number} value */ proto.lnrpc.PayReq.prototype.setCltvExpiry = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; /** * repeated RouteHint route_hints = 10; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.PayReq.prototype.getRouteHintsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.RouteHint, 10)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.PayReq.prototype.setRouteHintsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 10, value); }; @@ -26312,7 +26313,7 @@ proto.lnrpc.ChannelFeeReport.prototype.getChanPoint = function() { /** @param {string} value */ proto.lnrpc.ChannelFeeReport.prototype.setChanPoint = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -26327,7 +26328,7 @@ proto.lnrpc.ChannelFeeReport.prototype.getBaseFeeMsat = function() { /** @param {number} value */ proto.lnrpc.ChannelFeeReport.prototype.setBaseFeeMsat = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -26342,7 +26343,7 @@ proto.lnrpc.ChannelFeeReport.prototype.getFeePerMil = function() { /** @param {number} value */ proto.lnrpc.ChannelFeeReport.prototype.setFeePerMil = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -26357,7 +26358,7 @@ proto.lnrpc.ChannelFeeReport.prototype.getFeeRate = function() { /** @param {number} value */ proto.lnrpc.ChannelFeeReport.prototype.setFeeRate = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3FloatField(this, 4, value); }; @@ -26536,15 +26537,15 @@ proto.lnrpc.FeeReportResponse.serializeBinaryToWriter = function(message, writer /** * repeated ChannelFeeReport channel_fees = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.FeeReportResponse.prototype.getChannelFeesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelFeeReport, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.FeeReportResponse.prototype.setChannelFeesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -26576,7 +26577,7 @@ proto.lnrpc.FeeReportResponse.prototype.getDayFeeSum = function() { /** @param {number} value */ proto.lnrpc.FeeReportResponse.prototype.setDayFeeSum = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -26591,7 +26592,7 @@ proto.lnrpc.FeeReportResponse.prototype.getWeekFeeSum = function() { /** @param {number} value */ proto.lnrpc.FeeReportResponse.prototype.setWeekFeeSum = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -26606,7 +26607,7 @@ proto.lnrpc.FeeReportResponse.prototype.getMonthFeeSum = function() { /** @param {number} value */ proto.lnrpc.FeeReportResponse.prototype.setMonthFeeSum = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -26837,7 +26838,7 @@ proto.lnrpc.PolicyUpdateRequest.prototype.clearGlobal = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PolicyUpdateRequest.prototype.hasGlobal = function() { return jspb.Message.getField(this, 1) != null; @@ -26867,7 +26868,7 @@ proto.lnrpc.PolicyUpdateRequest.prototype.clearChanPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.PolicyUpdateRequest.prototype.hasChanPoint = function() { return jspb.Message.getField(this, 2) != null; @@ -26885,7 +26886,7 @@ proto.lnrpc.PolicyUpdateRequest.prototype.getBaseFeeMsat = function() { /** @param {number} value */ proto.lnrpc.PolicyUpdateRequest.prototype.setBaseFeeMsat = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -26900,7 +26901,7 @@ proto.lnrpc.PolicyUpdateRequest.prototype.getFeeRate = function() { /** @param {number} value */ proto.lnrpc.PolicyUpdateRequest.prototype.setFeeRate = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3FloatField(this, 4, value); }; @@ -26915,7 +26916,7 @@ proto.lnrpc.PolicyUpdateRequest.prototype.getTimeLockDelta = function() { /** @param {number} value */ proto.lnrpc.PolicyUpdateRequest.prototype.setTimeLockDelta = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -27209,7 +27210,7 @@ proto.lnrpc.ForwardingHistoryRequest.prototype.getStartTime = function() { /** @param {number} value */ proto.lnrpc.ForwardingHistoryRequest.prototype.setStartTime = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -27224,7 +27225,7 @@ proto.lnrpc.ForwardingHistoryRequest.prototype.getEndTime = function() { /** @param {number} value */ proto.lnrpc.ForwardingHistoryRequest.prototype.setEndTime = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -27239,7 +27240,7 @@ proto.lnrpc.ForwardingHistoryRequest.prototype.getIndexOffset = function() { /** @param {number} value */ proto.lnrpc.ForwardingHistoryRequest.prototype.setIndexOffset = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -27254,7 +27255,7 @@ proto.lnrpc.ForwardingHistoryRequest.prototype.getNumMaxEvents = function() { /** @param {number} value */ proto.lnrpc.ForwardingHistoryRequest.prototype.setNumMaxEvents = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -27468,7 +27469,7 @@ proto.lnrpc.ForwardingEvent.prototype.getTimestamp = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setTimestamp = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -27483,7 +27484,7 @@ proto.lnrpc.ForwardingEvent.prototype.getChanIdIn = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setChanIdIn = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -27498,7 +27499,7 @@ proto.lnrpc.ForwardingEvent.prototype.getChanIdOut = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setChanIdOut = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -27513,7 +27514,7 @@ proto.lnrpc.ForwardingEvent.prototype.getAmtIn = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setAmtIn = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -27528,7 +27529,7 @@ proto.lnrpc.ForwardingEvent.prototype.getAmtOut = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setAmtOut = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -27543,7 +27544,7 @@ proto.lnrpc.ForwardingEvent.prototype.getFee = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setFee = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -27558,7 +27559,7 @@ proto.lnrpc.ForwardingEvent.prototype.getFeeMsat = function() { /** @param {number} value */ proto.lnrpc.ForwardingEvent.prototype.setFeeMsat = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -27713,15 +27714,15 @@ proto.lnrpc.ForwardingHistoryResponse.serializeBinaryToWriter = function(message /** * repeated ForwardingEvent forwarding_events = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ForwardingHistoryResponse.prototype.getForwardingEventsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ForwardingEvent, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ForwardingHistoryResponse.prototype.setForwardingEventsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -27753,7 +27754,7 @@ proto.lnrpc.ForwardingHistoryResponse.prototype.getLastOffsetIndex = function() /** @param {number} value */ proto.lnrpc.ForwardingHistoryResponse.prototype.setLastOffsetIndex = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -27909,7 +27910,7 @@ proto.lnrpc.ExportChannelBackupRequest.prototype.clearChanPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ExportChannelBackupRequest.prototype.hasChanPoint = function() { return jspb.Message.getField(this, 1) != null; @@ -28080,7 +28081,7 @@ proto.lnrpc.ChannelBackup.prototype.clearChanPoint = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChannelBackup.prototype.hasChanPoint = function() { return jspb.Message.getField(this, 1) != null; @@ -28122,7 +28123,7 @@ proto.lnrpc.ChannelBackup.prototype.getChanBackup_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.ChannelBackup.prototype.setChanBackup = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -28277,15 +28278,15 @@ proto.lnrpc.MultiChanBackup.serializeBinaryToWriter = function(message, writer) /** * repeated ChannelPoint chan_points = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.MultiChanBackup.prototype.getChanPointsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelPoint, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.MultiChanBackup.prototype.setChanPointsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -28341,7 +28342,7 @@ proto.lnrpc.MultiChanBackup.prototype.getMultiChanBackup_asU8 = function() { /** @param {!(string|Uint8Array)} value */ proto.lnrpc.MultiChanBackup.prototype.setMultiChanBackup = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BytesField(this, 2, value); }; @@ -28627,7 +28628,7 @@ proto.lnrpc.ChanBackupSnapshot.prototype.clearSingleChanBackups = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChanBackupSnapshot.prototype.hasSingleChanBackups = function() { return jspb.Message.getField(this, 1) != null; @@ -28657,7 +28658,7 @@ proto.lnrpc.ChanBackupSnapshot.prototype.clearMultiChanBackup = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.ChanBackupSnapshot.prototype.hasMultiChanBackup = function() { return jspb.Message.getField(this, 2) != null; @@ -28803,15 +28804,15 @@ proto.lnrpc.ChannelBackups.serializeBinaryToWriter = function(message, writer) { /** * repeated ChannelBackup chan_backups = 1; - * @return {!Array.} + * @return {!Array} */ proto.lnrpc.ChannelBackups.prototype.getChanBackupsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.lnrpc.ChannelBackup, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.lnrpc.ChannelBackups.prototype.setChanBackupsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -29022,7 +29023,7 @@ proto.lnrpc.RestoreChanBackupRequest.prototype.clearChanBackups = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.RestoreChanBackupRequest.prototype.hasChanBackups = function() { return jspb.Message.getField(this, 1) != null; @@ -29075,7 +29076,7 @@ proto.lnrpc.RestoreChanBackupRequest.prototype.clearMultiChanBackup = function() /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.lnrpc.RestoreChanBackupRequest.prototype.hasMultiChanBackup = function() { return jspb.Message.getField(this, 2) != null; diff --git a/lib/proto/xudp2p_pb.js b/lib/proto/xudp2p_pb.js index 0bf2ba4c9..2b30a14df 100644 --- a/lib/proto/xudp2p_pb.js +++ b/lib/proto/xudp2p_pb.js @@ -184,7 +184,7 @@ proto.xudp2p.Address.prototype.getHost = function() { /** @param {string} value */ proto.xudp2p.Address.prototype.setHost = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -199,7 +199,7 @@ proto.xudp2p.Address.prototype.getPort = function() { /** @param {number} value */ proto.xudp2p.Address.prototype.setPort = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -389,7 +389,7 @@ proto.xudp2p.Order.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.Order.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -404,7 +404,7 @@ proto.xudp2p.Order.prototype.getPairId = function() { /** @param {string} value */ proto.xudp2p.Order.prototype.setPairId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -419,7 +419,7 @@ proto.xudp2p.Order.prototype.getPrice = function() { /** @param {number} value */ proto.xudp2p.Order.prototype.setPrice = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3FloatField(this, 3, value); }; @@ -434,7 +434,7 @@ proto.xudp2p.Order.prototype.getQuantity = function() { /** @param {number} value */ proto.xudp2p.Order.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -451,7 +451,7 @@ proto.xudp2p.Order.prototype.getIsBuy = function() { /** @param {boolean} value */ proto.xudp2p.Order.prototype.setIsBuy = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3BooleanField(this, 5, value); }; @@ -615,21 +615,21 @@ proto.xudp2p.Node.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudp2p.Node.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; /** * repeated Address addresses = 2; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.Node.prototype.getAddressesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudp2p.Address, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.Node.prototype.setAddressesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -786,21 +786,21 @@ proto.xudp2p.LndUris.serializeBinaryToWriter = function(message, writer) { /** * repeated string lnd_uri = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.LndUris.prototype.getLndUriList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.LndUris.prototype.setLndUriList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudp2p.LndUris.prototype.addLndUri = function(value, opt_index) { @@ -926,19 +926,19 @@ proto.xudp2p.NodeState.deserializeBinaryFromReader = function(msg, reader) { case 6: var value = msg.getLndPubKeysMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, ""); }); break; case 7: var value = msg.getTokenIdentifiersMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, ""); }); break; case 8: var value = msg.getLndUrisMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudp2p.LndUris.deserializeBinaryFromReader); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudp2p.LndUris.deserializeBinaryFromReader, ""); }); break; default: @@ -1009,15 +1009,15 @@ proto.xudp2p.NodeState.serializeBinaryToWriter = function(message, writer) { /** * repeated Address addresses = 3; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.NodeState.prototype.getAddressesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudp2p.Address, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.NodeState.prototype.setAddressesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -1040,21 +1040,21 @@ proto.xudp2p.NodeState.prototype.clearAddressesList = function() { /** * repeated string pairs = 4; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.NodeState.prototype.getPairsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 4)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.NodeState.prototype.setPairsList = function(value) { jspb.Message.setField(this, 4, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudp2p.NodeState.prototype.addPairs = function(value, opt_index) { @@ -1078,7 +1078,7 @@ proto.xudp2p.NodeState.prototype.getRaidenAddress = function() { /** @param {string} value */ proto.xudp2p.NodeState.prototype.setRaidenAddress = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -1274,7 +1274,7 @@ proto.xudp2p.PingPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.PingPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1428,7 +1428,7 @@ proto.xudp2p.PongPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.PongPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1443,7 +1443,7 @@ proto.xudp2p.PongPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.PongPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -1599,7 +1599,7 @@ proto.xudp2p.OrderPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.OrderPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1626,7 +1626,7 @@ proto.xudp2p.OrderPacket.prototype.clearOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudp2p.OrderPacket.prototype.hasOrder = function() { return jspb.Message.getField(this, 2) != null; @@ -1807,7 +1807,7 @@ proto.xudp2p.OrderInvalidationPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.OrderInvalidationPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1822,7 +1822,7 @@ proto.xudp2p.OrderInvalidationPacket.prototype.getOrderId = function() { /** @param {string} value */ proto.xudp2p.OrderInvalidationPacket.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -1837,7 +1837,7 @@ proto.xudp2p.OrderInvalidationPacket.prototype.getPairId = function() { /** @param {string} value */ proto.xudp2p.OrderInvalidationPacket.prototype.setPairId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -1852,7 +1852,7 @@ proto.xudp2p.OrderInvalidationPacket.prototype.getQuantity = function() { /** @param {number} value */ proto.xudp2p.OrderInvalidationPacket.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -2013,27 +2013,27 @@ proto.xudp2p.GetOrdersPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.GetOrdersPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; /** * repeated string pair_ids = 2; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.GetOrdersPacket.prototype.getPairIdsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 2)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.GetOrdersPacket.prototype.setPairIdsList = function(value) { jspb.Message.setField(this, 2, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudp2p.GetOrdersPacket.prototype.addPairIds = function(value, opt_index) { @@ -2218,7 +2218,7 @@ proto.xudp2p.OrdersPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.OrdersPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2233,21 +2233,21 @@ proto.xudp2p.OrdersPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.OrdersPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; /** * repeated Order orders = 3; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.OrdersPacket.prototype.getOrdersList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudp2p.Order, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.OrdersPacket.prototype.setOrdersList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -2420,7 +2420,7 @@ proto.xudp2p.NodeStateUpdatePacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.NodeStateUpdatePacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2447,7 +2447,7 @@ proto.xudp2p.NodeStateUpdatePacket.prototype.clearNodeState = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudp2p.NodeStateUpdatePacket.prototype.hasNodeState = function() { return jspb.Message.getField(this, 5) != null; @@ -2666,7 +2666,7 @@ proto.xudp2p.SessionInitPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2681,7 +2681,7 @@ proto.xudp2p.SessionInitPacket.prototype.getSign = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setSign = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -2696,7 +2696,7 @@ proto.xudp2p.SessionInitPacket.prototype.getPeerPubKey = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setPeerPubKey = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -2711,7 +2711,7 @@ proto.xudp2p.SessionInitPacket.prototype.getEphemeralPubKey = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setEphemeralPubKey = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -2738,7 +2738,7 @@ proto.xudp2p.SessionInitPacket.prototype.clearNodeState = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudp2p.SessionInitPacket.prototype.hasNodeState = function() { return jspb.Message.getField(this, 5) != null; @@ -2756,7 +2756,7 @@ proto.xudp2p.SessionInitPacket.prototype.getVersion = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setVersion = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -2771,7 +2771,7 @@ proto.xudp2p.SessionInitPacket.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudp2p.SessionInitPacket.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3StringField(this, 7, value); }; @@ -2937,7 +2937,7 @@ proto.xudp2p.SessionAckPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SessionAckPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2952,7 +2952,7 @@ proto.xudp2p.SessionAckPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.SessionAckPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -2967,7 +2967,7 @@ proto.xudp2p.SessionAckPacket.prototype.getEphemeralPubKey = function() { /** @param {string} value */ proto.xudp2p.SessionAckPacket.prototype.setEphemeralPubKey = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -3133,7 +3133,7 @@ proto.xudp2p.DisconnectingPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.DisconnectingPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3148,7 +3148,7 @@ proto.xudp2p.DisconnectingPacket.prototype.getReason = function() { /** @param {number} value */ proto.xudp2p.DisconnectingPacket.prototype.setReason = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -3163,7 +3163,7 @@ proto.xudp2p.DisconnectingPacket.prototype.getPayload = function() { /** @param {string} value */ proto.xudp2p.DisconnectingPacket.prototype.setPayload = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -3305,7 +3305,7 @@ proto.xudp2p.GetNodesPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.GetNodesPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3481,7 +3481,7 @@ proto.xudp2p.NodesPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.NodesPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3496,21 +3496,21 @@ proto.xudp2p.NodesPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.NodesPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; /** * repeated Node nodes = 3; - * @return {!Array.} + * @return {!Array} */ proto.xudp2p.NodesPacket.prototype.getNodesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudp2p.Node, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudp2p.NodesPacket.prototype.setNodesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -3693,7 +3693,7 @@ proto.xudp2p.SanitySwapInitPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SanitySwapInitPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3708,7 +3708,7 @@ proto.xudp2p.SanitySwapInitPacket.prototype.getCurrency = function() { /** @param {string} value */ proto.xudp2p.SanitySwapInitPacket.prototype.setCurrency = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -3723,7 +3723,7 @@ proto.xudp2p.SanitySwapInitPacket.prototype.getRHash = function() { /** @param {string} value */ proto.xudp2p.SanitySwapInitPacket.prototype.setRHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -3877,7 +3877,7 @@ proto.xudp2p.SanitySwapAckPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SanitySwapAckPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3892,7 +3892,7 @@ proto.xudp2p.SanitySwapAckPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.SanitySwapAckPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4094,7 +4094,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SwapRequestPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4109,7 +4109,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getProposedQuantity = function() { /** @param {number} value */ proto.xudp2p.SwapRequestPacket.prototype.setProposedQuantity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -4124,7 +4124,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getPairId = function() { /** @param {string} value */ proto.xudp2p.SwapRequestPacket.prototype.setPairId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -4139,7 +4139,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getOrderId = function() { /** @param {string} value */ proto.xudp2p.SwapRequestPacket.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -4154,7 +4154,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getRHash = function() { /** @param {string} value */ proto.xudp2p.SwapRequestPacket.prototype.setRHash = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -4169,7 +4169,7 @@ proto.xudp2p.SwapRequestPacket.prototype.getTakerCltvDelta = function() { /** @param {number} value */ proto.xudp2p.SwapRequestPacket.prototype.setTakerCltvDelta = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3IntField(this, 6, value); }; @@ -4359,7 +4359,7 @@ proto.xudp2p.SwapAcceptedPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SwapAcceptedPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4374,7 +4374,7 @@ proto.xudp2p.SwapAcceptedPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.SwapAcceptedPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4389,7 +4389,7 @@ proto.xudp2p.SwapAcceptedPacket.prototype.getRHash = function() { /** @param {string} value */ proto.xudp2p.SwapAcceptedPacket.prototype.setRHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -4404,7 +4404,7 @@ proto.xudp2p.SwapAcceptedPacket.prototype.getQuantity = function() { /** @param {number} value */ proto.xudp2p.SwapAcceptedPacket.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3FloatField(this, 4, value); }; @@ -4419,7 +4419,7 @@ proto.xudp2p.SwapAcceptedPacket.prototype.getMakerCltvDelta = function() { /** @param {number} value */ proto.xudp2p.SwapAcceptedPacket.prototype.setMakerCltvDelta = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -4585,7 +4585,7 @@ proto.xudp2p.SwapCompletePacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SwapCompletePacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4600,7 +4600,7 @@ proto.xudp2p.SwapCompletePacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.SwapCompletePacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4615,7 +4615,7 @@ proto.xudp2p.SwapCompletePacket.prototype.getRHash = function() { /** @param {string} value */ proto.xudp2p.SwapCompletePacket.prototype.setRHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -4805,7 +4805,7 @@ proto.xudp2p.SwapFailedPacket.prototype.getId = function() { /** @param {string} value */ proto.xudp2p.SwapFailedPacket.prototype.setId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4820,7 +4820,7 @@ proto.xudp2p.SwapFailedPacket.prototype.getReqId = function() { /** @param {string} value */ proto.xudp2p.SwapFailedPacket.prototype.setReqId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -4835,7 +4835,7 @@ proto.xudp2p.SwapFailedPacket.prototype.getRHash = function() { /** @param {string} value */ proto.xudp2p.SwapFailedPacket.prototype.setRHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -4850,7 +4850,7 @@ proto.xudp2p.SwapFailedPacket.prototype.getErrorMessage = function() { /** @param {string} value */ proto.xudp2p.SwapFailedPacket.prototype.setErrorMessage = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -4865,7 +4865,7 @@ proto.xudp2p.SwapFailedPacket.prototype.getFailureReason = function() { /** @param {number} value */ proto.xudp2p.SwapFailedPacket.prototype.setFailureReason = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; diff --git a/lib/proto/xudrpc_pb.js b/lib/proto/xudrpc_pb.js index d16be359b..99208b6d0 100644 --- a/lib/proto/xudrpc_pb.js +++ b/lib/proto/xudrpc_pb.js @@ -12,6 +12,7 @@ var goog = jspb; var global = Function('return this')(); var annotations_pb = require('./annotations_pb.js'); +goog.object.extend(proto, annotations_pb); goog.exportSymbol('proto.xudrpc.AddCurrencyResponse', null, global); goog.exportSymbol('proto.xudrpc.AddPairRequest', null, global); goog.exportSymbol('proto.xudrpc.AddPairResponse', null, global); @@ -215,7 +216,7 @@ proto.xudrpc.CreateNodeRequest.prototype.getPassword = function() { /** @param {string} value */ proto.xudrpc.CreateNodeRequest.prototype.setPassword = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -379,21 +380,21 @@ proto.xudrpc.CreateNodeResponse.serializeBinaryToWriter = function(message, writ /** * repeated string seed_mnemonic = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.CreateNodeResponse.prototype.getSeedMnemonicList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.CreateNodeResponse.prototype.setSeedMnemonicList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.CreateNodeResponse.prototype.addSeedMnemonic = function(value, opt_index) { @@ -408,21 +409,21 @@ proto.xudrpc.CreateNodeResponse.prototype.clearSeedMnemonicList = function() { /** * repeated string initialized_lnds = 2; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.CreateNodeResponse.prototype.getInitializedLndsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 2)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.CreateNodeResponse.prototype.setInitializedLndsList = function(value) { jspb.Message.setField(this, 2, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.CreateNodeResponse.prototype.addInitializedLnds = function(value, opt_index) { @@ -448,7 +449,7 @@ proto.xudrpc.CreateNodeResponse.prototype.getInitializedRaiden = function() { /** @param {boolean} value */ proto.xudrpc.CreateNodeResponse.prototype.setInitializedRaiden = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3BooleanField(this, 3, value); }; @@ -590,7 +591,7 @@ proto.xudrpc.UnlockNodeRequest.prototype.getPassword = function() { /** @param {string} value */ proto.xudrpc.UnlockNodeRequest.prototype.setPassword = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -742,21 +743,21 @@ proto.xudrpc.UnlockNodeResponse.serializeBinaryToWriter = function(message, writ /** * repeated string unlocked_lnds = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.UnlockNodeResponse.prototype.getUnlockedLndsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.UnlockNodeResponse.prototype.setUnlockedLndsList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.UnlockNodeResponse.prototype.addUnlockedLnds = function(value, opt_index) { @@ -782,7 +783,7 @@ proto.xudrpc.UnlockNodeResponse.prototype.getUnlockedRaiden = function() { /** @param {boolean} value */ proto.xudrpc.UnlockNodeResponse.prototype.setUnlockedRaiden = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -968,7 +969,7 @@ proto.xudrpc.Currency.prototype.getCurrency = function() { /** @param {string} value */ proto.xudrpc.Currency.prototype.setCurrency = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -983,7 +984,7 @@ proto.xudrpc.Currency.prototype.getSwapClient = function() { /** @param {!proto.xudrpc.Currency.SwapClient} value */ proto.xudrpc.Currency.prototype.setSwapClient = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3EnumField(this, 2, value); }; @@ -998,7 +999,7 @@ proto.xudrpc.Currency.prototype.getTokenAddress = function() { /** @param {string} value */ proto.xudrpc.Currency.prototype.setTokenAddress = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -1013,7 +1014,7 @@ proto.xudrpc.Currency.prototype.getDecimalPlaces = function() { /** @param {number} value */ proto.xudrpc.Currency.prototype.setDecimalPlaces = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -1283,7 +1284,7 @@ proto.xudrpc.AddPairRequest.prototype.getBaseCurrency = function() { /** @param {string} value */ proto.xudrpc.AddPairRequest.prototype.setBaseCurrency = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1298,7 +1299,7 @@ proto.xudrpc.AddPairRequest.prototype.getQuoteCurrency = function() { /** @param {string} value */ proto.xudrpc.AddPairRequest.prototype.setQuoteCurrency = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -1556,7 +1557,7 @@ proto.xudrpc.BanRequest.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.BanRequest.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1826,7 +1827,7 @@ proto.xudrpc.Chain.prototype.getChain = function() { /** @param {string} value */ proto.xudrpc.Chain.prototype.setChain = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -1841,7 +1842,7 @@ proto.xudrpc.Chain.prototype.getNetwork = function() { /** @param {string} value */ proto.xudrpc.Chain.prototype.setNetwork = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -2031,7 +2032,7 @@ proto.xudrpc.Balance.prototype.getTotalBalance = function() { /** @param {number} value */ proto.xudrpc.Balance.prototype.setTotalBalance = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -2046,7 +2047,7 @@ proto.xudrpc.Balance.prototype.getChannelBalance = function() { /** @param {number} value */ proto.xudrpc.Balance.prototype.setChannelBalance = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -2061,7 +2062,7 @@ proto.xudrpc.Balance.prototype.getPendingChannelBalance = function() { /** @param {number} value */ proto.xudrpc.Balance.prototype.setPendingChannelBalance = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -2076,7 +2077,7 @@ proto.xudrpc.Balance.prototype.getWalletBalance = function() { /** @param {number} value */ proto.xudrpc.Balance.prototype.setWalletBalance = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -2091,7 +2092,7 @@ proto.xudrpc.Balance.prototype.getUnconfirmedWalletBalance = function() { /** @param {number} value */ proto.xudrpc.Balance.prototype.setUnconfirmedWalletBalance = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -2233,7 +2234,7 @@ proto.xudrpc.GetBalanceRequest.prototype.getCurrency = function() { /** @param {string} value */ proto.xudrpc.GetBalanceRequest.prototype.setCurrency = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2324,7 +2325,7 @@ proto.xudrpc.GetBalanceResponse.deserializeBinaryFromReader = function(msg, read case 1: var value = msg.getBalancesMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.Balance.deserializeBinaryFromReader); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.Balance.deserializeBinaryFromReader, ""); }); break; default: @@ -2543,7 +2544,7 @@ proto.xudrpc.OpenChannelRequest.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.OpenChannelRequest.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -2558,7 +2559,7 @@ proto.xudrpc.OpenChannelRequest.prototype.getCurrency = function() { /** @param {string} value */ proto.xudrpc.OpenChannelRequest.prototype.setCurrency = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -2573,7 +2574,7 @@ proto.xudrpc.OpenChannelRequest.prototype.getAmount = function() { /** @param {number} value */ proto.xudrpc.OpenChannelRequest.prototype.setAmount = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -2831,7 +2832,7 @@ proto.xudrpc.ConnectRequest.prototype.getNodeUri = function() { /** @param {string} value */ proto.xudrpc.ConnectRequest.prototype.setNodeUri = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3125,7 +3126,7 @@ proto.xudrpc.ExecuteSwapRequest.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.ExecuteSwapRequest.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3140,7 +3141,7 @@ proto.xudrpc.ExecuteSwapRequest.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.ExecuteSwapRequest.prototype.setPairId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -3155,7 +3156,7 @@ proto.xudrpc.ExecuteSwapRequest.prototype.getPeerPubKey = function() { /** @param {string} value */ proto.xudrpc.ExecuteSwapRequest.prototype.setPeerPubKey = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -3170,7 +3171,7 @@ proto.xudrpc.ExecuteSwapRequest.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.ExecuteSwapRequest.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -3360,7 +3361,7 @@ proto.xudrpc.SwapFailure.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.SwapFailure.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3375,7 +3376,7 @@ proto.xudrpc.SwapFailure.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.SwapFailure.prototype.setPairId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -3390,7 +3391,7 @@ proto.xudrpc.SwapFailure.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.SwapFailure.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -3405,7 +3406,7 @@ proto.xudrpc.SwapFailure.prototype.getPeerPubKey = function() { /** @param {string} value */ proto.xudrpc.SwapFailure.prototype.setPeerPubKey = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -3420,7 +3421,7 @@ proto.xudrpc.SwapFailure.prototype.getFailureReason = function() { /** @param {string} value */ proto.xudrpc.SwapFailure.prototype.setFailureReason = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -3669,7 +3670,7 @@ proto.xudrpc.GetInfoResponse.deserializeBinaryFromReader = function(msg, reader) case 7: var value = msg.getLndMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.LndInfo.deserializeBinaryFromReader); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.LndInfo.deserializeBinaryFromReader, ""); }); break; case 8: @@ -3808,7 +3809,7 @@ proto.xudrpc.GetInfoResponse.prototype.getVersion = function() { /** @param {string} value */ proto.xudrpc.GetInfoResponse.prototype.setVersion = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -3823,27 +3824,27 @@ proto.xudrpc.GetInfoResponse.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.GetInfoResponse.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; /** * repeated string uris = 3; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.GetInfoResponse.prototype.getUrisList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 3)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.GetInfoResponse.prototype.setUrisList = function(value) { jspb.Message.setField(this, 3, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.GetInfoResponse.prototype.addUris = function(value, opt_index) { @@ -3867,7 +3868,7 @@ proto.xudrpc.GetInfoResponse.prototype.getNumPeers = function() { /** @param {number} value */ proto.xudrpc.GetInfoResponse.prototype.setNumPeers = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -3882,7 +3883,7 @@ proto.xudrpc.GetInfoResponse.prototype.getNumPairs = function() { /** @param {number} value */ proto.xudrpc.GetInfoResponse.prototype.setNumPairs = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3IntField(this, 5, value); }; @@ -3909,7 +3910,7 @@ proto.xudrpc.GetInfoResponse.prototype.clearOrders = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.GetInfoResponse.prototype.hasOrders = function() { return jspb.Message.getField(this, 6) != null; @@ -3957,7 +3958,7 @@ proto.xudrpc.GetInfoResponse.prototype.clearRaiden = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.GetInfoResponse.prototype.hasRaiden = function() { return jspb.Message.getField(this, 8) != null; @@ -3975,7 +3976,7 @@ proto.xudrpc.GetInfoResponse.prototype.getAlias = function() { /** @param {string} value */ proto.xudrpc.GetInfoResponse.prototype.setAlias = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3StringField(this, 9, value); }; @@ -3990,27 +3991,27 @@ proto.xudrpc.GetInfoResponse.prototype.getNetwork = function() { /** @param {string} value */ proto.xudrpc.GetInfoResponse.prototype.setNetwork = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3StringField(this, 10, value); }; /** * repeated string pending_swap_hashes = 11; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.GetInfoResponse.prototype.getPendingSwapHashesList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 11)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 11)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.GetInfoResponse.prototype.setPendingSwapHashesList = function(value) { jspb.Message.setField(this, 11, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.GetInfoResponse.prototype.addPendingSwapHashes = function(value, opt_index) { @@ -4161,7 +4162,7 @@ proto.xudrpc.GetNodeInfoRequest.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.GetNodeInfoRequest.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4315,7 +4316,7 @@ proto.xudrpc.GetNodeInfoResponse.prototype.getReputationscore = function() { /** @param {number} value */ proto.xudrpc.GetNodeInfoResponse.prototype.setReputationscore = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -4332,7 +4333,7 @@ proto.xudrpc.GetNodeInfoResponse.prototype.getBanned = function() { /** @param {boolean} value */ proto.xudrpc.GetNodeInfoResponse.prototype.setBanned = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -4498,7 +4499,7 @@ proto.xudrpc.ListOrdersRequest.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.ListOrdersRequest.prototype.setPairId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -4515,7 +4516,7 @@ proto.xudrpc.ListOrdersRequest.prototype.getIncludeOwnOrders = function() { /** @param {boolean} value */ proto.xudrpc.ListOrdersRequest.prototype.setIncludeOwnOrders = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; @@ -4530,7 +4531,7 @@ proto.xudrpc.ListOrdersRequest.prototype.getLimit = function() { /** @param {number} value */ proto.xudrpc.ListOrdersRequest.prototype.setLimit = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -4621,7 +4622,7 @@ proto.xudrpc.ListOrdersResponse.deserializeBinaryFromReader = function(msg, read case 1: var value = msg.getOrdersMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.Orders.deserializeBinaryFromReader); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readMessage, proto.xudrpc.Orders.deserializeBinaryFromReader, ""); }); break; default: @@ -4933,15 +4934,15 @@ proto.xudrpc.ListCurrenciesResponse.serializeBinaryToWriter = function(message, /** * repeated Currency currencies = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.ListCurrenciesResponse.prototype.getCurrenciesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Currency, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.ListCurrenciesResponse.prototype.setCurrenciesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -5214,21 +5215,21 @@ proto.xudrpc.ListPairsResponse.serializeBinaryToWriter = function(message, write /** * repeated string pairs = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.ListPairsResponse.prototype.getPairsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 1)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.ListPairsResponse.prototype.setPairsList = function(value) { jspb.Message.setField(this, 1, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.ListPairsResponse.prototype.addPairs = function(value, opt_index) { @@ -5496,15 +5497,15 @@ proto.xudrpc.ListPeersResponse.serializeBinaryToWriter = function(message, write /** * repeated Peer peers = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.ListPeersResponse.prototype.getPeersList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Peer, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.ListPeersResponse.prototype.setPeersList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -5663,7 +5664,7 @@ proto.xudrpc.ListTradesRequest.prototype.getLimit = function() { /** @param {number} value */ proto.xudrpc.ListTradesRequest.prototype.setLimit = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -5806,15 +5807,15 @@ proto.xudrpc.ListTradesResponse.serializeBinaryToWriter = function(message, writ /** * repeated Trade trades = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.ListTradesResponse.prototype.getTradesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Trade, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.ListTradesResponse.prototype.setTradesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -6009,7 +6010,7 @@ proto.xudrpc.Channels.prototype.getActive = function() { /** @param {number} value */ proto.xudrpc.Channels.prototype.setActive = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -6024,7 +6025,7 @@ proto.xudrpc.Channels.prototype.getInactive = function() { /** @param {number} value */ proto.xudrpc.Channels.prototype.setInactive = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -6039,7 +6040,7 @@ proto.xudrpc.Channels.prototype.getPending = function() { /** @param {number} value */ proto.xudrpc.Channels.prototype.setPending = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3IntField(this, 3, value); }; @@ -6054,7 +6055,7 @@ proto.xudrpc.Channels.prototype.getClosed = function() { /** @param {number} value */ proto.xudrpc.Channels.prototype.setClosed = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -6280,7 +6281,7 @@ proto.xudrpc.LndInfo.prototype.getStatus = function() { /** @param {string} value */ proto.xudrpc.LndInfo.prototype.setStatus = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -6307,7 +6308,7 @@ proto.xudrpc.LndInfo.prototype.clearChannels = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.LndInfo.prototype.hasChannels = function() { return jspb.Message.getField(this, 2) != null; @@ -6316,15 +6317,15 @@ proto.xudrpc.LndInfo.prototype.hasChannels = function() { /** * repeated Chain chains = 3; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.LndInfo.prototype.getChainsList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Chain, 3)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.LndInfo.prototype.setChainsList = function(value) { jspb.Message.setRepeatedWrapperField(this, 3, value); }; @@ -6356,27 +6357,27 @@ proto.xudrpc.LndInfo.prototype.getBlockheight = function() { /** @param {number} value */ proto.xudrpc.LndInfo.prototype.setBlockheight = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; /** * repeated string uris = 5; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.LndInfo.prototype.getUrisList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 5)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 5)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.LndInfo.prototype.setUrisList = function(value) { jspb.Message.setField(this, 5, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.LndInfo.prototype.addUris = function(value, opt_index) { @@ -6400,7 +6401,7 @@ proto.xudrpc.LndInfo.prototype.getVersion = function() { /** @param {string} value */ proto.xudrpc.LndInfo.prototype.setVersion = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -6415,7 +6416,7 @@ proto.xudrpc.LndInfo.prototype.getAlias = function() { /** @param {string} value */ proto.xudrpc.LndInfo.prototype.setAlias = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3StringField(this, 7, value); }; @@ -6691,7 +6692,7 @@ proto.xudrpc.Order.prototype.getPrice = function() { /** @param {number} value */ proto.xudrpc.Order.prototype.setPrice = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3FloatField(this, 1, value); }; @@ -6706,7 +6707,7 @@ proto.xudrpc.Order.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.Order.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -6721,7 +6722,7 @@ proto.xudrpc.Order.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.Order.prototype.setPairId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -6736,7 +6737,7 @@ proto.xudrpc.Order.prototype.getId = function() { /** @param {string} value */ proto.xudrpc.Order.prototype.setId = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -6762,7 +6763,7 @@ proto.xudrpc.Order.prototype.clearPeerPubKey = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.Order.prototype.hasPeerPubKey = function() { return jspb.Message.getField(this, 5) != null; @@ -6791,7 +6792,7 @@ proto.xudrpc.Order.prototype.clearLocalId = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.Order.prototype.hasLocalId = function() { return jspb.Message.getField(this, 6) != null; @@ -6809,7 +6810,7 @@ proto.xudrpc.Order.prototype.getCreatedAt = function() { /** @param {number} value */ proto.xudrpc.Order.prototype.setCreatedAt = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -6824,7 +6825,7 @@ proto.xudrpc.Order.prototype.getSide = function() { /** @param {!proto.xudrpc.OrderSide} value */ proto.xudrpc.Order.prototype.setSide = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3EnumField(this, 8, value); }; @@ -6841,7 +6842,7 @@ proto.xudrpc.Order.prototype.getIsOwnOrder = function() { /** @param {boolean} value */ proto.xudrpc.Order.prototype.setIsOwnOrder = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3BooleanField(this, 9, value); }; @@ -6856,7 +6857,7 @@ proto.xudrpc.Order.prototype.getHold = function() { /** @param {number} value */ proto.xudrpc.Order.prototype.setHold = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3IntField(this, 10, value); }; @@ -7062,7 +7063,7 @@ proto.xudrpc.Trade.prototype.clearMakerOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.Trade.prototype.hasMakerOrder = function() { return jspb.Message.getField(this, 1) != null; @@ -7092,7 +7093,7 @@ proto.xudrpc.Trade.prototype.clearTakerOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.Trade.prototype.hasTakerOrder = function() { return jspb.Message.getField(this, 2) != null; @@ -7110,7 +7111,7 @@ proto.xudrpc.Trade.prototype.getRHash = function() { /** @param {string} value */ proto.xudrpc.Trade.prototype.setRHash = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -7125,7 +7126,7 @@ proto.xudrpc.Trade.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.Trade.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -7140,7 +7141,7 @@ proto.xudrpc.Trade.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.Trade.prototype.setPairId = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -7336,7 +7337,7 @@ proto.xudrpc.OrderUpdate.prototype.clearOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.OrderUpdate.prototype.hasOrder = function() { return jspb.Message.getField(this, 1) != null; @@ -7366,7 +7367,7 @@ proto.xudrpc.OrderUpdate.prototype.clearOrderRemoval = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.OrderUpdate.prototype.hasOrderRemoval = function() { return jspb.Message.getField(this, 2) != null; @@ -7559,7 +7560,7 @@ proto.xudrpc.OrderRemoval.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.OrderRemoval.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -7574,7 +7575,7 @@ proto.xudrpc.OrderRemoval.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.OrderRemoval.prototype.setPairId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -7589,7 +7590,7 @@ proto.xudrpc.OrderRemoval.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.OrderRemoval.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -7604,7 +7605,7 @@ proto.xudrpc.OrderRemoval.prototype.getLocalId = function() { /** @param {string} value */ proto.xudrpc.OrderRemoval.prototype.setLocalId = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -7621,7 +7622,7 @@ proto.xudrpc.OrderRemoval.prototype.getIsOwnOrder = function() { /** @param {boolean} value */ proto.xudrpc.OrderRemoval.prototype.setIsOwnOrder = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3BooleanField(this, 5, value); }; @@ -7779,15 +7780,15 @@ proto.xudrpc.Orders.serializeBinaryToWriter = function(message, writer) { /** * repeated Order buy_orders = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.Orders.prototype.getBuyOrdersList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Order, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.Orders.prototype.setBuyOrdersList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -7810,15 +7811,15 @@ proto.xudrpc.Orders.prototype.clearBuyOrdersList = function() { /** * repeated Order sell_orders = 2; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.Orders.prototype.getSellOrdersList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Order, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.Orders.prototype.setSellOrdersList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -7989,7 +7990,7 @@ proto.xudrpc.OrdersCount.prototype.getPeer = function() { /** @param {number} value */ proto.xudrpc.OrdersCount.prototype.setPeer = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -8004,7 +8005,7 @@ proto.xudrpc.OrdersCount.prototype.getOwn = function() { /** @param {number} value */ proto.xudrpc.OrdersCount.prototype.setOwn = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -8117,7 +8118,7 @@ proto.xudrpc.Peer.deserializeBinaryFromReader = function(msg, reader) { case 3: var value = msg.getLndPubKeysMap(); reader.readMessage(value, function(message, reader) { - jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString); + jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readString, null, ""); }); break; case 4: @@ -8236,7 +8237,7 @@ proto.xudrpc.Peer.prototype.getAddress = function() { /** @param {string} value */ proto.xudrpc.Peer.prototype.setAddress = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -8251,7 +8252,7 @@ proto.xudrpc.Peer.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.Peer.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -8286,27 +8287,27 @@ proto.xudrpc.Peer.prototype.getInbound = function() { /** @param {boolean} value */ proto.xudrpc.Peer.prototype.setInbound = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3BooleanField(this, 4, value); }; /** * repeated string pairs = 5; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.Peer.prototype.getPairsList = function() { - return /** @type {!Array.} */ (jspb.Message.getRepeatedField(this, 5)); + return /** @type {!Array} */ (jspb.Message.getRepeatedField(this, 5)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.Peer.prototype.setPairsList = function(value) { jspb.Message.setField(this, 5, value || []); }; /** - * @param {!string} value + * @param {string} value * @param {number=} opt_index */ proto.xudrpc.Peer.prototype.addPairs = function(value, opt_index) { @@ -8330,7 +8331,7 @@ proto.xudrpc.Peer.prototype.getXudVersion = function() { /** @param {string} value */ proto.xudrpc.Peer.prototype.setXudVersion = function(value) { - jspb.Message.setField(this, 6, value); + jspb.Message.setProto3StringField(this, 6, value); }; @@ -8345,7 +8346,7 @@ proto.xudrpc.Peer.prototype.getSecondsConnected = function() { /** @param {number} value */ proto.xudrpc.Peer.prototype.setSecondsConnected = function(value) { - jspb.Message.setField(this, 7, value); + jspb.Message.setProto3IntField(this, 7, value); }; @@ -8360,7 +8361,7 @@ proto.xudrpc.Peer.prototype.getRaidenAddress = function() { /** @param {string} value */ proto.xudrpc.Peer.prototype.setRaidenAddress = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3StringField(this, 8, value); }; @@ -8550,7 +8551,7 @@ proto.xudrpc.PlaceOrderRequest.prototype.getPrice = function() { /** @param {number} value */ proto.xudrpc.PlaceOrderRequest.prototype.setPrice = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3FloatField(this, 1, value); }; @@ -8565,7 +8566,7 @@ proto.xudrpc.PlaceOrderRequest.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.PlaceOrderRequest.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -8580,7 +8581,7 @@ proto.xudrpc.PlaceOrderRequest.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.PlaceOrderRequest.prototype.setPairId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -8595,7 +8596,7 @@ proto.xudrpc.PlaceOrderRequest.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.PlaceOrderRequest.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -8610,7 +8611,7 @@ proto.xudrpc.PlaceOrderRequest.prototype.getSide = function() { /** @param {!proto.xudrpc.OrderSide} value */ proto.xudrpc.PlaceOrderRequest.prototype.setSide = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3EnumField(this, 5, value); }; @@ -8797,15 +8798,15 @@ proto.xudrpc.PlaceOrderResponse.serializeBinaryToWriter = function(message, writ /** * repeated Order internal_matches = 1; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.PlaceOrderResponse.prototype.getInternalMatchesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.Order, 1)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.PlaceOrderResponse.prototype.setInternalMatchesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 1, value); }; @@ -8828,15 +8829,15 @@ proto.xudrpc.PlaceOrderResponse.prototype.clearInternalMatchesList = function() /** * repeated SwapSuccess swap_successes = 2; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.PlaceOrderResponse.prototype.getSwapSuccessesList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.SwapSuccess, 2)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.PlaceOrderResponse.prototype.setSwapSuccessesList = function(value) { jspb.Message.setRepeatedWrapperField(this, 2, value); }; @@ -8880,7 +8881,7 @@ proto.xudrpc.PlaceOrderResponse.prototype.clearRemainingOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.PlaceOrderResponse.prototype.hasRemainingOrder = function() { return jspb.Message.getField(this, 3) != null; @@ -8889,15 +8890,15 @@ proto.xudrpc.PlaceOrderResponse.prototype.hasRemainingOrder = function() { /** * repeated SwapFailure swap_failures = 4; - * @return {!Array.} + * @return {!Array} */ proto.xudrpc.PlaceOrderResponse.prototype.getSwapFailuresList = function() { - return /** @type{!Array.} */ ( + return /** @type{!Array} */ ( jspb.Message.getRepeatedWrapperField(this, proto.xudrpc.SwapFailure, 4)); }; -/** @param {!Array.} value */ +/** @param {!Array} value */ proto.xudrpc.PlaceOrderResponse.prototype.setSwapFailuresList = function(value) { jspb.Message.setRepeatedWrapperField(this, 4, value); }; @@ -9140,7 +9141,7 @@ proto.xudrpc.PlaceOrderEvent.prototype.clearInternalMatch = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.PlaceOrderEvent.prototype.hasInternalMatch = function() { return jspb.Message.getField(this, 1) != null; @@ -9170,7 +9171,7 @@ proto.xudrpc.PlaceOrderEvent.prototype.clearSwapSuccess = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.PlaceOrderEvent.prototype.hasSwapSuccess = function() { return jspb.Message.getField(this, 2) != null; @@ -9200,7 +9201,7 @@ proto.xudrpc.PlaceOrderEvent.prototype.clearRemainingOrder = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.PlaceOrderEvent.prototype.hasRemainingOrder = function() { return jspb.Message.getField(this, 3) != null; @@ -9230,7 +9231,7 @@ proto.xudrpc.PlaceOrderEvent.prototype.clearSwapFailure = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.PlaceOrderEvent.prototype.hasSwapFailure = function() { return jspb.Message.getField(this, 4) != null; @@ -9425,7 +9426,7 @@ proto.xudrpc.RaidenInfo.prototype.getStatus = function() { /** @param {string} value */ proto.xudrpc.RaidenInfo.prototype.setStatus = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -9440,7 +9441,7 @@ proto.xudrpc.RaidenInfo.prototype.getAddress = function() { /** @param {string} value */ proto.xudrpc.RaidenInfo.prototype.setAddress = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -9467,7 +9468,7 @@ proto.xudrpc.RaidenInfo.prototype.clearChannels = function() { /** * Returns whether this field is set. - * @return {!boolean} + * @return {boolean} */ proto.xudrpc.RaidenInfo.prototype.hasChannels = function() { return jspb.Message.getField(this, 3) != null; @@ -9485,7 +9486,7 @@ proto.xudrpc.RaidenInfo.prototype.getVersion = function() { /** @param {string} value */ proto.xudrpc.RaidenInfo.prototype.setVersion = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3StringField(this, 4, value); }; @@ -9500,7 +9501,7 @@ proto.xudrpc.RaidenInfo.prototype.getChain = function() { /** @param {string} value */ proto.xudrpc.RaidenInfo.prototype.setChain = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -9642,7 +9643,7 @@ proto.xudrpc.RemoveCurrencyRequest.prototype.getCurrency = function() { /** @param {string} value */ proto.xudrpc.RemoveCurrencyRequest.prototype.setCurrency = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -9912,7 +9913,7 @@ proto.xudrpc.RemoveOrderRequest.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.RemoveOrderRequest.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -9927,7 +9928,7 @@ proto.xudrpc.RemoveOrderRequest.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.RemoveOrderRequest.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3IntField(this, 2, value); }; @@ -10069,7 +10070,7 @@ proto.xudrpc.RemoveOrderResponse.prototype.getQuantityOnHold = function() { /** @param {number} value */ proto.xudrpc.RemoveOrderResponse.prototype.setQuantityOnHold = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -10211,7 +10212,7 @@ proto.xudrpc.RemovePairRequest.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.RemovePairRequest.prototype.setPairId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -10469,7 +10470,7 @@ proto.xudrpc.DiscoverNodesRequest.prototype.getPeerPubKey = function() { /** @param {string} value */ proto.xudrpc.DiscoverNodesRequest.prototype.setPeerPubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -10611,7 +10612,7 @@ proto.xudrpc.DiscoverNodesResponse.prototype.getNumNodes = function() { /** @param {number} value */ proto.xudrpc.DiscoverNodesResponse.prototype.setNumNodes = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3IntField(this, 1, value); }; @@ -10987,7 +10988,7 @@ proto.xudrpc.SubscribeOrdersRequest.prototype.getExisting = function() { /** @param {boolean} value */ proto.xudrpc.SubscribeOrdersRequest.prototype.setExisting = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -11131,7 +11132,7 @@ proto.xudrpc.SubscribeSwapsRequest.prototype.getIncludeTaker = function() { /** @param {boolean} value */ proto.xudrpc.SubscribeSwapsRequest.prototype.setIncludeTaker = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3BooleanField(this, 1, value); }; @@ -11425,7 +11426,7 @@ proto.xudrpc.SwapSuccess.prototype.getOrderId = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setOrderId = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -11440,7 +11441,7 @@ proto.xudrpc.SwapSuccess.prototype.getLocalId = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setLocalId = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3StringField(this, 2, value); }; @@ -11455,7 +11456,7 @@ proto.xudrpc.SwapSuccess.prototype.getPairId = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setPairId = function(value) { - jspb.Message.setField(this, 3, value); + jspb.Message.setProto3StringField(this, 3, value); }; @@ -11470,7 +11471,7 @@ proto.xudrpc.SwapSuccess.prototype.getQuantity = function() { /** @param {number} value */ proto.xudrpc.SwapSuccess.prototype.setQuantity = function(value) { - jspb.Message.setField(this, 4, value); + jspb.Message.setProto3IntField(this, 4, value); }; @@ -11485,7 +11486,7 @@ proto.xudrpc.SwapSuccess.prototype.getRHash = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setRHash = function(value) { - jspb.Message.setField(this, 5, value); + jspb.Message.setProto3StringField(this, 5, value); }; @@ -11500,7 +11501,7 @@ proto.xudrpc.SwapSuccess.prototype.getAmountReceived = function() { /** @param {number} value */ proto.xudrpc.SwapSuccess.prototype.setAmountReceived = function(value) { - jspb.Message.setField(this, 8, value); + jspb.Message.setProto3IntField(this, 8, value); }; @@ -11515,7 +11516,7 @@ proto.xudrpc.SwapSuccess.prototype.getAmountSent = function() { /** @param {number} value */ proto.xudrpc.SwapSuccess.prototype.setAmountSent = function(value) { - jspb.Message.setField(this, 9, value); + jspb.Message.setProto3IntField(this, 9, value); }; @@ -11530,7 +11531,7 @@ proto.xudrpc.SwapSuccess.prototype.getPeerPubKey = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setPeerPubKey = function(value) { - jspb.Message.setField(this, 10, value); + jspb.Message.setProto3StringField(this, 10, value); }; @@ -11545,7 +11546,7 @@ proto.xudrpc.SwapSuccess.prototype.getRole = function() { /** @param {!proto.xudrpc.SwapSuccess.Role} value */ proto.xudrpc.SwapSuccess.prototype.setRole = function(value) { - jspb.Message.setField(this, 11, value); + jspb.Message.setProto3EnumField(this, 11, value); }; @@ -11560,7 +11561,7 @@ proto.xudrpc.SwapSuccess.prototype.getCurrencyReceived = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setCurrencyReceived = function(value) { - jspb.Message.setField(this, 12, value); + jspb.Message.setProto3StringField(this, 12, value); }; @@ -11575,7 +11576,7 @@ proto.xudrpc.SwapSuccess.prototype.getCurrencySent = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setCurrencySent = function(value) { - jspb.Message.setField(this, 13, value); + jspb.Message.setProto3StringField(this, 13, value); }; @@ -11590,7 +11591,7 @@ proto.xudrpc.SwapSuccess.prototype.getRPreimage = function() { /** @param {string} value */ proto.xudrpc.SwapSuccess.prototype.setRPreimage = function(value) { - jspb.Message.setField(this, 14, value); + jspb.Message.setProto3StringField(this, 14, value); }; @@ -11605,7 +11606,7 @@ proto.xudrpc.SwapSuccess.prototype.getPrice = function() { /** @param {number} value */ proto.xudrpc.SwapSuccess.prototype.setPrice = function(value) { - jspb.Message.setField(this, 15, value); + jspb.Message.setProto3FloatField(this, 15, value); }; @@ -11759,7 +11760,7 @@ proto.xudrpc.UnbanRequest.prototype.getNodePubKey = function() { /** @param {string} value */ proto.xudrpc.UnbanRequest.prototype.setNodePubKey = function(value) { - jspb.Message.setField(this, 1, value); + jspb.Message.setProto3StringField(this, 1, value); }; @@ -11776,7 +11777,7 @@ proto.xudrpc.UnbanRequest.prototype.getReconnect = function() { /** @param {boolean} value */ proto.xudrpc.UnbanRequest.prototype.setReconnect = function(value) { - jspb.Message.setField(this, 2, value); + jspb.Message.setProto3BooleanField(this, 2, value); }; diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index c9c1500ce..06e805654 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -5,31 +5,31 @@ "requires": true, "dependencies": { "@babel/code-frame": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", - "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "version": "7.5.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", + "integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", "dev": true, "requires": { "@babel/highlight": "^7.0.0" } }, "@babel/core": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.4.4.tgz", - "integrity": "sha512-lQgGX3FPRgbz2SKmhMtYgJvVzGZrmjaF4apZ2bLwofAKiSjxU0drPh4S/VasyYXwaTs+A1gvQ45BN8SQJzHsQQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.4", - "@babel/helpers": "^7.4.4", - "@babel/parser": "^7.4.4", - "@babel/template": "^7.4.4", - "@babel/traverse": "^7.4.4", - "@babel/types": "^7.4.4", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.4.tgz", + "integrity": "sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.6.4", + "@babel/helpers": "^7.6.2", + "@babel/parser": "^7.6.4", + "@babel/template": "^7.6.0", + "@babel/traverse": "^7.6.3", + "@babel/types": "^7.6.3", "convert-source-map": "^1.1.0", "debug": "^4.1.0", "json5": "^2.1.0", - "lodash": "^4.17.11", + "lodash": "^4.17.13", "resolve": "^1.3.2", "semver": "^5.4.1", "source-map": "^0.5.0" @@ -45,30 +45,29 @@ } }, "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "@babel/generator": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz", - "integrity": "sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.4.tgz", + "integrity": "sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w==", "dev": true, "requires": { - "@babel/types": "^7.4.4", + "@babel/types": "^7.6.3", "jsesc": "^2.5.1", - "lodash": "^4.17.11", - "source-map": "^0.5.0", - "trim-right": "^1.0.1" + "lodash": "^4.17.13", + "source-map": "^0.5.0" } }, "@babel/helper-function-name": { @@ -107,20 +106,20 @@ } }, "@babel/helpers": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.4.tgz", - "integrity": "sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A==", + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz", + "integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==", "dev": true, "requires": { - "@babel/template": "^7.4.4", - "@babel/traverse": "^7.4.4", - "@babel/types": "^7.4.4" + "@babel/template": "^7.6.0", + "@babel/traverse": "^7.6.2", + "@babel/types": "^7.6.0" } }, "@babel/highlight": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", - "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz", + "integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==", "dev": true, "requires": { "chalk": "^2.0.0", @@ -129,9 +128,9 @@ } }, "@babel/parser": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.4.tgz", - "integrity": "sha512-5pCS4mOsL+ANsFZGdvNLybx4wtqAZJ0MJjMHxvzI3bvIsz6sQvzW8XX92EYIkiPtIvcfG3Aj+Ir5VNyjnZhP7w==", + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.4.tgz", + "integrity": "sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A==", "dev": true }, "@babel/plugin-syntax-object-rest-spread": { @@ -144,31 +143,31 @@ } }, "@babel/template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", - "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz", + "integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4" + "@babel/parser": "^7.6.0", + "@babel/types": "^7.6.0" } }, "@babel/traverse": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.4.tgz", - "integrity": "sha512-Gw6qqkw/e6AGzlyj9KnkabJX7VcubqPtkUQVAwkc0wUMldr3A/hezNB3Rc5eIvId95iSGkGIOe5hh1kMKf951A==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.3.tgz", + "integrity": "sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw==", "dev": true, "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/generator": "^7.4.4", + "@babel/code-frame": "^7.5.5", + "@babel/generator": "^7.6.3", "@babel/helper-function-name": "^7.1.0", "@babel/helper-split-export-declaration": "^7.4.4", - "@babel/parser": "^7.4.4", - "@babel/types": "^7.4.4", + "@babel/parser": "^7.6.3", + "@babel/types": "^7.6.3", "debug": "^4.1.0", "globals": "^11.1.0", - "lodash": "^4.17.11" + "lodash": "^4.17.13" }, "dependencies": { "debug": { @@ -181,21 +180,21 @@ } }, "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true } } }, "@babel/types": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", - "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.3.tgz", + "integrity": "sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA==", "dev": true, "requires": { "esutils": "^2.0.2", - "lodash": "^4.17.11", + "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" } }, @@ -399,12 +398,12 @@ } }, "@fimbul/bifrost": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/@fimbul/bifrost/-/bifrost-0.17.0.tgz", - "integrity": "sha512-gVTkJAOef5HtN6LPmrtt5fAUmBywwlgmObsU3FBhPoNeXPLaIl2zywXkJEtvvVLQnaFmtff3x+wIj5lHRCDE3Q==", + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@fimbul/bifrost/-/bifrost-0.21.0.tgz", + "integrity": "sha512-ou8VU+nTmOW1jeg+FT+sn+an/M0Xb9G16RucrfhjXGWv1Q97kCoM5CG9Qj7GYOSdu7km72k7nY83Eyr53Bkakg==", "dev": true, "requires": { - "@fimbul/ymir": "^0.17.0", + "@fimbul/ymir": "^0.21.0", "get-caller-file": "^2.0.0", "tslib": "^1.8.1", "tsutils": "^3.5.0" @@ -417,9 +416,9 @@ "dev": true }, "tsutils": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.10.0.tgz", - "integrity": "sha512-q20XSMq7jutbGB8luhKKsQldRKWvyBO2BGqni3p4yq8Ys9bEP/xQw3KepKmMRt9gJ4lvQSScrihJrcKdKoSU7Q==", + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", + "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", "dev": true, "requires": { "tslib": "^1.8.1" @@ -428,9 +427,9 @@ } }, "@fimbul/ymir": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/@fimbul/ymir/-/ymir-0.17.0.tgz", - "integrity": "sha512-xMXM9KTXRLHLVS6dnX1JhHNEkmWHcAVCQ/4+DA1KKwC/AFnGHzu/7QfQttEPgw3xplT+ILf9e3i64jrFwB3JtA==", + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/@fimbul/ymir/-/ymir-0.21.0.tgz", + "integrity": "sha512-T/y7WqPsm4n3zhT08EpB5sfdm2Kvw3gurAxr2Lr5dQeLi8ZsMlNT/Jby+ZmuuAAd1PnXYzKp+2SXgIkQIIMCUg==", "dev": true, "requires": { "inversify": "^5.0.0", @@ -439,48 +438,49 @@ } }, "@jest/console": { - "version": "24.7.1", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz", - "integrity": "sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz", + "integrity": "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ==", "dev": true, "requires": { - "@jest/source-map": "^24.3.0", + "@jest/source-map": "^24.9.0", "chalk": "^2.0.1", "slash": "^2.0.0" } }, "@jest/core": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz", - "integrity": "sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz", + "integrity": "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A==", "dev": true, "requires": { "@jest/console": "^24.7.1", - "@jest/reporters": "^24.8.0", - "@jest/test-result": "^24.8.0", - "@jest/transform": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/reporters": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", "ansi-escapes": "^3.0.0", "chalk": "^2.0.1", "exit": "^0.1.2", "graceful-fs": "^4.1.15", - "jest-changed-files": "^24.8.0", - "jest-config": "^24.8.0", - "jest-haste-map": "^24.8.0", - "jest-message-util": "^24.8.0", + "jest-changed-files": "^24.9.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-resolve-dependencies": "^24.8.0", - "jest-runner": "^24.8.0", - "jest-runtime": "^24.8.0", - "jest-snapshot": "^24.8.0", - "jest-util": "^24.8.0", - "jest-validate": "^24.8.0", - "jest-watcher": "^24.8.0", + "jest-resolve": "^24.9.0", + "jest-resolve-dependencies": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", + "jest-watcher": "^24.9.0", "micromatch": "^3.1.10", "p-each-series": "^1.0.0", - "pirates": "^4.0.1", "realpath-native": "^1.1.0", "rimraf": "^2.5.4", + "slash": "^2.0.0", "strip-ansi": "^5.0.0" }, "dependencies": { @@ -491,9 +491,9 @@ "dev": true }, "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true }, "strip-ansi": { @@ -508,38 +508,38 @@ } }, "@jest/environment": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz", - "integrity": "sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz", + "integrity": "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ==", "dev": true, "requires": { - "@jest/fake-timers": "^24.8.0", - "@jest/transform": "^24.8.0", - "@jest/types": "^24.8.0", - "jest-mock": "^24.8.0" + "@jest/fake-timers": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0" } }, "@jest/fake-timers": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz", - "integrity": "sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz", + "integrity": "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A==", "dev": true, "requires": { - "@jest/types": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-mock": "^24.8.0" + "@jest/types": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0" } }, "@jest/reporters": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz", - "integrity": "sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz", + "integrity": "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw==", "dev": true, "requires": { - "@jest/environment": "^24.8.0", - "@jest/test-result": "^24.8.0", - "@jest/transform": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", "exit": "^0.1.2", "glob": "^7.1.2", @@ -547,13 +547,13 @@ "istanbul-lib-instrument": "^3.0.1", "istanbul-lib-report": "^2.0.4", "istanbul-lib-source-maps": "^3.0.1", - "istanbul-reports": "^2.1.1", - "jest-haste-map": "^24.8.0", - "jest-resolve": "^24.8.0", - "jest-runtime": "^24.8.0", - "jest-util": "^24.8.0", + "istanbul-reports": "^2.2.6", + "jest-haste-map": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", "jest-worker": "^24.6.0", - "node-notifier": "^5.2.1", + "node-notifier": "^5.4.2", "slash": "^2.0.0", "source-map": "^0.6.0", "string-length": "^2.0.0" @@ -568,9 +568,9 @@ } }, "@jest/source-map": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", - "integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz", + "integrity": "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg==", "dev": true, "requires": { "callsites": "^3.0.0", @@ -579,9 +579,9 @@ }, "dependencies": { "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true }, "source-map": { @@ -593,45 +593,46 @@ } }, "@jest/test-result": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz", - "integrity": "sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz", + "integrity": "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA==", "dev": true, "requires": { - "@jest/console": "^24.7.1", - "@jest/types": "^24.8.0", + "@jest/console": "^24.9.0", + "@jest/types": "^24.9.0", "@types/istanbul-lib-coverage": "^2.0.0" } }, "@jest/test-sequencer": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz", - "integrity": "sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz", + "integrity": "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A==", "dev": true, "requires": { - "@jest/test-result": "^24.8.0", - "jest-haste-map": "^24.8.0", - "jest-runner": "^24.8.0", - "jest-runtime": "^24.8.0" + "@jest/test-result": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-runner": "^24.9.0", + "jest-runtime": "^24.9.0" } }, "@jest/transform": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz", - "integrity": "sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz", + "integrity": "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ==", "dev": true, "requires": { "@babel/core": "^7.1.0", - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "babel-plugin-istanbul": "^5.1.0", "chalk": "^2.0.1", "convert-source-map": "^1.4.0", "fast-json-stable-stringify": "^2.0.0", "graceful-fs": "^4.1.15", - "jest-haste-map": "^24.8.0", - "jest-regex-util": "^24.3.0", - "jest-util": "^24.8.0", + "jest-haste-map": "^24.9.0", + "jest-regex-util": "^24.9.0", + "jest-util": "^24.9.0", "micromatch": "^3.1.10", + "pirates": "^4.0.1", "realpath-native": "^1.1.0", "slash": "^2.0.0", "source-map": "^0.6.1", @@ -639,9 +640,9 @@ }, "dependencies": { "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true }, "source-map": { @@ -649,52 +650,33 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true - }, - "write-file-atomic": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", - "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } } } }, "@jest/types": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz", - "integrity": "sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz", + "integrity": "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==", "dev": true, "requires": { "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^12.0.9" - }, - "dependencies": { - "@types/yargs": { - "version": "12.0.12", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", - "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", - "dev": true - } + "@types/yargs": "^13.0.0" } }, "@sinonjs/commons": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.4.0.tgz", - "integrity": "sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBYGV/MT1/br/J+EE7Tw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.6.0.tgz", + "integrity": "sha512-w4/WHG7C4WWFyE5geCieFJF6MZkbW4VAriol5KlmQXpAQdxvV0p26sqNZOW6Qyw6Y0l9K4g+cHvvczR2sEEpqg==", "dev": true, "requires": { "type-detect": "4.0.8" } }, "@sinonjs/formatio": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.1.tgz", - "integrity": "sha512-tsHvOB24rvyvV2+zKMmPkZ7dXX6LSLKZ7aOtXY6Edklp0uRcgGpOsQTTGTcWViFyx4uhWc6GV8QdnALbIbIdeQ==", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.2.tgz", + "integrity": "sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ==", "dev": true, "requires": { "@sinonjs/commons": "^1", @@ -702,14 +684,14 @@ } }, "@sinonjs/samsam": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.2.tgz", - "integrity": "sha512-ILO/rR8LfAb60Y1Yfp9vxfYAASK43NFC2mLzpvLUbCQY/Qu8YwReboseu8aheCEkyElZF2L2T9mHcR2bgdvZyA==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.3.tgz", + "integrity": "sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ==", "dev": true, "requires": { - "@sinonjs/commons": "^1.0.2", + "@sinonjs/commons": "^1.3.0", "array-from": "^2.1.1", - "lodash": "^4.17.11" + "lodash": "^4.17.15" } }, "@sinonjs/text-encoding": { @@ -719,9 +701,9 @@ "dev": true }, "@types/babel__core": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz", - "integrity": "sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==", + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.3.tgz", + "integrity": "sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA==", "dev": true, "requires": { "@babel/parser": "^7.1.0", @@ -732,9 +714,9 @@ } }, "@types/babel__generator": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", - "integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.0.tgz", + "integrity": "sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw==", "dev": true, "requires": { "@babel/types": "^7.0.0" @@ -751,63 +733,51 @@ } }, "@types/babel__traverse": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.6.tgz", - "integrity": "sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw==", + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz", + "integrity": "sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw==", "dev": true, "requires": { "@babel/types": "^7.3.0" } }, "@types/bluebird": { - "version": "3.5.27", - "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.27.tgz", - "integrity": "sha512-6BmYWSBea18+tSjjSC3QIyV93ZKAeNWGM7R6aYt1ryTZXrlHF+QLV0G2yV0viEGVyRkyQsWfMoJ0k/YghBX5sQ==", + "version": "3.5.28", + "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.28.tgz", + "integrity": "sha512-0Vk/kqkukxPKSzP9c8WJgisgGDx5oZDbsLLWIP5t70yThO/YleE+GEm2S1GlRALTaack3O7U5OS5qEm7q2kciA==", "dev": true }, "@types/body-parser": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.0.tgz", - "integrity": "sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w==", + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.1.tgz", + "integrity": "sha512-RoX2EZjMiFMjZh9lmYrwgoP9RTpAjSHiJxdp4oidAQVO02T7HER3xj9UKue5534ULWeqVEkujhWcyvUce+d68w==", "requires": { "@types/connect": "*", "@types/node": "*" } }, "@types/chai": { - "version": "4.1.7", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.1.7.tgz", - "integrity": "sha512-2Y8uPt0/jwjhQ6EiluT0XCri1Dbplr0ZxfFXUz+ye13gaqE8u5gL5ppao1JrUYr9cIip5S6MvQzBS7Kke7U9VA==", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.3.tgz", + "integrity": "sha512-VRw2xEGbll3ZiTQ4J02/hUjNqZoue1bMhoo2dgM2LXjDdyaq4q80HgBDHwpI0/VKlo4Eg+BavyQMv/NYgTetzA==", "dev": true }, "@types/chai-as-promised": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.0.tgz", - "integrity": "sha512-MFiW54UOSt+f2bRw8J7LgQeIvE/9b4oGvwU7XW30S9QGAiHGnU/fmiOprsyMkdmH2rl8xSPc0/yrQw8juXU6bQ==", + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.2.tgz", + "integrity": "sha512-PO2gcfR3Oxa+u0QvECLe1xKXOqYTzCmWf0FhLhjREoW3fPAVamjihL7v1MOVLJLsnAMdLcjkfrs01yvDMwVK4Q==", "dev": true, "requires": { "@types/chai": "*" } }, "@types/chai-http": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@types/chai-http/-/chai-http-3.0.5.tgz", - "integrity": "sha512-nJ/oIvYley9+1Fec8xzDHsWrWSu5VTuhuF8iLabnRTQwRfSbAke6VuI7qBXvBN9Qqo/+gwsSaGyYndofTpiJ9A==", - "dev": true, - "requires": { - "@types/chai": "*", - "@types/node": "*", - "@types/superagent": "*" - } - }, - "@types/chokidar": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/@types/chokidar/-/chokidar-1.7.5.tgz", - "integrity": "sha512-PDkSRY7KltW3M60hSBlerxI8SFPXsO3AL/aRVsO4Kh9IHRW74Ih75gUuTd/aE4LSSFqypb10UIX3QzOJwBQMGQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@types/chai-http/-/chai-http-4.2.0.tgz", + "integrity": "sha512-yb8+55cAuiVB7/yfnHIME5Ppw0LMUE6QFbuBFk5LewleI5pvYvtoXIEUAst3z3m0wZ2hLp1XeqllzffOSJSQuA==", "dev": true, "requires": { - "@types/events": "*", - "@types/node": "*" + "chai-http": "*" } }, "@types/connect": { @@ -819,9 +789,9 @@ } }, "@types/continuation-local-storage": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.1.tgz", - "integrity": "sha1-oz4N+dzptCTRyY/E/evYV43O7H4=", + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@types/continuation-local-storage/-/continuation-local-storage-3.2.2.tgz", + "integrity": "sha512-aItm+aYPJ4rT1cHmAxO+OdWjSviQ9iB5UKb5f0Uvgln0N4hS2mcDodHtPiqicYBXViUYhqyBjhA5uyOcT+S34Q==", "dev": true, "requires": { "@types/node": "*" @@ -840,9 +810,9 @@ "dev": true }, "@types/dotenv": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/@types/dotenv/-/dotenv-4.0.3.tgz", - "integrity": "sha512-mmhpINC/HcLGQK5ikFJlLXINVvcxhlrV+ZOUJSN7/ottYl+8X4oSXzS9lBtDkmWAl96EGyGyLrNvk9zqdSH8Fw==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@types/dotenv/-/dotenv-6.1.1.tgz", + "integrity": "sha512-ftQl3DtBvqHl9L16tpqqzA4YzCSXZfi7g8cQceTz5rOlYtk/IZbFjAv3mLOQlNIgOaylCQWQoBdDQHPgEBJPHg==", "dev": true, "requires": { "@types/node": "*" @@ -854,9 +824,9 @@ "integrity": "sha512-KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA==" }, "@types/express": { - "version": "4.16.0", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.16.0.tgz", - "integrity": "sha512-TtPEYumsmSTtTetAPXlJVf3kEqb6wZK0bZojpJQrnD/djV4q1oB6QQ8aKvKqwNPACoe02GNiy5zDzcYivR5Z2w==", + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.1.tgz", + "integrity": "sha512-VfH/XCP0QbQk5B5puLqTLEeFgR8lfCJHZJKkInZ9mkYd+u8byX0kztXEQxEk4wZXJs8HI+7km2ALXjn4YKcX9w==", "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "*", @@ -878,9 +848,9 @@ "integrity": "sha512-Xqg/lIZMrUd0VRmSRbCAewtwGZiAk3mEUDvV4op1tGl+LvyPcb/MIOSxTl9z+9+J+R4/vpjiCAT4xeKzH9ji1w==" }, "@types/glob": { - "version": "5.0.35", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-5.0.35.tgz", - "integrity": "sha512-wc+VveszMLyMWFvXLkloixT4n0harUIVZjnpzztaZ0nKLuul7Z32iMt2fUFGAaZ4y1XWjFRMtCI5ewvyh4aIeg==", + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", + "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", "dev": true, "requires": { "@types/events": "*", @@ -899,14 +869,86 @@ } }, "@types/gulp": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.5.tgz", - "integrity": "sha512-nx1QjPTiRpvLfYsZ7MBu7bT6Cm7tAXyLbY0xbdx2IEMxCK2v2urIhJMQZHW0iV1TskM71Xl6p2uRRuWDbk+/7g==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/@types/gulp/-/gulp-4.0.6.tgz", + "integrity": "sha512-0E8/iV/7FKWyQWSmi7jnUvgXXgaw+pfAzEB06Xu+l0iXVJppLbpOye5z7E2klw5akXd+8kPtYuk65YBcZPM4ow==", "dev": true, "requires": { - "@types/chokidar": "*", "@types/undertaker": "*", - "@types/vinyl-fs": "*" + "@types/vinyl-fs": "*", + "chokidar": "^2.1.2" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + } } }, "@types/istanbul-lib-coverage": { @@ -935,9 +977,9 @@ } }, "@types/jest": { - "version": "24.0.13", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-24.0.13.tgz", - "integrity": "sha512-3m6RPnO35r7Dg+uMLj1+xfZaOgIHHHut61djNjzwExXN4/Pm9has9C6I1KMYSfz7mahDhWUOVg4HW/nZdv5Pww==", + "version": "24.0.19", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-24.0.19.tgz", + "integrity": "sha512-YYiqfSjocv7lk5H/T+v5MjATYjaTMsUkbDnjGqSMoO88jWdtJXJV4ST/7DKZcoMHMBvB2SeSfyOzZfkxXHR5xg==", "dev": true, "requires": { "@types/jest-diff": "*" @@ -956,9 +998,9 @@ "dev": true }, "@types/lodash": { - "version": "4.14.136", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.136.tgz", - "integrity": "sha512-0GJhzBdvsW2RUccNHOBkabI8HZVdOXmXbXhuKlDEd5Vv12P7oAVGfomGp3Ne21o5D/qu1WmthlNKFaoZJJeErA==", + "version": "4.14.144", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.144.tgz", + "integrity": "sha512-ogI4g9W5qIQQUhXAclq6zhqgqNUr7UlFaqDHbch7WLSLeeM/7d3CRaw7GLajxvyFvhJqw4Rpcz5bhoaYtIx6Tg==", "dev": true }, "@types/mime": { @@ -979,14 +1021,14 @@ "dev": true }, "@types/node": { - "version": "10.14.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-10.14.12.tgz", - "integrity": "sha512-QcAKpaO6nhHLlxWBvpc4WeLrTvPqlHOvaj0s5GriKkA1zq+bsFBPpfYCvQhLqLgYlIko8A9YrPdaMHCo5mBcpg==" + "version": "12.11.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.11.1.tgz", + "integrity": "sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==" }, "@types/node-forge": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-0.7.5.tgz", - "integrity": "sha512-1J0FVHFUUOovMuCd2nLmyZVlG+LkX49B1MpA6DGWmTX/tTU2HRmE5yB82DCOuQBjIMCDQQHx5v+nqUt0cSfWAw==", + "version": "0.8.6", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-0.8.6.tgz", + "integrity": "sha512-m2G+ipvx+1+BU4LrwrHcEGDk1MnioEVxTnCrkFsKT+BdDl/8OD3WbtspPFj3osnix9fzDIfy2O9p/AFyH3fTzg==", "dev": true, "requires": { "@types/node": "*" @@ -1002,15 +1044,15 @@ } }, "@types/semver": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.0.1.tgz", - "integrity": "sha512-ffCdcrEE5h8DqVxinQjo+2d1q+FV5z7iNtPofw3JsrltSoSVlOGaW0rY8XxtO9XukdTn8TaCGWmk2VFGhI70mg==", + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-6.0.2.tgz", + "integrity": "sha512-G1Ggy7/9Nsa1Jt2yiBR2riEuyK2DFNnqow6R7cromXPMNynackRY1vqFTLz/gwnef1LHokbXThcPhqMRjUbkpQ==", "dev": true }, "@types/sequelize": { - "version": "4.28.3", - "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.3.tgz", - "integrity": "sha512-Z+gbWsLmGnqnAz91I8Wtfbe+4D1aUyQ4aawYfohpvar4Azr8aSNwzS1rFQYO2dk6zcClt5k9n0qCek/YAq4WNw==", + "version": "4.28.6", + "resolved": "https://registry.npmjs.org/@types/sequelize/-/sequelize-4.28.6.tgz", + "integrity": "sha512-mtNHjfbS1DwQoYaBGuWW8aw6IUTkrq2XbjjAqcAqPLasxTbu8mXkz3n2VCNiytK18Z/kGtvh6U0VlK4BWXDbwA==", "dev": true, "requires": { "@types/bluebird": "*", @@ -1029,9 +1071,9 @@ } }, "@types/sinon": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-5.0.5.tgz", - "integrity": "sha512-Wnuv66VhvAD2LEJfZkq8jowXGxe+gjVibeLCYcVBp7QLdw0BFx2sRkKzoiiDkYEPGg5VyqO805Rcj0stVjQwCQ==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-7.5.0.tgz", + "integrity": "sha512-NyzhuSBy97B/zE58cDw4NyGvByQbAHNP9069KVSgnXt/sc0T6MFRh0InKAeBVHJWdSXG1S3+PxgVIgKo9mTHbw==", "dev": true }, "@types/stack-utils": { @@ -1040,16 +1082,6 @@ "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", "dev": true }, - "@types/superagent": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-4.1.2.tgz", - "integrity": "sha512-GISrJnl+eZSzkVdsP2bXARXaroe/qKTwl/7v/d7bHP4OhlZKKIExcvQexwTDWHGtalHSLVuM78/Ri54laoOFfQ==", - "dev": true, - "requires": { - "@types/cookiejar": "*", - "@types/node": "*" - } - }, "@types/swagger-ui-express": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@types/swagger-ui-express/-/swagger-ui-express-3.0.1.tgz", @@ -1061,12 +1093,11 @@ } }, "@types/undertaker": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.0.tgz", - "integrity": "sha512-bx/5nZCGkasXs6qaA3B6SVDjBZqdyk04UO12e0uEPSzjt5H8jEJw0DKe7O7IM0hM2bVHRh70pmOH7PEHqXwzOw==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/undertaker/-/undertaker-1.2.2.tgz", + "integrity": "sha512-j4iepCSuY2JGW/hShVtUBagic0klYNFIXP7VweavnYnNC2EjiKxJFeaS9uaJmAT0ty9sQSqTS1aagWMZMV0HyA==", "dev": true, "requires": { - "@types/events": "*", "@types/undertaker-registry": "*" } }, @@ -1086,36 +1117,44 @@ } }, "@types/validator": { - "version": "10.11.1", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-10.11.1.tgz", - "integrity": "sha512-bVhLqvb+5xUNWRFnuuecRVISTvsG6AdhrB2kb/tChgtuTTqARqlQ3rLhOPy8cINZEUB8PkR+goyWF6fWxg4iSw==", + "version": "10.11.3", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-10.11.3.tgz", + "integrity": "sha512-GKF2VnEkMmEeEGvoo03ocrP9ySMuX1ypKazIYMlsjfslfBMhOAtC5dmEWKdJioW4lJN7MZRS88kalTsVClyQ9w==", "dev": true }, "@types/vinyl": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.2.tgz", - "integrity": "sha512-2iYpNuOl98SrLPBZfEN9Mh2JCJ2EI9HU35SfgBEb51DcmaHkhp8cKMblYeBqMQiwXMgAD3W60DbQ4i/UdLiXhw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/vinyl/-/vinyl-2.0.3.tgz", + "integrity": "sha512-hrT6xg16CWSmndZqOTJ6BGIn2abKyTw0B58bI+7ioUoj3Sma6u8ftZ1DTI2yCaJamOVGLOnQWiPH3a74+EaqTA==", "dev": true, "requires": { "@types/node": "*" } }, "@types/vinyl-fs": { - "version": "2.4.9", - "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-2.4.9.tgz", - "integrity": "sha512-Q0EXd6c1fORjiOuK4ZaKdfFcMyFzJlTi56dqktwaWVLIDAzE49wUs3bKnYbZwzyMWoH+NcMWnRuR73S9A0jnRA==", + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/@types/vinyl-fs/-/vinyl-fs-2.4.11.tgz", + "integrity": "sha512-2OzQSfIr9CqqWMGqmcERE6Hnd2KY3eBVtFaulVo3sJghplUcaeMdL9ZjEiljcQQeHjheWY9RlNmumjIAvsBNaA==", "dev": true, "requires": { - "@types/events": "*", "@types/glob-stream": "*", "@types/node": "*", "@types/vinyl": "*" } }, "@types/yargs": { - "version": "11.1.2", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-11.1.2.tgz", - "integrity": "sha512-zG61PAp2OcoIBjRV44wftJj6AJgzJrOc32LCYOBqk9bdgcdzK5DCJHV9QZJ60+Fu+fOn79g8Ks3Gixm4CfkZ+w==", + "version": "13.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.3.tgz", + "integrity": "sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-13.1.0.tgz", + "integrity": "sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg==", "dev": true }, "JSONStream": { @@ -1129,9 +1168,9 @@ } }, "abab": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", - "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.2.tgz", + "integrity": "sha512-2scffjvioEmNz0OyDSLGWDfKCVwaKc6l9Pm9kOIREU13ClXZvHpg/nRL5xyjSSSLhOnXqft2HpsAzNEEA8cFFg==", "dev": true }, "abbrev": { @@ -1140,12 +1179,27 @@ "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" }, "accepts": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz", - "integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=", + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", "requires": { - "mime-types": "~2.1.18", - "negotiator": "0.6.1" + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "dependencies": { + "mime-db": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" + }, + "mime-types": { + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "requires": { + "mime-db": "1.40.0" + } + } } }, "acorn": { @@ -1155,9 +1209,9 @@ "dev": true }, "acorn-globals": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz", - "integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==", + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz", + "integrity": "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A==", "dev": true, "requires": { "acorn": "^6.0.1", @@ -1165,17 +1219,17 @@ }, "dependencies": { "acorn": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", - "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.3.0.tgz", + "integrity": "sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==", "dev": true } } }, "acorn-walk": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz", - "integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==", + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz", + "integrity": "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==", "dev": true }, "add-stream": { @@ -1185,9 +1239,9 @@ "dev": true }, "ajv": { - "version": "6.9.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.9.1.tgz", - "integrity": "sha512-XDN92U311aINL77ieWHmqCcNlwjoP5cHXDxIxbf2MaPYuCXOHS7gHH8jktxeK5omgd52XbSTX6a4Piwd1pQmzA==", + "version": "6.10.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", + "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", "requires": { "fast-deep-equal": "^2.0.1", "fast-json-stable-stringify": "^2.0.0", @@ -1503,9 +1557,9 @@ } }, "arg": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.0.tgz", - "integrity": "sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.1.tgz", + "integrity": "sha512-SlmP3fEA88MBv0PypnXZ8ZfJhwmDeIE3SP71j37AiXQBXYosPV0x6uISAaHYSlSVhmHOVkomen0tbGk6Anlebw==", "dev": true }, "argparse": { @@ -1710,9 +1764,9 @@ "integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=" }, "async-limiter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", - "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, "async-settle": { @@ -1753,44 +1807,27 @@ "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" }, "babel-jest": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz", - "integrity": "sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.9.0.tgz", + "integrity": "sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw==", "dev": true, "requires": { - "@jest/transform": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", "@types/babel__core": "^7.1.0", "babel-plugin-istanbul": "^5.1.0", - "babel-preset-jest": "^24.6.0", + "babel-preset-jest": "^24.9.0", "chalk": "^2.4.2", "slash": "^2.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - } } }, "babel-plugin-istanbul": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz", - "integrity": "sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz", + "integrity": "sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==", "dev": true, "requires": { + "@babel/helper-plugin-utils": "^7.0.0", "find-up": "^3.0.0", "istanbul-lib-instrument": "^3.3.0", "test-exclude": "^5.2.3" @@ -1804,66 +1841,26 @@ "requires": { "locate-path": "^3.0.0" } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true } } }, "babel-plugin-jest-hoist": { - "version": "24.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz", - "integrity": "sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz", + "integrity": "sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==", "dev": true, "requires": { "@types/babel__traverse": "^7.0.6" } }, "babel-preset-jest": { - "version": "24.6.0", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz", - "integrity": "sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz", + "integrity": "sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg==", "dev": true, "requires": { "@babel/plugin-syntax-object-rest-spread": "^7.0.0", - "babel-plugin-jest-hoist": "^24.6.0" + "babel-plugin-jest-hoist": "^24.9.0" } }, "bach": { @@ -1949,19 +1946,10 @@ "safe-buffer": "^5.0.1" } }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true, - "requires": { - "inherits": "~2.0.0" - } - }, "bluebird": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", - "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==" + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.0.tgz", + "integrity": "sha512-aBQ1FxIa7kSWCcmKHlcHFlT2jt6J/l4FzC7KcPELkOJOsPOb/bccdhmIrKDfXhwFrmc7vDoDrrepFvGqjyXGJg==" }, "bn.js": { "version": "4.11.8", @@ -2065,6 +2053,14 @@ "string-width": "^2.0.0", "term-size": "^1.2.0", "widest-line": "^2.0.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + } } }, "brace-expansion": { @@ -2170,9 +2166,9 @@ } }, "bser": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", - "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.0.tgz", + "integrity": "sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg==", "dev": true, "requires": { "node-int64": "^0.4.0" @@ -2206,11 +2202,6 @@ "long": "~3" } }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, "cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", @@ -2234,9 +2225,9 @@ "dev": true }, "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" }, "camelcase-keys": { "version": "4.2.0", @@ -2247,6 +2238,14 @@ "camelcase": "^4.1.0", "map-obj": "^2.0.0", "quick-lru": "^1.0.0" + }, + "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + } } }, "capture-exit": { @@ -2361,6 +2360,7 @@ "anymatch": "^2.0.0", "async-each": "^1.0.0", "braces": "^2.3.0", + "fsevents": "^1.1.2", "glob-parent": "^3.1.0", "inherits": "^2.0.1", "is-binary-path": "^1.0.0", @@ -2372,14 +2372,14 @@ } }, "chownr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==" + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.3.tgz", + "integrity": "sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw==" }, "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", "dev": true }, "cipher-base": { @@ -2619,9 +2619,9 @@ "integrity": "sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y=" }, "colors": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", - "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", + "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==" }, "colorspace": { "version": "1.1.2", @@ -2646,9 +2646,9 @@ } }, "commander": { - "version": "2.15.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.15.1.tgz", - "integrity": "sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag==", + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, "compare-func": { @@ -2659,17 +2659,6 @@ "requires": { "array-ify": "^1.0.0", "dot-prop": "^3.0.0" - }, - "dependencies": { - "dot-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz", - "integrity": "sha1-G3CK8JSknJoOfbyteQq6U52sEXc=", - "dev": true, - "requires": { - "is-obj": "^1.0.0" - } - } } }, "component-emitter": { @@ -2794,44 +2783,67 @@ } }, "concurrently": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-3.6.1.tgz", - "integrity": "sha512-/+ugz+gwFSEfTGUxn0KHkY+19XPRTXR8+7oUK/HxgiN1n7FjeJmkrbSiXAJfyQ0zORgJYPaenmymwon51YXH9Q==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-5.0.0.tgz", + "integrity": "sha512-1yDvK8mduTIdxIxV9C60KoiOySUl/lfekpdbI+U5GXaPrgdffEavFa9QZB3vh68oWOpbCC+TuvxXV9YRPMvUrA==", "dev": true, "requires": { - "chalk": "^2.4.1", - "commander": "2.6.0", - "date-fns": "^1.23.0", - "lodash": "^4.5.1", - "read-pkg": "^3.0.0", - "rx": "2.3.24", + "chalk": "^2.4.2", + "date-fns": "^2.0.1", + "lodash": "^4.17.15", + "read-pkg": "^4.0.1", + "rxjs": "^6.5.2", "spawn-command": "^0.0.2-1", - "supports-color": "^3.2.3", - "tree-kill": "^1.1.0" + "supports-color": "^4.5.0", + "tree-kill": "^1.2.1", + "yargs": "^12.0.5" }, "dependencies": { - "commander": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz", - "integrity": "sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0=", + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz", + "integrity": "sha1-6CB68cx7MNRGzHC3NLXovhj4jVE=", "dev": true }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "invert-kv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "dev": true + }, + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", "dev": true, "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" + "invert-kv": "^2.0.0" + } + }, + "os-locale": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "dev": true, + "requires": { + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" } }, "parse-json": { @@ -2844,39 +2856,54 @@ "json-parse-better-errors": "^1.0.1" } }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "read-pkg": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz", + "integrity": "sha1-ljYlN48+HE1IyFhytabsfV0JMjc=", "dev": true, "requires": { + "normalize-package-data": "^2.3.2", + "parse-json": "^4.0.0", "pify": "^3.0.0" } }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "supports-color": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz", + "integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=", "dev": true, "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "has-flag": "^2.0.0" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "dev": true + "yargs": { + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "dev": true, + "requires": { + "cliui": "^4.0.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", + "get-caller-file": "^1.0.1", + "os-locale": "^3.0.0", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^2.0.0", + "which-module": "^2.0.0", + "y18n": "^3.2.1 || ^4.0.0", + "yargs-parser": "^11.1.1" + } }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "yargs-parser": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", "dev": true, "requires": { - "has-flag": "^1.0.0" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" } } } @@ -2893,6 +2920,26 @@ "unique-string": "^1.0.0", "write-file-atomic": "^2.0.0", "xdg-basedir": "^3.0.0" + }, + "dependencies": { + "dot-prop": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", + "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", + "dev": true, + "requires": { + "is-obj": "^1.0.0" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "^3.0.0" + } + } } }, "console-control-strings": { @@ -2911,9 +2958,19 @@ "integrity": "sha1-9u+w15+cCYbT558pI6v5twtj1yY=" }, "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } }, "content-type": { "version": "1.0.4", @@ -2921,28 +2978,28 @@ "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" }, "conventional-changelog": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.8.tgz", - "integrity": "sha512-fb3/DOLLrQdNqN0yYn/lT6HcNsAa9A+VTDBqlZBMQcEPPIeJIMI+DBs3yu+eiYOLi22w9oShq3nn/zN6qm1Hmw==", - "dev": true, - "requires": { - "conventional-changelog-angular": "^5.0.3", - "conventional-changelog-atom": "^2.0.1", - "conventional-changelog-codemirror": "^2.0.1", - "conventional-changelog-conventionalcommits": "^3.0.2", - "conventional-changelog-core": "^3.2.2", - "conventional-changelog-ember": "^2.0.2", - "conventional-changelog-eslint": "^3.0.2", + "version": "3.1.12", + "resolved": "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.12.tgz", + "integrity": "sha512-zyGKwii8Z5zOq1nGFm5jn9Ou1jQ6UBoRT0+nqBIU8fEzh64+AcVxrY97tVuK77Ati0xwpBiFHpDXAW7pkq1jEw==", + "dev": true, + "requires": { + "conventional-changelog-angular": "^5.0.5", + "conventional-changelog-atom": "^2.0.3", + "conventional-changelog-codemirror": "^2.0.3", + "conventional-changelog-conventionalcommits": "^4.2.1", + "conventional-changelog-core": "^4.0.2", + "conventional-changelog-ember": "^2.0.4", + "conventional-changelog-eslint": "^3.0.4", "conventional-changelog-express": "^2.0.1", - "conventional-changelog-jquery": "^3.0.4", - "conventional-changelog-jshint": "^2.0.1", - "conventional-changelog-preset-loader": "^2.1.1" + "conventional-changelog-jquery": "^3.0.6", + "conventional-changelog-jshint": "^2.0.3", + "conventional-changelog-preset-loader": "^2.2.0" } }, "conventional-changelog-angular": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.3.tgz", - "integrity": "sha512-YD1xzH7r9yXQte/HF9JBuEDfvjxxwDGGwZU1+ndanbY0oFgA+Po1T9JDSpPLdP0pZT6MhCAsdvFKC4TJ4MTJTA==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.5.tgz", + "integrity": "sha512-RrkdWnL/TVyWV1ayWmSsrWorsTDqjL/VwG5ZSEneBQrd65ONcfeA1cW7FLtNweQyMiKOyriCMTKRSlk18DjTrw==", "dev": true, "requires": { "compare-func": "^1.3.1", @@ -2950,59 +3007,60 @@ } }, "conventional-changelog-atom": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.1.tgz", - "integrity": "sha512-9BniJa4gLwL20Sm7HWSNXd0gd9c5qo49gCi8nylLFpqAHhkFTj7NQfROq3f1VpffRtzfTQp4VKU5nxbe2v+eZQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.3.tgz", + "integrity": "sha512-szZe2ut97qNO6vCCMkm1I/tWu6ol4Rr8a9Lx0y/VlpDnpY0PNp+oGpFgU55lplhx+I3Lro9Iv4/gRj0knfgjzg==", "dev": true, "requires": { "q": "^1.5.1" } }, "conventional-changelog-cli": { - "version": "2.0.21", - "resolved": "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.0.21.tgz", - "integrity": "sha512-gMT1XvSVmo9Np1WUXz8Mvt3K+OtzR+Xu13z0jq/3qsXBbLuYc2/oaUXVr68r3fYOL8E9dN2uvX7Hc7RkeWvRVA==", + "version": "2.0.25", + "resolved": "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-2.0.25.tgz", + "integrity": "sha512-b0zNygHrFI4HjNmgPzDLSqoltIwo3pIfilWZFNH/1w6QIZoZHeA4SxojRgih9aCc0Eeg1RH7lXIPaRgHa9cv7A==", "dev": true, "requires": { "add-stream": "^1.0.0", - "conventional-changelog": "^3.1.8", - "lodash": "^4.2.1", + "conventional-changelog": "^3.1.12", + "lodash": "^4.14.14", "meow": "^4.0.0", - "tempfile": "^1.1.1" + "tempfile": "^3.0.0" } }, "conventional-changelog-codemirror": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.1.tgz", - "integrity": "sha512-23kT5IZWa+oNoUaDUzVXMYn60MCdOygTA2I+UjnOMiYVhZgmVwNd6ri/yDlmQGXHqbKhNR5NoXdBzSOSGxsgIQ==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.3.tgz", + "integrity": "sha512-t2afackdgFV2yBdHhWPqrKbpaQeVnz2hSJKdWqjasPo5EpIB6TBL0er3cOP1mnGQmuzk9JSvimNSuqjWGDtU5Q==", "dev": true, "requires": { "q": "^1.5.1" } }, "conventional-changelog-conventionalcommits": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-3.0.2.tgz", - "integrity": "sha512-w1+fQSDnm/7+sPKIYC5nfRVYDszt+6HdWizrigSqWFVIiiBVzkHGeqDLMSHc+Qq9qssHVAxAak5206epZyK87A==", + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.2.1.tgz", + "integrity": "sha512-vC02KucnkNNap+foDKFm7BVUSDAXktXrUJqGszUuYnt6T0J2azsbYz/w9TDc3VsrW2v6JOtiQWVcgZnporHr4Q==", "dev": true, "requires": { "compare-func": "^1.3.1", + "lodash": "^4.2.1", "q": "^1.5.1" } }, "conventional-changelog-core": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-3.2.2.tgz", - "integrity": "sha512-cssjAKajxaOX5LNAJLB+UOcoWjAIBvXtDMedv/58G+YEmAXMNfC16mmPl0JDOuVJVfIqM0nqQiZ8UCm8IXbE0g==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.0.2.tgz", + "integrity": "sha512-vQh7J+emZlcIA5alvI2xGikID2/iYKyk39dHmHEyU7/xvB9L9kq+3BzqbCXVstu7SD7isDfem27m/Qzu7R0BRA==", "dev": true, "requires": { - "conventional-changelog-writer": "^4.0.5", - "conventional-commits-parser": "^3.0.2", + "conventional-changelog-writer": "^4.0.9", + "conventional-commits-parser": "^3.0.5", "dateformat": "^3.0.0", "get-pkg-repo": "^1.0.0", "git-raw-commits": "2.0.0", "git-remote-origin-url": "^2.0.0", - "git-semver-tags": "^2.0.2", + "git-semver-tags": "^3.0.0", "lodash": "^4.2.1", "normalize-package-data": "^2.3.5", "q": "^1.5.1", @@ -3032,6 +3090,40 @@ "strip-bom": "^3.0.0" } }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -3042,6 +3134,12 @@ "json-parse-better-errors": "^1.0.1" } }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", @@ -3090,18 +3188,18 @@ } }, "conventional-changelog-ember": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.2.tgz", - "integrity": "sha512-qtZbA3XefO/n6DDmkYywDYi6wDKNNc98MMl2F9PKSaheJ25Trpi3336W8fDlBhq0X+EJRuseceAdKLEMmuX2tg==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.4.tgz", + "integrity": "sha512-q1u73sO9uCnxN4TSw8xu6MRU8Y1h9kpwtcdJuNRwu/LSKI1IE/iuNSH5eQ6aLlQ3HTyrIpTfUuVybW4W0F17rA==", "dev": true, "requires": { "q": "^1.5.1" } }, "conventional-changelog-eslint": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.2.tgz", - "integrity": "sha512-Yi7tOnxjZLXlCYBHArbIAm8vZ68QUSygFS7PgumPRiEk+9NPUeucy5Wg9AAyKoBprSV3o6P7Oghh4IZSLtKCvQ==", + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.4.tgz", + "integrity": "sha512-CPwTUENzhLGl3auunrJxiIEWncAGaby7gOFCdj2gslIuOFJ0KPJVOUhRz4Da/I53sdo/7UncUJkiLg94jEsjxg==", "dev": true, "requires": { "q": "^1.5.1" @@ -3117,18 +3215,18 @@ } }, "conventional-changelog-jquery": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.4.tgz", - "integrity": "sha512-IVJGI3MseYoY6eybknnTf9WzeQIKZv7aNTm2KQsiFVJH21bfP2q7XVjfoMibdCg95GmgeFlaygMdeoDDa+ZbEQ==", + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.6.tgz", + "integrity": "sha512-gHAABCXUNA/HjnZEm+vxAfFPJkgtrZvCDIlCKfdPVXtCIo/Q0lN5VKpx8aR5p8KdVRQFF3OuTlvv5kv6iPuRqA==", "dev": true, "requires": { "q": "^1.5.1" } }, "conventional-changelog-jshint": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.1.tgz", - "integrity": "sha512-kRFJsCOZzPFm2tzRHULWP4tauGMvccOlXYf3zGeuSW4U0mZhk5NsjnRZ7xFWrTFPlCLV+PNmHMuXp5atdoZmEg==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.3.tgz", + "integrity": "sha512-Pc2PnMPcez634ckzr4EOWviwRSpZcURaK7bjyD9oK6N5fsC/a+3G7LW5m/JpcHPhA9ZxsfIbm7uqZ3ZDGsQ/sw==", "dev": true, "requires": { "compare-func": "^1.3.1", @@ -3136,21 +3234,21 @@ } }, "conventional-changelog-preset-loader": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.1.1.tgz", - "integrity": "sha512-K4avzGMLm5Xw0Ek/6eE3vdOXkqnpf9ydb68XYmCc16cJ99XMMbc2oaNMuPwAsxVK6CC1yA4/I90EhmWNj0Q6HA==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.2.0.tgz", + "integrity": "sha512-zXB+5vF7D5Y3Cb/rJfSyCCvFphCVmF8mFqOdncX3BmjZwAtGAPfYrBcT225udilCKvBbHgyzgxqz2GWDB5xShQ==", "dev": true }, "conventional-changelog-writer": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.6.tgz", - "integrity": "sha512-ou/sbrplJMM6KQpR5rKFYNVQYesFjN7WpNGdudQSWNi6X+RgyFUcSv871YBYkrUYV9EX8ijMohYVzn9RUb+4ag==", + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.9.tgz", + "integrity": "sha512-2Y3QfiAM37WvDMjkVNaRtZgxVzWKj73HE61YQ/95T53yle+CRwTVSl6Gbv/lWVKXeZcM5af9n9TDVf0k7Xh+cw==", "dev": true, "requires": { "compare-func": "^1.3.1", "conventional-commits-filter": "^2.0.2", "dateformat": "^3.0.0", - "handlebars": "^4.1.0", + "handlebars": "^4.4.0", "json-stringify-safe": "^5.0.1", "lodash": "^4.2.1", "meow": "^4.0.0", @@ -3159,6 +3257,24 @@ "through2": "^3.0.0" }, "dependencies": { + "handlebars": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.4.3.tgz", + "integrity": "sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw==", + "dev": true, + "requires": { + "neo-async": "^2.6.0", + "optimist": "^0.6.1", + "source-map": "^0.6.1", + "uglify-js": "^3.1.4" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + }, "through2": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", @@ -3181,9 +3297,9 @@ } }, "conventional-commits-parser": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.0.3.tgz", - "integrity": "sha512-KaA/2EeUkO4bKjinNfGUyqPTX/6w9JGshuQRik4r/wJz7rUw3+D3fDG6sZSEqJvKILzKXFQuFkpPLclcsAuZcg==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.0.5.tgz", + "integrity": "sha512-qVz9+5JwdJzsbt7JbJ6P7NOXBGt8CyLFJYSjKAuPSgO+5UGfcsbk9EMR+lI8Unlvx6qwIc2YDJlrGIfay2ehNA==", "dev": true, "requires": { "JSONStream": "^1.0.4", @@ -3212,9 +3328,9 @@ "integrity": "sha1-uCeAl7m8IpNl3lxiz1/K7YtVmeU=" }, "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" }, "cookie-signature": { "version": "1.0.6", @@ -3375,13 +3491,24 @@ "integrity": "sha512-9kViqCcAwlPLTeSDPlyC2FdMQ5UVPtGZUnGV8vYDcBA3olJ/hDR7H6IfrNJft2DlKONleHf8CMhD+7Uv2tBnEw==" }, "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, "requires": { - "lru-cache": "^4.0.1", + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", "shebang-command": "^1.2.0", "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "crypto-random-string": { @@ -3391,15 +3518,15 @@ "dev": true }, "cssom": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz", - "integrity": "sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==", + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", "dev": true }, "cssstyle": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz", - "integrity": "sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz", + "integrity": "sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==", "dev": true, "requires": { "cssom": "0.3.x" @@ -3465,9 +3592,9 @@ } }, "date-fns": { - "version": "1.30.1", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", - "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.4.1.tgz", + "integrity": "sha512-2RhmH/sjDSCYW2F3ZQxOUx/I7PvzXpi89aQL2d3OAxSTwLx6NilATeUbe0menFE3Lu5lFkOFci36ivimwYHHxw==", "dev": true }, "date.js": { @@ -3530,12 +3657,6 @@ "type-detect": "^4.0.0" } }, - "deep-equal": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", - "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", - "dev": true - }, "deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", @@ -3585,12 +3706,6 @@ "isobject": "^3.0.1" } }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", - "dev": true - }, "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -3644,9 +3759,9 @@ "dev": true }, "diff-sequences": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", - "integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.9.0.tgz", + "integrity": "sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew==", "dev": true }, "distributions-poisson-cdf": { @@ -3730,18 +3845,18 @@ } }, "dot-prop": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", - "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz", + "integrity": "sha1-G3CK8JSknJoOfbyteQq6U52sEXc=", "dev": true, "requires": { "is-obj": "^1.0.0" } }, "dotenv": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-5.0.1.tgz", - "integrity": "sha512-4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow==" + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" }, "dottie": { "version": "2.0.1", @@ -3853,6 +3968,11 @@ "minimalistic-crypto-utils": "^1.0.0" } }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, "enabled": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/enabled/-/enabled-1.0.2.tgz", @@ -3900,17 +4020,21 @@ "dev": true }, "es-abstract": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", - "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.15.0.tgz", + "integrity": "sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ==", "dev": true, "requires": { "es-to-primitive": "^1.2.0", "function-bind": "^1.1.1", "has": "^1.0.3", + "has-symbols": "^1.0.0", "is-callable": "^1.1.4", "is-regex": "^1.0.4", - "object-keys": "^1.0.12" + "object-inspect": "^1.6.0", + "object-keys": "^1.1.1", + "string.prototype.trimleft": "^2.1.0", + "string.prototype.trimright": "^2.1.0" }, "dependencies": { "object-keys": { @@ -3983,9 +4107,9 @@ "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" }, "escodegen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", - "integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.12.0.tgz", + "integrity": "sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg==", "dev": true, "requires": { "esprima": "^3.1.3", @@ -3995,12 +4119,6 @@ "source-map": "~0.6.1" }, "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", - "dev": true - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -4011,21 +4129,21 @@ } }, "esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", "dev": true }, "estraverse": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", - "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true }, "esutils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", - "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true }, "etag": { @@ -4049,12 +4167,13 @@ "dev": true }, "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", "is-stream": "^1.1.0", "npm-run-path": "^2.0.0", "p-finally": "^1.0.0", @@ -4168,17 +4287,17 @@ } }, "expect": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz", - "integrity": "sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.9.0.tgz", + "integrity": "sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "ansi-styles": "^3.2.0", - "jest-get-type": "^24.8.0", - "jest-matcher-utils": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-regex-util": "^24.3.0" + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-regex-util": "^24.9.0" }, "dependencies": { "ansi-styles": { @@ -4193,59 +4312,42 @@ } }, "express": { - "version": "4.16.3", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.3.tgz", - "integrity": "sha1-avilAjUNsyRuzEvs9rWjTSL37VM=", + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", "requires": { - "accepts": "~1.3.5", + "accepts": "~1.3.7", "array-flatten": "1.1.1", - "body-parser": "1.18.2", - "content-disposition": "0.5.2", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", "content-type": "~1.0.4", - "cookie": "0.3.1", + "cookie": "0.4.0", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "~1.1.2", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", - "finalhandler": "1.1.1", + "finalhandler": "~1.1.2", "fresh": "0.5.2", "merge-descriptors": "1.0.1", "methods": "~1.1.2", "on-finished": "~2.3.0", - "parseurl": "~1.3.2", + "parseurl": "~1.3.3", "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.3", - "qs": "6.5.1", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.1", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "dependencies": { - "body-parser": { - "version": "1.18.2", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz", - "integrity": "sha1-h2eKGdhLR9hZuDGZvVm84iKxBFQ=", - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.1", - "http-errors": "~1.6.2", - "iconv-lite": "0.4.19", - "on-finished": "~2.3.0", - "qs": "6.5.1", - "raw-body": "2.3.2", - "type-is": "~1.6.15" - } - }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -4255,48 +4357,14 @@ } }, "qs": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz", - "integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A==" + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" }, - "raw-body": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz", - "integrity": "sha1-vNYMd9Prk83gBQKVw/N5OJvIj4k=", - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.2", - "iconv-lite": "0.4.19", - "unpipe": "1.0.0" - }, - "dependencies": { - "depd": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz", - "integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k=" - }, - "http-errors": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz", - "integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=", - "requires": { - "depd": "1.1.1", - "inherits": "2.0.3", - "setprototypeof": "1.0.3", - "statuses": ">= 1.3.1 < 2" - } - }, - "setprototypeof": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz", - "integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=" - } - } - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" } } }, @@ -4457,16 +4525,16 @@ } }, "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", "unpipe": "~1.0.0" }, "dependencies": { @@ -4477,11 +4545,6 @@ "requires": { "ms": "2.0.0" } - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" } } }, @@ -4522,6 +4585,23 @@ "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==" }, + "flat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz", + "integrity": "sha512-Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==", + "dev": true, + "requires": { + "is-buffer": "~2.0.3" + }, + "dependencies": { + "is-buffer": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", + "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==", + "dev": true + } + } + }, "flush-write-stream": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", @@ -4555,15 +4635,6 @@ } } }, - "for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dev": true, - "requires": { - "is-callable": "^1.1.3" - } - }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -4647,11 +4718,11 @@ } }, "fs-minipass": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz", - "integrity": "sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==", + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", + "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", "requires": { - "minipass": "^2.2.1" + "minipass": "^2.6.0" } }, "fs-mkdirp-stream": { @@ -4668,490 +4739,1438 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } - }, - "fstream-ignore": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz", - "integrity": "sha1-nDHa40dnAY/h0kmyTa2mfQktoQU=", - "dev": true, - "requires": { - "fstream": "^1.0.0", - "inherits": "2", - "minimatch": "^3.0.0" - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "gamma": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gamma/-/gamma-1.0.0.tgz", - "integrity": "sha1-mDwck5/iPZMnAVhXEeHZpDDLdMs=" - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "fsevents": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", + "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "optional": true, "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" + "nan": "^2.12.1", + "node-pre-gyp": "^0.12.0" }, "dependencies": { - "is-fullwidth-code-point": { + "abbrev": { + "version": "1.1.1", + "bundled": true, + "optional": true + }, + "ansi-regex": { + "version": "2.1.1", + "bundled": true, + "optional": true + }, + "aproba": { + "version": "1.2.0", + "bundled": true, + "optional": true + }, + "are-we-there-yet": { + "version": "1.1.5", + "bundled": true, + "optional": true, + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "balanced-match": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "bundled": true, + "optional": true + }, + "brace-expansion": { + "version": "1.1.11", + "bundled": true, + "optional": true, "requires": { - "number-is-nan": "^1.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "string-width": { + "chownr": { + "version": "1.1.1", + "bundled": true, + "optional": true + }, + "code-point-at": { + "version": "1.1.0", + "bundled": true, + "optional": true + }, + "concat-map": { + "version": "0.0.1", + "bundled": true, + "optional": true + }, + "console-control-strings": { + "version": "1.1.0", + "bundled": true, + "optional": true + }, + "core-util-is": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "bundled": true, + "optional": true + }, + "debug": { + "version": "4.1.1", + "bundled": true, + "optional": true, "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "ms": "^2.1.1" } }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "deep-extend": { + "version": "0.6.0", + "bundled": true, + "optional": true + }, + "delegates": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "detect-libc": { + "version": "1.0.3", + "bundled": true, + "optional": true + }, + "fs-minipass": { + "version": "1.2.5", + "bundled": true, + "optional": true, "requires": { - "ansi-regex": "^2.0.0" + "minipass": "^2.2.1" } - } - } - }, - "generic-pool": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.5.0.tgz", - "integrity": "sha512-dEkxmX+egB2o4NR80c/q+xzLLzLX+k68/K8xv81XprD+Sk7ZtP14VugeCz+fUwv5FzpWq40pPtAkzPRqT8ka9w==" - }, - "get-caller-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", - "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" - }, - "get-func-name": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", - "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", - "dev": true - }, - "get-object": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/get-object/-/get-object-0.2.0.tgz", - "integrity": "sha1-2S/31RkMZFMM2gVD2sY6PUf+jAw=", - "dev": true, - "requires": { - "is-number": "^2.0.2", - "isobject": "^0.2.0" - }, - "dependencies": { - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, + }, + "fs.realpath": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "gauge": { + "version": "2.7.4", + "bundled": true, + "optional": true, "requires": { - "kind-of": "^3.0.2" + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" } }, - "isobject": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-0.2.0.tgz", - "integrity": "sha1-o0MhkvObkQtfAsyYlIeDbscKqF4=", - "dev": true - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, + "glob": { + "version": "7.1.3", + "bundled": true, + "optional": true, "requires": { - "is-buffer": "^1.1.5" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } - } - } - }, - "get-pkg-repo": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz", - "integrity": "sha1-xztInAbYDMVTbCyFP54FIyBWly0=", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "meow": "^3.3.0", - "normalize-package-data": "^2.3.0", - "parse-github-repo-url": "^1.3.0", - "through2": "^2.0.0" - }, - "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, + "has-unicode": { + "version": "2.0.1", + "bundled": true, + "optional": true + }, + "iconv-lite": { + "version": "0.4.24", + "bundled": true, + "optional": true, "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" + "safer-buffer": ">= 2.1.2 < 3" } }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, + "ignore-walk": { + "version": "3.0.1", + "bundled": true, + "optional": true, "requires": { - "repeating": "^2.0.0" + "minimatch": "^3.0.4" } }, - "map-obj": { + "inflight": { + "version": "1.0.6", + "bundled": true, + "optional": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "bundled": true, + "optional": true + }, + "ini": { + "version": "1.3.5", + "bundled": true, + "optional": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "bundled": true, + "optional": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "bundled": true, + "optional": true + }, + "minimatch": { + "version": "3.0.4", + "bundled": true, + "optional": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "0.0.8", + "bundled": true, + "optional": true + }, + "minipass": { + "version": "2.3.5", + "bundled": true, + "optional": true, + "requires": { + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" + } + }, + "minizlib": { + "version": "1.2.1", + "bundled": true, + "optional": true, + "requires": { + "minipass": "^2.2.1" + } + }, + "mkdirp": { + "version": "0.5.1", + "bundled": true, + "optional": true, + "requires": { + "minimist": "0.0.8" + } + }, + "ms": { + "version": "2.1.1", + "bundled": true, + "optional": true + }, + "needle": { + "version": "2.3.0", + "bundled": true, + "optional": true, + "requires": { + "debug": "^4.1.0", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.12.0", + "bundled": true, + "optional": true, + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + } + }, + "nopt": { + "version": "4.0.1", + "bundled": true, + "optional": true, + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "npm-bundled": { + "version": "1.0.6", + "bundled": true, + "optional": true + }, + "npm-packlist": { + "version": "1.4.1", + "bundled": true, + "optional": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, + "npmlog": { + "version": "4.1.2", + "bundled": true, + "optional": true, + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { + "version": "1.0.1", + "bundled": true, + "optional": true + }, + "object-assign": { + "version": "4.1.1", + "bundled": true, + "optional": true + }, + "once": { + "version": "1.4.0", + "bundled": true, + "optional": true, + "requires": { + "wrappy": "1" + } + }, + "os-homedir": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "os-tmpdir": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "osenv": { + "version": "0.1.5", + "bundled": true, + "optional": true, + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "bundled": true, + "optional": true + }, + "process-nextick-args": { + "version": "2.0.0", + "bundled": true, + "optional": true + }, + "rc": { + "version": "1.2.8", + "bundled": true, + "optional": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "optional": true + } + } + }, + "readable-stream": { + "version": "2.3.6", + "bundled": true, + "optional": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rimraf": { + "version": "2.6.3", + "bundled": true, + "optional": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "bundled": true, + "optional": true + }, + "safer-buffer": { + "version": "2.1.2", + "bundled": true, + "optional": true + }, + "sax": { + "version": "1.2.4", + "bundled": true, + "optional": true + }, + "semver": { + "version": "5.7.0", + "bundled": true, + "optional": true + }, + "set-blocking": { + "version": "2.0.0", + "bundled": true, + "optional": true + }, + "signal-exit": { + "version": "3.0.2", + "bundled": true, + "optional": true + }, + "string-width": { + "version": "1.0.2", + "bundled": true, + "optional": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "bundled": true, + "optional": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "bundled": true, + "optional": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "optional": true + }, + "tar": { + "version": "4.4.8", + "bundled": true, + "optional": true, + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.3.4", + "minizlib": "^1.1.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.2" + } + }, + "util-deprecate": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "wide-align": { + "version": "1.1.3", + "bundled": true, + "optional": true, + "requires": { + "string-width": "^1.0.2 || 2" + } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "optional": true + }, + "yallist": { + "version": "3.0.3", + "bundled": true, + "optional": true + } + } + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "gamma": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gamma/-/gamma-1.0.0.tgz", + "integrity": "sha1-mDwck5/iPZMnAVhXEeHZpDDLdMs=" + }, + "gauge": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + }, + "dependencies": { + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "generic-pool": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/generic-pool/-/generic-pool-3.5.0.tgz", + "integrity": "sha512-dEkxmX+egB2o4NR80c/q+xzLLzLX+k68/K8xv81XprD+Sk7ZtP14VugeCz+fUwv5FzpWq40pPtAkzPRqT8ka9w==" + }, + "get-caller-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz", + "integrity": "sha1-9wLmMSfn4jHBYKgMFVSstw1QR+U=" + }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", + "dev": true + }, + "get-object": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/get-object/-/get-object-0.2.0.tgz", + "integrity": "sha1-2S/31RkMZFMM2gVD2sY6PUf+jAw=", + "dev": true, + "requires": { + "is-number": "^2.0.2", + "isobject": "^0.2.0" + }, + "dependencies": { + "is-number": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", + "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + } + }, + "isobject": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-0.2.0.tgz", + "integrity": "sha1-o0MhkvObkQtfAsyYlIeDbscKqF4=", + "dev": true + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "get-pkg-repo": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz", + "integrity": "sha1-xztInAbYDMVTbCyFP54FIyBWly0=", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "meow": "^3.3.0", + "normalize-package-data": "^2.3.0", + "parse-github-repo-url": "^1.3.0", + "through2": "^2.0.0" + }, + "dependencies": { + "camelcase-keys": { + "version": "2.1.0", + "resolved": "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "map-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", "dev": true }, - "meow": { - "version": "3.7.0", - "resolved": "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, + "meow": { + "version": "3.7.0", + "resolved": "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + } + } + }, + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "^3.0.0" + }, + "dependencies": { + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "git-raw-commits": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.0.tgz", + "integrity": "sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==", + "dev": true, + "requires": { + "dargs": "^4.0.1", + "lodash.template": "^4.0.2", + "meow": "^4.0.0", + "split2": "^2.0.0", + "through2": "^2.0.0" + } + }, + "git-remote-origin-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", + "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", + "dev": true, + "requires": { + "gitconfiglocal": "^1.0.0", + "pify": "^2.3.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "git-semver-tags": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-3.0.0.tgz", + "integrity": "sha512-T4C/gJ9k2Bnxz+PubtcyiMtUUKrC+Nh9Q4zaECcnmVMwJgPhrNyP/Rf+YpdRqsJbCV/+kYrCH24Xg+IeAmbOPg==", + "dev": true, + "requires": { + "meow": "^4.0.0", + "semver": "^6.0.0" + } + }, + "gitconfiglocal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", + "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", + "dev": true, + "requires": { + "ini": "^1.3.2" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + } + }, + "glob-watcher": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.3.tgz", + "integrity": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==", + "requires": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "object.defaults": "^1.1.0" + } + }, + "global-dirs": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", + "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", + "dev": true, + "requires": { + "ini": "^1.3.4" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "requires": { + "sparkles": "^1.0.0" + } + }, + "google-protobuf": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.10.0.tgz", + "integrity": "sha512-d0cMO8TJ6xtB/WrVHCv5U81L2ulX+aCD58IljyAN6mHwdHHJ2jbcauX5glvivi3s3hx7EYEo7eUA9WftzamMnw==" + }, + "got": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", + "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "dev": true, + "requires": { + "create-error-class": "^3.0.0", + "duplexer3": "^0.1.4", + "get-stream": "^3.0.0", + "is-redirect": "^1.0.0", + "is-retry-allowed": "^1.0.0", + "is-stream": "^1.0.0", + "lowercase-keys": "^1.0.0", + "safe-buffer": "^5.0.1", + "timed-out": "^4.0.0", + "unzip-response": "^2.0.1", + "url-parse-lax": "^1.0.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", + "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" + }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "grpc": { + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/grpc/-/grpc-1.24.0.tgz", + "integrity": "sha512-zq1rUh2uzfMqSfQ3bZvlQuX5yKfd/2vob+l9sK5Qma6P33m7UvyMCVW70+Wz0WTzy9W2A94eQD5XIOxKnZhsYQ==", + "requires": { + "lodash.camelcase": "^4.3.0", + "lodash.clone": "^4.5.0", + "nan": "^2.13.2", + "node-pre-gyp": "^0.13.0", + "protobufjs": "^5.0.3" + }, + "dependencies": { + "abbrev": { + "version": "1.1.1", + "resolved": false, + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": false, + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "aproba": { + "version": "1.2.0", + "resolved": false, + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "are-we-there-yet": { + "version": "1.1.5", + "resolved": false, + "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "requires": { + "delegates": "^1.0.0", + "readable-stream": "^2.0.6" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": false, + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": false, + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "chownr": { + "version": "1.1.2", + "resolved": false, + "integrity": "sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==" + }, + "code-point-at": { + "version": "1.1.0", + "resolved": false, + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + }, + "concat-map": { + "version": "0.0.1", + "resolved": false, + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "console-control-strings": { + "version": "1.1.0", + "resolved": false, + "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "debug": { + "version": "3.2.6", + "resolved": false, + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "deep-extend": { + "version": "0.6.0", + "resolved": false, + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + }, + "delegates": { + "version": "1.0.0", + "resolved": false, + "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + }, + "detect-libc": { + "version": "1.0.3", + "resolved": false, + "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" + }, + "fs-minipass": { + "version": "1.2.6", + "resolved": false, + "integrity": "sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==", + "requires": { + "minipass": "^2.2.1" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": false, + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "gauge": { + "version": "2.7.4", + "resolved": false, + "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "requires": { + "aproba": "^1.0.3", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.0", + "object-assign": "^4.1.0", + "signal-exit": "^3.0.0", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wide-align": "^1.1.0" + } + }, + "glob": { + "version": "7.1.4", + "resolved": false, + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-unicode": { + "version": "2.0.1", + "resolved": false, + "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": false, + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore-walk": { + "version": "3.0.1", + "resolved": false, + "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "requires": { + "minimatch": "^3.0.4" + } + }, + "inflight": { + "version": "1.0.6", + "resolved": false, + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": false, + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.5", + "resolved": false, + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": false, + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": false, + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": false, + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" + "brace-expansion": "^1.1.7" } }, "minimist": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true + "resolved": false, + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, + "minipass": { + "version": "2.3.5", + "resolved": false, + "integrity": "sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==", "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" + "safe-buffer": "^5.1.2", + "yallist": "^3.0.0" } }, - "strip-indent": { + "minizlib": { + "version": "1.2.1", + "resolved": false, + "integrity": "sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==", + "requires": { + "minipass": "^2.2.1" + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": false, + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": false, + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": false, + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "needle": { + "version": "2.4.0", + "resolved": false, + "integrity": "sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==", + "requires": { + "debug": "^3.2.6", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" + } + }, + "node-pre-gyp": { + "version": "0.13.0", + "resolved": false, + "integrity": "sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==", + "requires": { + "detect-libc": "^1.0.2", + "mkdirp": "^0.5.1", + "needle": "^2.2.1", + "nopt": "^4.0.1", + "npm-packlist": "^1.1.6", + "npmlog": "^4.0.2", + "rc": "^1.2.7", + "rimraf": "^2.6.1", + "semver": "^5.3.0", + "tar": "^4" + } + }, + "nopt": { + "version": "4.0.1", + "resolved": false, + "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "requires": { + "abbrev": "1", + "osenv": "^0.1.4" + } + }, + "npm-bundled": { + "version": "1.0.6", + "resolved": false, + "integrity": "sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==" + }, + "npm-packlist": { + "version": "1.4.4", + "resolved": false, + "integrity": "sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==", + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, + "npmlog": { + "version": "4.1.2", + "resolved": false, + "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "requires": { + "are-we-there-yet": "~1.1.2", + "console-control-strings": "~1.1.0", + "gauge": "~2.7.3", + "set-blocking": "~2.0.0" + } + }, + "number-is-nan": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, + "resolved": false, + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + }, + "object-assign": { + "version": "4.1.1", + "resolved": false, + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "once": { + "version": "1.4.0", + "resolved": false, + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", "requires": { - "get-stdin": "^4.0.1" + "wrappy": "1" } }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - } - } - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "requires": { - "assert-plus": "^1.0.0" - } - }, - "git-raw-commits": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.0.tgz", - "integrity": "sha512-w4jFEJFgKXMQJ0H0ikBk2S+4KP2VEjhCvLCNqbNRQC8BgGWgLKNCO7a9K9LI+TVT7Gfoloje502sEnctibffgg==", - "dev": true, - "requires": { - "dargs": "^4.0.1", - "lodash.template": "^4.0.2", - "meow": "^4.0.0", - "split2": "^2.0.0", - "through2": "^2.0.0" - } - }, - "git-remote-origin-url": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz", - "integrity": "sha1-UoJlna4hBxRaERJhEq0yFuxfpl8=", - "dev": true, - "requires": { - "gitconfiglocal": "^1.0.0", - "pify": "^2.3.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, - "git-semver-tags": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-2.0.2.tgz", - "integrity": "sha512-34lMF7Yo1xEmsK2EkbArdoU79umpvm0MfzaDkSNYSJqtM5QLAVTPWgpiXSVI5o/O9EvZPSrP4Zvnec/CqhSd5w==", - "dev": true, - "requires": { - "meow": "^4.0.0", - "semver": "^5.5.0" - }, - "dependencies": { + "os-homedir": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + }, + "osenv": { + "version": "0.1.5", + "resolved": false, + "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "requires": { + "os-homedir": "^1.0.0", + "os-tmpdir": "^1.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": false, + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": false, + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "rc": { + "version": "1.2.8", + "resolved": false, + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": false, + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": false, + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": false, + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": false, + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": false, + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "gitconfiglocal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz", - "integrity": "sha1-QdBF84UaXqiPA/JMocYXgRRGS5s=", - "dev": true, - "requires": { - "ini": "^1.3.2" - } - }, - "glob": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", - "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "version": "5.7.1", + "resolved": false, + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "set-blocking": { + "version": "2.0.0", + "resolved": false, + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "signal-exit": { + "version": "3.0.2", + "resolved": false, + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + }, + "string-width": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "requires": { - "is-extglob": "^2.1.0" + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": false, + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": false, + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": false, + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + }, + "tar": { + "version": "4.4.10", + "resolved": false, + "integrity": "sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==", + "requires": { + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.3.5", + "minizlib": "^1.2.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.3" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "wide-align": { + "version": "1.1.3", + "resolved": false, + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "requires": { + "string-width": "^1.0.2 || 2" } + }, + "wrappy": { + "version": "1.0.2", + "resolved": false, + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "yallist": { + "version": "3.0.3", + "resolved": false, + "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" } } }, - "glob-stream": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", - "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", - "requires": { - "extend": "^3.0.0", - "glob": "^7.1.1", - "glob-parent": "^3.1.0", - "is-negated-glob": "^1.0.0", - "ordered-read-streams": "^1.0.0", - "pumpify": "^1.3.5", - "readable-stream": "^2.1.5", - "remove-trailing-separator": "^1.0.1", - "to-absolute-glob": "^2.0.0", - "unique-stream": "^2.0.2" - } - }, - "glob-watcher": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.3.tgz", - "integrity": "sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg==", - "requires": { - "anymatch": "^2.0.0", - "async-done": "^1.2.0", - "chokidar": "^2.0.0", - "is-negated-glob": "^1.0.0", - "just-debounce": "^1.0.0", - "object.defaults": "^1.1.0" - } - }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "dev": true, - "requires": { - "ini": "^1.3.4" - } - }, - "global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "requires": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - } - }, - "global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", - "requires": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - } - }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true - }, - "glogg": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", - "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", - "requires": { - "sparkles": "^1.0.0" - } - }, - "google-protobuf": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.5.0.tgz", - "integrity": "sha1-uMxjx02DRXvYqakEUDyO+ya8ozk=" - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", + "grpc-tools": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/grpc-tools/-/grpc-tools-1.8.0.tgz", + "integrity": "sha512-GzYHjPQ/sbV/DmnNRksapMlLj26Tvq2Qppmzjmd+lHYZNeWM1feiGsYCduzJLyy295P+3uYIPy2/w/1thAnOow==", "dev": true, "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.1.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz", - "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=" - }, - "growl": { - "version": "1.10.5", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", - "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", - "dev": true - }, - "growly": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", - "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", - "dev": true - }, - "grpc": { - "version": "1.21.1", - "resolved": "https://registry.npmjs.org/grpc/-/grpc-1.21.1.tgz", - "integrity": "sha512-PFsZQazf62nP05a0xm23mlImMuw5oVlqF/0zakmsdqJgvbABe+d6VThY2PfhqJmWEL/FhQ6QNYsxS5EAM6++7g==", - "requires": { - "lodash.camelcase": "^4.3.0", - "lodash.clone": "^4.5.0", - "nan": "^2.13.2", - "node-pre-gyp": "^0.13.0", - "protobufjs": "^5.0.3" + "node-pre-gyp": "^0.12.0" }, "dependencies": { "abbrev": { "version": "1.1.1", - "resolved": false, - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "bundled": true, + "dev": true }, "ansi-regex": { "version": "2.1.1", - "resolved": false, - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "bundled": true, + "dev": true }, "aproba": { "version": "1.2.0", - "resolved": false, - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "bundled": true, + "dev": true }, "are-we-there-yet": { - "version": "1.1.5", - "resolved": false, - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", + "version": "1.1.5", + "bundled": true, + "dev": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" @@ -5159,13 +6178,13 @@ }, "balanced-match": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "bundled": true, + "dev": true }, "brace-expansion": { "version": "1.1.11", - "resolved": false, - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "bundled": true, + "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5173,61 +6192,69 @@ }, "chownr": { "version": "1.1.1", - "resolved": false, - "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==" + "bundled": true, + "dev": true }, "code-point-at": { "version": "1.1.0", - "resolved": false, - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" + "bundled": true, + "dev": true }, "concat-map": { "version": "0.0.1", - "resolved": false, - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "bundled": true, + "dev": true }, "console-control-strings": { "version": "1.1.0", - "resolved": false, - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=" + "bundled": true, + "dev": true }, "core-util-is": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "bundled": true, + "dev": true + }, + "debug": { + "version": "2.6.9", + "bundled": true, + "dev": true, + "requires": { + "ms": "2.0.0" + } }, "deep-extend": { "version": "0.6.0", - "resolved": false, - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" + "bundled": true, + "dev": true }, "delegates": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=" + "bundled": true, + "dev": true }, "detect-libc": { "version": "1.0.3", - "resolved": false, - "integrity": "sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=" + "bundled": true, + "dev": true }, "fs-minipass": { "version": "1.2.5", - "resolved": false, - "integrity": "sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==", + "bundled": true, + "dev": true, "requires": { "minipass": "^2.2.1" } }, "fs.realpath": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "bundled": true, + "dev": true }, "gauge": { "version": "2.7.4", - "resolved": false, - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", + "bundled": true, + "dev": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", @@ -5239,31 +6266,44 @@ "wide-align": "^1.1.0" } }, + "glob": { + "version": "7.1.3", + "bundled": true, + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, "has-unicode": { "version": "2.0.1", - "resolved": false, - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" + "bundled": true, + "dev": true }, "iconv-lite": { - "version": "0.4.23", - "resolved": false, - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "version": "0.4.24", + "bundled": true, + "dev": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ignore-walk": { "version": "3.0.1", - "resolved": false, - "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "bundled": true, + "dev": true, "requires": { "minimatch": "^3.0.4" } }, "inflight": { "version": "1.0.6", - "resolved": false, - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "bundled": true, + "dev": true, "requires": { "once": "^1.3.0", "wrappy": "1" @@ -5271,68 +6311,84 @@ }, "inherits": { "version": "2.0.3", - "resolved": false, - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "bundled": true, + "dev": true }, "ini": { "version": "1.3.5", - "resolved": false, - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" + "bundled": true, + "dev": true }, "is-fullwidth-code-point": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "bundled": true, + "dev": true, "requires": { "number-is-nan": "^1.0.0" } }, "isarray": { "version": "1.0.0", - "resolved": false, - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "bundled": true, + "dev": true }, "minimatch": { "version": "3.0.4", - "resolved": false, - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "bundled": true, + "dev": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.0", - "resolved": false, - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + "version": "0.0.8", + "bundled": true, + "dev": true }, "minipass": { "version": "2.3.5", - "resolved": false, - "integrity": "sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==", + "bundled": true, + "dev": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, + "minizlib": { + "version": "1.2.1", + "bundled": true, + "dev": true, + "requires": { + "minipass": "^2.2.1" + } + }, "mkdirp": { "version": "0.5.1", - "resolved": false, - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "bundled": true, + "dev": true, "requires": { "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": false, - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } + } + }, + "ms": { + "version": "2.0.0", + "bundled": true, + "dev": true + }, + "needle": { + "version": "2.2.4", + "bundled": true, + "dev": true, + "requires": { + "debug": "^2.1.2", + "iconv-lite": "^0.4.4", + "sax": "^1.2.4" } }, "node-pre-gyp": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz", - "integrity": "sha512-Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ==", + "version": "0.12.0", + "bundled": true, + "dev": true, "requires": { "detect-libc": "^1.0.2", "mkdirp": "^0.5.1", @@ -5348,17 +6404,31 @@ }, "nopt": { "version": "4.0.1", - "resolved": false, - "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "bundled": true, + "dev": true, "requires": { "abbrev": "1", "osenv": "^0.1.4" } }, + "npm-bundled": { + "version": "1.0.6", + "bundled": true, + "dev": true + }, + "npm-packlist": { + "version": "1.4.1", + "bundled": true, + "dev": true, + "requires": { + "ignore-walk": "^3.0.1", + "npm-bundled": "^1.0.1" + } + }, "npmlog": { "version": "4.1.2", - "resolved": false, - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", + "bundled": true, + "dev": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", @@ -5368,36 +6438,36 @@ }, "number-is-nan": { "version": "1.0.1", - "resolved": false, - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" + "bundled": true, + "dev": true }, "object-assign": { "version": "4.1.1", - "resolved": false, - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "bundled": true, + "dev": true }, "once": { "version": "1.4.0", - "resolved": false, - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "bundled": true, + "dev": true, "requires": { "wrappy": "1" } }, "os-homedir": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" + "bundled": true, + "dev": true }, "os-tmpdir": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=" + "bundled": true, + "dev": true }, "osenv": { "version": "0.1.5", - "resolved": false, - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", + "bundled": true, + "dev": true, "requires": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" @@ -5405,29 +6475,36 @@ }, "path-is-absolute": { "version": "1.0.1", - "resolved": false, - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "bundled": true, + "dev": true }, "process-nextick-args": { "version": "2.0.0", - "resolved": false, - "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + "bundled": true, + "dev": true }, "rc": { "version": "1.2.8", - "resolved": false, - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "bundled": true, + "dev": true, "requires": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "minimist": { + "version": "1.2.0", + "bundled": true, + "dev": true + } } }, "readable-stream": { "version": "2.3.6", - "resolved": false, - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "bundled": true, + "dev": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", @@ -5438,40 +6515,48 @@ "util-deprecate": "~1.0.1" } }, + "rimraf": { + "version": "2.6.3", + "bundled": true, + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, "safe-buffer": { "version": "5.1.2", - "resolved": false, - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "bundled": true, + "dev": true }, "safer-buffer": { "version": "2.1.2", - "resolved": false, - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "bundled": true, + "dev": true }, "sax": { "version": "1.2.4", - "resolved": false, - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "bundled": true, + "dev": true }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==" + "version": "5.6.0", + "bundled": true, + "dev": true }, "set-blocking": { "version": "2.0.0", - "resolved": false, - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "bundled": true, + "dev": true }, "signal-exit": { "version": "3.0.2", - "resolved": false, - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + "bundled": true, + "dev": true }, "string-width": { "version": "1.0.2", - "resolved": false, - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "bundled": true, + "dev": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", @@ -5480,129 +6565,81 @@ }, "string_decoder": { "version": "1.1.1", - "resolved": false, - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "bundled": true, + "dev": true, "requires": { "safe-buffer": "~5.1.0" } }, "strip-ansi": { "version": "3.0.1", - "resolved": false, - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": false, - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - }, - "tar": { - "version": "4.4.8", - "resolved": false, - "integrity": "sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==", - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": false, - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "wide-align": { - "version": "1.1.3", - "resolved": false, - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": false, - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "yallist": { - "version": "3.0.3", - "resolved": false, - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" - } - } - }, - "grpc-tools": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/grpc-tools/-/grpc-tools-1.6.0.tgz", - "integrity": "sha1-th/5TQgyG8MaFOctwDooLArfeFw=", - "dev": true, - "requires": { - "node-pre-gyp": "^0.6.36" - }, - "dependencies": { - "node-pre-gyp": { - "version": "0.6.37", - "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.37.tgz", - "integrity": "sha1-PIcrI2suJm5BQFeP4e6I9pMyOgU=", + "bundled": true, "dev": true, - "requires": { - "mkdirp": "^0.5.1", - "nopt": "^4.0.1", - "npmlog": "^4.0.2", - "rc": "^1.1.7", - "request": "^2.81.0", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tape": "^4.6.3", - "tar": "^2.2.1", - "tar-pack": "^3.4.0" + "requires": { + "ansi-regex": "^2.0.0" } }, - "nopt": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz", - "integrity": "sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=", + "strip-json-comments": { + "version": "2.0.1", + "bundled": true, + "dev": true + }, + "tar": { + "version": "4.4.8", + "bundled": true, "dev": true, "requires": { - "abbrev": "1", - "osenv": "^0.1.4" + "chownr": "^1.1.1", + "fs-minipass": "^1.2.5", + "minipass": "^2.3.4", + "minizlib": "^1.1.1", + "mkdirp": "^0.5.0", + "safe-buffer": "^5.1.2", + "yallist": "^3.0.2" } }, - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "util-deprecate": { + "version": "1.0.2", + "bundled": true, "dev": true }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", + "wide-align": { + "version": "1.1.3", + "bundled": true, "dev": true, "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" + "string-width": "^1.0.2 || 2" } + }, + "wrappy": { + "version": "1.0.2", + "bundled": true, + "dev": true + }, + "yallist": { + "version": "3.0.3", + "bundled": true, + "dev": true } } }, "grpc_tools_node_protoc_ts": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/grpc_tools_node_protoc_ts/-/grpc_tools_node_protoc_ts-2.5.4.tgz", - "integrity": "sha512-8rOC81JoA1ZllA90+GAKGUupNuOyv2qHxKPC6EfbUlZicGmBgjTrCpNz6WQDfgrTRi1H1NbevHBGw/TXpqo3/w==", + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/grpc_tools_node_protoc_ts/-/grpc_tools_node_protoc_ts-2.5.5.tgz", + "integrity": "sha512-bLhiiLZ3ht+Nt6+vW4QWRDhguhJ85r2zLDGNXJ7c/rKo6DPMQyKGgPPYHmdTAYllFsqsJlgLzGLDhQvAQBa2pA==", "dev": true, "requires": { "google-protobuf": "3.5.0", "handlebars": "^4.1.2", "handlebars-helpers": "0.10.0" + }, + "dependencies": { + "google-protobuf": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.5.0.tgz", + "integrity": "sha1-uMxjx02DRXvYqakEUDyO+ya8ozk=", + "dev": true + } } }, "gulp": { @@ -5745,9 +6782,9 @@ } }, "handlebars": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", - "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.4.3.tgz", + "integrity": "sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw==", "dev": true, "requires": { "neo-async": "^2.6.0", @@ -5950,9 +6987,9 @@ } }, "he": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/he/-/he-1.1.1.tgz", - "integrity": "sha1-k0EP0hsAlzUVH4howvJx80J+I/0=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, "helper-date": { @@ -6001,9 +7038,9 @@ } }, "highlight.js": { - "version": "9.13.1", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.13.1.tgz", - "integrity": "sha512-Sc28JNQNDzaH6PORtRLMvif9RSn1mYuOoX3omVjnb0+HbpPygU2ALBI0R/wsiqCb4/fcp07Gdo8g+fhtFrQl6A==", + "version": "9.15.10", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz", + "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==", "dev": true }, "hmac-drbg": { @@ -6049,14 +7086,22 @@ } }, "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", "requires": { "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + } } }, "http-signature": { @@ -6070,9 +7115,12 @@ } }, "iconv-lite": { - "version": "0.4.19", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz", - "integrity": "sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==" + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } }, "ignore-by-default": { "version": "1.0.1", @@ -6081,9 +7129,9 @@ "dev": true }, "ignore-walk": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz", - "integrity": "sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.3.tgz", + "integrity": "sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw==", "requires": { "minimatch": "^3.0.4" } @@ -6178,9 +7226,9 @@ "dev": true }, "ipaddr.js": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz", - "integrity": "sha1-6qM9bd16zo9/b+DJygRA5wZzix4=" + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", + "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" }, "is-absolute": { "version": "1.0.0", @@ -6237,12 +7285,12 @@ "dev": true }, "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", "dev": true, "requires": { - "ci-info": "^1.5.0" + "ci-info": "^2.0.0" } }, "is-data-descriptor": { @@ -6443,9 +7491,9 @@ } }, "is-retry-allowed": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", - "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", + "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", "dev": true }, "is-self-closing": { @@ -6566,30 +7614,6 @@ "supports-color": "^6.1.0" }, "dependencies": { - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true - }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -6623,34 +7647,10 @@ "ms": "^2.1.1" } }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, "source-map": { @@ -6668,71 +7668,48 @@ "dev": true, "requires": { "handlebars": "^4.1.2" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } } }, "jest": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz", - "integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.9.0.tgz", + "integrity": "sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw==", "dev": true, "requires": { "import-local": "^2.0.0", - "jest-cli": "^24.8.0" + "jest-cli": "^24.9.0" }, "dependencies": { - "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true - }, - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } + "color-convert": "^1.9.0" } }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" } }, "find-up": { @@ -6744,162 +7721,98 @@ "locate-path": "^3.0.0" } }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, "jest-cli": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz", - "integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", + "integrity": "sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg==", "dev": true, "requires": { - "@jest/core": "^24.8.0", - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/core": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", "exit": "^0.1.2", "import-local": "^2.0.0", "is-ci": "^2.0.0", - "jest-config": "^24.8.0", - "jest-util": "^24.8.0", - "jest-validate": "^24.8.0", + "jest-config": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", "prompts": "^2.0.1", "realpath-native": "^1.1.0", - "yargs": "^12.0.2" + "yargs": "^13.3.0" } }, - "lcid": { + "require-main-filename": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "mem": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", - "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, - "os-locale": { + "string-width": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", "dev": true, "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" } }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", + "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", + "cliui": "^5.0.0", "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", + "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" + "y18n": "^4.0.0", + "yargs-parser": "^13.1.1" } }, "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", "dev": true, "requires": { "camelcase": "^5.0.0", @@ -6909,246 +7822,191 @@ } }, "jest-changed-files": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz", - "integrity": "sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.9.0.tgz", + "integrity": "sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "execa": "^1.0.0", "throat": "^4.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } - } } }, "jest-config": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz", - "integrity": "sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.9.0.tgz", + "integrity": "sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ==", "dev": true, "requires": { "@babel/core": "^7.1.0", - "@jest/test-sequencer": "^24.8.0", - "@jest/types": "^24.8.0", - "babel-jest": "^24.8.0", + "@jest/test-sequencer": "^24.9.0", + "@jest/types": "^24.9.0", + "babel-jest": "^24.9.0", "chalk": "^2.0.1", "glob": "^7.1.1", - "jest-environment-jsdom": "^24.8.0", - "jest-environment-node": "^24.8.0", - "jest-get-type": "^24.8.0", - "jest-jasmine2": "^24.8.0", + "jest-environment-jsdom": "^24.9.0", + "jest-environment-node": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-jasmine2": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.8.0", - "jest-util": "^24.8.0", - "jest-validate": "^24.8.0", + "jest-resolve": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", "micromatch": "^3.1.10", - "pretty-format": "^24.8.0", + "pretty-format": "^24.9.0", "realpath-native": "^1.1.0" } }, "jest-diff": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz", - "integrity": "sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.9.0.tgz", + "integrity": "sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ==", "dev": true, "requires": { "chalk": "^2.0.1", - "diff-sequences": "^24.3.0", - "jest-get-type": "^24.8.0", - "pretty-format": "^24.8.0" + "diff-sequences": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-docblock": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", - "integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.9.0.tgz", + "integrity": "sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA==", "dev": true, "requires": { "detect-newline": "^2.1.0" } }, "jest-each": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz", - "integrity": "sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.9.0.tgz", + "integrity": "sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", - "jest-get-type": "^24.8.0", - "jest-util": "^24.8.0", - "pretty-format": "^24.8.0" + "jest-get-type": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-environment-jsdom": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz", - "integrity": "sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz", + "integrity": "sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA==", "dev": true, "requires": { - "@jest/environment": "^24.8.0", - "@jest/fake-timers": "^24.8.0", - "@jest/types": "^24.8.0", - "jest-mock": "^24.8.0", - "jest-util": "^24.8.0", + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0", "jsdom": "^11.5.1" } }, "jest-environment-node": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz", - "integrity": "sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.9.0.tgz", + "integrity": "sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA==", "dev": true, "requires": { - "@jest/environment": "^24.8.0", - "@jest/fake-timers": "^24.8.0", - "@jest/types": "^24.8.0", - "jest-mock": "^24.8.0", - "jest-util": "^24.8.0" + "@jest/environment": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/types": "^24.9.0", + "jest-mock": "^24.9.0", + "jest-util": "^24.9.0" } }, "jest-get-type": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz", - "integrity": "sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.9.0.tgz", + "integrity": "sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==", "dev": true }, "jest-haste-map": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.0.tgz", - "integrity": "sha512-ZBPRGHdPt1rHajWelXdqygIDpJx8u3xOoLyUBWRW28r3tagrgoepPrzAozW7kW9HrQfhvmiv1tncsxqHJO1onQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.9.0.tgz", + "integrity": "sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "anymatch": "^2.0.0", "fb-watchman": "^2.0.0", + "fsevents": "^1.2.7", "graceful-fs": "^4.1.15", "invariant": "^2.2.4", - "jest-serializer": "^24.4.0", - "jest-util": "^24.8.0", - "jest-worker": "^24.6.0", + "jest-serializer": "^24.9.0", + "jest-util": "^24.9.0", + "jest-worker": "^24.9.0", "micromatch": "^3.1.10", "sane": "^4.0.3", "walker": "^1.0.7" }, "dependencies": { "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true } } }, "jest-jasmine2": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz", - "integrity": "sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz", + "integrity": "sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==", "dev": true, "requires": { "@babel/traverse": "^7.1.0", - "@jest/environment": "^24.8.0", - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", "co": "^4.6.0", - "expect": "^24.8.0", + "expect": "^24.9.0", "is-generator-fn": "^2.0.0", - "jest-each": "^24.8.0", - "jest-matcher-utils": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-runtime": "^24.8.0", - "jest-snapshot": "^24.8.0", - "jest-util": "^24.8.0", - "pretty-format": "^24.8.0", + "jest-each": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "pretty-format": "^24.9.0", "throat": "^4.0.0" } }, "jest-leak-detector": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz", - "integrity": "sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz", + "integrity": "sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA==", "dev": true, "requires": { - "pretty-format": "^24.8.0" + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-matcher-utils": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz", - "integrity": "sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz", + "integrity": "sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA==", "dev": true, "requires": { "chalk": "^2.0.1", - "jest-diff": "^24.8.0", - "jest-get-type": "^24.8.0", - "pretty-format": "^24.8.0" + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "pretty-format": "^24.9.0" } }, "jest-message-util": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz", - "integrity": "sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.9.0.tgz", + "integrity": "sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "@types/stack-utils": "^1.0.1", "chalk": "^2.0.1", "micromatch": "^3.1.10", @@ -7157,12 +8015,12 @@ } }, "jest-mock": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz", - "integrity": "sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", "dev": true, "requires": { - "@jest/types": "^24.8.0" + "@jest/types": "^24.9.0" } }, "jest-pnp-resolver": { @@ -7172,18 +8030,18 @@ "dev": true }, "jest-regex-util": { - "version": "24.3.0", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", - "integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", + "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==", "dev": true }, "jest-resolve": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz", - "integrity": "sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.9.0.tgz", + "integrity": "sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "browser-resolve": "^1.11.3", "chalk": "^2.0.1", "jest-pnp-resolver": "^1.2.1", @@ -7191,149 +8049,112 @@ } }, "jest-resolve-dependencies": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz", - "integrity": "sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz", + "integrity": "sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-snapshot": "^24.8.0" + "jest-snapshot": "^24.9.0" } }, "jest-runner": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz", - "integrity": "sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.9.0.tgz", + "integrity": "sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg==", "dev": true, "requires": { "@jest/console": "^24.7.1", - "@jest/environment": "^24.8.0", - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/environment": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "chalk": "^2.4.2", "exit": "^0.1.2", "graceful-fs": "^4.1.15", - "jest-config": "^24.8.0", + "jest-config": "^24.9.0", "jest-docblock": "^24.3.0", - "jest-haste-map": "^24.8.0", - "jest-jasmine2": "^24.8.0", - "jest-leak-detector": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-resolve": "^24.8.0", - "jest-runtime": "^24.8.0", - "jest-util": "^24.8.0", + "jest-haste-map": "^24.9.0", + "jest-jasmine2": "^24.9.0", + "jest-leak-detector": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", + "jest-runtime": "^24.9.0", + "jest-util": "^24.9.0", "jest-worker": "^24.6.0", "source-map-support": "^0.5.6", "throat": "^4.0.0" }, "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } } } }, "jest-runtime": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz", - "integrity": "sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.9.0.tgz", + "integrity": "sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw==", "dev": true, "requires": { "@jest/console": "^24.7.1", - "@jest/environment": "^24.8.0", + "@jest/environment": "^24.9.0", "@jest/source-map": "^24.3.0", - "@jest/transform": "^24.8.0", - "@jest/types": "^24.8.0", - "@types/yargs": "^12.0.2", + "@jest/transform": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", "chalk": "^2.0.1", "exit": "^0.1.2", "glob": "^7.1.3", "graceful-fs": "^4.1.15", - "jest-config": "^24.8.0", - "jest-haste-map": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-mock": "^24.8.0", + "jest-config": "^24.9.0", + "jest-haste-map": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-mock": "^24.9.0", "jest-regex-util": "^24.3.0", - "jest-resolve": "^24.8.0", - "jest-snapshot": "^24.8.0", - "jest-util": "^24.8.0", - "jest-validate": "^24.8.0", + "jest-resolve": "^24.9.0", + "jest-snapshot": "^24.9.0", + "jest-util": "^24.9.0", + "jest-validate": "^24.9.0", "realpath-native": "^1.1.0", "slash": "^2.0.0", "strip-bom": "^3.0.0", - "yargs": "^12.0.2" + "yargs": "^13.3.0" }, "dependencies": { - "@types/yargs": { - "version": "12.0.12", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", - "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", "dev": true }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, "camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true }, - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", "dev": true, "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" } }, "find-up": { @@ -7345,14 +8166,11 @@ "locate-path": "^3.0.0" } }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true }, "glob": { "version": "7.1.4", @@ -7369,102 +8187,35 @@ } }, "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", - "dev": true - }, - "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true }, - "lcid": { + "require-main-filename": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", - "dev": true, - "requires": { - "invert-kv": "^2.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "mem": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", - "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", - "dev": true, - "requires": { - "map-age-cleaner": "^0.1.1", - "mimic-fn": "^2.0.0", - "p-is-promise": "^2.0.0" - } - }, - "mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", "dev": true }, - "os-locale": { + "string-width": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", - "dev": true, - "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", "dev": true, "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "ansi-regex": "^4.1.0" } }, "strip-bom": { @@ -7473,30 +8224,45 @@ "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", "dev": true }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, "yargs": { - "version": "12.0.5", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", - "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", + "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", "dev": true, "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.2.0", + "cliui": "^5.0.0", "find-up": "^3.0.0", - "get-caller-file": "^1.0.1", - "os-locale": "^3.0.0", + "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1 || ^4.0.0", - "yargs-parser": "^11.1.1" + "y18n": "^4.0.0", + "yargs-parser": "^13.1.1" } }, "yargs-parser": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", - "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", "dev": true, "requires": { "camelcase": "^5.0.0", @@ -7506,50 +8272,43 @@ } }, "jest-serializer": { - "version": "24.4.0", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", - "integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.9.0.tgz", + "integrity": "sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ==", "dev": true }, "jest-snapshot": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz", - "integrity": "sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.9.0.tgz", + "integrity": "sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==", "dev": true, "requires": { "@babel/types": "^7.0.0", - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "chalk": "^2.0.1", - "expect": "^24.8.0", - "jest-diff": "^24.8.0", - "jest-matcher-utils": "^24.8.0", - "jest-message-util": "^24.8.0", - "jest-resolve": "^24.8.0", + "expect": "^24.9.0", + "jest-diff": "^24.9.0", + "jest-get-type": "^24.9.0", + "jest-matcher-utils": "^24.9.0", + "jest-message-util": "^24.9.0", + "jest-resolve": "^24.9.0", "mkdirp": "^0.5.1", "natural-compare": "^1.4.0", - "pretty-format": "^24.8.0", - "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } + "pretty-format": "^24.9.0", + "semver": "^6.2.0" } }, "jest-util": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz", - "integrity": "sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.9.0.tgz", + "integrity": "sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg==", "dev": true, "requires": { - "@jest/console": "^24.7.1", - "@jest/fake-timers": "^24.8.0", - "@jest/source-map": "^24.3.0", - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", + "@jest/console": "^24.9.0", + "@jest/fake-timers": "^24.9.0", + "@jest/source-map": "^24.9.0", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", "callsites": "^3.0.0", "chalk": "^2.0.1", "graceful-fs": "^4.1.15", @@ -7559,27 +8318,12 @@ "source-map": "^0.6.0" }, "dependencies": { - "ci-info": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", - "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", - "dev": true - }, "graceful-fs": { - "version": "4.1.15", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", - "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", + "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", "dev": true }, - "is-ci": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", - "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", - "dev": true, - "requires": { - "ci-info": "^2.0.0" - } - }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -7589,17 +8333,17 @@ } }, "jest-validate": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz", - "integrity": "sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.9.0.tgz", + "integrity": "sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ==", "dev": true, "requires": { - "@jest/types": "^24.8.0", - "camelcase": "^5.0.0", + "@jest/types": "^24.9.0", + "camelcase": "^5.3.1", "chalk": "^2.0.1", - "jest-get-type": "^24.8.0", - "leven": "^2.1.0", - "pretty-format": "^24.8.0" + "jest-get-type": "^24.9.0", + "leven": "^3.1.0", + "pretty-format": "^24.9.0" }, "dependencies": { "camelcase": { @@ -7611,35 +8355,27 @@ } }, "jest-watcher": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz", - "integrity": "sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.9.0.tgz", + "integrity": "sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==", "dev": true, "requires": { - "@jest/test-result": "^24.8.0", - "@jest/types": "^24.8.0", - "@types/yargs": "^12.0.9", + "@jest/test-result": "^24.9.0", + "@jest/types": "^24.9.0", + "@types/yargs": "^13.0.0", "ansi-escapes": "^3.0.0", "chalk": "^2.0.1", - "jest-util": "^24.8.0", + "jest-util": "^24.9.0", "string-length": "^2.0.0" - }, - "dependencies": { - "@types/yargs": { - "version": "12.0.12", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", - "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", - "dev": true - } } }, "jest-worker": { - "version": "24.6.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz", - "integrity": "sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", "dev": true, "requires": { - "merge-stream": "^1.0.1", + "merge-stream": "^2.0.0", "supports-color": "^6.1.0" }, "dependencies": { @@ -7674,6 +8410,14 @@ "requires": { "argparse": "^1.0.7", "esprima": "^4.0.0" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + } } }, "jsbn": { @@ -7786,9 +8530,9 @@ "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, "json5": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", - "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", + "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -7921,9 +8665,9 @@ "dev": true }, "leven": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", - "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true }, "levn": { @@ -7971,11 +8715,11 @@ } }, "locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", "requires": { - "p-locate": "^2.0.0", + "p-locate": "^3.0.0", "path-exists": "^3.0.0" }, "dependencies": { @@ -8013,6 +8757,12 @@ "integrity": "sha1-dWy1FQyjum8RCFp4hJZF8Yj4Xzc=", "dev": true }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "dev": true + }, "lodash.sortby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", @@ -8020,22 +8770,22 @@ "dev": true }, "lodash.template": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz", - "integrity": "sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=", + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", "dev": true, "requires": { - "lodash._reinterpolate": "~3.0.0", + "lodash._reinterpolate": "^3.0.0", "lodash.templatesettings": "^4.0.0" } }, "lodash.templatesettings": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz", - "integrity": "sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", "dev": true, "requires": { - "lodash._reinterpolate": "~3.0.0" + "lodash._reinterpolate": "^3.0.0" } }, "log-ok": { @@ -8048,6 +8798,15 @@ "success-symbol": "^0.1.0" } }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "^2.0.1" + } + }, "log-utils": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/log-utils/-/log-utils-0.2.1.tgz", @@ -8130,9 +8889,9 @@ } }, "lolex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/lolex/-/lolex-4.1.0.tgz", - "integrity": "sha512-BYxIEXiVq5lGIXeVHnsFzqa1TxN5acnKnPCdlZSpzm8viNEOhiigupA4vTQ9HEFQ6nLTQ9wQOgBknJgzUYQ9Aw==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lolex/-/lolex-4.2.0.tgz", + "integrity": "sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg==", "dev": true }, "long": { @@ -8166,12 +8925,21 @@ "dev": true }, "lru-cache": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz", - "integrity": "sha512-q4spe4KTfsAS1SUHLO0wz8Qiyf1+vMIAgpRYioFYDMNqKfHQbg+AVDH3i4fvpl71/P1L0dBl+fQi+P37UYf0ew==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, "requires": { "pseudomap": "^1.0.2", "yallist": "^2.1.2" + }, + "dependencies": { + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } } }, "lunr": { @@ -8181,18 +8949,33 @@ "dev": true }, "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", "dev": true, "requires": { - "pify": "^3.0.0" + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } } }, "make-error": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.4.tgz", - "integrity": "sha512-0Dab5btKVPhibSalc9QGXb559ED7G7iLjFXBaj9Wq8O3vorueR5K5jaE3hkG6ZQINyhA/JgG6Qk4qdFQjsYV6g==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.5.tgz", + "integrity": "sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g==", "dev": true }, "make-iterator": { @@ -8300,11 +9083,14 @@ "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" }, "mem": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz", - "integrity": "sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y=", + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, "requires": { - "mimic-fn": "^1.0.0" + "map-age-cleaner": "^0.1.1", + "mimic-fn": "^2.0.0", + "p-is-promise": "^2.0.0" } }, "meow": { @@ -8345,12 +9131,46 @@ "strip-bom": "^3.0.0" } }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, "minimist": { "version": "1.2.0", "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -8361,6 +9181,12 @@ "json-parse-better-errors": "^1.0.1" } }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", @@ -8405,13 +9231,10 @@ "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" }, "merge-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", - "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true }, "methods": { "version": "1.1.2", @@ -8441,7 +9264,8 @@ "mime": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" + "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==", + "dev": true }, "mime-db": { "version": "1.33.0", @@ -8457,9 +9281,10 @@ } }, "mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true }, "minimalistic-assert": { "version": "1.0.1", @@ -8495,88 +9320,257 @@ } }, "minipass": { - "version": "2.3.5", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz", - "integrity": "sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==", + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", + "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" }, "dependencies": { "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" + } + } + }, + "minizlib": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", + "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "requires": { + "minipass": "^2.9.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "requires": { + "minimist": "0.0.8" + } + }, + "mocha": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-6.2.1.tgz", + "integrity": "sha512-VCcWkLHwk79NYQc8cxhkmI8IigTIhsCwZ6RTxQsqK6go4UvEhzJkYuHm8B2YtlSxcYq2fY+ucr4JBwoD6ci80A==", + "dev": true, + "requires": { + "ansi-colors": "3.2.3", + "browser-stdout": "1.3.1", + "debug": "3.2.6", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "find-up": "3.0.0", + "glob": "7.1.3", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "3.13.1", + "log-symbols": "2.2.0", + "minimatch": "3.0.4", + "mkdirp": "0.5.1", + "ms": "2.1.1", + "node-environment-flags": "1.0.5", + "object.assign": "4.1.0", + "strip-json-comments": "2.0.1", + "supports-color": "6.0.0", + "which": "1.3.1", + "wide-align": "1.1.3", + "yargs": "13.3.0", + "yargs-parser": "13.1.1", + "yargs-unparser": "1.6.0" + }, + "dependencies": { + "ansi-colors": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz", + "integrity": "sha512-LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw==", + "dev": true + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" - } - } - }, - "minizlib": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz", - "integrity": "sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==", - "requires": { - "minipass": "^2.2.1" - } - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "dev": true, "requires": { - "is-plain-object": "^2.0.4" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - } - }, - "mocha": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz", - "integrity": "sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ==", - "dev": true, - "requires": { - "browser-stdout": "1.3.1", - "commander": "2.15.1", - "debug": "3.1.0", - "diff": "3.5.0", - "escape-string-regexp": "1.0.5", - "glob": "7.1.2", - "growl": "1.10.5", - "he": "1.1.1", - "minimatch": "3.0.4", - "mkdirp": "0.5.1", - "supports-color": "5.4.0" - }, - "dependencies": { + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, "supports-color": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz", - "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz", + "integrity": "sha512-on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg==", "dev": true, "requires": { "has-flag": "^3.0.0" } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yargs": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", + "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.1" + } + }, + "yargs-parser": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, @@ -8665,9 +9659,9 @@ } }, "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=" + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" }, "neo-async": { "version": "2.6.1", @@ -8686,12 +9680,12 @@ "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" }, "nise": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/nise/-/nise-1.5.0.tgz", - "integrity": "sha512-Z3sfYEkLFzFmL8KY6xnSJLRxwQwYBjOXi/24lb62ZnZiGA0JUzGGTI6TBIgfCSMIDl9Jlu8SRmHNACLTemDHww==", + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/nise/-/nise-1.5.2.tgz", + "integrity": "sha512-/6RhOUlicRCbE9s+94qCUsyE+pKlVJ5AhIv+jEE7ESKwnbXqulKZ1FYU+XAtHHWE9TinYvAxDUJAb912PwPoWA==", "dev": true, "requires": { - "@sinonjs/formatio": "^3.1.0", + "@sinonjs/formatio": "^3.2.1", "@sinonjs/text-encoding": "^0.7.1", "just-extend": "^4.0.2", "lolex": "^4.1.0", @@ -8715,10 +9709,28 @@ } } }, + "node-environment-flags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz", + "integrity": "sha512-VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==", + "dev": true, + "requires": { + "object.getownpropertydescriptors": "^2.0.3", + "semver": "^5.7.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, "node-forge": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz", - "integrity": "sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw==" + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.9.1.tgz", + "integrity": "sha512-G6RlQt5Sb4GMBzXvhfkeFmbqR6MzhtnT7VTHuLadjkii3rdYHNdw0m8zA4BTxVIh68FicCQ2NSUANpsqkr9jvQ==" }, "node-int64": { "version": "0.4.0", @@ -8733,9 +9745,9 @@ "dev": true }, "node-notifier": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", - "integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", + "version": "5.4.3", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.3.tgz", + "integrity": "sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q==", "dev": true, "requires": { "growly": "^1.3.0", @@ -8746,9 +9758,9 @@ }, "dependencies": { "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } @@ -8780,25 +9792,25 @@ } }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==" + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, "nodemon": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.1.tgz", - "integrity": "sha512-/DXLzd/GhiaDXXbGId5BzxP1GlsqtMGM9zTmkWrgXtSqjKmGSbLicM/oAy4FR0YWm14jCHRwnR31AHS2dYFHrg==", + "version": "1.19.4", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.19.4.tgz", + "integrity": "sha512-VGPaqQBNk193lrJFotBU8nvWZPqEZY2eIzymy2jjY0fJ9qIsxA0sxQ8ATPl0gZC645gijYEc1jtZvpS8QWzJGQ==", "dev": true, "requires": { - "chokidar": "^2.1.5", - "debug": "^3.1.0", + "chokidar": "^2.1.8", + "debug": "^3.2.6", "ignore-by-default": "^1.0.1", "minimatch": "^3.0.4", - "pstree.remy": "^1.1.6", - "semver": "^5.5.0", - "supports-color": "^5.2.0", + "pstree.remy": "^1.1.7", + "semver": "^5.7.1", + "supports-color": "^5.5.0", "touch": "^3.1.0", "undefsafe": "^2.0.2", "update-notifier": "^2.5.0" @@ -8823,14 +9835,15 @@ } }, "chokidar": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz", - "integrity": "sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==", + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", "dev": true, "requires": { "anymatch": "^2.0.0", "async-each": "^1.0.1", "braces": "^2.3.2", + "fsevents": "^1.2.7", "glob-parent": "^3.1.0", "inherits": "^2.0.3", "is-binary-path": "^1.0.0", @@ -8841,6 +9854,15 @@ "upath": "^1.1.1" } }, + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, "extend-shallow": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", @@ -8850,6 +9872,12 @@ "is-extendable": "^0.1.0" } }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -8868,9 +9896,9 @@ } }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "supports-color": { @@ -8883,9 +9911,9 @@ } }, "upath": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", - "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", "dev": true } } @@ -8939,9 +9967,9 @@ "integrity": "sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==" }, "npm-packlist": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz", - "integrity": "sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==", + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.6.tgz", + "integrity": "sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg==", "requires": { "ignore-walk": "^3.0.1", "npm-bundled": "^1.0.1" @@ -9197,13 +10225,11 @@ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" }, "os-locale": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz", - "integrity": "sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { - "execa": "^0.7.0", - "lcid": "^1.0.0", - "mem": "^1.1.0" + "lcid": "^1.0.0" } }, "os-tmpdir": { @@ -9245,19 +10271,19 @@ "integrity": "sha512-pzQPhYMCAgLAKPWD2jC3Se9fEfrD9npNos0y150EeqZll7akhEgGhTW/slB6lHku8AvYGiJ+YJ5hfHKePPgFWg==" }, "p-limit": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz", - "integrity": "sha512-Y/OtIaXtUPr4/YpMv1pCL5L5ed0rumAaAeBSj12F+bSlMdys7i8oQF/GUJmfpTS/QoaRrS/k6pma29haJpsMng==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", "requires": { - "p-try": "^1.0.0" + "p-try": "^2.0.0" } }, "p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", "requires": { - "p-limit": "^1.1.0" + "p-limit": "^2.0.0" } }, "p-reduce": { @@ -9267,9 +10293,9 @@ "dev": true }, "p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" }, "package-json": { "version": "4.0.1", @@ -9284,9 +10310,9 @@ }, "dependencies": { "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } @@ -9332,9 +10358,9 @@ "dev": true }, "parseurl": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz", - "integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=" + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" }, "pascalcase": { "version": "0.1.1", @@ -9466,46 +10492,6 @@ "requires": { "locate-path": "^3.0.0" } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true } } }, @@ -9533,12 +10519,12 @@ "dev": true }, "pretty-format": { - "version": "24.8.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz", - "integrity": "sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==", + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.9.0.tgz", + "integrity": "sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==", "dev": true, "requires": { - "@jest/types": "^24.8.0", + "@jest/types": "^24.9.0", "ansi-regex": "^4.0.0", "ansi-styles": "^3.2.0", "react-is": "^16.8.4" @@ -9578,13 +10564,13 @@ "dev": true }, "prompts": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.0.4.tgz", - "integrity": "sha512-HTzM3UWp/99A0gk51gAegwo1QRYA7xjcZufMNe33rCclFszUYAuHe1fIN/3ZmiHeGPkUsNaRyQm1hHOfM0PKxA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.2.1.tgz", + "integrity": "sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw==", "dev": true, "requires": { - "kleur": "^3.0.2", - "sisteransi": "^1.0.0" + "kleur": "^3.0.3", + "sisteransi": "^1.0.3" } }, "protobufjs": { @@ -9598,11 +10584,6 @@ "yargs": "^3.10.0" }, "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" - }, "cliui": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", @@ -9621,14 +10602,6 @@ "number-is-nan": "^1.0.0" } }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "requires": { - "lcid": "^1.0.0" - } - }, "string-width": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", @@ -9669,23 +10642,24 @@ "integrity": "sha512-Xdayp8sB/mU+sUV4G7ws8xtYMGdQnxbeIfLjyO9TZZRJdztBGhlmbI5x1qcY4TG5hBkIKGnc28i7nXxaugu88w==" }, "proxy-addr": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz", - "integrity": "sha512-5erio2h9jp5CHGwcybmxmVqHmnCBZeewlfJ0pex+UW7Qny7OOZXTtH56TGNyBizkgiOwhJtMKrVzDTeKcySZwA==", + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", + "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", "requires": { "forwarded": "~0.1.2", - "ipaddr.js": "1.8.0" + "ipaddr.js": "1.9.0" } }, "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true }, "psl": { - "version": "1.1.31", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz", - "integrity": "sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==" + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", + "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==" }, "pstree.remy": { "version": "1.1.7", @@ -9735,9 +10709,9 @@ "dev": true }, "range-parser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", - "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" }, "raw-body": { "version": "2.4.0", @@ -9801,9 +10775,9 @@ } }, "react-is": { - "version": "16.8.6", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", - "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==", + "version": "16.10.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.10.2.tgz", + "integrity": "sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA==", "dev": true }, "read-pkg": { @@ -10032,22 +11006,22 @@ }, "dependencies": { "mime-db": { - "version": "1.38.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz", - "integrity": "sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==" + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" }, "mime-types": { - "version": "2.1.22", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz", - "integrity": "sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==", + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", "requires": { - "mime-db": "~1.38.0" + "mime-db": "1.40.0" } }, "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" } } }, @@ -10126,15 +11100,6 @@ "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" }, - "resumer": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", - "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", - "dev": true, - "requires": { - "through": "~2.3.4" - } - }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", @@ -10160,17 +11125,17 @@ } }, "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "requires": { "glob": "^7.1.3" }, "dependencies": { "glob": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz", - "integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -10192,16 +11157,19 @@ } }, "rsvp": { - "version": "4.8.4", - "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.4.tgz", - "integrity": "sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA==", + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true }, - "rx": { - "version": "2.3.24", - "resolved": "https://registry.npmjs.org/rx/-/rx-2.3.24.tgz", - "integrity": "sha1-FPlQpCF9fjXapxu8vljv9o6ksrc=", - "dev": true + "rxjs": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.3.tgz", + "integrity": "sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } }, "safe-buffer": { "version": "5.1.1", @@ -10238,66 +11206,11 @@ "walker": "~1.0.5" }, "dependencies": { - "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", - "dev": true, - "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", - "dev": true - } - } - }, - "execa": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", - "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", - "dev": true, - "requires": { - "cross-spawn": "^6.0.0", - "get-stream": "^4.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "get-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", - "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", - "dev": true, - "requires": { - "pump": "^3.0.0" - } - }, "minimist": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", "dev": true - }, - "pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dev": true, - "requires": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" - } } } }, @@ -10335,9 +11248,9 @@ "dev": true }, "semver": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.2.0.tgz", - "integrity": "sha512-jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A==" + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" }, "semver-diff": { "version": "2.1.0", @@ -10349,9 +11262,9 @@ }, "dependencies": { "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } @@ -10365,9 +11278,9 @@ } }, "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", "requires": { "debug": "2.6.9", "depd": "~1.1.2", @@ -10376,12 +11289,12 @@ "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" + "range-parser": "~1.2.1", + "statuses": "~1.5.0" }, "dependencies": { "debug": { @@ -10390,19 +11303,31 @@ "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } } }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" } } }, "sequelize": { - "version": "4.44.2", - "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-4.44.2.tgz", - "integrity": "sha512-XYHpjlq9zNNvQNR1g2aSrMs6OWv9ira6iXAeyyaCvlO/W1zhDc6BT/KaphJ49Z+0ss7zHTK6Nso1v13bNf2pOA==", + "version": "4.44.3", + "resolved": "https://registry.npmjs.org/sequelize/-/sequelize-4.44.3.tgz", + "integrity": "sha512-r2A4EVDKRCcABcZhY4ItvbcosvMJKpQMooxg/S8ouRFrZzqMPQ9O2thOUfgW59q8ZcEa5ccNeqwg15MCciqPMg==", "requires": { "bluebird": "^3.5.0", "cls-bluebird": "^2.1.0", @@ -10424,21 +11349,21 @@ }, "dependencies": { "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==" + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" + "parseurl": "~1.3.3", + "send": "0.17.1" } }, "set-blocking": { @@ -10482,9 +11407,9 @@ } }, "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" }, "sha.js": { "version": "2.4.11", @@ -10551,17 +11476,17 @@ } }, "sinon": { - "version": "7.3.2", - "resolved": "https://registry.npmjs.org/sinon/-/sinon-7.3.2.tgz", - "integrity": "sha512-thErC1z64BeyGiPvF8aoSg0LEnptSaWE7YhdWWbWXgelOyThent7uKOnnEh9zBxDbKixtr5dEko+ws1sZMuFMA==", + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-7.5.0.tgz", + "integrity": "sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q==", "dev": true, "requires": { "@sinonjs/commons": "^1.4.0", "@sinonjs/formatio": "^3.2.1", - "@sinonjs/samsam": "^3.3.1", + "@sinonjs/samsam": "^3.3.3", "diff": "^3.5.0", - "lolex": "^4.0.1", - "nise": "^1.4.10", + "lolex": "^4.2.0", + "nise": "^1.5.2", "supports-color": "^5.5.0" }, "dependencies": { @@ -10577,9 +11502,9 @@ } }, "sisteransi": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz", - "integrity": "sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.3.tgz", + "integrity": "sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg==", "dev": true }, "slash": { @@ -10736,9 +11661,9 @@ } }, "source-map-support": { - "version": "0.5.12", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", - "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "requires": { "buffer-from": "^1.0.0", @@ -10830,9 +11755,9 @@ "dev": true }, "sqlite3": { - "version": "4.0.9", - "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-4.0.9.tgz", - "integrity": "sha512-IkvzjmsWQl9BuBiM4xKpl5X8WCR4w0AeJHRdobCdXZ8dT/lNc1XS6WqvY35N6+YzIIgzSBeY5prdFObID9F9tA==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-4.1.0.tgz", + "integrity": "sha512-RvqoKxq+8pDHsJo7aXxsFR18i+dU2Wp5o12qAJOV5LNcDt+fgJsc2QKKg3sIRfXrN9ZjzY1T7SNe/DFVqAXjaw==", "requires": { "nan": "^2.12.1", "node-pre-gyp": "^0.11.0", @@ -10976,15 +11901,58 @@ "strip-ansi": "^4.0.0" } }, - "string.prototype.trim": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", - "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", + "string.prototype.trimleft": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz", + "integrity": "sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==", "dev": true, "requires": { - "define-properties": "^1.1.2", - "es-abstract": "^1.5.0", - "function-bind": "^1.0.2" + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + } + } + }, + "string.prototype.trimright": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz", + "integrity": "sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + }, + "dependencies": { + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + } } }, "string_decoder": { @@ -11105,96 +12073,32 @@ } }, "swagger-ui-dist": { - "version": "3.23.0", - "resolved": "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.23.0.tgz", - "integrity": "sha512-DMnt69K3p8BwnKf8f8uOqsts/teZNRS4LlXAqjfa8HS2RKWWOCSiVEHkMzY3zlU4wqu/olPdF0zDEm9Ed5JZ4A==" + "version": "3.24.0", + "resolved": "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.24.0.tgz", + "integrity": "sha512-5uAjeEqV+zbtalBDXAIrkqUZwsUHYwvBSeGYlFcLj1ERS3jfprL4OPLSSriDoeXCtNmWzpz5aooV2qJW+DqdUQ==" }, "swagger-ui-express": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/swagger-ui-express/-/swagger-ui-express-4.0.7.tgz", - "integrity": "sha512-ipXe53qDMjB2GlFcWARof15fMxX0n0wkwUturBpdovfJLaqod3WAqimwQGFXjwpWKA6hnxEPrd31yOzaYkP++A==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/swagger-ui-express/-/swagger-ui-express-4.1.2.tgz", + "integrity": "sha512-bVT16qj6WdNlEKFkSLOoTeGuqEm2lfOFRq6mVHAx+viA/ikORE+n4CS3WpVcYmQzM4HE6+DUFgAWcMRBJNpjcw==", "requires": { "swagger-ui-dist": "^3.18.1" } }, "symbol-tree": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz", - "integrity": "sha1-rifbOPZgp64uHDt9G8KQgZuFGeY=", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, - "tape": { - "version": "4.11.0", - "resolved": "https://registry.npmjs.org/tape/-/tape-4.11.0.tgz", - "integrity": "sha512-yixvDMX7q7JIs/omJSzSZrqulOV51EC9dK8dM0TzImTIkHWfe2/kFyL5v+d9C+SrCMaICk59ujsqFAVidDqDaA==", - "dev": true, - "requires": { - "deep-equal": "~1.0.1", - "defined": "~1.0.0", - "for-each": "~0.3.3", - "function-bind": "~1.1.1", - "glob": "~7.1.4", - "has": "~1.0.3", - "inherits": "~2.0.4", - "minimist": "~1.2.0", - "object-inspect": "~1.6.0", - "resolve": "~1.11.1", - "resumer": "~0.0.0", - "string.prototype.trim": "~1.1.2", - "through": "~2.3.8" - }, - "dependencies": { - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "resolve": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", - "integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - } - } - }, "tar": { - "version": "4.4.10", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz", - "integrity": "sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==", + "version": "4.4.13", + "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.13.tgz", + "integrity": "sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==", "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", - "minipass": "^2.3.5", + "minipass": "^2.8.6", "minizlib": "^1.2.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", @@ -11202,71 +12106,26 @@ }, "dependencies": { "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "yallist": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", - "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==" + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" } } }, - "tar-pack": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz", - "integrity": "sha512-PPRybI9+jM5tjtCbN2cxmmRU7YmqT3Zv/UDy48tAh2XRkLa9bAORtSWLkVc13+GJF+cdTh1yEnHEk3cpTaL5Kg==", - "dev": true, - "requires": { - "debug": "^2.2.0", - "fstream": "^1.0.10", - "fstream-ignore": "^1.0.5", - "once": "^1.3.3", - "readable-stream": "^2.1.4", - "rimraf": "^2.5.1", - "tar": "^2.2.1", - "uid-number": "^0.0.6" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "dev": true, - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" - } - } - } + "temp-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-2.0.0.tgz", + "integrity": "sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==", + "dev": true }, "tempfile": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz", - "integrity": "sha1-W8xOrsxKsscH2LwR2ZzMmiyyh/I=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-3.0.0.tgz", + "integrity": "sha512-uNFCg478XovRi85iD42egu+eSFUmmka750Jy7L5tfHI5hQKKtbPnxaSaXAbBqCDYrw3wx4tXjKwci4/QmsZJxw==", "dev": true, "requires": { - "os-tmpdir": "^1.0.0", - "uuid": "^2.0.1" - }, - "dependencies": { - "uuid": { - "version": "2.0.3", - "resolved": "http://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=", - "dev": true - } + "temp-dir": "^2.0.0", + "uuid": "^3.3.2" } }, "term-size": { @@ -11276,6 +12135,40 @@ "dev": true, "requires": { "execa": "^0.7.0" + }, + "dependencies": { + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "execa": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", + "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", + "dev": true, + "requires": { + "cross-spawn": "^5.0.1", + "get-stream": "^3.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + } + }, + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + } } }, "terraformer": { @@ -11323,59 +12216,25 @@ "dev": true, "requires": { "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "p-limit": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", - "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", - "dev": true, - "requires": { - "p-try": "^2.0.0" + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" } }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", "dev": true, "requires": { - "p-limit": "^2.0.0" + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" } }, - "p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true - }, "parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", @@ -11386,12 +12245,6 @@ "json-parse-better-errors": "^1.0.1" } }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", - "dev": true - }, "path-type": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", @@ -11628,27 +12481,22 @@ "integrity": "sha1-n5up2e+odkw4dpi8v+sshI8RrbM=", "dev": true }, - "trim-right": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", - "dev": true - }, "triple-beam": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/triple-beam/-/triple-beam-1.3.0.tgz", "integrity": "sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==" }, "ts-jest": { - "version": "24.0.2", - "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-24.0.2.tgz", - "integrity": "sha512-h6ZCZiA1EQgjczxq+uGLXQlNgeg02WWJBbeT8j6nyIBRQdglqbvzDoHahTEIiS6Eor6x8mK6PfZ7brQ9Q6tzHw==", + "version": "24.1.0", + "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-24.1.0.tgz", + "integrity": "sha512-HEGfrIEAZKfu1pkaxB9au17b1d9b56YZSqz5eCVE8mX68+5reOvlM93xGOzzCREIov9mdH7JBG+s0UyNAqr0tQ==", "dev": true, "requires": { "bs-logger": "0.x", "buffer-from": "1.x", "fast-json-stable-stringify": "2.x", "json5": "2.x", + "lodash.memoize": "4.x", "make-error": "1.x", "mkdirp": "0.x", "resolve": "1.x", @@ -11656,10 +12504,16 @@ "yargs-parser": "10.x" }, "dependencies": { + "camelcase": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", + "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=", + "dev": true + }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true }, "yargs-parser": { @@ -11674,9 +12528,9 @@ } }, "ts-node": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-8.3.0.tgz", - "integrity": "sha512-dyNS/RqyVTDcmNM4NIBAeDMpsAdaQ+ojdf0GOLqE6nwJOgzEkdRNzJywhDfwnuvB10oa6NLVG1rUJQCpRN7qoQ==", + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-8.4.1.tgz", + "integrity": "sha512-5LpRN+mTiCs7lI5EtbXmF/HfMeCjzt7DH9CZwtkr6SywStrNQC723wG+aOWFiLNn7zT3kD/RnFqi3ZUfr4l5Qw==", "dev": true, "requires": { "arg": "^4.1.0", @@ -11695,22 +12549,22 @@ } }, "tslib": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.0.tgz", - "integrity": "sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ==", + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", "dev": true }, "tslint": { - "version": "5.18.0", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.18.0.tgz", - "integrity": "sha512-Q3kXkuDEijQ37nXZZLKErssQVnwCV/+23gFEMROi8IlbaBG6tXqLPQJ5Wjcyt/yHPKBC+hD5SzuGaMora+ZS6w==", + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.20.0.tgz", + "integrity": "sha512-2vqIvkMHbnx8acMogAERQ/IuINOq6DFqgF8/VDvhEkBqQh/x6SP0Y+OHnKth9/ZcHQSroOZwUQSN18v8KKF0/g==", "dev": true, "requires": { "@babel/code-frame": "^7.0.0", "builtin-modules": "^1.1.1", "chalk": "^2.3.0", "commander": "^2.12.1", - "diff": "^3.2.0", + "diff": "^4.0.1", "glob": "^7.1.1", "js-yaml": "^3.13.1", "minimatch": "^3.0.4", @@ -11721,18 +12575,24 @@ "tsutils": "^2.29.0" }, "dependencies": { + "diff": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.1.tgz", + "integrity": "sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q==", + "dev": true + }, "semver": { - "version": "5.7.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", - "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true } } }, "tslint-config-airbnb": { - "version": "5.11.1", - "resolved": "https://registry.npmjs.org/tslint-config-airbnb/-/tslint-config-airbnb-5.11.1.tgz", - "integrity": "sha512-hkaittm2607vVMe8eotANGN1CimD5tor7uoY3ypg2VTtEcDB/KGWYbJOz58t8LI4cWSyWtgqYQ5F0HwKxxhlkQ==", + "version": "5.11.2", + "resolved": "https://registry.npmjs.org/tslint-config-airbnb/-/tslint-config-airbnb-5.11.2.tgz", + "integrity": "sha512-mUpHPTeeCFx8XARGG/kzYP4dPSOgoCqNiYbGHh09qTH8q+Y1ghsOgaeZKYYQT7IyxMos523z/QBaiv2zKNBcow==", "dev": true, "requires": { "tslint-consistent-codestyle": "^1.14.1", @@ -11741,12 +12601,12 @@ } }, "tslint-consistent-codestyle": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.15.1.tgz", - "integrity": "sha512-38Y3Dz4zcABe/PlPAQSGNEWPGVq0OzcIQR7SEU6dNujp/SgvhxhJOhIhI9gY4r0I3/TNtvVQwARWor9O9LPZWg==", + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/tslint-consistent-codestyle/-/tslint-consistent-codestyle-1.16.0.tgz", + "integrity": "sha512-ebR/xHyMEuU36hGNOgCfjGBNYxBPixf0yU1Yoo6s3BrpBRFccjPOmIVaVvQsWAUAMdmfzHOCihVkcaMfimqvHw==", "dev": true, "requires": { - "@fimbul/bifrost": "^0.17.0", + "@fimbul/bifrost": "^0.21.0", "tslib": "^1.7.1", "tsutils": "^2.29.0" } @@ -11762,10 +12622,16 @@ "tsutils": "^3.0.0" }, "dependencies": { + "tslib": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.0.tgz", + "integrity": "sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ==", + "dev": true + }, "tsutils": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.10.0.tgz", - "integrity": "sha512-q20XSMq7jutbGB8luhKKsQldRKWvyBO2BGqni3p4yq8Ys9bEP/xQw3KepKmMRt9gJ4lvQSScrihJrcKdKoSU7Q==", + "version": "3.17.1", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz", + "integrity": "sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==", "dev": true, "requires": { "tslib": "^1.8.1" @@ -11842,12 +12708,27 @@ "dev": true }, "type-is": { - "version": "1.6.16", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz", - "integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==", + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "requires": { "media-typer": "0.3.0", - "mime-types": "~2.1.18" + "mime-types": "~2.1.24" + }, + "dependencies": { + "mime-db": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==" + }, + "mime-types": { + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "requires": { + "mime-db": "1.40.0" + } + } } }, "type-name": { @@ -11884,6 +12765,12 @@ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz", "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==", "dev": true + }, + "typescript": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.3.tgz", + "integrity": "sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==", + "dev": true } } }, @@ -11920,9 +12807,9 @@ } }, "typescript": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.5.2.tgz", - "integrity": "sha512-7KxJovlYhTX5RaRbUdkAXN1KUZ8PwWlTzQdHV6xNqvuFOs7+WBo10TQUqT19Q/Jz2hk5v9TQDIhyLhhJY4p5AA==", + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.6.4.tgz", + "integrity": "sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==", "dev": true }, "uglify-js": { @@ -11952,12 +12839,6 @@ } } }, - "uid-number": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz", - "integrity": "sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=", - "dev": true - }, "unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", @@ -12113,6 +12994,23 @@ "latest-version": "^3.0.0", "semver-diff": "^2.0.0", "xdg-basedir": "^3.0.0" + }, + "dependencies": { + "ci-info": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", + "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==", + "dev": true + }, + "is-ci": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", + "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", + "dev": true, + "requires": { + "ci-info": "^1.5.0" + } + } } }, "uri-js": { @@ -12237,9 +13135,9 @@ } }, "uuid": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", - "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", + "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" }, "v8flags": { "version": "3.1.3", @@ -12505,17 +13403,6 @@ "dev": true, "requires": { "iconv-lite": "0.4.24" - }, - "dependencies": { - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - } } }, "whatwg-mimetype": { @@ -12640,9 +13527,9 @@ } }, "wkx": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.4.7.tgz", - "integrity": "sha512-pHf546L96TK8RradLt1cWaIffstgv/zXZ14CGz5KnBs1AxBX0wm+IDphjJw0qrEqRv8P9W9CdTt8Z1unMRZ19A==", + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/wkx/-/wkx-0.4.8.tgz", + "integrity": "sha512-ikPXMM9IR/gy/LwiOSqWlSL3X/J5uk9EO2hHNRXS41eTLXaUFEVw9fn/593jW/tE5tedNg8YjT5HkCa4FqQZyQ==", "requires": { "@types/node": "*" } @@ -12696,9 +13583,9 @@ "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" }, "write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", "dev": true, "requires": { "graceful-fs": "^4.1.11", @@ -12738,45 +13625,249 @@ "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" }, "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, "yargs": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz", - "integrity": "sha512-NwW69J42EsCSanF8kyn5upxvjp5ds+t3+udGBeTbFnERA+lF541DDpMawzo4z6W/QrzNM18D+BPMiOBibnFV5A==", - "requires": { - "cliui": "^4.0.0", - "decamelize": "^1.1.1", - "find-up": "^2.1.0", - "get-caller-file": "^1.0.1", - "os-locale": "^2.0.0", + "version": "14.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.0.tgz", + "integrity": "sha512-/is78VKbKs70bVZH7w4YaZea6xcJWOAwkhbR0CFuZBmYtfTYF0xjGJF43AYd8g2Uii1yJwmS5GR2vBmrc32sbg==", + "requires": { + "cliui": "^5.0.0", + "decamelize": "^1.2.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", + "require-main-filename": "^2.0.0", "set-blocking": "^2.0.0", - "string-width": "^2.0.0", + "string-width": "^3.0.0", "which-module": "^2.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^9.0.2" + "y18n": "^4.0.0", + "yargs-parser": "^15.0.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, "find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", "requires": { - "locate-path": "^2.0.0" + "locate-path": "^3.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" } } }, "yargs-parser": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-9.0.2.tgz", - "integrity": "sha1-nM9qQ0YP5O1Aqbto9I1DuKaMwHc=", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-15.0.0.tgz", + "integrity": "sha512-xLTUnCMc4JhxrPEPUYD5IBR1mWCK/aT6+RJ/K29JY2y1vD+FhtgKK0AXRWvI262q3QSffAQuTouFIKUuHX89wQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } + } + }, + "yargs-unparser": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.6.0.tgz", + "integrity": "sha512-W9tKgmSn0DpSatfri0nx52Joq5hVXgeLiqR/5G0sZNDoLZFOr/xjBUDcShCOGNsBnEMNo1KAMBkTej1Hm62HTw==", + "dev": true, "requires": { - "camelcase": "^4.1.0" + "flat": "^4.1.0", + "lodash": "^4.17.15", + "yargs": "^13.3.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yargs": { + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.0.tgz", + "integrity": "sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.1" + } + }, + "yargs-parser": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.1.tgz", + "integrity": "sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } } }, "year": { @@ -12786,9 +13877,9 @@ "dev": true }, "yn": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.0.tgz", - "integrity": "sha512-kKfnnYkbTfrAdd0xICNFw7Atm8nKpLcLv9AZGEt+kczL/WQVai4e2V6ZN8U/O+iI6WrNuJjNNOyu4zfhl9D3Hg==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true } } diff --git a/package.json b/package.json index 69ec21338..e1544b447 100644 --- a/package.json +++ b/package.json @@ -125,67 +125,67 @@ "body-parser": "^1.19.0", "chalk": "^2.4.2", "cli-table3": "^0.5.1", - "colors": "^1.3.3", + "colors": "^1.4.0", "cross-os": "^1.3.0", "distributions-poisson-quantile": "0.0.0", - "dotenv": "^5.0.1", - "express": "^4.16.3", + "dotenv": "^8.2.0", + "express": "^4.17.1", "fastpriorityqueue": "^0.6.3", - "google-protobuf": "^3.5.0", - "grpc": "^1.21.1", + "google-protobuf": "^3.10.0", + "grpc": "^1.24.0", "gulp": "^4.0.2", "json-stable-stringify": "^1.0.1", "moment": "^2.24.0", - "node-forge": "^0.7.6", + "node-forge": "^0.9.1", "secp256k1": "^3.7.1", - "semver": "^6.2.0", + "semver": "^6.3.0", "sequelize": "^4.44.2", - "sqlite3": "^4.0.9", - "swagger-ui-express": "^4.0.7", + "sqlite3": "^4.1.0", + "swagger-ui-express": "^4.1.2", "toml": "^3.0.0", - "uuid": "^3.3.2", + "uuid": "^3.3.3", "winston": "^3.2.1", - "yargs": "^11.1.0" + "yargs": "^14.2.0" }, "devDependencies": { - "@types/bluebird": "^3.5.27", - "@types/chai": "^4.1.7", - "@types/chai-as-promised": "^7.1.0", - "@types/chai-http": "^3.0.5", + "@types/bluebird": "^3.5.28", + "@types/chai": "^4.2.3", + "@types/chai-as-promised": "^7.1.2", + "@types/chai-http": "^4.2.0", "@types/distributions-poisson-quantile": "0.0.0", - "@types/dotenv": "^4.0.3", - "@types/express": "^4.16.0", - "@types/gulp": "^4.0.5", - "@types/jest": "^24.0.12", + "@types/dotenv": "^6.1.1", + "@types/express": "^4.17.1", + "@types/gulp": "^4.0.6", + "@types/jest": "^24.0.19", "@types/json-stable-stringify": "^1.0.32", "@types/mocha": "^5.2.7", - "@types/node": "^10.14.12", - "@types/node-forge": "^0.7.5", + "@types/node": "^12.11.1", + "@types/node-forge": "^0.8.6", "@types/secp256k1": "^3.5.0", - "@types/semver": "^6.0.1", - "@types/sequelize": "^4.28.3", - "@types/sinon": "^5.0.5", + "@types/semver": "^6.0.2", + "@types/sequelize": "^4.28.6", + "@types/sinon": "^7.5.0", "@types/swagger-ui-express": "^3.0.1", "@types/uuid": "^3.4.5", - "@types/yargs": "^11.1.2", + "@types/yargs": "^13.0.3", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "chai-http": "^4.3.0", - "concurrently": "^3.6.1", - "conventional-changelog-cli": "^2.0.21", - "grpc-tools": "^1.6.0", - "grpc_tools_node_protoc_ts": "^2.5.4", - "jest": "^24.8.0", - "mocha": "^5.2.0", - "nodemon": "^1.19.1", - "sinon": "^7.3.2", - "ts-jest": "^24.0.2", - "ts-node": "^8.3.0", - "tslint": "^5.18.0", - "tslint-config-airbnb": "^5.11.1", + "concurrently": "^5.0.0", + "conventional-changelog-cli": "^2.0.25", + "grpc-tools": "1.8.0", + "grpc_tools_node_protoc_ts": "^2.5.5", + "jest": "^24.9.0", + "mocha": "^6.2.1", + "nodemon": "^1.19.4", + "sinon": "^7.5.0", + "ts-jest": "^24.1.0", + "ts-node": "^8.4.1", + "tslint": "^5.20.0", + "tslint-config-airbnb": "^5.11.2", "tslint-no-circular-imports": "^0.7.0", "typedoc": "^0.15.0", - "typescript": "^3.5.2" + "typescript": "^3.6.4" }, "engines": { "node": ">=10.2.0"