fix: harden channel retry attribution and operations UI

This commit is contained in:
hectorzhao
2026-07-26 21:33:58 +08:00
parent 059b38e8fe
commit 0857de09d8
27 changed files with 888 additions and 117 deletions
@@ -226,8 +226,8 @@ describe('OperationsService', () => {
tenant: true,
application: true,
channel: true,
submitRecords: true,
receiptRecords: true,
submitRecords: { include: { channel: true } },
receiptRecords: { include: { channel: true } },
downstreamDeliveries: {
where: { deliveryType: 'receipt' },
select: { id: true, deliveryType: true, status: true, deliveredAt: true, lastError: true },
+2 -2
View File
@@ -102,8 +102,8 @@ export class OperationsService {
tenant: true,
application: true,
channel: true,
submitRecords: true,
receiptRecords: true,
submitRecords: { include: { channel: true } },
receiptRecords: { include: { channel: true } },
downstreamDeliveries: {
where: { deliveryType: 'receipt' },
select: { id: true, deliveryType: true, status: true, deliveredAt: true, lastError: true },