\n\nWhich looks nice, and is copyable in the left-hand side, however the right hand side syas [object Obvject] etc...\n\n---------------\n\nWhen specifying strings of json as the filters like this\n\n```\n 'filter': [\n '{\"limit\":10,\"order\":[\"timestamp DESC\"]}',\n '{\"where\":{\"timestamp\":{\"between\":[\"2024-12-01T00:00:00.000Z\",\"2024-12-01T23:59:59.999Z\"]}},\"order\":[\"timestamp DESC\"]}',\n '{\"where\":{\"correlationId\":\"abc123\"}}',\n ],\n```\n\nWe get an ugly left-hand side with escaping, and a nice right-hand side placeholder (no extra escaping)\n\n\u003Cimg width=\"1509\" height=\"220\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/a411efc1-f555-4d69-abb3-0dab9ee25450\" />\n\nUltimately in one of these cases, I would like the left-hand side to have a copyable string without escaping of \", and in the right-hand side it still be shown nicely in the placeholder.",[],301,"enzonotario","vitepress-openapi","open","Consistently handle example json escaping","2025-08-28T15:58:55Z","https://github.com/enzonotario/vitepress-openapi/issues/301",0.8643901,{"description":3180,"labels":3181,"number":382,"owner":3172,"repository":3185,"state":3186,"title":3187,"updated_at":3188,"url":3189,"score":3190},"Hola queria saber si tienen alguna API para consumir el valor de dolar bolsa por fechas pasadas.\r\n\r\nActulamente estoy usando https://dolarapi.com/docs/operations/get-dolar-bolsa.html para obtener el valor del dia, pero quisiera saber si tienen alguna API para consumir valores pasados por fecha.\r\n\r\nSaludos",[3182],{"name":3183,"color":3184},"question","d876e3","esjs-dolar-api","closed","Valor dolar bolsa historico","2024-03-01T17:08:36Z","https://github.com/enzonotario/esjs-dolar-api/issues/18",0.4537562,{"description":3192,"labels":3193,"number":3197,"owner":3172,"repository":3173,"state":3186,"title":3198,"updated_at":3199,"url":3200,"score":3201},"openapi spec allows flagging deprecated routes, such as\r\n\r\n```\r\n/pet/findByTags:\r\n get:\r\n deprecated: true\r\n```\r\n\r\nThis should be rendered in some way in the resulting component.\r\n\r\n",[3194],{"name":3195,"color":3196},"enhancement","a2eeef",43,"Support deprecated routes","2024-09-18T12:40:15Z","https://github.com/enzonotario/vitepress-openapi/issues/43",0.8102146,{"description":3203,"labels":3204,"number":3208,"owner":3172,"repository":3173,"state":3186,"title":3209,"updated_at":3210,"url":3211,"score":3212},"### Current behavior\n\nWhen calling the `getParsedSpec()` method of an `useOpenapi` instance, I get the following error:\r\n\r\n```\r\nUncaught (in promise) TypeError: Cannot read properties of null (reading 'get')\r\n at P8e (vitepress-openapi.es.js:68526:53)\r\n at r (vitepress-openapi.es.js:68540:18)\r\n at r (vitepress-openapi.es.js:68542:18)\r\n at r (vitepress-openapi.es.js:68537:18)\r\n at r (vitepress-openapi.es.js:68542:18)\r\n at r (vitepress-openapi.es.js:68542:18)\r\n at r (vitepress-openapi.es.js:68542:18)\r\n at r (vitepress-openapi.es.js:68542:18)\r\n at I8e (vitepress-openapi.es.js:68546:10)\r\n at Object.i [as getParsedSpec] (vitepress-openapi.es.js:68894:22)\r\n```\n\n### Desired behavior\n\n_No response_\n\n### Reproduction\n\n_No response_\n\n### Steps to reproduce\n\nThe open api json can be found here: https://api-docs.tacticaldefense.software/openapi.json\r\n\r\nMinimal code to reproduce:\r\n\r\n```\r\nimport { theme, useOpenapi } from 'vitepress-openapi'\r\nimport spec from 'openapi.json' assert { type: 'json' }\r\n\r\nconst openapi = useOpenapi({ spec })\r\nopenapi.getParsedSpec();\r\n```\n\n### Logs and Error Messages\n\n_No response_\n\n### Other Information\n\nI noticed that `@trojs/openapi-dereference` is currently on v0.2.4, but your packages.json file includes 0.2.3... maybe as easy as upgrading the version?",[3205],{"name":3206,"color":3207},"bug","d73a4a",78,"Cannot read properties of null (reading 'get')","2024-10-10T00:51:16Z","https://github.com/enzonotario/vitepress-openapi/issues/78",0.8444046,{"description":3214,"labels":3215,"number":3216,"owner":3172,"repository":3173,"state":3186,"title":3217,"updated_at":3218,"url":3219,"score":3220},"Tried on 0.0.3-alpha.63, and 0.0.3-alpha.79 (latest release)\n\nI have a header such as this defined\n\n```\n {\n \"description\": \"Optionally provide parameters as a JSON object in this header. If both query params and X-Query overlap, a 400 error is returned.\",\n \"example\": \"{\\\"id\\\":\\\"1\\\"}\",\n \"in\": \"header\",\n \"name\": \"X-Query\",\n \"schema\": {\n \"type\": \"string\"\n }\n }\n```\n\nBut also a param like this\n\n```\n {\n \"description\": \"Filter by ID (comma separated for multiple values)\",\n \"in\": \"query\",\n \"name\": \"id\",\n \"schema\": {\n \"description\": \"Filter by ID (comma separated for multiple values)\",\n \"example\": \"1\",\n \"form\": \"id\",\n \"type\": \"string\"\n }\n },\n```\n\nBoth of these examples are used by the UI component, and provided in the default try it requests.\nHowever this means that the request will always fail, as the examples conflict with each other.\nHowever, I want to be able to provide real examples to both of these...\n\nI think that either\n1) Examples should not be used in the default try it param\n2) There should be an option to disable it?",[],221,"example should not always be used as the default for the UI","2025-05-18T01:43:41Z","https://github.com/enzonotario/vitepress-openapi/issues/221",0.8493023,{"description":3222,"labels":3223,"number":3224,"owner":3172,"repository":3173,"state":3186,"title":3225,"updated_at":3226,"url":3227,"score":3228},"I noticed this while playing with the auth tokens, however it probably applies to all fields.\n\nIt would be really nice while clicking into a field that has `.` chars in it, if by default it would select the whole field?\n\n\n\nFor this token, it breaks on the 2 `.` sections",[],247,"Change field selection boundaries","2025-06-26T22:32:02Z","https://github.com/enzonotario/vitepress-openapi/issues/247",0.8495216,{"description":3230,"labels":3231,"number":3233,"owner":3172,"repository":3234,"state":3186,"title":3235,"updated_at":3236,"url":3237,"score":3238},"Hola Enzo, espero que andes bien.\r\n\r\nVeo que la API está devolviendo precio de venta 1 para el dólar mayorista a partir del día 23/10/2024. ¿Por qué puede ser?\r\n\r\n {\r\n \"casa\": \"mayorista\",\r\n \"compra\": 962.57,\r\n \"venta\": 1,\r\n \"fecha\": \"2024-10-23\"\r\n },\r\n {\r\n \"casa\": \"mayorista\",\r\n \"compra\": 962.57,\r\n \"venta\": 1,\r\n \"fecha\": \"2024-10-24\"\r\n },\r\n {\r\n \"casa\": \"mayorista\",\r\n \"compra\": 962.57,\r\n \"venta\": 1,\r\n \"fecha\": \"2024-10-25\"\r\n }\r\n\r\nSaludos\r\nDamian.",[3232],{"name":3206,"color":3207},8,"esjs-argentina-datos-api","Dolar Venta Mayorista en 1","2024-11-01T03:00:22Z","https://github.com/enzonotario/esjs-argentina-datos-api/issues/8",0.8528123,{"description":3240,"labels":3241,"number":1612,"owner":3172,"repository":3185,"state":3186,"title":3245,"updated_at":3246,"url":3247,"score":3248},"",[3242],{"name":3243,"color":3244},"documentation","0075ca","Add Dollar Blue for Bolivia","2025-02-17T22:04:29Z","https://github.com/enzonotario/esjs-dolar-api/issues/37",0.85670656,{"description":3250,"labels":3251,"number":104,"owner":3172,"repository":3256,"state":3186,"title":3257,"updated_at":3258,"url":3259,"score":3260},"Que en cada pagina de una votacion o senador estemos usando esa info para generar la metadata y de esa manera mejorar ranking en google",[3252,3253],{"name":3195,"color":3196},{"name":3254,"color":3255},"good first issue","7057ff","senadores","Metadata correcta en cada pagina","2025-02-23T14:56:14Z","https://github.com/enzonotario/senadores/issues/3",0.85771185,{"description":3262,"labels":3263,"number":2407,"owner":3172,"repository":3185,"state":3186,"title":3264,"updated_at":3265,"url":3266,"score":3267},"Uso query params para invalidar caché pero en la API al incluir cualquier cosa a la URL hace que devuelva 404. Creo que debería devolver el recurso ignorando los params\r\n\r\nEjemplo: https://dolarapi.com/v1/dolares/blue?t=2023-01-16",[],"URL con querystring devuelve 404","2024-01-20T00:15:10Z","https://github.com/enzonotario/esjs-dolar-api/issues/12",0.86192954,["Reactive",3269],{},["Set"],["ShallowReactive",3272],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fOD4MKA_xsQ5EpjOTTyIy5J54S2TM4jadXY9N1Uml69s":-1},"/enzonotario/vitepress-openapi/18"]