@experts_hub/shared 1.0.561 → 1.0.562
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
|
@@ -2997,6 +2997,10 @@ declare class AdminJobBasicInformationV2Dto {
|
|
|
2997
2997
|
projectName?: string;
|
|
2998
2998
|
hideExpectedSalaryFrom: boolean;
|
|
2999
2999
|
hideExpectedSalaryTo: boolean;
|
|
3000
|
+
expectedAnnualBudgetFrom: number;
|
|
3001
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
3002
|
+
expectedAnnualBudgetTo: number;
|
|
3003
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
3000
3004
|
numberOfHours: number;
|
|
3001
3005
|
years: string;
|
|
3002
3006
|
months: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2997,6 +2997,10 @@ declare class AdminJobBasicInformationV2Dto {
|
|
|
2997
2997
|
projectName?: string;
|
|
2998
2998
|
hideExpectedSalaryFrom: boolean;
|
|
2999
2999
|
hideExpectedSalaryTo: boolean;
|
|
3000
|
+
expectedAnnualBudgetFrom: number;
|
|
3001
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
3002
|
+
expectedAnnualBudgetTo: number;
|
|
3003
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
3000
3004
|
numberOfHours: number;
|
|
3001
3005
|
years: string;
|
|
3002
3006
|
months: string;
|
package/dist/index.js
CHANGED
|
@@ -7815,6 +7815,24 @@ __decorateClass([
|
|
|
7815
7815
|
__decorateClass([
|
|
7816
7816
|
(0, import_class_validator64.IsOptional)()
|
|
7817
7817
|
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedSalaryTo", 2);
|
|
7818
|
+
__decorateClass([
|
|
7819
|
+
(0, import_class_validator64.IsOptional)(),
|
|
7820
|
+
(0, import_class_validator64.IsNumber)({}, { message: "Expected annual budget (from) must be a number" }),
|
|
7821
|
+
(0, import_class_validator64.Min)(0, { message: "Expected annual budget (from) cannot be negative" }),
|
|
7822
|
+
(0, import_class_transformer14.Type)(() => Number)
|
|
7823
|
+
], AdminJobBasicInformationV2Dto.prototype, "expectedAnnualBudgetFrom", 2);
|
|
7824
|
+
__decorateClass([
|
|
7825
|
+
(0, import_class_validator64.IsOptional)()
|
|
7826
|
+
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetFrom", 2);
|
|
7827
|
+
__decorateClass([
|
|
7828
|
+
(0, import_class_validator64.IsOptional)(),
|
|
7829
|
+
(0, import_class_validator64.IsNumber)({}, { message: "Expected annual budget (to) must be a number" }),
|
|
7830
|
+
(0, import_class_validator64.Min)(0, { message: "Expected annual budget (to) cannot be negative" }),
|
|
7831
|
+
(0, import_class_transformer14.Type)(() => Number)
|
|
7832
|
+
], AdminJobBasicInformationV2Dto.prototype, "expectedAnnualBudgetTo", 2);
|
|
7833
|
+
__decorateClass([
|
|
7834
|
+
(0, import_class_validator64.IsOptional)()
|
|
7835
|
+
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetTo", 2);
|
|
7818
7836
|
__decorateClass([
|
|
7819
7837
|
(0, import_class_validator64.IsOptional)(),
|
|
7820
7838
|
(0, import_class_validator64.IsNumber)({}, { message: "Number of hours must be a number" }),
|
package/dist/index.mjs
CHANGED
|
@@ -7920,6 +7920,24 @@ __decorateClass([
|
|
|
7920
7920
|
__decorateClass([
|
|
7921
7921
|
IsOptional36()
|
|
7922
7922
|
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedSalaryTo", 2);
|
|
7923
|
+
__decorateClass([
|
|
7924
|
+
IsOptional36(),
|
|
7925
|
+
IsNumber9({}, { message: "Expected annual budget (from) must be a number" }),
|
|
7926
|
+
Min8(0, { message: "Expected annual budget (from) cannot be negative" }),
|
|
7927
|
+
Type12(() => Number)
|
|
7928
|
+
], AdminJobBasicInformationV2Dto.prototype, "expectedAnnualBudgetFrom", 2);
|
|
7929
|
+
__decorateClass([
|
|
7930
|
+
IsOptional36()
|
|
7931
|
+
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetFrom", 2);
|
|
7932
|
+
__decorateClass([
|
|
7933
|
+
IsOptional36(),
|
|
7934
|
+
IsNumber9({}, { message: "Expected annual budget (to) must be a number" }),
|
|
7935
|
+
Min8(0, { message: "Expected annual budget (to) cannot be negative" }),
|
|
7936
|
+
Type12(() => Number)
|
|
7937
|
+
], AdminJobBasicInformationV2Dto.prototype, "expectedAnnualBudgetTo", 2);
|
|
7938
|
+
__decorateClass([
|
|
7939
|
+
IsOptional36()
|
|
7940
|
+
], AdminJobBasicInformationV2Dto.prototype, "hideExpectedAnnualBudgetTo", 2);
|
|
7923
7941
|
__decorateClass([
|
|
7924
7942
|
IsOptional36(),
|
|
7925
7943
|
IsNumber9({}, { message: "Number of hours must be a number" }),
|
|
@@ -44,6 +44,10 @@ export declare class AdminJobBasicInformationV2Dto {
|
|
|
44
44
|
projectName?: string;
|
|
45
45
|
hideExpectedSalaryFrom: boolean;
|
|
46
46
|
hideExpectedSalaryTo: boolean;
|
|
47
|
+
expectedAnnualBudgetFrom: number;
|
|
48
|
+
hideExpectedAnnualBudgetFrom: boolean;
|
|
49
|
+
expectedAnnualBudgetTo: number;
|
|
50
|
+
hideExpectedAnnualBudgetTo: boolean;
|
|
47
51
|
numberOfHours: number;
|
|
48
52
|
years: string;
|
|
49
53
|
months: string;
|