@experts_hub/shared 1.0.156 → 1.0.157

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.
@@ -31,4 +31,5 @@ export declare class CompanyProfile extends BaseEntity {
31
31
  kindOfHiring: KindOfHire;
32
32
  modeOfHire: ModeOfHire;
33
33
  foundUsOn: FromUsOn;
34
+ foundUsOnDetail: string;
34
35
  }
package/dist/index.d.mts CHANGED
@@ -631,6 +631,7 @@ declare class CompanyProfile extends BaseEntity {
631
631
  kindOfHiring: KindOfHire;
632
632
  modeOfHire: ModeOfHire;
633
633
  foundUsOn: FromUsOn;
634
+ foundUsOnDetail: string;
634
635
  }
635
636
 
636
637
  declare class Skill extends BaseEntity {
package/dist/index.d.ts CHANGED
@@ -631,6 +631,7 @@ declare class CompanyProfile extends BaseEntity {
631
631
  kindOfHiring: KindOfHire;
632
632
  modeOfHire: ModeOfHire;
633
633
  foundUsOn: FromUsOn;
634
+ foundUsOnDetail: string;
634
635
  }
635
636
 
636
637
  declare class Skill extends BaseEntity {
package/dist/index.js CHANGED
@@ -1389,6 +1389,9 @@ __decorateClass([
1389
1389
  nullable: true
1390
1390
  })
1391
1391
  ], CompanyProfile.prototype, "foundUsOn", 2);
1392
+ __decorateClass([
1393
+ (0, import_typeorm6.Column)({ name: "found_us_on_detail", type: "varchar", nullable: true })
1394
+ ], CompanyProfile.prototype, "foundUsOnDetail", 2);
1392
1395
  CompanyProfile = __decorateClass([
1393
1396
  (0, import_typeorm6.Entity)("company_profiles")
1394
1397
  ], CompanyProfile);
package/dist/index.mjs CHANGED
@@ -1385,6 +1385,9 @@ __decorateClass([
1385
1385
  nullable: true
1386
1386
  })
1387
1387
  ], CompanyProfile.prototype, "foundUsOn", 2);
1388
+ __decorateClass([
1389
+ Column6({ name: "found_us_on_detail", type: "varchar", nullable: true })
1390
+ ], CompanyProfile.prototype, "foundUsOnDetail", 2);
1388
1391
  CompanyProfile = __decorateClass([
1389
1392
  Entity5("company_profiles")
1390
1393
  ], CompanyProfile);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.156",
3
+ "version": "1.0.157",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",