From fac2580a198a62cae21ae686133d8d9babde45da Mon Sep 17 00:00:00 2001 From: Danny Avila <110412045+danny-avila@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:16:29 -0500 Subject: [PATCH] fix(librechat-data-provider): Update types paths in package.json (#1333) * fix(librechat-data-provider): Update types paths in package.json * chore: bump version * fix(librechat-data-provider): Update types paths in react-query/package.json --- packages/data-provider/package.json | 8 ++++---- packages/data-provider/react-query/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/data-provider/package.json b/packages/data-provider/package.json index 7c99596986..e0af1a0ced 100644 --- a/packages/data-provider/package.json +++ b/packages/data-provider/package.json @@ -1,20 +1,20 @@ { "name": "librechat-data-provider", - "version": "0.3.0", + "version": "0.3.1", "description": "data services for librechat apps", "main": "dist/index.js", "module": "dist/index.es.js", - "types": "./types/index.d.ts", + "types": "./dist/types/index.d.ts", "exports": { ".": { "import": "./dist/index.es.js", "require": "./dist/index.js", - "types": "./types/index.d.ts" + "types": "./dist/types/index.d.ts" }, "./react-query": { "import": "./dist/react-query/index.es.js", "require": "./dist/react-query/index.js", - "types": "./types/react-query/index.d.ts" + "types": "./dist/types/react-query/index.d.ts" } }, "scripts": { diff --git a/packages/data-provider/react-query/package.json b/packages/data-provider/react-query/package.json index b1b89b1b6a..069ea55ab5 100644 --- a/packages/data-provider/react-query/package.json +++ b/packages/data-provider/react-query/package.json @@ -3,7 +3,7 @@ "private": true, "main": "../index.js", "module": "./index.es.js", - "types": "../types/react-query/index.d.ts", + "types": "../dist/types/react-query/index.d.ts", "dependencies": { "axios": "^1.3.4" }