All files / src/domains/recruitment/schemas referrals-agencies-pools.schema.ts

0% Statements 0/66
0% Branches 0/12
100% Functions 0/0
0% Lines 0/52

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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138                                                                                                                                                                                                                                                                                   
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose';
import { Document, Schema as MongooseSchema } from 'mongoose';
 
@Schema({ timestamps: true, collection: 'referral_campaigns' })
export class ReferralCampaign extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true })
  title: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'JobPosting' })
  jobPostingId: string;
 
  @Prop({ default: 0 })
  rewardAmountMinor: number;
 
  @Prop({ default: true })
  active: boolean;
}
 
export const ReferralCampaignSchema = SchemaFactory.createForClass(ReferralCampaign);
 
@Schema({ timestamps: true, collection: 'employee_referrals' })
export class EmployeeReferral extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, index: true })
  referrerEmployeeId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'Candidate' })
  candidateId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'JobPosting' })
  jobPostingId: string;
 
  @Prop({ default: 'submitted', enum: ['submitted', 'in_progress', 'hired', 'reward_released', 'rejected'] })
  status: string;
 
  @Prop({ default: false })
  rewardReleased: boolean;
}
 
export const EmployeeReferralSchema = SchemaFactory.createForClass(EmployeeReferral);
EmployeeReferralSchema.index({ tenantId: 1, referrerEmployeeId: 1, candidateId: 1 }, { unique: true });
 
@Schema({ timestamps: true, collection: 'recruitment_agencies' })
export class RecruitmentAgency extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, unique: true, index: true })
  agencyName: string;
 
  @Prop({ required: true })
  contactEmail: string;
 
  @Prop({ default: 'active', enum: ['active', 'suspended', 'inactive'] })
  status: string;
}
 
export const RecruitmentAgencySchema = SchemaFactory.createForClass(RecruitmentAgency);
RecruitmentAgencySchema.index({ tenantId: 1, agencyName: 1 }, { unique: true });
 
@Schema({ timestamps: true, collection: 'agency_contracts' })
export class AgencyContract extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'RecruitmentAgency' })
  agencyId: string;
 
  @Prop({ default: 15 }) // percentage fee on target joining annual salary
  commissionPercentage: number;
 
  @Prop({ default: 90 }) // replacement period in days if hired candidate leaves
  replacementDays: number;
 
  @Prop({ required: true })
  startAt: Date;
 
  @Prop({ required: true })
  endAt: Date;
}
 
export const AgencyContractSchema = SchemaFactory.createForClass(AgencyContract);
 
@Schema({ timestamps: true, collection: 'agency_candidate_submissions' })
export class AgencyCandidateSubmission extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'RecruitmentAgency' })
  agencyId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'Candidate' })
  candidateId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'JobPosting' })
  jobPostingId: string;
 
  @Prop({ required: true })
  ownershipExpiresAt: Date; // e.g., 6 months ownership
}
 
export const AgencyCandidateSubmissionSchema = SchemaFactory.createForClass(AgencyCandidateSubmission);
AgencyCandidateSubmissionSchema.index({ tenantId: 1, candidateId: 1, jobPostingId: 1 }, { unique: true });
 
@Schema({ timestamps: true, collection: 'talent_pools' })
export class TalentPool extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true })
  poolName: string;
 
  @Prop()
  description?: string;
}
 
export const TalentPoolSchema = SchemaFactory.createForClass(TalentPool);
 
@Schema({ timestamps: true, collection: 'talent_pool_members' })
export class TalentPoolMember extends Document {
  @Prop({ required: true, index: true })
  tenantId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'TalentPool' })
  poolId: string;
 
  @Prop({ required: true, type: MongooseSchema.Types.ObjectId, ref: 'Candidate' })
  candidateId: string;
}
 
export const TalentPoolMemberSchema = SchemaFactory.createForClass(TalentPoolMember);
TalentPoolMemberSchema.index({ tenantId: 1, poolId: 1, candidateId: 1 }, { unique: true });