shuttlepro-shared 1.4.99 → 1.5.0

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.
@@ -359,6 +359,8 @@ const workspaceSchema = new mongoose.Schema(
359
359
  tokens: { type: Number, default: 0 },
360
360
  limit: { type: Number, default: 0 },
361
361
  },
362
+ qdrantUrl: { type: String, default: "" },
363
+ qdrantApiKey: { type: String, default: "" },
362
364
  enableInternalChat: {
363
365
  type: Boolean,
364
366
  default: false,
@@ -430,6 +432,8 @@ workspaceSchema.add({
430
432
  twitterUrl: commonOptions,
431
433
  instagramUrl: commonOptions,
432
434
  chatGptApiKey: commonOptions,
435
+ qdrantUrl: commonOptions,
436
+ qdrantApiKey: commonOptions,
433
437
  });
434
438
 
435
439
  workspaceSchema.pre("save", async function (next) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shuttlepro-shared",
3
- "version": "1.4.99",
3
+ "version": "1.5.00",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {