@experts_hub/shared 1.0.453 → 1.0.454

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.
@@ -33,4 +33,5 @@ export declare class StripeTransaction extends BaseEntity {
33
33
  stripeChargeId: string;
34
34
  stripeBalanceTransactionId: string;
35
35
  completedAt: Date;
36
+ rawSessionData: string;
36
37
  }
package/dist/index.d.mts CHANGED
@@ -1657,6 +1657,7 @@ declare class StripeTransaction extends BaseEntity {
1657
1657
  stripeChargeId: string;
1658
1658
  stripeBalanceTransactionId: string;
1659
1659
  completedAt: Date;
1660
+ rawSessionData: string;
1660
1661
  }
1661
1662
 
1662
1663
  declare enum WalletTransactionTypeEnum {
package/dist/index.d.ts CHANGED
@@ -1657,6 +1657,7 @@ declare class StripeTransaction extends BaseEntity {
1657
1657
  stripeChargeId: string;
1658
1658
  stripeBalanceTransactionId: string;
1659
1659
  completedAt: Date;
1660
+ rawSessionData: string;
1660
1661
  }
1661
1662
 
1662
1663
  declare enum WalletTransactionTypeEnum {
package/dist/index.js CHANGED
@@ -4920,6 +4920,9 @@ __decorateClass([
4920
4920
  __decorateClass([
4921
4921
  (0, import_typeorm55.Column)({ name: "completed_at", type: "timestamptz", nullable: true })
4922
4922
  ], StripeTransaction.prototype, "completedAt", 2);
4923
+ __decorateClass([
4924
+ (0, import_typeorm55.Column)({ name: "raw_session_data", type: "jsonb", nullable: true })
4925
+ ], StripeTransaction.prototype, "rawSessionData", 2);
4923
4926
  StripeTransaction = __decorateClass([
4924
4927
  (0, import_typeorm55.Entity)("stripe_transactions")
4925
4928
  ], StripeTransaction);
package/dist/index.mjs CHANGED
@@ -4947,6 +4947,9 @@ __decorateClass([
4947
4947
  __decorateClass([
4948
4948
  Column55({ name: "completed_at", type: "timestamptz", nullable: true })
4949
4949
  ], StripeTransaction.prototype, "completedAt", 2);
4950
+ __decorateClass([
4951
+ Column55({ name: "raw_session_data", type: "jsonb", nullable: true })
4952
+ ], StripeTransaction.prototype, "rawSessionData", 2);
4950
4953
  StripeTransaction = __decorateClass([
4951
4954
  Entity54("stripe_transactions")
4952
4955
  ], StripeTransaction);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.453",
3
+ "version": "1.0.454",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",