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.
@@ -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 declare const getStartupConfig: () => Promise<config.TStartupConfig & {
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;
@@ -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>>;