bt-core-app 1.4.293 → 1.4.294
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.
- package/dist/bt-core-app.js +4 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -9083,7 +9083,10 @@ const bg = [
|
|
|
9083
9083
|
function DV() {
|
|
9084
9084
|
const { timeZone: e } = Fr();
|
|
9085
9085
|
function t(n) {
|
|
9086
|
-
|
|
9086
|
+
if (n.cron == null)
|
|
9087
|
+
return [];
|
|
9088
|
+
const a = n.cron.split(/\s+/).slice(0, 5).join(" ");
|
|
9089
|
+
return Qc.getFutureMatches(a, { matchCount: n.futureCount, formatInTimezone: !1, timezone: e.value });
|
|
9087
9090
|
}
|
|
9088
9091
|
return {
|
|
9089
9092
|
predictFuture: t
|
package/dist/index.d.ts
CHANGED
|
@@ -1020,8 +1020,9 @@ export declare interface PointerOrTouchEvent extends PointerEvent, TouchEvent {
|
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
1022
|
declare interface PredictOptions {
|
|
1023
|
+
adjustments?: string;
|
|
1023
1024
|
futureCount: number;
|
|
1024
|
-
cron
|
|
1025
|
+
cron?: string;
|
|
1025
1026
|
}
|
|
1026
1027
|
|
|
1027
1028
|
export declare interface QueryParams extends Record<string, any> {
|
package/package.json
CHANGED