@experts_hub/shared 1.0.703 → 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.
|
@@ -27,5 +27,8 @@ export declare class UserSubscriptionTransaction extends BaseEntity {
|
|
|
27
27
|
stripeInvoiceId: string | null;
|
|
28
28
|
description: string | null;
|
|
29
29
|
invoiceUrl: string | null;
|
|
30
|
+
checkoutRequestPayload: Record<string, unknown> | null;
|
|
31
|
+
checkoutResponsePayload: Record<string, unknown> | null;
|
|
32
|
+
webhookPayload: Record<string, unknown> | null;
|
|
30
33
|
metadata: Record<string, unknown> | null;
|
|
31
34
|
}
|
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;
|
|
@@ -5129,6 +5130,9 @@ declare class UserSubscriptionTransaction extends BaseEntity {
|
|
|
5129
5130
|
stripeInvoiceId: string | null;
|
|
5130
5131
|
description: string | null;
|
|
5131
5132
|
invoiceUrl: string | null;
|
|
5133
|
+
checkoutRequestPayload: Record<string, unknown> | null;
|
|
5134
|
+
checkoutResponsePayload: Record<string, unknown> | null;
|
|
5135
|
+
webhookPayload: Record<string, unknown> | null;
|
|
5132
5136
|
metadata: Record<string, unknown> | null;
|
|
5133
5137
|
}
|
|
5134
5138
|
|
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;
|
|
@@ -5129,6 +5130,9 @@ declare class UserSubscriptionTransaction extends BaseEntity {
|
|
|
5129
5130
|
stripeInvoiceId: string | null;
|
|
5130
5131
|
description: string | null;
|
|
5131
5132
|
invoiceUrl: string | null;
|
|
5133
|
+
checkoutRequestPayload: Record<string, unknown> | null;
|
|
5134
|
+
checkoutResponsePayload: Record<string, unknown> | null;
|
|
5135
|
+
webhookPayload: Record<string, unknown> | null;
|
|
5132
5136
|
metadata: Record<string, unknown> | null;
|
|
5133
5137
|
}
|
|
5134
5138
|
|
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);
|
|
@@ -15001,6 +15004,15 @@ __decorateClass([
|
|
|
15001
15004
|
__decorateClass([
|
|
15002
15005
|
(0, import_typeorm101.Column)({ name: "invoice_url", type: "text", nullable: true })
|
|
15003
15006
|
], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
|
|
15007
|
+
__decorateClass([
|
|
15008
|
+
(0, import_typeorm101.Column)({ name: "checkout_request_payload", type: "jsonb", nullable: true })
|
|
15009
|
+
], UserSubscriptionTransaction.prototype, "checkoutRequestPayload", 2);
|
|
15010
|
+
__decorateClass([
|
|
15011
|
+
(0, import_typeorm101.Column)({ name: "checkout_response_payload", type: "jsonb", nullable: true })
|
|
15012
|
+
], UserSubscriptionTransaction.prototype, "checkoutResponsePayload", 2);
|
|
15013
|
+
__decorateClass([
|
|
15014
|
+
(0, import_typeorm101.Column)({ name: "webhook_payload", type: "jsonb", nullable: true })
|
|
15015
|
+
], UserSubscriptionTransaction.prototype, "webhookPayload", 2);
|
|
15004
15016
|
__decorateClass([
|
|
15005
15017
|
(0, import_typeorm101.Column)({ name: "metadata", type: "jsonb", nullable: true, default: {} })
|
|
15006
15018
|
], UserSubscriptionTransaction.prototype, "metadata", 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);
|
|
@@ -15183,6 +15186,15 @@ __decorateClass([
|
|
|
15183
15186
|
__decorateClass([
|
|
15184
15187
|
Column98({ name: "invoice_url", type: "text", nullable: true })
|
|
15185
15188
|
], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
|
|
15189
|
+
__decorateClass([
|
|
15190
|
+
Column98({ name: "checkout_request_payload", type: "jsonb", nullable: true })
|
|
15191
|
+
], UserSubscriptionTransaction.prototype, "checkoutRequestPayload", 2);
|
|
15192
|
+
__decorateClass([
|
|
15193
|
+
Column98({ name: "checkout_response_payload", type: "jsonb", nullable: true })
|
|
15194
|
+
], UserSubscriptionTransaction.prototype, "checkoutResponsePayload", 2);
|
|
15195
|
+
__decorateClass([
|
|
15196
|
+
Column98({ name: "webhook_payload", type: "jsonb", nullable: true })
|
|
15197
|
+
], UserSubscriptionTransaction.prototype, "webhookPayload", 2);
|
|
15186
15198
|
__decorateClass([
|
|
15187
15199
|
Column98({ name: "metadata", type: "jsonb", nullable: true, default: {} })
|
|
15188
15200
|
], UserSubscriptionTransaction.prototype, "metadata", 2);
|