Commit 5609bcf3 authored by isstuev's avatar isstuev

swagger-ui

parent 0063a3fa
......@@ -327,6 +327,7 @@ frontend:
- "/tokens"
- "/accounts"
- "/visualize"
- "/api-docs"
resources:
limits:
......
{
"openapi" : "3.0.0",
"servers" : [ {
"url" : "http://{server}/api/v2/",
"variables" : {
"server" : {
"default" : "blockscout.com/poa/core"
}
}
}, {
"description" : "SwaggerHub API Auto Mocking",
"url" : "https://virtserver.swaggerhub.com/NIKITOSING4/CoreBlockScoutAPI/1.0.0"
} ],
"info" : {
"description" : "API for BlockScout web app",
"version" : "1.0.0",
"title" : "BlockScout API",
"contact" : {
"email" : "you@your-company.com"
},
"license" : {
"name" : "Apache 2.0",
"url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
}
},
"paths" : {
"/search" : {
"get" : {
"parameters" : [ {
"in" : "query",
"name" : "q",
"schema" : {
"type" : "string",
"example" : "USDT"
}
} ],
"summary" : "search",
"operationId" : "search",
"responses" : {
"200" : {
"description" : "search response",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/SearchResultToken"
}, {
"$ref" : "#/components/schemas/SearchResultAddressOrContract"
}, {
"$ref" : "#/components/schemas/SearchResultBlock"
}, {
"$ref" : "#/components/schemas/SearchResultTransaction"
} ]
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"address_hash" : "0x052Ad78E3aA0b0F2D3912FD3b50a9a289CF2f7Aa",
"block_hash" : null,
"holder_count" : 548,
"inserted_at" : "2021-12-07T08:39:01.062253Z",
"item_type" : "token",
"items_count" : 50,
"name" : "RealToken S 13245 Monica St Detroit MI",
"q" : "1",
"tx_hash" : null
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/search/check-redirect" : {
"get" : {
"parameters" : [ {
"in" : "query",
"name" : "q",
"schema" : {
"type" : "string",
"example" : "USDT"
}
} ],
"summary" : "search redirect",
"operationId" : "search redirect",
"responses" : {
"200" : {
"description" : "search response",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/SearchResultRedirect"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/transactions" : {
"get" : {
"parameters" : [ {
"in" : "query",
"name" : "filter",
"schema" : {
"type" : "string",
"example" : "pending | validated"
}
}, {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "token_transfer,contract_creation,contract_call,coin_transfer,token_creation"
}
}, {
"in" : "query",
"name" : "method",
"schema" : {
"type" : "string",
"example" : "approve,transfer,multicall,mint,commit"
}
} ],
"summary" : "get txs",
"operationId" : "get_txs",
"responses" : {
"200" : {
"description" : "block",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Transaction"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27170298,
"filter" : "validated",
"index" : 0,
"items_count" : 50,
"type" : "token_transfer"
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/blocks" : {
"get" : {
"parameters" : [ {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "block | uncle | reorg"
}
} ],
"summary" : "get blocks",
"operationId" : "get_blocks",
"responses" : {
"200" : {
"description" : "block",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Block"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27729304,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/main-page/transactions" : {
"get" : {
"summary" : "get main page txs",
"operationId" : "get_main_page_txs",
"responses" : {
"200" : {
"description" : "txs",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Transaction"
}
}
}
}
}
}
}
},
"/main-page/blocks" : {
"get" : {
"summary" : "get main page blocks",
"operationId" : "get_main_page_tokens",
"responses" : {
"200" : {
"description" : "blocks",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Block"
}
}
}
}
}
}
}
},
"/main-page/indexing-status" : {
"get" : {
"summary" : "get indexing status",
"operationId" : "get_indexing_status",
"responses" : {
"200" : {
"description" : "indexing status",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/IndexingStatus"
}
}
}
}
}
}
},
"/stats" : {
"get" : {
"summary" : "get stats counters",
"operationId" : "get_stats",
"responses" : {
"200" : {
"description" : "stats",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/StatsResponse"
}
}
}
}
}
}
},
"/stats/charts/transactions" : {
"get" : {
"summary" : "get txs chart",
"operationId" : "get_txs_chart",
"responses" : {
"200" : {
"description" : "tx chart",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "chart_data" ],
"properties" : {
"chart_data" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TransactionChartItem"
}
}
}
}
}
}
}
}
}
},
"/stats/charts/market" : {
"get" : {
"summary" : "get market chart",
"operationId" : "get_market_chart",
"responses" : {
"200" : {
"description" : "market chart",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "chart_data", "available_supply" ],
"properties" : {
"available_supply" : {
"type" : "string",
"example" : "164918857.718061"
},
"chart_data" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/MarketChartItem"
}
}
}
}
}
}
}
}
}
},
"/transactions/{transaction_hash}" : {
"get" : {
"summary" : "get tx info",
"operationId" : "get_tx",
"parameters" : [ {
"$ref" : "#/components/parameters/transactionHash"
} ],
"responses" : {
"200" : {
"description" : "tx info",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/Transaction"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/transactions/{transaction_hash}/token-transfers" : {
"get" : {
"summary" : "get token transfers",
"operationId" : "get_token_transfers",
"parameters" : [ {
"$ref" : "#/components/parameters/transactionHash"
}, {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "ERC-20,ERC-721,ERC-1155"
}
} ],
"responses" : {
"200" : {
"description" : "token transfers",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenTransfer"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27350206,
"index" : 1,
"items_count" : 50,
"transaction_hash" : "0xa3b401d6f3124c9d1528cd8d4b692f523d86fd88e48c391ffe9c67e4436ae5ca"
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/transactions/{transaction_hash}/internal-transactions" : {
"get" : {
"summary" : "get internal txs",
"operationId" : "get_internal_txs",
"parameters" : [ {
"$ref" : "#/components/parameters/transactionHash"
} ],
"responses" : {
"200" : {
"description" : "internal txs",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/InternalTransaction"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27350206,
"index" : 1,
"items_count" : 50,
"transaction_hash" : "0xa3b401d6f3124c9d1528cd8d4b692f523d86fd88e48c391ffe9c67e4436ae5ca",
"transaction_index" : 0
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/transactions/{transaction_hash}/logs" : {
"get" : {
"summary" : "get logs",
"operationId" : "get_logs",
"parameters" : [ {
"$ref" : "#/components/parameters/transactionHash"
} ],
"responses" : {
"200" : {
"description" : "internal txs",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Log"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"index" : 0,
"items_count" : 50,
"transaction_hash" : "0xa3b401d6f3124c9d1528cd8d4b692f523d86fd88e48c391ffe9c67e4436ae5ca"
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/transactions/{transaction_hash}/raw-trace" : {
"get" : {
"summary" : "get raw trace",
"operationId" : "get_raw_trace",
"parameters" : [ {
"$ref" : "#/components/parameters/transactionHash"
} ],
"responses" : {
"200" : {
"description" : "internal txs",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/RawTrace"
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/blocks/{block_number_or_hash}" : {
"get" : {
"summary" : "get block info",
"operationId" : "get_block",
"parameters" : [ {
"$ref" : "#/components/parameters/blockNumberOrHash"
} ],
"responses" : {
"200" : {
"description" : "block",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/Block"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/blocks/{block_number_or_hash}/transactions" : {
"get" : {
"summary" : "get block txs",
"operationId" : "get_block_txs",
"parameters" : [ {
"$ref" : "#/components/parameters/blockNumberOrHash"
} ],
"responses" : {
"200" : {
"description" : "block",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Transaction"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"index" : 4,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses" : {
"get" : {
"summary" : "get native coin holders list",
"operationId" : "get_addresses",
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "exchange_rate", "total_supply", "items", "next_page_params" ],
"properties" : {
"exchange_rate" : {
"type" : "string",
"example" : "0.01"
},
"total_supply" : {
"type" : "string",
"example" : "100000000"
},
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/AddressWithTxCount"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"fetched_coin_balance" : "269536604956070000000",
"hash" : "0xf74769d9ffe1cd17f20b283995cf9e7fa2a262ed",
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}" : {
"get" : {
"summary" : "get address info",
"operationId" : "get_address",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/Address"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/counters" : {
"get" : {
"summary" : "get address counters",
"operationId" : "get_address_counters",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/AddressCounters"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/transactions" : {
"get" : {
"summary" : "get address txs",
"operationId" : "get_address_txs",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "filter",
"schema" : {
"type" : "string",
"example" : "to | from"
}
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/Transaction"
}, {
"$ref" : "#/components/schemas/TransactionReward"
} ]
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"hash" : "0x5b432d185e0f08f31cf182a89305eb7ec05ed94395f1e47400dc7934850435ba",
"inserted_at" : "2021-11-13T11:06:00.800000Z",
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/token-transfers" : {
"get" : {
"summary" : "get address token transfers",
"operationId" : "get_address_token_transfers",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "ERC-20,ERC-721,ERC-1155"
}
}, {
"in" : "query",
"name" : "filter",
"schema" : {
"type" : "string",
"example" : "to | from"
}
}, {
"in" : "query",
"name" : "token",
"schema" : {
"type" : "string",
"example" : "0xb81afe27c103bcd42f4026cf719af6d802928765"
}
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenTransfer"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"index" : 4,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/internal-transactions" : {
"get" : {
"summary" : "get address internal txs",
"operationId" : "get_address_internal_txs",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "filter",
"schema" : {
"type" : "string",
"example" : "to | from"
}
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/InternalTransaction"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27625575,
"index" : 0,
"items_count" : 50,
"transaction_index" : 0
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/logs" : {
"get" : {
"summary" : "get address logs",
"operationId" : "get_address_logs",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Log"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"index" : 68,
"items_count" : 50,
"transaction_index" : 9
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/blocks-validated" : {
"get" : {
"summary" : "get blocks validated by address",
"operationId" : "get_address_blocks_validated",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Block"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/token-balances" : {
"get" : {
"summary" : "get blocks validated by address",
"operationId" : "get_address_token_balances",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenBalance"
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/tokens" : {
"get" : {
"summary" : "get blocks validated by address",
"operationId" : "get_address_tokens",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "ERC-20,ERC-721,ERC-1155"
}
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenBalance"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"items_count" : 50,
"token_name" : null,
"token_type" : "ERC-1155",
"value" : 14
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/coin-balance-history" : {
"get" : {
"summary" : "get address coin balance history",
"operationId" : "get_address_coin_balance_history",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/CoinBalanceHistoryEntry"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/addresses/{address_hash}/coin-balance-history-by-day" : {
"get" : {
"summary" : "get address coin balance history by day",
"operationId" : "get_address_coin_balance_history_by_day",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "address",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/CoinBalanceHistoryByDaysEntry"
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens" : {
"get" : {
"summary" : "get tokens list",
"operationId" : "get_tokens_list",
"parameters" : [ {
"in" : "query",
"name" : "filter",
"schema" : {
"type" : "string",
"example" : "USDT"
}
}, {
"in" : "query",
"name" : "type",
"schema" : {
"type" : "string",
"example" : "ERC-20,ERC-721,ERC-1155"
}
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenInfo"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"holder_count" : 2,
"items_count" : 50,
"name" : "Apocryph"
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}" : {
"get" : {
"summary" : "get token info",
"operationId" : "get_token",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/TokenInfo"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/token-transfers" : {
"get" : {
"summary" : "get token token transfers",
"operationId" : "get_token_token_transfers",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenTransfer"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"index" : 61,
"items_count" : 2
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/holders" : {
"get" : {
"summary" : "get token holders",
"operationId" : "get_token_holders",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Holder"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"items_count" : 2,
"value" : 789999999999999970440
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/counters" : {
"get" : {
"summary" : "get token holders",
"operationId" : "get_token_counters",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/TokenCounters"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/inventory" : {
"get" : {
"summary" : "get token inventory",
"operationId" : "get_token_inventory",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/InventoryItem"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"id" : 27736955,
"index" : 4,
"items_count" : 50
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/inventory/{id}" : {
"get" : {
"summary" : "get token instance by id",
"operationId" : "get_token_instance",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"$ref" : "#/components/parameters/id"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/TokenInstance"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/inventory/{id}/token-transfers" : {
"get" : {
"summary" : "get token transfers of token instance",
"operationId" : "get_token_instance_token_transfers",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"$ref" : "#/components/parameters/id"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "items", "next_page_params" ],
"properties" : {
"items" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenTransfer"
}
},
"next_page_params" : {
"type" : "object",
"example" : {
"block_number" : 27736955,
"index" : 61,
"items_count" : 2
}
}
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/tokens/{address_hash}/inventory/{id}/metadata" : {
"get" : {
"summary" : "get metadata of token instance",
"operationId" : "get_token_instance_metadata",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"$ref" : "#/components/parameters/id"
} ],
"responses" : {
"200" : {
"description" : "token",
"content" : {
"application/json" : {
"schema" : {
"type" : "string",
"example" : "{ \"name\": \"Crypto stamp 3.0 2P6rB8\", \"image\": \"https://crypto.post.at/CS3/image/whale-sleeping\", \"fingerprint\": \"0x60e54e804ee2bdc6ca24971674821ca787fc7fb3ecdc4760060da223a9a3afea\", \"external_url\": \"https://crypto.post.at/CS3/2P6rB8\", \"description\": \"Crypto stamp Edition 3 (CS3), ID 2P6rB8\", \"attributes\": [ { \"value\": \"sleeping\", \"trait_type\": \"color\" }, { \"value\": \"Whale\", \"trait_type\": \"animal\" }, { \"value\": \"Layer 2: xdai\", \"trait_type\": \"managed_on\" } ] }"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/smart-contracts/{address_hash}" : {
"get" : {
"summary" : "get smart contract",
"operationId" : "get_smart_contract",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/SmartContract"
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/smart-contracts/{address_hash}/methods-read" : {
"get" : {
"summary" : "get read methods",
"operationId" : "get_read_methods",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "is_custom_abi",
"schema" : {
"type" : "string",
"example" : "true"
}
}, {
"in" : "query",
"name" : "from",
"schema" : {
"type" : "string",
"example" : "0xF61f5c4a3664501F499A9289AaEe76a709CE536e"
}
} ],
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/ReadMethodWithValue"
}, {
"$ref" : "#/components/schemas/ReadMethodWithoutValue"
} ]
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/smart-contracts/{address_hash}/methods-read-proxy" : {
"get" : {
"summary" : "get read methods proxy",
"operationId" : "get_read_methods_proxy",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "is_custom_abi",
"schema" : {
"type" : "string",
"example" : "true"
}
}, {
"in" : "query",
"name" : "from",
"schema" : {
"type" : "string",
"example" : "0xF61f5c4a3664501F499A9289AaEe76a709CE536e"
}
} ],
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/ReadMethodWithValue"
}, {
"$ref" : "#/components/schemas/ReadMethodWithoutValue"
} ]
}
}
}
}
}
}
}
},
"/smart-contracts/{address_hash}/methods-write" : {
"get" : {
"summary" : "get write methods",
"operationId" : "get_write_methods",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "is_custom_abi",
"schema" : {
"type" : "string",
"example" : "true"
}
} ],
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/WriteMethod"
} ]
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/smart-contracts/{address_hash}/methods-write-proxy" : {
"get" : {
"summary" : "get write methods proxy",
"operationId" : "get_write_methods_proxy",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
}, {
"in" : "query",
"name" : "is_custom_abi",
"schema" : {
"type" : "string",
"example" : "true"
}
} ],
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/WriteMethod"
} ]
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/smart-contracts/{address_hash}/query-read-method" : {
"post" : {
"summary" : "query read method",
"operationId" : "query_read_method",
"parameters" : [ {
"$ref" : "#/components/parameters/addressHash"
} ],
"requestBody" : {
"required" : true,
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/ReadMethodQueryBody"
}
}
}
},
"responses" : {
"200" : {
"description" : "smart contract",
"content" : {
"application/json" : {
"schema" : {
"type" : "array",
"items" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/ReadMethodResponse"
} ]
}
}
}
}
},
"400" : {
"description" : "bad input parameter"
}
}
}
},
"/config/json-rpc-url" : {
"get" : {
"summary" : "get json rpc url",
"operationId" : "get_json_rpc_url",
"responses" : {
"200" : {
"description" : "json rpc url",
"content" : {
"application/json" : {
"schema" : {
"type" : "object",
"required" : [ "json_rpc_url" ],
"properties" : {
"json_rpc_url" : {
"type" : "string",
"example" : "https://core.poa.network"
}
}
}
}
}
}
}
}
}
},
"components" : {
"parameters" : {
"addressHash" : {
"name" : "address_hash",
"in" : "path",
"description" : "Address hash",
"required" : true,
"schema" : {
"type" : "string",
"pattern" : "^0x([A-Fa-f0-9]{40})$"
}
},
"addressName" : {
"name" : "address_name",
"in" : "query",
"description" : "the name of address in watchlist",
"required" : true,
"schema" : {
"type" : "string",
"maxLength" : 256
}
},
"transactionHash" : {
"name" : "transaction_hash",
"in" : "path",
"description" : "Transaction hash",
"required" : true,
"schema" : {
"type" : "string",
"pattern" : "^0x([A-Fa-f0-9]{64})$"
}
},
"blockNumberOrHash" : {
"name" : "block_number_or_hash",
"schema" : {
"type" : "string"
},
"in" : "path",
"required" : true,
"description" : "Block number or hash"
},
"id" : {
"name" : "id",
"schema" : {
"type" : "integer"
},
"in" : "path",
"required" : true,
"description" : "integer id"
}
},
"schemas" : {
"Block" : {
"type" : "object",
"required" : [ "height", "timestamp", "tx_count", "miner", "size", "hash", "parent_hash", "difficulty", "total_difficulty", "gas_used", "gas_limit", "nonce" ],
"properties" : {
"height" : {
"type" : "integer"
},
"timestamp" : {
"type" : "string",
"example" : "2022-08-02T07:43:10.000000Z"
},
"tx_count" : {
"type" : "integer"
},
"miner" : {
"$ref" : "#/components/schemas/AddressParam"
},
"size" : {
"type" : "integer"
},
"hash" : {
"type" : "string",
"example" : "0xd2c092969530414df86c6935ebe039224faabe4e80ff51ffa02dc08881e6259a"
},
"parent_hash" : {
"type" : "string",
"example" : "0x3222fd68f89f621ba0fdb0e4fd7d749f40a252174a7808a5d0ad8e6503badd9c"
},
"difficulty" : {
"type" : "integer",
"example" : 340282366920938463463374607431768211454
},
"total_difficulty" : {
"type" : "integer",
"example" : 7340282366920938463463374607431768211454514714
},
"gas_used" : {
"type" : "integer"
},
"gas_limit" : {
"type" : "integer"
},
"nonce" : {
"type" : "string",
"example" : "0x0102034"
},
"base_fee_per_gas" : {
"type" : "integer"
},
"burnt_fees" : {
"type" : "integer"
},
"priority_fee" : {
"type" : "integer"
},
"extra_data" : {
"type" : "string",
"example" : "speth03g�� (Hex:0x7370657468303367c18300)"
},
"uncles_hashes" : {
"type" : "object",
"example" : [ "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347" ]
},
"state_root" : {
"type" : "string",
"example" : "0x434fb3f234c8cffc1d915ad26ea360b0261d183ad37af89e31b839df4dd0b00f"
},
"rewards" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/Reward"
}
},
"gas_target_percentage" : {
"type" : "number",
"example" : -30
},
"gas_used_percentage" : {
"type" : "number"
},
"burnt_fees_percentage" : {
"type" : "number",
"example" : 50.54
},
"type" : {
"type" : "string",
"example" : "block | reorg | uncle"
},
"tx_fees" : {
"type" : "integer"
}
}
},
"TokenTransfer" : {
"type" : "object",
"required" : [ "tx_hash", "type", "from", "to", "total", "token" ],
"properties" : {
"block_hash" : {
"type" : "string",
"example" : "0xa45ac09015352df65cd4d1314de87419dd7589b033a874a5ef7f2654b342babe"
},
"method" : {
"type" : "string",
"example" : "mint"
},
"timestamp" : {
"type" : "string",
"example" : "2022-11-05T19:20:20.000000Z"
},
"type" : {
"type" : "string",
"example" : "token_transfer"
},
"tx_hash" : {
"type" : "string",
"example" : "0x655a2304c3f69b0ce52a6dd25bf4377ffddcdde6397aa53d47b13c49af0ac5c8"
},
"from" : {
"$ref" : "#/components/schemas/AddressParam"
},
"to" : {
"$ref" : "#/components/schemas/AddressParam"
},
"total" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/TotalERC20"
}, {
"$ref" : "#/components/schemas/TotalERC721"
}, {
"$ref" : "#/components/schemas/TotalERC1155"
}, {
"$ref" : "#/components/schemas/TotalERC1155Batch"
} ]
},
"token" : {
"$ref" : "#/components/schemas/TokenInfo"
}
}
},
"RawTrace" : {
"type" : "object",
"example" : {
"action" : {
"callType" : "call",
"from" : "0xf57b55b01b831e602e09674a4e5d69cbcf343f98",
"gas" : "0x25D3FC",
"input" : "0x630cea8e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000041c25b36779231e71769118210c3eb64c0a9c7577b925b309af3183e13acc7cf30210493d13c8c6c3c0bd337d5e39e454fece0c301f0aedb6c43c7a37650ac83e71c00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019500050000f0add9e5dc02faeca12e9669f045685449d6b80a000000000000744359447362798334d3485c64d1e4870fde2ddc0d75f0b456250dc9990662a6f25808cc74a6d1131ea9000927c001018064382ae87cdd000000000000000000000000bab3cbdcbcc578445480a79ed80269c50bb5b71800000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000351af1631aa5ea1ca62ad8a4e3cd87128d4d910800000000000000000000000000000000000000000000005b8decde02914ce837000000000000000000000000000000000000000000000000000000000000001e4d45444f4f5a412045636f73797374656d2076322e30206f6e2078446169000000000000000000000000000000000000000000000000000000000000000000044d445a41000000000000000000000000000000000000000000000000000000000000000000000000000000",
"to" : "0x162e898bd0aacb578c8d5f8d6ca588c13d2a383f",
"value" : "0x0"
},
"error" : "Reverted",
"subtraces" : 1,
"traceAddress" : [ ],
"type" : "call"
}
},
"Log" : {
"type" : "object",
"required" : [ "address", "topics", "data", "index", "tx_hash" ],
"properties" : {
"tx_hash" : {
"type" : "string",
"example" : "0xfb2d87565f230fc6dcbe7c3af45df6d2a9586d08aa5be5491d83216d7e83fc1e"
},
"address" : {
"$ref" : "#/components/schemas/AddressParam"
},
"topics" : {
"type" : "array",
"items" : {
"type" : "string",
"example" : "0x66753cd2356569ee081232e3be8909b950e0a76c1f8460c3a5e3c2be32b11bed"
}
},
"data" : {
"type" : "string",
"example" : "0x0"
},
"index" : {
"type" : "integer"
},
"decoded" : {
"$ref" : "#/components/schemas/DecodedInputLog",
"example" : {
"method_call" : "Transfer(address indexed from, address indexed to, uint256 tokens)",
"method_id" : "0x630cea8e",
"parameters" : [ {
"name" : "signature",
"type" : "bytes",
"indexed?" : true,
"value" : "0x0"
}, {
"name" : "message",
"type" : "bytes",
"indexed?" : false,
"value" : "0x01"
} ]
}
}
}
},
"InternalTransaction" : {
"type" : "object",
"required" : [ "type", "success", "transaction_hash", "from", "to", "created_contract", "value", "block", "timestamp", "index" ],
"properties" : {
"error" : {
"type" : "string",
"example" : "reverted"
},
"success" : {
"type" : "boolean",
"example" : false
},
"type" : {
"type" : "string",
"example" : "delegate call"
},
"transaction_hash" : {
"type" : "string",
"example" : "0x323177407d08e4dced8c0c5a397b7cf9af50313ae2d98d69f84d65bd4152d6d9"
},
"from" : {
"$ref" : "#/components/schemas/AddressParam"
},
"to" : {
"$ref" : "#/components/schemas/AddressParam"
},
"created_contract" : {
"$ref" : "#/components/schemas/AddressParam"
},
"value" : {
"type" : "integer"
},
"index" : {
"type" : "integer"
},
"block" : {
"type" : "integer"
},
"timestamp" : {
"type" : "string",
"example" : "2022-08-02T07:18:05.000000Z"
}
}
},
"Fee" : {
"type" : "object",
"required" : [ "type", "value" ],
"properties" : {
"type" : {
"type" : "string",
"example" : "maximum | actual"
},
"value" : {
"type" : "string",
"example" : "9853224000000000"
}
}
},
"Transaction" : {
"type" : "object",
"required" : [ "hash", "result", "from", "to", "created_contract", "confirmations", "confirmation_duration", "value", "fee", "gas_price", "gas_limit", "nonce", "raw_input", "tx_types" ],
"properties" : {
"hash" : {
"type" : "string",
"example" : "0x5d90a9da2b8da402b11bc92c8011ec8a62a2d59da5c7ac4ae0f73ec51bb73368"
},
"result" : {
"type" : "string",
"example" : "Error: (Awaiting internal transactions for reason)"
},
"confirmations" : {
"type" : "integer",
"example" : 1035
},
"status" : {
"type" : "string",
"example" : "ok | error"
},
"block" : {
"type" : "integer",
"format" : "int32",
"example" : 23484035
},
"timestamp" : {
"type" : "string",
"example" : "2022-08-02T07:18:05.000000Z"
},
"confirmation_duration" : {
"type" : "object",
"example" : [ 0, 17479.0 ]
},
"from" : {
"$ref" : "#/components/schemas/AddressParam"
},
"to" : {
"$ref" : "#/components/schemas/AddressParam"
},
"created_contract" : {
"$ref" : "#/components/schemas/AddressParam"
},
"value" : {
"type" : "integer",
"example" : 100234
},
"fee" : {
"$ref" : "#/components/schemas/Fee"
},
"gas_price" : {
"type" : "integer"
},
"type" : {
"type" : "integer"
},
"gas_used" : {
"type" : "integer"
},
"gas_limit" : {
"type" : "integer"
},
"max_fee_per_gas" : {
"type" : "integer"
},
"max_priority_fee_per_gas" : {
"type" : "integer"
},
"priority_fee" : {
"type" : "integer"
},
"base_fee_per_gas" : {
"type" : "integer"
},
"tx_burnt_fee" : {
"type" : "integer"
},
"nonce" : {
"type" : "integer"
},
"position" : {
"type" : "integer"
},
"revert_reason" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/RevertReasonAsMap"
}, {
"$ref" : "#/components/schemas/DecodedInput"
} ]
},
"raw_input" : {
"type" : "string",
"example" : "0x630cea8e0000000000000000000000000000001"
},
"decoded_input" : {
"$ref" : "#/components/schemas/DecodedInput"
},
"token_transfers" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TokenTransfer"
}
},
"token_transfers_overflow" : {
"type" : "boolean"
},
"exchange_rate" : {
"type" : "number"
},
"method" : {
"type" : "string",
"example" : "transferFrom"
},
"tx_types" : {
"type" : "array",
"items" : {
"type" : "string"
},
"example" : [ "token_transfer", "contract_creation", "contract_call", "token_creation", "coin_transfer" ]
},
"tx_tag" : {
"type" : "string",
"example" : "private_tx_tag"
}
}
},
"RevertReasonAsMap" : {
"type" : "object",
"required" : [ "raw" ],
"properties" : {
"raw" : {
"type" : "string",
"example" : "4b415032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365"
}
}
},
"ExtendedRevertReasonAsMap" : {
"type" : "object",
"required" : [ "raw", "code", "message" ],
"properties" : {
"raw" : {
"type" : "string",
"example" : "4b415032303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365"
},
"code" : {
"type" : "integer"
},
"message" : {
"type" : "string",
"example" : "Reverted"
}
}
},
"ReadMethodWithValue" : {
"type" : "object",
"example" : {
"inputs" : [ ],
"method_id" : "2e64cec1",
"name" : "retrieve",
"outputs" : [ {
"internalType" : "uint256",
"name" : "",
"type" : "uint256",
"value" : 0
} ],
"stateMutability" : "view",
"type" : "function"
}
},
"ReadMethodWithoutValue" : {
"type" : "object",
"example" : {
"inputs" : [ ],
"method_id" : "f851a440",
"name" : "admin",
"outputs" : [ {
"internalType" : "address",
"name" : "admin_",
"type" : "address"
} ],
"stateMutability" : "nonpayable",
"type" : "function"
}
},
"WriteMethod" : {
"type" : "object",
"example" : {
"inputs" : [ {
"internalType" : "uint256",
"name" : "num",
"type" : "uint256"
} ],
"name" : "store",
"outputs" : [ ],
"stateMutability" : "nonpayable",
"type" : "function"
}
},
"DecodedInput" : {
"type" : "object",
"required" : [ "method_call", "method_id", "parameters" ],
"properties" : {
"method_call" : {
"type" : "string",
"example" : "transferFrom(address _from, address _to, uint256 _value)"
},
"method_id" : {
"type" : "string",
"example" : "23b872dd"
},
"parameters" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/DecodedInputParameter"
}
}
}
},
"DecodedInputParameter" : {
"type" : "object",
"required" : [ "name", "type", "value" ],
"properties" : {
"name" : {
"type" : "string",
"example" : "signature"
},
"type" : {
"type" : "string",
"example" : "bytes"
},
"value" : {
"type" : "string",
"example" : "0x0"
}
}
},
"DecodedInputLog" : {
"type" : "object",
"required" : [ "method_call", "method_id", "parameters" ],
"properties" : {
"method_call" : {
"type" : "string",
"example" : "transferFrom(address _from, address _to, uint256 _value)"
},
"method_id" : {
"type" : "string",
"example" : "23b872dd"
},
"parameters" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/DecodedInputLogParameter"
}
}
}
},
"DecodedInputLogParameter" : {
"type" : "object",
"required" : [ "name", "type", "value", "indexed?" ],
"properties" : {
"name" : {
"type" : "string",
"example" : "signature"
},
"type" : {
"type" : "string",
"example" : "bytes"
},
"value" : {
"type" : "string",
"example" : "0x0"
},
"indexed?" : {
"type" : "boolean"
}
}
},
"AddressParam" : {
"type" : "object",
"required" : [ "hash" ],
"properties" : {
"hash" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"implementation_name" : {
"type" : "string",
"example" : "implementationName"
},
"name" : {
"type" : "string",
"example" : "contractName"
},
"is_contract" : {
"type" : "boolean"
},
"private_tags" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/AddressTag"
}
},
"watchlist_names" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/WatchlistName"
}
},
"public_tags" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/AddressTag"
}
},
"is_verified" : {
"type" : "boolean"
}
}
},
"AddressTag" : {
"type" : "object",
"required" : [ "address_hash", "display_name", "label" ],
"properties" : {
"address_hash" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"display_name" : {
"type" : "string",
"example" : "name to show"
},
"label" : {
"type" : "string",
"example" : "label"
}
}
},
"WatchlistName" : {
"type" : "object",
"required" : [ "display_name", "label" ],
"properties" : {
"display_name" : {
"type" : "string",
"example" : "name to show"
},
"label" : {
"type" : "string",
"example" : "label"
}
}
},
"Address" : {
"type" : "object",
"required" : [ "hash" ],
"properties" : {
"creator_address_hash" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"creation_tx_hash" : {
"type" : "string",
"example" : "0x1f610ff9c1efad6b5a8bb6afcc0786cd7343f03f9a61e2544fcff908cedee924"
},
"token" : {
"$ref" : "#/components/schemas/TokenInfo"
},
"coin_balance" : {
"type" : "string",
"example" : "10000000"
},
"exchange_rate" : {
"type" : "string",
"example" : "1.01"
},
"implementation_address" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"block_number_balance_updated_at" : {
"type" : "integer",
"example" : 27656552
},
"hash" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"implementation_name" : {
"type" : "string",
"example" : "implementationName"
},
"name" : {
"type" : "string",
"example" : "contractName"
},
"is_contract" : {
"type" : "boolean"
},
"private_tags" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/AddressTag"
}
},
"watchlist_names" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/WatchlistName"
}
},
"public_tags" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/AddressTag"
}
},
"is_verified" : {
"type" : "boolean"
}
}
},
"AddressWithTxCount" : {
"allOf" : [ {
"$ref" : "#/components/schemas/Address"
}, {
"type" : "object",
"required" : [ "tx_count" ],
"properties" : {
"tx_count" : {
"type" : "string",
"example" : "1234"
}
}
} ]
},
"Reward" : {
"type" : "object",
"required" : [ "reward", "type" ],
"properties" : {
"reward" : {
"type" : "integer"
},
"type" : {
"type" : "string",
"example" : "Miner Reward | Emission Reward | Chore Reward | Uncle Reward"
}
}
},
"TransactionReward" : {
"type" : "object",
"required" : [ "emission_reward", "block_hash", "from", "to", "types" ],
"properties" : {
"types" : {
"type" : "object",
"example" : [ "reward" ]
},
"emission_reward" : {
"type" : "string",
"example" : "500000000000000000"
},
"block_hash" : {
"type" : "string",
"example" : "0x3169a7e9c513462403abb40eaa4fa51c5fbe1b908606e6eeef16232e308cb464"
},
"from" : {
"$ref" : "#/components/schemas/AddressParam"
},
"to" : {
"$ref" : "#/components/schemas/AddressParam"
}
}
},
"AddressCounters" : {
"type" : "object",
"required" : [ "transactions_count", "token_transfers_count", "gas_usage_count", "validations_count" ],
"properties" : {
"transactions_count" : {
"type" : "string",
"example" : "0"
},
"token_transfers_count" : {
"type" : "string",
"example" : "0"
},
"gas_usage_count" : {
"type" : "string",
"example" : "0"
},
"validations_count" : {
"type" : "string",
"example" : "0"
}
}
},
"TokenBalance" : {
"type" : "object",
"required" : [ "value", "token", "token_id" ],
"properties" : {
"value" : {
"type" : "string",
"example" : "10000"
},
"token_id" : {
"type" : "string",
"example" : "123"
},
"token" : {
"$ref" : "#/components/schemas/Token"
}
}
},
"CoinBalanceHistoryEntry" : {
"type" : "object",
"required" : [ "block_number", "block_timestamp", "delta", "value" ],
"properties" : {
"transaction_hash" : {
"type" : "string",
"example" : "0x1f610ff9c1efad6b5a8bb6afcc0786cd7343f03f9a61e2544fcff908cedee924"
},
"block_number" : {
"type" : "integer",
"example" : 1584930
},
"block_timestamp" : {
"type" : "string",
"example" : "2022-08-02T07:18:05.000000Z"
},
"delta" : {
"type" : "string",
"example" : "-234959404"
},
"value" : {
"type" : "string",
"example" : "100232323"
}
}
},
"CoinBalanceHistoryByDaysEntry" : {
"type" : "object",
"required" : [ "date", "value" ],
"properties" : {
"date" : {
"type" : "string",
"example" : "2022-08-02"
},
"value" : {
"type" : "number",
"example" : "100232323"
}
}
},
"Token" : {
"type" : "object",
"required" : [ "address", "symbol", "name", "decimals", "type", "holders", "exchange_rate", "total_supply" ],
"properties" : {
"name" : {
"type" : "string",
"example" : "Tether USD"
},
"decimals" : {
"type" : "string",
"example" : "16"
},
"symbol" : {
"type" : "string",
"example" : "USDT"
},
"address" : {
"type" : "string",
"example" : "0x394c399dbA25B99Ab7708EdB505d755B3aa29997"
},
"type" : {
"type" : "string",
"example" : "ERC-20"
},
"holders" : {
"type" : "integer",
"example" : 837494234523
},
"exchange_rate" : {
"type" : "string",
"example" : "0.99"
},
"total_supply" : {
"type" : "string",
"example" : "10000000"
}
}
},
"TotalERC20" : {
"required" : [ "value" ],
"properties" : {
"decimals" : {
"type" : "string",
"example" : "18"
},
"value" : {
"type" : "string",
"example" : "1000"
}
}
},
"TotalERC721" : {
"required" : [ "token_id" ],
"properties" : {
"token_id" : {
"type" : "string",
"example" : "1"
}
}
},
"TotalERC1155" : {
"required" : [ "token_id", "value" ],
"properties" : {
"token_id" : {
"type" : "string",
"example" : "1"
},
"decimals" : {
"type" : "string",
"example" : null
},
"value" : {
"type" : "string",
"example" : "1000"
}
}
},
"TotalERC1155Batch" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/TotalERC1155"
}
},
"Holder" : {
"required" : [ "address", "value", "token" ],
"properties" : {
"address" : {
"$ref" : "#/components/schemas/AddressParam"
},
"value" : {
"type" : "string",
"example" : "10000"
},
"token_id" : {
"type" : "string",
"example" : "10000"
},
"token" : {
"$ref" : "#/components/schemas/TokenInfo"
}
}
},
"InventoryItem" : {
"required" : [ "is_unique", "token_id" ],
"properties" : {
"is_unique" : {
"type" : "boolean",
"example" : true
},
"token_id" : {
"type" : "integer",
"example" : 431
},
"holder_address_hash" : {
"type" : "string",
"example" : "0x394c399dbA25B99Ab7708EdB505d755B3aa29997"
},
"media_url" : {
"type" : "string",
"example" : "example.com/picture.png"
}
}
},
"TokenInstance" : {
"required" : [ "id", "token_name", "token_type", "token_address_hash", "transfers_count" ],
"properties" : {
"id" : {
"type" : "integer",
"example" : 431
},
"token_name" : {
"type" : "string",
"example" : "New NFT"
},
"token_type" : {
"type" : "string",
"example" : "ERC-721"
},
"token_address_hash" : {
"type" : "string",
"example" : "0x394c399dbA25B99Ab7708EdB505d755B3aa29997"
},
"transfers_count" : {
"type" : "integer",
"example" : 10
},
"media_url" : {
"type" : "string",
"example" : "example.com/picture.png"
}
}
},
"SmartContract" : {
"properties" : {
"verified_twin_address_hash" : {
"type" : "string",
"example" : "0x394c399dbA25B99Ab7708EdB505d755B3aa29997"
},
"is_verified" : {
"type" : "boolean"
},
"is_changed_bytecode" : {
"type" : "boolean"
},
"is_partially_verified" : {
"type" : "boolean"
},
"is_fully_verified" : {
"type" : "boolean"
},
"is_verified_via_sourcify" : {
"type" : "boolean"
},
"is_vyper_contract" : {
"type" : "boolean"
},
"is_self_destructed" : {
"type" : "boolean"
},
"can_be_visualized_via_sol2uml" : {
"type" : "boolean"
},
"minimal_proxy_address_hash" : {
"type" : "string",
"example" : "0x394c399dbA25B99Ab7708EdB505d755B3aa29997"
},
"sourcify_repo_url" : {
"type" : "string",
"example" : "https://sourcify.repo.com/100/link_to_a_contract_at_sourcify"
},
"name" : {
"type" : "string",
"example" : "Cryptostamp3L2"
},
"optimization_enabled" : {
"type" : "boolean",
"example" : false
},
"optimizations_runs" : {
"type" : "integer",
"example" : 200
},
"compiler_version" : {
"type" : "string",
"example" : "v0.8.4+commit.c7e474f2"
},
"evm_version" : {
"type" : "string",
"example" : "default"
},
"verified_at" : {
"type" : "string",
"example" : "2021-06-02T17:54:17.116055Z"
},
"abi" : {
"type" : "string",
"example" : "[{\"type\":\"constructor\",\"stateMutability\":\"nonpayable\",\"inputs\":[{\"type\":\"address\",\"name\":\"_bridgeDataAddress\",\"internalType\":\"address\"},{\"type\":\"uint256\",\"name\":\"_finalSupply\",\"internalType\":\"uint256\"},{\"type\":\"uint256[5]\",\"name\":\"_totalColorSupply\",\"internalType\":\"uint256[5]\"}]}]"
},
"source_code" : {
"type" : "string",
"example" : "contract A {}"
},
"file_path" : {
"type" : "string",
"example" : "contract.sol"
},
"compiler_settings" : {
"type" : "object",
"example" : { }
},
"constructor_args" : {
"type" : "string",
"example" : "0x01"
},
"additional_sources" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/ContractSource"
}
},
"decoded_constructor_args" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/ConstructorArguments"
}
},
"deployed_bytecode" : {
"type" : "string",
"example" : "0x01"
},
"creation_bytecode" : {
"type" : "string",
"example" : "0x02"
},
"external_libraries" : {
"type" : "array",
"items" : {
"$ref" : "#/components/schemas/ExternalLibrary"
}
}
}
},
"ExternalLibrary" : {
"required" : [ "name", "address_hash" ],
"properties" : {
"name" : {
"type" : "string",
"example" : "MathLib"
},
"address_hash" : {
"type" : "string",
"example" : "0xF61f5c4a3664501F499A9289AaEe76a709CE536e"
}
}
},
"ContractSource" : {
"properties" : {
"file_path" : {
"type" : "string",
"example" : "contracts/erc-20.sol"
},
"source_code" : {
"type" : "string",
"example" : "pragma solidity ^0.8.0; \\n contract A {}"
}
}
},
"ConstructorArguments" : {
"type" : "object",
"example" : [ "0x2a3885b3f0c98f3e36334d4fa7beda53cb0ae095", {
"internalType" : "address",
"name" : "_logic",
"type" : "address"
} ]
},
"TokenInfo" : {
"required" : [ "address", "type" ],
"properties" : {
"address" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
},
"type" : {
"type" : "string",
"example" : "ERC-20"
},
"symbol" : {
"type" : "string",
"example" : "USDT"
},
"name" : {
"type" : "string",
"example" : "Tether USD"
},
"decimals" : {
"type" : "string",
"example" : "18"
},
"holders" : {
"type" : "string",
"example" : "100"
},
"exchange_rate" : {
"type" : "string",
"example" : "0.001"
},
"total_supply" : {
"type" : "string",
"example" : "1000000"
}
}
},
"Argument" : {
"properties" : {
"name" : {
"type" : "string"
},
"type" : {
"type" : "string",
"example" : "uint256"
},
"value" : {
"type" : "string",
"example" : "100000"
}
}
},
"SearchResultRedirect" : {
"required" : [ "redirect" ],
"properties" : {
"redirect" : {
"type" : "boolean"
},
"type" : {
"type" : "string",
"example" : "address | block | transaction"
},
"parameter" : {
"type" : "string",
"example" : "0xEb533ee5687044E622C69c58B1B12329F56eD9ad"
}
}
},
"SearchResultToken" : {
"required" : [ "type", "name", "symbol", "address", "token_url", "address_url" ],
"properties" : {
"type" : {
"type" : "string",
"example" : "token"
},
"name" : {
"type" : "string",
"example" : "Tether USD"
},
"symbol" : {
"type" : "string",
"example" : "USDT"
},
"address" : {
"type" : "string",
"example" : "0xe2FBdeADC82c71C1b8bFf9CA4f9E7666224A362c"
},
"token_url" : {
"type" : "string",
"example" : "/xdai/mainnet/token/0xc1c1031e4A44B98707203480029e6576CB3267e3"
},
"address_url" : {
"type" : "string",
"example" : "/xdai/mainnet/address/0xc1c1031e4A44B98707203480029e6576CB3267e3"
}
}
},
"SearchResultAddressOrContract" : {
"required" : [ "type", "address", "url" ],
"properties" : {
"type" : {
"type" : "string",
"example" : "address|contract"
},
"name" : {
"type" : "string",
"example" : "Name"
},
"address" : {
"type" : "string",
"example" : "0xe2FBdeADC82c71C1b8bFf9CA4f9E7666224A362c"
},
"url" : {
"type" : "string",
"example" : "/xdai/mainnet/address/0xc1c1031e4A44B98707203480029e6576CB3267e3"
}
}
},
"SearchResultBlock" : {
"required" : [ "type", "block_number", "block_hash", "url" ],
"properties" : {
"type" : {
"type" : "string",
"example" : "block"
},
"block_number" : {
"type" : "integer",
"example" : 24816691
},
"block_hash" : {
"type" : "string",
"example" : "0xba83e9ba0b43e8d112a07fdab08d53f473d2b7fb0e585bd437ae739933db203e"
},
"url" : {
"type" : "string",
"example" : "/xdai/mainnet/block/0xba83e9ba0b43e8d112a07fdab08d53f473d2b7fb0e585bd437ae739933db203e"
}
}
},
"SearchResultTransaction" : {
"required" : [ "type", "tx_hash", "url" ],
"properties" : {
"type" : {
"type" : "string",
"example" : "transaction"
},
"tx_hash" : {
"type" : "string",
"example" : "0xe38c6772f33edfbd218f59853befe18391cb786f911fb6c0b00ed6dd72ef6e69"
},
"url" : {
"type" : "string",
"example" : "/xdai/mainnet/tx/0xe38c6772f33edfbd218f59853befe18391cb786f911fb6c0b00ed6dd72ef6e69"
}
}
},
"IndexingStatus" : {
"required" : [ "finished_indexing", "finished_indexing_blocks", "indexed_blocks_ratio", "indexed_inernal_transactions_ratio" ],
"properties" : {
"finished_indexing" : {
"type" : "boolean"
},
"finished_indexing_blocks" : {
"type" : "boolean"
},
"indexed_blocks_ratio" : {
"type" : "string",
"example" : "1.0"
},
"indexed_inernal_transactions_ratio" : {
"type" : "string",
"example" : "1.0"
}
}
},
"StatsResponse" : {
"required" : [ "total_blocks", "total_addresses", "total_transactions", "average_block_time", "coin_price", "total_gas_used", "transactions_today", "gas_used_today", "market_cap", "network_utilization_percentage" ],
"properties" : {
"total_blocks" : {
"type" : "string",
"example" : "508700"
},
"total_addresses" : {
"type" : "string",
"example" : "982340"
},
"total_transactions" : {
"type" : "string",
"example" : "1699427"
},
"average_block_time" : {
"type" : "number",
"example" : 25000.0
},
"coin_price" : {
"type" : "string",
"example" : "0.00254957"
},
"total_gas_used" : {
"type" : "string",
"example" : "0"
},
"transactions_today" : {
"type" : "string",
"example" : "622"
},
"gas_used_today" : {
"type" : "string",
"example" : "49063630"
},
"gas_prices" : {
"type" : "object",
"example" : {
"average" : 10.0,
"fast" : 10.0,
"slow" : 10.0
}
},
"static_gas_price" : {
"type" : "string",
"example" : "10.1"
},
"market_cap" : {
"type" : "string",
"example" : "420471.10604559750644"
},
"network_utilization_percentage" : {
"type" : "number",
"example" : 40.2142
}
}
},
"MarketChartItem" : {
"required" : [ "date", "closing_price" ],
"properties" : {
"date" : {
"type" : "string",
"example" : "2022-10-31"
},
"closing_price" : {
"type" : "string",
"example" : "0.00254915"
}
}
},
"TransactionChartItem" : {
"required" : [ "date", "tx_count" ],
"properties" : {
"date" : {
"type" : "string",
"example" : "2022-10-31"
},
"tx_count" : {
"type" : "integer",
"example" : 622
}
}
},
"TokenCounters" : {
"required" : [ "token_holders_count", "transfers_count" ],
"properties" : {
"token_holders_count" : {
"type" : "string",
"example" : "100"
},
"transfers_count" : {
"type" : "string",
"example" : "1000"
}
}
},
"ReadMethodQueryBody" : {
"required" : [ "args", "method_id" ],
"properties" : {
"args" : {
"type" : "array",
"example" : [ 1123, "0xBb36c792B9B45Aaf8b848A1392B0d6559202729E" ]
},
"method_id" : {
"type" : "string",
"example" : "ab470f05"
},
"from" : {
"type" : "string",
"example" : "0xBb36c792B9B45Aaf8b848A1392B0d6559202729E"
},
"contract_type" : {
"type" : "string",
"example" : "proxy | regular"
}
}
},
"ReadMethodResponse" : {
"required" : [ "result", "is_error" ],
"properties" : {
"is_error" : {
"type" : "boolean"
},
"result" : {
"oneOf" : [ {
"$ref" : "#/components/schemas/ExtendedRevertReasonAsMap"
}, {
"$ref" : "#/components/schemas/DecodedInput"
}, {
"$ref" : "#/components/schemas/CodeAndMessage"
}, {
"$ref" : "#/components/schemas/OutputAndNames"
} ]
}
}
},
"CodeAndMessage" : {
"required" : [ "code", "message" ],
"properties" : {
"code" : {
"type" : "integer"
},
"message" : {
"type" : "string",
"example" : "Reverted"
}
}
},
"Error" : {
"required" : [ "error" ],
"properties" : {
"error" : {
"type" : "string",
"example" : "Some error"
}
}
},
"OutputAndNames" : {
"required" : [ "output", "names" ],
"properties" : {
"output" : {
"type" : "array",
"example" : [ {
"type" : "uint256",
"value" : 0
} ]
},
"names" : {
"type" : "array",
"example" : [ null ]
}
}
}
}
}
}
\ No newline at end of file
const withTM = require('next-transpile-modules')([
'react-syntax-highlighter',
'swagger-client',
'swagger-ui-react',
]);
const withRoutes = require('nextjs-routes/config')({
outDir: 'types',
});
......@@ -7,7 +12,7 @@ const headers = require('./configs/nextjs/headers');
const redirects = require('./configs/nextjs/redirects');
const rewrites = require('./configs/nextjs/rewrites');
const moduleExports = {
const moduleExports = withTM({
include: path.resolve(__dirname, 'icons'),
reactStrictMode: true,
webpack(config, { webpack }) {
......@@ -39,6 +44,6 @@ const moduleExports = {
// otherwise it is impossible to upload large files (over 1Mb)
bodyParser: false,
},
};
});
module.exports = withRoutes(moduleExports);
import type { NextPage } from 'next';
import Head from 'next/head';
import React from 'react';
import getNetworkTitle from 'lib/networks/getNetworkTitle';
import Page from 'ui/shared/Page/Page';
import PageTitle from 'ui/shared/Page/PageTitle';
import SwaggerUI from 'ui/SwaggerUI';
const AppsPage: NextPage = () => {
const networkTitle = getNetworkTitle();
return (
<Page>
<PageTitle text="API Documentation"/>
<Head><title>{ `API for the ${ networkTitle }` }</title></Head>
<SwaggerUI/>
</Page>
);
};
export default AppsPage;
export { getServerSideProps } from 'lib/next/getServerSideProps';
......@@ -16,6 +16,7 @@ declare module "nextjs-routes" {
| DynamicRoute<"/address/[hash]", { "hash": string }>
| StaticRoute<"/api/csrf">
| StaticRoute<"/api/proxy">
| StaticRoute<"/api-docs">
| DynamicRoute<"/apps/[id]", { "id": string }>
| StaticRoute<"/apps">
| StaticRoute<"/auth/auth0">
......
/* eslint-disable @typescript-eslint/naming-convention */
const SwaggerUIReact = dynamic(() => import('swagger-ui-react'), {
loading: () => <Spinner/>,
ssr: false,
});
import { Box, Spinner, useColorModeValue } from '@chakra-ui/react';
import dynamic from 'next/dynamic';
import React from 'react';
import spec from '../lib/spec.json';
import 'swagger-ui-react/swagger-ui.css';
const NeverShowInfoPlugin = () => {
return {
components: {
SchemesContainer: () => null,
ServersContainer: () => null,
InfoContainer: () => null,
},
};
};
const SwaggerUI = () => {
const swaggerStyle = {
'.scheme-container, .opblock-tag': {
display: 'none',
},
'.swagger-ui': {
color: useColorModeValue('blackAlpha.800', 'whiteAlpha.800'),
},
'.swagger-ui .opblock-summary-control:focus': {
outline: 'none',
},
// eslint-disable-next-line max-len
'.swagger-ui .opblock .opblock-summary-path, .swagger-ui .opblock .opblock-summary-description, .swagger-ui div, .swagger-ui p, .swagger-ui h5, .swagger-ui .response-col_links, .swagger-ui h4, .swagger-ui table thead tr th, .swagger-ui table thead tr td, .swagger-ui .parameter__name, .swagger-ui .parameter__type, .swagger-ui .response-col_status, .swagger-ui .tab li, .swagger-ui .opblock .opblock-section-header h4': {
color: 'unset',
},
'.swagger-ui input': {
color: 'blackAlpha.800',
},
'.swagger-ui .opblock .opblock-section-header': {
background: useColorModeValue('whiteAlpha.800', 'blackAlpha.800'),
},
};
return (
<Box sx={ swaggerStyle }>
<SwaggerUIReact spec={ spec } plugins={ [ NeverShowInfoPlugin ] }/>
</Box>
);
};
export default SwaggerUI;
......@@ -1010,6 +1010,14 @@
core-js-pure "^3.25.1"
regenerator-runtime "^0.13.4"
"@babel/runtime-corejs3@^7.11.2", "@babel/runtime-corejs3@^7.18.9":
version "7.20.13"
resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.20.13.tgz#ad012857db412ab0b5ccf184b67be2cfcc2a1dcf"
integrity sha512-p39/6rmY9uvlzRiLZBIB3G9/EBr66LBMcYm7fIDeSBNdRjF2AGD3rFZucUyAgGHC2N+7DdLvVi33uTjSE44FIw==
dependencies:
core-js-pure "^3.25.1"
regenerator-runtime "^0.13.11"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9":
version "7.19.4"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78"
......@@ -1017,7 +1025,7 @@
dependencies:
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.12.0", "@babel/runtime@^7.8.7":
"@babel/runtime@^7.12.0", "@babel/runtime@^7.15.4", "@babel/runtime@^7.3.1", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
version "7.20.13"
resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.13.tgz#7055ab8a7cff2b8f6058bf6ae45ff84ad2aded4b"
integrity sha512-gt3PKXs0DBoL9xCvOIIZ2NEqAGZqHjAnmVbfQtB620V0uReIQutpel14KcneZuer7UioY8ALKZ7iocavvzTNFA==
......@@ -1102,6 +1110,11 @@
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
"@braintree/sanitize-url@=6.0.0":
version "6.0.0"
resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.0.tgz#fe364f025ba74f6de6c837a84ef44bdb1d61e68f"
integrity sha512-mgmE7XBYY/21erpzhexk4Cj1cyTQ9LzvnTxtzM17BJ7ERMNE6W72mQRo0I1Ud8eFJ+RVVIcBNhLFZ3GX4XFz5w==
"@chakra-ui/accordion@2.1.4":
version "2.1.4"
resolved "https://registry.yarnpkg.com/@chakra-ui/accordion/-/accordion-2.1.4.tgz#a3eca38f8e52d5a5f4b9528fb9d269dcdcb035ac"
......@@ -3909,6 +3922,21 @@
resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.10.tgz#7b4e1e0ada4d17684ac3b05d601a4871cfab11fc"
integrity sha512-o0J30wqycjF5miWDKYKKzzOU1ZTLuA42HZ4HE7/zqTOc/jTLdQ5NhYWvsRQo45Nfi1KHoRdNhteSI4BAxTF1Pg==
"@types/hast@^2.0.0":
version "2.3.4"
resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
dependencies:
"@types/unist" "*"
"@types/hoist-non-react-statics@^3.3.0":
version "3.3.1"
resolved "https://registry.yarnpkg.com/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.1.tgz#1124aafe5118cb591977aeb1ceaaed1070eb039f"
integrity sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==
dependencies:
"@types/react" "*"
hoist-non-react-statics "^3.3.0"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
version "2.0.4"
resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz#8467d4b3c087805d63580480890791277ce35c44"
......@@ -4042,6 +4070,16 @@
dependencies:
"@types/react" "*"
"@types/react-redux@^7.1.20":
version "7.1.25"
resolved "https://registry.yarnpkg.com/@types/react-redux/-/react-redux-7.1.25.tgz#de841631205b24f9dfb4967dd4a7901e048f9a88"
integrity sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg==
dependencies:
"@types/hoist-non-react-statics" "^3.3.0"
"@types/react" "*"
hoist-non-react-statics "^3.3.0"
redux "^4.0.0"
"@types/react-scroll@^1.8.4":
version "1.8.4"
resolved "https://registry.yarnpkg.com/@types/react-scroll/-/react-scroll-1.8.4.tgz#2b6258fb34104d3fcc7a22e8eceaadc669ba3ad1"
......@@ -4096,6 +4134,13 @@
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c"
integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==
"@types/swagger-ui-react@^4.11.0":
version "4.11.0"
resolved "https://registry.yarnpkg.com/@types/swagger-ui-react/-/swagger-ui-react-4.11.0.tgz#3ac84bc8e2f6e57b9ff4533ec31934f697e1a2c4"
integrity sha512-WPMR+GWbLd7zvY/uOTGzGzP44zK2rIZSnU00+pDR2YANnEV6/qj0kqYfdSY1Vk6qdvI7dR0Tx8JEMgUUrUQDjw==
dependencies:
"@types/react" "*"
"@types/tough-cookie@*":
version "4.0.2"
resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.2.tgz#6286b4c7228d58ab7866d19716f3696e03a09397"
......@@ -4106,6 +4151,11 @@
resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.2.tgz#fc25ad9943bcac11cceb8168db4f275e0e72e756"
integrity sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==
"@types/unist@*":
version "2.0.6"
resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
"@types/ws@^7.4.4":
version "7.4.7"
resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702"
......@@ -4716,6 +4766,11 @@
motion "10.15.3"
qrcode "1.5.1"
"@yarnpkg/lockfile@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31"
integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==
"@zag-js/element-size@0.1.0":
version "0.1.0"
resolved "https://registry.yarnpkg.com/@zag-js/element-size/-/element-size-0.1.0.tgz#dfdb3f66a70328d0c3149aae29b8f99c10590c22"
......@@ -4923,7 +4978,7 @@ arg@^4.1.0:
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
argparse@^1.0.7:
argparse@^1.0.10, argparse@^1.0.7:
version "1.0.10"
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
......@@ -5015,11 +5070,23 @@ asynckit@^0.4.0:
resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
at-least-node@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2"
integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==
atomic-sleep@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b"
integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==
autolinker@^3.11.0:
version "3.16.2"
resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-3.16.2.tgz#6bb4f32432fc111b65659336863e653973bfbcc9"
integrity sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA==
dependencies:
tslib "^2.3.0"
available-typed-arrays@^1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7"
......@@ -5147,7 +5214,7 @@ base-x@^3.0.2:
dependencies:
safe-buffer "^5.0.1"
base64-js@^1.3.1:
base64-js@^1.3.1, base64-js@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
......@@ -5415,7 +5482,7 @@ chalk@^2.0.0:
escape-string-regexp "^1.0.5"
supports-color "^5.3.0"
chalk@^4.0.0, chalk@^4.1.0:
chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
......@@ -5428,6 +5495,21 @@ char-regex@^1.0.2:
resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf"
integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==
character-entities-legacy@^1.0.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1"
integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==
character-entities@^1.0.0:
version "1.2.4"
resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b"
integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==
character-reference-invalid@^1.0.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
chokidar@^3.5.3:
version "3.5.3"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
......@@ -5443,6 +5525,11 @@ chokidar@^3.5.3:
optionalDependencies:
fsevents "~2.3.2"
ci-info@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==
ci-info@^3.2.0:
version "3.6.1"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.6.1.tgz#7594f1c95cb7fdfddee7af95a13af7dbc67afdcf"
......@@ -5461,6 +5548,11 @@ cjs-module-lexer@^1.0.0:
resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40"
integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==
classnames@^2.3.1:
version "2.3.2"
resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.3.2.tgz#351d813bf0137fcc6a76a16b88208d2560a0d924"
integrity sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==
clean-stack@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b"
......@@ -5582,6 +5674,11 @@ combined-stream@^1.0.8:
dependencies:
delayed-stream "~1.0.0"
comma-separated-tokens@^1.0.0:
version "1.0.8"
resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea"
integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==
commander@7, commander@^7.2.0:
version "7.2.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
......@@ -5637,6 +5734,11 @@ cookie@^0.4.1:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
cookie@~0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
copy-anything@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.2.tgz#7189171ff5e1893b2287e8bf574b8cd448ed50b1"
......@@ -5714,13 +5816,24 @@ create-require@^1.1.0:
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333"
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==
cross-fetch@^3.1.4:
cross-fetch@^3.1.4, cross-fetch@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f"
integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==
dependencies:
node-fetch "2.6.7"
cross-spawn@^6.0.5:
version "6.0.5"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==
dependencies:
nice-try "^1.0.4"
path-key "^2.0.1"
semver "^5.5.0"
shebang-command "^1.2.0"
which "^1.2.9"
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
......@@ -5761,6 +5874,11 @@ css-what@^6.0.1:
resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4"
integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==
css.escape@1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==
csso@^4.2.0:
version "4.2.0"
resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529"
......@@ -6125,12 +6243,17 @@ deep-equal@^2.0.5:
which-collection "^1.0.1"
which-typed-array "^1.1.8"
deep-extend@0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==
deep-is@^0.1.3, deep-is@~0.1.3:
version "0.1.4"
resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
deepmerge@^4.2.2:
deepmerge@^4.2.2, deepmerge@~4.2.2:
version "4.2.2"
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==
......@@ -6277,6 +6400,11 @@ domhandler@^4.2.0, domhandler@^4.3.1:
dependencies:
domelementtype "^2.2.0"
dompurify@=2.3.10:
version "2.3.10"
resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-2.3.10.tgz#901f7390ffe16a91a5a556b94043314cd4850385"
integrity sha512-o7Fg/AgC7p/XpKjf/+RC3Ok6k4St5F7Q6q6+Nnm3p2zGWioAY6dh0CbbuwOhH2UcSzKsdniE/YnE2/92JcsA+g==
domutils@^2.8.0:
version "2.8.0"
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135"
......@@ -6306,6 +6434,11 @@ dotenv@^16.0.0:
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07"
integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==
drange@^1.0.2:
version "1.1.1"
resolved "https://registry.yarnpkg.com/drange/-/drange-1.1.1.tgz#b2aecec2aab82fcef11dbbd7b9e32b83f8f6c0b8"
integrity sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA==
duplexify@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0"
......@@ -6378,6 +6511,14 @@ end-of-stream@^1.1.0, end-of-stream@^1.4.1, end-of-stream@^1.4.4:
dependencies:
once "^1.4.0"
enhanced-resolve@^5.10.0:
version "5.12.0"
resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634"
integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ==
dependencies:
graceful-fs "^4.2.4"
tapable "^2.2.0"
entities@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55"
......@@ -7176,6 +7317,11 @@ fast-glob@^3.2.9:
merge2 "^1.3.0"
micromatch "^4.0.4"
fast-json-patch@^3.0.0-1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/fast-json-patch/-/fast-json-patch-3.1.1.tgz#85064ea1b1ebf97a3f7ad01e23f9337e72c66947"
integrity sha512-vf6IHUX2SBcA+5/+4883dsIjpBTqmfBjmYiWK1savxQmFk4JfBMLa7ynTYOs1Rolp/T1betJxHiGD3g1Mn8lUQ==
fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
......@@ -7215,6 +7361,13 @@ fastq@^1.6.0:
dependencies:
reusify "^1.0.4"
fault@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13"
integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==
dependencies:
format "^0.2.0"
fb-watchman@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c"
......@@ -7282,6 +7435,13 @@ find-up@^5.0.0:
locate-path "^6.0.0"
path-exists "^4.0.0"
find-yarn-workspace-root@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd"
integrity sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==
dependencies:
micromatch "^4.0.2"
flat-cache@^3.0.4:
version "3.0.4"
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
......@@ -7319,6 +7479,11 @@ for-each@^0.3.3:
dependencies:
is-callable "^1.1.3"
form-data-encoder@^1.4.3:
version "1.7.2"
resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040"
integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A==
form-data@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452"
......@@ -7328,6 +7493,19 @@ form-data@^4.0.0:
combined-stream "^1.0.8"
mime-types "^2.1.12"
format@^0.2.0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b"
integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==
formdata-node@^4.0.0:
version "4.4.1"
resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2"
integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==
dependencies:
node-domexception "1.0.0"
web-streams-polyfill "4.0.0-beta.3"
formdata-polyfill@^4.0.10:
version "4.0.10"
resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423"
......@@ -7363,6 +7541,16 @@ framesync@6.0.1:
dependencies:
tslib "^2.1.0"
fs-extra@^9.0.0:
version "9.1.0"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d"
integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==
dependencies:
at-least-node "^1.0.0"
graceful-fs "^4.2.0"
jsonfile "^6.0.1"
universalify "^2.0.0"
fs.realpath@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
......@@ -7551,7 +7739,7 @@ gopd@^1.0.1:
dependencies:
get-intrinsic "^1.1.3"
graceful-fs@^4.2.9:
graceful-fs@^4.1.11, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
version "4.2.10"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
......@@ -7624,6 +7812,22 @@ hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3, hash.js@^1.1.7:
inherits "^2.0.3"
minimalistic-assert "^1.0.1"
hast-util-parse-selector@^2.0.0:
version "2.2.5"
resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a"
integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==
hastscript@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640"
integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==
dependencies:
"@types/hast" "^2.0.0"
comma-separated-tokens "^1.0.0"
hast-util-parse-selector "^2.0.0"
property-information "^5.0.0"
space-separated-tokens "^1.0.0"
help-me@^4.0.1:
version "4.1.0"
resolved "https://registry.yarnpkg.com/help-me/-/help-me-4.1.0.tgz#c105e78ba490d6fcaa61a3d0cd06e0054554efab"
......@@ -7637,6 +7841,11 @@ hey-listen@^1.0.8:
resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
highlight.js@^10.4.1, highlight.js@~10.7.0:
version "10.7.3"
resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531"
integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==
hmac-drbg@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
......@@ -7646,7 +7855,7 @@ hmac-drbg@^1.0.1:
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
hoist-non-react-statics@^3.3.0, hoist-non-react-statics@^3.3.1, hoist-non-react-statics@^3.3.2:
version "3.3.2"
resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
......@@ -7726,6 +7935,11 @@ immediate@~3.0.5:
resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"
integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==
immutable@^3.x.x:
version "3.8.2"
resolved "https://registry.yarnpkg.com/immutable/-/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3"
integrity sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==
import-fresh@^3.0.0, import-fresh@^3.2.1:
version "3.3.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
......@@ -7779,13 +7993,26 @@ internal-slot@^1.0.3:
resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
invariant@^2.2.4:
invariant@^2.2.2, invariant@^2.2.4:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==
dependencies:
loose-envify "^1.0.0"
is-alphabetical@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d"
integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==
is-alphanumerical@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf"
integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==
dependencies:
is-alphabetical "^1.0.0"
is-decimal "^1.0.0"
is-arguments@^1.0.4, is-arguments@^1.1.0, is-arguments@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b"
......@@ -7826,6 +8053,13 @@ is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7:
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
is-ci@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c"
integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==
dependencies:
ci-info "^2.0.0"
is-core-module@^2.8.1, is-core-module@^2.9.0:
version "2.10.0"
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed"
......@@ -7840,6 +8074,16 @@ is-date-object@^1.0.1, is-date-object@^1.0.5:
dependencies:
has-tostringtag "^1.0.0"
is-decimal@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5"
integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==
is-docker@^2.0.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
is-extglob@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
......@@ -7891,6 +8135,11 @@ is-hex-prefixed@1.0.0:
resolved "https://registry.yarnpkg.com/is-hex-prefixed/-/is-hex-prefixed-1.0.0.tgz#7d8d37e6ad77e5d127148913c573e082d777f554"
integrity sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==
is-hexadecimal@^1.0.0:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7"
integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==
is-map@^2.0.1, is-map@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127"
......@@ -7918,6 +8167,11 @@ is-path-inside@^3.0.3:
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
is-plain-object@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
is-potential-custom-element-name@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
......@@ -8008,6 +8262,13 @@ is-what@^4.1.6:
resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.7.tgz#c41dc1d2d2d6a9285c624c2505f61849c8b1f9cc"
integrity sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==
is-wsl@^2.1.1:
version "2.2.0"
resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
dependencies:
is-docker "^2.0.0"
isarray@^2.0.1, isarray@^2.0.5:
version "2.0.5"
resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
......@@ -8474,6 +8735,11 @@ js-cookie@^3.0.1:
resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-3.0.1.tgz#9e39b4c6c2f56563708d7d31f6f5f21873a92414"
integrity sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==
js-file-download@^0.4.12:
version "0.4.12"
resolved "https://registry.yarnpkg.com/js-file-download/-/js-file-download-0.4.12.tgz#10c70ef362559a5b23cdbdc3bd6f399c3d91d821"
integrity sha512-rML+NkoD08p5Dllpjo0ffy4jRHeY6Zsapvr/W86N7E0yuzAO6qa5X9+xog6zQNlH102J7IXljNY2FtS6Lj3ucg==
js-sdsl@^4.1.4:
version "4.2.0"
resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0"
......@@ -8489,6 +8755,13 @@ js-sha3@0.8.0:
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
js-yaml@=4.1.0, js-yaml@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
dependencies:
argparse "^2.0.1"
js-yaml@^3.13.1:
version "3.14.1"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
......@@ -8497,13 +8770,6 @@ js-yaml@^3.13.1:
argparse "^1.0.7"
esprima "^4.0.0"
js-yaml@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
dependencies:
argparse "^2.0.1"
jsdoctypeparser@^9.0.0:
version "9.0.0"
resolved "https://registry.yarnpkg.com/jsdoctypeparser/-/jsdoctypeparser-9.0.0.tgz#8c97e2fb69315eb274b0f01377eaa5c940bd7b26"
......@@ -8619,6 +8885,15 @@ json5@^2.2.1:
resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
jsonfile@^6.0.1:
version "6.1.0"
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae"
integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==
dependencies:
universalify "^2.0.0"
optionalDependencies:
graceful-fs "^4.1.6"
jsonify@^0.0.1:
version "0.0.1"
resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978"
......@@ -8651,6 +8926,13 @@ keyvaluestorage-interface@^1.0.0:
resolved "https://registry.yarnpkg.com/keyvaluestorage-interface/-/keyvaluestorage-interface-1.0.0.tgz#13ebdf71f5284ad54be94bd1ad9ed79adad515ff"
integrity sha512-8t6Q3TclQ4uZynJY9IGr2+SsIGwK9JHcO6ootkHCGA0CrQCRy+VkouYNO2xicET6b9al7QKzpebNow+gkpCL8g==
klaw-sync@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-6.0.0.tgz#1fd2cfd56ebb6250181114f0a581167099c2b28c"
integrity sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==
dependencies:
graceful-fs "^4.1.11"
kleur@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
......@@ -8792,7 +9074,7 @@ locate-path@^6.0.0:
dependencies:
p-locate "^5.0.0"
lodash.debounce@^4.0.8:
lodash.debounce@^4, lodash.debounce@^4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==
......@@ -8827,7 +9109,7 @@ lodash.throttle@^4.1.1:
resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==
lodash@^4.0.0, lodash@^4.17.20:
lodash@^4.0.0, lodash@^4.17.20, lodash@^4.17.21:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
......@@ -8849,6 +9131,14 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
lowlight@^1.17.0:
version "1.20.0"
resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888"
integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==
dependencies:
fault "^1.0.0"
highlight.js "~10.7.0"
lru-cache@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
......@@ -8926,7 +9216,7 @@ mersenne-twister@^1.1.0:
resolved "https://registry.yarnpkg.com/mersenne-twister/-/mersenne-twister-1.1.0.tgz#f916618ee43d7179efcf641bec4531eb9670978a"
integrity sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA==
micromatch@^4.0.4, micromatch@^4.0.5:
micromatch@^4.0.2, micromatch@^4.0.4, micromatch@^4.0.5:
version "4.0.5"
resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
......@@ -9048,6 +9338,13 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
next-transpile-modules@^10.0.0:
version "10.0.0"
resolved "https://registry.yarnpkg.com/next-transpile-modules/-/next-transpile-modules-10.0.0.tgz#7152880048835acb64d05fc7aa34910cbe7994da"
integrity sha512-FyeJ++Lm2Fq31gbThiRCrJlYpIY9QaI7A3TjuhQLzOix8ChQrvn5ny4MhfIthS5cy6+uK1AhDRvxVdW17y3Xdw==
dependencies:
enhanced-resolve "^5.10.0"
next@12.2.5:
version "12.2.5"
resolved "https://registry.yarnpkg.com/next/-/next-12.2.5.tgz#14fb5975e8841fad09553b8ef41fe1393602b717"
......@@ -9081,12 +9378,17 @@ nextjs-routes@^1.0.8:
dependencies:
chokidar "^3.5.3"
nice-try@^1.0.4:
version "1.0.5"
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
node-addon-api@^2.0.0:
version "2.0.2"
resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-2.0.2.tgz#432cfa82962ce494b132e9d72a15b29f71ff5d32"
integrity sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==
node-domexception@^1.0.0:
node-domexception@1.0.0, node-domexception@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
......@@ -9267,6 +9569,14 @@ onetime@^6.0.0:
dependencies:
mimic-fn "^4.0.0"
open@^7.4.2:
version "7.4.2"
resolved "https://registry.yarnpkg.com/open/-/open-7.4.2.tgz#b8147e26dcf3e426316c730089fd71edd29c2321"
integrity sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==
dependencies:
is-docker "^2.0.0"
is-wsl "^2.1.1"
optionator@^0.8.1:
version "0.8.3"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495"
......@@ -9291,6 +9601,11 @@ optionator@^0.9.1:
type-check "^0.4.0"
word-wrap "^1.2.3"
os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
integrity sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==
p-limit@^2.0.0, p-limit@^2.2.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
......@@ -9350,6 +9665,18 @@ parent-module@^1.0.0:
dependencies:
callsites "^3.0.0"
parse-entities@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8"
integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==
dependencies:
character-entities "^1.0.0"
character-entities-legacy "^1.0.0"
character-reference-invalid "^1.0.0"
is-alphanumerical "^1.0.0"
is-decimal "^1.0.0"
is-hexadecimal "^1.0.0"
parse-json@^5.0.0, parse-json@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd"
......@@ -9367,6 +9694,26 @@ parse5@^7.0.0, parse5@^7.1.1:
dependencies:
entities "^4.4.0"
patch-package@^6.5.0:
version "6.5.1"
resolved "https://registry.yarnpkg.com/patch-package/-/patch-package-6.5.1.tgz#3e5d00c16997e6160291fee06a521c42ac99b621"
integrity sha512-I/4Zsalfhc6bphmJTlrLoOcAF87jcxko4q0qsv4bGcurbr8IskEOtdnt9iCmsQVGL1B+iUhSQqweyTLJfCF9rA==
dependencies:
"@yarnpkg/lockfile" "^1.1.0"
chalk "^4.1.2"
cross-spawn "^6.0.5"
find-yarn-workspace-root "^2.0.0"
fs-extra "^9.0.0"
is-ci "^2.0.0"
klaw-sync "^6.0.0"
minimist "^1.2.6"
open "^7.4.2"
rimraf "^2.6.3"
semver "^5.6.0"
slash "^2.0.0"
tmp "^0.0.33"
yaml "^1.10.2"
path-exists@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
......@@ -9382,6 +9729,11 @@ path-is-absolute@^1.0.0:
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
path-key@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
path-key@^3.0.0, path-key@^3.1.0:
version "3.1.1"
resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
......@@ -9639,6 +9991,16 @@ pretty-format@^29.0.0, pretty-format@^29.3.1:
ansi-styles "^5.0.0"
react-is "^18.0.0"
prismjs@^1.27.0:
version "1.29.0"
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.29.0.tgz#f113555a8fa9b57c35e637bba27509dcf802dd12"
integrity sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==
prismjs@~1.27.0:
version "1.27.0"
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057"
integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==
process-nextick-args@~2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
......@@ -9681,6 +10043,13 @@ prop-types@^15.6.0, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
object-assign "^4.1.1"
react-is "^16.13.1"
property-information@^5.0.0:
version "5.6.0"
resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69"
integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==
dependencies:
xtend "^4.0.0"
proxy-compare@2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/proxy-compare/-/proxy-compare-2.4.0.tgz#90f6abffe734ef86d8e37428c5026268606a9c1b"
......@@ -9704,6 +10073,11 @@ pump@^3.0.0:
end-of-stream "^1.1.0"
once "^1.3.1"
punycode@1.3.2:
version "1.3.2"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==
punycode@^1.3.2:
version "1.4.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
......@@ -9737,7 +10111,7 @@ qrcode@1.5.1, qrcode@^1.5.1:
pngjs "^5.0.0"
yargs "^15.3.1"
qs@^6.10.3:
qs@^6.10.2, qs@^6.10.3:
version "6.11.0"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
......@@ -9763,6 +10137,11 @@ query-string@7.1.1:
split-on-first "^1.0.0"
strict-uri-encode "^2.0.0"
querystring@0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==
querystringify@^2.1.1:
version "2.2.0"
resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6"
......@@ -9778,6 +10157,14 @@ quick-format-unescaped@^4.0.3:
resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz#93ef6dd8d3453cbc7970dd614fad4c5954d6b5a7"
integrity sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==
randexp@^0.5.3:
version "0.5.3"
resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.5.3.tgz#f31c2de3148b30bdeb84b7c3f59b0ebb9fec3738"
integrity sha512-U+5l2KrcMNOUPYvazA3h5ekF80FHTUG+87SEAmHZmolh1M+i/WyTCxVzmi+tidIa1tM4BSe8g2Y/D3loWDjj+w==
dependencies:
drange "^1.0.2"
ret "^0.2.0"
randombytes@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
......@@ -9803,6 +10190,22 @@ react-clientside-effect@^1.2.6:
dependencies:
"@babel/runtime" "^7.12.13"
react-copy-to-clipboard@5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz#09aae5ec4c62750ccb2e6421a58725eabc41255c"
integrity sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==
dependencies:
copy-to-clipboard "^3.3.1"
prop-types "^15.8.1"
react-debounce-input@=3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/react-debounce-input/-/react-debounce-input-3.3.0.tgz#85e3ebcaa41f2016e50613134a1ec9fe3cdb422e"
integrity sha512-VEqkvs8JvY/IIZvh71Z0TC+mdbxERvYF33RcebnodlsUZ8RSgyKe2VWaHXv4+/8aoOgXLxWrdsYs2hDhcwbUgA==
dependencies:
lodash.debounce "^4"
prop-types "^15.8.1"
react-dom@18.2.0:
version "18.2.0"
resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d"
......@@ -9838,12 +10241,29 @@ react-identicons@^1.2.5:
resolved "https://registry.yarnpkg.com/react-identicons/-/react-identicons-1.2.5.tgz#3502249e49d88f4e3500092694410a984bb102fa"
integrity sha512-x7prkDoc2pD7wSl2C1pGxS+XAoSdq1ABWJWTBUimVTDVJArKOLd0B4wRUJpDm4r+9y7pgf8ylyPGsmlWSV5n2g==
react-immutable-proptypes@2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/react-immutable-proptypes/-/react-immutable-proptypes-2.2.0.tgz#cce96d68cc3c18e89617cbf3092d08e35126af4a"
integrity sha512-Vf4gBsePlwdGvSZoLSBfd4HAP93HDauMY4fDjXhreg/vg6F3Fj/MXDNyTbltPC/xZKmZc+cjLu3598DdYK6sgQ==
dependencies:
invariant "^2.2.2"
react-immutable-pure-component@^2.2.0:
version "2.2.2"
resolved "https://registry.yarnpkg.com/react-immutable-pure-component/-/react-immutable-pure-component-2.2.2.tgz#3014d3e20cd5a7a4db73b81f1f1464f4d351684b"
integrity sha512-vkgoMJUDqHZfXXnjVlG3keCxSO/U6WeDQ5/Sl0GK2cH8TOxEzQ5jXqDXHEL/jqk6fsNxV05oH5kD7VNMUE2k+A==
react-inspector@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/react-inspector/-/react-inspector-6.0.1.tgz#1a37f0165d9df81ee804d63259eaaeabe841287d"
integrity sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==
react-is@^16.13.1, react-is@^16.7.0:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
react-is@^17.0.1:
react-is@^17.0.1, react-is@^17.0.2:
version "17.0.2"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
......@@ -9860,6 +10280,18 @@ react-jazzicon@^1.0.4:
dependencies:
mersenne-twister "^1.1.0"
react-redux@^7.2.4:
version "7.2.9"
resolved "https://registry.yarnpkg.com/react-redux/-/react-redux-7.2.9.tgz#09488fbb9416a4efe3735b7235055442b042481d"
integrity sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==
dependencies:
"@babel/runtime" "^7.15.4"
"@types/react-redux" "^7.1.20"
hoist-non-react-statics "^3.3.2"
loose-envify "^1.4.0"
prop-types "^15.7.2"
react-is "^17.0.2"
react-refresh@^0.14.0:
version "0.14.0"
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.14.0.tgz#4e02825378a5f227079554d4284889354e5f553e"
......@@ -9916,6 +10348,17 @@ react-style-singleton@^2.2.1:
invariant "^2.2.4"
tslib "^2.0.0"
react-syntax-highlighter@^15.5.0:
version "15.5.0"
resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz#4b3eccc2325fa2ec8eff1e2d6c18fa4a9e07ab20"
integrity sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==
dependencies:
"@babel/runtime" "^7.3.1"
highlight.js "^10.4.1"
lowlight "^1.17.0"
prismjs "^1.27.0"
refractor "^3.6.0"
react-transition-group@^4.3.0:
version "4.4.5"
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.5.tgz#e53d4e3f3344da8521489fbef8f2581d42becdd1"
......@@ -10001,6 +10444,18 @@ recrawl-sync@^2.0.3:
sucrase "^3.20.3"
tslib "^1.9.3"
redux-immutable@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/redux-immutable/-/redux-immutable-4.0.0.tgz#3a1a32df66366462b63691f0e1dc35e472bbc9f3"
integrity sha512-SchSn/DWfGb3oAejd+1hhHx01xUoxY+V7TeK0BKqpkLKiQPVFf7DYzEaKmrEVxsWxielKfSK9/Xq66YyxgR1cg==
redux@^4.0.0, redux@^4.1.2:
version "4.2.1"
resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197"
integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==
dependencies:
"@babel/runtime" "^7.9.2"
refa@^0.9.0:
version "0.9.1"
resolved "https://registry.yarnpkg.com/refa/-/refa-0.9.1.tgz#12731fce378d235731b1f73182b20083c8a75ca8"
......@@ -10008,6 +10463,15 @@ refa@^0.9.0:
dependencies:
regexpp "^3.2.0"
refractor@^3.6.0:
version "3.6.0"
resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.6.0.tgz#ac318f5a0715ead790fcfb0c71f4dd83d977935a"
integrity sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==
dependencies:
hastscript "^6.0.0"
parse-entities "^2.0.0"
prismjs "~1.27.0"
regenerate-unicode-properties@^10.1.0:
version "10.1.0"
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
......@@ -10096,11 +10560,24 @@ regjsparser@^0.9.1:
dependencies:
jsesc "~0.5.0"
remarkable@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-2.0.1.tgz#280ae6627384dfb13d98ee3995627ca550a12f31"
integrity sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA==
dependencies:
argparse "^1.0.10"
autolinker "^3.11.0"
remove-accents@0.4.2:
version "0.4.2"
resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.4.2.tgz#0a43d3aaae1e80db919e07ae254b285d9e1c7bb5"
integrity sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==
repeat-string@^1.5.2:
version "1.6.1"
resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==
require-directory@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
......@@ -10116,6 +10593,11 @@ requires-port@^1.0.0:
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
reselect@^4.1.5:
version "4.1.7"
resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.7.tgz#56480d9ff3d3188970ee2b76527bd94a95567a42"
integrity sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A==
resolve-cwd@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
......@@ -10164,6 +10646,11 @@ restore-cursor@^3.1.0:
onetime "^5.1.0"
signal-exit "^3.0.2"
ret@^0.2.0:
version "0.2.2"
resolved "https://registry.yarnpkg.com/ret/-/ret-0.2.2.tgz#b6861782a1f4762dce43402a71eb7a283f44573c"
integrity sha512-M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ==
reusify@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
......@@ -10174,6 +10661,13 @@ rfdc@^1.3.0:
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
rimraf@^2.6.3:
version "2.7.1"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
dependencies:
glob "^7.1.3"
rimraf@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
......@@ -10349,11 +10843,23 @@ semver@7.x, semver@^7.3.5, semver@^7.3.7:
dependencies:
lru-cache "^6.0.0"
semver@^5.5.0, semver@^5.6.0:
version "5.7.1"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
version "6.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
serialize-error@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/serialize-error/-/serialize-error-8.1.0.tgz#3a069970c712f78634942ddd50fbbc0eaebe2f67"
integrity sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==
dependencies:
type-fest "^0.20.2"
set-blocking@^2.0.0, set-blocking@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
......@@ -10372,6 +10878,13 @@ sha.js@^2.4.0, sha.js@^2.4.11, sha.js@^2.4.8:
inherits "^2.0.1"
safe-buffer "^5.0.1"
shebang-command@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
dependencies:
shebang-regex "^1.0.0"
shebang-command@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
......@@ -10379,6 +10892,11 @@ shebang-command@^2.0.0:
dependencies:
shebang-regex "^3.0.0"
shebang-regex@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
shebang-regex@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
......@@ -10403,6 +10921,11 @@ sisteransi@^1.0.5:
resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed"
integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==
slash@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44"
integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==
slash@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
......@@ -10476,6 +10999,11 @@ sourcemap-codec@^1.4.8:
resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4"
integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==
space-separated-tokens@^1.0.0:
version "1.1.5"
resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899"
integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==
split-on-first@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f"
......@@ -10774,11 +11302,75 @@ svgo@^2.8.0:
picocolors "^1.0.0"
stable "^0.1.8"
swagger-client@^3.18.5:
version "3.18.5"
resolved "https://registry.yarnpkg.com/swagger-client/-/swagger-client-3.18.5.tgz#8034df561452f4bbd36871a8072394b7ca883106"
integrity sha512-c0txGDtfQTJnaIBaEKCwtRNcUaaAfj+RXI4QVV9p3WW+AUCQqp4naCjaDNNsOfMkE4ySyhnblbL+jGqAVC7snw==
dependencies:
"@babel/runtime-corejs3" "^7.11.2"
cookie "~0.5.0"
cross-fetch "^3.1.5"
deepmerge "~4.2.2"
fast-json-patch "^3.0.0-1"
form-data-encoder "^1.4.3"
formdata-node "^4.0.0"
is-plain-object "^5.0.0"
js-yaml "^4.1.0"
lodash "^4.17.21"
qs "^6.10.2"
traverse "~0.6.6"
url "~0.11.0"
swagger-ui-react@^4.15.5:
version "4.15.5"
resolved "https://registry.yarnpkg.com/swagger-ui-react/-/swagger-ui-react-4.15.5.tgz#b3cdfa16f327e31d5a8e512f1610cf933ba53f31"
integrity sha512-jt2g6cDt3wOsc+1YQv4D86V4K659Xs1/pbhjYWlgNfjZB0TSN601MASWxbP+65U0iPpsJTpF7EmRzAunTOVs8Q==
dependencies:
"@babel/runtime-corejs3" "^7.18.9"
"@braintree/sanitize-url" "=6.0.0"
base64-js "^1.5.1"
classnames "^2.3.1"
css.escape "1.5.1"
deep-extend "0.6.0"
dompurify "=2.3.10"
ieee754 "^1.2.1"
immutable "^3.x.x"
js-file-download "^0.4.12"
js-yaml "=4.1.0"
lodash "^4.17.21"
patch-package "^6.5.0"
prop-types "^15.8.1"
randexp "^0.5.3"
randombytes "^2.1.0"
react-copy-to-clipboard "5.1.0"
react-debounce-input "=3.3.0"
react-immutable-proptypes "2.2.0"
react-immutable-pure-component "^2.2.0"
react-inspector "^6.0.1"
react-redux "^7.2.4"
react-syntax-highlighter "^15.5.0"
redux "^4.1.2"
redux-immutable "^4.0.0"
remarkable "^2.0.1"
reselect "^4.1.5"
serialize-error "^8.1.0"
sha.js "^2.4.11"
swagger-client "^3.18.5"
url-parse "^1.5.8"
xml "=1.0.1"
xml-but-prettier "^1.0.1"
zenscroll "^4.0.2"
symbol-tree@^3.2.4:
version "3.2.4"
resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
tapable@^2.2.0:
version "2.2.1"
resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
test-exclude@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e"
......@@ -10836,6 +11428,13 @@ tiny-invariant@^1.0.6:
resolved "https://registry.yarnpkg.com/tiny-invariant/-/tiny-invariant-1.3.1.tgz#8560808c916ef02ecfd55e66090df23a4b7aa642"
integrity sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==
tmp@^0.0.33:
version "0.0.33"
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==
dependencies:
os-tmpdir "~1.0.2"
tmpl@1.0.5:
version "1.0.5"
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc"
......@@ -10880,6 +11479,11 @@ tr46@~0.0.3:
resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
traverse@~0.6.6:
version "0.6.7"
resolved "https://registry.yarnpkg.com/traverse/-/traverse-0.6.7.tgz#46961cd2d57dd8706c36664acde06a248f1173fe"
integrity sha512-/y956gpUo9ZNCb99YjxG7OaslxZWHfCHAUUfshwqOXmxUIvqLjVO581BT+gM59+QV9tFe6/CGG53tsA1Y7RSdg==
ts-interface-checker@^0.1.9:
version "0.1.13"
resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
......@@ -10947,6 +11551,11 @@ tslib@^2.0.0, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0:
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
tslib@^2.3.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
tsutils@^3.21.0:
version "3.21.0"
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
......@@ -11047,6 +11656,11 @@ universalify@^0.2.0:
resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0"
integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==
universalify@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717"
integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==
update-browserslist-db@^1.0.9:
version "1.0.10"
resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3"
......@@ -11062,7 +11676,7 @@ uri-js@^4.2.2:
dependencies:
punycode "^2.1.0"
url-parse@^1.5.3:
url-parse@^1.5.3, url-parse@^1.5.8:
version "1.5.10"
resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1"
integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==
......@@ -11070,6 +11684,14 @@ url-parse@^1.5.3:
querystringify "^2.1.1"
requires-port "^1.0.0"
url@~0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==
dependencies:
punycode "1.3.2"
querystring "0.2.0"
use-callback-ref@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.0.tgz#772199899b9c9a50526fedc4993fc7fa1f7e32d5"
......@@ -11211,6 +11833,11 @@ walker@^1.0.8:
dependencies:
makeerror "1.0.12"
web-streams-polyfill@4.0.0-beta.3:
version "4.0.0-beta.3"
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38"
integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==
web-streams-polyfill@^3.0.3:
version "3.2.1"
resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz#71c2718c52b45fd49dbeee88634b3a60ceab42a6"
......@@ -11311,6 +11938,13 @@ which-typed-array@^1.1.2, which-typed-array@^1.1.8:
has-tostringtag "^1.0.0"
is-typed-array "^1.1.10"
which@^1.2.9:
version "1.3.1"
resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
dependencies:
isexe "^2.0.0"
which@^2.0.1, which@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
......@@ -11395,17 +12029,29 @@ ws@^8.5.0:
resolved "https://registry.yarnpkg.com/ws/-/ws-8.12.0.tgz#485074cc392689da78e1828a9ff23585e06cddd8"
integrity sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==
xml-but-prettier@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/xml-but-prettier/-/xml-but-prettier-1.0.1.tgz#f5a33267ed42ccd4e355c62557a5e39b01fb40f3"
integrity sha512-C2CJaadHrZTqESlH03WOyw0oZTtoy2uEg6dSDF6YRg+9GnYNub53RRemLpnvtbHDFelxMx4LajiFsYeR6XJHgQ==
dependencies:
repeat-string "^1.5.2"
xml-name-validator@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835"
integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==
xml@=1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"
integrity sha512-huCv9IH9Tcf95zuYCsQraZtWnJvBtLVE0QHMOs8bWyZAFZNDcYjsPq1nEx8jKA9y+Beo9v+7OBPRisQTjinQMw==
xmlchars@^2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb"
integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==
xtend@^4.0.1:
xtend@^4.0.0, xtend@^4.0.1:
version "4.0.2"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
......@@ -11425,7 +12071,7 @@ yallist@^4.0.0:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
yaml@^1.10.0:
yaml@^1.10.0, yaml@^1.10.2:
version "1.10.2"
resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
......@@ -11512,6 +12158,11 @@ yocto-queue@^0.1.0:
resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
zenscroll@^4.0.2:
version "4.0.2"
resolved "https://registry.yarnpkg.com/zenscroll/-/zenscroll-4.0.2.tgz#e8d5774d1c0738a47bcfa8729f3712e2deddeb25"
integrity sha512-jEA1znR7b4C/NnaycInCU6h/d15ZzCd1jmsruqOKnZP6WXQSMH3W2GL+OXbkruslU4h+Tzuos0HdswzRUk/Vgg==
zustand@^4.1.4:
version "4.2.0"
resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.2.0.tgz#f6ef9e63794eda9b296979578538a6df6be3e1b0"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment