All files / src/platform/qr-barcode/schemas code.schema.ts

0% Statements 0/29
0% Branches 0/8
100% Functions 0/0
0% Lines 0/23

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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69                                                                                                                                         
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'code_definitions' })
export class CodeDefinition extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, enum: ['QR', 'BARCODE_128', 'BARCODE_EAN13'] })
  type: string;
 
  @Prop({ required: true })
  purpose: string; // e.g. 'asset_tag', 'visitor_badge', 'employee_id'
 
  @Prop({ default: true })
  isActive: boolean;
 
  createdAt: Date;
  updatedAt: Date;
}
export const CodeDefinitionSchema =
  SchemaFactory.createForClass(CodeDefinition);
 
@Schema({ timestamps: true, collection: 'code_generations' })
export class CodeGeneration extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true })
  definitionId: string;
 
  @Prop({ required: true, unique: true, index: true })
  payload: string; // The text content encoded in QR/barcode
 
  @Prop({ default: null })
  signature: string; // Signed HMAC
 
  @Prop({ default: null })
  expiresAt: Date;
 
  @Prop({ default: false })
  isRevoked: boolean;
 
  createdAt: Date;
}
export const CodeGenerationSchema =
  SchemaFactory.createForClass(CodeGeneration);
 
@Schema({ timestamps: true, collection: 'code_scans' })
export class CodeScan extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, index: true })
  payload: string;
 
  @Prop({ default: null })
  scannedBy: string; // User ID
 
  @Prop({ required: true })
  scannedAt: Date;
 
  @Prop({ required: true, enum: ['valid', 'expired', 'revoked', 'tampered'] })
  status: string;
 
  createdAt: Date;
}
export const CodeScanSchema = SchemaFactory.createForClass(CodeScan);