From 2f5549a5a63d99c96bbbaabf1e66325e84556339 Mon Sep 17 00:00:00 2001 From: KeKs0r <2970814+KeKs0r@users.noreply.github.com> Date: Mon, 29 Sep 2025 00:28:20 +0000 Subject: [PATCH] chore: update oas definitions --- config.json | 1 - ...t-pools-depth-over-time-daily.endpoint.mdx | 8 -- openAPI/osmosis.json | 133 ------------------ 3 files changed, 142 deletions(-) delete mode 100644 docs/reference/osmosis/get-pools-depth-over-time-daily.endpoint.mdx diff --git a/config.json b/config.json index a625118..0e2406b 100644 --- a/config.json +++ b/config.json @@ -286,7 +286,6 @@ "reference/osmosis/get-pools-liquidity-over-time", "reference/osmosis/get-pools-depth-current", "reference/osmosis/get-pools-depth-over-time", - "reference/osmosis/get-pools-depth-over-time-daily", "reference/osmosis/get-pools-apr", "reference/osmosis/get-pools-apr-range", "reference/osmosis/get-cl-pools-position-apr", diff --git a/docs/reference/osmosis/get-pools-depth-over-time-daily.endpoint.mdx b/docs/reference/osmosis/get-pools-depth-over-time-daily.endpoint.mdx deleted file mode 100644 index a3f74d5..0000000 --- a/docs/reference/osmosis/get-pools-depth-over-time-daily.endpoint.mdx +++ /dev/null @@ -1,8 +0,0 @@ ---- -route: GET /pools/depth/{pool_id}/over_time_daily ---- - -{/* Don't change the file name or the metadata in this file */} -import PriceTag from "@site/src/components/PriceTag"; - - diff --git a/openAPI/osmosis.json b/openAPI/osmosis.json index 156b197..3f83b89 100644 --- a/openAPI/osmosis.json +++ b/openAPI/osmosis.json @@ -1922,139 +1922,6 @@ "summary": "Get Pools Depth Over Time" } }, - "/pools/depth/{pool_id}/over_time_daily": { - "get": { - "operationId": "getPoolsDepthOverTimeDaily", - "tags": [], - "sidebar": "pools", - "servers": [ - { - "url": "https://osmosis.numia.xyz" - }, - { - "url": "https://osmosis-testnet.numia.xyz" - } - ], - "attributes": { - "x-sidebar": "pools" - }, - "parameters": [ - { - "schema": { - "type": "string" - }, - "required": true, - "name": "pool_id", - "in": "path" - }, - { - "schema": { - "type": "string", - "enum": [ - "10", - "5", - "2", - "1", - "0.1" - ] - }, - "required": true, - "name": "percent", - "in": "query" - }, - { - "schema": { - "type": "string" - }, - "required": true, - "name": "start_date", - "in": "query" - }, - { - "schema": { - "type": "string" - }, - "required": false, - "name": "end_date", - "in": "query" - } - ], - "responses": { - "200": { - "description": "Status: 200", - "content": { - "application/json": { - "schema": { - "type": "array", - "items": { - "type": "object", - "properties": { - "hour": { - "type": "string", - "description": "Date in the format YYYY-MM-DD HH:MM:SS" - }, - "base_sell_depth": { - "type": "object", - "properties": { - "token_denom": { - "type": "string" - }, - "token_amount": { - "type": "number" - }, - "usd_amount": { - "type": "number" - }, - "depth": { - "type": "number" - } - }, - "required": [ - "token_denom", - "token_amount", - "usd_amount", - "depth" - ] - }, - "quote_sell_depth": { - "type": "object", - "properties": { - "token_denom": { - "type": "string" - }, - "token_amount": { - "type": "number" - }, - "usd_amount": { - "type": "number" - }, - "depth": { - "type": "number" - } - }, - "required": [ - "token_denom", - "token_amount", - "usd_amount", - "depth" - ] - } - }, - "required": [ - "hour", - "base_sell_depth", - "quote_sell_depth" - ] - } - } - } - } - } - }, - "description": "import PriceTag from \"@site/src/components/PriceTag\";\n\n", - "summary": "Get Pools Depth Over Time Daily" - } - }, "/apr": { "get": { "operationId": "getApr",