Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | 2x 1x 1x 1x 1x 1x | import type { ApiClient, BusinessId } from "./api";
export interface AnalyticsDailySummary {
businessDate: string;
createdOrderCount: number;
createdOrderAmount: number;
paymentCount: number;
paymentAmount: number;
completedOrderCount: number;
completedOrderAmount: number;
closedOrderCount: number;
afterSaleCount: number;
afterSaleAmount: number;
refundCount: number;
refundAmount: number;
updatedAt: string;
}
export interface AnalyticsProductSummary {
productId: BusinessId;
productTitle: string;
completedOrderCount: number;
unitsSold: number;
netRevenue: number;
revenueCoveredOrderCount: number;
}
export interface AnalyticsOverviewTotals {
createdOrderCount: number;
createdOrderAmount: number;
paymentCount: number;
paymentAmount: number;
completedOrderCount: number;
completedOrderAmount: number;
closedOrderCount: number;
afterSaleCount: number;
afterSaleAmount: number;
refundCount: number;
refundAmount: number;
uniqueCustomers: number;
}
export interface AnalyticsProjectionFreshness {
sourceEventCount: number;
lastConsumedAt: string | null;
generatedAt: string;
}
export interface AnalyticsDashboard {
from: string;
to: string;
totals: AnalyticsOverviewTotals;
daily: AnalyticsDailySummary[];
topProducts: AnalyticsProductSummary[];
freshness: AnalyticsProjectionFreshness;
}
export interface AnalyticsProjectionIssue {
projection: string;
issueType: string;
key: string;
expected: string | null;
actual: string | null;
}
export interface AnalyticsReconciliation {
from: string;
to: string;
checkedDailyRows: number;
checkedProductRows: number;
issueCount: number;
saturated: boolean;
issues: AnalyticsProjectionIssue[];
generatedAt: string;
}
export interface AnalyticsRebuildInput {
commandId: string;
reason: string;
from: string;
to: string;
}
export interface AnalyticsRebuildResult {
commandId: string;
operatorId: BusinessId;
reason: string;
from: string;
to: string;
sourceEventCount: number;
beforeIssueCount: number;
afterIssueCount: number;
createdAt: string;
}
export interface AnalyticsApi {
overview(from: string, to: string, productLimit?: number): Promise<AnalyticsDashboard>;
reconciliation(from: string, to: string): Promise<AnalyticsReconciliation>;
rebuild(input: AnalyticsRebuildInput): Promise<AnalyticsRebuildResult>;
}
export function createAnalyticsApi(client: ApiClient): AnalyticsApi {
return {
overview(from, to, productLimit = 10) {
const query = new URLSearchParams({
from,
to,
productLimit: String(productLimit),
});
return client.request<AnalyticsDashboard>(
`/api/v1/analytics/overview?${query.toString()}`,
);
},
reconciliation(from, to) {
const query = new URLSearchParams({ from, to });
return client.request<AnalyticsReconciliation>(
`/api/v1/analytics/admin/reconciliation?${query.toString()}`,
);
},
rebuild(input) {
return client.request<AnalyticsRebuildResult>(
"/api/v1/analytics/admin/rebuild",
{
method: "POST",
body: JSON.stringify(input),
},
);
},
};
}
|