@experts_hub/shared 1.0.701 → 1.0.702

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.
@@ -18,6 +18,7 @@ export declare class UserSubscriptionTransaction extends BaseEntity {
18
18
  userId: number;
19
19
  type: UserSubscriptionTransactionTypeEnum;
20
20
  status: UserSubscriptionTransactionStatusEnum;
21
+ planName: string | null;
21
22
  amountMinor: number | null;
22
23
  currency: string | null;
23
24
  stripeEventId: string | null;
@@ -25,5 +26,6 @@ export declare class UserSubscriptionTransaction extends BaseEntity {
25
26
  stripeSubscriptionId: string | null;
26
27
  stripeInvoiceId: string | null;
27
28
  description: string | null;
29
+ invoiceUrl: string | null;
28
30
  metadata: Record<string, unknown> | null;
29
31
  }
package/dist/index.d.mts CHANGED
@@ -5114,6 +5114,7 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5114
5114
  userId: number;
5115
5115
  type: UserSubscriptionTransactionTypeEnum;
5116
5116
  status: UserSubscriptionTransactionStatusEnum;
5117
+ planName: string | null;
5117
5118
  amountMinor: number | null;
5118
5119
  currency: string | null;
5119
5120
  stripeEventId: string | null;
@@ -5121,6 +5122,7 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5121
5122
  stripeSubscriptionId: string | null;
5122
5123
  stripeInvoiceId: string | null;
5123
5124
  description: string | null;
5125
+ invoiceUrl: string | null;
5124
5126
  metadata: Record<string, unknown> | null;
5125
5127
  }
5126
5128
 
package/dist/index.d.ts CHANGED
@@ -5114,6 +5114,7 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5114
5114
  userId: number;
5115
5115
  type: UserSubscriptionTransactionTypeEnum;
5116
5116
  status: UserSubscriptionTransactionStatusEnum;
5117
+ planName: string | null;
5117
5118
  amountMinor: number | null;
5118
5119
  currency: string | null;
5119
5120
  stripeEventId: string | null;
@@ -5121,6 +5122,7 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5121
5122
  stripeSubscriptionId: string | null;
5122
5123
  stripeInvoiceId: string | null;
5123
5124
  description: string | null;
5125
+ invoiceUrl: string | null;
5124
5126
  metadata: Record<string, unknown> | null;
5125
5127
  }
5126
5128
 
package/dist/index.js CHANGED
@@ -14936,6 +14936,9 @@ __decorateClass([
14936
14936
  default: "COMPLETED" /* COMPLETED */
14937
14937
  })
14938
14938
  ], UserSubscriptionTransaction.prototype, "status", 2);
14939
+ __decorateClass([
14940
+ (0, import_typeorm101.Column)({ name: "plan_name", type: "text", nullable: true })
14941
+ ], UserSubscriptionTransaction.prototype, "planName", 2);
14939
14942
  __decorateClass([
14940
14943
  (0, import_typeorm101.Column)({ name: "amount_minor", type: "integer", nullable: true })
14941
14944
  ], UserSubscriptionTransaction.prototype, "amountMinor", 2);
@@ -14957,6 +14960,9 @@ __decorateClass([
14957
14960
  __decorateClass([
14958
14961
  (0, import_typeorm101.Column)({ name: "description", type: "text", nullable: true })
14959
14962
  ], UserSubscriptionTransaction.prototype, "description", 2);
14963
+ __decorateClass([
14964
+ (0, import_typeorm101.Column)({ name: "invoice_url", type: "text", nullable: true })
14965
+ ], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
14960
14966
  __decorateClass([
14961
14967
  (0, import_typeorm101.Column)({ name: "metadata", type: "jsonb", nullable: true, default: {} })
14962
14968
  ], UserSubscriptionTransaction.prototype, "metadata", 2);
package/dist/index.mjs CHANGED
@@ -15118,6 +15118,9 @@ __decorateClass([
15118
15118
  default: "COMPLETED" /* COMPLETED */
15119
15119
  })
15120
15120
  ], UserSubscriptionTransaction.prototype, "status", 2);
15121
+ __decorateClass([
15122
+ Column98({ name: "plan_name", type: "text", nullable: true })
15123
+ ], UserSubscriptionTransaction.prototype, "planName", 2);
15121
15124
  __decorateClass([
15122
15125
  Column98({ name: "amount_minor", type: "integer", nullable: true })
15123
15126
  ], UserSubscriptionTransaction.prototype, "amountMinor", 2);
@@ -15139,6 +15142,9 @@ __decorateClass([
15139
15142
  __decorateClass([
15140
15143
  Column98({ name: "description", type: "text", nullable: true })
15141
15144
  ], UserSubscriptionTransaction.prototype, "description", 2);
15145
+ __decorateClass([
15146
+ Column98({ name: "invoice_url", type: "text", nullable: true })
15147
+ ], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
15142
15148
  __decorateClass([
15143
15149
  Column98({ name: "metadata", type: "jsonb", nullable: true, default: {} })
15144
15150
  ], UserSubscriptionTransaction.prototype, "metadata", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.701",
3
+ "version": "1.0.702",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",