@experts_hub/shared 1.0.454 → 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 +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1656,6 +1656,7 @@ declare class StripeTransaction extends BaseEntity {
|
|
|
1656
1656
|
netReceivedCents: number;
|
|
1657
1657
|
stripeChargeId: string;
|
|
1658
1658
|
stripeBalanceTransactionId: string;
|
|
1659
|
+
checkoutSessionCompletedAt: Date;
|
|
1659
1660
|
completedAt: Date;
|
|
1660
1661
|
rawSessionData: string;
|
|
1661
1662
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -1656,6 +1656,7 @@ declare class StripeTransaction extends BaseEntity {
|
|
|
1656
1656
|
netReceivedCents: number;
|
|
1657
1657
|
stripeChargeId: string;
|
|
1658
1658
|
stripeBalanceTransactionId: string;
|
|
1659
|
+
checkoutSessionCompletedAt: Date;
|
|
1659
1660
|
completedAt: Date;
|
|
1660
1661
|
rawSessionData: string;
|
|
1661
1662
|
}
|
package/dist/index.js
CHANGED
|
@@ -4917,6 +4917,9 @@ __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);
|
package/dist/index.mjs
CHANGED
|
@@ -4944,6 +4944,9 @@ __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);
|