mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
fix(data-provider): typo 'messsages' -> 'messages', export named default (#1073)
This commit is contained in:
parent
ddf56db316
commit
fd99bac121
3 changed files with 3 additions and 3 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "librechat-data-provider",
|
"name": "librechat-data-provider",
|
||||||
"version": "0.2.0",
|
"version": "0.2.1",
|
||||||
"description": "data services for librechat apps",
|
"description": "data services for librechat apps",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"module": "dist/index.es.js",
|
"module": "dist/index.es.js",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
export * from './data-service';
|
export * from './data-service';
|
||||||
export * from './request';
|
export { default as request } from './request';
|
||||||
export * from './types';
|
export * from './types';
|
||||||
export * from './react-query-service';
|
export * from './react-query-service';
|
||||||
export * from './headers-helpers';
|
export * from './headers-helpers';
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import * as s from './schemas';
|
||||||
import * as dataService from './data-service';
|
import * as dataService from './data-service';
|
||||||
|
|
||||||
export enum QueryKeys {
|
export enum QueryKeys {
|
||||||
messages = 'messsages',
|
messages = 'messages',
|
||||||
allConversations = 'allConversations',
|
allConversations = 'allConversations',
|
||||||
conversation = 'conversation',
|
conversation = 'conversation',
|
||||||
searchEnabled = 'searchEnabled',
|
searchEnabled = 'searchEnabled',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue