@bigbinary/neeto-webhooks-frontend 1.6.27 → 1.6.28
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/app/javascript/src/translations/en.json +1 -0
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/dist/index.cjs.js
CHANGED
|
@@ -695,8 +695,8 @@ var TransactionDetails = function TransactionDetails(_ref) {
|
|
|
695
695
|
var _useTranslation = reactI18next.useTranslation(),
|
|
696
696
|
t = _useTranslation.t;
|
|
697
697
|
var status = delivery.status,
|
|
698
|
-
|
|
699
|
-
|
|
698
|
+
responseStatusCode = delivery.responseStatusCode,
|
|
699
|
+
sid = delivery.sid;
|
|
700
700
|
var renderPayload = function renderPayload() {
|
|
701
701
|
try {
|
|
702
702
|
return JSON.stringify(JSON.parse(delivery.requestBody), null, 2);
|
|
@@ -711,11 +711,11 @@ var TransactionDetails = function TransactionDetails(_ref) {
|
|
|
711
711
|
className: "flex w-full flex-col space-y-2 pb-4",
|
|
712
712
|
children: [/*#__PURE__*/jsxRuntime.jsxs("span", {
|
|
713
713
|
className: "flex items-center space-x-1",
|
|
714
|
-
children: [t("neetoWebhooks.delivery.
|
|
714
|
+
children: [t("neetoWebhooks.delivery.sid"), ":", /*#__PURE__*/jsxRuntime.jsx(Typography__default["default"], {
|
|
715
715
|
className: "px-2 font-bold",
|
|
716
716
|
"data-cy": "delivery-identifier",
|
|
717
717
|
style: "body2",
|
|
718
|
-
children:
|
|
718
|
+
children: sid
|
|
719
719
|
})]
|
|
720
720
|
}), /*#__PURE__*/jsxRuntime.jsxs("span", {
|
|
721
721
|
className: "flex items-center",
|
|
@@ -879,9 +879,9 @@ var Details = function Details(_ref) {
|
|
|
879
879
|
var buildColumns$1 = function buildColumns(_ref) {
|
|
880
880
|
var handleDetailsClick = _ref.handleDetailsClick;
|
|
881
881
|
return [{
|
|
882
|
-
title: i18next.t("neetoWebhooks.delivery.
|
|
883
|
-
key: "
|
|
884
|
-
dataIndex: "
|
|
882
|
+
title: i18next.t("neetoWebhooks.delivery.sid", constants.SINGULAR),
|
|
883
|
+
key: "sid",
|
|
884
|
+
dataIndex: "sid",
|
|
885
885
|
width: 390,
|
|
886
886
|
render: function render(_, delivery) {
|
|
887
887
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
@@ -892,7 +892,7 @@ var buildColumns$1 = function buildColumns(_ref) {
|
|
|
892
892
|
onClick: function onClick() {
|
|
893
893
|
return handleDetailsClick(delivery.sid);
|
|
894
894
|
},
|
|
895
|
-
children: delivery.
|
|
895
|
+
children: delivery.sid
|
|
896
896
|
}), delivery.redelivery && /*#__PURE__*/jsxRuntime.jsx(Tag__default["default"], {
|
|
897
897
|
style: "info",
|
|
898
898
|
children: i18next.t("neetoWebhooks.delivery.redelivery")
|