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 | import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; import { Document, Schema as MongooseSchema } from 'mongoose'; @Schema({ collection: 'payroll_country_configurations', timestamps: true }) export class PayrollCountryConfiguration extends Document { @Prop({ required: true, index: true }) countryCode!: string; @Prop({ required: true }) countryName!: string; @Prop({ required: true }) currencyCode!: string; @Prop({ type: [String], default: [] }) supportedStatutoryProviders!: string[]; @Prop({ type: [String], default: [] }) supportedTaxProviders!: string[]; @Prop({ type: MongooseSchema.Types.Mixed, default: {} }) defaultConfig!: Record<string, unknown>; @Prop({ default: true }) isActive!: boolean; } export const PayrollCountryConfigurationSchema = SchemaFactory.createForClass( PayrollCountryConfiguration, ); // ──────────────────────────────────────────────────────────────── // 2. SALARY COMPONENTS // ──────────────────────────────────────────────────────────────── |