@experts_hub/shared 1.0.704 → 1.0.706

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,8 @@ export declare class User extends BaseEntity {
77
77
  dateOfBirth: Date;
78
78
  gender: string;
79
79
  profilePictureUrl: string;
80
+ presignedProfilePictureUrl: string;
81
+ presignedProfilePictureUrlExpiresAt: Date;
80
82
  email: string;
81
83
  mobileCode: string;
82
84
  mobile: string;
package/dist/index.d.mts CHANGED
@@ -2029,6 +2029,8 @@ declare class User extends BaseEntity {
2029
2029
  dateOfBirth: Date;
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
+ presignedProfilePictureUrl: string;
2033
+ presignedProfilePictureUrlExpiresAt: Date;
2032
2034
  email: string;
2033
2035
  mobileCode: string;
2034
2036
  mobile: string;
package/dist/index.d.ts CHANGED
@@ -2029,6 +2029,8 @@ declare class User extends BaseEntity {
2029
2029
  dateOfBirth: Date;
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
+ presignedProfilePictureUrl: string;
2033
+ presignedProfilePictureUrlExpiresAt: Date;
2032
2034
  email: string;
2033
2035
  mobileCode: string;
2034
2036
  mobile: string;
package/dist/index.js CHANGED
@@ -6799,6 +6799,12 @@ __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);
6805
+ __decorateClass([
6806
+ (0, import_typeorm79.Column)({ name: "presigned_profile_picture_url_expires_at", type: "timestamp with time zone", nullable: true })
6807
+ ], User.prototype, "presignedProfilePictureUrlExpiresAt", 2);
6802
6808
  __decorateClass([
6803
6809
  (0, import_typeorm79.Column)({ name: "email", type: "varchar", unique: true })
6804
6810
  ], User.prototype, "email", 2);
package/dist/index.mjs CHANGED
@@ -6601,6 +6601,12 @@ __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);
6607
+ __decorateClass([
6608
+ Column79({ name: "presigned_profile_picture_url_expires_at", type: "timestamp with time zone", nullable: true })
6609
+ ], User.prototype, "presignedProfilePictureUrlExpiresAt", 2);
6604
6610
  __decorateClass([
6605
6611
  Column79({ name: "email", type: "varchar", unique: true })
6606
6612
  ], 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.706",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",