librechat-data-provider 0.8.405 → 0.8.407
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 +1 -0
- package/dist/types/config.d.ts +112 -201
- package/dist/types/data-service.d.ts +1 -0
- package/dist/types/keys.d.ts +1 -0
- package/dist/types/models.d.ts +2 -52
- package/dist/types/permissions.d.ts +23 -0
- package/dist/types/roles.d.ts +2 -0
- package/dist/types/schemas.d.ts +1 -11
- package/dist/types/types/assistants.d.ts +18 -0
- package/dist/types/types/queries.d.ts +10 -0
- package/dist/types/types.d.ts +1 -0
- package/package.json +4 -4
|
@@ -117,6 +117,7 @@ export declare const deletePrompt: ({ _id, groupId }: {
|
|
|
117
117
|
export declare const getCategories: () => string;
|
|
118
118
|
export declare const getAllPromptGroups: () => string;
|
|
119
119
|
export declare const roles: () => string;
|
|
120
|
+
export declare const adminRoles: () => string;
|
|
120
121
|
export declare const getRole: (roleName: string) => string;
|
|
121
122
|
export declare const updatePromptPermissions: (roleName: string) => string;
|
|
122
123
|
export declare const updateMemoryPermissions: (roleName: string) => string;
|