@experts_hub/shared 1.0.709 → 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.
- package/dist/entities/company-profile.entity.d.ts +1 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/dist/modules/client-admin/dto/create-client.dto.d.ts +1 -0
- package/dist/modules/client-admin/dto/update-client.dto.d.ts +1 -0
- package/package.json +1 -1
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
|
}
|
|
@@ -3444,6 +3445,7 @@ declare class CreateClientDto {
|
|
|
3444
3445
|
countryId?: number;
|
|
3445
3446
|
stateId?: number;
|
|
3446
3447
|
cityId?: number;
|
|
3448
|
+
markupPercentage?: number;
|
|
3447
3449
|
}
|
|
3448
3450
|
|
|
3449
3451
|
declare class UpdateClientAccountStatusDto {
|
|
@@ -3468,6 +3470,7 @@ declare class UpdateClientDto {
|
|
|
3468
3470
|
countryId: number | null;
|
|
3469
3471
|
stateId: number | null;
|
|
3470
3472
|
cityId: number | null;
|
|
3473
|
+
markupPercentage?: number | null;
|
|
3471
3474
|
}
|
|
3472
3475
|
|
|
3473
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
|
}
|
|
@@ -3444,6 +3445,7 @@ declare class CreateClientDto {
|
|
|
3444
3445
|
countryId?: number;
|
|
3445
3446
|
stateId?: number;
|
|
3446
3447
|
cityId?: number;
|
|
3448
|
+
markupPercentage?: number;
|
|
3447
3449
|
}
|
|
3448
3450
|
|
|
3449
3451
|
declare class UpdateClientAccountStatusDto {
|
|
@@ -3468,6 +3470,7 @@ declare class UpdateClientDto {
|
|
|
3468
3470
|
countryId: number | null;
|
|
3469
3471
|
stateId: number | null;
|
|
3470
3472
|
cityId: number | null;
|
|
3473
|
+
markupPercentage?: number | null;
|
|
3471
3474
|
}
|
|
3472
3475
|
|
|
3473
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",
|
|
@@ -9975,6 +9978,11 @@ __decorateClass([
|
|
|
9975
9978
|
(0, import_class_validator90.IsInt)({ message: "City ID must be an integer." }),
|
|
9976
9979
|
(0, import_class_transformer13.Type)(() => Number)
|
|
9977
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);
|
|
9978
9986
|
|
|
9979
9987
|
// src/modules/client-admin/dto/update-client-status.dto.ts
|
|
9980
9988
|
var import_class_validator91 = require("class-validator");
|
|
@@ -10064,6 +10072,10 @@ __decorateClass([
|
|
|
10064
10072
|
(0, import_class_validator92.IsOptional)(),
|
|
10065
10073
|
(0, import_class_transformer14.Type)(() => Number)
|
|
10066
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);
|
|
10067
10079
|
|
|
10068
10080
|
// src/modules/client-admin/dto/admin-export-clientV2-optimised.dto.ts
|
|
10069
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",
|
|
@@ -9938,6 +9941,11 @@ __decorateClass([
|
|
|
9938
9941
|
IsInt9({ message: "City ID must be an integer." }),
|
|
9939
9942
|
Type9(() => Number)
|
|
9940
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);
|
|
9941
9949
|
|
|
9942
9950
|
// src/modules/client-admin/dto/update-client-status.dto.ts
|
|
9943
9951
|
import { IsEnum as IsEnum30 } from "class-validator";
|
|
@@ -10035,6 +10043,10 @@ __decorateClass([
|
|
|
10035
10043
|
IsOptional46(),
|
|
10036
10044
|
Type10(() => Number)
|
|
10037
10045
|
], UpdateClientDto.prototype, "cityId", 2);
|
|
10046
|
+
__decorateClass([
|
|
10047
|
+
IsOptional46(),
|
|
10048
|
+
Type10(() => Number)
|
|
10049
|
+
], UpdateClientDto.prototype, "markupPercentage", 2);
|
|
10038
10050
|
|
|
10039
10051
|
// src/modules/client-admin/dto/admin-export-clientV2-optimised.dto.ts
|
|
10040
10052
|
import { IsOptional as IsOptional47, IsArray as IsArray16, IsEmail as IsEmail19 } from "class-validator";
|