@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.
- package/dist/entities/user.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
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);
|