@easypayment/medusa-paypal 0.4.9 → 0.5.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.
@@ -325,6 +325,9 @@ function AdvancedCardPaymentsTab() {
325
325
  function PayPalApplePayPage() {
326
326
  return /* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Navigate, { to: "/settings/paypal/connection", replace: true });
327
327
  }
328
+ function PayPalGooglePayPage() {
329
+ return /* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Navigate, { to: "/settings/paypal/connection", replace: true });
330
+ }
328
331
  const config = adminSdk.defineRouteConfig({
329
332
  label: "PayPal Connection",
330
333
  hide: true
@@ -926,9 +929,6 @@ function PayPalConnectionPage() {
926
929
  ` })
927
930
  ] });
928
931
  }
929
- function PayPalGooglePayPage() {
930
- return /* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Navigate, { to: "/settings/paypal/connection", replace: true });
931
- }
932
932
  function PayPalPayLaterMessagingPage() {
933
933
  return /* @__PURE__ */ jsxRuntime.jsx(reactRouterDom.Navigate, { to: "/settings/paypal/connection", replace: true });
934
934
  }
@@ -1224,14 +1224,14 @@ const routeModule = {
1224
1224
  Component: PayPalApplePayPage,
1225
1225
  path: "/settings/paypal/apple-pay"
1226
1226
  },
1227
- {
1228
- Component: PayPalConnectionPage,
1229
- path: "/settings/paypal/connection"
1230
- },
1231
1227
  {
1232
1228
  Component: PayPalGooglePayPage,
1233
1229
  path: "/settings/paypal/google-pay"
1234
1230
  },
1231
+ {
1232
+ Component: PayPalConnectionPage,
1233
+ path: "/settings/paypal/connection"
1234
+ },
1235
1235
  {
1236
1236
  Component: PayPalPayLaterMessagingPage,
1237
1237
  path: "/settings/paypal/pay-later-messaging"
@@ -324,6 +324,9 @@ function AdvancedCardPaymentsTab() {
324
324
  function PayPalApplePayPage() {
325
325
  return /* @__PURE__ */ jsx(Navigate, { to: "/settings/paypal/connection", replace: true });
326
326
  }
327
+ function PayPalGooglePayPage() {
328
+ return /* @__PURE__ */ jsx(Navigate, { to: "/settings/paypal/connection", replace: true });
329
+ }
327
330
  const config = defineRouteConfig({
328
331
  label: "PayPal Connection",
329
332
  hide: true
@@ -925,9 +928,6 @@ function PayPalConnectionPage() {
925
928
  ` })
926
929
  ] });
927
930
  }
928
- function PayPalGooglePayPage() {
929
- return /* @__PURE__ */ jsx(Navigate, { to: "/settings/paypal/connection", replace: true });
930
- }
931
931
  function PayPalPayLaterMessagingPage() {
932
932
  return /* @__PURE__ */ jsx(Navigate, { to: "/settings/paypal/connection", replace: true });
933
933
  }
@@ -1223,14 +1223,14 @@ const routeModule = {
1223
1223
  Component: PayPalApplePayPage,
1224
1224
  path: "/settings/paypal/apple-pay"
1225
1225
  },
1226
- {
1227
- Component: PayPalConnectionPage,
1228
- path: "/settings/paypal/connection"
1229
- },
1230
1226
  {
1231
1227
  Component: PayPalGooglePayPage,
1232
1228
  path: "/settings/paypal/google-pay"
1233
1229
  },
1230
+ {
1231
+ Component: PayPalConnectionPage,
1232
+ path: "/settings/paypal/connection"
1233
+ },
1234
1234
  {
1235
1235
  Component: PayPalPayLaterMessagingPage,
1236
1236
  path: "/settings/paypal/pay-later-messaging"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easypayment/medusa-paypal",
3
- "version": "0.4.9",
3
+ "version": "0.5.0",
4
4
  "description": "Industry-standard PayPal integration for Medusa v2",
5
5
  "license": "MIT",
6
6
  "main": "./.medusa/server/src/index.js",