@experts_hub/shared 1.0.217 → 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/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +11 -1
- package/dist/index.mjs +11 -1
- 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/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: {
|
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: {
|
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 = {
|
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 = {
|