diff --git a/app/ecolyo.96fcd7f198538dcc0761.js b/app/ecolyo.f46802066c2f7231fc48.js
similarity index 99%
rename from app/ecolyo.96fcd7f198538dcc0761.js
rename to app/ecolyo.f46802066c2f7231fc48.js
index 5b7872004e680ab18cceebd6dbc314f0ea2e63e8..fb82dd862d5ad661a842561cf6c2668d915728ed 100644
--- a/app/ecolyo.96fcd7f198538dcc0761.js
+++ b/app/ecolyo.f46802066c2f7231fc48.js
@@ -17249,7 +17249,7 @@ var QueryRunner = /*#__PURE__*/function () {
                   break;
                 }
 
-                filteredResult = this.filterDataList(result, timePeriod);
+                filteredResult = this.filterDataList(result, timePeriod, timeStep);
                 mappedResult = this.mapDataList(filteredResult, timeStep);
                 return _context2.abrupt("return", mappedResult);
 
@@ -17339,7 +17339,7 @@ var QueryRunner = /*#__PURE__*/function () {
                   break;
                 }
 
-                filteredResult = this.filterDataList(result, maxTimePeriod);
+                filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
                 mappedResult = this.mapDataList(filteredResult, timeStep);
 
                 if (!withDate) {
diff --git a/index.html b/index.html
index a6aec7755997fdf9b1e8cd58d361910260a18809..cbd13d418e53c45d794041bb0e48bcad5dbc7b69 100644
--- a/index.html
+++ b/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html lang="{{.Locale}}"><head><meta charset="utf-8"><title>Ecolyo</title><link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32"><link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16"><!-- PWA Manifest --><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#297EF2"><meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,user-scalable=0,viewport-fit=cover"><!-- PWA Chrome --><link rel="icon" sizes="192x192" href="/android-chrome-192x192.png"><link rel="icon" sizes="512x512" href="/android-chrome-512x512.png"><!-- PWA iOS --><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="apple-touch-startup-image" href="/apple-touch-icon.png"><meta name="apple-mobile-web-app-title" content="Ecolyo"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black"><!-- PWA Colors --><meta name="theme-color" content="#343641"><meta name="background-color" content="#121212"><!-- PWA iOS title --><meta name="apple-mobile-web-app-title" content="Ecolyo">{{.ThemeCSS}} {{.CozyBar}}<script src="//{{.Domain}}/assets/js/piwik.js"></script></head><body><div role="application" class="application" data-cozy="{{.CozyData}}"><script src="vendors/ecolyo.71f31ccb2e4e3905e912.js"></script><script src="app/ecolyo.96fcd7f198538dcc0761.js"></script></div></body></html>
\ No newline at end of file
+<!DOCTYPE html><html lang="{{.Locale}}"><head><meta charset="utf-8"><title>Ecolyo</title><link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32"><link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16"><!-- PWA Manifest --><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#297EF2"><meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,user-scalable=0,viewport-fit=cover"><!-- PWA Chrome --><link rel="icon" sizes="192x192" href="/android-chrome-192x192.png"><link rel="icon" sizes="512x512" href="/android-chrome-512x512.png"><!-- PWA iOS --><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="apple-touch-startup-image" href="/apple-touch-icon.png"><meta name="apple-mobile-web-app-title" content="Ecolyo"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black"><!-- PWA Colors --><meta name="theme-color" content="#343641"><meta name="background-color" content="#121212"><!-- PWA iOS title --><meta name="apple-mobile-web-app-title" content="Ecolyo">{{.ThemeCSS}} {{.CozyBar}}<script src="//{{.Domain}}/assets/js/piwik.js"></script></head><body><div role="application" class="application" data-cozy="{{.CozyData}}"><script src="vendors/ecolyo.71f31ccb2e4e3905e912.js"></script><script src="app/ecolyo.f46802066c2f7231fc48.js"></script></div></body></html>
\ No newline at end of file
diff --git a/services/aggregatorUsageEvents/ecolyo.js b/services/aggregatorUsageEvents/ecolyo.js
index 0a90b33b50e45d090b6d4522630fa35c10b8aac4..08ea0a6b37c0189589bccbfe5256439c66444fc8 100644
--- a/services/aggregatorUsageEvents/ecolyo.js
+++ b/services/aggregatorUsageEvents/ecolyo.js
@@ -96106,7 +96106,7 @@ class QueryRunner {
     const result = await this.fetchData(query);
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, timePeriod);
+      const filteredResult = this.filterDataList(result, timePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
       return mappedResult;
     }
@@ -96138,7 +96138,7 @@ class QueryRunner {
     }
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, maxTimePeriod);
+      const filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
 
       if (withDate) {
diff --git a/services/consumptionAlert/ecolyo.js b/services/consumptionAlert/ecolyo.js
index 8c182143d96847831e16c248ab50f0f2469e6156..9362335f8a8678625b52e23cd36040fb5d906fc2 100644
--- a/services/consumptionAlert/ecolyo.js
+++ b/services/consumptionAlert/ecolyo.js
@@ -94702,7 +94702,7 @@ class QueryRunner {
     const result = await this.fetchData(query);
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, timePeriod);
+      const filteredResult = this.filterDataList(result, timePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
       return mappedResult;
     }
@@ -94734,7 +94734,7 @@ class QueryRunner {
     }
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, maxTimePeriod);
+      const filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
 
       if (withDate) {
diff --git a/services/enedisHalfHourMonthlyAnalysis/ecolyo.js b/services/enedisHalfHourMonthlyAnalysis/ecolyo.js
index 4b04effa5e8448445dbe25f7f13daf3d9b957d60..5bf7c444c07199a4a0445fe6faf5be17d83b58ef 100644
--- a/services/enedisHalfHourMonthlyAnalysis/ecolyo.js
+++ b/services/enedisHalfHourMonthlyAnalysis/ecolyo.js
@@ -94613,7 +94613,7 @@ class QueryRunner {
     const result = await this.fetchData(query);
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, timePeriod);
+      const filteredResult = this.filterDataList(result, timePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
       return mappedResult;
     }
@@ -94645,7 +94645,7 @@ class QueryRunner {
     }
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, maxTimePeriod);
+      const filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
 
       if (withDate) {
diff --git a/services/fluidsPrices/ecolyo.js b/services/fluidsPrices/ecolyo.js
index f34f1be110634f2494aa6e8f45814cbfadbed3c2..7ce08620b614174065d274721f4d87f21cabe567 100644
--- a/services/fluidsPrices/ecolyo.js
+++ b/services/fluidsPrices/ecolyo.js
@@ -94613,7 +94613,7 @@ class QueryRunner {
     const result = await this.fetchData(query);
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, timePeriod);
+      const filteredResult = this.filterDataList(result, timePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
       return mappedResult;
     }
@@ -94645,7 +94645,7 @@ class QueryRunner {
     }
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, maxTimePeriod);
+      const filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
 
       if (withDate) {
diff --git a/services/monthlyReportNotification/ecolyo.js b/services/monthlyReportNotification/ecolyo.js
index 79d184df8e9bf024f3c46b97159d5b5e97fb74f6..c2966582f33009924b86a1461d0199a5d149df01 100644
--- a/services/monthlyReportNotification/ecolyo.js
+++ b/services/monthlyReportNotification/ecolyo.js
@@ -94702,7 +94702,7 @@ class QueryRunner {
     const result = await this.fetchData(query);
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, timePeriod);
+      const filteredResult = this.filterDataList(result, timePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
       return mappedResult;
     }
@@ -94734,7 +94734,7 @@ class QueryRunner {
     }
 
     if (result !== null && result !== void 0 && result.data) {
-      const filteredResult = this.filterDataList(result, maxTimePeriod);
+      const filteredResult = this.filterDataList(result, maxTimePeriod, timeStep);
       const mappedResult = this.mapDataList(filteredResult, timeStep);
 
       if (withDate) {