@experts_hub/shared 1.0.736 → 1.0.738

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;
@@ -93,8 +93,8 @@ export declare class User extends BaseEntity {
93
93
  isMobileVerified: boolean;
94
94
  isSocial: boolean;
95
95
  isReferralUser: boolean;
96
- isVerified: boolean;
97
- verifiedAt: Date | null;
96
+ isEkycVerified: boolean;
97
+ ekycVerifiedAt: Date | null;
98
98
  lastLoginAt: Date;
99
99
  lastLoginIp: string;
100
100
  resetToken: string | null;
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;
@@ -2144,8 +2145,8 @@ declare class User extends BaseEntity {
2144
2145
  isMobileVerified: boolean;
2145
2146
  isSocial: boolean;
2146
2147
  isReferralUser: boolean;
2147
- isVerified: boolean;
2148
- verifiedAt: Date | null;
2148
+ isEkycVerified: boolean;
2149
+ ekycVerifiedAt: Date | null;
2149
2150
  lastLoginAt: Date;
2150
2151
  lastLoginIp: string;
2151
2152
  resetToken: string | null;
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;
@@ -2144,8 +2145,8 @@ declare class User extends BaseEntity {
2144
2145
  isMobileVerified: boolean;
2145
2146
  isSocial: boolean;
2146
2147
  isReferralUser: boolean;
2147
- isVerified: boolean;
2148
- verifiedAt: Date | null;
2148
+ isEkycVerified: boolean;
2149
+ ekycVerifiedAt: Date | null;
2149
2150
  lastLoginAt: Date;
2150
2151
  lastLoginIp: string;
2151
2152
  resetToken: string | null;
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);
@@ -7163,15 +7166,15 @@ __decorateClass([
7163
7166
  (0, import_typeorm82.Column)({ name: "is_referral_user", type: "boolean", default: false })
7164
7167
  ], User.prototype, "isReferralUser", 2);
7165
7168
  __decorateClass([
7166
- (0, import_typeorm82.Column)({ name: "is_verified", type: "boolean", default: false })
7167
- ], User.prototype, "isVerified", 2);
7169
+ (0, import_typeorm82.Column)({ name: "is_ekyc_verified", type: "boolean", default: false })
7170
+ ], User.prototype, "isEkycVerified", 2);
7168
7171
  __decorateClass([
7169
7172
  (0, import_typeorm82.Column)({
7170
- name: "verified_at",
7173
+ name: "ekyc_verified_at",
7171
7174
  type: "timestamp with time zone",
7172
7175
  nullable: true
7173
7176
  })
7174
- ], User.prototype, "verifiedAt", 2);
7177
+ ], User.prototype, "ekycVerifiedAt", 2);
7175
7178
  __decorateClass([
7176
7179
  (0, import_typeorm82.Column)({
7177
7180
  name: "last_login_at",
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);
@@ -6968,15 +6971,15 @@ __decorateClass([
6968
6971
  Column82({ name: "is_referral_user", type: "boolean", default: false })
6969
6972
  ], User.prototype, "isReferralUser", 2);
6970
6973
  __decorateClass([
6971
- Column82({ name: "is_verified", type: "boolean", default: false })
6972
- ], User.prototype, "isVerified", 2);
6974
+ Column82({ name: "is_ekyc_verified", type: "boolean", default: false })
6975
+ ], User.prototype, "isEkycVerified", 2);
6973
6976
  __decorateClass([
6974
6977
  Column82({
6975
- name: "verified_at",
6978
+ name: "ekyc_verified_at",
6976
6979
  type: "timestamp with time zone",
6977
6980
  nullable: true
6978
6981
  })
6979
- ], User.prototype, "verifiedAt", 2);
6982
+ ], User.prototype, "ekycVerifiedAt", 2);
6980
6983
  __decorateClass([
6981
6984
  Column82({
6982
6985
  name: "last_login_at",
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.738",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",