Revert "feat: Add APIs"

This reverts commit 49acab85f5.
This commit is contained in:
Muhsin
2026-01-30 12:13:48 +04:00
parent 49acab85f5
commit 077dcdd659
13 changed files with 4 additions and 57 deletions
@@ -622,7 +622,6 @@
"AVG_FIRST_RESPONSE_TIME": "Avg. First Response Time",
"AVG_REPLY_TIME": "Avg. Customer Waiting Time",
"RESOLUTION_COUNT": "Resolution Count",
"CONVERSATIONS": "No. of conversations",
"OUTGOING_MESSAGES": "No. of outgoing messages"
"CONVERSATIONS": "No. of conversations"
}
}
@@ -70,11 +70,6 @@ const columns = computed(() => [
width: 200,
cell: defaulSpanRender,
}),
columnHelper.accessor('outgoingMessagesCount', {
header: t('SUMMARY_REPORTS.OUTGOING_MESSAGES'),
width: 200,
cell: defaulSpanRender,
}),
columnHelper.accessor('avgFirstResponseTime', {
header: t('SUMMARY_REPORTS.AVG_FIRST_RESPONSE_TIME'),
width: 200,
@@ -106,7 +101,6 @@ const tableData = computed(() =>
const rowMetrics = getMetrics(row.id);
const {
conversationsCount,
outgoingMessagesCount,
avgFirstResponseTime,
avgResolutionTime,
avgReplyTime,
@@ -118,7 +112,6 @@ const tableData = computed(() =>
name: row.name ?? row.title,
type: props.type,
conversationsCount: renderCount(conversationsCount),
outgoingMessagesCount: renderCount(outgoingMessagesCount),
avgFirstResponseTime: renderAvgTime(avgFirstResponseTime),
avgReplyTime: renderAvgTime(avgReplyTime),
avgResolutionTime: renderAvgTime(avgResolutionTime),