@experts_hub/shared 1.0.228 → 1.0.230
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/entities/freelancer-profile.entity.d.ts +17 -0
- package/dist/index.d.mts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +563 -511
- package/dist/index.mjs +218 -169
- package/dist/modules/onboarding/dto/freelancer-skip-ai-assessment.dto.d.ts +3 -0
- package/dist/modules/onboarding/dto/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -312,61 +312,70 @@ __decorateClass([
|
|
|
312
312
|
IsUUID2()
|
|
313
313
|
], FreelancerParseResumeDto.prototype, "uuid", 2);
|
|
314
314
|
|
|
315
|
-
// src/modules/onboarding/dto/freelancer-
|
|
315
|
+
// src/modules/onboarding/dto/freelancer-skip-ai-assessment.dto.ts
|
|
316
316
|
import { IsUUID as IsUUID3, IsNotEmpty as IsNotEmpty12 } from "class-validator";
|
|
317
|
-
var
|
|
317
|
+
var FreelancerSkipAiAssessmentDto = class {
|
|
318
318
|
};
|
|
319
319
|
__decorateClass([
|
|
320
320
|
IsNotEmpty12({ message: "Please enter uuid." }),
|
|
321
321
|
IsUUID3()
|
|
322
|
+
], FreelancerSkipAiAssessmentDto.prototype, "uuid", 2);
|
|
323
|
+
|
|
324
|
+
// src/modules/onboarding/dto/freelancer-initiate-ai-assessment.dto.ts
|
|
325
|
+
import { IsUUID as IsUUID4, IsNotEmpty as IsNotEmpty13 } from "class-validator";
|
|
326
|
+
var FreelancerInitiateAiAssessmentDto = class {
|
|
327
|
+
};
|
|
328
|
+
__decorateClass([
|
|
329
|
+
IsNotEmpty13({ message: "Please enter uuid." }),
|
|
330
|
+
IsUUID4()
|
|
322
331
|
], FreelancerInitiateAiAssessmentDto.prototype, "uuid", 2);
|
|
323
332
|
|
|
324
333
|
// src/modules/onboarding/dto/freelancer-capture-ai-assessment-status.dto.ts
|
|
325
|
-
import { IsUUID as
|
|
334
|
+
import { IsUUID as IsUUID5, IsNotEmpty as IsNotEmpty14, IsOptional } from "class-validator";
|
|
326
335
|
var FreelancerCaptureAiAssessmentStatusDto = class {
|
|
327
336
|
};
|
|
328
337
|
__decorateClass([
|
|
329
|
-
|
|
330
|
-
|
|
338
|
+
IsNotEmpty14({ message: "Please enter uuid." }),
|
|
339
|
+
IsUUID5()
|
|
331
340
|
], FreelancerCaptureAiAssessmentStatusDto.prototype, "uuid", 2);
|
|
332
341
|
__decorateClass([
|
|
333
|
-
|
|
342
|
+
IsNotEmpty14({ message: "Please enter assessment id." })
|
|
334
343
|
], FreelancerCaptureAiAssessmentStatusDto.prototype, "assessmentId", 2);
|
|
335
344
|
__decorateClass([
|
|
336
|
-
|
|
345
|
+
IsNotEmpty14({ message: "Please enter assessment status." })
|
|
337
346
|
], FreelancerCaptureAiAssessmentStatusDto.prototype, "assessmentStatus", 2);
|
|
338
347
|
__decorateClass([
|
|
339
348
|
IsOptional()
|
|
340
349
|
], FreelancerCaptureAiAssessmentStatusDto.prototype, "iframeEventData", 2);
|
|
341
350
|
|
|
342
351
|
// src/modules/onboarding/dto/freelancer-development-preference.dto.ts
|
|
343
|
-
import { IsUUID as
|
|
352
|
+
import { IsUUID as IsUUID6, IsNotEmpty as IsNotEmpty15, IsBoolean } from "class-validator";
|
|
344
353
|
var FreelancerDevelopmentPreferenceDto = class {
|
|
345
354
|
};
|
|
346
355
|
__decorateClass([
|
|
347
|
-
|
|
348
|
-
|
|
356
|
+
IsNotEmpty15({ message: "Please enter uuid." }),
|
|
357
|
+
IsUUID6()
|
|
349
358
|
], FreelancerDevelopmentPreferenceDto.prototype, "uuid", 2);
|
|
350
359
|
__decorateClass([
|
|
351
|
-
|
|
360
|
+
IsNotEmpty15({ message: "Please select development flag." }),
|
|
352
361
|
IsBoolean()
|
|
353
362
|
], FreelancerDevelopmentPreferenceDto.prototype, "developer", 2);
|
|
354
363
|
|
|
355
364
|
// src/modules/onboarding/dto/freelancer-profile-question.dto.ts
|
|
356
365
|
import {
|
|
357
|
-
IsUUID as
|
|
366
|
+
IsUUID as IsUUID7,
|
|
358
367
|
IsString as IsString4,
|
|
359
|
-
IsNotEmpty as
|
|
368
|
+
IsNotEmpty as IsNotEmpty16,
|
|
360
369
|
IsIn
|
|
361
370
|
} from "class-validator";
|
|
362
371
|
var FreelancerProfileQuestionDto = class {
|
|
363
372
|
};
|
|
364
373
|
__decorateClass([
|
|
365
|
-
|
|
366
|
-
|
|
374
|
+
IsNotEmpty16({ message: "Please enter uuid." }),
|
|
375
|
+
IsUUID7()
|
|
367
376
|
], FreelancerProfileQuestionDto.prototype, "uuid", 2);
|
|
368
377
|
__decorateClass([
|
|
369
|
-
|
|
378
|
+
IsNotEmpty16({ message: "Please enter question slug." }),
|
|
370
379
|
IsString4(),
|
|
371
380
|
IsIn([
|
|
372
381
|
"natureOfWork",
|
|
@@ -377,25 +386,25 @@ __decorateClass([
|
|
|
377
386
|
])
|
|
378
387
|
], FreelancerProfileQuestionDto.prototype, "question_slug", 2);
|
|
379
388
|
__decorateClass([
|
|
380
|
-
|
|
389
|
+
IsNotEmpty16({ message: "Please enter answer." })
|
|
381
390
|
], FreelancerProfileQuestionDto.prototype, "answer", 2);
|
|
382
391
|
|
|
383
392
|
// src/modules/onboarding/dto/freelancer-work-showcase.dto.ts
|
|
384
393
|
import {
|
|
385
|
-
IsNotEmpty as
|
|
394
|
+
IsNotEmpty as IsNotEmpty17,
|
|
386
395
|
IsOptional as IsOptional2,
|
|
387
396
|
IsUrl,
|
|
388
397
|
IsString as IsString5,
|
|
389
|
-
IsUUID as
|
|
398
|
+
IsUUID as IsUUID8
|
|
390
399
|
} from "class-validator";
|
|
391
400
|
var FreelancerWorkShowcaseDto = class {
|
|
392
401
|
};
|
|
393
402
|
__decorateClass([
|
|
394
|
-
|
|
395
|
-
|
|
403
|
+
IsNotEmpty17({ message: "Please enter uuid." }),
|
|
404
|
+
IsUUID8()
|
|
396
405
|
], FreelancerWorkShowcaseDto.prototype, "uuid", 2);
|
|
397
406
|
__decorateClass([
|
|
398
|
-
|
|
407
|
+
IsNotEmpty17({ message: "Please enter likedin profile url." }),
|
|
399
408
|
IsString5(),
|
|
400
409
|
IsUrl({ require_protocol: true }, { message: "linkedinProfileLink must be a valid URL with protocol (e.g. https://)" })
|
|
401
410
|
], FreelancerWorkShowcaseDto.prototype, "linkedinProfileLink", 2);
|
|
@@ -418,20 +427,20 @@ __decorateClass([
|
|
|
418
427
|
|
|
419
428
|
// src/modules/onboarding/dto/client-profile-question.dto.ts
|
|
420
429
|
import {
|
|
421
|
-
IsUUID as
|
|
430
|
+
IsUUID as IsUUID9,
|
|
422
431
|
IsString as IsString6,
|
|
423
|
-
IsNotEmpty as
|
|
432
|
+
IsNotEmpty as IsNotEmpty18,
|
|
424
433
|
IsIn as IsIn2,
|
|
425
434
|
ValidateIf
|
|
426
435
|
} from "class-validator";
|
|
427
436
|
var ClientProfileQuestionDto = class {
|
|
428
437
|
};
|
|
429
438
|
__decorateClass([
|
|
430
|
-
|
|
431
|
-
|
|
439
|
+
IsNotEmpty18({ message: "Please enter uuid." }),
|
|
440
|
+
IsUUID9()
|
|
432
441
|
], ClientProfileQuestionDto.prototype, "uuid", 2);
|
|
433
442
|
__decorateClass([
|
|
434
|
-
|
|
443
|
+
IsNotEmpty18({ message: "Please enter question slug." }),
|
|
435
444
|
IsString6(),
|
|
436
445
|
IsIn2([
|
|
437
446
|
"skills",
|
|
@@ -442,17 +451,17 @@ __decorateClass([
|
|
|
442
451
|
])
|
|
443
452
|
], ClientProfileQuestionDto.prototype, "question_slug", 2);
|
|
444
453
|
__decorateClass([
|
|
445
|
-
|
|
454
|
+
IsNotEmpty18({ message: "Please enter answer." })
|
|
446
455
|
], ClientProfileQuestionDto.prototype, "answer", 2);
|
|
447
456
|
__decorateClass([
|
|
448
457
|
ValidateIf((o) => o.questionSlug === "foundUsOn" && o.answer === "OTHER"),
|
|
449
|
-
|
|
458
|
+
IsNotEmpty18({ message: "Please enter foundUsOnDetail if answer is OTHER." }),
|
|
450
459
|
IsString6()
|
|
451
460
|
], ClientProfileQuestionDto.prototype, "foundUsOnDetail", 2);
|
|
452
461
|
|
|
453
462
|
// src/modules/onboarding/dto/client-create-account.dto.ts
|
|
454
463
|
import {
|
|
455
|
-
IsNotEmpty as
|
|
464
|
+
IsNotEmpty as IsNotEmpty19,
|
|
456
465
|
IsEmail as IsEmail3,
|
|
457
466
|
Matches as Matches4,
|
|
458
467
|
MinLength as MinLength4,
|
|
@@ -462,23 +471,23 @@ import {
|
|
|
462
471
|
var ClientCreateAccountDto = class {
|
|
463
472
|
};
|
|
464
473
|
__decorateClass([
|
|
465
|
-
|
|
474
|
+
IsNotEmpty19({ message: "Please enter first name." }),
|
|
466
475
|
IsString7({ message: "Please enter valid first name." })
|
|
467
476
|
], ClientCreateAccountDto.prototype, "firstName", 2);
|
|
468
477
|
__decorateClass([
|
|
469
|
-
|
|
478
|
+
IsNotEmpty19({ message: "Please enter last name." }),
|
|
470
479
|
IsString7({ message: "Please enter valid last name." })
|
|
471
480
|
], ClientCreateAccountDto.prototype, "lastName", 2);
|
|
472
481
|
__decorateClass([
|
|
473
|
-
|
|
482
|
+
IsNotEmpty19({ message: "Please enter email." }),
|
|
474
483
|
IsEmail3()
|
|
475
484
|
], ClientCreateAccountDto.prototype, "email", 2);
|
|
476
485
|
__decorateClass([
|
|
477
|
-
|
|
486
|
+
IsNotEmpty19({ message: "Please enter company name." }),
|
|
478
487
|
IsString7({ message: "Please enter valid company name." })
|
|
479
488
|
], ClientCreateAccountDto.prototype, "companyName", 2);
|
|
480
489
|
__decorateClass([
|
|
481
|
-
|
|
490
|
+
IsNotEmpty19({ message: "Please enter password." }),
|
|
482
491
|
MinLength4(6),
|
|
483
492
|
MaxLength4(32),
|
|
484
493
|
Matches4(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
|
|
@@ -486,7 +495,7 @@ __decorateClass([
|
|
|
486
495
|
})
|
|
487
496
|
], ClientCreateAccountDto.prototype, "password", 2);
|
|
488
497
|
__decorateClass([
|
|
489
|
-
|
|
498
|
+
IsNotEmpty19({ message: "Please enter confirm password." }),
|
|
490
499
|
Match("password", { message: "Passwords do not match" })
|
|
491
500
|
], ClientCreateAccountDto.prototype, "confirmPassword", 2);
|
|
492
501
|
|
|
@@ -509,36 +518,36 @@ var SUBADMIN_PATTERN = {
|
|
|
509
518
|
|
|
510
519
|
// src/modules/user/subadmin/dto/create-subadmin.dto.ts
|
|
511
520
|
import {
|
|
512
|
-
IsNotEmpty as
|
|
521
|
+
IsNotEmpty as IsNotEmpty20
|
|
513
522
|
} from "class-validator";
|
|
514
523
|
var CreateSubAdminDto = class {
|
|
515
524
|
};
|
|
516
525
|
__decorateClass([
|
|
517
|
-
|
|
526
|
+
IsNotEmpty20({ message: "Please enter unique id." })
|
|
518
527
|
], CreateSubAdminDto.prototype, "uniqueId", 2);
|
|
519
528
|
__decorateClass([
|
|
520
|
-
|
|
529
|
+
IsNotEmpty20({ message: "Please enter username." })
|
|
521
530
|
], CreateSubAdminDto.prototype, "userName", 2);
|
|
522
531
|
__decorateClass([
|
|
523
|
-
|
|
532
|
+
IsNotEmpty20({ message: "Please enter first name." })
|
|
524
533
|
], CreateSubAdminDto.prototype, "firstName", 2);
|
|
525
534
|
__decorateClass([
|
|
526
|
-
|
|
535
|
+
IsNotEmpty20({ message: "Please enter last name." })
|
|
527
536
|
], CreateSubAdminDto.prototype, "lastName", 2);
|
|
528
537
|
__decorateClass([
|
|
529
|
-
|
|
538
|
+
IsNotEmpty20({ message: "Please enter email." })
|
|
530
539
|
], CreateSubAdminDto.prototype, "email", 2);
|
|
531
540
|
__decorateClass([
|
|
532
|
-
|
|
541
|
+
IsNotEmpty20({ message: "Please enter mobile number." })
|
|
533
542
|
], CreateSubAdminDto.prototype, "mobile", 2);
|
|
534
543
|
__decorateClass([
|
|
535
|
-
|
|
544
|
+
IsNotEmpty20({ message: "Please enter the password." })
|
|
536
545
|
], CreateSubAdminDto.prototype, "password", 2);
|
|
537
546
|
__decorateClass([
|
|
538
|
-
|
|
547
|
+
IsNotEmpty20({ message: "Please enter account type." })
|
|
539
548
|
], CreateSubAdminDto.prototype, "accountType", 2);
|
|
540
549
|
__decorateClass([
|
|
541
|
-
|
|
550
|
+
IsNotEmpty20({ message: "Please enter account status." })
|
|
542
551
|
], CreateSubAdminDto.prototype, "accountStatus", 2);
|
|
543
552
|
|
|
544
553
|
// src/modules/user/subadmin/dto/update-subadmin-status.dto.ts
|
|
@@ -550,35 +559,35 @@ __decorateClass([
|
|
|
550
559
|
], UpdateSubAdminAccountStatusDto.prototype, "accountStatus", 2);
|
|
551
560
|
|
|
552
561
|
// src/modules/user/subadmin/dto/update-subadmin.dto.ts
|
|
553
|
-
import { IsNotEmpty as
|
|
562
|
+
import { IsNotEmpty as IsNotEmpty21 } from "class-validator";
|
|
554
563
|
var UpdateSubAdminDto = class {
|
|
555
564
|
};
|
|
556
565
|
__decorateClass([
|
|
557
|
-
|
|
566
|
+
IsNotEmpty21({ message: "Please enter unique id." })
|
|
558
567
|
], UpdateSubAdminDto.prototype, "uniqueId", 2);
|
|
559
568
|
__decorateClass([
|
|
560
|
-
|
|
569
|
+
IsNotEmpty21({ message: "Please enter username." })
|
|
561
570
|
], UpdateSubAdminDto.prototype, "userName", 2);
|
|
562
571
|
__decorateClass([
|
|
563
|
-
|
|
572
|
+
IsNotEmpty21({ message: "Please enter first name." })
|
|
564
573
|
], UpdateSubAdminDto.prototype, "firstName", 2);
|
|
565
574
|
__decorateClass([
|
|
566
|
-
|
|
575
|
+
IsNotEmpty21({ message: "Please enter last name." })
|
|
567
576
|
], UpdateSubAdminDto.prototype, "lastName", 2);
|
|
568
577
|
__decorateClass([
|
|
569
|
-
|
|
578
|
+
IsNotEmpty21({ message: "Please enter email." })
|
|
570
579
|
], UpdateSubAdminDto.prototype, "email", 2);
|
|
571
580
|
__decorateClass([
|
|
572
|
-
|
|
581
|
+
IsNotEmpty21({ message: "Please enter mobile number." })
|
|
573
582
|
], UpdateSubAdminDto.prototype, "mobile", 2);
|
|
574
583
|
__decorateClass([
|
|
575
|
-
|
|
584
|
+
IsNotEmpty21({ message: "Please enter the password." })
|
|
576
585
|
], UpdateSubAdminDto.prototype, "password", 2);
|
|
577
586
|
__decorateClass([
|
|
578
|
-
|
|
587
|
+
IsNotEmpty21({ message: "Please enter account type." })
|
|
579
588
|
], UpdateSubAdminDto.prototype, "accountType", 2);
|
|
580
589
|
__decorateClass([
|
|
581
|
-
|
|
590
|
+
IsNotEmpty21({ message: "Please enter account status." })
|
|
582
591
|
], UpdateSubAdminDto.prototype, "accountStatus", 2);
|
|
583
592
|
|
|
584
593
|
// src/modules/user/client-profile/pattern/pattern.ts
|
|
@@ -593,7 +602,7 @@ var CLIENT_PROFILE_PATTERN = {
|
|
|
593
602
|
// src/modules/user/client-profile/dto/update-client-profile.dto.ts
|
|
594
603
|
import {
|
|
595
604
|
IsString as IsString10,
|
|
596
|
-
IsNotEmpty as
|
|
605
|
+
IsNotEmpty as IsNotEmpty22,
|
|
597
606
|
IsEmail as IsEmail5,
|
|
598
607
|
Length as Length2,
|
|
599
608
|
IsUrl as IsUrl2,
|
|
@@ -602,33 +611,33 @@ import {
|
|
|
602
611
|
var UpdateCompanyProfileDto = class {
|
|
603
612
|
};
|
|
604
613
|
__decorateClass([
|
|
605
|
-
|
|
614
|
+
IsNotEmpty22({ message: "Please enter company name." }),
|
|
606
615
|
IsString10({ message: "Company name must be a string." }),
|
|
607
616
|
Length2(2, 255, {
|
|
608
617
|
message: "Company name must be between 2 and 255 characters"
|
|
609
618
|
})
|
|
610
619
|
], UpdateCompanyProfileDto.prototype, "companyName", 2);
|
|
611
620
|
__decorateClass([
|
|
612
|
-
|
|
621
|
+
IsNotEmpty22({ message: "Please enter company website url." }),
|
|
613
622
|
IsUrl2({}, { message: "Invalid website URL format" })
|
|
614
623
|
], UpdateCompanyProfileDto.prototype, "webSite", 2);
|
|
615
624
|
__decorateClass([
|
|
616
|
-
|
|
625
|
+
IsNotEmpty22({ message: "Please enter company address." }),
|
|
617
626
|
IsString10({ message: "Company address must be a string" }),
|
|
618
627
|
Length2(5, 1e3, { message: "Address must be between 5 and 1000 characters" })
|
|
619
628
|
], UpdateCompanyProfileDto.prototype, "companyAddress", 2);
|
|
620
629
|
__decorateClass([
|
|
621
|
-
|
|
630
|
+
IsNotEmpty22({ message: "Please enter phone number." }),
|
|
622
631
|
Matches5(/^(\+1\s?)?(\(?\d{3}\)?[\s.-]?)?\d{3}[\s.-]?\d{4}$/, {
|
|
623
632
|
message: "Please enter a valid US phone number"
|
|
624
633
|
})
|
|
625
634
|
], UpdateCompanyProfileDto.prototype, "phoneNumber", 2);
|
|
626
635
|
__decorateClass([
|
|
627
|
-
|
|
636
|
+
IsNotEmpty22({ message: "Please enter email." }),
|
|
628
637
|
IsEmail5()
|
|
629
638
|
], UpdateCompanyProfileDto.prototype, "email", 2);
|
|
630
639
|
__decorateClass([
|
|
631
|
-
|
|
640
|
+
IsNotEmpty22({ message: "Please enter something about company." }),
|
|
632
641
|
IsString10({ message: "About company must be a string." })
|
|
633
642
|
], UpdateCompanyProfileDto.prototype, "aboutCompany", 2);
|
|
634
643
|
|
|
@@ -637,7 +646,7 @@ import {
|
|
|
637
646
|
IsString as IsString11,
|
|
638
647
|
MinLength as MinLength6,
|
|
639
648
|
Matches as Matches6,
|
|
640
|
-
IsNotEmpty as
|
|
649
|
+
IsNotEmpty as IsNotEmpty23
|
|
641
650
|
} from "class-validator";
|
|
642
651
|
var ClientChangePasswordDto = class {
|
|
643
652
|
};
|
|
@@ -649,7 +658,7 @@ __decorateClass([
|
|
|
649
658
|
})
|
|
650
659
|
], ClientChangePasswordDto.prototype, "newPassword", 2);
|
|
651
660
|
__decorateClass([
|
|
652
|
-
|
|
661
|
+
IsNotEmpty23({ message: "Please enter confirm password." }),
|
|
653
662
|
Match("newPassword", { message: "Passwords do not match" })
|
|
654
663
|
], ClientChangePasswordDto.prototype, "confirmPassword", 2);
|
|
655
664
|
|
|
@@ -663,23 +672,23 @@ var ASSESSMENT_QUESTION_PATTERN = {
|
|
|
663
672
|
|
|
664
673
|
// src/modules/question/dto/create-question.dto.ts
|
|
665
674
|
import {
|
|
666
|
-
IsNotEmpty as
|
|
675
|
+
IsNotEmpty as IsNotEmpty24,
|
|
667
676
|
IsOptional as IsOptional5,
|
|
668
677
|
IsBoolean as IsBoolean4
|
|
669
678
|
} from "class-validator";
|
|
670
679
|
var CreateQuestionDto = class {
|
|
671
680
|
};
|
|
672
681
|
__decorateClass([
|
|
673
|
-
|
|
682
|
+
IsNotEmpty24({ message: "Please enter unique id." })
|
|
674
683
|
], CreateQuestionDto.prototype, "questionId", 2);
|
|
675
684
|
__decorateClass([
|
|
676
|
-
|
|
685
|
+
IsNotEmpty24({ message: "Please enter question." })
|
|
677
686
|
], CreateQuestionDto.prototype, "question", 2);
|
|
678
687
|
__decorateClass([
|
|
679
|
-
|
|
688
|
+
IsNotEmpty24({ message: "Please enter for whom the question is." })
|
|
680
689
|
], CreateQuestionDto.prototype, "questionFor", 2);
|
|
681
690
|
__decorateClass([
|
|
682
|
-
|
|
691
|
+
IsNotEmpty24({ message: "Please enter options." })
|
|
683
692
|
], CreateQuestionDto.prototype, "options", 2);
|
|
684
693
|
__decorateClass([
|
|
685
694
|
IsOptional5(),
|
|
@@ -710,7 +719,7 @@ var JOB_PATTERN = {
|
|
|
710
719
|
// src/modules/job/dto/job-basic-information.dto.ts
|
|
711
720
|
import {
|
|
712
721
|
IsString as IsString12,
|
|
713
|
-
IsNotEmpty as
|
|
722
|
+
IsNotEmpty as IsNotEmpty25,
|
|
714
723
|
IsArray,
|
|
715
724
|
ArrayNotEmpty,
|
|
716
725
|
IsNumber,
|
|
@@ -734,7 +743,7 @@ var EmploymentType = /* @__PURE__ */ ((EmploymentType2) => {
|
|
|
734
743
|
var JobBasicInformationDto = class {
|
|
735
744
|
};
|
|
736
745
|
__decorateClass([
|
|
737
|
-
|
|
746
|
+
IsNotEmpty25({ message: "Please enter job role" }),
|
|
738
747
|
IsString12({ message: "Job role must be a string" })
|
|
739
748
|
], JobBasicInformationDto.prototype, "jobRole", 2);
|
|
740
749
|
__decorateClass([
|
|
@@ -796,17 +805,17 @@ __decorateClass([
|
|
|
796
805
|
], JobAdditionalCommentDto.prototype, "additionalComment", 2);
|
|
797
806
|
|
|
798
807
|
// src/modules/job/dto/job-description.dto.ts
|
|
799
|
-
import { IsString as IsString14, IsNotEmpty as
|
|
808
|
+
import { IsString as IsString14, IsNotEmpty as IsNotEmpty26, MaxLength as MaxLength7 } from "class-validator";
|
|
800
809
|
var JobDescriptionDto = class {
|
|
801
810
|
};
|
|
802
811
|
__decorateClass([
|
|
803
|
-
|
|
812
|
+
IsNotEmpty26({ message: "Please enter job description" }),
|
|
804
813
|
IsString14({ message: "Description must be a string" }),
|
|
805
814
|
MaxLength7(5e3, { message: "Description must not exceed 5000 characters" })
|
|
806
815
|
], JobDescriptionDto.prototype, "description", 2);
|
|
807
816
|
|
|
808
817
|
// src/modules/job/dto/job-status.dto.ts
|
|
809
|
-
import { IsEnum as IsEnum8, IsNotEmpty as
|
|
818
|
+
import { IsEnum as IsEnum8, IsNotEmpty as IsNotEmpty27 } from "class-validator";
|
|
810
819
|
var JobStatus = /* @__PURE__ */ ((JobStatus2) => {
|
|
811
820
|
JobStatus2["ACTIVE"] = "ACTIVE";
|
|
812
821
|
JobStatus2["OPEN"] = "OPEN";
|
|
@@ -818,18 +827,18 @@ var JobStatus = /* @__PURE__ */ ((JobStatus2) => {
|
|
|
818
827
|
var JobStatusDto = class {
|
|
819
828
|
};
|
|
820
829
|
__decorateClass([
|
|
821
|
-
|
|
830
|
+
IsNotEmpty27({ message: "Please provide a job status" }),
|
|
822
831
|
IsEnum8(JobStatus, {
|
|
823
832
|
message: `Status must be one of: ${Object.values(JobStatus).join(", ")}`
|
|
824
833
|
})
|
|
825
834
|
], JobStatusDto.prototype, "status", 2);
|
|
826
835
|
|
|
827
836
|
// src/modules/job/dto/job-id-param.dto.ts
|
|
828
|
-
import { IsUUID as
|
|
837
|
+
import { IsUUID as IsUUID10 } from "class-validator";
|
|
829
838
|
var JobIdParamDto = class {
|
|
830
839
|
};
|
|
831
840
|
__decorateClass([
|
|
832
|
-
|
|
841
|
+
IsUUID10("4", {
|
|
833
842
|
message: "Invalid job ID. It must be a valid UUID version 4."
|
|
834
843
|
})
|
|
835
844
|
], JobIdParamDto.prototype, "id", 2);
|
|
@@ -847,7 +856,7 @@ var PROFILE_PATTERN = {
|
|
|
847
856
|
// src/modules/user/freelancer-profile/dto/freelancer-change-password.dto.ts
|
|
848
857
|
import {
|
|
849
858
|
IsString as IsString15,
|
|
850
|
-
IsNotEmpty as
|
|
859
|
+
IsNotEmpty as IsNotEmpty28,
|
|
851
860
|
MaxLength as MaxLength8,
|
|
852
861
|
MinLength as MinLength7,
|
|
853
862
|
Matches as Matches7
|
|
@@ -855,11 +864,11 @@ import {
|
|
|
855
864
|
var FreelancerChangePasswordDto = class {
|
|
856
865
|
};
|
|
857
866
|
__decorateClass([
|
|
858
|
-
|
|
867
|
+
IsNotEmpty28({ message: "Please enter Old Password." }),
|
|
859
868
|
IsString15()
|
|
860
869
|
], FreelancerChangePasswordDto.prototype, "oldPassword", 2);
|
|
861
870
|
__decorateClass([
|
|
862
|
-
|
|
871
|
+
IsNotEmpty28({ message: "Please enter New Password." }),
|
|
863
872
|
IsString15(),
|
|
864
873
|
MinLength7(6),
|
|
865
874
|
MaxLength8(32),
|
|
@@ -951,7 +960,7 @@ var BANK_PATTERN = {
|
|
|
951
960
|
// src/modules/bank/dto/freelancer-bank-details.dto.ts
|
|
952
961
|
import {
|
|
953
962
|
IsEnum as IsEnum10,
|
|
954
|
-
IsNotEmpty as
|
|
963
|
+
IsNotEmpty as IsNotEmpty29,
|
|
955
964
|
IsOptional as IsOptional9,
|
|
956
965
|
ValidateIf as ValidateIf2
|
|
957
966
|
} from "class-validator";
|
|
@@ -963,41 +972,41 @@ var BankAccountScope = /* @__PURE__ */ ((BankAccountScope2) => {
|
|
|
963
972
|
var FreelancerBankDetailsDto = class {
|
|
964
973
|
};
|
|
965
974
|
__decorateClass([
|
|
966
|
-
|
|
975
|
+
IsNotEmpty29({ message: "Please enter Account Holder Name." })
|
|
967
976
|
], FreelancerBankDetailsDto.prototype, "name", 2);
|
|
968
977
|
__decorateClass([
|
|
969
|
-
|
|
978
|
+
IsNotEmpty29({ message: "Please enter Mobile Number." })
|
|
970
979
|
], FreelancerBankDetailsDto.prototype, "mobile", 2);
|
|
971
980
|
__decorateClass([
|
|
972
|
-
|
|
981
|
+
IsNotEmpty29({ message: "Please enter Email." })
|
|
973
982
|
], FreelancerBankDetailsDto.prototype, "email", 2);
|
|
974
983
|
__decorateClass([
|
|
975
984
|
IsOptional9()
|
|
976
985
|
], FreelancerBankDetailsDto.prototype, "address", 2);
|
|
977
986
|
__decorateClass([
|
|
978
|
-
|
|
987
|
+
IsNotEmpty29({ message: "Please enter Account Number." })
|
|
979
988
|
], FreelancerBankDetailsDto.prototype, "accountNumber", 2);
|
|
980
989
|
__decorateClass([
|
|
981
|
-
|
|
990
|
+
IsNotEmpty29({ message: "Please enter Bank Name." })
|
|
982
991
|
], FreelancerBankDetailsDto.prototype, "bankName", 2);
|
|
983
992
|
__decorateClass([
|
|
984
|
-
|
|
993
|
+
IsNotEmpty29({ message: "Please enter Branch Name." })
|
|
985
994
|
], FreelancerBankDetailsDto.prototype, "branchName", 2);
|
|
986
995
|
__decorateClass([
|
|
987
996
|
ValidateIf2((dto) => dto.accountScope === "DOMESTIC"),
|
|
988
|
-
|
|
997
|
+
IsNotEmpty29({ message: "IFSC Code is required for DOMESTIC accounts." })
|
|
989
998
|
], FreelancerBankDetailsDto.prototype, "ifscCode", 2);
|
|
990
999
|
__decorateClass([
|
|
991
1000
|
ValidateIf2((dto) => dto.accountScope === "INTERNATIONAL"),
|
|
992
|
-
|
|
1001
|
+
IsNotEmpty29({ message: "Routing Number/Sort Code is required for INTERNATIONAL accounts." })
|
|
993
1002
|
], FreelancerBankDetailsDto.prototype, "routingNo", 2);
|
|
994
1003
|
__decorateClass([
|
|
995
1004
|
ValidateIf2((dto) => dto.accountScope === "INTERNATIONAL"),
|
|
996
|
-
|
|
1005
|
+
IsNotEmpty29({ message: "ABA Number is required for INTERNATIONAL accounts." })
|
|
997
1006
|
], FreelancerBankDetailsDto.prototype, "abaNumber", 2);
|
|
998
1007
|
__decorateClass([
|
|
999
1008
|
ValidateIf2((dto) => dto.accountScope === "INTERNATIONAL"),
|
|
1000
|
-
|
|
1009
|
+
IsNotEmpty29({ message: "IBAN is required for INTERNATIONAL accounts." })
|
|
1001
1010
|
], FreelancerBankDetailsDto.prototype, "iban", 2);
|
|
1002
1011
|
__decorateClass([
|
|
1003
1012
|
IsOptional9()
|
|
@@ -1061,7 +1070,7 @@ var RATING_PATTERN = {
|
|
|
1061
1070
|
import {
|
|
1062
1071
|
IsEnum as IsEnum12,
|
|
1063
1072
|
IsInt,
|
|
1064
|
-
IsNotEmpty as
|
|
1073
|
+
IsNotEmpty as IsNotEmpty30,
|
|
1065
1074
|
IsOptional as IsOptional10,
|
|
1066
1075
|
IsString as IsString17,
|
|
1067
1076
|
Max,
|
|
@@ -1483,12 +1492,27 @@ var OnboardingStepEnum = /* @__PURE__ */ ((OnboardingStepEnum2) => {
|
|
|
1483
1492
|
OnboardingStepEnum2["SIGN_UP"] = "SIGN_UP";
|
|
1484
1493
|
OnboardingStepEnum2["UPLOAD_RESUME"] = "UPLOAD_RESUME";
|
|
1485
1494
|
OnboardingStepEnum2["PARSE_RESUME"] = "PARSE_RESUME";
|
|
1495
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_INITIATED"] = "MCQ_ASSESSMENT_INITIATED";
|
|
1496
|
+
OnboardingStepEnum2["MCQ_ASSESSMENT_COMPLETED"] = "MCQ_ASSESSMENT_COMPLETED";
|
|
1486
1497
|
OnboardingStepEnum2["AI_ASSESSMENT_INITIATED"] = "AI_ASSESSMENT_INITIATED";
|
|
1487
1498
|
OnboardingStepEnum2["AI_ASSESSMENT_COMPLETED"] = "AI_ASSESSMENT_COMPLETED";
|
|
1488
1499
|
OnboardingStepEnum2["CODING_CHALLENGE"] = "CODING_CHALLENGE";
|
|
1489
1500
|
OnboardingStepEnum2["PROFILE_COMPLETION"] = "PROFILE_COMPLETION";
|
|
1490
1501
|
return OnboardingStepEnum2;
|
|
1491
1502
|
})(OnboardingStepEnum || {});
|
|
1503
|
+
var McqStatusEnum = /* @__PURE__ */ ((McqStatusEnum2) => {
|
|
1504
|
+
McqStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1505
|
+
McqStatusEnum2["PASSED"] = "PASSED";
|
|
1506
|
+
McqStatusEnum2["FAILED"] = "FAILED";
|
|
1507
|
+
return McqStatusEnum2;
|
|
1508
|
+
})(McqStatusEnum || {});
|
|
1509
|
+
var AiAssessmentStatusEnum = /* @__PURE__ */ ((AiAssessmentStatusEnum2) => {
|
|
1510
|
+
AiAssessmentStatusEnum2["NOT_ATTEMPTED"] = "NOT_ATTEMPTED";
|
|
1511
|
+
AiAssessmentStatusEnum2["PASSED"] = "PASSED";
|
|
1512
|
+
AiAssessmentStatusEnum2["FAILED"] = "FAILED";
|
|
1513
|
+
AiAssessmentStatusEnum2["SKIPPED"] = "SKIPPED";
|
|
1514
|
+
return AiAssessmentStatusEnum2;
|
|
1515
|
+
})(AiAssessmentStatusEnum || {});
|
|
1492
1516
|
var FreelancerProfile = class extends BaseEntity {
|
|
1493
1517
|
};
|
|
1494
1518
|
// individual index to find profile by user
|
|
@@ -1525,6 +1549,28 @@ __decorateClass([
|
|
|
1525
1549
|
__decorateClass([
|
|
1526
1550
|
Column8({ name: "resume_score", type: "jsonb", nullable: true })
|
|
1527
1551
|
], FreelancerProfile.prototype, "resumeScore", 2);
|
|
1552
|
+
__decorateClass([
|
|
1553
|
+
Column8({
|
|
1554
|
+
name: "mcq_status",
|
|
1555
|
+
type: "enum",
|
|
1556
|
+
enum: McqStatusEnum,
|
|
1557
|
+
nullable: true
|
|
1558
|
+
})
|
|
1559
|
+
], FreelancerProfile.prototype, "mcqStatus", 2);
|
|
1560
|
+
__decorateClass([
|
|
1561
|
+
Column8({ name: "mcq_score", type: "integer", nullable: true })
|
|
1562
|
+
], FreelancerProfile.prototype, "mcqScore", 2);
|
|
1563
|
+
__decorateClass([
|
|
1564
|
+
Column8({ name: "is_eligible_for_ai_assessment", type: "boolean", nullable: true })
|
|
1565
|
+
], FreelancerProfile.prototype, "isEligibleForAiAssessment", 2);
|
|
1566
|
+
__decorateClass([
|
|
1567
|
+
Column8({
|
|
1568
|
+
name: "ai_assessment_status",
|
|
1569
|
+
type: "enum",
|
|
1570
|
+
enum: AiAssessmentStatusEnum,
|
|
1571
|
+
nullable: true
|
|
1572
|
+
})
|
|
1573
|
+
], FreelancerProfile.prototype, "aiAssessmentStatus", 2);
|
|
1528
1574
|
__decorateClass([
|
|
1529
1575
|
Column8({ name: "is_developer", type: "boolean", default: false })
|
|
1530
1576
|
], FreelancerProfile.prototype, "isDeveloper", 2);
|
|
@@ -3184,7 +3230,7 @@ var CreateRatingDto = class {
|
|
|
3184
3230
|
};
|
|
3185
3231
|
__decorateClass([
|
|
3186
3232
|
IsInt({ message: "Reviewee ID must be a valid integer" }),
|
|
3187
|
-
|
|
3233
|
+
IsNotEmpty30({ message: "Reviewee ID is required" })
|
|
3188
3234
|
], CreateRatingDto.prototype, "revieweeId", 2);
|
|
3189
3235
|
__decorateClass([
|
|
3190
3236
|
IsEnum12(RatingTypeEnum, {
|
|
@@ -3214,17 +3260,17 @@ var COMPANY_ROLES_PATTERNS = {
|
|
|
3214
3260
|
};
|
|
3215
3261
|
|
|
3216
3262
|
// src/modules/company-role/dto/create-company-role.dto.ts
|
|
3217
|
-
import { ArrayNotEmpty as ArrayNotEmpty2, IsArray as IsArray2, IsBoolean as IsBoolean6, IsInt as IsInt2, IsNotEmpty as
|
|
3263
|
+
import { ArrayNotEmpty as ArrayNotEmpty2, IsArray as IsArray2, IsBoolean as IsBoolean6, IsInt as IsInt2, IsNotEmpty as IsNotEmpty31, IsOptional as IsOptional11 } from "class-validator";
|
|
3218
3264
|
var CreateCompanyRoleDto = class {
|
|
3219
3265
|
};
|
|
3220
3266
|
__decorateClass([
|
|
3221
|
-
|
|
3267
|
+
IsNotEmpty31({ message: "Please enter company role name." })
|
|
3222
3268
|
], CreateCompanyRoleDto.prototype, "name", 2);
|
|
3223
3269
|
__decorateClass([
|
|
3224
|
-
|
|
3270
|
+
IsNotEmpty31({ message: "Please enter company role slug" })
|
|
3225
3271
|
], CreateCompanyRoleDto.prototype, "slug", 2);
|
|
3226
3272
|
__decorateClass([
|
|
3227
|
-
|
|
3273
|
+
IsNotEmpty31({ message: "Please enter description" })
|
|
3228
3274
|
], CreateCompanyRoleDto.prototype, "description", 2);
|
|
3229
3275
|
__decorateClass([
|
|
3230
3276
|
IsArray2({ message: "Permission IDs must be an array." }),
|
|
@@ -3237,17 +3283,17 @@ __decorateClass([
|
|
|
3237
3283
|
], CreateCompanyRoleDto.prototype, "isActive", 2);
|
|
3238
3284
|
|
|
3239
3285
|
// src/modules/company-role/dto/update-company-role.dto.ts
|
|
3240
|
-
import { ArrayNotEmpty as ArrayNotEmpty3, IsArray as IsArray3, IsBoolean as IsBoolean7, IsInt as IsInt3, IsNotEmpty as
|
|
3286
|
+
import { ArrayNotEmpty as ArrayNotEmpty3, IsArray as IsArray3, IsBoolean as IsBoolean7, IsInt as IsInt3, IsNotEmpty as IsNotEmpty32, IsOptional as IsOptional12 } from "class-validator";
|
|
3241
3287
|
var UpdateCompanyRoleDto = class {
|
|
3242
3288
|
};
|
|
3243
3289
|
__decorateClass([
|
|
3244
|
-
|
|
3290
|
+
IsNotEmpty32({ message: "Please enter company name." })
|
|
3245
3291
|
], UpdateCompanyRoleDto.prototype, "name", 2);
|
|
3246
3292
|
__decorateClass([
|
|
3247
|
-
|
|
3293
|
+
IsNotEmpty32({ message: "Please enter slug" })
|
|
3248
3294
|
], UpdateCompanyRoleDto.prototype, "slug", 2);
|
|
3249
3295
|
__decorateClass([
|
|
3250
|
-
|
|
3296
|
+
IsNotEmpty32({ message: "Please enter description" })
|
|
3251
3297
|
], UpdateCompanyRoleDto.prototype, "description", 2);
|
|
3252
3298
|
__decorateClass([
|
|
3253
3299
|
IsArray3({ message: "Permission IDs must be an array." }),
|
|
@@ -3276,7 +3322,7 @@ var FREELANCER_EXPERIENCE_PATTERN = {
|
|
|
3276
3322
|
// src/modules/user/freelancer-experience/dto/freelancer-experience.dto.ts
|
|
3277
3323
|
import {
|
|
3278
3324
|
ArrayMinSize,
|
|
3279
|
-
IsNotEmpty as
|
|
3325
|
+
IsNotEmpty as IsNotEmpty33,
|
|
3280
3326
|
IsOptional as IsOptional13,
|
|
3281
3327
|
IsString as IsString20,
|
|
3282
3328
|
MaxLength as MaxLength10,
|
|
@@ -3289,19 +3335,19 @@ __decorateClass([
|
|
|
3289
3335
|
IsOptional13()
|
|
3290
3336
|
], ExperienceDto.prototype, "uuid", 2);
|
|
3291
3337
|
__decorateClass([
|
|
3292
|
-
|
|
3338
|
+
IsNotEmpty33(),
|
|
3293
3339
|
IsString20()
|
|
3294
3340
|
], ExperienceDto.prototype, "companyName", 2);
|
|
3295
3341
|
__decorateClass([
|
|
3296
|
-
|
|
3342
|
+
IsNotEmpty33(),
|
|
3297
3343
|
IsString20()
|
|
3298
3344
|
], ExperienceDto.prototype, "designation", 2);
|
|
3299
3345
|
__decorateClass([
|
|
3300
|
-
|
|
3346
|
+
IsNotEmpty33(),
|
|
3301
3347
|
IsString20()
|
|
3302
3348
|
], ExperienceDto.prototype, "jobDuration", 2);
|
|
3303
3349
|
__decorateClass([
|
|
3304
|
-
|
|
3350
|
+
IsNotEmpty33(),
|
|
3305
3351
|
IsString20(),
|
|
3306
3352
|
MaxLength10(500, { message: "Description must not exceed 500 characters" })
|
|
3307
3353
|
], ExperienceDto.prototype, "description", 2);
|
|
@@ -3326,14 +3372,14 @@ var COMPANY_MEMBERS_PATTERNS = {
|
|
|
3326
3372
|
};
|
|
3327
3373
|
|
|
3328
3374
|
// src/modules/company-member/dto/create-company-member.dto.ts
|
|
3329
|
-
import { ArrayNotEmpty as ArrayNotEmpty4, IsArray as IsArray4, IsInt as IsInt4, IsNotEmpty as
|
|
3375
|
+
import { ArrayNotEmpty as ArrayNotEmpty4, IsArray as IsArray4, IsInt as IsInt4, IsNotEmpty as IsNotEmpty34 } from "class-validator";
|
|
3330
3376
|
var CreateCompanyMemberDto = class {
|
|
3331
3377
|
};
|
|
3332
3378
|
__decorateClass([
|
|
3333
|
-
|
|
3379
|
+
IsNotEmpty34({ message: "Please enter name." })
|
|
3334
3380
|
], CreateCompanyMemberDto.prototype, "name", 2);
|
|
3335
3381
|
__decorateClass([
|
|
3336
|
-
|
|
3382
|
+
IsNotEmpty34({ message: "Please enter email" })
|
|
3337
3383
|
], CreateCompanyMemberDto.prototype, "email", 2);
|
|
3338
3384
|
__decorateClass([
|
|
3339
3385
|
IsArray4({ message: "Role IDs must be an array." }),
|
|
@@ -3342,14 +3388,14 @@ __decorateClass([
|
|
|
3342
3388
|
], CreateCompanyMemberDto.prototype, "roleIds", 2);
|
|
3343
3389
|
|
|
3344
3390
|
// src/modules/company-member/dto/update-company-member.dto.ts
|
|
3345
|
-
import { ArrayNotEmpty as ArrayNotEmpty5, IsArray as IsArray5, IsInt as IsInt5, IsNotEmpty as
|
|
3391
|
+
import { ArrayNotEmpty as ArrayNotEmpty5, IsArray as IsArray5, IsInt as IsInt5, IsNotEmpty as IsNotEmpty35 } from "class-validator";
|
|
3346
3392
|
var UpdateCompanyMemberDto = class {
|
|
3347
3393
|
};
|
|
3348
3394
|
__decorateClass([
|
|
3349
|
-
|
|
3395
|
+
IsNotEmpty35({ message: "Please enter name." })
|
|
3350
3396
|
], UpdateCompanyMemberDto.prototype, "name", 2);
|
|
3351
3397
|
__decorateClass([
|
|
3352
|
-
|
|
3398
|
+
IsNotEmpty35({ message: "Please enter email" })
|
|
3353
3399
|
], UpdateCompanyMemberDto.prototype, "email", 2);
|
|
3354
3400
|
__decorateClass([
|
|
3355
3401
|
IsArray5({ message: "Role IDs must be an array." }),
|
|
@@ -3372,7 +3418,7 @@ var FREELANCER_EDUCATION_PATTERN = {
|
|
|
3372
3418
|
};
|
|
3373
3419
|
|
|
3374
3420
|
// src/modules/user/freelancer-education/dto/freelancer-education.dto.ts
|
|
3375
|
-
import { IsArray as IsArray6, ValidateNested as ValidateNested2, IsString as IsString23, IsNotEmpty as
|
|
3421
|
+
import { IsArray as IsArray6, ValidateNested as ValidateNested2, IsString as IsString23, IsNotEmpty as IsNotEmpty36, IsOptional as IsOptional16, ArrayMinSize as ArrayMinSize2 } from "class-validator";
|
|
3376
3422
|
import { Type as Type3 } from "class-transformer";
|
|
3377
3423
|
var EducationDto = class {
|
|
3378
3424
|
};
|
|
@@ -3381,15 +3427,15 @@ __decorateClass([
|
|
|
3381
3427
|
], EducationDto.prototype, "uuid", 2);
|
|
3382
3428
|
__decorateClass([
|
|
3383
3429
|
IsString23(),
|
|
3384
|
-
|
|
3430
|
+
IsNotEmpty36({ message: "Please Enter Degree " })
|
|
3385
3431
|
], EducationDto.prototype, "degree", 2);
|
|
3386
3432
|
__decorateClass([
|
|
3387
3433
|
IsString23(),
|
|
3388
|
-
|
|
3434
|
+
IsNotEmpty36({ message: "Please Enter University " })
|
|
3389
3435
|
], EducationDto.prototype, "university", 2);
|
|
3390
3436
|
__decorateClass([
|
|
3391
3437
|
IsString23(),
|
|
3392
|
-
|
|
3438
|
+
IsNotEmpty36({ message: "Please Enter Year of Graduation " })
|
|
3393
3439
|
], EducationDto.prototype, "yearOfGraduation", 2);
|
|
3394
3440
|
var FreelancerEducationDto = class {
|
|
3395
3441
|
};
|
|
@@ -3407,7 +3453,7 @@ var FREELANCER_PROJECT_PATTERN = {
|
|
|
3407
3453
|
};
|
|
3408
3454
|
|
|
3409
3455
|
// src/modules/user/freelancer-project/dto/freelancer-project.dto.ts
|
|
3410
|
-
import { IsArray as IsArray7, ValidateNested as ValidateNested3, IsString as IsString24, IsNotEmpty as
|
|
3456
|
+
import { IsArray as IsArray7, ValidateNested as ValidateNested3, IsString as IsString24, IsNotEmpty as IsNotEmpty37, IsOptional as IsOptional17, IsDateString, MaxLength as MaxLength12, ArrayMinSize as ArrayMinSize3 } from "class-validator";
|
|
3411
3457
|
import { Type as Type4 } from "class-transformer";
|
|
3412
3458
|
var ProjectDto = class {
|
|
3413
3459
|
};
|
|
@@ -3416,15 +3462,15 @@ __decorateClass([
|
|
|
3416
3462
|
], ProjectDto.prototype, "uuid", 2);
|
|
3417
3463
|
__decorateClass([
|
|
3418
3464
|
IsString24(),
|
|
3419
|
-
|
|
3465
|
+
IsNotEmpty37({ message: "Please Enter Project Name " })
|
|
3420
3466
|
], ProjectDto.prototype, "projectName", 2);
|
|
3421
3467
|
__decorateClass([
|
|
3422
3468
|
IsDateString(),
|
|
3423
|
-
|
|
3469
|
+
IsNotEmpty37({ message: "Please Enter Start Date " })
|
|
3424
3470
|
], ProjectDto.prototype, "startDate", 2);
|
|
3425
3471
|
__decorateClass([
|
|
3426
3472
|
IsDateString(),
|
|
3427
|
-
|
|
3473
|
+
IsNotEmpty37({ message: "Please Enter End Date " })
|
|
3428
3474
|
], ProjectDto.prototype, "endDate", 2);
|
|
3429
3475
|
__decorateClass([
|
|
3430
3476
|
IsOptional17(),
|
|
@@ -3446,11 +3492,11 @@ __decorateClass([
|
|
|
3446
3492
|
], CaseStudyDto.prototype, "uuid", 2);
|
|
3447
3493
|
__decorateClass([
|
|
3448
3494
|
IsString24(),
|
|
3449
|
-
|
|
3495
|
+
IsNotEmpty37({ message: "Please Enter Project Name " })
|
|
3450
3496
|
], CaseStudyDto.prototype, "projectName", 2);
|
|
3451
3497
|
__decorateClass([
|
|
3452
3498
|
IsString24(),
|
|
3453
|
-
|
|
3499
|
+
IsNotEmpty37({ message: "Please Enter Case Study Link " })
|
|
3454
3500
|
], CaseStudyDto.prototype, "caseStudyLink", 2);
|
|
3455
3501
|
__decorateClass([
|
|
3456
3502
|
IsOptional17(),
|
|
@@ -3534,7 +3580,7 @@ import {
|
|
|
3534
3580
|
IsUrl as IsUrl3,
|
|
3535
3581
|
Min as Min3,
|
|
3536
3582
|
MaxLength as MaxLength14,
|
|
3537
|
-
IsNotEmpty as
|
|
3583
|
+
IsNotEmpty as IsNotEmpty39,
|
|
3538
3584
|
MinLength as MinLength12,
|
|
3539
3585
|
Matches as Matches8,
|
|
3540
3586
|
ValidateIf as ValidateIf3
|
|
@@ -3568,7 +3614,7 @@ __decorateClass([
|
|
|
3568
3614
|
IsString26({ message: "Mobile must be a string (e.g., 1243253534)" })
|
|
3569
3615
|
], CreateFreelancerDto.prototype, "mobile", 2);
|
|
3570
3616
|
__decorateClass([
|
|
3571
|
-
|
|
3617
|
+
IsNotEmpty39({ message: "Please enter password." }),
|
|
3572
3618
|
MinLength12(6),
|
|
3573
3619
|
MaxLength14(32),
|
|
3574
3620
|
Matches8(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
|
|
@@ -3576,7 +3622,7 @@ __decorateClass([
|
|
|
3576
3622
|
})
|
|
3577
3623
|
], CreateFreelancerDto.prototype, "password", 2);
|
|
3578
3624
|
__decorateClass([
|
|
3579
|
-
|
|
3625
|
+
IsNotEmpty39({ message: "Please enter confirm password." }),
|
|
3580
3626
|
Match("confirmPassword", { message: "Passwords do not match" })
|
|
3581
3627
|
], CreateFreelancerDto.prototype, "confirmPassword", 2);
|
|
3582
3628
|
__decorateClass([
|
|
@@ -3608,7 +3654,7 @@ __decorateClass([
|
|
|
3608
3654
|
], CreateFreelancerDto.prototype, "isImmediateJoiner", 2);
|
|
3609
3655
|
__decorateClass([
|
|
3610
3656
|
ValidateIf3((o) => o.isImmediateJoiner === false),
|
|
3611
|
-
|
|
3657
|
+
IsNotEmpty39({ message: "Please enter availability to join." })
|
|
3612
3658
|
], CreateFreelancerDto.prototype, "availabilityToJoin", 2);
|
|
3613
3659
|
__decorateClass([
|
|
3614
3660
|
IsOptional19(),
|
|
@@ -3644,7 +3690,7 @@ import {
|
|
|
3644
3690
|
MaxLength as MaxLength15,
|
|
3645
3691
|
MinLength as MinLength13,
|
|
3646
3692
|
Matches as Matches9,
|
|
3647
|
-
IsNotEmpty as
|
|
3693
|
+
IsNotEmpty as IsNotEmpty40,
|
|
3648
3694
|
ValidateIf as ValidateIf4
|
|
3649
3695
|
} from "class-validator";
|
|
3650
3696
|
import { Type as Type7 } from "class-transformer";
|
|
@@ -3721,7 +3767,7 @@ __decorateClass([
|
|
|
3721
3767
|
], UpdateFreelancerDto.prototype, "isImmediateJoiner", 2);
|
|
3722
3768
|
__decorateClass([
|
|
3723
3769
|
ValidateIf4((o) => o.isImmediateJoiner === false),
|
|
3724
|
-
|
|
3770
|
+
IsNotEmpty40({ message: "Please enter availability to join." })
|
|
3725
3771
|
], UpdateFreelancerDto.prototype, "availabilityToJoin", 2);
|
|
3726
3772
|
__decorateClass([
|
|
3727
3773
|
IsOptional20(),
|
|
@@ -3759,7 +3805,7 @@ var CLIENT_ADMIN_PATTERNS = {
|
|
|
3759
3805
|
|
|
3760
3806
|
// src/modules/client-admin/dto/create-client.dto.ts
|
|
3761
3807
|
import {
|
|
3762
|
-
IsNotEmpty as
|
|
3808
|
+
IsNotEmpty as IsNotEmpty41,
|
|
3763
3809
|
IsEmail as IsEmail13,
|
|
3764
3810
|
IsOptional as IsOptional21,
|
|
3765
3811
|
IsString as IsString28,
|
|
@@ -3784,19 +3830,19 @@ var CreateClientHiringTypeEnum = /* @__PURE__ */ ((CreateClientHiringTypeEnum2)
|
|
|
3784
3830
|
var CreateClientDto = class {
|
|
3785
3831
|
};
|
|
3786
3832
|
__decorateClass([
|
|
3787
|
-
|
|
3833
|
+
IsNotEmpty41({ message: "Please enter first name." }),
|
|
3788
3834
|
IsString28()
|
|
3789
3835
|
], CreateClientDto.prototype, "firstName", 2);
|
|
3790
3836
|
__decorateClass([
|
|
3791
|
-
|
|
3837
|
+
IsNotEmpty41({ message: "Please enter last name." }),
|
|
3792
3838
|
IsString28()
|
|
3793
3839
|
], CreateClientDto.prototype, "lastName", 2);
|
|
3794
3840
|
__decorateClass([
|
|
3795
|
-
|
|
3841
|
+
IsNotEmpty41({ message: "Please enter email." }),
|
|
3796
3842
|
IsEmail13()
|
|
3797
3843
|
], CreateClientDto.prototype, "email", 2);
|
|
3798
3844
|
__decorateClass([
|
|
3799
|
-
|
|
3845
|
+
IsNotEmpty41({ message: "Please enter password." }),
|
|
3800
3846
|
MinLength14(6),
|
|
3801
3847
|
MaxLength16(32),
|
|
3802
3848
|
Matches10(/^(?=.*[A-Za-z])(?=.*\d)(?=.*[@$!%*?&])/, {
|
|
@@ -3804,31 +3850,31 @@ __decorateClass([
|
|
|
3804
3850
|
})
|
|
3805
3851
|
], CreateClientDto.prototype, "password", 2);
|
|
3806
3852
|
__decorateClass([
|
|
3807
|
-
|
|
3853
|
+
IsNotEmpty41({ message: "Please enter confirm password." }),
|
|
3808
3854
|
Match("confirmPassword", { message: "Passwords do not match" })
|
|
3809
3855
|
], CreateClientDto.prototype, "confirmPassword", 2);
|
|
3810
3856
|
__decorateClass([
|
|
3811
|
-
|
|
3857
|
+
IsNotEmpty41({ message: "Please enter company name." }),
|
|
3812
3858
|
IsString28()
|
|
3813
3859
|
], CreateClientDto.prototype, "companyName", 2);
|
|
3814
3860
|
__decorateClass([
|
|
3815
3861
|
IsArray9({ message: "Skills should be an array." }),
|
|
3816
|
-
|
|
3862
|
+
IsNotEmpty41({ message: "Please enter skills." })
|
|
3817
3863
|
], CreateClientDto.prototype, "skills", 2);
|
|
3818
3864
|
__decorateClass([
|
|
3819
|
-
|
|
3865
|
+
IsNotEmpty41({ message: "Please specify required freelancer count." }),
|
|
3820
3866
|
IsString28()
|
|
3821
3867
|
], CreateClientDto.prototype, "requiredFreelancer", 2);
|
|
3822
3868
|
__decorateClass([
|
|
3823
|
-
|
|
3869
|
+
IsNotEmpty41({ message: "Please specify the kind of hiring." }),
|
|
3824
3870
|
IsEnum15(CreateClientHiringTypeEnum)
|
|
3825
3871
|
], CreateClientDto.prototype, "kindOfHiring", 2);
|
|
3826
3872
|
__decorateClass([
|
|
3827
|
-
|
|
3873
|
+
IsNotEmpty41({ message: "Please specify the mode of hire." }),
|
|
3828
3874
|
IsEnum15(CreateClientHiringModeEnum)
|
|
3829
3875
|
], CreateClientDto.prototype, "modeOfHire", 2);
|
|
3830
3876
|
__decorateClass([
|
|
3831
|
-
|
|
3877
|
+
IsNotEmpty41({ message: "Please let us know how you found us." }),
|
|
3832
3878
|
IsString28()
|
|
3833
3879
|
], CreateClientDto.prototype, "foundUsOn", 2);
|
|
3834
3880
|
__decorateClass([
|
|
@@ -3841,17 +3887,17 @@ __decorateClass([
|
|
|
3841
3887
|
], CreateClientDto.prototype, "foundUsOnDetail", 2);
|
|
3842
3888
|
|
|
3843
3889
|
// src/modules/client-admin/dto/update-client-status.dto.ts
|
|
3844
|
-
import { IsString as IsString29, IsNotEmpty as
|
|
3890
|
+
import { IsString as IsString29, IsNotEmpty as IsNotEmpty42 } from "class-validator";
|
|
3845
3891
|
var UpdateClientAccountStatusDto = class {
|
|
3846
3892
|
};
|
|
3847
3893
|
__decorateClass([
|
|
3848
|
-
|
|
3894
|
+
IsNotEmpty42({ message: "Please enter account status." }),
|
|
3849
3895
|
IsString29()
|
|
3850
3896
|
], UpdateClientAccountStatusDto.prototype, "accountStatus", 2);
|
|
3851
3897
|
|
|
3852
3898
|
// src/modules/client-admin/dto/update-client.dto.ts
|
|
3853
3899
|
import {
|
|
3854
|
-
IsNotEmpty as
|
|
3900
|
+
IsNotEmpty as IsNotEmpty43,
|
|
3855
3901
|
IsEmail as IsEmail14,
|
|
3856
3902
|
IsOptional as IsOptional22,
|
|
3857
3903
|
IsString as IsString30,
|
|
@@ -3876,15 +3922,15 @@ var UpdateClientHiringTypeEnum = /* @__PURE__ */ ((UpdateClientHiringTypeEnum2)
|
|
|
3876
3922
|
var UpdateClientDto = class {
|
|
3877
3923
|
};
|
|
3878
3924
|
__decorateClass([
|
|
3879
|
-
|
|
3925
|
+
IsNotEmpty43({ message: "Please enter first name." }),
|
|
3880
3926
|
IsString30()
|
|
3881
3927
|
], UpdateClientDto.prototype, "firstName", 2);
|
|
3882
3928
|
__decorateClass([
|
|
3883
|
-
|
|
3929
|
+
IsNotEmpty43({ message: "Please enter last name." }),
|
|
3884
3930
|
IsString30()
|
|
3885
3931
|
], UpdateClientDto.prototype, "lastName", 2);
|
|
3886
3932
|
__decorateClass([
|
|
3887
|
-
|
|
3933
|
+
IsNotEmpty43({ message: "Please enter email." }),
|
|
3888
3934
|
IsEmail14()
|
|
3889
3935
|
], UpdateClientDto.prototype, "email", 2);
|
|
3890
3936
|
__decorateClass([
|
|
@@ -3896,27 +3942,27 @@ __decorateClass([
|
|
|
3896
3942
|
})
|
|
3897
3943
|
], UpdateClientDto.prototype, "password", 2);
|
|
3898
3944
|
__decorateClass([
|
|
3899
|
-
|
|
3945
|
+
IsNotEmpty43({ message: "Please enter company name." }),
|
|
3900
3946
|
IsString30()
|
|
3901
3947
|
], UpdateClientDto.prototype, "companyName", 2);
|
|
3902
3948
|
__decorateClass([
|
|
3903
3949
|
IsArray10({ message: "Skills should be an array." }),
|
|
3904
|
-
|
|
3950
|
+
IsNotEmpty43({ message: "Please enter skills." })
|
|
3905
3951
|
], UpdateClientDto.prototype, "skills", 2);
|
|
3906
3952
|
__decorateClass([
|
|
3907
|
-
|
|
3953
|
+
IsNotEmpty43({ message: "Please specify required freelancer count." }),
|
|
3908
3954
|
IsString30()
|
|
3909
3955
|
], UpdateClientDto.prototype, "requiredFreelancer", 2);
|
|
3910
3956
|
__decorateClass([
|
|
3911
|
-
|
|
3957
|
+
IsNotEmpty43({ message: "Please specify the kind of hiring." }),
|
|
3912
3958
|
IsEnum16(UpdateClientHiringTypeEnum)
|
|
3913
3959
|
], UpdateClientDto.prototype, "kindOfHiring", 2);
|
|
3914
3960
|
__decorateClass([
|
|
3915
|
-
|
|
3961
|
+
IsNotEmpty43({ message: "Please specify the mode of hire." }),
|
|
3916
3962
|
IsEnum16(UpdateClientHiringModeEnum)
|
|
3917
3963
|
], UpdateClientDto.prototype, "modeOfHire", 2);
|
|
3918
3964
|
__decorateClass([
|
|
3919
|
-
|
|
3965
|
+
IsNotEmpty43({ message: "Please let us know how you found us." }),
|
|
3920
3966
|
IsString30()
|
|
3921
3967
|
], UpdateClientDto.prototype, "foundUsOn", 2);
|
|
3922
3968
|
__decorateClass([
|
|
@@ -3935,7 +3981,7 @@ var FREELANCER_DECLARATION_PATTERN = {
|
|
|
3935
3981
|
};
|
|
3936
3982
|
|
|
3937
3983
|
// src/modules/user/freelancer-declaration/dto/freelancer-declaration.dto.ts
|
|
3938
|
-
import { IsOptional as IsOptional23, IsEnum as IsEnum17, IsString as IsString31, IsNotEmpty as
|
|
3984
|
+
import { IsOptional as IsOptional23, IsEnum as IsEnum17, IsString as IsString31, IsNotEmpty as IsNotEmpty44, IsIn as IsIn3 } from "class-validator";
|
|
3939
3985
|
var DocumentTypeEnum = /* @__PURE__ */ ((DocumentTypeEnum2) => {
|
|
3940
3986
|
DocumentTypeEnum2["AADHAAR"] = "AADHAAR_CARD";
|
|
3941
3987
|
DocumentTypeEnum2["PASSPORT"] = "PASSPORT";
|
|
@@ -3953,7 +3999,7 @@ __decorateClass([
|
|
|
3953
3999
|
IsEnum17(DocumentTypeEnum, { message: "Document type must be one of AADHAAR_CARD, PASSPORT, DRIVING_LICENSE, PAN_CARD" })
|
|
3954
4000
|
], FreelancerDeclarationDto.prototype, "documentType", 2);
|
|
3955
4001
|
__decorateClass([
|
|
3956
|
-
|
|
4002
|
+
IsNotEmpty44({ message: "Please accept the declaration " }),
|
|
3957
4003
|
IsString31(),
|
|
3958
4004
|
IsIn3([
|
|
3959
4005
|
"true"
|
|
@@ -3970,11 +4016,11 @@ var CMS_PATTERNS = {
|
|
|
3970
4016
|
};
|
|
3971
4017
|
|
|
3972
4018
|
// src/modules/cms/dto/create-cms.dto.ts
|
|
3973
|
-
import { IsBoolean as IsBoolean14, IsNotEmpty as
|
|
4019
|
+
import { IsBoolean as IsBoolean14, IsNotEmpty as IsNotEmpty45, IsOptional as IsOptional24 } from "class-validator";
|
|
3974
4020
|
var CreateCmsDto = class {
|
|
3975
4021
|
};
|
|
3976
4022
|
__decorateClass([
|
|
3977
|
-
|
|
4023
|
+
IsNotEmpty45({ message: "Please enter name." })
|
|
3978
4024
|
], CreateCmsDto.prototype, "title", 2);
|
|
3979
4025
|
__decorateClass([
|
|
3980
4026
|
IsOptional24()
|
|
@@ -3985,14 +4031,14 @@ __decorateClass([
|
|
|
3985
4031
|
], CreateCmsDto.prototype, "isActive", 2);
|
|
3986
4032
|
|
|
3987
4033
|
// src/modules/cms/dto/update-cms.dto.ts
|
|
3988
|
-
import { IsBoolean as IsBoolean15, IsNotEmpty as
|
|
4034
|
+
import { IsBoolean as IsBoolean15, IsNotEmpty as IsNotEmpty46, IsOptional as IsOptional25 } from "class-validator";
|
|
3989
4035
|
var UpdateCmsDto = class {
|
|
3990
4036
|
};
|
|
3991
4037
|
__decorateClass([
|
|
3992
4038
|
IsOptional25()
|
|
3993
4039
|
], UpdateCmsDto.prototype, "uuid", 2);
|
|
3994
4040
|
__decorateClass([
|
|
3995
|
-
|
|
4041
|
+
IsNotEmpty46({ message: "Please enter name." })
|
|
3996
4042
|
], UpdateCmsDto.prototype, "title", 2);
|
|
3997
4043
|
__decorateClass([
|
|
3998
4044
|
IsOptional25()
|
|
@@ -4033,7 +4079,7 @@ import {
|
|
|
4033
4079
|
IsOptional as IsOptional26,
|
|
4034
4080
|
IsArray as IsArray11,
|
|
4035
4081
|
IsDateString as IsDateString4,
|
|
4036
|
-
IsNotEmpty as
|
|
4082
|
+
IsNotEmpty as IsNotEmpty47,
|
|
4037
4083
|
ArrayNotEmpty as ArrayNotEmpty6,
|
|
4038
4084
|
Min as Min5,
|
|
4039
4085
|
IsNumber as IsNumber5
|
|
@@ -4054,7 +4100,7 @@ var AdminCreateJobInformationDto = class {
|
|
|
4054
4100
|
};
|
|
4055
4101
|
__decorateClass([
|
|
4056
4102
|
IsString32({ message: "Job role must be a string." }),
|
|
4057
|
-
|
|
4103
|
+
IsNotEmpty47({ message: "Job role is required." })
|
|
4058
4104
|
], AdminCreateJobInformationDto.prototype, "jobRole", 2);
|
|
4059
4105
|
__decorateClass([
|
|
4060
4106
|
IsOptional26(),
|
|
@@ -4082,15 +4128,15 @@ __decorateClass([
|
|
|
4082
4128
|
], AdminCreateJobInformationDto.prototype, "typeOfEmployment", 2);
|
|
4083
4129
|
__decorateClass([
|
|
4084
4130
|
IsString32({ message: "Onboarding Days must be a string." }),
|
|
4085
|
-
|
|
4131
|
+
IsNotEmpty47({ message: "Onboarding Days is required." })
|
|
4086
4132
|
], AdminCreateJobInformationDto.prototype, "onboardingTat", 2);
|
|
4087
4133
|
__decorateClass([
|
|
4088
4134
|
IsString32({ message: "Communication skills must be a string." }),
|
|
4089
|
-
|
|
4135
|
+
IsNotEmpty47({ message: "Communication skills are required." })
|
|
4090
4136
|
], AdminCreateJobInformationDto.prototype, "candidateCommunicationSkills", 2);
|
|
4091
4137
|
__decorateClass([
|
|
4092
4138
|
IsString32({ message: "Currency must be a string." }),
|
|
4093
|
-
|
|
4139
|
+
IsNotEmpty47({ message: "Currency is required." })
|
|
4094
4140
|
], AdminCreateJobInformationDto.prototype, "currency", 2);
|
|
4095
4141
|
__decorateClass([
|
|
4096
4142
|
Type8(() => Number),
|
|
@@ -4132,7 +4178,7 @@ import {
|
|
|
4132
4178
|
IsOptional as IsOptional27,
|
|
4133
4179
|
IsArray as IsArray12,
|
|
4134
4180
|
IsDateString as IsDateString5,
|
|
4135
|
-
IsNotEmpty as
|
|
4181
|
+
IsNotEmpty as IsNotEmpty48,
|
|
4136
4182
|
ArrayNotEmpty as ArrayNotEmpty7,
|
|
4137
4183
|
Min as Min6,
|
|
4138
4184
|
IsNumber as IsNumber6
|
|
@@ -4153,7 +4199,7 @@ var AdminUpdateJobInformationDto = class {
|
|
|
4153
4199
|
};
|
|
4154
4200
|
__decorateClass([
|
|
4155
4201
|
IsString33({ message: "Job role must be a string." }),
|
|
4156
|
-
|
|
4202
|
+
IsNotEmpty48({ message: "Job role is required." })
|
|
4157
4203
|
], AdminUpdateJobInformationDto.prototype, "jobRole", 2);
|
|
4158
4204
|
__decorateClass([
|
|
4159
4205
|
IsOptional27(),
|
|
@@ -4181,15 +4227,15 @@ __decorateClass([
|
|
|
4181
4227
|
], AdminUpdateJobInformationDto.prototype, "typeOfEmployment", 2);
|
|
4182
4228
|
__decorateClass([
|
|
4183
4229
|
IsString33({ message: "Onboarding Days must be a string." }),
|
|
4184
|
-
|
|
4230
|
+
IsNotEmpty48({ message: "Onboarding Days is required." })
|
|
4185
4231
|
], AdminUpdateJobInformationDto.prototype, "onboardingTat", 2);
|
|
4186
4232
|
__decorateClass([
|
|
4187
4233
|
IsString33({ message: "Communication skills must be a string." }),
|
|
4188
|
-
|
|
4234
|
+
IsNotEmpty48({ message: "Communication skills are required." })
|
|
4189
4235
|
], AdminUpdateJobInformationDto.prototype, "candidateCommunicationSkills", 2);
|
|
4190
4236
|
__decorateClass([
|
|
4191
4237
|
IsString33({ message: "Currency must be a string." }),
|
|
4192
|
-
|
|
4238
|
+
IsNotEmpty48({ message: "Currency is required." })
|
|
4193
4239
|
], AdminUpdateJobInformationDto.prototype, "currency", 2);
|
|
4194
4240
|
__decorateClass([
|
|
4195
4241
|
Type9(() => Number),
|
|
@@ -4643,6 +4689,7 @@ export {
|
|
|
4643
4689
|
AccountType,
|
|
4644
4690
|
AdminCreateJobInformationDto,
|
|
4645
4691
|
AdminUpdateJobInformationDto,
|
|
4692
|
+
AiAssessmentStatusEnum,
|
|
4646
4693
|
AnswerTypeEnum,
|
|
4647
4694
|
ApplicationStatusEnum,
|
|
4648
4695
|
AssessmentAnswer,
|
|
@@ -4723,6 +4770,7 @@ export {
|
|
|
4723
4770
|
FreelancerProjectDto,
|
|
4724
4771
|
FreelancerSkill,
|
|
4725
4772
|
FreelancerSkillDto,
|
|
4773
|
+
FreelancerSkipAiAssessmentDto,
|
|
4726
4774
|
FreelancerTool,
|
|
4727
4775
|
FreelancerUploadResumeDto,
|
|
4728
4776
|
FreelancerWorkShowcaseDto,
|
|
@@ -4754,6 +4802,7 @@ export {
|
|
|
4754
4802
|
Lead,
|
|
4755
4803
|
LoginDto,
|
|
4756
4804
|
LogoutDto,
|
|
4805
|
+
McqStatusEnum,
|
|
4757
4806
|
ModeOfHire,
|
|
4758
4807
|
ModeOfWork,
|
|
4759
4808
|
NOTIFICATION_PATTERN,
|