@experts_hub/shared 1.0.626 → 1.0.628
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.d.mts
CHANGED
|
@@ -2987,14 +2987,8 @@ declare class CreateClientDto {
|
|
|
2987
2987
|
password: string;
|
|
2988
2988
|
confirmPassword: string;
|
|
2989
2989
|
companyName: string;
|
|
2990
|
-
skills: string[];
|
|
2991
|
-
requiredFreelancer: string;
|
|
2992
|
-
kindOfHiring: string;
|
|
2993
|
-
modeOfHire: string;
|
|
2994
2990
|
foundUsOn: string;
|
|
2995
2991
|
foundUsOnDetail?: string;
|
|
2996
|
-
hiringCommisionTypeForFte?: string;
|
|
2997
|
-
hiringCommissionValueForFte?: string;
|
|
2998
2992
|
about?: string;
|
|
2999
2993
|
webSite?: string;
|
|
3000
2994
|
companyAddress?: string;
|
|
@@ -3017,14 +3011,8 @@ declare class UpdateClientDto {
|
|
|
3017
3011
|
phoneNumber?: string;
|
|
3018
3012
|
password?: string;
|
|
3019
3013
|
companyName: string;
|
|
3020
|
-
skills: string[];
|
|
3021
|
-
requiredFreelancer: string;
|
|
3022
|
-
kindOfHiring: string;
|
|
3023
|
-
modeOfHire: string;
|
|
3024
3014
|
foundUsOn: string;
|
|
3025
3015
|
foundUsOnDetail?: string;
|
|
3026
|
-
hiringCommisionTypeForFte?: string;
|
|
3027
|
-
hiringCommissionValueForFte?: string;
|
|
3028
3016
|
about?: string;
|
|
3029
3017
|
webSite?: string;
|
|
3030
3018
|
companyAddress?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2987,14 +2987,8 @@ declare class CreateClientDto {
|
|
|
2987
2987
|
password: string;
|
|
2988
2988
|
confirmPassword: string;
|
|
2989
2989
|
companyName: string;
|
|
2990
|
-
skills: string[];
|
|
2991
|
-
requiredFreelancer: string;
|
|
2992
|
-
kindOfHiring: string;
|
|
2993
|
-
modeOfHire: string;
|
|
2994
2990
|
foundUsOn: string;
|
|
2995
2991
|
foundUsOnDetail?: string;
|
|
2996
|
-
hiringCommisionTypeForFte?: string;
|
|
2997
|
-
hiringCommissionValueForFte?: string;
|
|
2998
2992
|
about?: string;
|
|
2999
2993
|
webSite?: string;
|
|
3000
2994
|
companyAddress?: string;
|
|
@@ -3017,14 +3011,8 @@ declare class UpdateClientDto {
|
|
|
3017
3011
|
phoneNumber?: string;
|
|
3018
3012
|
password?: string;
|
|
3019
3013
|
companyName: string;
|
|
3020
|
-
skills: string[];
|
|
3021
|
-
requiredFreelancer: string;
|
|
3022
|
-
kindOfHiring: string;
|
|
3023
|
-
modeOfHire: string;
|
|
3024
3014
|
foundUsOn: string;
|
|
3025
3015
|
foundUsOnDetail?: string;
|
|
3026
|
-
hiringCommisionTypeForFte?: string;
|
|
3027
|
-
hiringCommissionValueForFte?: string;
|
|
3028
3016
|
about?: string;
|
|
3029
3017
|
webSite?: string;
|
|
3030
3018
|
companyAddress?: string;
|
package/dist/index.js
CHANGED
|
@@ -2008,8 +2008,7 @@ __decorateClass([
|
|
|
2008
2008
|
(0, import_class_validator50.IsOptional)()
|
|
2009
2009
|
], JobBasicInformationV2Dto.prototype, "candidateCommunicationSkills", 2);
|
|
2010
2010
|
__decorateClass([
|
|
2011
|
-
(0, import_class_validator50.
|
|
2012
|
-
(0, import_class_validator50.IsNotEmpty)({ message: "Please enter the academic qualification" }),
|
|
2011
|
+
(0, import_class_validator50.IsOptional)(),
|
|
2013
2012
|
(0, import_class_validator50.IsString)({ message: "Academic qualification must be a string" })
|
|
2014
2013
|
], JobBasicInformationV2Dto.prototype, "academicQualification", 2);
|
|
2015
2014
|
__decorateClass([
|
|
@@ -8421,18 +8420,6 @@ var CLIENT_ADMIN_PATTERNS = {
|
|
|
8421
8420
|
// src/modules/client-admin/dto/create-client.dto.ts
|
|
8422
8421
|
var import_class_validator78 = require("class-validator");
|
|
8423
8422
|
var import_class_transformer11 = require("class-transformer");
|
|
8424
|
-
var CreateClientHiringModeEnum = /* @__PURE__ */ ((CreateClientHiringModeEnum2) => {
|
|
8425
|
-
CreateClientHiringModeEnum2["REMOTE"] = "REMOTE";
|
|
8426
|
-
CreateClientHiringModeEnum2["ONSITE"] = "ONSITE";
|
|
8427
|
-
CreateClientHiringModeEnum2["HYBRID"] = "HYBRID";
|
|
8428
|
-
return CreateClientHiringModeEnum2;
|
|
8429
|
-
})(CreateClientHiringModeEnum || {});
|
|
8430
|
-
var CreateClientHiringTypeEnum = /* @__PURE__ */ ((CreateClientHiringTypeEnum2) => {
|
|
8431
|
-
CreateClientHiringTypeEnum2["FTE"] = "FTE";
|
|
8432
|
-
CreateClientHiringTypeEnum2["FREELANCE"] = "FREELANCE";
|
|
8433
|
-
CreateClientHiringTypeEnum2["BOTH"] = "BOTH";
|
|
8434
|
-
return CreateClientHiringTypeEnum2;
|
|
8435
|
-
})(CreateClientHiringTypeEnum || {});
|
|
8436
8423
|
var CreateClientDto = class {
|
|
8437
8424
|
};
|
|
8438
8425
|
__decorateClass([
|
|
@@ -8472,37 +8459,13 @@ __decorateClass([
|
|
|
8472
8459
|
(0, import_class_validator78.IsString)()
|
|
8473
8460
|
], CreateClientDto.prototype, "companyName", 2);
|
|
8474
8461
|
__decorateClass([
|
|
8475
|
-
(0, import_class_validator78.
|
|
8476
|
-
(0, import_class_validator78.IsNotEmpty)({ message: "Please enter skills." })
|
|
8477
|
-
], CreateClientDto.prototype, "skills", 2);
|
|
8478
|
-
__decorateClass([
|
|
8479
|
-
(0, import_class_validator78.IsNotEmpty)({ message: "Please specify required freelancer count." }),
|
|
8480
|
-
(0, import_class_validator78.IsString)()
|
|
8481
|
-
], CreateClientDto.prototype, "requiredFreelancer", 2);
|
|
8482
|
-
__decorateClass([
|
|
8483
|
-
(0, import_class_validator78.IsNotEmpty)({ message: "Please specify the kind of hiring." }),
|
|
8484
|
-
(0, import_class_validator78.IsEnum)(CreateClientHiringTypeEnum)
|
|
8485
|
-
], CreateClientDto.prototype, "kindOfHiring", 2);
|
|
8486
|
-
__decorateClass([
|
|
8487
|
-
(0, import_class_validator78.IsNotEmpty)({ message: "Please specify the mode of hire." }),
|
|
8488
|
-
(0, import_class_validator78.IsEnum)(CreateClientHiringModeEnum)
|
|
8489
|
-
], CreateClientDto.prototype, "modeOfHire", 2);
|
|
8490
|
-
__decorateClass([
|
|
8491
|
-
(0, import_class_validator78.IsNotEmpty)({ message: "Please let us know how you found us." }),
|
|
8462
|
+
(0, import_class_validator78.IsOptional)(),
|
|
8492
8463
|
(0, import_class_validator78.IsString)()
|
|
8493
8464
|
], CreateClientDto.prototype, "foundUsOn", 2);
|
|
8494
8465
|
__decorateClass([
|
|
8495
8466
|
(0, import_class_validator78.IsOptional)(),
|
|
8496
8467
|
(0, import_class_validator78.IsString)()
|
|
8497
8468
|
], CreateClientDto.prototype, "foundUsOnDetail", 2);
|
|
8498
|
-
__decorateClass([
|
|
8499
|
-
(0, import_class_validator78.IsOptional)(),
|
|
8500
|
-
(0, import_class_validator78.IsString)()
|
|
8501
|
-
], CreateClientDto.prototype, "hiringCommisionTypeForFte", 2);
|
|
8502
|
-
__decorateClass([
|
|
8503
|
-
(0, import_class_validator78.IsOptional)(),
|
|
8504
|
-
(0, import_class_validator78.IsString)()
|
|
8505
|
-
], CreateClientDto.prototype, "hiringCommissionValueForFte", 2);
|
|
8506
8469
|
__decorateClass([
|
|
8507
8470
|
(0, import_class_validator78.IsOptional)(),
|
|
8508
8471
|
(0, import_class_validator78.IsString)({ message: "About company must be a string." })
|
|
@@ -8551,18 +8514,6 @@ __decorateClass([
|
|
|
8551
8514
|
// src/modules/client-admin/dto/update-client.dto.ts
|
|
8552
8515
|
var import_class_transformer12 = require("class-transformer");
|
|
8553
8516
|
var import_class_validator80 = require("class-validator");
|
|
8554
|
-
var UpdateClientHiringModeEnum = /* @__PURE__ */ ((UpdateClientHiringModeEnum2) => {
|
|
8555
|
-
UpdateClientHiringModeEnum2["REMOTE"] = "REMOTE";
|
|
8556
|
-
UpdateClientHiringModeEnum2["ONSITE"] = "ONSITE";
|
|
8557
|
-
UpdateClientHiringModeEnum2["HYBRID"] = "HYBRID";
|
|
8558
|
-
return UpdateClientHiringModeEnum2;
|
|
8559
|
-
})(UpdateClientHiringModeEnum || {});
|
|
8560
|
-
var UpdateClientHiringTypeEnum = /* @__PURE__ */ ((UpdateClientHiringTypeEnum2) => {
|
|
8561
|
-
UpdateClientHiringTypeEnum2["FTE"] = "FTE";
|
|
8562
|
-
UpdateClientHiringTypeEnum2["FREELANCE"] = "FREELANCE";
|
|
8563
|
-
UpdateClientHiringTypeEnum2["BOTH"] = "BOTH";
|
|
8564
|
-
return UpdateClientHiringTypeEnum2;
|
|
8565
|
-
})(UpdateClientHiringTypeEnum || {});
|
|
8566
8517
|
var UpdateClientDto = class {
|
|
8567
8518
|
};
|
|
8568
8519
|
__decorateClass([
|
|
@@ -8599,37 +8550,13 @@ __decorateClass([
|
|
|
8599
8550
|
(0, import_class_validator80.IsString)()
|
|
8600
8551
|
], UpdateClientDto.prototype, "companyName", 2);
|
|
8601
8552
|
__decorateClass([
|
|
8602
|
-
(0, import_class_validator80.
|
|
8603
|
-
(0, import_class_validator80.IsNotEmpty)({ message: "Please enter skills." })
|
|
8604
|
-
], UpdateClientDto.prototype, "skills", 2);
|
|
8605
|
-
__decorateClass([
|
|
8606
|
-
(0, import_class_validator80.IsNotEmpty)({ message: "Please specify required freelancer count." }),
|
|
8607
|
-
(0, import_class_validator80.IsString)()
|
|
8608
|
-
], UpdateClientDto.prototype, "requiredFreelancer", 2);
|
|
8609
|
-
__decorateClass([
|
|
8610
|
-
(0, import_class_validator80.IsNotEmpty)({ message: "Please specify the kind of hiring." }),
|
|
8611
|
-
(0, import_class_validator80.IsEnum)(UpdateClientHiringTypeEnum)
|
|
8612
|
-
], UpdateClientDto.prototype, "kindOfHiring", 2);
|
|
8613
|
-
__decorateClass([
|
|
8614
|
-
(0, import_class_validator80.IsNotEmpty)({ message: "Please specify the mode of hire." }),
|
|
8615
|
-
(0, import_class_validator80.IsEnum)(UpdateClientHiringModeEnum)
|
|
8616
|
-
], UpdateClientDto.prototype, "modeOfHire", 2);
|
|
8617
|
-
__decorateClass([
|
|
8618
|
-
(0, import_class_validator80.IsNotEmpty)({ message: "Please let us know how you found us." }),
|
|
8553
|
+
(0, import_class_validator80.IsOptional)(),
|
|
8619
8554
|
(0, import_class_validator80.IsString)()
|
|
8620
8555
|
], UpdateClientDto.prototype, "foundUsOn", 2);
|
|
8621
8556
|
__decorateClass([
|
|
8622
8557
|
(0, import_class_validator80.IsOptional)(),
|
|
8623
8558
|
(0, import_class_validator80.IsString)()
|
|
8624
8559
|
], UpdateClientDto.prototype, "foundUsOnDetail", 2);
|
|
8625
|
-
__decorateClass([
|
|
8626
|
-
(0, import_class_validator80.IsOptional)(),
|
|
8627
|
-
(0, import_class_validator80.IsString)()
|
|
8628
|
-
], UpdateClientDto.prototype, "hiringCommisionTypeForFte", 2);
|
|
8629
|
-
__decorateClass([
|
|
8630
|
-
(0, import_class_validator80.IsOptional)(),
|
|
8631
|
-
(0, import_class_validator80.IsString)()
|
|
8632
|
-
], UpdateClientDto.prototype, "hiringCommissionValueForFte", 2);
|
|
8633
8560
|
__decorateClass([
|
|
8634
8561
|
(0, import_class_validator80.IsOptional)(),
|
|
8635
8562
|
(0, import_class_validator80.IsString)({ message: "About company must be a string." })
|
|
@@ -9127,8 +9054,7 @@ __decorateClass([
|
|
|
9127
9054
|
(0, import_class_transformer17.Type)(() => JobLocationAdminDto)
|
|
9128
9055
|
], AdminJobBasicInformationV2Dto.prototype, "locations", 2);
|
|
9129
9056
|
__decorateClass([
|
|
9130
|
-
(0, import_class_validator89.
|
|
9131
|
-
(0, import_class_validator89.IsNotEmpty)({ message: "Please enter the academic qualification" }),
|
|
9057
|
+
(0, import_class_validator89.IsOptional)(),
|
|
9132
9058
|
(0, import_class_validator89.IsString)({ message: "Academic qualification must be a string" })
|
|
9133
9059
|
], AdminJobBasicInformationV2Dto.prototype, "academicQualification", 2);
|
|
9134
9060
|
__decorateClass([
|
package/dist/index.mjs
CHANGED
|
@@ -1701,8 +1701,7 @@ __decorateClass([
|
|
|
1701
1701
|
IsOptional22()
|
|
1702
1702
|
], JobBasicInformationV2Dto.prototype, "candidateCommunicationSkills", 2);
|
|
1703
1703
|
__decorateClass([
|
|
1704
|
-
|
|
1705
|
-
IsNotEmpty42({ message: "Please enter the academic qualification" }),
|
|
1704
|
+
IsOptional22(),
|
|
1706
1705
|
IsString22({ message: "Academic qualification must be a string" })
|
|
1707
1706
|
], JobBasicInformationV2Dto.prototype, "academicQualification", 2);
|
|
1708
1707
|
__decorateClass([
|
|
@@ -8412,27 +8411,13 @@ import {
|
|
|
8412
8411
|
IsEmail as IsEmail15,
|
|
8413
8412
|
IsOptional as IsOptional41,
|
|
8414
8413
|
IsString as IsString42,
|
|
8415
|
-
IsArray as IsArray12,
|
|
8416
8414
|
MinLength as MinLength14,
|
|
8417
8415
|
MaxLength as MaxLength18,
|
|
8418
|
-
IsEnum as IsEnum26,
|
|
8419
8416
|
Matches as Matches11,
|
|
8420
8417
|
IsInt as IsInt9,
|
|
8421
8418
|
IsUrl as IsUrl5
|
|
8422
8419
|
} from "class-validator";
|
|
8423
8420
|
import { Type as Type8 } from "class-transformer";
|
|
8424
|
-
var CreateClientHiringModeEnum = /* @__PURE__ */ ((CreateClientHiringModeEnum2) => {
|
|
8425
|
-
CreateClientHiringModeEnum2["REMOTE"] = "REMOTE";
|
|
8426
|
-
CreateClientHiringModeEnum2["ONSITE"] = "ONSITE";
|
|
8427
|
-
CreateClientHiringModeEnum2["HYBRID"] = "HYBRID";
|
|
8428
|
-
return CreateClientHiringModeEnum2;
|
|
8429
|
-
})(CreateClientHiringModeEnum || {});
|
|
8430
|
-
var CreateClientHiringTypeEnum = /* @__PURE__ */ ((CreateClientHiringTypeEnum2) => {
|
|
8431
|
-
CreateClientHiringTypeEnum2["FTE"] = "FTE";
|
|
8432
|
-
CreateClientHiringTypeEnum2["FREELANCE"] = "FREELANCE";
|
|
8433
|
-
CreateClientHiringTypeEnum2["BOTH"] = "BOTH";
|
|
8434
|
-
return CreateClientHiringTypeEnum2;
|
|
8435
|
-
})(CreateClientHiringTypeEnum || {});
|
|
8436
8421
|
var CreateClientDto = class {
|
|
8437
8422
|
};
|
|
8438
8423
|
__decorateClass([
|
|
@@ -8472,37 +8457,13 @@ __decorateClass([
|
|
|
8472
8457
|
IsString42()
|
|
8473
8458
|
], CreateClientDto.prototype, "companyName", 2);
|
|
8474
8459
|
__decorateClass([
|
|
8475
|
-
|
|
8476
|
-
IsNotEmpty64({ message: "Please enter skills." })
|
|
8477
|
-
], CreateClientDto.prototype, "skills", 2);
|
|
8478
|
-
__decorateClass([
|
|
8479
|
-
IsNotEmpty64({ message: "Please specify required freelancer count." }),
|
|
8480
|
-
IsString42()
|
|
8481
|
-
], CreateClientDto.prototype, "requiredFreelancer", 2);
|
|
8482
|
-
__decorateClass([
|
|
8483
|
-
IsNotEmpty64({ message: "Please specify the kind of hiring." }),
|
|
8484
|
-
IsEnum26(CreateClientHiringTypeEnum)
|
|
8485
|
-
], CreateClientDto.prototype, "kindOfHiring", 2);
|
|
8486
|
-
__decorateClass([
|
|
8487
|
-
IsNotEmpty64({ message: "Please specify the mode of hire." }),
|
|
8488
|
-
IsEnum26(CreateClientHiringModeEnum)
|
|
8489
|
-
], CreateClientDto.prototype, "modeOfHire", 2);
|
|
8490
|
-
__decorateClass([
|
|
8491
|
-
IsNotEmpty64({ message: "Please let us know how you found us." }),
|
|
8460
|
+
IsOptional41(),
|
|
8492
8461
|
IsString42()
|
|
8493
8462
|
], CreateClientDto.prototype, "foundUsOn", 2);
|
|
8494
8463
|
__decorateClass([
|
|
8495
8464
|
IsOptional41(),
|
|
8496
8465
|
IsString42()
|
|
8497
8466
|
], CreateClientDto.prototype, "foundUsOnDetail", 2);
|
|
8498
|
-
__decorateClass([
|
|
8499
|
-
IsOptional41(),
|
|
8500
|
-
IsString42()
|
|
8501
|
-
], CreateClientDto.prototype, "hiringCommisionTypeForFte", 2);
|
|
8502
|
-
__decorateClass([
|
|
8503
|
-
IsOptional41(),
|
|
8504
|
-
IsString42()
|
|
8505
|
-
], CreateClientDto.prototype, "hiringCommissionValueForFte", 2);
|
|
8506
8467
|
__decorateClass([
|
|
8507
8468
|
IsOptional41(),
|
|
8508
8469
|
IsString42({ message: "About company must be a string." })
|
|
@@ -8555,24 +8516,10 @@ import {
|
|
|
8555
8516
|
IsEmail as IsEmail16,
|
|
8556
8517
|
IsOptional as IsOptional42,
|
|
8557
8518
|
IsString as IsString44,
|
|
8558
|
-
IsArray as IsArray13,
|
|
8559
8519
|
MinLength as MinLength15,
|
|
8560
8520
|
MaxLength as MaxLength19,
|
|
8561
|
-
IsEnum as IsEnum27,
|
|
8562
8521
|
Matches as Matches12
|
|
8563
8522
|
} from "class-validator";
|
|
8564
|
-
var UpdateClientHiringModeEnum = /* @__PURE__ */ ((UpdateClientHiringModeEnum2) => {
|
|
8565
|
-
UpdateClientHiringModeEnum2["REMOTE"] = "REMOTE";
|
|
8566
|
-
UpdateClientHiringModeEnum2["ONSITE"] = "ONSITE";
|
|
8567
|
-
UpdateClientHiringModeEnum2["HYBRID"] = "HYBRID";
|
|
8568
|
-
return UpdateClientHiringModeEnum2;
|
|
8569
|
-
})(UpdateClientHiringModeEnum || {});
|
|
8570
|
-
var UpdateClientHiringTypeEnum = /* @__PURE__ */ ((UpdateClientHiringTypeEnum2) => {
|
|
8571
|
-
UpdateClientHiringTypeEnum2["FTE"] = "FTE";
|
|
8572
|
-
UpdateClientHiringTypeEnum2["FREELANCE"] = "FREELANCE";
|
|
8573
|
-
UpdateClientHiringTypeEnum2["BOTH"] = "BOTH";
|
|
8574
|
-
return UpdateClientHiringTypeEnum2;
|
|
8575
|
-
})(UpdateClientHiringTypeEnum || {});
|
|
8576
8523
|
var UpdateClientDto = class {
|
|
8577
8524
|
};
|
|
8578
8525
|
__decorateClass([
|
|
@@ -8609,37 +8556,13 @@ __decorateClass([
|
|
|
8609
8556
|
IsString44()
|
|
8610
8557
|
], UpdateClientDto.prototype, "companyName", 2);
|
|
8611
8558
|
__decorateClass([
|
|
8612
|
-
|
|
8613
|
-
IsNotEmpty66({ message: "Please enter skills." })
|
|
8614
|
-
], UpdateClientDto.prototype, "skills", 2);
|
|
8615
|
-
__decorateClass([
|
|
8616
|
-
IsNotEmpty66({ message: "Please specify required freelancer count." }),
|
|
8617
|
-
IsString44()
|
|
8618
|
-
], UpdateClientDto.prototype, "requiredFreelancer", 2);
|
|
8619
|
-
__decorateClass([
|
|
8620
|
-
IsNotEmpty66({ message: "Please specify the kind of hiring." }),
|
|
8621
|
-
IsEnum27(UpdateClientHiringTypeEnum)
|
|
8622
|
-
], UpdateClientDto.prototype, "kindOfHiring", 2);
|
|
8623
|
-
__decorateClass([
|
|
8624
|
-
IsNotEmpty66({ message: "Please specify the mode of hire." }),
|
|
8625
|
-
IsEnum27(UpdateClientHiringModeEnum)
|
|
8626
|
-
], UpdateClientDto.prototype, "modeOfHire", 2);
|
|
8627
|
-
__decorateClass([
|
|
8628
|
-
IsNotEmpty66({ message: "Please let us know how you found us." }),
|
|
8559
|
+
IsOptional42(),
|
|
8629
8560
|
IsString44()
|
|
8630
8561
|
], UpdateClientDto.prototype, "foundUsOn", 2);
|
|
8631
8562
|
__decorateClass([
|
|
8632
8563
|
IsOptional42(),
|
|
8633
8564
|
IsString44()
|
|
8634
8565
|
], UpdateClientDto.prototype, "foundUsOnDetail", 2);
|
|
8635
|
-
__decorateClass([
|
|
8636
|
-
IsOptional42(),
|
|
8637
|
-
IsString44()
|
|
8638
|
-
], UpdateClientDto.prototype, "hiringCommisionTypeForFte", 2);
|
|
8639
|
-
__decorateClass([
|
|
8640
|
-
IsOptional42(),
|
|
8641
|
-
IsString44()
|
|
8642
|
-
], UpdateClientDto.prototype, "hiringCommissionValueForFte", 2);
|
|
8643
8566
|
__decorateClass([
|
|
8644
8567
|
IsOptional42(),
|
|
8645
8568
|
IsString44({ message: "About company must be a string." })
|
|
@@ -9172,8 +9095,7 @@ __decorateClass([
|
|
|
9172
9095
|
Type14(() => JobLocationAdminDto)
|
|
9173
9096
|
], AdminJobBasicInformationV2Dto.prototype, "locations", 2);
|
|
9174
9097
|
__decorateClass([
|
|
9175
|
-
|
|
9176
|
-
IsNotEmpty74({ message: "Please enter the academic qualification" }),
|
|
9098
|
+
IsOptional50(),
|
|
9177
9099
|
IsString48({ message: "Academic qualification must be a string" })
|
|
9178
9100
|
], AdminJobBasicInformationV2Dto.prototype, "academicQualification", 2);
|
|
9179
9101
|
__decorateClass([
|
|
@@ -7,14 +7,8 @@ export declare class CreateClientDto {
|
|
|
7
7
|
password: string;
|
|
8
8
|
confirmPassword: string;
|
|
9
9
|
companyName: string;
|
|
10
|
-
skills: string[];
|
|
11
|
-
requiredFreelancer: string;
|
|
12
|
-
kindOfHiring: string;
|
|
13
|
-
modeOfHire: string;
|
|
14
10
|
foundUsOn: string;
|
|
15
11
|
foundUsOnDetail?: string;
|
|
16
|
-
hiringCommisionTypeForFte?: string;
|
|
17
|
-
hiringCommissionValueForFte?: string;
|
|
18
12
|
about?: string;
|
|
19
13
|
webSite?: string;
|
|
20
14
|
companyAddress?: string;
|
|
@@ -6,14 +6,8 @@ export declare class UpdateClientDto {
|
|
|
6
6
|
phoneNumber?: string;
|
|
7
7
|
password?: string;
|
|
8
8
|
companyName: string;
|
|
9
|
-
skills: string[];
|
|
10
|
-
requiredFreelancer: string;
|
|
11
|
-
kindOfHiring: string;
|
|
12
|
-
modeOfHire: string;
|
|
13
9
|
foundUsOn: string;
|
|
14
10
|
foundUsOnDetail?: string;
|
|
15
|
-
hiringCommisionTypeForFte?: string;
|
|
16
|
-
hiringCommissionValueForFte?: string;
|
|
17
11
|
about?: string;
|
|
18
12
|
webSite?: string;
|
|
19
13
|
companyAddress?: string;
|