@experts_hub/shared 1.0.708 → 1.0.710

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.
@@ -65,6 +65,7 @@ export declare class CompanyProfile extends BaseEntity {
65
65
  signaturePositions: any;
66
66
  hiringCommisionTypeForFte: HiringCommissionTypeEnum;
67
67
  hiringCommissionValueForFte: number;
68
+ markupPercentage: number;
68
69
  rating: number;
69
70
  signatureUrl: string;
70
71
  }
package/dist/index.d.mts CHANGED
@@ -459,6 +459,7 @@ declare class CompanyProfile extends BaseEntity {
459
459
  signaturePositions: any;
460
460
  hiringCommisionTypeForFte: HiringCommissionTypeEnum;
461
461
  hiringCommissionValueForFte: number;
462
+ markupPercentage: number;
462
463
  rating: number;
463
464
  signatureUrl: string;
464
465
  }
@@ -2642,6 +2643,7 @@ declare class JobBasicInformationV2Dto {
2642
2643
  businessIndustry?: string;
2643
2644
  stepCompleted?: StepCompletedEnumV2;
2644
2645
  additionalComment?: string;
2646
+ onboardingTat?: string;
2645
2647
  }
2646
2648
 
2647
2649
  declare class CloseJobDto {
@@ -3443,6 +3445,7 @@ declare class CreateClientDto {
3443
3445
  countryId?: number;
3444
3446
  stateId?: number;
3445
3447
  cityId?: number;
3448
+ markupPercentage?: number;
3446
3449
  }
3447
3450
 
3448
3451
  declare class UpdateClientAccountStatusDto {
@@ -3467,6 +3470,7 @@ declare class UpdateClientDto {
3467
3470
  countryId: number | null;
3468
3471
  stateId: number | null;
3469
3472
  cityId: number | null;
3473
+ markupPercentage?: number | null;
3470
3474
  }
3471
3475
 
3472
3476
  declare class AdminExportClientV2OptimisedDto {
package/dist/index.d.ts CHANGED
@@ -459,6 +459,7 @@ declare class CompanyProfile extends BaseEntity {
459
459
  signaturePositions: any;
460
460
  hiringCommisionTypeForFte: HiringCommissionTypeEnum;
461
461
  hiringCommissionValueForFte: number;
462
+ markupPercentage: number;
462
463
  rating: number;
463
464
  signatureUrl: string;
464
465
  }
@@ -2642,6 +2643,7 @@ declare class JobBasicInformationV2Dto {
2642
2643
  businessIndustry?: string;
2643
2644
  stepCompleted?: StepCompletedEnumV2;
2644
2645
  additionalComment?: string;
2646
+ onboardingTat?: string;
2645
2647
  }
2646
2648
 
2647
2649
  declare class CloseJobDto {
@@ -3443,6 +3445,7 @@ declare class CreateClientDto {
3443
3445
  countryId?: number;
3444
3446
  stateId?: number;
3445
3447
  cityId?: number;
3448
+ markupPercentage?: number;
3446
3449
  }
3447
3450
 
3448
3451
  declare class UpdateClientAccountStatusDto {
@@ -3467,6 +3470,7 @@ declare class UpdateClientDto {
3467
3470
  countryId: number | null;
3468
3471
  stateId: number | null;
3469
3472
  cityId: number | null;
3473
+ markupPercentage?: number | null;
3470
3474
  }
3471
3475
 
3472
3476
  declare class AdminExportClientV2OptimisedDto {
package/dist/index.js CHANGED
@@ -1790,6 +1790,9 @@ __decorateClass([
1790
1790
  __decorateClass([
1791
1791
  (0, import_typeorm5.Column)({ name: "hiring_commission_value_for_fte", type: "integer", nullable: true })
1792
1792
  ], CompanyProfile.prototype, "hiringCommissionValueForFte", 2);
1793
+ __decorateClass([
1794
+ (0, import_typeorm5.Column)({ name: "markup_percentage", type: "integer", nullable: true })
1795
+ ], CompanyProfile.prototype, "markupPercentage", 2);
1793
1796
  __decorateClass([
1794
1797
  (0, import_typeorm5.Column)({
1795
1798
  type: "float",
@@ -8183,6 +8186,9 @@ __decorateClass([
8183
8186
  (0, import_class_validator55.IsString)({ message: "Additional comment must be a string" }),
8184
8187
  (0, import_class_validator55.MaxLength)(500, { message: "Additional comment must not exceed 500 characters" })
8185
8188
  ], JobBasicInformationV2Dto.prototype, "additionalComment", 2);
8189
+ __decorateClass([
8190
+ (0, import_class_validator55.IsOptional)()
8191
+ ], JobBasicInformationV2Dto.prototype, "onboardingTat", 2);
8186
8192
 
8187
8193
  // src/modules/job/dto/close-job.dto.ts
8188
8194
  var import_class_validator56 = require("class-validator");
@@ -9972,6 +9978,11 @@ __decorateClass([
9972
9978
  (0, import_class_validator90.IsInt)({ message: "City ID must be an integer." }),
9973
9979
  (0, import_class_transformer13.Type)(() => Number)
9974
9980
  ], CreateClientDto.prototype, "cityId", 2);
9981
+ __decorateClass([
9982
+ (0, import_class_validator90.IsOptional)(),
9983
+ (0, import_class_validator90.IsInt)({ message: "Markup percentage must be an integer." }),
9984
+ (0, import_class_transformer13.Type)(() => Number)
9985
+ ], CreateClientDto.prototype, "markupPercentage", 2);
9975
9986
 
9976
9987
  // src/modules/client-admin/dto/update-client-status.dto.ts
9977
9988
  var import_class_validator91 = require("class-validator");
@@ -10061,6 +10072,10 @@ __decorateClass([
10061
10072
  (0, import_class_validator92.IsOptional)(),
10062
10073
  (0, import_class_transformer14.Type)(() => Number)
10063
10074
  ], UpdateClientDto.prototype, "cityId", 2);
10075
+ __decorateClass([
10076
+ (0, import_class_validator92.IsOptional)(),
10077
+ (0, import_class_transformer14.Type)(() => Number)
10078
+ ], UpdateClientDto.prototype, "markupPercentage", 2);
10064
10079
 
10065
10080
  // src/modules/client-admin/dto/admin-export-clientV2-optimised.dto.ts
10066
10081
  var import_class_validator93 = require("class-validator");
package/dist/index.mjs CHANGED
@@ -1419,6 +1419,9 @@ __decorateClass([
1419
1419
  __decorateClass([
1420
1420
  Column5({ name: "hiring_commission_value_for_fte", type: "integer", nullable: true })
1421
1421
  ], CompanyProfile.prototype, "hiringCommissionValueForFte", 2);
1422
+ __decorateClass([
1423
+ Column5({ name: "markup_percentage", type: "integer", nullable: true })
1424
+ ], CompanyProfile.prototype, "markupPercentage", 2);
1422
1425
  __decorateClass([
1423
1426
  Column5({
1424
1427
  type: "float",
@@ -8049,6 +8052,9 @@ __decorateClass([
8049
8052
  IsString26({ message: "Additional comment must be a string" }),
8050
8053
  MaxLength10(500, { message: "Additional comment must not exceed 500 characters" })
8051
8054
  ], JobBasicInformationV2Dto.prototype, "additionalComment", 2);
8055
+ __decorateClass([
8056
+ IsOptional25()
8057
+ ], JobBasicInformationV2Dto.prototype, "onboardingTat", 2);
8052
8058
 
8053
8059
  // src/modules/job/dto/close-job.dto.ts
8054
8060
  import { IsOptional as IsOptional26, IsString as IsString27 } from "class-validator";
@@ -9935,6 +9941,11 @@ __decorateClass([
9935
9941
  IsInt9({ message: "City ID must be an integer." }),
9936
9942
  Type9(() => Number)
9937
9943
  ], CreateClientDto.prototype, "cityId", 2);
9944
+ __decorateClass([
9945
+ IsOptional45(),
9946
+ IsInt9({ message: "Markup percentage must be an integer." }),
9947
+ Type9(() => Number)
9948
+ ], CreateClientDto.prototype, "markupPercentage", 2);
9938
9949
 
9939
9950
  // src/modules/client-admin/dto/update-client-status.dto.ts
9940
9951
  import { IsEnum as IsEnum30 } from "class-validator";
@@ -10032,6 +10043,10 @@ __decorateClass([
10032
10043
  IsOptional46(),
10033
10044
  Type10(() => Number)
10034
10045
  ], UpdateClientDto.prototype, "cityId", 2);
10046
+ __decorateClass([
10047
+ IsOptional46(),
10048
+ Type10(() => Number)
10049
+ ], UpdateClientDto.prototype, "markupPercentage", 2);
10035
10050
 
10036
10051
  // src/modules/client-admin/dto/admin-export-clientV2-optimised.dto.ts
10037
10052
  import { IsOptional as IsOptional47, IsArray as IsArray16, IsEmail as IsEmail19 } from "class-validator";
@@ -17,4 +17,5 @@ export declare class CreateClientDto {
17
17
  countryId?: number;
18
18
  stateId?: number;
19
19
  cityId?: number;
20
+ markupPercentage?: number;
20
21
  }
@@ -16,4 +16,5 @@ export declare class UpdateClientDto {
16
16
  countryId: number | null;
17
17
  stateId: number | null;
18
18
  cityId: number | null;
19
+ markupPercentage?: number | null;
19
20
  }
@@ -61,5 +61,6 @@ export declare class JobBasicInformationV2Dto {
61
61
  businessIndustry?: string;
62
62
  stepCompleted?: StepCompletedEnumV2;
63
63
  additionalComment?: string;
64
+ onboardingTat?: string;
64
65
  }
65
66
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.708",
3
+ "version": "1.0.710",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",