@lookiero/checkout 0.2.8 → 0.2.9

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.
Files changed (82) hide show
  1. package/dist/domain/checkout/command/startCheckout.d.ts +12 -0
  2. package/dist/domain/checkout/command/startCheckout.js +4 -0
  3. package/dist/domain/checkout/model/checkout.d.ts +17 -0
  4. package/dist/domain/checkout/model/checkout.js +20 -0
  5. package/dist/domain/checkout/model/checkoutStarted.d.ts +13 -0
  6. package/dist/domain/checkout/model/checkoutStarted.js +4 -0
  7. package/dist/domain/checkout/model/checkouts.d.ts +7 -0
  8. package/dist/domain/checkout/model/checkouts.js +1 -0
  9. package/dist/domain/checkoutBooking/command/bookSizeReplaceableProductVariantsForCheckoutItem.d.ts +0 -1
  10. package/dist/domain/checkoutBooking/model/checkoutBooking.d.ts +0 -1
  11. package/dist/domain/checkoutBooking/model/checkoutBooking.js +1 -3
  12. package/dist/domain/checkoutBooking/model/checkoutBookingBooked.d.ts +0 -1
  13. package/dist/index.d.ts +1 -0
  14. package/dist/index.js +1 -0
  15. package/dist/infrastructure/delivery/bootstrap.js +13 -4
  16. package/dist/infrastructure/delivery/{_mock/bootstrap.mock.js → bootstrap.mock.js} +14 -13
  17. package/dist/infrastructure/domain/checkout/model/httpCheckouts.d.ts +16 -0
  18. package/dist/infrastructure/domain/checkout/model/httpCheckouts.js +21 -0
  19. package/dist/infrastructure/domain/checkout/model/httpCheckoutsStart.d.ts +5 -0
  20. package/dist/infrastructure/domain/checkout/model/httpCheckoutsStart.js +14 -0
  21. package/dist/infrastructure/domain/checkout/react/useStartCheckout.d.ts +13 -0
  22. package/dist/infrastructure/domain/checkout/react/useStartCheckout.js +10 -0
  23. package/dist/infrastructure/domain/checkoutBooking/model/httpCheckoutBookings.js +2 -2
  24. package/dist/infrastructure/domain/{react → checkoutBooking/react}/useBookSizeReplaceableProductVariantsForCheckoutItem.js +2 -3
  25. package/dist/infrastructure/domain/{react → uiSetting/react}/useSetCheckoutIntroShown.js +1 -1
  26. package/dist/infrastructure/domain/{react → uiSetting/react}/useUpdateUiSetting.js +2 -2
  27. package/dist/infrastructure/projection/{httpBookedSizeReplaceableProductVariantsForCheckoutItemView.d.ts → bookedSizeReplaceableProductVariants/httpBookedSizeReplaceableProductVariantsForCheckoutItemView.d.ts} +2 -2
  28. package/dist/infrastructure/projection/{react → bookedSizeReplaceableProductVariants/react}/useViewBookedSizeReplaceableProductVariantsForCheckoutItem.d.ts +1 -1
  29. package/dist/infrastructure/projection/{react → bookedSizeReplaceableProductVariants/react}/useViewBookedSizeReplaceableProductVariantsForCheckoutItem.js +2 -2
  30. package/dist/infrastructure/projection/checkout/checkout.d.ts +53 -0
  31. package/dist/infrastructure/projection/{httpFirstAvailableCheckoutByCustomerIdView.js → checkout/checkout.js} +1 -8
  32. package/dist/infrastructure/projection/checkout/checkout.mock.d.ts +17 -0
  33. package/dist/infrastructure/{delivery/_mock → projection/checkout}/checkout.mock.js +13 -10
  34. package/dist/infrastructure/projection/checkout/httpCheckoutByIdView.d.ts +12 -0
  35. package/dist/infrastructure/projection/checkout/httpCheckoutByIdView.js +9 -0
  36. package/dist/infrastructure/projection/checkout/httpFirstAvailableCheckoutByCustomerIdView.d.ts +12 -0
  37. package/dist/infrastructure/projection/checkout/httpFirstAvailableCheckoutByCustomerIdView.js +9 -0
  38. package/dist/infrastructure/projection/{httpFiveItemsDiscountByCustomerIdView.d.ts → checkout/httpFiveItemsDiscountByCustomerIdView.d.ts} +2 -2
  39. package/dist/infrastructure/projection/{httpIsCheckoutEnabledByCustomerIdView.d.ts → checkout/httpIsCheckoutEnabledByCustomerIdView.d.ts} +2 -2
  40. package/dist/infrastructure/projection/{react → checkout/react}/useViewFirstAvailableCheckoutByCustomerId.d.ts +1 -1
  41. package/dist/infrastructure/projection/{react → checkout/react}/useViewFirstAvailableCheckoutByCustomerId.js +2 -2
  42. package/dist/infrastructure/projection/{react → checkout/react}/useViewFiveItemsDiscountByCustomerId.d.ts +1 -1
  43. package/dist/infrastructure/projection/{react → checkout/react}/useViewFiveItemsDiscountByCustomerId.js +2 -2
  44. package/dist/infrastructure/projection/{react → checkout/react}/useViewIsCheckoutAccessibleByCustomerId.d.ts +1 -1
  45. package/dist/infrastructure/projection/{react → checkout/react}/useViewIsCheckoutAccessibleByCustomerId.js +2 -2
  46. package/dist/infrastructure/projection/uiSetting/react/useViewCheckoutIntroShown.d.ts +2 -0
  47. package/dist/infrastructure/projection/{react → uiSetting/react}/useViewCheckoutIntroShown.js +1 -1
  48. package/dist/infrastructure/projection/{react → uiSetting/react}/useViewUiSettingByKey.d.ts +1 -1
  49. package/dist/infrastructure/projection/{react → uiSetting/react}/useViewUiSettingByKey.js +3 -3
  50. package/dist/infrastructure/projection/{storageUiSettingByKeyView.d.ts → uiSetting/storageUiSettingByKeyView.d.ts} +3 -3
  51. package/dist/infrastructure/ui/Root.js +1 -1
  52. package/dist/infrastructure/ui/components/atoms/price/Price.d.ts +1 -1
  53. package/dist/infrastructure/ui/components/atoms/price/Price.js +2 -2
  54. package/dist/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.d.ts +0 -1
  55. package/dist/infrastructure/ui/routing/CheckoutAccessibilityMiddleware.js +2 -3
  56. package/dist/infrastructure/ui/routing/CheckoutMiddleware.js +3 -3
  57. package/dist/infrastructure/ui/views/intro/Intro.js +6 -6
  58. package/dist/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.d.ts +1 -1
  59. package/dist/infrastructure/ui/views/item/components/banner/CustomerDecissionBanner.js +3 -3
  60. package/dist/infrastructure/ui/views/item/components/productVariantActions/ProductVariantActions.d.ts +1 -1
  61. package/dist/infrastructure/ui/views/item/components/productVariantActions/ProductVariantActions.js +2 -2
  62. package/dist/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.d.ts +1 -1
  63. package/dist/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +3 -3
  64. package/dist/infrastructure/ui/views/item/components/productVariantSlider/ProductVariantSlider.d.ts +1 -1
  65. package/dist/projection/checkout/checkout.d.ts +78 -0
  66. package/dist/projection/checkout/checkout.js +29 -0
  67. package/dist/projection/checkout/viewCheckoutById.d.ts +25 -0
  68. package/dist/projection/checkout/viewCheckoutById.js +8 -0
  69. package/dist/projection/checkout/viewFirstAvailableCheckoutByCustomerId.d.ts +3 -83
  70. package/dist/projection/checkout/viewFirstAvailableCheckoutByCustomerId.js +1 -36
  71. package/package.json +3 -1
  72. package/dist/infrastructure/delivery/_mock/checkout.mock.d.ts +0 -9
  73. package/dist/infrastructure/projection/httpFirstAvailableCheckoutByCustomerIdView.d.ts +0 -60
  74. package/dist/infrastructure/projection/react/useViewCheckoutIntroShown.d.ts +0 -2
  75. /package/dist/infrastructure/delivery/{_mock/bootstrap.mock.d.ts → bootstrap.mock.d.ts} +0 -0
  76. /package/dist/infrastructure/domain/{react → checkoutBooking/react}/useBookSizeReplaceableProductVariantsForCheckoutItem.d.ts +0 -0
  77. /package/dist/infrastructure/domain/{react → uiSetting/react}/useSetCheckoutIntroShown.d.ts +0 -0
  78. /package/dist/infrastructure/domain/{react → uiSetting/react}/useUpdateUiSetting.d.ts +0 -0
  79. /package/dist/infrastructure/projection/{httpBookedSizeReplaceableProductVariantsForCheckoutItemView.js → bookedSizeReplaceableProductVariants/httpBookedSizeReplaceableProductVariantsForCheckoutItemView.js} +0 -0
  80. /package/dist/infrastructure/projection/{httpFiveItemsDiscountByCustomerIdView.js → checkout/httpFiveItemsDiscountByCustomerIdView.js} +0 -0
  81. /package/dist/infrastructure/projection/{httpIsCheckoutEnabledByCustomerIdView.js → checkout/httpIsCheckoutEnabledByCustomerIdView.js} +0 -0
  82. /package/dist/infrastructure/projection/{storageUiSettingByKeyView.js → uiSetting/storageUiSettingByKeyView.js} +0 -0
@@ -1,2 +0,0 @@
1
- declare const useViewCheckoutIntroShown: () => import("@lookiero/messaging-react").UseQueryFunctionResult<import("../../../projection/uiSetting/viewUiSettingByKey").UiSettingProjection>;
2
- export { useViewCheckoutIntroShown };