c2-mongoose 2.1.295 → 2.1.296
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -223,14 +223,14 @@ var SearcherFlow = /** @class */ (function () {
|
|
|
223
223
|
momentValue.hour(0);
|
|
224
224
|
momentValue.minute(0);
|
|
225
225
|
momentValue.second(0);
|
|
226
|
-
condition[fieldName] = __assign(__assign({}, condition[fieldName]), { $gte: momentValue.tz('America/Sao_Paulo',
|
|
226
|
+
condition[fieldName] = __assign(__assign({}, condition[fieldName]), { $gte: momentValue.tz('America/Sao_Paulo', false).toDate() });
|
|
227
227
|
}
|
|
228
228
|
if ((0, Utils_1.isNotEmpty)(values[1])) {
|
|
229
229
|
var momentValue = (0, moment_1.default)(values[1]);
|
|
230
230
|
momentValue.hour(23);
|
|
231
231
|
momentValue.minute(59);
|
|
232
232
|
momentValue.second(59);
|
|
233
|
-
condition[fieldName] = __assign(__assign({}, condition[fieldName]), { $lte: momentValue.tz('America/Sao_Paulo',
|
|
233
|
+
condition[fieldName] = __assign(__assign({}, condition[fieldName]), { $lte: momentValue.tz('America/Sao_Paulo', false).toDate() });
|
|
234
234
|
}
|
|
235
235
|
}
|
|
236
236
|
else if (key.endsWith('DateTimeRange')) {
|
package/package.json
CHANGED
package/src/flow/SearcherFlow.ts
CHANGED
|
@@ -192,7 +192,7 @@ class SearcherFlow<D> {
|
|
|
192
192
|
momentValue.second(0)
|
|
193
193
|
condition[fieldName] = {
|
|
194
194
|
...condition[fieldName],
|
|
195
|
-
$gte: momentValue.tz('America/Sao_Paulo',
|
|
195
|
+
$gte: momentValue.tz('America/Sao_Paulo', false).toDate()
|
|
196
196
|
}
|
|
197
197
|
}
|
|
198
198
|
|
|
@@ -203,7 +203,7 @@ class SearcherFlow<D> {
|
|
|
203
203
|
momentValue.second(59)
|
|
204
204
|
condition[fieldName] = {
|
|
205
205
|
...condition[fieldName],
|
|
206
|
-
$lte: momentValue.tz('America/Sao_Paulo',
|
|
206
|
+
$lte: momentValue.tz('America/Sao_Paulo', false).toDate()
|
|
207
207
|
}
|
|
208
208
|
}
|
|
209
209
|
} else if (key.endsWith('DateTimeRange')) {
|