@waffo/pancake-ts 0.5.0 → 0.5.1

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/index.d.cts CHANGED
@@ -941,6 +941,7 @@ interface WebhookEventData {
941
941
  * eventType: "order.completed",
942
942
  * eventId: "PAY_5xK9mRtYvWnPqLsJ3hBfDe",
943
943
  * storeId: "STO_2aUyqjCzEIiEcYMKj7TZtw",
944
+ * storeName: "My Store",
944
945
  * mode: "prod",
945
946
  * data: { orderId: "...", buyerEmail: "...", currency: "USD", amount: "29.00", taxAmount: "2.90", productName: "Pro Plan", orderMetadata: { planId: "pro" } }
946
947
  * }
@@ -956,6 +957,8 @@ interface WebhookEvent<T = WebhookEventData> {
956
957
  eventId: string;
957
958
  /** Store ID the event belongs to */
958
959
  storeId: string;
960
+ /** Store name */
961
+ storeName: string;
959
962
  /** Environment identifier */
960
963
  mode: `${Environment}`;
961
964
  /** Event data */
package/dist/index.d.ts CHANGED
@@ -941,6 +941,7 @@ interface WebhookEventData {
941
941
  * eventType: "order.completed",
942
942
  * eventId: "PAY_5xK9mRtYvWnPqLsJ3hBfDe",
943
943
  * storeId: "STO_2aUyqjCzEIiEcYMKj7TZtw",
944
+ * storeName: "My Store",
944
945
  * mode: "prod",
945
946
  * data: { orderId: "...", buyerEmail: "...", currency: "USD", amount: "29.00", taxAmount: "2.90", productName: "Pro Plan", orderMetadata: { planId: "pro" } }
946
947
  * }
@@ -956,6 +957,8 @@ interface WebhookEvent<T = WebhookEventData> {
956
957
  eventId: string;
957
958
  /** Store ID the event belongs to */
958
959
  storeId: string;
960
+ /** Store name */
961
+ storeName: string;
959
962
  /** Environment identifier */
960
963
  mode: `${Environment}`;
961
964
  /** Event data */