@experts_hub/shared 1.0.513 → 1.0.515

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1215,6 +1215,205 @@ __decorateClass([
1215
1215
  })
1216
1216
  ], JobIdParamDto.prototype, "id", 2);
1217
1217
 
1218
+ // src/modules/job/dto/job-basic-information-v2.dto.ts
1219
+ import {
1220
+ IsString as IsString15,
1221
+ IsNotEmpty as IsNotEmpty32,
1222
+ IsArray as IsArray2,
1223
+ ArrayNotEmpty as ArrayNotEmpty2,
1224
+ IsNumber as IsNumber3,
1225
+ IsOptional as IsOptional15,
1226
+ IsEnum as IsEnum12,
1227
+ Min as Min2,
1228
+ ValidateIf as ValidateIf4,
1229
+ MaxLength as MaxLength9,
1230
+ Max as Max2,
1231
+ ValidateNested
1232
+ } from "class-validator";
1233
+ import { Type as Type3 } from "class-transformer";
1234
+ var JobLocationEnumV2 = /* @__PURE__ */ ((JobLocationEnumV22) => {
1235
+ JobLocationEnumV22["ONSITE"] = "ONSITE";
1236
+ JobLocationEnumV22["REMOTE"] = "REMOTE";
1237
+ JobLocationEnumV22["HYBRID"] = "HYBRID";
1238
+ return JobLocationEnumV22;
1239
+ })(JobLocationEnumV2 || {});
1240
+ var EmploymentTypeV2 = /* @__PURE__ */ ((EmploymentTypeV22) => {
1241
+ EmploymentTypeV22["FULLTIME"] = "FULLTIME";
1242
+ EmploymentTypeV22["PARTTIME"] = "PARTTIME";
1243
+ EmploymentTypeV22["BOTH"] = "BOTH";
1244
+ EmploymentTypeV22["HOURLY"] = "HOURLY";
1245
+ EmploymentTypeV22["FREELANCE"] = "FREELANCE";
1246
+ EmploymentTypeV22["FTE"] = "FTE";
1247
+ return EmploymentTypeV22;
1248
+ })(EmploymentTypeV2 || {});
1249
+ var typeOfExperienceDtoEnumV2 = /* @__PURE__ */ ((typeOfExperienceDtoEnumV22) => {
1250
+ typeOfExperienceDtoEnumV22["SINGLE"] = "SINGLE";
1251
+ typeOfExperienceDtoEnumV22["RANGE"] = "RANGE";
1252
+ return typeOfExperienceDtoEnumV22;
1253
+ })(typeOfExperienceDtoEnumV2 || {});
1254
+ var JobLocationDto = class {
1255
+ };
1256
+ __decorateClass([
1257
+ IsOptional15(),
1258
+ IsString15({ message: "City id must be a string" })
1259
+ ], JobLocationDto.prototype, "cityId", 2);
1260
+ __decorateClass([
1261
+ IsOptional15(),
1262
+ IsString15({ message: "State id must be a string" })
1263
+ ], JobLocationDto.prototype, "stateId", 2);
1264
+ __decorateClass([
1265
+ IsNotEmpty32({ message: "Country id is required" }),
1266
+ IsNumber3({}, { message: "Country id must be a number" }),
1267
+ Type3(() => Number)
1268
+ ], JobLocationDto.prototype, "countryId", 2);
1269
+ var JobBasicInformationV2Dto = class {
1270
+ constructor() {
1271
+ this.isDraft = false;
1272
+ }
1273
+ };
1274
+ __decorateClass([
1275
+ IsOptional15(),
1276
+ Type3(() => Boolean)
1277
+ ], JobBasicInformationV2Dto.prototype, "isDraft", 2);
1278
+ __decorateClass([
1279
+ IsNotEmpty32({ message: "Please enter job role" }),
1280
+ IsString15({ message: "Job role must be a string" })
1281
+ ], JobBasicInformationV2Dto.prototype, "jobRole", 2);
1282
+ __decorateClass([
1283
+ IsOptional15()
1284
+ ], JobBasicInformationV2Dto.prototype, "jobRoleCanonicalName", 2);
1285
+ __decorateClass([
1286
+ IsOptional15(),
1287
+ IsString15({ message: "Project name must be a string" })
1288
+ ], JobBasicInformationV2Dto.prototype, "projectName", 2);
1289
+ __decorateClass([
1290
+ IsOptional15(),
1291
+ IsString15({ message: "Note must be a string" })
1292
+ ], JobBasicInformationV2Dto.prototype, "note", 2);
1293
+ __decorateClass([
1294
+ ValidateIf4((o) => !o.isDraft),
1295
+ IsOptional15(),
1296
+ IsArray2({ message: "Skills must be an array" }),
1297
+ ArrayNotEmpty2({ message: "Please select at least one skill" }),
1298
+ IsString15({ each: true, message: "Each skill must be a string" }),
1299
+ Type3(() => String)
1300
+ ], JobBasicInformationV2Dto.prototype, "skills", 2);
1301
+ __decorateClass([
1302
+ ValidateIf4((o) => !o.isDraft),
1303
+ IsArray2({ message: "Good to have skills must be an array" }),
1304
+ IsString15({ each: true, message: "Each skill must be a string" }),
1305
+ IsOptional15(),
1306
+ Type3(() => String)
1307
+ ], JobBasicInformationV2Dto.prototype, "goodToHaveSkills", 2);
1308
+ __decorateClass([
1309
+ ValidateIf4((o) => !o.isDraft),
1310
+ IsArray2({ message: "locations must be an array" }),
1311
+ ArrayNotEmpty2({ message: "Please select at least one location" }),
1312
+ ValidateNested({ each: true }),
1313
+ Type3(() => JobLocationDto),
1314
+ IsOptional15()
1315
+ ], JobBasicInformationV2Dto.prototype, "locations", 2);
1316
+ __decorateClass([
1317
+ ValidateIf4((o) => !o.isDraft),
1318
+ IsNumber3({}, { message: "Openings must be a number" }),
1319
+ Min2(1, { message: "There must be at least 1 opening" }),
1320
+ Type3(() => Number)
1321
+ ], JobBasicInformationV2Dto.prototype, "openings", 2);
1322
+ __decorateClass([
1323
+ ValidateIf4((o) => !o.isDraft),
1324
+ IsEnum12(JobLocationEnumV2, {
1325
+ message: `Location must be one of: ${Object.values(JobLocationEnumV2).join(
1326
+ ", "
1327
+ )}`
1328
+ })
1329
+ ], JobBasicInformationV2Dto.prototype, "locationMode", 2);
1330
+ __decorateClass([
1331
+ ValidateIf4((o) => !o.isDraft),
1332
+ IsEnum12(EmploymentTypeV2, {
1333
+ message: `Type of employment must be one of: ${Object.values(
1334
+ EmploymentTypeV2
1335
+ ).join(", ")}`
1336
+ })
1337
+ ], JobBasicInformationV2Dto.prototype, "typeOfEmployment", 2);
1338
+ __decorateClass([
1339
+ ValidateIf4((o) => !o.isDraft),
1340
+ IsString15({ message: "Currency must be a string" })
1341
+ ], JobBasicInformationV2Dto.prototype, "currency", 2);
1342
+ __decorateClass([
1343
+ ValidateIf4((o) => !o.isDraft),
1344
+ IsNumber3({}, { message: "Expected salary (from) must be a number" }),
1345
+ Min2(0, { message: "Expected salary (from) cannot be negative" }),
1346
+ Type3(() => Number)
1347
+ ], JobBasicInformationV2Dto.prototype, "expectedSalaryFrom", 2);
1348
+ __decorateClass([
1349
+ IsOptional15()
1350
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedSalaryFrom", 2);
1351
+ __decorateClass([
1352
+ ValidateIf4((o) => !o.isDraft),
1353
+ IsNumber3({}, { message: "Expected salary (to) must be a number" }),
1354
+ Min2(0, { message: "Expected salary (to) cannot be negative" }),
1355
+ Type3(() => Number)
1356
+ ], JobBasicInformationV2Dto.prototype, "expectedSalaryTo", 2);
1357
+ __decorateClass([
1358
+ IsOptional15()
1359
+ ], JobBasicInformationV2Dto.prototype, "hideExpectedSalaryTo", 2);
1360
+ __decorateClass([
1361
+ IsOptional15()
1362
+ ], JobBasicInformationV2Dto.prototype, "years", 2);
1363
+ __decorateClass([
1364
+ IsOptional15()
1365
+ ], JobBasicInformationV2Dto.prototype, "months", 2);
1366
+ __decorateClass([
1367
+ IsOptional15()
1368
+ ], JobBasicInformationV2Dto.prototype, "weeks", 2);
1369
+ __decorateClass([
1370
+ IsOptional15()
1371
+ ], JobBasicInformationV2Dto.prototype, "days", 2);
1372
+ __decorateClass([
1373
+ IsOptional15(),
1374
+ IsNumber3({}, { message: "Number of hours must be a number" }),
1375
+ Min2(0, { message: "Number of hours cannot be negative" }),
1376
+ Max2(40, { message: "Number of hours cannot exceed 40" }),
1377
+ Type3(() => Number)
1378
+ ], JobBasicInformationV2Dto.prototype, "numberOfHours", 2);
1379
+ __decorateClass([
1380
+ ValidateIf4((o) => !o.isDraft),
1381
+ IsString15({ message: "Candidate communication skills must be a string" }),
1382
+ IsOptional15()
1383
+ ], JobBasicInformationV2Dto.prototype, "candidateCommunicationSkills", 2);
1384
+ __decorateClass([
1385
+ ValidateIf4((o) => !o.isDraft),
1386
+ IsNotEmpty32({ message: "Please enter the academic qualification" }),
1387
+ IsString15({ message: "Academic qualification must be a string" })
1388
+ ], JobBasicInformationV2Dto.prototype, "academicQualification", 2);
1389
+ __decorateClass([
1390
+ ValidateIf4((o) => !o.isDraft),
1391
+ IsEnum12(typeOfExperienceDtoEnumV2, {
1392
+ message: `Type of experience must be one of: ${Object.values(
1393
+ typeOfExperienceDtoEnumV2
1394
+ ).join(", ")}`
1395
+ })
1396
+ ], JobBasicInformationV2Dto.prototype, "yearsOfExperienceType", 2);
1397
+ __decorateClass([
1398
+ ValidateIf4((o) => !o.isDraft),
1399
+ IsNotEmpty32({ message: "Please enter the years of experience" }),
1400
+ IsString15({ message: "Years of experience must be a string" })
1401
+ ], JobBasicInformationV2Dto.prototype, "yearsOfExperienceFrom", 2);
1402
+ __decorateClass([
1403
+ ValidateIf4((o) => !o.isDraft),
1404
+ IsNotEmpty32({ message: "Please enter the years of experience upto" }),
1405
+ IsString15({ message: "Years of experience must be a string" })
1406
+ ], JobBasicInformationV2Dto.prototype, "yearsOfExperienceTo", 2);
1407
+ __decorateClass([
1408
+ IsOptional15(),
1409
+ IsString15({ message: "Business industry must be a string" })
1410
+ ], JobBasicInformationV2Dto.prototype, "businessIndustry", 2);
1411
+ __decorateClass([
1412
+ IsOptional15(),
1413
+ IsString15({ message: "Additional comment must be a string" }),
1414
+ MaxLength9(500, { message: "Additional comment must not exceed 500 characters" })
1415
+ ], JobBasicInformationV2Dto.prototype, "additionalComment", 2);
1416
+
1218
1417
  // src/modules/user/freelancer-profile/pattern/pattern.ts
1219
1418
  var PROFILE_PATTERN = {
1220
1419
  fetchFreelancerProfile: "fetch.freelancer.profile",
@@ -1229,23 +1428,23 @@ var PROFILE_PATTERN = {
1229
1428
 
1230
1429
  // src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
1231
1430
  import {
1232
- IsString as IsString15,
1233
- IsNotEmpty as IsNotEmpty32,
1234
- MaxLength as MaxLength9,
1431
+ IsString as IsString16,
1432
+ IsNotEmpty as IsNotEmpty33,
1433
+ MaxLength as MaxLength10,
1235
1434
  MinLength as MinLength7,
1236
1435
  Matches as Matches8
1237
1436
  } from "class-validator";
1238
1437
  var FreelancerChangePasswordDto = class {
1239
1438
  };
1240
1439
  __decorateClass([
1241
- IsNotEmpty32({ message: "Please enter Old Password." }),
1242
- IsString15()
1440
+ IsNotEmpty33({ message: "Please enter Old Password." }),
1441
+ IsString16()
1243
1442
  ], FreelancerChangePasswordDto.prototype, "oldPassword", 2);
1244
1443
  __decorateClass([
1245
- IsNotEmpty32({ message: "Please enter New Password." }),
1246
- IsString15(),
1444
+ IsNotEmpty33({ message: "Please enter New Password." }),
1445
+ IsString16(),
1247
1446
  MinLength7(6),
1248
- MaxLength9(32),
1447
+ MaxLength10(32),
1249
1448
  Matches8(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
1250
1449
  message: "New Password must include letters, numbers and symbols."
1251
1450
  })
@@ -1253,13 +1452,13 @@ __decorateClass([
1253
1452
 
1254
1453
  // src/modules/user/freelancer-profile/dto/update-freelancer-profile.dto.ts
1255
1454
  import {
1256
- IsOptional as IsOptional15,
1257
- IsString as IsString16,
1455
+ IsOptional as IsOptional16,
1456
+ IsString as IsString17,
1258
1457
  IsEmail as IsEmail5,
1259
- IsNumber as IsNumber3,
1260
- IsEnum as IsEnum12,
1261
- IsNotEmpty as IsNotEmpty33,
1262
- ValidateIf as ValidateIf4,
1458
+ IsNumber as IsNumber4,
1459
+ IsEnum as IsEnum13,
1460
+ IsNotEmpty as IsNotEmpty34,
1461
+ ValidateIf as ValidateIf5,
1263
1462
  IsInt
1264
1463
  } from "class-validator";
1265
1464
  var NatureOfWorkDto = /* @__PURE__ */ ((NatureOfWorkDto2) => {
@@ -1277,109 +1476,109 @@ var ModeOfWorkDto = /* @__PURE__ */ ((ModeOfWorkDto2) => {
1277
1476
  var UpdateFreelancerProfileDto = class {
1278
1477
  };
1279
1478
  __decorateClass([
1280
- IsNotEmpty33({ message: "Please enter first name." }),
1281
- IsString16({ message: "Please enter valid first name." })
1479
+ IsNotEmpty34({ message: "Please enter first name." }),
1480
+ IsString17({ message: "Please enter valid first name." })
1282
1481
  ], UpdateFreelancerProfileDto.prototype, "firstName", 2);
1283
1482
  __decorateClass([
1284
- IsNotEmpty33({ message: "Please enter last name." }),
1285
- IsString16({ message: "Please enter valid last name." })
1483
+ IsNotEmpty34({ message: "Please enter last name." }),
1484
+ IsString17({ message: "Please enter valid last name." })
1286
1485
  ], UpdateFreelancerProfileDto.prototype, "lastName", 2);
1287
1486
  __decorateClass([
1288
- IsNotEmpty33({ message: "Please enter designation." }),
1289
- IsString16({ message: "Please enter valid designation." })
1487
+ IsNotEmpty34({ message: "Please enter designation." }),
1488
+ IsString17({ message: "Please enter valid designation." })
1290
1489
  ], UpdateFreelancerProfileDto.prototype, "designation", 2);
1291
1490
  __decorateClass([
1292
- IsNotEmpty33({ message: "Please enter experience." }),
1293
- IsString16({ message: "Please enter valid experience." })
1491
+ IsNotEmpty34({ message: "Please enter experience." }),
1492
+ IsString17({ message: "Please enter valid experience." })
1294
1493
  ], UpdateFreelancerProfileDto.prototype, "experience", 2);
1295
1494
  __decorateClass([
1296
- IsNotEmpty33({ message: "Please enter email id." }),
1495
+ IsNotEmpty34({ message: "Please enter email id." }),
1297
1496
  IsEmail5()
1298
1497
  ], UpdateFreelancerProfileDto.prototype, "email", 2);
1299
1498
  __decorateClass([
1300
- IsNotEmpty33({ message: "Please enter mobile code." }),
1301
- IsString16({ message: "Please enter valid mobile code." })
1499
+ IsNotEmpty34({ message: "Please enter mobile code." }),
1500
+ IsString17({ message: "Please enter valid mobile code." })
1302
1501
  ], UpdateFreelancerProfileDto.prototype, "mobileCode", 2);
1303
1502
  __decorateClass([
1304
- IsNotEmpty33({ message: "Please enter mobile number." }),
1305
- IsString16({ message: "Please enter valid mobile number." })
1503
+ IsNotEmpty34({ message: "Please enter mobile number." }),
1504
+ IsString17({ message: "Please enter valid mobile number." })
1306
1505
  ], UpdateFreelancerProfileDto.prototype, "mobile", 2);
1307
1506
  __decorateClass([
1308
- IsOptional15(),
1309
- IsNumber3()
1507
+ IsOptional16(),
1508
+ IsNumber4()
1310
1509
  ], UpdateFreelancerProfileDto.prototype, "countryId", 2);
1311
1510
  __decorateClass([
1312
- IsOptional15(),
1313
- IsNumber3()
1511
+ IsOptional16(),
1512
+ IsNumber4()
1314
1513
  ], UpdateFreelancerProfileDto.prototype, "stateId", 2);
1315
1514
  __decorateClass([
1316
- IsOptional15(),
1317
- IsNumber3()
1515
+ IsOptional16(),
1516
+ IsNumber4()
1318
1517
  ], UpdateFreelancerProfileDto.prototype, "cityId", 2);
1319
1518
  //@IsString({ message: "Please enter valid expected hourly compensation." })
1320
1519
  __decorateClass([
1321
- IsNotEmpty33({ message: "Please enter expected hourly compensation." })
1520
+ IsNotEmpty34({ message: "Please enter expected hourly compensation." })
1322
1521
  ], UpdateFreelancerProfileDto.prototype, "expectedHourlyCompensation", 2);
1323
1522
  __decorateClass([
1324
- ValidateIf4((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
1523
+ ValidateIf5((dto) => dto.NatureOfWorkDto === "FREELANCE" /* FREELANCE */),
1325
1524
  IsInt({ message: "Please enter valid weekly availability hours (integer)." }),
1326
- IsNotEmpty33({ message: "Please enter weekly availability hours" })
1525
+ IsNotEmpty34({ message: "Please enter weekly availability hours" })
1327
1526
  ], UpdateFreelancerProfileDto.prototype, "numberOfHours", 2);
1328
1527
  __decorateClass([
1329
- IsNotEmpty33({ message: "Please select engagement type." }),
1330
- IsEnum12(NatureOfWorkDto, {
1528
+ IsNotEmpty34({ message: "Please select engagement type." }),
1529
+ IsEnum13(NatureOfWorkDto, {
1331
1530
  message: `Engagement Type must be one of: ${Object.values(
1332
1531
  NatureOfWorkDto
1333
1532
  ).join(", ")}`
1334
1533
  })
1335
1534
  ], UpdateFreelancerProfileDto.prototype, "natureOfWork", 2);
1336
1535
  __decorateClass([
1337
- IsNotEmpty33({ message: "Please select mode of work." }),
1338
- IsEnum12(ModeOfWorkDto, {
1536
+ IsNotEmpty34({ message: "Please select mode of work." }),
1537
+ IsEnum13(ModeOfWorkDto, {
1339
1538
  message: `Mode of work must be one of: ${Object.values(ModeOfWorkDto).join(
1340
1539
  ", "
1341
1540
  )}`
1342
1541
  })
1343
1542
  ], UpdateFreelancerProfileDto.prototype, "modeOfWork", 2);
1344
1543
  __decorateClass([
1345
- IsOptional15(),
1346
- IsString16()
1544
+ IsOptional16(),
1545
+ IsString17()
1347
1546
  ], UpdateFreelancerProfileDto.prototype, "portfolioLink", 2);
1348
1547
  __decorateClass([
1349
- IsNotEmpty33({ message: "Please enter address." }),
1350
- IsString16()
1548
+ IsNotEmpty34({ message: "Please enter address." }),
1549
+ IsString17()
1351
1550
  ], UpdateFreelancerProfileDto.prototype, "address", 2);
1352
1551
  __decorateClass([
1353
- IsOptional15(),
1354
- IsString16()
1552
+ IsOptional16(),
1553
+ IsString17()
1355
1554
  ], UpdateFreelancerProfileDto.prototype, "addressLine", 2);
1356
1555
  __decorateClass([
1357
- IsNotEmpty33({ message: "Please enter postalCode." }),
1358
- IsString16()
1556
+ IsNotEmpty34({ message: "Please enter postalCode." }),
1557
+ IsString17()
1359
1558
  ], UpdateFreelancerProfileDto.prototype, "postalCode", 2);
1360
1559
  __decorateClass([
1361
- IsOptional15(),
1362
- IsString16()
1560
+ IsOptional16(),
1561
+ IsString17()
1363
1562
  ], UpdateFreelancerProfileDto.prototype, "about", 2);
1364
1563
  __decorateClass([
1365
- IsOptional15(),
1366
- IsString16()
1564
+ IsOptional16(),
1565
+ IsString17()
1367
1566
  ], UpdateFreelancerProfileDto.prototype, "linkedinProfileLink", 2);
1368
1567
  __decorateClass([
1369
- IsOptional15(),
1370
- IsString16()
1568
+ IsOptional16(),
1569
+ IsString17()
1371
1570
  ], UpdateFreelancerProfileDto.prototype, "kaggleProfileLink", 2);
1372
1571
  __decorateClass([
1373
- IsOptional15(),
1374
- IsString16()
1572
+ IsOptional16(),
1573
+ IsString17()
1375
1574
  ], UpdateFreelancerProfileDto.prototype, "githubProfileLink", 2);
1376
1575
  __decorateClass([
1377
- IsOptional15(),
1378
- IsString16()
1576
+ IsOptional16(),
1577
+ IsString17()
1379
1578
  ], UpdateFreelancerProfileDto.prototype, "stackOverflowProfileLink", 2);
1380
1579
  __decorateClass([
1381
- IsOptional15(),
1382
- IsString16()
1580
+ IsOptional16(),
1581
+ IsString17()
1383
1582
  ], UpdateFreelancerProfileDto.prototype, "resumeUrl", 2);
1384
1583
 
1385
1584
  // src/modules/bank/pattern/pattern.ts
@@ -1391,11 +1590,11 @@ var BANK_PATTERN = {
1391
1590
 
1392
1591
  // src/modules/bank/dto/freelancer-bank-details.dto.ts
1393
1592
  import {
1394
- IsEnum as IsEnum13,
1395
- IsNotEmpty as IsNotEmpty34,
1396
- IsOptional as IsOptional16,
1397
- IsString as IsString17,
1398
- ValidateIf as ValidateIf5
1593
+ IsEnum as IsEnum14,
1594
+ IsNotEmpty as IsNotEmpty35,
1595
+ IsOptional as IsOptional17,
1596
+ IsString as IsString18,
1597
+ ValidateIf as ValidateIf6
1399
1598
  } from "class-validator";
1400
1599
  var BankAccountScope = /* @__PURE__ */ ((BankAccountScope2) => {
1401
1600
  BankAccountScope2["DOMESTIC"] = "DOMESTIC";
@@ -1405,51 +1604,51 @@ var BankAccountScope = /* @__PURE__ */ ((BankAccountScope2) => {
1405
1604
  var FreelancerBankDetailsDto = class {
1406
1605
  };
1407
1606
  __decorateClass([
1408
- IsNotEmpty34({ message: "Please enter Account Holder Name." })
1607
+ IsNotEmpty35({ message: "Please enter Account Holder Name." })
1409
1608
  ], FreelancerBankDetailsDto.prototype, "name", 2);
1410
1609
  __decorateClass([
1411
- IsNotEmpty34({ message: "Please enter Mobile Code." })
1610
+ IsNotEmpty35({ message: "Please enter Mobile Code." })
1412
1611
  ], FreelancerBankDetailsDto.prototype, "mobileCode", 2);
1413
1612
  __decorateClass([
1414
- IsNotEmpty34({ message: "Please enter Mobile Number." })
1613
+ IsNotEmpty35({ message: "Please enter Mobile Number." })
1415
1614
  ], FreelancerBankDetailsDto.prototype, "mobile", 2);
1416
1615
  __decorateClass([
1417
- IsNotEmpty34({ message: "Please enter Email." })
1616
+ IsNotEmpty35({ message: "Please enter Email." })
1418
1617
  ], FreelancerBankDetailsDto.prototype, "email", 2);
1419
1618
  __decorateClass([
1420
- IsOptional16()
1619
+ IsOptional17()
1421
1620
  ], FreelancerBankDetailsDto.prototype, "address", 2);
1422
1621
  __decorateClass([
1423
- IsNotEmpty34({ message: "Please enter Account Number." })
1622
+ IsNotEmpty35({ message: "Please enter Account Number." })
1424
1623
  ], FreelancerBankDetailsDto.prototype, "accountNumber", 2);
1425
1624
  __decorateClass([
1426
- IsNotEmpty34({ message: "Please enter Bank Name." })
1625
+ IsNotEmpty35({ message: "Please enter Bank Name." })
1427
1626
  ], FreelancerBankDetailsDto.prototype, "bankName", 2);
1428
1627
  __decorateClass([
1429
- IsOptional16(),
1430
- IsString17()
1628
+ IsOptional17(),
1629
+ IsString18()
1431
1630
  ], FreelancerBankDetailsDto.prototype, "branchName", 2);
1432
1631
  __decorateClass([
1433
- ValidateIf5((dto) => dto.accountScope === "DOMESTIC"),
1434
- IsNotEmpty34({ message: "IFSC Code is required for DOMESTIC accounts." })
1632
+ ValidateIf6((dto) => dto.accountScope === "DOMESTIC"),
1633
+ IsNotEmpty35({ message: "IFSC Code is required for DOMESTIC accounts." })
1435
1634
  ], FreelancerBankDetailsDto.prototype, "ifscCode", 2);
1436
1635
  __decorateClass([
1437
- ValidateIf5((dto) => dto.accountScope === "INTERNATIONAL"),
1438
- IsNotEmpty34({ message: "Routing Number/Sort Code is required for INTERNATIONAL accounts." })
1636
+ ValidateIf6((dto) => dto.accountScope === "INTERNATIONAL"),
1637
+ IsNotEmpty35({ message: "Routing Number/Sort Code is required for INTERNATIONAL accounts." })
1439
1638
  ], FreelancerBankDetailsDto.prototype, "routingNo", 2);
1440
1639
  __decorateClass([
1441
- ValidateIf5((dto) => dto.accountScope === "INTERNATIONAL"),
1442
- IsNotEmpty34({ message: "ABA Number is required for INTERNATIONAL accounts." })
1640
+ ValidateIf6((dto) => dto.accountScope === "INTERNATIONAL"),
1641
+ IsNotEmpty35({ message: "ABA Number is required for INTERNATIONAL accounts." })
1443
1642
  ], FreelancerBankDetailsDto.prototype, "abaNumber", 2);
1444
1643
  __decorateClass([
1445
- ValidateIf5((dto) => dto.accountScope === "INTERNATIONAL"),
1446
- IsNotEmpty34({ message: "IBAN is required for INTERNATIONAL accounts." })
1644
+ ValidateIf6((dto) => dto.accountScope === "INTERNATIONAL"),
1645
+ IsNotEmpty35({ message: "IBAN is required for INTERNATIONAL accounts." })
1447
1646
  ], FreelancerBankDetailsDto.prototype, "iban", 2);
1448
1647
  __decorateClass([
1449
- IsOptional16()
1648
+ IsOptional17()
1450
1649
  ], FreelancerBankDetailsDto.prototype, "accountType", 2);
1451
1650
  __decorateClass([
1452
- IsEnum13(BankAccountScope, {
1651
+ IsEnum14(BankAccountScope, {
1453
1652
  message: `Type of Account Scope must be one of: ${Object.values(
1454
1653
  BankAccountScope
1455
1654
  ).join(", ")}`
@@ -1471,7 +1670,7 @@ var SYSTEM_PREFERENCES_PATTERN = {
1471
1670
  // src/modules/system-preference/dto/system-preference.dto.ts
1472
1671
  import {
1473
1672
  IsBoolean as IsBoolean3,
1474
- IsEnum as IsEnum14
1673
+ IsEnum as IsEnum15
1475
1674
  } from "class-validator";
1476
1675
  var SystemPreferenceKey = /* @__PURE__ */ ((SystemPreferenceKey2) => {
1477
1676
  SystemPreferenceKey2["EMAIL_NOTIFICATION"] = "EMAIL_NOTIFICATION";
@@ -1484,7 +1683,7 @@ __decorateClass([
1484
1683
  IsBoolean3()
1485
1684
  ], SystemPreferenceDto.prototype, "value", 2);
1486
1685
  __decorateClass([
1487
- IsEnum14(SystemPreferenceKey, {
1686
+ IsEnum15(SystemPreferenceKey, {
1488
1687
  message: `key must be one of: ${Object.values(
1489
1688
  SystemPreferenceKey
1490
1689
  ).join(", ")}`
@@ -1505,13 +1704,13 @@ var RATING_PATTERN = {
1505
1704
 
1506
1705
  // src/modules/rating/dto/add.rating.dto.ts
1507
1706
  import {
1508
- IsEnum as IsEnum15,
1707
+ IsEnum as IsEnum16,
1509
1708
  IsInt as IsInt2,
1510
- IsNotEmpty as IsNotEmpty35,
1511
- IsOptional as IsOptional17,
1512
- IsString as IsString18,
1513
- Max as Max2,
1514
- Min as Min2
1709
+ IsNotEmpty as IsNotEmpty36,
1710
+ IsOptional as IsOptional18,
1711
+ IsString as IsString19,
1712
+ Max as Max3,
1713
+ Min as Min3
1515
1714
  } from "class-validator";
1516
1715
 
1517
1716
  // src/entities/rating.entity.ts
@@ -2734,6 +2933,9 @@ var AiInterviewStatusEnum = /* @__PURE__ */ ((AiInterviewStatusEnum2) => {
2734
2933
  })(AiInterviewStatusEnum || {});
2735
2934
  var AiInterview = class extends BaseEntity {
2736
2935
  };
2936
+ __decorateClass([
2937
+ Column15({ name: "ai_interview_unique_id", type: "varchar", nullable: true, unique: true })
2938
+ ], AiInterview.prototype, "aiInterviewUniqueId", 2);
2737
2939
  __decorateClass([
2738
2940
  Column15({ name: "candidate_id", type: "integer", nullable: true }),
2739
2941
  Index10()
@@ -4000,6 +4202,9 @@ __decorateClass([
4000
4202
  __decorateClass([
4001
4203
  Column30({ name: "country_id", type: "int", nullable: false })
4002
4204
  ], JobLocation.prototype, "countryId", 2);
4205
+ __decorateClass([
4206
+ Column30({ name: "country_name", type: "varchar", nullable: true })
4207
+ ], JobLocation.prototype, "countryName", 2);
4003
4208
  __decorateClass([
4004
4209
  ManyToOne28(() => Country),
4005
4210
  JoinColumn28({ name: "country_id" })
@@ -4007,6 +4212,9 @@ __decorateClass([
4007
4212
  __decorateClass([
4008
4213
  Column30({ name: "state_id", type: "int", nullable: false })
4009
4214
  ], JobLocation.prototype, "stateId", 2);
4215
+ __decorateClass([
4216
+ Column30({ name: "state_name", type: "varchar", nullable: true })
4217
+ ], JobLocation.prototype, "stateName", 2);
4010
4218
  __decorateClass([
4011
4219
  ManyToOne28(() => State),
4012
4220
  JoinColumn28({ name: "state_id" })
@@ -4014,12 +4222,15 @@ __decorateClass([
4014
4222
  __decorateClass([
4015
4223
  Column30({ name: "city_id", type: "int", nullable: false })
4016
4224
  ], JobLocation.prototype, "cityId", 2);
4225
+ __decorateClass([
4226
+ Column30({ name: "city_name", type: "varchar", nullable: true })
4227
+ ], JobLocation.prototype, "cityName", 2);
4017
4228
  __decorateClass([
4018
4229
  ManyToOne28(() => City),
4019
4230
  JoinColumn28({ name: "city_id" })
4020
4231
  ], JobLocation.prototype, "city", 2);
4021
4232
  __decorateClass([
4022
- Column30({ name: "location_wise_openings", type: "integer", default: 0 })
4233
+ Column30({ name: "location_wise_openings", type: "int", default: 0 })
4023
4234
  ], JobLocation.prototype, "locationWiseOpenings", 2);
4024
4235
  JobLocation = __decorateClass([
4025
4236
  Entity29("job_locations")
@@ -5984,21 +6195,21 @@ var CreateRatingDto = class {
5984
6195
  };
5985
6196
  __decorateClass([
5986
6197
  IsInt2({ message: "Reviewee ID must be a valid integer" }),
5987
- IsNotEmpty35({ message: "Reviewee ID is required" })
6198
+ IsNotEmpty36({ message: "Reviewee ID is required" })
5988
6199
  ], CreateRatingDto.prototype, "revieweeId", 2);
5989
6200
  __decorateClass([
5990
- IsEnum15(RatingTypeEnum, {
6201
+ IsEnum16(RatingTypeEnum, {
5991
6202
  message: `Rating type must be one of: ${Object.values(RatingTypeEnum).join(", ")}`
5992
6203
  })
5993
6204
  ], CreateRatingDto.prototype, "ratingType", 2);
5994
6205
  __decorateClass([
5995
6206
  IsInt2({ message: "Rating must be an integer value" }),
5996
- Min2(1, { message: "Rating must be at least 1" }),
5997
- Max2(5, { message: "Rating must be at most 5" })
6207
+ Min3(1, { message: "Rating must be at least 1" }),
6208
+ Max3(5, { message: "Rating must be at most 5" })
5998
6209
  ], CreateRatingDto.prototype, "rating", 2);
5999
6210
  __decorateClass([
6000
- IsOptional17(),
6001
- IsString18({ message: "Review must be a string" })
6211
+ IsOptional18(),
6212
+ IsString19({ message: "Review must be a string" })
6002
6213
  ], CreateRatingDto.prototype, "review", 2);
6003
6214
 
6004
6215
  // src/modules/company-role/pattern/pattern.ts
@@ -6014,48 +6225,48 @@ var COMPANY_ROLES_PATTERNS = {
6014
6225
  };
6015
6226
 
6016
6227
  // src/modules/company-role/dto/create-company-role.dto.ts
6017
- import { ArrayNotEmpty as ArrayNotEmpty2, IsArray as IsArray2, IsBoolean as IsBoolean4, IsInt as IsInt3, IsNotEmpty as IsNotEmpty36, IsOptional as IsOptional18 } from "class-validator";
6228
+ import { ArrayNotEmpty as ArrayNotEmpty3, IsArray as IsArray3, IsBoolean as IsBoolean4, IsInt as IsInt3, IsNotEmpty as IsNotEmpty37, IsOptional as IsOptional19 } from "class-validator";
6018
6229
  var CreateCompanyRoleDto = class {
6019
6230
  };
6020
6231
  __decorateClass([
6021
- IsNotEmpty36({ message: "Please enter company role name." })
6232
+ IsNotEmpty37({ message: "Please enter company role name." })
6022
6233
  ], CreateCompanyRoleDto.prototype, "name", 2);
6023
6234
  __decorateClass([
6024
- IsNotEmpty36({ message: "Please enter company role slug" })
6235
+ IsNotEmpty37({ message: "Please enter company role slug" })
6025
6236
  ], CreateCompanyRoleDto.prototype, "slug", 2);
6026
6237
  __decorateClass([
6027
- IsNotEmpty36({ message: "Please enter description" })
6238
+ IsNotEmpty37({ message: "Please enter description" })
6028
6239
  ], CreateCompanyRoleDto.prototype, "description", 2);
6029
6240
  __decorateClass([
6030
- IsArray2({ message: "Permission IDs must be an array." }),
6031
- ArrayNotEmpty2({ message: "Please select at least one permission." }),
6241
+ IsArray3({ message: "Permission IDs must be an array." }),
6242
+ ArrayNotEmpty3({ message: "Please select at least one permission." }),
6032
6243
  IsInt3({ each: true, message: "Each permission ID must be an integer." })
6033
6244
  ], CreateCompanyRoleDto.prototype, "permissionIds", 2);
6034
6245
  __decorateClass([
6035
- IsOptional18(),
6246
+ IsOptional19(),
6036
6247
  IsBoolean4({ message: "Is active must be a boolean value" })
6037
6248
  ], CreateCompanyRoleDto.prototype, "isActive", 2);
6038
6249
 
6039
6250
  // src/modules/company-role/dto/update-company-role.dto.ts
6040
- import { ArrayNotEmpty as ArrayNotEmpty3, IsArray as IsArray3, IsBoolean as IsBoolean5, IsInt as IsInt4, IsNotEmpty as IsNotEmpty37, IsOptional as IsOptional19 } from "class-validator";
6251
+ import { ArrayNotEmpty as ArrayNotEmpty4, IsArray as IsArray4, IsBoolean as IsBoolean5, IsInt as IsInt4, IsNotEmpty as IsNotEmpty38, IsOptional as IsOptional20 } from "class-validator";
6041
6252
  var UpdateCompanyRoleDto = class {
6042
6253
  };
6043
6254
  __decorateClass([
6044
- IsNotEmpty37({ message: "Please enter company name." })
6255
+ IsNotEmpty38({ message: "Please enter company name." })
6045
6256
  ], UpdateCompanyRoleDto.prototype, "name", 2);
6046
6257
  __decorateClass([
6047
- IsNotEmpty37({ message: "Please enter slug" })
6258
+ IsNotEmpty38({ message: "Please enter slug" })
6048
6259
  ], UpdateCompanyRoleDto.prototype, "slug", 2);
6049
6260
  __decorateClass([
6050
- IsNotEmpty37({ message: "Please enter description" })
6261
+ IsNotEmpty38({ message: "Please enter description" })
6051
6262
  ], UpdateCompanyRoleDto.prototype, "description", 2);
6052
6263
  __decorateClass([
6053
- IsArray3({ message: "Permission IDs must be an array." }),
6054
- ArrayNotEmpty3({ message: "Please select at least one permission." }),
6264
+ IsArray4({ message: "Permission IDs must be an array." }),
6265
+ ArrayNotEmpty4({ message: "Please select at least one permission." }),
6055
6266
  IsInt4({ each: true, message: "Each permission ID must be an integer." })
6056
6267
  ], UpdateCompanyRoleDto.prototype, "permissionIds", 2);
6057
6268
  __decorateClass([
6058
- IsOptional19(),
6269
+ IsOptional20(),
6059
6270
  IsBoolean5({ message: "Is active must be a boolean value" })
6060
6271
  ], UpdateCompanyRoleDto.prototype, "isActive", 2);
6061
6272
 
@@ -6076,41 +6287,41 @@ var FREELANCER_EXPERIENCE_PATTERN = {
6076
6287
  // src/modules/user/freelancer-experience/dto/freelancer-experience.dto.ts
6077
6288
  import {
6078
6289
  ArrayMinSize,
6079
- IsNotEmpty as IsNotEmpty38,
6080
- IsOptional as IsOptional20,
6081
- IsString as IsString21,
6082
- MaxLength as MaxLength11,
6083
- ValidateNested
6290
+ IsNotEmpty as IsNotEmpty39,
6291
+ IsOptional as IsOptional21,
6292
+ IsString as IsString22,
6293
+ MaxLength as MaxLength12,
6294
+ ValidateNested as ValidateNested2
6084
6295
  } from "class-validator";
6085
- import { Type as Type3 } from "class-transformer";
6296
+ import { Type as Type4 } from "class-transformer";
6086
6297
  var ExperienceDto = class {
6087
6298
  };
6088
6299
  __decorateClass([
6089
- IsOptional20()
6300
+ IsOptional21()
6090
6301
  ], ExperienceDto.prototype, "uuid", 2);
6091
6302
  __decorateClass([
6092
- IsNotEmpty38(),
6093
- IsString21()
6303
+ IsNotEmpty39(),
6304
+ IsString22()
6094
6305
  ], ExperienceDto.prototype, "companyName", 2);
6095
6306
  __decorateClass([
6096
- IsNotEmpty38(),
6097
- IsString21()
6307
+ IsNotEmpty39(),
6308
+ IsString22()
6098
6309
  ], ExperienceDto.prototype, "designation", 2);
6099
6310
  __decorateClass([
6100
- IsNotEmpty38(),
6101
- IsString21()
6311
+ IsNotEmpty39(),
6312
+ IsString22()
6102
6313
  ], ExperienceDto.prototype, "jobDuration", 2);
6103
6314
  __decorateClass([
6104
- IsOptional20(),
6105
- IsString21(),
6106
- MaxLength11(5e3, { message: "Description must not exceed 5000 characters" })
6315
+ IsOptional21(),
6316
+ IsString22(),
6317
+ MaxLength12(5e3, { message: "Description must not exceed 5000 characters" })
6107
6318
  ], ExperienceDto.prototype, "description", 2);
6108
6319
  var FreelancerExperienceDto = class {
6109
6320
  };
6110
6321
  __decorateClass([
6111
- ValidateNested({ each: true }),
6322
+ ValidateNested2({ each: true }),
6112
6323
  ArrayMinSize(1, { message: "At least one experience is required." }),
6113
- Type3(() => ExperienceDto)
6324
+ Type4(() => ExperienceDto)
6114
6325
  ], FreelancerExperienceDto.prototype, "experiences", 2);
6115
6326
 
6116
6327
  // src/modules/company-member/pattern/pattern.ts
@@ -6126,34 +6337,34 @@ var COMPANY_MEMBERS_PATTERNS = {
6126
6337
  };
6127
6338
 
6128
6339
  // src/modules/company-member/dto/create-company-member.dto.ts
6129
- import { ArrayNotEmpty as ArrayNotEmpty4, IsArray as IsArray4, IsInt as IsInt5, IsNotEmpty as IsNotEmpty39 } from "class-validator";
6340
+ import { ArrayNotEmpty as ArrayNotEmpty5, IsArray as IsArray5, IsInt as IsInt5, IsNotEmpty as IsNotEmpty40 } from "class-validator";
6130
6341
  var CreateCompanyMemberDto = class {
6131
6342
  };
6132
6343
  __decorateClass([
6133
- IsNotEmpty39({ message: "Please enter name." })
6344
+ IsNotEmpty40({ message: "Please enter name." })
6134
6345
  ], CreateCompanyMemberDto.prototype, "name", 2);
6135
6346
  __decorateClass([
6136
- IsNotEmpty39({ message: "Please enter email" })
6347
+ IsNotEmpty40({ message: "Please enter email" })
6137
6348
  ], CreateCompanyMemberDto.prototype, "email", 2);
6138
6349
  __decorateClass([
6139
- IsArray4({ message: "Role IDs must be an array." }),
6140
- ArrayNotEmpty4({ message: "Please select at least one role." }),
6350
+ IsArray5({ message: "Role IDs must be an array." }),
6351
+ ArrayNotEmpty5({ message: "Please select at least one role." }),
6141
6352
  IsInt5({ each: true, message: "Each role ID must be an integer." })
6142
6353
  ], CreateCompanyMemberDto.prototype, "roleIds", 2);
6143
6354
 
6144
6355
  // src/modules/company-member/dto/update-company-member.dto.ts
6145
- import { ArrayNotEmpty as ArrayNotEmpty5, IsArray as IsArray5, IsInt as IsInt6, IsNotEmpty as IsNotEmpty40 } from "class-validator";
6356
+ import { ArrayNotEmpty as ArrayNotEmpty6, IsArray as IsArray6, IsInt as IsInt6, IsNotEmpty as IsNotEmpty41 } from "class-validator";
6146
6357
  var UpdateCompanyMemberDto = class {
6147
6358
  };
6148
6359
  __decorateClass([
6149
- IsNotEmpty40({ message: "Please enter name." })
6360
+ IsNotEmpty41({ message: "Please enter name." })
6150
6361
  ], UpdateCompanyMemberDto.prototype, "name", 2);
6151
6362
  __decorateClass([
6152
- IsNotEmpty40({ message: "Please enter email" })
6363
+ IsNotEmpty41({ message: "Please enter email" })
6153
6364
  ], UpdateCompanyMemberDto.prototype, "email", 2);
6154
6365
  __decorateClass([
6155
- IsArray5({ message: "Role IDs must be an array." }),
6156
- ArrayNotEmpty5({ message: "Please select at least one role." }),
6366
+ IsArray6({ message: "Role IDs must be an array." }),
6367
+ ArrayNotEmpty6({ message: "Please select at least one role." }),
6157
6368
  IsInt6({ each: true, message: "Each role ID must be an integer." })
6158
6369
  ], UpdateCompanyMemberDto.prototype, "roleIds", 2);
6159
6370
 
@@ -6172,32 +6383,32 @@ var FREELANCER_EDUCATION_PATTERN = {
6172
6383
  };
6173
6384
 
6174
6385
  // src/modules/user/freelancer-education/dto/freelancer-education.dto.ts
6175
- import { IsArray as IsArray6, ValidateNested as ValidateNested2, IsString as IsString24, IsNotEmpty as IsNotEmpty41, IsOptional as IsOptional23, ArrayMinSize as ArrayMinSize2 } from "class-validator";
6176
- import { Type as Type4 } from "class-transformer";
6386
+ import { IsArray as IsArray7, ValidateNested as ValidateNested3, IsString as IsString25, IsNotEmpty as IsNotEmpty42, IsOptional as IsOptional24, ArrayMinSize as ArrayMinSize2 } from "class-validator";
6387
+ import { Type as Type5 } from "class-transformer";
6177
6388
  var EducationDto = class {
6178
6389
  };
6179
6390
  __decorateClass([
6180
- IsOptional23()
6391
+ IsOptional24()
6181
6392
  ], EducationDto.prototype, "uuid", 2);
6182
6393
  __decorateClass([
6183
- IsString24(),
6184
- IsNotEmpty41({ message: "Please Enter Degree " })
6394
+ IsString25(),
6395
+ IsNotEmpty42({ message: "Please Enter Degree " })
6185
6396
  ], EducationDto.prototype, "degree", 2);
6186
6397
  __decorateClass([
6187
- IsString24(),
6188
- IsNotEmpty41({ message: "Please Enter University " })
6398
+ IsString25(),
6399
+ IsNotEmpty42({ message: "Please Enter University " })
6189
6400
  ], EducationDto.prototype, "university", 2);
6190
6401
  __decorateClass([
6191
- IsString24(),
6192
- IsNotEmpty41({ message: "Please Enter Year of Graduation " })
6402
+ IsString25(),
6403
+ IsNotEmpty42({ message: "Please Enter Year of Graduation " })
6193
6404
  ], EducationDto.prototype, "yearOfGraduation", 2);
6194
6405
  var FreelancerEducationDto = class {
6195
6406
  };
6196
6407
  __decorateClass([
6197
- IsArray6(),
6408
+ IsArray7(),
6198
6409
  ArrayMinSize2(1, { message: "At least one education is required." }),
6199
- ValidateNested2({ each: true }),
6200
- Type4(() => EducationDto)
6410
+ ValidateNested3({ each: true }),
6411
+ Type5(() => EducationDto)
6201
6412
  ], FreelancerEducationDto.prototype, "educations", 2);
6202
6413
 
6203
6414
  // src/modules/user/freelancer-project/pattern/pattern.ts
@@ -6207,68 +6418,68 @@ var FREELANCER_PROJECT_PATTERN = {
6207
6418
  };
6208
6419
 
6209
6420
  // src/modules/user/freelancer-project/dto/freelancer-project.dto.ts
6210
- import { IsArray as IsArray7, ValidateNested as ValidateNested3, IsString as IsString25, IsNotEmpty as IsNotEmpty42, IsOptional as IsOptional24, IsDateString, MaxLength as MaxLength13, ArrayMinSize as ArrayMinSize3 } from "class-validator";
6211
- import { Type as Type5 } from "class-transformer";
6421
+ import { IsArray as IsArray8, ValidateNested as ValidateNested4, IsString as IsString26, IsNotEmpty as IsNotEmpty43, IsOptional as IsOptional25, IsDateString, MaxLength as MaxLength14, ArrayMinSize as ArrayMinSize3 } from "class-validator";
6422
+ import { Type as Type6 } from "class-transformer";
6212
6423
  var ProjectDto = class {
6213
6424
  };
6214
6425
  __decorateClass([
6215
- IsOptional24()
6426
+ IsOptional25()
6216
6427
  ], ProjectDto.prototype, "uuid", 2);
6217
6428
  __decorateClass([
6218
- IsString25(),
6219
- IsNotEmpty42({ message: "Please Enter Project Name " })
6429
+ IsString26(),
6430
+ IsNotEmpty43({ message: "Please Enter Project Name " })
6220
6431
  ], ProjectDto.prototype, "projectName", 2);
6221
6432
  __decorateClass([
6222
6433
  IsDateString(),
6223
- IsNotEmpty42({ message: "Please Enter Start Date " })
6434
+ IsNotEmpty43({ message: "Please Enter Start Date " })
6224
6435
  ], ProjectDto.prototype, "startDate", 2);
6225
6436
  __decorateClass([
6226
6437
  IsDateString(),
6227
- IsNotEmpty42({ message: "Please Enter End Date " })
6438
+ IsNotEmpty43({ message: "Please Enter End Date " })
6228
6439
  ], ProjectDto.prototype, "endDate", 2);
6229
6440
  __decorateClass([
6230
- IsOptional24(),
6231
- IsString25()
6441
+ IsOptional25(),
6442
+ IsString26()
6232
6443
  ], ProjectDto.prototype, "clientName", 2);
6233
6444
  __decorateClass([
6234
- IsOptional24(),
6235
- IsString25()
6445
+ IsOptional25(),
6446
+ IsString26()
6236
6447
  ], ProjectDto.prototype, "gitLink", 2);
6237
6448
  __decorateClass([
6238
- IsOptional24(),
6239
- IsString25(),
6240
- MaxLength13(5e3, { message: "Description must not exceed 5000 characters" })
6449
+ IsOptional25(),
6450
+ IsString26(),
6451
+ MaxLength14(5e3, { message: "Description must not exceed 5000 characters" })
6241
6452
  ], ProjectDto.prototype, "description", 2);
6242
6453
  var CaseStudyDto = class {
6243
6454
  };
6244
6455
  __decorateClass([
6245
- IsOptional24()
6456
+ IsOptional25()
6246
6457
  ], CaseStudyDto.prototype, "uuid", 2);
6247
6458
  __decorateClass([
6248
- IsString25(),
6249
- IsNotEmpty42({ message: "Please Enter Project Name " })
6459
+ IsString26(),
6460
+ IsNotEmpty43({ message: "Please Enter Project Name " })
6250
6461
  ], CaseStudyDto.prototype, "projectName", 2);
6251
6462
  __decorateClass([
6252
- IsOptional24(),
6253
- IsString25()
6463
+ IsOptional25(),
6464
+ IsString26()
6254
6465
  ], CaseStudyDto.prototype, "caseStudyLink", 2);
6255
6466
  __decorateClass([
6256
- IsOptional24(),
6257
- IsString25(),
6258
- MaxLength13(5e3, { message: "Description must not exceed 5000 characters" })
6467
+ IsOptional25(),
6468
+ IsString26(),
6469
+ MaxLength14(5e3, { message: "Description must not exceed 5000 characters" })
6259
6470
  ], CaseStudyDto.prototype, "description", 2);
6260
6471
  var FreelancerProjectDto = class {
6261
6472
  };
6262
6473
  __decorateClass([
6263
- IsArray7(),
6474
+ IsArray8(),
6264
6475
  ArrayMinSize3(1, { message: "At least one project is required." }),
6265
- ValidateNested3({ each: true }),
6266
- Type5(() => ProjectDto)
6476
+ ValidateNested4({ each: true }),
6477
+ Type6(() => ProjectDto)
6267
6478
  ], FreelancerProjectDto.prototype, "projects", 2);
6268
6479
  __decorateClass([
6269
- IsArray7(),
6270
- ValidateNested3({ each: true }),
6271
- Type5(() => CaseStudyDto)
6480
+ IsArray8(),
6481
+ ValidateNested4({ each: true }),
6482
+ Type6(() => CaseStudyDto)
6272
6483
  ], FreelancerProjectDto.prototype, "casestudies", 2);
6273
6484
 
6274
6485
  // src/modules/permission/pattern/pattern.ts
@@ -6283,8 +6494,8 @@ var FREELANCER_SKILL_PATTERN = {
6283
6494
  };
6284
6495
 
6285
6496
  // src/modules/user/freelancer-skill/dto/freelancer-skill.dto.ts
6286
- import { IsArray as IsArray8, IsString as IsString26, IsOptional as IsOptional25 } from "class-validator";
6287
- import { Type as Type6 } from "class-transformer";
6497
+ import { IsArray as IsArray9, IsString as IsString27, IsOptional as IsOptional26 } from "class-validator";
6498
+ import { Type as Type7 } from "class-transformer";
6288
6499
  var FreelancerSkillDto = class {
6289
6500
  constructor() {
6290
6501
  this.coreSkills = [];
@@ -6294,28 +6505,28 @@ var FreelancerSkillDto = class {
6294
6505
  }
6295
6506
  };
6296
6507
  __decorateClass([
6297
- IsOptional25(),
6298
- IsArray8(),
6299
- Type6(() => String),
6300
- IsString26({ each: true })
6508
+ IsOptional26(),
6509
+ IsArray9(),
6510
+ Type7(() => String),
6511
+ IsString27({ each: true })
6301
6512
  ], FreelancerSkillDto.prototype, "coreSkills", 2);
6302
6513
  __decorateClass([
6303
- IsOptional25(),
6304
- IsArray8(),
6305
- Type6(() => String),
6306
- IsString26({ each: true })
6514
+ IsOptional26(),
6515
+ IsArray9(),
6516
+ Type7(() => String),
6517
+ IsString27({ each: true })
6307
6518
  ], FreelancerSkillDto.prototype, "secondarySkills", 2);
6308
6519
  __decorateClass([
6309
- IsOptional25(),
6310
- IsArray8(),
6311
- Type6(() => String),
6312
- IsString26({ each: true })
6520
+ IsOptional26(),
6521
+ IsArray9(),
6522
+ Type7(() => String),
6523
+ IsString27({ each: true })
6313
6524
  ], FreelancerSkillDto.prototype, "tools", 2);
6314
6525
  __decorateClass([
6315
- IsOptional25(),
6316
- IsArray8(),
6317
- Type6(() => String),
6318
- IsString26({ each: true })
6526
+ IsOptional26(),
6527
+ IsArray9(),
6528
+ Type7(() => String),
6529
+ IsString27({ each: true })
6319
6530
  ], FreelancerSkillDto.prototype, "frameworks", 2);
6320
6531
 
6321
6532
  // src/modules/freelancer-admin/pattern/pattern.ts
@@ -6332,21 +6543,21 @@ var ADMIN_FREELANCER_PATTERN = {
6332
6543
 
6333
6544
  // src/modules/freelancer-admin/dto/create-freelancer.dto.ts
6334
6545
  import {
6335
- IsString as IsString27,
6546
+ IsString as IsString28,
6336
6547
  IsEmail as IsEmail10,
6337
6548
  IsBoolean as IsBoolean10,
6338
- IsOptional as IsOptional26,
6339
- IsEnum as IsEnum16,
6340
- IsNumber as IsNumber4,
6549
+ IsOptional as IsOptional27,
6550
+ IsEnum as IsEnum17,
6551
+ IsNumber as IsNumber5,
6341
6552
  IsUrl as IsUrl3,
6342
- Min as Min3,
6343
- MaxLength as MaxLength15,
6344
- IsNotEmpty as IsNotEmpty44,
6553
+ Min as Min4,
6554
+ MaxLength as MaxLength16,
6555
+ IsNotEmpty as IsNotEmpty45,
6345
6556
  MinLength as MinLength12,
6346
6557
  Matches as Matches9,
6347
- ValidateIf as ValidateIf6
6558
+ ValidateIf as ValidateIf7
6348
6559
  } from "class-validator";
6349
- import { Type as Type7 } from "class-transformer";
6560
+ import { Type as Type8 } from "class-transformer";
6350
6561
  var NatureOfWorkEnum = /* @__PURE__ */ ((NatureOfWorkEnum3) => {
6351
6562
  NatureOfWorkEnum3["FULLTIME"] = "FULLTIME";
6352
6563
  NatureOfWorkEnum3["PARTTIME"] = "PARTTIME";
@@ -6362,48 +6573,48 @@ var ModeOfWorkEnum = /* @__PURE__ */ ((ModeOfWorkEnum3) => {
6362
6573
  var CreateFreelancerDto = class {
6363
6574
  };
6364
6575
  __decorateClass([
6365
- IsString27({ message: "Full name must be a string" }),
6366
- MaxLength15(100, { message: "Full name must not exceed 100 characters" })
6576
+ IsString28({ message: "Full name must be a string" }),
6577
+ MaxLength16(100, { message: "Full name must not exceed 100 characters" })
6367
6578
  ], CreateFreelancerDto.prototype, "fullName", 2);
6368
6579
  __decorateClass([
6369
6580
  IsEmail10({}, { message: "Invalid email address" })
6370
6581
  ], CreateFreelancerDto.prototype, "email", 2);
6371
6582
  __decorateClass([
6372
- IsString27({ message: "Mobile code must be a string (e.g., +1)" })
6583
+ IsString28({ message: "Mobile code must be a string (e.g., +1)" })
6373
6584
  ], CreateFreelancerDto.prototype, "mobileCode", 2);
6374
6585
  __decorateClass([
6375
- IsString27({ message: "Mobile must be a string (e.g., 1243253534)" })
6586
+ IsString28({ message: "Mobile must be a string (e.g., 1243253534)" })
6376
6587
  ], CreateFreelancerDto.prototype, "mobile", 2);
6377
6588
  __decorateClass([
6378
- IsNotEmpty44({ message: "Please enter password." }),
6589
+ IsNotEmpty45({ message: "Please enter password." }),
6379
6590
  MinLength12(6),
6380
- MaxLength15(32),
6591
+ MaxLength16(32),
6381
6592
  Matches9(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
6382
6593
  message: "Password must include letters, numbers and symbols."
6383
6594
  })
6384
6595
  ], CreateFreelancerDto.prototype, "password", 2);
6385
6596
  __decorateClass([
6386
- IsNotEmpty44({ message: "Please enter confirm password." }),
6597
+ IsNotEmpty45({ message: "Please enter confirm password." }),
6387
6598
  Match("confirmPassword", { message: "Passwords do not match" })
6388
6599
  ], CreateFreelancerDto.prototype, "confirmPassword", 2);
6389
6600
  __decorateClass([
6390
6601
  IsBoolean10({ message: "Developer flag must be true or false" }),
6391
- Type7(() => Boolean)
6602
+ Type8(() => Boolean)
6392
6603
  ], CreateFreelancerDto.prototype, "developer", 2);
6393
6604
  __decorateClass([
6394
- IsEnum16(NatureOfWorkEnum, {
6605
+ IsEnum17(NatureOfWorkEnum, {
6395
6606
  message: `Nature of work must be one of: ${Object.values(
6396
6607
  NatureOfWorkEnum
6397
6608
  ).join(", ")}`
6398
6609
  })
6399
6610
  ], CreateFreelancerDto.prototype, "natureOfWork", 2);
6400
6611
  __decorateClass([
6401
- IsNumber4({}, { message: "Expected hourly compensation must be a number" }),
6402
- Min3(0, { message: "Expected hourly compensation must be 0 or more" }),
6403
- Type7(() => Number)
6612
+ IsNumber5({}, { message: "Expected hourly compensation must be a number" }),
6613
+ Min4(0, { message: "Expected hourly compensation must be 0 or more" }),
6614
+ Type8(() => Number)
6404
6615
  ], CreateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
6405
6616
  __decorateClass([
6406
- IsEnum16(ModeOfWorkEnum, {
6617
+ IsEnum17(ModeOfWorkEnum, {
6407
6618
  message: `Mode of work must be one of: ${Object.values(ModeOfWorkEnum).join(
6408
6619
  ", "
6409
6620
  )}`
@@ -6411,50 +6622,50 @@ __decorateClass([
6411
6622
  ], CreateFreelancerDto.prototype, "modeOfWork", 2);
6412
6623
  __decorateClass([
6413
6624
  IsBoolean10({ message: "isImmediateJoiner must be true or false" }),
6414
- Type7(() => Boolean)
6625
+ Type8(() => Boolean)
6415
6626
  ], CreateFreelancerDto.prototype, "isImmediateJoiner", 2);
6416
6627
  __decorateClass([
6417
- ValidateIf6((o) => o.isImmediateJoiner === false),
6418
- IsNotEmpty44({ message: "Please enter availability to join." })
6628
+ ValidateIf7((o) => o.isImmediateJoiner === false),
6629
+ IsNotEmpty45({ message: "Please enter availability to join." })
6419
6630
  ], CreateFreelancerDto.prototype, "availabilityToJoin", 2);
6420
6631
  __decorateClass([
6421
- IsOptional26(),
6632
+ IsOptional27(),
6422
6633
  IsUrl3({}, { message: "LinkedIn profile link must be a valid URL" })
6423
6634
  ], CreateFreelancerDto.prototype, "linkedinProfileLink", 2);
6424
6635
  __decorateClass([
6425
- IsOptional26(),
6426
- IsString27({ message: "Kaggle profile link must be a string" })
6636
+ IsOptional27(),
6637
+ IsString28({ message: "Kaggle profile link must be a string" })
6427
6638
  ], CreateFreelancerDto.prototype, "kaggleProfileLink", 2);
6428
6639
  __decorateClass([
6429
- IsOptional26(),
6640
+ IsOptional27(),
6430
6641
  IsUrl3({}, { message: "GitHub profile link must be a valid URL" })
6431
6642
  ], CreateFreelancerDto.prototype, "githubProfileLink", 2);
6432
6643
  __decorateClass([
6433
- IsOptional26(),
6644
+ IsOptional27(),
6434
6645
  IsUrl3({}, { message: "StackOverflow profile link must be a valid URL" })
6435
6646
  ], CreateFreelancerDto.prototype, "stackOverflowProfileLink", 2);
6436
6647
  __decorateClass([
6437
- IsOptional26(),
6648
+ IsOptional27(),
6438
6649
  IsUrl3({}, { message: "Portfolio link must be a valid URL" })
6439
6650
  ], CreateFreelancerDto.prototype, "portfolioLink", 2);
6440
6651
 
6441
6652
  // src/modules/freelancer-admin/dto/update-freelancer.dto.ts
6442
6653
  import {
6443
- IsString as IsString28,
6654
+ IsString as IsString29,
6444
6655
  IsEmail as IsEmail11,
6445
6656
  IsBoolean as IsBoolean11,
6446
- IsOptional as IsOptional27,
6447
- IsEnum as IsEnum17,
6448
- IsNumber as IsNumber5,
6657
+ IsOptional as IsOptional28,
6658
+ IsEnum as IsEnum18,
6659
+ IsNumber as IsNumber6,
6449
6660
  IsUrl as IsUrl4,
6450
- Min as Min4,
6451
- MaxLength as MaxLength16,
6661
+ Min as Min5,
6662
+ MaxLength as MaxLength17,
6452
6663
  MinLength as MinLength13,
6453
6664
  Matches as Matches10,
6454
- IsNotEmpty as IsNotEmpty45,
6455
- ValidateIf as ValidateIf7
6665
+ IsNotEmpty as IsNotEmpty46,
6666
+ ValidateIf as ValidateIf8
6456
6667
  } from "class-validator";
6457
- import { Transform as Transform2, Type as Type8 } from "class-transformer";
6668
+ import { Transform as Transform2, Type as Type9 } from "class-transformer";
6458
6669
  var NatureOfWorkEnum2 = /* @__PURE__ */ ((NatureOfWorkEnum3) => {
6459
6670
  NatureOfWorkEnum3["FULLTIME"] = "FULLTIME";
6460
6671
  NatureOfWorkEnum3["PARTTIME"] = "PARTTIME";
@@ -6470,85 +6681,85 @@ var ModeOfWorkEnum2 = /* @__PURE__ */ ((ModeOfWorkEnum3) => {
6470
6681
  var UpdateFreelancerDto = class {
6471
6682
  };
6472
6683
  __decorateClass([
6473
- IsOptional27(),
6474
- IsString28({ message: "Full name must be a string" }),
6475
- MaxLength16(100, { message: "Full name must not exceed 100 characters" })
6684
+ IsOptional28(),
6685
+ IsString29({ message: "Full name must be a string" }),
6686
+ MaxLength17(100, { message: "Full name must not exceed 100 characters" })
6476
6687
  ], UpdateFreelancerDto.prototype, "fullName", 2);
6477
6688
  __decorateClass([
6478
- IsOptional27(),
6689
+ IsOptional28(),
6479
6690
  IsEmail11({}, { message: "Invalid email address" })
6480
6691
  ], UpdateFreelancerDto.prototype, "email", 2);
6481
6692
  __decorateClass([
6482
- IsOptional27(),
6483
- IsString28({ message: "Mobile code must be a string (e.g., +1)" })
6693
+ IsOptional28(),
6694
+ IsString29({ message: "Mobile code must be a string (e.g., +1)" })
6484
6695
  ], UpdateFreelancerDto.prototype, "mobileCode", 2);
6485
6696
  __decorateClass([
6486
- IsOptional27(),
6487
- IsString28({ message: "Mobile must be a string (e.g., 1243253534)" })
6697
+ IsOptional28(),
6698
+ IsString29({ message: "Mobile must be a string (e.g., 1243253534)" })
6488
6699
  ], UpdateFreelancerDto.prototype, "mobile", 2);
6489
6700
  __decorateClass([
6490
- IsOptional27(),
6701
+ IsOptional28(),
6491
6702
  Transform2(({ value }) => value === null || value === "" ? void 0 : value),
6492
6703
  MinLength13(6, { message: "Password must be at least 6 characters." }),
6493
- MaxLength16(32, { message: "Password must not exceed 32 characters." }),
6704
+ MaxLength17(32, { message: "Password must not exceed 32 characters." }),
6494
6705
  Matches10(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
6495
6706
  message: "Password must include letters, numbers and symbols."
6496
6707
  })
6497
6708
  ], UpdateFreelancerDto.prototype, "password", 2);
6498
6709
  __decorateClass([
6499
- IsOptional27(),
6710
+ IsOptional28(),
6500
6711
  IsBoolean11({ message: "Developer flag must be true or false" }),
6501
- Type8(() => Boolean)
6712
+ Type9(() => Boolean)
6502
6713
  ], UpdateFreelancerDto.prototype, "developer", 2);
6503
6714
  __decorateClass([
6504
- IsOptional27(),
6505
- IsEnum17(NatureOfWorkEnum2, {
6715
+ IsOptional28(),
6716
+ IsEnum18(NatureOfWorkEnum2, {
6506
6717
  message: `Nature of work must be one of: ${Object.values(
6507
6718
  NatureOfWorkEnum2
6508
6719
  ).join(", ")}`
6509
6720
  })
6510
6721
  ], UpdateFreelancerDto.prototype, "natureOfWork", 2);
6511
6722
  __decorateClass([
6512
- IsOptional27(),
6513
- IsNumber5({}, { message: "Expected hourly compensation must be a number" }),
6514
- Min4(0, { message: "Expected hourly compensation must be 0 or more" }),
6515
- Type8(() => Number)
6723
+ IsOptional28(),
6724
+ IsNumber6({}, { message: "Expected hourly compensation must be a number" }),
6725
+ Min5(0, { message: "Expected hourly compensation must be 0 or more" }),
6726
+ Type9(() => Number)
6516
6727
  ], UpdateFreelancerDto.prototype, "expectedHourlyCompensation", 2);
6517
6728
  __decorateClass([
6518
- IsOptional27(),
6519
- IsEnum17(ModeOfWorkEnum2, {
6729
+ IsOptional28(),
6730
+ IsEnum18(ModeOfWorkEnum2, {
6520
6731
  message: `Mode of work must be one of: ${Object.values(ModeOfWorkEnum2).join(
6521
6732
  ", "
6522
6733
  )}`
6523
6734
  })
6524
6735
  ], UpdateFreelancerDto.prototype, "modeOfWork", 2);
6525
6736
  __decorateClass([
6526
- IsOptional27(),
6737
+ IsOptional28(),
6527
6738
  IsBoolean11({ message: "isImmediateJoiner must be true or false" }),
6528
- Type8(() => Boolean)
6739
+ Type9(() => Boolean)
6529
6740
  ], UpdateFreelancerDto.prototype, "isImmediateJoiner", 2);
6530
6741
  __decorateClass([
6531
- ValidateIf7((o) => o.isImmediateJoiner === false),
6532
- IsNotEmpty45({ message: "Please enter availability to join." })
6742
+ ValidateIf8((o) => o.isImmediateJoiner === false),
6743
+ IsNotEmpty46({ message: "Please enter availability to join." })
6533
6744
  ], UpdateFreelancerDto.prototype, "availabilityToJoin", 2);
6534
6745
  __decorateClass([
6535
- IsOptional27(),
6746
+ IsOptional28(),
6536
6747
  IsUrl4({}, { message: "LinkedIn profile link must be a valid URL" })
6537
6748
  ], UpdateFreelancerDto.prototype, "linkedinProfileLink", 2);
6538
6749
  __decorateClass([
6539
- IsOptional27(),
6540
- IsString28({ message: "Kaggle profile link must be a string" })
6750
+ IsOptional28(),
6751
+ IsString29({ message: "Kaggle profile link must be a string" })
6541
6752
  ], UpdateFreelancerDto.prototype, "kaggleProfileLink", 2);
6542
6753
  __decorateClass([
6543
- IsOptional27(),
6754
+ IsOptional28(),
6544
6755
  IsUrl4({}, { message: "GitHub profile link must be a valid URL" })
6545
6756
  ], UpdateFreelancerDto.prototype, "githubProfileLink", 2);
6546
6757
  __decorateClass([
6547
- IsOptional27(),
6758
+ IsOptional28(),
6548
6759
  IsUrl4({}, { message: "StackOverflow profile link must be a valid URL" })
6549
6760
  ], UpdateFreelancerDto.prototype, "stackOverflowProfileLink", 2);
6550
6761
  __decorateClass([
6551
- IsOptional27(),
6762
+ IsOptional28(),
6552
6763
  IsUrl4({}, { message: "Portfolio link must be a valid URL" })
6553
6764
  ], UpdateFreelancerDto.prototype, "portfolioLink", 2);
6554
6765
 
@@ -6567,14 +6778,14 @@ var CLIENT_ADMIN_PATTERNS = {
6567
6778
 
6568
6779
  // src/modules/client-admin/dto/create-client.dto.ts
6569
6780
  import {
6570
- IsNotEmpty as IsNotEmpty46,
6781
+ IsNotEmpty as IsNotEmpty47,
6571
6782
  IsEmail as IsEmail12,
6572
- IsOptional as IsOptional28,
6573
- IsString as IsString29,
6574
- IsArray as IsArray9,
6783
+ IsOptional as IsOptional29,
6784
+ IsString as IsString30,
6785
+ IsArray as IsArray10,
6575
6786
  MinLength as MinLength14,
6576
- MaxLength as MaxLength17,
6577
- IsEnum as IsEnum18,
6787
+ MaxLength as MaxLength18,
6788
+ IsEnum as IsEnum19,
6578
6789
  Matches as Matches11
6579
6790
  } from "class-validator";
6580
6791
  var CreateClientHiringModeEnum = /* @__PURE__ */ ((CreateClientHiringModeEnum2) => {
@@ -6592,78 +6803,78 @@ var CreateClientHiringTypeEnum = /* @__PURE__ */ ((CreateClientHiringTypeEnum2)
6592
6803
  var CreateClientDto = class {
6593
6804
  };
6594
6805
  __decorateClass([
6595
- IsNotEmpty46({ message: "Please enter first name." }),
6596
- IsString29()
6806
+ IsNotEmpty47({ message: "Please enter first name." }),
6807
+ IsString30()
6597
6808
  ], CreateClientDto.prototype, "firstName", 2);
6598
6809
  __decorateClass([
6599
- IsNotEmpty46({ message: "Please enter last name." }),
6600
- IsString29()
6810
+ IsNotEmpty47({ message: "Please enter last name." }),
6811
+ IsString30()
6601
6812
  ], CreateClientDto.prototype, "lastName", 2);
6602
6813
  __decorateClass([
6603
- IsNotEmpty46({ message: "Please enter email." }),
6814
+ IsNotEmpty47({ message: "Please enter email." }),
6604
6815
  IsEmail12()
6605
6816
  ], CreateClientDto.prototype, "email", 2);
6606
6817
  __decorateClass([
6607
- IsNotEmpty46({ message: "Please enter password." }),
6818
+ IsNotEmpty47({ message: "Please enter password." }),
6608
6819
  MinLength14(6),
6609
- MaxLength17(32),
6820
+ MaxLength18(32),
6610
6821
  Matches11(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
6611
6822
  message: "Password must include letters, numbers and symbols."
6612
6823
  })
6613
6824
  ], CreateClientDto.prototype, "password", 2);
6614
6825
  __decorateClass([
6615
- IsNotEmpty46({ message: "Please enter confirm password." }),
6826
+ IsNotEmpty47({ message: "Please enter confirm password." }),
6616
6827
  Match("confirmPassword", { message: "Passwords do not match" })
6617
6828
  ], CreateClientDto.prototype, "confirmPassword", 2);
6618
6829
  __decorateClass([
6619
- IsNotEmpty46({ message: "Please enter company name." }),
6620
- IsString29()
6830
+ IsNotEmpty47({ message: "Please enter company name." }),
6831
+ IsString30()
6621
6832
  ], CreateClientDto.prototype, "companyName", 2);
6622
6833
  __decorateClass([
6623
- IsArray9({ message: "Skills should be an array." }),
6624
- IsNotEmpty46({ message: "Please enter skills." })
6834
+ IsArray10({ message: "Skills should be an array." }),
6835
+ IsNotEmpty47({ message: "Please enter skills." })
6625
6836
  ], CreateClientDto.prototype, "skills", 2);
6626
6837
  __decorateClass([
6627
- IsNotEmpty46({ message: "Please specify required freelancer count." }),
6628
- IsString29()
6838
+ IsNotEmpty47({ message: "Please specify required freelancer count." }),
6839
+ IsString30()
6629
6840
  ], CreateClientDto.prototype, "requiredFreelancer", 2);
6630
6841
  __decorateClass([
6631
- IsNotEmpty46({ message: "Please specify the kind of hiring." }),
6632
- IsEnum18(CreateClientHiringTypeEnum)
6842
+ IsNotEmpty47({ message: "Please specify the kind of hiring." }),
6843
+ IsEnum19(CreateClientHiringTypeEnum)
6633
6844
  ], CreateClientDto.prototype, "kindOfHiring", 2);
6634
6845
  __decorateClass([
6635
- IsNotEmpty46({ message: "Please specify the mode of hire." }),
6636
- IsEnum18(CreateClientHiringModeEnum)
6846
+ IsNotEmpty47({ message: "Please specify the mode of hire." }),
6847
+ IsEnum19(CreateClientHiringModeEnum)
6637
6848
  ], CreateClientDto.prototype, "modeOfHire", 2);
6638
6849
  __decorateClass([
6639
- IsNotEmpty46({ message: "Please let us know how you found us." }),
6640
- IsString29()
6850
+ IsNotEmpty47({ message: "Please let us know how you found us." }),
6851
+ IsString30()
6641
6852
  ], CreateClientDto.prototype, "foundUsOn", 2);
6642
6853
  __decorateClass([
6643
- IsOptional28(),
6644
- IsString29()
6854
+ IsOptional29(),
6855
+ IsString30()
6645
6856
  ], CreateClientDto.prototype, "foundUsOnDetail", 2);
6646
6857
 
6647
6858
  // src/modules/client-admin/dto/update-client-status.dto.ts
6648
- import { IsString as IsString30, IsNotEmpty as IsNotEmpty47 } from "class-validator";
6859
+ import { IsString as IsString31, IsNotEmpty as IsNotEmpty48 } from "class-validator";
6649
6860
  var UpdateClientAccountStatusDto = class {
6650
6861
  };
6651
6862
  __decorateClass([
6652
- IsNotEmpty47({ message: "Please enter account status." }),
6653
- IsString30()
6863
+ IsNotEmpty48({ message: "Please enter account status." }),
6864
+ IsString31()
6654
6865
  ], UpdateClientAccountStatusDto.prototype, "accountStatus", 2);
6655
6866
 
6656
6867
  // src/modules/client-admin/dto/update-client.dto.ts
6657
6868
  import { Transform as Transform3 } from "class-transformer";
6658
6869
  import {
6659
- IsNotEmpty as IsNotEmpty48,
6870
+ IsNotEmpty as IsNotEmpty49,
6660
6871
  IsEmail as IsEmail13,
6661
- IsOptional as IsOptional29,
6662
- IsString as IsString31,
6663
- IsArray as IsArray10,
6872
+ IsOptional as IsOptional30,
6873
+ IsString as IsString32,
6874
+ IsArray as IsArray11,
6664
6875
  MinLength as MinLength15,
6665
- MaxLength as MaxLength18,
6666
- IsEnum as IsEnum19,
6876
+ MaxLength as MaxLength19,
6877
+ IsEnum as IsEnum20,
6667
6878
  Matches as Matches12
6668
6879
  } from "class-validator";
6669
6880
  var UpdateClientHiringModeEnum = /* @__PURE__ */ ((UpdateClientHiringModeEnum2) => {
@@ -6681,53 +6892,53 @@ var UpdateClientHiringTypeEnum = /* @__PURE__ */ ((UpdateClientHiringTypeEnum2)
6681
6892
  var UpdateClientDto = class {
6682
6893
  };
6683
6894
  __decorateClass([
6684
- IsNotEmpty48({ message: "Please enter first name." }),
6685
- IsString31()
6895
+ IsNotEmpty49({ message: "Please enter first name." }),
6896
+ IsString32()
6686
6897
  ], UpdateClientDto.prototype, "firstName", 2);
6687
6898
  __decorateClass([
6688
- IsNotEmpty48({ message: "Please enter last name." }),
6689
- IsString31()
6899
+ IsNotEmpty49({ message: "Please enter last name." }),
6900
+ IsString32()
6690
6901
  ], UpdateClientDto.prototype, "lastName", 2);
6691
6902
  __decorateClass([
6692
- IsNotEmpty48({ message: "Please enter email." }),
6903
+ IsNotEmpty49({ message: "Please enter email." }),
6693
6904
  IsEmail13()
6694
6905
  ], UpdateClientDto.prototype, "email", 2);
6695
6906
  __decorateClass([
6696
- IsOptional29(),
6907
+ IsOptional30(),
6697
6908
  Transform3(({ value }) => value === null || value === "" ? void 0 : value),
6698
6909
  MinLength15(6, { message: "Password must be at least 6 characters." }),
6699
- MaxLength18(32, { message: "Password must not exceed 32 characters." }),
6910
+ MaxLength19(32, { message: "Password must not exceed 32 characters." }),
6700
6911
  Matches12(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
6701
6912
  message: "Password must include letters, numbers and symbols."
6702
6913
  })
6703
6914
  ], UpdateClientDto.prototype, "password", 2);
6704
6915
  __decorateClass([
6705
- IsNotEmpty48({ message: "Please enter company name." }),
6706
- IsString31()
6916
+ IsNotEmpty49({ message: "Please enter company name." }),
6917
+ IsString32()
6707
6918
  ], UpdateClientDto.prototype, "companyName", 2);
6708
6919
  __decorateClass([
6709
- IsArray10({ message: "Skills should be an array." }),
6710
- IsNotEmpty48({ message: "Please enter skills." })
6920
+ IsArray11({ message: "Skills should be an array." }),
6921
+ IsNotEmpty49({ message: "Please enter skills." })
6711
6922
  ], UpdateClientDto.prototype, "skills", 2);
6712
6923
  __decorateClass([
6713
- IsNotEmpty48({ message: "Please specify required freelancer count." }),
6714
- IsString31()
6924
+ IsNotEmpty49({ message: "Please specify required freelancer count." }),
6925
+ IsString32()
6715
6926
  ], UpdateClientDto.prototype, "requiredFreelancer", 2);
6716
6927
  __decorateClass([
6717
- IsNotEmpty48({ message: "Please specify the kind of hiring." }),
6718
- IsEnum19(UpdateClientHiringTypeEnum)
6928
+ IsNotEmpty49({ message: "Please specify the kind of hiring." }),
6929
+ IsEnum20(UpdateClientHiringTypeEnum)
6719
6930
  ], UpdateClientDto.prototype, "kindOfHiring", 2);
6720
6931
  __decorateClass([
6721
- IsNotEmpty48({ message: "Please specify the mode of hire." }),
6722
- IsEnum19(UpdateClientHiringModeEnum)
6932
+ IsNotEmpty49({ message: "Please specify the mode of hire." }),
6933
+ IsEnum20(UpdateClientHiringModeEnum)
6723
6934
  ], UpdateClientDto.prototype, "modeOfHire", 2);
6724
6935
  __decorateClass([
6725
- IsNotEmpty48({ message: "Please let us know how you found us." }),
6726
- IsString31()
6936
+ IsNotEmpty49({ message: "Please let us know how you found us." }),
6937
+ IsString32()
6727
6938
  ], UpdateClientDto.prototype, "foundUsOn", 2);
6728
6939
  __decorateClass([
6729
- IsOptional29(),
6730
- IsString31()
6940
+ IsOptional30(),
6941
+ IsString32()
6731
6942
  ], UpdateClientDto.prototype, "foundUsOnDetail", 2);
6732
6943
 
6733
6944
  // src/modules/user/freelancer-declaration/pattern/pattern.ts
@@ -6737,7 +6948,7 @@ var FREELANCER_DECLARATION_PATTERN = {
6737
6948
  };
6738
6949
 
6739
6950
  // src/modules/user/freelancer-declaration/dto/freelancer-declaration.dto.ts
6740
- import { IsOptional as IsOptional30, IsEnum as IsEnum20, IsString as IsString32, IsNotEmpty as IsNotEmpty49, IsIn as IsIn3 } from "class-validator";
6951
+ import { IsOptional as IsOptional31, IsEnum as IsEnum21, IsString as IsString33, IsNotEmpty as IsNotEmpty50, IsIn as IsIn3 } from "class-validator";
6741
6952
  var DocumentTypeEnum = /* @__PURE__ */ ((DocumentTypeEnum2) => {
6742
6953
  DocumentTypeEnum2["AADHAAR"] = "AADHAAR_CARD";
6743
6954
  DocumentTypeEnum2["PASSPORT"] = "PASSPORT";
@@ -6748,15 +6959,15 @@ var DocumentTypeEnum = /* @__PURE__ */ ((DocumentTypeEnum2) => {
6748
6959
  var FreelancerDeclarationDto = class {
6749
6960
  };
6750
6961
  __decorateClass([
6751
- IsOptional30(),
6752
- IsString32({ message: "UUID must be a string" })
6962
+ IsOptional31(),
6963
+ IsString33({ message: "UUID must be a string" })
6753
6964
  ], FreelancerDeclarationDto.prototype, "uuid", 2);
6754
6965
  __decorateClass([
6755
- IsEnum20(DocumentTypeEnum, { message: "Document type must be one of AADHAAR_CARD, PASSPORT, DRIVING_LICENSE, PAN_CARD" })
6966
+ IsEnum21(DocumentTypeEnum, { message: "Document type must be one of AADHAAR_CARD, PASSPORT, DRIVING_LICENSE, PAN_CARD" })
6756
6967
  ], FreelancerDeclarationDto.prototype, "documentType", 2);
6757
6968
  __decorateClass([
6758
- IsNotEmpty49({ message: "Please accept the declaration " }),
6759
- IsString32(),
6969
+ IsNotEmpty50({ message: "Please accept the declaration " }),
6970
+ IsString33(),
6760
6971
  IsIn3([
6761
6972
  "true"
6762
6973
  ])
@@ -6772,35 +6983,35 @@ var CMS_PATTERNS = {
6772
6983
  };
6773
6984
 
6774
6985
  // src/modules/cms/dto/create-cms.dto.ts
6775
- import { IsBoolean as IsBoolean12, IsNotEmpty as IsNotEmpty50, IsOptional as IsOptional31 } from "class-validator";
6986
+ import { IsBoolean as IsBoolean12, IsNotEmpty as IsNotEmpty51, IsOptional as IsOptional32 } from "class-validator";
6776
6987
  var CreateCmsDto = class {
6777
6988
  };
6778
6989
  __decorateClass([
6779
- IsNotEmpty50({ message: "Please enter name." })
6990
+ IsNotEmpty51({ message: "Please enter name." })
6780
6991
  ], CreateCmsDto.prototype, "title", 2);
6781
6992
  __decorateClass([
6782
- IsOptional31()
6993
+ IsOptional32()
6783
6994
  ], CreateCmsDto.prototype, "content", 2);
6784
6995
  __decorateClass([
6785
- IsOptional31(),
6996
+ IsOptional32(),
6786
6997
  IsBoolean12({ message: "Is active must be a boolean value" })
6787
6998
  ], CreateCmsDto.prototype, "isActive", 2);
6788
6999
 
6789
7000
  // src/modules/cms/dto/update-cms.dto.ts
6790
- import { IsBoolean as IsBoolean13, IsNotEmpty as IsNotEmpty51, IsOptional as IsOptional32 } from "class-validator";
7001
+ import { IsBoolean as IsBoolean13, IsNotEmpty as IsNotEmpty52, IsOptional as IsOptional33 } from "class-validator";
6791
7002
  var UpdateCmsDto = class {
6792
7003
  };
6793
7004
  __decorateClass([
6794
- IsOptional32()
7005
+ IsOptional33()
6795
7006
  ], UpdateCmsDto.prototype, "uuid", 2);
6796
7007
  __decorateClass([
6797
- IsNotEmpty51({ message: "Please enter name." })
7008
+ IsNotEmpty52({ message: "Please enter name." })
6798
7009
  ], UpdateCmsDto.prototype, "title", 2);
6799
7010
  __decorateClass([
6800
- IsOptional32()
7011
+ IsOptional33()
6801
7012
  ], UpdateCmsDto.prototype, "content", 2);
6802
7013
  __decorateClass([
6803
- IsOptional32(),
7014
+ IsOptional33(),
6804
7015
  IsBoolean13({ message: "Is active must be a boolean value" })
6805
7016
  ], UpdateCmsDto.prototype, "isActive", 2);
6806
7017
 
@@ -6828,18 +7039,18 @@ var ADMIN_JOB_PATTERN = {
6828
7039
  };
6829
7040
 
6830
7041
  // src/modules/job-admin/dto/admin-create-job-information.dto.ts
6831
- import { Type as Type9 } from "class-transformer";
7042
+ import { Type as Type10 } from "class-transformer";
6832
7043
  import {
6833
- IsString as IsString33,
6834
- IsEnum as IsEnum21,
7044
+ IsString as IsString34,
7045
+ IsEnum as IsEnum22,
6835
7046
  IsInt as IsInt7,
6836
- IsOptional as IsOptional33,
6837
- IsArray as IsArray11,
7047
+ IsOptional as IsOptional34,
7048
+ IsArray as IsArray12,
6838
7049
  IsDateString as IsDateString4,
6839
- IsNotEmpty as IsNotEmpty52,
6840
- ArrayNotEmpty as ArrayNotEmpty6,
6841
- Min as Min5,
6842
- IsNumber as IsNumber6
7050
+ IsNotEmpty as IsNotEmpty53,
7051
+ ArrayNotEmpty as ArrayNotEmpty7,
7052
+ Min as Min6,
7053
+ IsNumber as IsNumber7
6843
7054
  } from "class-validator";
6844
7055
  var JobLocationEnumDto = /* @__PURE__ */ ((JobLocationEnumDto2) => {
6845
7056
  JobLocationEnumDto2["ONSITE"] = "ONSITE";
@@ -6856,55 +7067,55 @@ var TypeOfEmploymentEnumDto = /* @__PURE__ */ ((TypeOfEmploymentEnumDto2) => {
6856
7067
  var AdminCreateJobInformationDto = class {
6857
7068
  };
6858
7069
  __decorateClass([
6859
- IsString33({ message: "Job role must be a string." }),
6860
- IsNotEmpty52({ message: "Job role is required." })
7070
+ IsString34({ message: "Job role must be a string." }),
7071
+ IsNotEmpty53({ message: "Job role is required." })
6861
7072
  ], AdminCreateJobInformationDto.prototype, "jobRole", 2);
6862
7073
  __decorateClass([
6863
- IsOptional33(),
6864
- IsString33({ message: "Note must be a string." })
7074
+ IsOptional34(),
7075
+ IsString34({ message: "Note must be a string." })
6865
7076
  ], AdminCreateJobInformationDto.prototype, "note", 2);
6866
7077
  __decorateClass([
6867
- IsArray11({ message: "Skills must be an array of skill names." }),
6868
- ArrayNotEmpty6({ message: "At least one skill must be provided." }),
6869
- IsString33({ each: true, message: "Each skill must be a valid string." })
7078
+ IsArray12({ message: "Skills must be an array of skill names." }),
7079
+ ArrayNotEmpty7({ message: "At least one skill must be provided." }),
7080
+ IsString34({ each: true, message: "Each skill must be a valid string." })
6870
7081
  ], AdminCreateJobInformationDto.prototype, "skills", 2);
6871
7082
  __decorateClass([
6872
7083
  IsInt7({ message: "Openings must be a valid integer." }),
6873
- Min5(1, { message: "There must be at least one opening." })
7084
+ Min6(1, { message: "There must be at least one opening." })
6874
7085
  ], AdminCreateJobInformationDto.prototype, "openings", 2);
6875
7086
  __decorateClass([
6876
- IsEnum21(JobLocationEnumDto, {
7087
+ IsEnum22(JobLocationEnumDto, {
6877
7088
  message: `Location must be one of: ${Object.values(JobLocationEnumDto).join(
6878
7089
  ", "
6879
7090
  )}.`
6880
7091
  })
6881
7092
  ], AdminCreateJobInformationDto.prototype, "location", 2);
6882
7093
  __decorateClass([
6883
- IsEnum21(TypeOfEmploymentEnumDto, {
7094
+ IsEnum22(TypeOfEmploymentEnumDto, {
6884
7095
  message: `Type of employment must be one of: ${Object.values(
6885
7096
  TypeOfEmploymentEnumDto
6886
7097
  ).join(", ")}.`
6887
7098
  })
6888
7099
  ], AdminCreateJobInformationDto.prototype, "typeOfEmployment", 2);
6889
7100
  __decorateClass([
6890
- IsString33({ message: "Onboarding Days must be a string." }),
6891
- IsNotEmpty52({ message: "Onboarding Days is required." })
7101
+ IsString34({ message: "Onboarding Days must be a string." }),
7102
+ IsNotEmpty53({ message: "Onboarding Days is required." })
6892
7103
  ], AdminCreateJobInformationDto.prototype, "onboardingTat", 2);
6893
7104
  __decorateClass([
6894
- IsString33({ message: "Communication skills must be a string." }),
6895
- IsNotEmpty52({ message: "Communication skills are required." })
7105
+ IsString34({ message: "Communication skills must be a string." }),
7106
+ IsNotEmpty53({ message: "Communication skills are required." })
6896
7107
  ], AdminCreateJobInformationDto.prototype, "candidateCommunicationSkills", 2);
6897
7108
  __decorateClass([
6898
- IsString33({ message: "Currency must be a string." }),
6899
- IsNotEmpty52({ message: "Currency is required." })
7109
+ IsString34({ message: "Currency must be a string." }),
7110
+ IsNotEmpty53({ message: "Currency is required." })
6900
7111
  ], AdminCreateJobInformationDto.prototype, "currency", 2);
6901
7112
  __decorateClass([
6902
- Type9(() => Number),
6903
- IsNumber6({}, { message: "Expected salary from must be a number." })
7113
+ Type10(() => Number),
7114
+ IsNumber7({}, { message: "Expected salary from must be a number." })
6904
7115
  ], AdminCreateJobInformationDto.prototype, "expectedSalaryFrom", 2);
6905
7116
  __decorateClass([
6906
- Type9(() => Number),
6907
- IsNumber6({}, { message: "Expected salary to must be a number." })
7117
+ Type10(() => Number),
7118
+ IsNumber7({}, { message: "Expected salary to must be a number." })
6908
7119
  ], AdminCreateJobInformationDto.prototype, "expectedSalaryTo", 2);
6909
7120
  __decorateClass([
6910
7121
  IsDateString4(
@@ -6919,8 +7130,8 @@ __decorateClass([
6919
7130
  )
6920
7131
  ], AdminCreateJobInformationDto.prototype, "tentativeEndDate", 2);
6921
7132
  __decorateClass([
6922
- IsOptional33(),
6923
- IsString33({ message: "Additional comment must be a string." })
7133
+ IsOptional34(),
7134
+ IsString34({ message: "Additional comment must be a string." })
6924
7135
  ], AdminCreateJobInformationDto.prototype, "additionalComment", 2);
6925
7136
  __decorateClass([
6926
7137
  IsInt7({ message: "Country ID must be a valid integer." })
@@ -6936,18 +7147,18 @@ __decorateClass([
6936
7147
  ], AdminCreateJobInformationDto.prototype, "clientId", 2);
6937
7148
 
6938
7149
  // src/modules/job-admin/dto/admin-update-job-information.dto.ts
6939
- import { Type as Type10 } from "class-transformer";
7150
+ import { Type as Type11 } from "class-transformer";
6940
7151
  import {
6941
- IsString as IsString34,
6942
- IsEnum as IsEnum22,
7152
+ IsString as IsString35,
7153
+ IsEnum as IsEnum23,
6943
7154
  IsInt as IsInt8,
6944
- IsOptional as IsOptional34,
6945
- IsArray as IsArray12,
7155
+ IsOptional as IsOptional35,
7156
+ IsArray as IsArray13,
6946
7157
  IsDateString as IsDateString5,
6947
- IsNotEmpty as IsNotEmpty53,
6948
- ArrayNotEmpty as ArrayNotEmpty7,
6949
- Min as Min6,
6950
- IsNumber as IsNumber7
7158
+ IsNotEmpty as IsNotEmpty54,
7159
+ ArrayNotEmpty as ArrayNotEmpty8,
7160
+ Min as Min7,
7161
+ IsNumber as IsNumber8
6951
7162
  } from "class-validator";
6952
7163
  var JobLocationEnums = /* @__PURE__ */ ((JobLocationEnums2) => {
6953
7164
  JobLocationEnums2["ONSITE"] = "ONSITE";
@@ -6964,55 +7175,55 @@ var TypeOfEmploymentEnums = /* @__PURE__ */ ((TypeOfEmploymentEnums2) => {
6964
7175
  var AdminUpdateJobInformationDto = class {
6965
7176
  };
6966
7177
  __decorateClass([
6967
- IsString34({ message: "Job role must be a string." }),
6968
- IsNotEmpty53({ message: "Job role is required." })
7178
+ IsString35({ message: "Job role must be a string." }),
7179
+ IsNotEmpty54({ message: "Job role is required." })
6969
7180
  ], AdminUpdateJobInformationDto.prototype, "jobRole", 2);
6970
7181
  __decorateClass([
6971
- IsOptional34(),
6972
- IsString34({ message: "Note must be a string." })
7182
+ IsOptional35(),
7183
+ IsString35({ message: "Note must be a string." })
6973
7184
  ], AdminUpdateJobInformationDto.prototype, "note", 2);
6974
7185
  __decorateClass([
6975
- IsArray12({ message: "Skills must be an array of skill names." }),
6976
- ArrayNotEmpty7({ message: "At least one skill must be provided." }),
6977
- IsString34({ each: true, message: "Each skill must be a valid string." })
7186
+ IsArray13({ message: "Skills must be an array of skill names." }),
7187
+ ArrayNotEmpty8({ message: "At least one skill must be provided." }),
7188
+ IsString35({ each: true, message: "Each skill must be a valid string." })
6978
7189
  ], AdminUpdateJobInformationDto.prototype, "skills", 2);
6979
7190
  __decorateClass([
6980
7191
  IsInt8({ message: "Openings must be a valid integer." }),
6981
- Min6(1, { message: "There must be at least one opening." })
7192
+ Min7(1, { message: "There must be at least one opening." })
6982
7193
  ], AdminUpdateJobInformationDto.prototype, "openings", 2);
6983
7194
  __decorateClass([
6984
- IsEnum22(JobLocationEnums, {
7195
+ IsEnum23(JobLocationEnums, {
6985
7196
  message: `Location must be one of: ${Object.values(JobLocationEnums).join(
6986
7197
  ", "
6987
7198
  )}.`
6988
7199
  })
6989
7200
  ], AdminUpdateJobInformationDto.prototype, "location", 2);
6990
7201
  __decorateClass([
6991
- IsEnum22(TypeOfEmploymentEnums, {
7202
+ IsEnum23(TypeOfEmploymentEnums, {
6992
7203
  message: `Type of employment must be one of: ${Object.values(
6993
7204
  TypeOfEmploymentEnums
6994
7205
  ).join(", ")}.`
6995
7206
  })
6996
7207
  ], AdminUpdateJobInformationDto.prototype, "typeOfEmployment", 2);
6997
7208
  __decorateClass([
6998
- IsString34({ message: "Onboarding Days must be a string." }),
6999
- IsNotEmpty53({ message: "Onboarding Days is required." })
7209
+ IsString35({ message: "Onboarding Days must be a string." }),
7210
+ IsNotEmpty54({ message: "Onboarding Days is required." })
7000
7211
  ], AdminUpdateJobInformationDto.prototype, "onboardingTat", 2);
7001
7212
  __decorateClass([
7002
- IsString34({ message: "Communication skills must be a string." }),
7003
- IsNotEmpty53({ message: "Communication skills are required." })
7213
+ IsString35({ message: "Communication skills must be a string." }),
7214
+ IsNotEmpty54({ message: "Communication skills are required." })
7004
7215
  ], AdminUpdateJobInformationDto.prototype, "candidateCommunicationSkills", 2);
7005
7216
  __decorateClass([
7006
- IsString34({ message: "Currency must be a string." }),
7007
- IsNotEmpty53({ message: "Currency is required." })
7217
+ IsString35({ message: "Currency must be a string." }),
7218
+ IsNotEmpty54({ message: "Currency is required." })
7008
7219
  ], AdminUpdateJobInformationDto.prototype, "currency", 2);
7009
7220
  __decorateClass([
7010
- Type10(() => Number),
7011
- IsNumber7({}, { message: "Expected salary from must be a number." })
7221
+ Type11(() => Number),
7222
+ IsNumber8({}, { message: "Expected salary from must be a number." })
7012
7223
  ], AdminUpdateJobInformationDto.prototype, "expectedSalaryFrom", 2);
7013
7224
  __decorateClass([
7014
- Type10(() => Number),
7015
- IsNumber7({}, { message: "Expected salary to must be a number." })
7225
+ Type11(() => Number),
7226
+ IsNumber8({}, { message: "Expected salary to must be a number." })
7016
7227
  ], AdminUpdateJobInformationDto.prototype, "expectedSalaryTo", 2);
7017
7228
  __decorateClass([
7018
7229
  IsDateString5(
@@ -7027,8 +7238,8 @@ __decorateClass([
7027
7238
  )
7028
7239
  ], AdminUpdateJobInformationDto.prototype, "tentativeEndDate", 2);
7029
7240
  __decorateClass([
7030
- IsOptional34(),
7031
- IsString34({ message: "Additional comment must be a string." })
7241
+ IsOptional35(),
7242
+ IsString35({ message: "Additional comment must be a string." })
7032
7243
  ], AdminUpdateJobInformationDto.prototype, "additionalComment", 2);
7033
7244
  __decorateClass([
7034
7245
  IsInt8({ message: "Country ID must be a valid integer." })
@@ -7050,7 +7261,7 @@ var LEAD_PATTERN = {
7050
7261
  };
7051
7262
 
7052
7263
  // src/modules/lead/dto/create-lead.dto.ts
7053
- import { IsString as IsString35, IsEmail as IsEmail14, IsOptional as IsOptional35, IsEnum as IsEnum23 } from "class-validator";
7264
+ import { IsString as IsString36, IsEmail as IsEmail14, IsOptional as IsOptional36, IsEnum as IsEnum24 } from "class-validator";
7054
7265
  var CategoryEmumDto = /* @__PURE__ */ ((CategoryEmumDto2) => {
7055
7266
  CategoryEmumDto2["BUSINESS"] = "BUSINESS";
7056
7267
  CategoryEmumDto2["FREELANCER"] = "FREELANCER";
@@ -7059,23 +7270,23 @@ var CategoryEmumDto = /* @__PURE__ */ ((CategoryEmumDto2) => {
7059
7270
  var CreateLeadDto = class {
7060
7271
  };
7061
7272
  __decorateClass([
7062
- IsString35({ message: "Name must be a string" })
7273
+ IsString36({ message: "Name must be a string" })
7063
7274
  ], CreateLeadDto.prototype, "name", 2);
7064
7275
  __decorateClass([
7065
7276
  IsEmail14({}, { message: "Invalid email address" })
7066
7277
  ], CreateLeadDto.prototype, "email", 2);
7067
7278
  __decorateClass([
7068
- IsString35({ message: "Mobile code must be a string (e.g., +1)" })
7279
+ IsString36({ message: "Mobile code must be a string (e.g., +1)" })
7069
7280
  ], CreateLeadDto.prototype, "mobileCode", 2);
7070
7281
  __decorateClass([
7071
- IsString35({ message: "Mobile must be a string (e.g., 1243253534)" })
7282
+ IsString36({ message: "Mobile must be a string (e.g., 1243253534)" })
7072
7283
  ], CreateLeadDto.prototype, "mobile", 2);
7073
7284
  __decorateClass([
7074
- IsOptional35(),
7075
- IsString35({ message: "Description must be a string" })
7285
+ IsOptional36(),
7286
+ IsString36({ message: "Description must be a string" })
7076
7287
  ], CreateLeadDto.prototype, "description", 2);
7077
7288
  __decorateClass([
7078
- IsEnum23(CategoryEmumDto, {
7289
+ IsEnum24(CategoryEmumDto, {
7079
7290
  message: `Type of category must be one of: ${Object.values(
7080
7291
  CategoryEmumDto
7081
7292
  ).join(", ")}`
@@ -7095,46 +7306,46 @@ var ADMIN_ROLE_PATTERN = {
7095
7306
  };
7096
7307
 
7097
7308
  // src/modules/admin-role/dto/create-admin-role.dto.ts
7098
- import { IsNotEmpty as IsNotEmpty54, IsOptional as IsOptional36, IsString as IsString36 } from "class-validator";
7309
+ import { IsNotEmpty as IsNotEmpty55, IsOptional as IsOptional37, IsString as IsString37 } from "class-validator";
7099
7310
  var CreateAdminRoleDto = class {
7100
7311
  };
7101
7312
  __decorateClass([
7102
- IsNotEmpty54({ message: "Please enter admin role name." }),
7103
- IsString36({ message: "Role name must be a string." })
7313
+ IsNotEmpty55({ message: "Please enter admin role name." }),
7314
+ IsString37({ message: "Role name must be a string." })
7104
7315
  ], CreateAdminRoleDto.prototype, "roleName", 2);
7105
7316
  __decorateClass([
7106
- IsOptional36(),
7107
- IsString36({ message: "Role description must be a string." })
7317
+ IsOptional37(),
7318
+ IsString37({ message: "Role description must be a string." })
7108
7319
  ], CreateAdminRoleDto.prototype, "roleDescription", 2);
7109
7320
 
7110
7321
  // src/modules/admin-role/dto/update-admin-role.dto.ts
7111
- import { IsBoolean as IsBoolean15, IsNotEmpty as IsNotEmpty55, IsOptional as IsOptional37, IsString as IsString37 } from "class-validator";
7322
+ import { IsBoolean as IsBoolean15, IsNotEmpty as IsNotEmpty56, IsOptional as IsOptional38, IsString as IsString38 } from "class-validator";
7112
7323
  var UpdateAdminRoleDto = class {
7113
7324
  };
7114
7325
  __decorateClass([
7115
- IsNotEmpty55({ message: "Please enter admin role name." }),
7116
- IsString37({ message: "Role name must be a string." })
7326
+ IsNotEmpty56({ message: "Please enter admin role name." }),
7327
+ IsString38({ message: "Role name must be a string." })
7117
7328
  ], UpdateAdminRoleDto.prototype, "roleName", 2);
7118
7329
  __decorateClass([
7119
- IsOptional37(),
7120
- IsString37({ message: "Role description must be a string." })
7330
+ IsOptional38(),
7331
+ IsString38({ message: "Role description must be a string." })
7121
7332
  ], UpdateAdminRoleDto.prototype, "roleDescription", 2);
7122
7333
  __decorateClass([
7123
- IsOptional37(),
7334
+ IsOptional38(),
7124
7335
  IsBoolean15({ message: "Is active must be a boolean value." })
7125
7336
  ], UpdateAdminRoleDto.prototype, "isActive", 2);
7126
7337
 
7127
7338
  // src/modules/admin-role/dto/attach-permissions-to-role.dto.ts
7128
- import { IsNotEmpty as IsNotEmpty56, IsString as IsString38 } from "class-validator";
7339
+ import { IsNotEmpty as IsNotEmpty57, IsString as IsString39 } from "class-validator";
7129
7340
  var AttachPermissionsToRoleDto = class {
7130
7341
  };
7131
7342
  __decorateClass([
7132
- IsNotEmpty56({ message: "Please enter admin role ID." }),
7133
- IsString38({ message: "Role ID must be a string." })
7343
+ IsNotEmpty57({ message: "Please enter admin role ID." }),
7344
+ IsString39({ message: "Role ID must be a string." })
7134
7345
  ], AttachPermissionsToRoleDto.prototype, "roleId", 2);
7135
7346
  __decorateClass([
7136
- IsNotEmpty56({ message: "Please enter permission IDs." }),
7137
- IsString38({ message: "Permission IDs must be a comma-separated string." })
7347
+ IsNotEmpty57({ message: "Please enter permission IDs." }),
7348
+ IsString39({ message: "Permission IDs must be a comma-separated string." })
7138
7349
  ], AttachPermissionsToRoleDto.prototype, "permissionIds", 2);
7139
7350
 
7140
7351
  // src/modules/admin-permission/pattern/pattern.ts
@@ -7161,17 +7372,17 @@ var CALENDLY_PATTERN = {
7161
7372
 
7162
7373
  // src/modules/interview/dto/interview-invite.dto.ts
7163
7374
  import {
7164
- IsString as IsString39,
7165
- IsNotEmpty as IsNotEmpty57,
7166
- IsArray as IsArray13,
7167
- ArrayNotEmpty as ArrayNotEmpty8,
7375
+ IsString as IsString40,
7376
+ IsNotEmpty as IsNotEmpty58,
7377
+ IsArray as IsArray14,
7378
+ ArrayNotEmpty as ArrayNotEmpty9,
7168
7379
  IsEmail as IsEmail15,
7169
7380
  IsUUID as IsUUID12,
7170
- IsEnum as IsEnum24,
7171
- ValidateIf as ValidateIf8,
7172
- ValidateNested as ValidateNested5
7381
+ IsEnum as IsEnum25,
7382
+ ValidateIf as ValidateIf9,
7383
+ ValidateNested as ValidateNested6
7173
7384
  } from "class-validator";
7174
- import { Type as Type11 } from "class-transformer";
7385
+ import { Type as Type12 } from "class-transformer";
7175
7386
  var CandidateType = /* @__PURE__ */ ((CandidateType2) => {
7176
7387
  CandidateType2["SHORTLISTED"] = "SHORTLISTED";
7177
7388
  CandidateType2["APPLICATNTS"] = "APPLICATNTS";
@@ -7185,39 +7396,39 @@ __decorateClass([
7185
7396
  IsUUID12()
7186
7397
  ], ExistingCandidateDto.prototype, "id", 2);
7187
7398
  __decorateClass([
7188
- IsEnum24(CandidateType, {
7399
+ IsEnum25(CandidateType, {
7189
7400
  message: "type must be one of SHORTLISTED, APPLICATNTS, or RECOMMENDED"
7190
7401
  })
7191
7402
  ], ExistingCandidateDto.prototype, "type", 2);
7192
7403
  var NewCandidateDto = class {
7193
7404
  };
7194
7405
  __decorateClass([
7195
- IsNotEmpty57({ message: "Please enter the candidate name" }),
7196
- IsString39({ message: "Name must be a string" })
7406
+ IsNotEmpty58({ message: "Please enter the candidate name" }),
7407
+ IsString40({ message: "Name must be a string" })
7197
7408
  ], NewCandidateDto.prototype, "name", 2);
7198
7409
  __decorateClass([
7199
7410
  IsEmail15({}, { message: "Please enter a valid email." })
7200
7411
  ], NewCandidateDto.prototype, "email", 2);
7201
7412
  __decorateClass([
7202
- IsEnum24(CandidateType, {
7413
+ IsEnum25(CandidateType, {
7203
7414
  message: "type must be NEW"
7204
7415
  })
7205
7416
  ], NewCandidateDto.prototype, "type", 2);
7206
7417
  var CandidatesDto = class {
7207
7418
  };
7208
7419
  __decorateClass([
7209
- ValidateIf8((o) => o.exixtingCandidates?.length > 0),
7210
- IsArray13({ message: "Existing candidates should be an array." }),
7211
- ArrayNotEmpty8({ message: "Please select at least one candidate." }),
7212
- ValidateNested5({ each: true }),
7213
- Type11(() => ExistingCandidateDto)
7420
+ ValidateIf9((o) => o.exixtingCandidates?.length > 0),
7421
+ IsArray14({ message: "Existing candidates should be an array." }),
7422
+ ArrayNotEmpty9({ message: "Please select at least one candidate." }),
7423
+ ValidateNested6({ each: true }),
7424
+ Type12(() => ExistingCandidateDto)
7214
7425
  ], CandidatesDto.prototype, "exixtingCandidates", 2);
7215
7426
  __decorateClass([
7216
- ValidateIf8((o) => o.newCandidates?.length > 0),
7217
- IsArray13({ message: "New candidates should be an array." }),
7218
- ArrayNotEmpty8({ message: "Please add at least one candidate." }),
7219
- ValidateNested5({ each: true }),
7220
- Type11(() => NewCandidateDto)
7427
+ ValidateIf9((o) => o.newCandidates?.length > 0),
7428
+ IsArray14({ message: "New candidates should be an array." }),
7429
+ ArrayNotEmpty9({ message: "Please add at least one candidate." }),
7430
+ ValidateNested6({ each: true }),
7431
+ Type12(() => NewCandidateDto)
7221
7432
  ], CandidatesDto.prototype, "newCandidates", 2);
7222
7433
  var InterviewInviteDto = class {
7223
7434
  };
@@ -7225,77 +7436,77 @@ __decorateClass([
7225
7436
  IsUUID12()
7226
7437
  ], InterviewInviteDto.prototype, "jobId", 2);
7227
7438
  __decorateClass([
7228
- ValidateNested5({ each: true }),
7229
- Type11(() => CandidatesDto)
7439
+ ValidateNested6({ each: true }),
7440
+ Type12(() => CandidatesDto)
7230
7441
  ], InterviewInviteDto.prototype, "candidates", 2);
7231
7442
 
7232
7443
  // src/modules/interview/dto/create-f2f-interview.dto.ts
7233
7444
  import {
7234
- IsString as IsString40,
7235
- IsNotEmpty as IsNotEmpty58,
7445
+ IsString as IsString41,
7446
+ IsNotEmpty as IsNotEmpty59,
7236
7447
  IsEmail as IsEmail16,
7237
- IsNumber as IsNumber8
7448
+ IsNumber as IsNumber9
7238
7449
  } from "class-validator";
7239
7450
  var CreateF2FInterviewDto = class {
7240
7451
  };
7241
7452
  __decorateClass([
7242
7453
  IsEmail16({}, { message: "Please enter a valid email address." }),
7243
- IsNotEmpty58({ message: "Invitee email is required." })
7454
+ IsNotEmpty59({ message: "Invitee email is required." })
7244
7455
  ], CreateF2FInterviewDto.prototype, "inviteeEmail", 2);
7245
7456
  __decorateClass([
7246
- IsString40({ message: "Invitee name must be a string." }),
7247
- IsNotEmpty58({ message: "Invitee name is required." })
7457
+ IsString41({ message: "Invitee name must be a string." }),
7458
+ IsNotEmpty59({ message: "Invitee name is required." })
7248
7459
  ], CreateF2FInterviewDto.prototype, "inviteeName", 2);
7249
7460
  __decorateClass([
7250
- IsNumber8({}, { message: "Interview ID must be a number." })
7461
+ IsNumber9({}, { message: "Interview ID must be a number." })
7251
7462
  ], CreateF2FInterviewDto.prototype, "interviewId", 2);
7252
7463
  __decorateClass([
7253
- IsNumber8({}, { message: "Candidate ID must be a number." })
7464
+ IsNumber9({}, { message: "Candidate ID must be a number." })
7254
7465
  ], CreateF2FInterviewDto.prototype, "candidateId", 2);
7255
7466
 
7256
7467
  // src/modules/interview/dto/create-f2f-interview-direct.dto.ts
7257
7468
  import {
7258
- IsString as IsString41,
7259
- IsNotEmpty as IsNotEmpty59,
7469
+ IsString as IsString42,
7470
+ IsNotEmpty as IsNotEmpty60,
7260
7471
  IsEmail as IsEmail17,
7261
- IsNumber as IsNumber9
7472
+ IsNumber as IsNumber10
7262
7473
  } from "class-validator";
7263
7474
  var CreateF2FInterviewDirectDto = class {
7264
7475
  };
7265
7476
  __decorateClass([
7266
7477
  IsEmail17({}, { message: "Please enter a valid email address." }),
7267
- IsNotEmpty59({ message: "Invitee email is required." })
7478
+ IsNotEmpty60({ message: "Invitee email is required." })
7268
7479
  ], CreateF2FInterviewDirectDto.prototype, "inviteeEmail", 2);
7269
7480
  __decorateClass([
7270
- IsString41({ message: "Invitee name must be a string." }),
7271
- IsNotEmpty59({ message: "Invitee name is required." })
7481
+ IsString42({ message: "Invitee name must be a string." }),
7482
+ IsNotEmpty60({ message: "Invitee name is required." })
7272
7483
  ], CreateF2FInterviewDirectDto.prototype, "inviteeName", 2);
7273
7484
  __decorateClass([
7274
- IsNumber9({}, { message: "Job ID must be a number." })
7485
+ IsNumber10({}, { message: "Job ID must be a number." })
7275
7486
  ], CreateF2FInterviewDirectDto.prototype, "jobId", 2);
7276
7487
  __decorateClass([
7277
- IsNumber9({}, { message: "Candidate ID must be a number." })
7488
+ IsNumber10({}, { message: "Candidate ID must be a number." })
7278
7489
  ], CreateF2FInterviewDirectDto.prototype, "candidateId", 2);
7279
7490
 
7280
7491
  // src/modules/interview/dto/create-f2f-interview-reschedule-request.dto.ts
7281
7492
  import {
7282
- IsString as IsString42,
7283
- IsNotEmpty as IsNotEmpty60
7493
+ IsString as IsString43,
7494
+ IsNotEmpty as IsNotEmpty61
7284
7495
  } from "class-validator";
7285
7496
  var CreateF2FInterviewRescheduleRequestDto = class {
7286
7497
  };
7287
7498
  __decorateClass([
7288
- IsNotEmpty60({ message: "F2F Interview ID is required." })
7499
+ IsNotEmpty61({ message: "F2F Interview ID is required." })
7289
7500
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "f2FInterviewId", 2);
7290
7501
  __decorateClass([
7291
- IsNotEmpty60({ message: "Rescheduled date is required." })
7502
+ IsNotEmpty61({ message: "Rescheduled date is required." })
7292
7503
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledDate", 2);
7293
7504
  __decorateClass([
7294
- IsString42({ message: "Rescheduled slot must be a string." }),
7295
- IsNotEmpty60({ message: "Rescheduled slot is required." })
7505
+ IsString43({ message: "Rescheduled slot must be a string." }),
7506
+ IsNotEmpty61({ message: "Rescheduled slot is required." })
7296
7507
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
7297
7508
  __decorateClass([
7298
- IsString42({ message: "Freelancer reason must be a string." })
7509
+ IsString43({ message: "Freelancer reason must be a string." })
7299
7510
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
7300
7511
 
7301
7512
  // src/modules/contract/pattern/pattern.ts
@@ -7319,43 +7530,43 @@ var CONTRACT_PATTERN = {
7319
7530
  };
7320
7531
 
7321
7532
  // src/modules/contract/dto/sign-contract-for-client.dto.ts
7322
- import { IsEnum as IsEnum25, IsNotEmpty as IsNotEmpty61, IsNumber as IsNumber10 } from "class-validator";
7323
- import { Type as Type12 } from "class-transformer";
7533
+ import { IsEnum as IsEnum26, IsNotEmpty as IsNotEmpty62, IsNumber as IsNumber11 } from "class-validator";
7534
+ import { Type as Type13 } from "class-transformer";
7324
7535
  var SignContractForClientDto = class {
7325
7536
  };
7326
7537
  __decorateClass([
7327
- IsNotEmpty61({ message: "Job Id is required." }),
7328
- Type12(() => Number),
7329
- IsNumber10({}, { message: "Job ID must be a number." })
7538
+ IsNotEmpty62({ message: "Job Id is required." }),
7539
+ Type13(() => Number),
7540
+ IsNumber11({}, { message: "Job ID must be a number." })
7330
7541
  ], SignContractForClientDto.prototype, "jobId", 2);
7331
7542
  __decorateClass([
7332
- IsNotEmpty61({ message: "Freelancer ID is required." }),
7333
- Type12(() => Number),
7334
- IsNumber10({}, { message: "Freelancer ID must be a number." })
7543
+ IsNotEmpty62({ message: "Freelancer ID is required." }),
7544
+ Type13(() => Number),
7545
+ IsNumber11({}, { message: "Freelancer ID must be a number." })
7335
7546
  ], SignContractForClientDto.prototype, "freelancerId", 2);
7336
7547
  __decorateClass([
7337
- IsNotEmpty61({ message: "Contract type is required." }),
7338
- IsEnum25(ContractTypeEnum)
7548
+ IsNotEmpty62({ message: "Contract type is required." }),
7549
+ IsEnum26(ContractTypeEnum)
7339
7550
  ], SignContractForClientDto.prototype, "contractType", 2);
7340
7551
 
7341
7552
  // src/modules/contract/dto/sign-contract-for-freelancer.dto.ts
7342
- import { IsEnum as IsEnum26, IsNotEmpty as IsNotEmpty62, IsNumber as IsNumber11 } from "class-validator";
7343
- import { Type as Type13 } from "class-transformer";
7553
+ import { IsEnum as IsEnum27, IsNotEmpty as IsNotEmpty63, IsNumber as IsNumber12 } from "class-validator";
7554
+ import { Type as Type14 } from "class-transformer";
7344
7555
  var SignContractForFreelancerDto = class {
7345
7556
  };
7346
7557
  __decorateClass([
7347
- IsNotEmpty62({ message: "Job Id is required." }),
7348
- Type13(() => Number),
7349
- IsNumber11({}, { message: "Job ID must be a number." })
7558
+ IsNotEmpty63({ message: "Job Id is required." }),
7559
+ Type14(() => Number),
7560
+ IsNumber12({}, { message: "Job ID must be a number." })
7350
7561
  ], SignContractForFreelancerDto.prototype, "jobId", 2);
7351
7562
  __decorateClass([
7352
- IsNotEmpty62({ message: "Client ID is required." }),
7353
- Type13(() => Number),
7354
- IsNumber11({}, { message: "Client ID must be a number." })
7563
+ IsNotEmpty63({ message: "Client ID is required." }),
7564
+ Type14(() => Number),
7565
+ IsNumber12({}, { message: "Client ID must be a number." })
7355
7566
  ], SignContractForFreelancerDto.prototype, "clientId", 2);
7356
7567
  __decorateClass([
7357
- IsNotEmpty62({ message: "Contract type is required." }),
7358
- IsEnum26(ContractTypeEnum)
7568
+ IsNotEmpty63({ message: "Contract type is required." }),
7569
+ IsEnum27(ContractTypeEnum)
7359
7570
  ], SignContractForFreelancerDto.prototype, "contractType", 2);
7360
7571
 
7361
7572
  // src/modules/stripe/pattern/pattern.ts
@@ -7374,12 +7585,12 @@ var STRIPE_PATTERN = {
7374
7585
 
7375
7586
  // src/modules/stripe/dto/create-checkout-session.dto.ts
7376
7587
  import {
7377
- IsNotEmpty as IsNotEmpty63
7588
+ IsNotEmpty as IsNotEmpty64
7378
7589
  } from "class-validator";
7379
7590
  var CreateCheckoutSessionDto = class {
7380
7591
  };
7381
7592
  __decorateClass([
7382
- IsNotEmpty63({ message: "Amount is required" })
7593
+ IsNotEmpty64({ message: "Amount is required" })
7383
7594
  ], CreateCheckoutSessionDto.prototype, "amount", 2);
7384
7595
 
7385
7596
  // src/modules/timesheet/pattern/pattern.ts
@@ -7403,112 +7614,112 @@ var TIMESHEET_CLIENT_PATTERN = {
7403
7614
  import {
7404
7615
  IsDateString as IsDateString6,
7405
7616
  IsInt as IsInt9,
7406
- IsNotEmpty as IsNotEmpty64,
7407
- IsOptional as IsOptional40,
7408
- IsString as IsString43,
7617
+ IsNotEmpty as IsNotEmpty65,
7618
+ IsOptional as IsOptional41,
7619
+ IsString as IsString44,
7409
7620
  Matches as Matches13,
7410
- IsNumber as IsNumber12
7621
+ IsNumber as IsNumber13
7411
7622
  } from "class-validator";
7412
7623
  var CreateFreelancerTimesheetDto = class {
7413
7624
  };
7414
7625
  __decorateClass([
7415
- IsNotEmpty64({ message: "Job id is required" }),
7416
- IsNumber12({}, { message: "Job id must be a number" })
7626
+ IsNotEmpty65({ message: "Job id is required" }),
7627
+ IsNumber13({}, { message: "Job id must be a number" })
7417
7628
  ], CreateFreelancerTimesheetDto.prototype, "jobId", 2);
7418
7629
  __decorateClass([
7419
- IsNotEmpty64({ message: "start date is required" }),
7630
+ IsNotEmpty65({ message: "start date is required" }),
7420
7631
  IsDateString6()
7421
7632
  ], CreateFreelancerTimesheetDto.prototype, "startDate", 2);
7422
7633
  __decorateClass([
7423
- IsNotEmpty64({ message: "end date is required" }),
7634
+ IsNotEmpty65({ message: "end date is required" }),
7424
7635
  IsDateString6()
7425
7636
  ], CreateFreelancerTimesheetDto.prototype, "endDate", 2);
7426
7637
  __decorateClass([
7427
- IsNotEmpty64({ message: "start time is required" }),
7638
+ IsNotEmpty65({ message: "start time is required" }),
7428
7639
  Matches13(/^([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/, {
7429
7640
  message: "startTime must be in HH:mm:ss format"
7430
7641
  })
7431
7642
  ], CreateFreelancerTimesheetDto.prototype, "startTime", 2);
7432
7643
  __decorateClass([
7433
- IsNotEmpty64({ message: "end time is required" }),
7644
+ IsNotEmpty65({ message: "end time is required" }),
7434
7645
  Matches13(/^([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/, {
7435
7646
  message: "endTime must be in HH:mm:ss format"
7436
7647
  })
7437
7648
  ], CreateFreelancerTimesheetDto.prototype, "endTime", 2);
7438
7649
  __decorateClass([
7439
- IsOptional40(),
7650
+ IsOptional41(),
7440
7651
  IsInt9()
7441
7652
  ], CreateFreelancerTimesheetDto.prototype, "taskId", 2);
7442
7653
  __decorateClass([
7443
- IsOptional40(),
7444
- IsString43()
7654
+ IsOptional41(),
7655
+ IsString44()
7445
7656
  ], CreateFreelancerTimesheetDto.prototype, "projectName", 2);
7446
7657
  __decorateClass([
7447
- IsOptional40(),
7448
- IsString43()
7658
+ IsOptional41(),
7659
+ IsString44()
7449
7660
  ], CreateFreelancerTimesheetDto.prototype, "deliverable", 2);
7450
7661
  __decorateClass([
7451
- IsOptional40(),
7452
- IsString43()
7662
+ IsOptional41(),
7663
+ IsString44()
7453
7664
  ], CreateFreelancerTimesheetDto.prototype, "taskName", 2);
7454
7665
  __decorateClass([
7455
- IsNotEmpty64({ message: "Description is required" })
7666
+ IsNotEmpty65({ message: "Description is required" })
7456
7667
  ], CreateFreelancerTimesheetDto.prototype, "description", 2);
7457
7668
 
7458
7669
  // src/modules/timesheet/dto/update-freelancer-timesheet.dto.ts
7459
7670
  import {
7460
7671
  IsDateString as IsDateString7,
7461
7672
  IsInt as IsInt10,
7462
- IsNotEmpty as IsNotEmpty65,
7463
- IsOptional as IsOptional41,
7464
- IsString as IsString44,
7673
+ IsNotEmpty as IsNotEmpty66,
7674
+ IsOptional as IsOptional42,
7675
+ IsString as IsString45,
7465
7676
  Matches as Matches14,
7466
- IsNumber as IsNumber13
7677
+ IsNumber as IsNumber14
7467
7678
  } from "class-validator";
7468
7679
  var UpdateFreelancerTimesheetDto = class {
7469
7680
  };
7470
7681
  __decorateClass([
7471
- IsNotEmpty65({ message: "Job id is required" }),
7472
- IsNumber13({}, { message: "Job id must be a number" })
7682
+ IsNotEmpty66({ message: "Job id is required" }),
7683
+ IsNumber14({}, { message: "Job id must be a number" })
7473
7684
  ], UpdateFreelancerTimesheetDto.prototype, "jobId", 2);
7474
7685
  __decorateClass([
7475
- IsNotEmpty65({ message: "start date is required" }),
7686
+ IsNotEmpty66({ message: "start date is required" }),
7476
7687
  IsDateString7()
7477
7688
  ], UpdateFreelancerTimesheetDto.prototype, "startDate", 2);
7478
7689
  __decorateClass([
7479
- IsNotEmpty65({ message: "end date is required" }),
7690
+ IsNotEmpty66({ message: "end date is required" }),
7480
7691
  IsDateString7()
7481
7692
  ], UpdateFreelancerTimesheetDto.prototype, "endDate", 2);
7482
7693
  __decorateClass([
7483
- IsNotEmpty65({ message: "start time is required" }),
7694
+ IsNotEmpty66({ message: "start time is required" }),
7484
7695
  Matches14(/^([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/, {
7485
7696
  message: "startTime must be in HH:mm:ss format"
7486
7697
  })
7487
7698
  ], UpdateFreelancerTimesheetDto.prototype, "startTime", 2);
7488
7699
  __decorateClass([
7489
- IsNotEmpty65({ message: "end time is required" }),
7700
+ IsNotEmpty66({ message: "end time is required" }),
7490
7701
  Matches14(/^([01]\d|2[0-3]):([0-5]\d):([0-5]\d)$/, {
7491
7702
  message: "endTime must be in HH:mm:ss format"
7492
7703
  })
7493
7704
  ], UpdateFreelancerTimesheetDto.prototype, "endTime", 2);
7494
7705
  __decorateClass([
7495
- IsOptional41(),
7706
+ IsOptional42(),
7496
7707
  IsInt10()
7497
7708
  ], UpdateFreelancerTimesheetDto.prototype, "taskId", 2);
7498
7709
  __decorateClass([
7499
- IsOptional41(),
7500
- IsString44()
7710
+ IsOptional42(),
7711
+ IsString45()
7501
7712
  ], UpdateFreelancerTimesheetDto.prototype, "projectName", 2);
7502
7713
  __decorateClass([
7503
- IsOptional41(),
7504
- IsString44()
7714
+ IsOptional42(),
7715
+ IsString45()
7505
7716
  ], UpdateFreelancerTimesheetDto.prototype, "deliverable", 2);
7506
7717
  __decorateClass([
7507
- IsOptional41(),
7508
- IsString44()
7718
+ IsOptional42(),
7719
+ IsString45()
7509
7720
  ], UpdateFreelancerTimesheetDto.prototype, "taskName", 2);
7510
7721
  __decorateClass([
7511
- IsNotEmpty65({ message: "Description is required" })
7722
+ IsNotEmpty66({ message: "Description is required" })
7512
7723
  ], UpdateFreelancerTimesheetDto.prototype, "description", 2);
7513
7724
 
7514
7725
  // src/modules/invoice/pattern/pattern.ts
@@ -7523,61 +7734,61 @@ var INVOICE_PATTERN = {
7523
7734
  };
7524
7735
 
7525
7736
  // src/modules/invoice/dto/update-invoice-status.dto.ts
7526
- import { IsEnum as IsEnum29, IsNotEmpty as IsNotEmpty66 } from "class-validator";
7737
+ import { IsEnum as IsEnum30, IsNotEmpty as IsNotEmpty67 } from "class-validator";
7527
7738
  var UpdateInvoiceStatusDto = class {
7528
7739
  };
7529
7740
  __decorateClass([
7530
- IsNotEmpty66({ message: "Please provide invoice status." }),
7531
- IsEnum29(InvoiceStatusEnum, {
7741
+ IsNotEmpty67({ message: "Please provide invoice status." }),
7742
+ IsEnum30(InvoiceStatusEnum, {
7532
7743
  message: "Status must be one of: APPROVED, REJECTED"
7533
7744
  })
7534
7745
  ], UpdateInvoiceStatusDto.prototype, "status", 2);
7535
7746
 
7536
7747
  // src/modules/dispute/dto/create-dispute.dto.ts
7537
7748
  import {
7538
- IsString as IsString45,
7539
- IsNotEmpty as IsNotEmpty67,
7749
+ IsString as IsString46,
7750
+ IsNotEmpty as IsNotEmpty68,
7540
7751
  IsIn as IsIn4,
7541
- IsOptional as IsOptional42,
7542
- MaxLength as MaxLength19,
7752
+ IsOptional as IsOptional43,
7753
+ MaxLength as MaxLength20,
7543
7754
  IsObject,
7544
- IsNumber as IsNumber14,
7545
- ValidateIf as ValidateIf9
7755
+ IsNumber as IsNumber15,
7756
+ ValidateIf as ValidateIf10
7546
7757
  } from "class-validator";
7547
- import { Transform as Transform4, Type as Type14 } from "class-transformer";
7758
+ import { Transform as Transform4, Type as Type15 } from "class-transformer";
7548
7759
  var CreateDisputeDto = class {
7549
7760
  };
7550
7761
  __decorateClass([
7551
- ValidateIf9((o) => o.initiatorType === "FREELANCER" /* FREELANCER */),
7552
- IsNumber14({}, { message: "Client id must be a number" }),
7553
- Type14(() => Number)
7762
+ ValidateIf10((o) => o.initiatorType === "FREELANCER" /* FREELANCER */),
7763
+ IsNumber15({}, { message: "Client id must be a number" }),
7764
+ Type15(() => Number)
7554
7765
  ], CreateDisputeDto.prototype, "clientId", 2);
7555
7766
  __decorateClass([
7556
- ValidateIf9((o) => o.initiatorType === "CLIENT" /* CLIENT */),
7557
- IsNumber14({}, { message: "Freelancer id must be a number" }),
7558
- Type14(() => Number)
7767
+ ValidateIf10((o) => o.initiatorType === "CLIENT" /* CLIENT */),
7768
+ IsNumber15({}, { message: "Freelancer id must be a number" }),
7769
+ Type15(() => Number)
7559
7770
  ], CreateDisputeDto.prototype, "freelancerId", 2);
7560
7771
  __decorateClass([
7561
- IsNotEmpty67({ message: "Please select dispute type." }),
7562
- IsString45(),
7772
+ IsNotEmpty68({ message: "Please select dispute type." }),
7773
+ IsString46(),
7563
7774
  IsIn4(["JOB", "INVOICE"])
7564
7775
  ], CreateDisputeDto.prototype, "disputeType", 2);
7565
7776
  __decorateClass([
7566
- IsNotEmpty67({ message: "Please provide initiator type." }),
7567
- IsString45()
7777
+ IsNotEmpty68({ message: "Please provide initiator type." }),
7778
+ IsString46()
7568
7779
  ], CreateDisputeDto.prototype, "initiatorType", 2);
7569
7780
  __decorateClass([
7570
- IsNotEmpty67({ message: "Please enter description." }),
7571
- IsString45({ message: "Description must be a string" }),
7572
- MaxLength19(500, { message: "Description must not exceed 500 characters" })
7781
+ IsNotEmpty68({ message: "Please enter description." }),
7782
+ IsString46({ message: "Description must be a string" }),
7783
+ MaxLength20(500, { message: "Description must not exceed 500 characters" })
7573
7784
  ], CreateDisputeDto.prototype, "description", 2);
7574
7785
  __decorateClass([
7575
- IsOptional42(),
7576
- IsString45({ message: "Comment must be a string" }),
7577
- MaxLength19(500, { message: "Comment must not exceed 500 characters" })
7786
+ IsOptional43(),
7787
+ IsString46({ message: "Comment must be a string" }),
7788
+ MaxLength20(500, { message: "Comment must not exceed 500 characters" })
7578
7789
  ], CreateDisputeDto.prototype, "comment", 2);
7579
7790
  __decorateClass([
7580
- IsOptional42(),
7791
+ IsOptional43(),
7581
7792
  IsObject({ message: "Dynamic fields must be a valid object" }),
7582
7793
  Transform4(({ value }) => {
7583
7794
  if (typeof value === "string") {
@@ -7593,15 +7804,15 @@ __decorateClass([
7593
7804
 
7594
7805
  // src/modules/senseloaf/dto/ai-interview-question-generate.dto.ts
7595
7806
  import {
7596
- IsNotEmpty as IsNotEmpty68
7807
+ IsNotEmpty as IsNotEmpty69
7597
7808
  } from "class-validator";
7598
7809
  var AiInterviewQuestionGenerateDto = class {
7599
7810
  };
7600
7811
  __decorateClass([
7601
- IsNotEmpty68({ message: "Please enter job description." })
7812
+ IsNotEmpty69({ message: "Please enter job description." })
7602
7813
  ], AiInterviewQuestionGenerateDto.prototype, "jobDescription", 2);
7603
7814
  __decorateClass([
7604
- IsNotEmpty68({ message: "Please enter number of questions." })
7815
+ IsNotEmpty69({ message: "Please enter number of questions." })
7605
7816
  ], AiInterviewQuestionGenerateDto.prototype, "numQuestions", 2);
7606
7817
 
7607
7818
  // src/adapters/tcp/user.tcp.adapter.ts
@@ -8707,6 +8918,7 @@ export {
8707
8918
  DurationTypeEnum,
8708
8919
  EducationDto,
8709
8920
  EmploymentType,
8921
+ EmploymentTypeV2,
8710
8922
  EscrowWallet,
8711
8923
  EscrowWalletTransaction,
8712
8924
  EscrowWalletTransactionForEnum,
@@ -8777,13 +8989,16 @@ export {
8777
8989
  JobAdditionalCommentDto,
8778
8990
  JobApplication,
8779
8991
  JobBasicInformationDto,
8992
+ JobBasicInformationV2Dto,
8780
8993
  JobDescriptionDto,
8781
8994
  JobFreelancerRecommendation,
8782
8995
  JobFreelancerRecommendationV2,
8783
8996
  JobIdParamDto,
8784
8997
  JobLocation,
8998
+ JobLocationDto,
8785
8999
  JobLocationEnum2 as JobLocationEnum,
8786
9000
  JobLocationEnumDto,
9001
+ JobLocationEnumV2,
8787
9002
  JobLocationEnums,
8788
9003
  JobRMQAdapter,
8789
9004
  JobRecommendation,
@@ -8905,5 +9120,6 @@ export {
8905
9120
  WalletTransactionStatusEnum,
8906
9121
  WalletTransactionTypeEnum,
8907
9122
  ZoomMeetingLog,
9123
+ typeOfExperienceDtoEnumV2,
8908
9124
  typeOfExperienceEnum
8909
9125
  };