@lookiero/checkout 0.4.10 → 0.5.0-beta.0

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 (67) hide show
  1. package/dist/domain/checkout/command/markCheckoutAsPaid.d.ts +13 -0
  2. package/dist/domain/checkout/command/markCheckoutAsPaid.js +4 -0
  3. package/dist/domain/checkout/model/checkoutPaid.d.ts +13 -0
  4. package/dist/domain/checkout/model/checkoutPaid.js +4 -0
  5. package/dist/infrastructure/domain/checkout/model/httpCheckoutsMarkAsPaid.d.ts +5 -0
  6. package/dist/infrastructure/domain/checkout/model/httpCheckoutsMarkAsPaid.js +13 -0
  7. package/dist/infrastructure/domain/checkout/react/useMarkCheckoutAsPaid.d.ts +13 -0
  8. package/dist/infrastructure/domain/checkout/react/useMarkCheckoutAsPaid.js +16 -0
  9. package/dist/infrastructure/domain/checkoutBooking/react/useBookCheckouBookingForCheckoutItem.d.ts +13 -0
  10. package/dist/infrastructure/domain/checkoutBooking/react/useBookCheckouBookingForCheckoutItem.js +14 -0
  11. package/dist/infrastructure/projection/bookedSizeChangeProductsVariants/httpBookedSizeChangeProductsVariantsForCheckoutItemView.d.ts +12 -0
  12. package/dist/infrastructure/projection/bookedSizeChangeProductsVariants/httpBookedSizeChangeProductsVariantsForCheckoutItemView.js +9 -0
  13. package/dist/infrastructure/projection/bookedSizeChangeProductsVariants/react/useViewBookedSizeChangeProductsVariantsForCheckoutItem.d.ts +10 -0
  14. package/dist/infrastructure/projection/bookedSizeChangeProductsVariants/react/useViewBookedSizeChangeProductsVariantsForCheckoutItem.js +12 -0
  15. package/dist/infrastructure/projection/checkoutFeedback/httpCheckoutFeedbackByCheckoutIdView.d.ts +12 -0
  16. package/dist/infrastructure/projection/checkoutFeedback/httpCheckoutFeedbackByCheckoutIdView.js +9 -0
  17. package/dist/infrastructure/ui/Root.d.ts +3 -3
  18. package/dist/infrastructure/ui/Root.js +2 -2
  19. package/dist/infrastructure/ui/routing/Routing.d.ts +4 -4
  20. package/dist/infrastructure/ui/routing/Routing.js +11 -11
  21. package/dist/infrastructure/ui/views/App.d.ts +2 -1
  22. package/dist/infrastructure/ui/views/App.js +4 -5
  23. package/dist/infrastructure/ui/views/checkout/Checkout.d.ts +0 -2
  24. package/dist/infrastructure/ui/views/checkout/Checkout.js +3 -3
  25. package/dist/infrastructure/ui/views/feedback/Feedback.js +1 -1
  26. package/dist/infrastructure/ui/views/header/Header.js +3 -4
  27. package/dist/infrastructure/ui/views/header/Header.style.d.ts +1 -1
  28. package/dist/infrastructure/ui/views/header/Header.style.js +1 -1
  29. package/dist/infrastructure/ui/views/intro/Intro.js +1 -1
  30. package/dist/infrastructure/ui/views/item/Item.d.ts +0 -2
  31. package/dist/infrastructure/ui/views/item/Item.js +5 -5
  32. package/dist/infrastructure/ui/views/item/components/itemActions/ItemActions.d.ts +0 -2
  33. package/dist/infrastructure/ui/views/item/components/itemActions/ItemActions.js +2 -6
  34. package/dist/infrastructure/ui/views/item/components/productVariant/ProductVariant.d.ts +0 -2
  35. package/dist/infrastructure/ui/views/item/components/productVariant/ProductVariant.js +2 -3
  36. package/dist/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.d.ts +0 -2
  37. package/dist/infrastructure/ui/views/item/components/productVariantDescription/ProductVariantDescription.js +3 -5
  38. package/dist/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.d.ts +0 -2
  39. package/dist/infrastructure/ui/views/item/components/returnQuestionsForm/ReturnQuestionsForm.js +2 -2
  40. package/dist/infrastructure/ui/views/navigation/Navigation.d.ts +20 -0
  41. package/dist/infrastructure/ui/views/navigation/Navigation.js +16 -0
  42. package/dist/infrastructure/ui/views/navigation/Navigation.style.d.ts +5 -0
  43. package/dist/infrastructure/ui/views/navigation/Navigation.style.js +30 -0
  44. package/dist/infrastructure/ui/views/navigation/components/header/Header.d.ts +13 -0
  45. package/dist/infrastructure/ui/views/navigation/components/header/Header.js +88 -0
  46. package/dist/infrastructure/ui/views/navigation/components/header/Header.style.d.ts +35 -0
  47. package/dist/infrastructure/ui/views/navigation/components/header/Header.style.js +38 -0
  48. package/dist/infrastructure/ui/views/navigation/components/header/Logo.d.ts +7 -0
  49. package/dist/infrastructure/ui/views/navigation/components/header/Logo.js +11 -0
  50. package/dist/infrastructure/ui/views/navigation/components/header/Logo.style.d.ts +7 -0
  51. package/dist/infrastructure/ui/views/navigation/components/header/Logo.style.js +8 -0
  52. package/dist/infrastructure/ui/views/summary/Summary.d.ts +0 -2
  53. package/dist/infrastructure/ui/views/summary/Summary.js +3 -3
  54. package/dist/infrastructure/ui/views/summary/components/checkoutItemsTabs/CheckoutItemsTabs.d.ts +0 -2
  55. package/dist/infrastructure/ui/views/summary/components/checkoutItemsTabs/CheckoutItemsTabs.js +5 -5
  56. package/dist/projection/bookedSizeChangeProductsVariants/bookedSizeChangeProductsVariants.d.ts +10 -0
  57. package/dist/projection/bookedSizeChangeProductsVariants/viewBookedSizeChangeProductVariantsForCheckoutItem.d.ts +25 -0
  58. package/dist/projection/bookedSizeChangeProductsVariants/viewBookedSizeChangeProductVariantsForCheckoutItem.js +8 -0
  59. package/dist/projection/checkoutFeedback/viewCheckoutFeedbackByCheckoutId.d.ts +25 -0
  60. package/dist/projection/checkoutFeedback/viewCheckoutFeedbackByCheckoutId.js +8 -0
  61. package/dist/projection/shared/size.d.ts +0 -10
  62. package/dist/projection/shared/size.js +1 -3
  63. package/package.json +1 -1
  64. package/dist/projection/shared/country.d.ts +0 -13
  65. package/dist/projection/shared/country.js +0 -14
  66. package/dist/projection/shared/customer.d.ts +0 -6
  67. /package/dist/projection/{shared/customer.js → bookedSizeChangeProductsVariants/bookedSizeChangeProductsVariants.js} +0 -0
@@ -1,14 +0,0 @@
1
- var Country;
2
- (function (Country) {
3
- Country["ES"] = "ES";
4
- Country["FR"] = "FR";
5
- Country["GB"] = "GB";
6
- Country["BE"] = "BE";
7
- Country["LU"] = "LU";
8
- Country["IT"] = "IT";
9
- Country["PT"] = "PT";
10
- Country["DE"] = "DE";
11
- Country["AT"] = "AT";
12
- Country["NL"] = "NL";
13
- })(Country || (Country = {}));
14
- export { Country };
@@ -1,6 +0,0 @@
1
- import { Country } from "./country";
2
- interface Customer {
3
- readonly customerId: string;
4
- readonly country: Country;
5
- }
6
- export type { Customer };