@experts_hub/shared 1.0.705 → 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.
@@ -78,6 +78,7 @@ export declare class User extends BaseEntity {
78
78
  gender: string;
79
79
  profilePictureUrl: string;
80
80
  presignedProfilePictureUrl: string;
81
+ presignedProfilePictureUrlExpiresAt: Date;
81
82
  email: string;
82
83
  mobileCode: string;
83
84
  mobile: string;
package/dist/index.d.mts CHANGED
@@ -2030,6 +2030,7 @@ declare class User extends BaseEntity {
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
2032
  presignedProfilePictureUrl: string;
2033
+ presignedProfilePictureUrlExpiresAt: Date;
2033
2034
  email: string;
2034
2035
  mobileCode: string;
2035
2036
  mobile: string;
package/dist/index.d.ts CHANGED
@@ -2030,6 +2030,7 @@ declare class User extends BaseEntity {
2030
2030
  gender: string;
2031
2031
  profilePictureUrl: string;
2032
2032
  presignedProfilePictureUrl: string;
2033
+ presignedProfilePictureUrlExpiresAt: Date;
2033
2034
  email: string;
2034
2035
  mobileCode: string;
2035
2036
  mobile: string;
package/dist/index.js CHANGED
@@ -6802,6 +6802,9 @@ __decorateClass([
6802
6802
  __decorateClass([
6803
6803
  (0, import_typeorm79.Column)({ name: "presigned_profile_picture_url", type: "text", nullable: true })
6804
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);
6805
6808
  __decorateClass([
6806
6809
  (0, import_typeorm79.Column)({ name: "email", type: "varchar", unique: true })
6807
6810
  ], User.prototype, "email", 2);
package/dist/index.mjs CHANGED
@@ -6604,6 +6604,9 @@ __decorateClass([
6604
6604
  __decorateClass([
6605
6605
  Column79({ name: "presigned_profile_picture_url", type: "text", nullable: true })
6606
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);
6607
6610
  __decorateClass([
6608
6611
  Column79({ name: "email", type: "varchar", unique: true })
6609
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.705",
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/",