@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.js
CHANGED
|
@@ -645,8 +645,8 @@ var TransactionDetails = function TransactionDetails(_ref) {
|
|
|
645
645
|
var _useTranslation = useTranslation(),
|
|
646
646
|
t = _useTranslation.t;
|
|
647
647
|
var status = delivery.status,
|
|
648
|
-
|
|
649
|
-
|
|
648
|
+
responseStatusCode = delivery.responseStatusCode,
|
|
649
|
+
sid = delivery.sid;
|
|
650
650
|
var renderPayload = function renderPayload() {
|
|
651
651
|
try {
|
|
652
652
|
return JSON.stringify(JSON.parse(delivery.requestBody), null, 2);
|
|
@@ -661,11 +661,11 @@ var TransactionDetails = function TransactionDetails(_ref) {
|
|
|
661
661
|
className: "flex w-full flex-col space-y-2 pb-4",
|
|
662
662
|
children: [/*#__PURE__*/jsxs("span", {
|
|
663
663
|
className: "flex items-center space-x-1",
|
|
664
|
-
children: [t("neetoWebhooks.delivery.
|
|
664
|
+
children: [t("neetoWebhooks.delivery.sid"), ":", /*#__PURE__*/jsx(Typography, {
|
|
665
665
|
className: "px-2 font-bold",
|
|
666
666
|
"data-cy": "delivery-identifier",
|
|
667
667
|
style: "body2",
|
|
668
|
-
children:
|
|
668
|
+
children: sid
|
|
669
669
|
})]
|
|
670
670
|
}), /*#__PURE__*/jsxs("span", {
|
|
671
671
|
className: "flex items-center",
|
|
@@ -829,9 +829,9 @@ var Details = function Details(_ref) {
|
|
|
829
829
|
var buildColumns$1 = function buildColumns(_ref) {
|
|
830
830
|
var handleDetailsClick = _ref.handleDetailsClick;
|
|
831
831
|
return [{
|
|
832
|
-
title: t$1("neetoWebhooks.delivery.
|
|
833
|
-
key: "
|
|
834
|
-
dataIndex: "
|
|
832
|
+
title: t$1("neetoWebhooks.delivery.sid", SINGULAR),
|
|
833
|
+
key: "sid",
|
|
834
|
+
dataIndex: "sid",
|
|
835
835
|
width: 390,
|
|
836
836
|
render: function render(_, delivery) {
|
|
837
837
|
return /*#__PURE__*/jsxs("div", {
|
|
@@ -842,7 +842,7 @@ var buildColumns$1 = function buildColumns(_ref) {
|
|
|
842
842
|
onClick: function onClick() {
|
|
843
843
|
return handleDetailsClick(delivery.sid);
|
|
844
844
|
},
|
|
845
|
-
children: delivery.
|
|
845
|
+
children: delivery.sid
|
|
846
846
|
}), delivery.redelivery && /*#__PURE__*/jsx(Tag, {
|
|
847
847
|
style: "info",
|
|
848
848
|
children: t$1("neetoWebhooks.delivery.redelivery")
|