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 24 25 26 27 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; import { Document, Schema as MongooseSchema, Types } from 'mongoose'; @Schema({ timestamps: true, collection: 'customer_satisfaction_responses' }) export class CustomerSatisfactionResponse extends Document { @Prop({ required: true, index: true }) tenantId: string; @Prop({ type: MongooseSchema.Types.ObjectId, ref: 'Ticket', required: true }) ticketId: MongooseSchema.Types.ObjectId; @Prop({ required: true }) score: number; // CSAT 1-5, NPS 0-10 @Prop({ required: true }) surveyType: string; // 'CSAT' | 'NPS' @Prop({ default: null }) feedbackComment?: string; @Prop({ default: false }) isLowRatingEscalated: boolean; // if rating <= 2, set escalation alert } export const CustomerSatisfactionResponseSchema = SchemaFactory.createForClass(CustomerSatisfactionResponse); CustomerSatisfactionResponseSchema.index({ tenantId: 1, ticketId: 1 }, { unique: true }); |