@experts_hub/shared 1.0.216 → 1.0.218
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-assessment.entity.d.ts +1 -0
- package/dist/entities/lead.entity.d.ts +1 -1
- package/dist/index.d.mts +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +13 -3
- package/dist/index.mjs +13 -3
- package/dist/modules/client-admin/pattern/pattern.d.ts +1 -0
- package/dist/modules/job-admin/dto/admin-create-job-information.dto.d.ts +1 -0
- package/dist/modules/job-admin/dto/admin-update-job-information.dto.d.ts +1 -0
- package/dist/modules/lead/dto/create-lead.dto.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -947,6 +947,7 @@ declare class FreelancerAssessment extends BaseEntity {
|
|
|
947
947
|
user: User;
|
|
948
948
|
interviewId: string;
|
|
949
949
|
interviewLink: string;
|
|
950
|
+
iframeResponse: string;
|
|
950
951
|
interviewSummary: string;
|
|
951
952
|
status: AssessmentStatusEnum;
|
|
952
953
|
}
|
|
@@ -1557,6 +1558,7 @@ declare const CLIENT_ADMIN_PATTERNS: {
|
|
|
1557
1558
|
deleteAdminClient: string;
|
|
1558
1559
|
exportAdminClients: string;
|
|
1559
1560
|
fetchClientCount: string;
|
|
1561
|
+
fetchClientDropdown: string;
|
|
1560
1562
|
};
|
|
1561
1563
|
|
|
1562
1564
|
declare enum CreateClientHiringModeEnum {
|
|
@@ -1770,6 +1772,7 @@ declare class AdminCreateJobInformationDto {
|
|
|
1770
1772
|
countryId: number;
|
|
1771
1773
|
stateId: number;
|
|
1772
1774
|
cityId: number;
|
|
1775
|
+
clientId: number;
|
|
1773
1776
|
}
|
|
1774
1777
|
|
|
1775
1778
|
declare enum JobLocationEnums {
|
|
@@ -1800,6 +1803,7 @@ declare class AdminUpdateJobInformationDto {
|
|
|
1800
1803
|
countryId: number;
|
|
1801
1804
|
stateId: number;
|
|
1802
1805
|
cityId: number;
|
|
1806
|
+
clientId: number;
|
|
1803
1807
|
}
|
|
1804
1808
|
|
|
1805
1809
|
declare const LEAD_PATTERN: {
|
|
@@ -1809,7 +1813,7 @@ declare const LEAD_PATTERN: {
|
|
|
1809
1813
|
|
|
1810
1814
|
declare enum CategoryEmumDto {
|
|
1811
1815
|
BUSINESS = "BUSINESS",
|
|
1812
|
-
|
|
1816
|
+
FREELANCER = "FREELANCER"
|
|
1813
1817
|
}
|
|
1814
1818
|
declare class CreateLeadDto {
|
|
1815
1819
|
name: string;
|
|
@@ -1879,7 +1883,7 @@ declare class Cms extends BaseEntity {
|
|
|
1879
1883
|
|
|
1880
1884
|
declare enum CategoryEmum {
|
|
1881
1885
|
BUSINESS = "BUSINESS",
|
|
1882
|
-
|
|
1886
|
+
FREELANCER = "FREELANCER"
|
|
1883
1887
|
}
|
|
1884
1888
|
declare class Lead extends BaseEntity {
|
|
1885
1889
|
name: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -947,6 +947,7 @@ declare class FreelancerAssessment extends BaseEntity {
|
|
|
947
947
|
user: User;
|
|
948
948
|
interviewId: string;
|
|
949
949
|
interviewLink: string;
|
|
950
|
+
iframeResponse: string;
|
|
950
951
|
interviewSummary: string;
|
|
951
952
|
status: AssessmentStatusEnum;
|
|
952
953
|
}
|
|
@@ -1557,6 +1558,7 @@ declare const CLIENT_ADMIN_PATTERNS: {
|
|
|
1557
1558
|
deleteAdminClient: string;
|
|
1558
1559
|
exportAdminClients: string;
|
|
1559
1560
|
fetchClientCount: string;
|
|
1561
|
+
fetchClientDropdown: string;
|
|
1560
1562
|
};
|
|
1561
1563
|
|
|
1562
1564
|
declare enum CreateClientHiringModeEnum {
|
|
@@ -1770,6 +1772,7 @@ declare class AdminCreateJobInformationDto {
|
|
|
1770
1772
|
countryId: number;
|
|
1771
1773
|
stateId: number;
|
|
1772
1774
|
cityId: number;
|
|
1775
|
+
clientId: number;
|
|
1773
1776
|
}
|
|
1774
1777
|
|
|
1775
1778
|
declare enum JobLocationEnums {
|
|
@@ -1800,6 +1803,7 @@ declare class AdminUpdateJobInformationDto {
|
|
|
1800
1803
|
countryId: number;
|
|
1801
1804
|
stateId: number;
|
|
1802
1805
|
cityId: number;
|
|
1806
|
+
clientId: number;
|
|
1803
1807
|
}
|
|
1804
1808
|
|
|
1805
1809
|
declare const LEAD_PATTERN: {
|
|
@@ -1809,7 +1813,7 @@ declare const LEAD_PATTERN: {
|
|
|
1809
1813
|
|
|
1810
1814
|
declare enum CategoryEmumDto {
|
|
1811
1815
|
BUSINESS = "BUSINESS",
|
|
1812
|
-
|
|
1816
|
+
FREELANCER = "FREELANCER"
|
|
1813
1817
|
}
|
|
1814
1818
|
declare class CreateLeadDto {
|
|
1815
1819
|
name: string;
|
|
@@ -1879,7 +1883,7 @@ declare class Cms extends BaseEntity {
|
|
|
1879
1883
|
|
|
1880
1884
|
declare enum CategoryEmum {
|
|
1881
1885
|
BUSINESS = "BUSINESS",
|
|
1882
|
-
|
|
1886
|
+
FREELANCER = "FREELANCER"
|
|
1883
1887
|
}
|
|
1884
1888
|
declare class Lead extends BaseEntity {
|
|
1885
1889
|
name: string;
|
package/dist/index.js
CHANGED
|
@@ -2494,6 +2494,9 @@ __decorateClass([
|
|
|
2494
2494
|
__decorateClass([
|
|
2495
2495
|
(0, import_typeorm25.Column)({ name: "interview_link", type: "text", nullable: true })
|
|
2496
2496
|
], FreelancerAssessment.prototype, "interviewLink", 2);
|
|
2497
|
+
__decorateClass([
|
|
2498
|
+
(0, import_typeorm25.Column)({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
2499
|
+
], FreelancerAssessment.prototype, "iframeResponse", 2);
|
|
2497
2500
|
__decorateClass([
|
|
2498
2501
|
(0, import_typeorm25.Column)({ name: "interview_summary", type: "jsonb", nullable: true })
|
|
2499
2502
|
], FreelancerAssessment.prototype, "interviewSummary", 2);
|
|
@@ -3615,7 +3618,8 @@ var CLIENT_ADMIN_PATTERNS = {
|
|
|
3615
3618
|
fetchAdminClientById: "fetch.admin.client_by_id",
|
|
3616
3619
|
deleteAdminClient: "delete.admin.client",
|
|
3617
3620
|
exportAdminClients: "export.admin.clients",
|
|
3618
|
-
fetchClientCount: "fetch.client.count"
|
|
3621
|
+
fetchClientCount: "fetch.client.count",
|
|
3622
|
+
fetchClientDropdown: "fetch.client.dropdown"
|
|
3619
3623
|
};
|
|
3620
3624
|
|
|
3621
3625
|
// src/modules/client-admin/dto/create-client.dto.ts
|
|
@@ -3947,6 +3951,9 @@ __decorateClass([
|
|
|
3947
3951
|
__decorateClass([
|
|
3948
3952
|
(0, import_class_validator54.IsInt)({ message: "City ID must be a valid integer." })
|
|
3949
3953
|
], AdminCreateJobInformationDto.prototype, "cityId", 2);
|
|
3954
|
+
__decorateClass([
|
|
3955
|
+
(0, import_class_validator54.IsInt)({ message: "Client ID must be a valid integer." })
|
|
3956
|
+
], AdminCreateJobInformationDto.prototype, "clientId", 2);
|
|
3950
3957
|
|
|
3951
3958
|
// src/modules/job-admin/dto/admin-update-job-information.dto.ts
|
|
3952
3959
|
var import_class_transformer9 = require("class-transformer");
|
|
@@ -4032,6 +4039,9 @@ __decorateClass([
|
|
|
4032
4039
|
__decorateClass([
|
|
4033
4040
|
(0, import_class_validator55.IsInt)({ message: "City ID must be a valid integer." })
|
|
4034
4041
|
], AdminUpdateJobInformationDto.prototype, "cityId", 2);
|
|
4042
|
+
__decorateClass([
|
|
4043
|
+
(0, import_class_validator55.IsInt)({ message: "Client ID must be a valid integer." })
|
|
4044
|
+
], AdminUpdateJobInformationDto.prototype, "clientId", 2);
|
|
4035
4045
|
|
|
4036
4046
|
// src/modules/lead/pattern/pattern.ts
|
|
4037
4047
|
var LEAD_PATTERN = {
|
|
@@ -4043,7 +4053,7 @@ var LEAD_PATTERN = {
|
|
|
4043
4053
|
var import_class_validator56 = require("class-validator");
|
|
4044
4054
|
var CategoryEmumDto = /* @__PURE__ */ ((CategoryEmumDto2) => {
|
|
4045
4055
|
CategoryEmumDto2["BUSINESS"] = "BUSINESS";
|
|
4046
|
-
CategoryEmumDto2["
|
|
4056
|
+
CategoryEmumDto2["FREELANCER"] = "FREELANCER";
|
|
4047
4057
|
return CategoryEmumDto2;
|
|
4048
4058
|
})(CategoryEmumDto || {});
|
|
4049
4059
|
var CreateLeadDto = class {
|
|
@@ -4411,7 +4421,7 @@ Cms = __decorateClass([
|
|
|
4411
4421
|
var import_typeorm41 = require("typeorm");
|
|
4412
4422
|
var CategoryEmum = /* @__PURE__ */ ((CategoryEmum2) => {
|
|
4413
4423
|
CategoryEmum2["BUSINESS"] = "BUSINESS";
|
|
4414
|
-
CategoryEmum2["
|
|
4424
|
+
CategoryEmum2["FREELANCER"] = "FREELANCER";
|
|
4415
4425
|
return CategoryEmum2;
|
|
4416
4426
|
})(CategoryEmum || {});
|
|
4417
4427
|
var Lead = class extends BaseEntity {
|
package/dist/index.mjs
CHANGED
|
@@ -2526,6 +2526,9 @@ __decorateClass([
|
|
|
2526
2526
|
__decorateClass([
|
|
2527
2527
|
Column25({ name: "interview_link", type: "text", nullable: true })
|
|
2528
2528
|
], FreelancerAssessment.prototype, "interviewLink", 2);
|
|
2529
|
+
__decorateClass([
|
|
2530
|
+
Column25({ name: "iframe_response", type: "jsonb", nullable: true })
|
|
2531
|
+
], FreelancerAssessment.prototype, "iframeResponse", 2);
|
|
2529
2532
|
__decorateClass([
|
|
2530
2533
|
Column25({ name: "interview_summary", type: "jsonb", nullable: true })
|
|
2531
2534
|
], FreelancerAssessment.prototype, "interviewSummary", 2);
|
|
@@ -3720,7 +3723,8 @@ var CLIENT_ADMIN_PATTERNS = {
|
|
|
3720
3723
|
fetchAdminClientById: "fetch.admin.client_by_id",
|
|
3721
3724
|
deleteAdminClient: "delete.admin.client",
|
|
3722
3725
|
exportAdminClients: "export.admin.clients",
|
|
3723
|
-
fetchClientCount: "fetch.client.count"
|
|
3726
|
+
fetchClientCount: "fetch.client.count",
|
|
3727
|
+
fetchClientDropdown: "fetch.client.dropdown"
|
|
3724
3728
|
};
|
|
3725
3729
|
|
|
3726
3730
|
// src/modules/client-admin/dto/create-client.dto.ts
|
|
@@ -4083,6 +4087,9 @@ __decorateClass([
|
|
|
4083
4087
|
__decorateClass([
|
|
4084
4088
|
IsInt6({ message: "City ID must be a valid integer." })
|
|
4085
4089
|
], AdminCreateJobInformationDto.prototype, "cityId", 2);
|
|
4090
|
+
__decorateClass([
|
|
4091
|
+
IsInt6({ message: "Client ID must be a valid integer." })
|
|
4092
|
+
], AdminCreateJobInformationDto.prototype, "clientId", 2);
|
|
4086
4093
|
|
|
4087
4094
|
// src/modules/job-admin/dto/admin-update-job-information.dto.ts
|
|
4088
4095
|
import { Type as Type9 } from "class-transformer";
|
|
@@ -4179,6 +4186,9 @@ __decorateClass([
|
|
|
4179
4186
|
__decorateClass([
|
|
4180
4187
|
IsInt7({ message: "City ID must be a valid integer." })
|
|
4181
4188
|
], AdminUpdateJobInformationDto.prototype, "cityId", 2);
|
|
4189
|
+
__decorateClass([
|
|
4190
|
+
IsInt7({ message: "Client ID must be a valid integer." })
|
|
4191
|
+
], AdminUpdateJobInformationDto.prototype, "clientId", 2);
|
|
4182
4192
|
|
|
4183
4193
|
// src/modules/lead/pattern/pattern.ts
|
|
4184
4194
|
var LEAD_PATTERN = {
|
|
@@ -4190,7 +4200,7 @@ var LEAD_PATTERN = {
|
|
|
4190
4200
|
import { IsString as IsString34, IsEmail as IsEmail15, IsOptional as IsOptional27, IsEnum as IsEnum20 } from "class-validator";
|
|
4191
4201
|
var CategoryEmumDto = /* @__PURE__ */ ((CategoryEmumDto2) => {
|
|
4192
4202
|
CategoryEmumDto2["BUSINESS"] = "BUSINESS";
|
|
4193
|
-
CategoryEmumDto2["
|
|
4203
|
+
CategoryEmumDto2["FREELANCER"] = "FREELANCER";
|
|
4194
4204
|
return CategoryEmumDto2;
|
|
4195
4205
|
})(CategoryEmumDto || {});
|
|
4196
4206
|
var CreateLeadDto = class {
|
|
@@ -4561,7 +4571,7 @@ import {
|
|
|
4561
4571
|
} from "typeorm";
|
|
4562
4572
|
var CategoryEmum = /* @__PURE__ */ ((CategoryEmum2) => {
|
|
4563
4573
|
CategoryEmum2["BUSINESS"] = "BUSINESS";
|
|
4564
|
-
CategoryEmum2["
|
|
4574
|
+
CategoryEmum2["FREELANCER"] = "FREELANCER";
|
|
4565
4575
|
return CategoryEmum2;
|
|
4566
4576
|
})(CategoryEmum || {});
|
|
4567
4577
|
var Lead = class extends BaseEntity {
|