@experts_hub/shared 1.0.453 → 1.0.455

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.
@@ -32,5 +32,7 @@ export declare class StripeTransaction extends BaseEntity {
32
32
  netReceivedCents: number;
33
33
  stripeChargeId: string;
34
34
  stripeBalanceTransactionId: string;
35
+ checkoutSessionCompletedAt: Date;
35
36
  completedAt: Date;
37
+ rawSessionData: string;
36
38
  }
package/dist/index.d.mts CHANGED
@@ -1656,7 +1656,9 @@ declare class StripeTransaction extends BaseEntity {
1656
1656
  netReceivedCents: number;
1657
1657
  stripeChargeId: string;
1658
1658
  stripeBalanceTransactionId: string;
1659
+ checkoutSessionCompletedAt: Date;
1659
1660
  completedAt: Date;
1661
+ rawSessionData: string;
1660
1662
  }
1661
1663
 
1662
1664
  declare enum WalletTransactionTypeEnum {
package/dist/index.d.ts CHANGED
@@ -1656,7 +1656,9 @@ declare class StripeTransaction extends BaseEntity {
1656
1656
  netReceivedCents: number;
1657
1657
  stripeChargeId: string;
1658
1658
  stripeBalanceTransactionId: string;
1659
+ checkoutSessionCompletedAt: Date;
1659
1660
  completedAt: Date;
1661
+ rawSessionData: string;
1660
1662
  }
1661
1663
 
1662
1664
  declare enum WalletTransactionTypeEnum {
package/dist/index.js CHANGED
@@ -4917,9 +4917,15 @@ __decorateClass([
4917
4917
  __decorateClass([
4918
4918
  (0, import_typeorm55.Column)({ name: "stripe_balance_transaction_id", type: "varchar", nullable: true })
4919
4919
  ], StripeTransaction.prototype, "stripeBalanceTransactionId", 2);
4920
+ __decorateClass([
4921
+ (0, import_typeorm55.Column)({ name: "checkout_session_completed_at", type: "timestamptz", nullable: true })
4922
+ ], StripeTransaction.prototype, "checkoutSessionCompletedAt", 2);
4920
4923
  __decorateClass([
4921
4924
  (0, import_typeorm55.Column)({ name: "completed_at", type: "timestamptz", nullable: true })
4922
4925
  ], StripeTransaction.prototype, "completedAt", 2);
4926
+ __decorateClass([
4927
+ (0, import_typeorm55.Column)({ name: "raw_session_data", type: "jsonb", nullable: true })
4928
+ ], StripeTransaction.prototype, "rawSessionData", 2);
4923
4929
  StripeTransaction = __decorateClass([
4924
4930
  (0, import_typeorm55.Entity)("stripe_transactions")
4925
4931
  ], StripeTransaction);
package/dist/index.mjs CHANGED
@@ -4944,9 +4944,15 @@ __decorateClass([
4944
4944
  __decorateClass([
4945
4945
  Column55({ name: "stripe_balance_transaction_id", type: "varchar", nullable: true })
4946
4946
  ], StripeTransaction.prototype, "stripeBalanceTransactionId", 2);
4947
+ __decorateClass([
4948
+ Column55({ name: "checkout_session_completed_at", type: "timestamptz", nullable: true })
4949
+ ], StripeTransaction.prototype, "checkoutSessionCompletedAt", 2);
4947
4950
  __decorateClass([
4948
4951
  Column55({ name: "completed_at", type: "timestamptz", nullable: true })
4949
4952
  ], StripeTransaction.prototype, "completedAt", 2);
4953
+ __decorateClass([
4954
+ Column55({ name: "raw_session_data", type: "jsonb", nullable: true })
4955
+ ], StripeTransaction.prototype, "rawSessionData", 2);
4950
4956
  StripeTransaction = __decorateClass([
4951
4957
  Entity54("stripe_transactions")
4952
4958
  ], 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.455",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",