@experts_hub/shared 1.0.704 → 1.0.705

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.
@@ -77,6 +77,7 @@ export declare class User extends BaseEntity {
77
77
  dateOfBirth: Date;
78
78
  gender: string;
79
79
  profilePictureUrl: string;
80
+ presignedProfilePictureUrl: string;
80
81
  email: string;
81
82
  mobileCode: string;
82
83
  mobile: string;
package/dist/index.d.mts CHANGED
@@ -2029,6 +2029,7 @@ declare class User extends BaseEntity {
2029
2029
  dateOfBirth: Date;
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
+ presignedProfilePictureUrl: string;
2032
2033
  email: string;
2033
2034
  mobileCode: string;
2034
2035
  mobile: string;
package/dist/index.d.ts CHANGED
@@ -2029,6 +2029,7 @@ declare class User extends BaseEntity {
2029
2029
  dateOfBirth: Date;
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
+ presignedProfilePictureUrl: string;
2032
2033
  email: string;
2033
2034
  mobileCode: string;
2034
2035
  mobile: string;
package/dist/index.js CHANGED
@@ -6799,6 +6799,9 @@ __decorateClass([
6799
6799
  __decorateClass([
6800
6800
  (0, import_typeorm79.Column)({ name: "profile_picture_url", type: "text", nullable: true })
6801
6801
  ], User.prototype, "profilePictureUrl", 2);
6802
+ __decorateClass([
6803
+ (0, import_typeorm79.Column)({ name: "presigned_profile_picture_url", type: "text", nullable: true })
6804
+ ], User.prototype, "presignedProfilePictureUrl", 2);
6802
6805
  __decorateClass([
6803
6806
  (0, import_typeorm79.Column)({ name: "email", type: "varchar", unique: true })
6804
6807
  ], User.prototype, "email", 2);
package/dist/index.mjs CHANGED
@@ -6601,6 +6601,9 @@ __decorateClass([
6601
6601
  __decorateClass([
6602
6602
  Column79({ name: "profile_picture_url", type: "text", nullable: true })
6603
6603
  ], User.prototype, "profilePictureUrl", 2);
6604
+ __decorateClass([
6605
+ Column79({ name: "presigned_profile_picture_url", type: "text", nullable: true })
6606
+ ], User.prototype, "presignedProfilePictureUrl", 2);
6604
6607
  __decorateClass([
6605
6608
  Column79({ name: "email", type: "varchar", unique: true })
6606
6609
  ], User.prototype, "email", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.704",
3
+ "version": "1.0.705",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",