@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.
- package/dist/entities/stripe-transaction.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
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);
|