@experts_hub/shared 1.0.240 → 1.0.241

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/index.d.mts CHANGED
@@ -1692,7 +1692,6 @@ interface ICreateClientPayload {
1692
1692
  kindOfHiring: string;
1693
1693
  modeOfHire: string;
1694
1694
  foundUsOn: string;
1695
- OTHER?: string;
1696
1695
  foundUsOnDetail?: string;
1697
1696
  }
1698
1697
  interface ICreateClientResponse {
@@ -1711,7 +1710,6 @@ interface IUpdateClientPayload {
1711
1710
  kindOfHiring?: string;
1712
1711
  modeOfHire?: string;
1713
1712
  foundUsOn?: string;
1714
- OTHER?: string;
1715
1713
  foundUsOnDetail?: string;
1716
1714
  }
1717
1715
  interface IUpdateClientResponse {
package/dist/index.d.ts CHANGED
@@ -1692,7 +1692,6 @@ interface ICreateClientPayload {
1692
1692
  kindOfHiring: string;
1693
1693
  modeOfHire: string;
1694
1694
  foundUsOn: string;
1695
- OTHER?: string;
1696
1695
  foundUsOnDetail?: string;
1697
1696
  }
1698
1697
  interface ICreateClientResponse {
@@ -1711,7 +1710,6 @@ interface IUpdateClientPayload {
1711
1710
  kindOfHiring?: string;
1712
1711
  modeOfHire?: string;
1713
1712
  foundUsOn?: string;
1714
- OTHER?: string;
1715
1713
  foundUsOnDetail?: string;
1716
1714
  }
1717
1715
  interface IUpdateClientResponse {
package/dist/index.js CHANGED
@@ -1841,7 +1841,7 @@ __decorateClass([
1841
1841
  (0, import_typeorm9.Column)({ name: "phone_number", type: "varchar", nullable: true })
1842
1842
  ], CompanyProfile.prototype, "phoneNumber", 2);
1843
1843
  __decorateClass([
1844
- (0, import_typeorm9.Column)({ name: "skills", type: "text", nullable: true })
1844
+ (0, import_typeorm9.Column)("text", { name: "skills", array: true, nullable: true })
1845
1845
  ], CompanyProfile.prototype, "skills", 2);
1846
1846
  __decorateClass([
1847
1847
  (0, import_typeorm9.Column)({ name: "required_freelancer", type: "varchar", nullable: true })
package/dist/index.mjs CHANGED
@@ -1787,7 +1787,7 @@ __decorateClass([
1787
1787
  Column9({ name: "phone_number", type: "varchar", nullable: true })
1788
1788
  ], CompanyProfile.prototype, "phoneNumber", 2);
1789
1789
  __decorateClass([
1790
- Column9({ name: "skills", type: "text", nullable: true })
1790
+ Column9("text", { name: "skills", array: true, nullable: true })
1791
1791
  ], CompanyProfile.prototype, "skills", 2);
1792
1792
  __decorateClass([
1793
1793
  Column9({ name: "required_freelancer", type: "varchar", nullable: true })
@@ -16,7 +16,6 @@ export interface ICreateClientPayload {
16
16
  kindOfHiring: string;
17
17
  modeOfHire: string;
18
18
  foundUsOn: string;
19
- OTHER?: string;
20
19
  foundUsOnDetail?: string;
21
20
  }
22
21
  export interface ICreateClientResponse {
@@ -35,7 +34,6 @@ export interface IUpdateClientPayload {
35
34
  kindOfHiring?: string;
36
35
  modeOfHire?: string;
37
36
  foundUsOn?: string;
38
- OTHER?: string;
39
37
  foundUsOnDetail?: string;
40
38
  }
41
39
  export interface IUpdateClientResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.240",
3
+ "version": "1.0.241",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",