@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.
- 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
package/dist/index.d.ts
CHANGED
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);
|