Shun Miyazawa пре 1 година
родитељ
комит
9c05789ef0
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      apps/app/src/server/models/vector-store-relation.ts

+ 2 - 2
apps/app/src/server/models/vector-store-relation.ts

@@ -11,9 +11,9 @@ type VectorStoreRelation = {
   fileId: string;
   fileId: string;
 }
 }
 
 
-export interface VectorStoreRelationDocument extends VectorStoreRelation, Document {}
+interface VectorStoreRelationDocument extends VectorStoreRelation, Document {}
 
 
-export type VectorStoreRelationModel = Model<VectorStoreRelationDocument>
+type VectorStoreRelationModel = Model<VectorStoreRelationDocument>
 
 
 const schema = new Schema<VectorStoreRelationDocument, VectorStoreRelationModel>({
 const schema = new Schema<VectorStoreRelationDocument, VectorStoreRelationModel>({
   pageId: { type: Schema.Types.ObjectId, ref: 'Page', required: true },
   pageId: { type: Schema.Types.ObjectId, ref: 'Page', required: true },