@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.
- 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
package/dist/index.d.ts
CHANGED
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);
|