anymal-protocol 1.0.88 → 1.0.89

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.js CHANGED
@@ -2552,6 +2552,12 @@ function useSubmitContractAction() {
2552
2552
  if (isWishlistPurchaseAction(payload)) {
2553
2553
  sourceTypePayload = {
2554
2554
  ...basisType,
2555
+ orderId: payload.orderId,
2556
+ totalSpent: payload.totalSpent,
2557
+ paymentTxId: payload.paymentTxId,
2558
+ paymentSource: payload.paymentSource,
2559
+ kibblePaymentTxId: payload.kibblePaymentTxId,
2560
+ lineItems: payload.lineItems || [],
2555
2561
  wishlistId: payload.wishlistId
2556
2562
  };
2557
2563
  }
package/dist/index.mjs CHANGED
@@ -2409,6 +2409,12 @@ function useSubmitContractAction() {
2409
2409
  if (isWishlistPurchaseAction(payload)) {
2410
2410
  sourceTypePayload = {
2411
2411
  ...basisType,
2412
+ orderId: payload.orderId,
2413
+ totalSpent: payload.totalSpent,
2414
+ paymentTxId: payload.paymentTxId,
2415
+ paymentSource: payload.paymentSource,
2416
+ kibblePaymentTxId: payload.kibblePaymentTxId,
2417
+ lineItems: payload.lineItems || [],
2412
2418
  wishlistId: payload.wishlistId
2413
2419
  };
2414
2420
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anymal-protocol",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "description": "A React/TypeScript-based utility library for reusable functions and hooks inside of the Anymal Ecosystem.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {