From cf1e5179a98787ae5c6d000c7ae36f17921a29b7 Mon Sep 17 00:00:00 2001 From: Xor290 Date: Tue, 4 Aug 2026 21:56:10 +0200 Subject: [PATCH] chore: build --- omnex-plateform-app/src/api/api_admin.ts | 2 +- omnex-plateform-client/src/api/api_types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/omnex-plateform-app/src/api/api_admin.ts b/omnex-plateform-app/src/api/api_admin.ts index d2722b5..9b310c1 100644 --- a/omnex-plateform-app/src/api/api_admin.ts +++ b/omnex-plateform-app/src/api/api_admin.ts @@ -186,7 +186,7 @@ export interface MonthlyStatsSummary { total_quantity: number; } export interface MonthlyStats { - month: string; // "2026-06" + month: string; summary: MonthlyStatsSummary; by_day: MonthlyDayStat[]; } diff --git a/omnex-plateform-client/src/api/api_types.ts b/omnex-plateform-client/src/api/api_types.ts index b66244c..75408ee 100644 --- a/omnex-plateform-client/src/api/api_types.ts +++ b/omnex-plateform-client/src/api/api_types.ts @@ -10,7 +10,7 @@ export interface ApiResponse { token_type?: string; expires_in?: number; user?: UserResponse; - [key: string]: any; // Pour les champs additionnels + [key: string]: any; } /**