@experts_hub/shared 1.0.703 → 1.0.704

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.
@@ -27,5 +27,8 @@ export declare class UserSubscriptionTransaction extends BaseEntity {
27
27
  stripeInvoiceId: string | null;
28
28
  description: string | null;
29
29
  invoiceUrl: string | null;
30
+ checkoutRequestPayload: Record<string, unknown> | null;
31
+ checkoutResponsePayload: Record<string, unknown> | null;
32
+ webhookPayload: Record<string, unknown> | null;
30
33
  metadata: Record<string, unknown> | null;
31
34
  }
package/dist/index.d.mts CHANGED
@@ -5129,6 +5129,9 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5129
5129
  stripeInvoiceId: string | null;
5130
5130
  description: string | null;
5131
5131
  invoiceUrl: string | null;
5132
+ checkoutRequestPayload: Record<string, unknown> | null;
5133
+ checkoutResponsePayload: Record<string, unknown> | null;
5134
+ webhookPayload: Record<string, unknown> | null;
5132
5135
  metadata: Record<string, unknown> | null;
5133
5136
  }
5134
5137
 
package/dist/index.d.ts CHANGED
@@ -5129,6 +5129,9 @@ declare class UserSubscriptionTransaction extends BaseEntity {
5129
5129
  stripeInvoiceId: string | null;
5130
5130
  description: string | null;
5131
5131
  invoiceUrl: string | null;
5132
+ checkoutRequestPayload: Record<string, unknown> | null;
5133
+ checkoutResponsePayload: Record<string, unknown> | null;
5134
+ webhookPayload: Record<string, unknown> | null;
5132
5135
  metadata: Record<string, unknown> | null;
5133
5136
  }
5134
5137
 
package/dist/index.js CHANGED
@@ -15001,6 +15001,15 @@ __decorateClass([
15001
15001
  __decorateClass([
15002
15002
  (0, import_typeorm101.Column)({ name: "invoice_url", type: "text", nullable: true })
15003
15003
  ], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
15004
+ __decorateClass([
15005
+ (0, import_typeorm101.Column)({ name: "checkout_request_payload", type: "jsonb", nullable: true })
15006
+ ], UserSubscriptionTransaction.prototype, "checkoutRequestPayload", 2);
15007
+ __decorateClass([
15008
+ (0, import_typeorm101.Column)({ name: "checkout_response_payload", type: "jsonb", nullable: true })
15009
+ ], UserSubscriptionTransaction.prototype, "checkoutResponsePayload", 2);
15010
+ __decorateClass([
15011
+ (0, import_typeorm101.Column)({ name: "webhook_payload", type: "jsonb", nullable: true })
15012
+ ], UserSubscriptionTransaction.prototype, "webhookPayload", 2);
15004
15013
  __decorateClass([
15005
15014
  (0, import_typeorm101.Column)({ name: "metadata", type: "jsonb", nullable: true, default: {} })
15006
15015
  ], UserSubscriptionTransaction.prototype, "metadata", 2);
package/dist/index.mjs CHANGED
@@ -15183,6 +15183,15 @@ __decorateClass([
15183
15183
  __decorateClass([
15184
15184
  Column98({ name: "invoice_url", type: "text", nullable: true })
15185
15185
  ], UserSubscriptionTransaction.prototype, "invoiceUrl", 2);
15186
+ __decorateClass([
15187
+ Column98({ name: "checkout_request_payload", type: "jsonb", nullable: true })
15188
+ ], UserSubscriptionTransaction.prototype, "checkoutRequestPayload", 2);
15189
+ __decorateClass([
15190
+ Column98({ name: "checkout_response_payload", type: "jsonb", nullable: true })
15191
+ ], UserSubscriptionTransaction.prototype, "checkoutResponsePayload", 2);
15192
+ __decorateClass([
15193
+ Column98({ name: "webhook_payload", type: "jsonb", nullable: true })
15194
+ ], UserSubscriptionTransaction.prototype, "webhookPayload", 2);
15186
15195
  __decorateClass([
15187
15196
  Column98({ name: "metadata", type: "jsonb", nullable: true, default: {} })
15188
15197
  ], UserSubscriptionTransaction.prototype, "metadata", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.703",
3
+ "version": "1.0.704",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",