@experts_hub/shared 1.0.736 → 1.0.737

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.
@@ -79,6 +79,7 @@ export declare class FreelancerProfile extends BaseEntity {
79
79
  onboardingStepCompleted: OnboardingStepEnum;
80
80
  designation: string;
81
81
  experience: string;
82
+ migratedExperience: string;
82
83
  address: string;
83
84
  addressLine: string;
84
85
  postalCode: string;
package/dist/index.d.mts CHANGED
@@ -596,6 +596,7 @@ declare class FreelancerProfile extends BaseEntity {
596
596
  onboardingStepCompleted: OnboardingStepEnum;
597
597
  designation: string;
598
598
  experience: string;
599
+ migratedExperience: string;
599
600
  address: string;
600
601
  addressLine: string;
601
602
  postalCode: string;
package/dist/index.d.ts CHANGED
@@ -596,6 +596,7 @@ declare class FreelancerProfile extends BaseEntity {
596
596
  onboardingStepCompleted: OnboardingStepEnum;
597
597
  designation: string;
598
598
  experience: string;
599
+ migratedExperience: string;
599
600
  address: string;
600
601
  addressLine: string;
601
602
  postalCode: string;
package/dist/index.js CHANGED
@@ -2317,6 +2317,9 @@ __decorateClass([
2317
2317
  __decorateClass([
2318
2318
  (0, import_typeorm9.Column)({ name: "experience", type: "varchar", nullable: true })
2319
2319
  ], FreelancerProfile.prototype, "experience", 2);
2320
+ __decorateClass([
2321
+ (0, import_typeorm9.Column)({ name: "migrated_experience", type: "varchar", nullable: true })
2322
+ ], FreelancerProfile.prototype, "migratedExperience", 2);
2320
2323
  __decorateClass([
2321
2324
  (0, import_typeorm9.Column)({ name: "address", type: "varchar", nullable: true })
2322
2325
  ], FreelancerProfile.prototype, "address", 2);
package/dist/index.mjs CHANGED
@@ -1930,6 +1930,9 @@ __decorateClass([
1930
1930
  __decorateClass([
1931
1931
  Column9({ name: "experience", type: "varchar", nullable: true })
1932
1932
  ], FreelancerProfile.prototype, "experience", 2);
1933
+ __decorateClass([
1934
+ Column9({ name: "migrated_experience", type: "varchar", nullable: true })
1935
+ ], FreelancerProfile.prototype, "migratedExperience", 2);
1933
1936
  __decorateClass([
1934
1937
  Column9({ name: "address", type: "varchar", nullable: true })
1935
1938
  ], FreelancerProfile.prototype, "address", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.736",
3
+ "version": "1.0.737",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",