bt-core-app 2.1.34 → 2.1.35
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 +8205 -8161
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1843,6 +1843,12 @@ export declare interface StorePathOptions extends PathOptions {
|
|
|
1843
1843
|
dateTo?: string;
|
|
1844
1844
|
}
|
|
1845
1845
|
|
|
1846
|
+
declare interface StringCron {
|
|
1847
|
+
regularity?: CronRegularity;
|
|
1848
|
+
orderDays: string[];
|
|
1849
|
+
deliveryDays: string[];
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1846
1852
|
export declare function sum(array: number[]): number;
|
|
1847
1853
|
|
|
1848
1854
|
export declare interface SWEvent extends Event {
|
|
@@ -2104,6 +2110,7 @@ export declare function useCron(options: UseCronOptions): {
|
|
|
2104
2110
|
applyRawExpression: () => void;
|
|
2105
2111
|
applyRegularity: (v: any) => void;
|
|
2106
2112
|
cronExpression: Ref<string | undefined, string | undefined>;
|
|
2113
|
+
getRegularityAndOrderAndDeliveryDays: () => StringCron;
|
|
2107
2114
|
hour: Ref<string | undefined, string | undefined>;
|
|
2108
2115
|
leadTimeLeft: Ref<number, number>;
|
|
2109
2116
|
leadTimeRight: Ref<number, number>;
|
package/package.json
CHANGED