All files / analytics/schemas configuration.schema.ts

100% Statements 12/12
80% Branches 4/5
100% Functions 0/0
100% Lines 10/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 241x 1x     1x   1x     1x     1x     1x     1x     1x 1x  
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'analytics_configurations' })
export class AnalyticsConfiguration extends Document {
  @Prop({ type: MongooseSchema.Types.ObjectId, required: true })
  tenantId: MongooseSchema.Types.ObjectId;
 
  @Prop({ default: true })
  analyticsEnabled: boolean;
 
  @Prop({ default: true })
  autoSnapshotEnabled: boolean;
 
  @Prop({ default: 'daily' })
  snapshotFrequency: string; // 'daily' | 'weekly' | 'monthly'
 
  @Prop({ default: true })
  aiSummariesEnabled: boolean;
}
 
export const AnalyticsConfigurationSchema = SchemaFactory.createForClass(AnalyticsConfiguration);
AnalyticsConfigurationSchema.index({ tenantId: 1 }, { unique: true });