librechat-data-provider 0.8.502 → 0.8.503
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/dist/types/api-endpoints.d.ts +2 -1
- package/dist/types/bedrock.d.ts +6 -0
- package/dist/types/config.d.ts +684 -52
- package/dist/types/data-service.d.ts +5 -2
- package/dist/types/generate.d.ts +2 -0
- package/dist/types/mcp.d.ts +1304 -58
- package/dist/types/models.d.ts +22 -0
- package/dist/types/parameterSettings.d.ts +6 -0
- package/dist/types/parameterSettings.spec.d.ts +1 -0
- package/dist/types/schemas.d.ts +54 -13
- package/dist/types/types/mutations.d.ts +1 -0
- package/dist/types/types.d.ts +9 -3
- package/package.json +1 -1
|
@@ -30,7 +30,7 @@ export declare function getSharedMessages(shareId: string): Promise<t.TSharedMes
|
|
|
30
30
|
export declare const listSharedLinks: (params: q.SharedLinksListParams) => Promise<q.SharedLinksResponse>;
|
|
31
31
|
export declare function getSharedLink(conversationId: string): Promise<t.TSharedLinkGetResponse>;
|
|
32
32
|
export declare function createSharedLink(conversationId: string, targetMessageId?: string): Promise<t.TSharedLinkResponse>;
|
|
33
|
-
export declare function updateSharedLink(shareId: string): Promise<t.TSharedLinkResponse>;
|
|
33
|
+
export declare function updateSharedLink(shareId: string, targetMessageId?: string): Promise<t.TSharedLinkResponse>;
|
|
34
34
|
export declare function deleteSharedLink(shareId: string): Promise<m.TDeleteSharedLinkResponse>;
|
|
35
35
|
export declare function updateUserKey(payload: t.TUpdateUserKeyRequest): Promise<any>;
|
|
36
36
|
export declare function getAgentApiKeys(): Promise<t.TAgentApiKeyListResponse>;
|
|
@@ -66,7 +66,10 @@ export declare const getMCPConnectionStatus: () => Promise<q.MCPConnectionStatus
|
|
|
66
66
|
export declare const getMCPServerConnectionStatus: (serverName: string) => Promise<q.MCPServerConnectionStatusResponse>;
|
|
67
67
|
export declare const getMCPAuthValues: (serverName: string) => Promise<q.MCPAuthValuesResponse>;
|
|
68
68
|
export declare function cancelMCPOAuth(serverName: string): Promise<m.CancelMCPOAuthResponse>;
|
|
69
|
-
export
|
|
69
|
+
export type StartupConfigOptions = {
|
|
70
|
+
context?: config.StartupConfigContext;
|
|
71
|
+
};
|
|
72
|
+
export declare const getStartupConfig: (options?: StartupConfigOptions) => Promise<config.TStartupConfig & {
|
|
70
73
|
mcpCustomUserVars?: Record<string, {
|
|
71
74
|
title: string;
|
|
72
75
|
description: string;
|
package/dist/types/generate.d.ts
CHANGED
|
@@ -285,6 +285,7 @@ export declare const generateOpenAISchema: (customOpenAI: OpenAISettings) => z.Z
|
|
|
285
285
|
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
286
286
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
287
287
|
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
288
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
288
289
|
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
289
290
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
290
291
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -525,6 +526,7 @@ export declare const generateGoogleSchema: (customGoogle: GoogleSettings) => z.Z
|
|
|
525
526
|
spec: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
526
527
|
iconURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
527
528
|
expiredAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
529
|
+
isTemporary: z.ZodOptional<z.ZodBoolean>;
|
|
528
530
|
fileTokenLimit: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number | undefined, string | number>>;
|
|
529
531
|
resendImages: z.ZodOptional<z.ZodBoolean>;
|
|
530
532
|
chatGptLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|