🚀 feat: Update package version to 0.0.6 and add Microsoft Graph client dependency

This commit is contained in:
Ruben Talstra 2025-03-24 09:31:41 +01:00
parent b8215c314f
commit 3628572aea
No known key found for this signature in database
GPG key ID: 2A5A7174A60F3BEA
4 changed files with 36 additions and 2 deletions

View file

@ -52,6 +52,7 @@
"@librechat/agents": "^2.3.94",
"@librechat/data-schemas": "*",
"@waylaidwanderer/fetch-event-source": "^3.0.1",
"@microsoft/microsoft-graph-client": "^3.0.7",
"axios": "^1.8.2",
"bcryptjs": "^2.4.3",
"cohere-ai": "^7.9.1",

30
package-lock.json generated
View file

@ -67,6 +67,7 @@
"@langchain/textsplitters": "^0.1.0",
"@librechat/agents": "^2.3.94",
"@librechat/data-schemas": "*",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@waylaidwanderer/fetch-event-source": "^3.0.1",
"axios": "^1.8.2",
"bcryptjs": "^2.4.3",
@ -19129,6 +19130,33 @@
"dev": true,
"license": "MIT"
},
"node_modules/@microsoft/microsoft-graph-client": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@microsoft/microsoft-graph-client/-/microsoft-graph-client-3.0.7.tgz",
"integrity": "sha512-/AazAV/F+HK4LIywF9C+NYHcJo038zEnWkteilcxC1FM/uK/4NVGDKGrxx7nNq1ybspAroRKT4I1FHfxQzxkUw==",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.12.5",
"tslib": "^2.2.0"
},
"engines": {
"node": ">=12.0.0"
},
"peerDependenciesMeta": {
"@azure/identity": {
"optional": true
},
"@azure/msal-browser": {
"optional": true
},
"buffer": {
"optional": true
},
"stream-browserify": {
"optional": true
}
}
},
"node_modules/@mistralai/mistralai": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@mistralai/mistralai/-/mistralai-0.4.0.tgz",
@ -44170,7 +44198,7 @@
},
"packages/data-schemas": {
"name": "@librechat/data-schemas",
"version": "0.0.5",
"version": "0.0.6",
"license": "MIT",
"dependencies": {
"mongoose": "^8.12.1"

View file

@ -1,6 +1,6 @@
{
"name": "@librechat/data-schemas",
"version": "0.0.5",
"version": "0.0.6",
"description": "Mongoose schemas and models for LibreChat",
"type": "module",
"main": "dist/index.cjs",

View file

@ -13,6 +13,7 @@ export interface IUser extends Document {
googleId?: string;
facebookId?: string;
openidId?: string;
customOpenIdData?: Record<string, unknown>;
ldapId?: string;
githubId?: string;
discordId?: string;
@ -112,6 +113,10 @@ const User = new Schema<IUser>(
unique: true,
sparse: true,
},
customOpenIdData: {
type: Schema.Types.Mixed,
default: undefined,
},
ldapId: {
type: String,
unique: true,