@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.
@@ -14,6 +14,7 @@ export declare class FreelancerAssessment extends BaseEntity {
14
14
  user: User;
15
15
  interviewId: string;
16
16
  interviewLink: string;
17
+ iframeResponse: string;
17
18
  interviewSummary: string;
18
19
  status: AssessmentStatusEnum;
19
20
  }
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 = {
@@ -6,4 +6,5 @@ export declare const CLIENT_ADMIN_PATTERNS: {
6
6
  deleteAdminClient: string;
7
7
  exportAdminClients: string;
8
8
  fetchClientCount: string;
9
+ fetchClientDropdown: string;
9
10
  };
@@ -26,4 +26,5 @@ export declare class AdminCreateJobInformationDto {
26
26
  countryId: number;
27
27
  stateId: number;
28
28
  cityId: number;
29
+ clientId: number;
29
30
  }
@@ -26,4 +26,5 @@ export declare class AdminUpdateJobInformationDto {
26
26
  countryId: number;
27
27
  stateId: number;
28
28
  cityId: number;
29
+ clientId: number;
29
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.217",
3
+ "version": "1.0.218",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",