@deephaven-enterprise/query-utils 1.20240723.144-beta → 1.20240723.145-beta
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/QueryScheduler.d.ts
CHANGED
|
@@ -164,8 +164,6 @@ export declare class QueryScheduler {
|
|
|
164
164
|
static DAYS_PER_WEEK: number;
|
|
165
165
|
static DAYS_PER_MONTH: number;
|
|
166
166
|
static MONTHS_PER_YEAR: number;
|
|
167
|
-
static MAX_ERROR_RESTART_COUNT: number;
|
|
168
|
-
static UNLIMITED_ERROR_RESTART_INDEX: number;
|
|
169
167
|
static DAYS: Readonly<{
|
|
170
168
|
SUN: {
|
|
171
169
|
text: string;
|
package/dist/QueryScheduler.js
CHANGED
|
@@ -933,8 +933,6 @@ QueryScheduler.FIELDS = Object.freeze({
|
|
|
933
933
|
QueryScheduler.DAYS_PER_WEEK = 7;
|
|
934
934
|
QueryScheduler.DAYS_PER_MONTH = 31;
|
|
935
935
|
QueryScheduler.MONTHS_PER_YEAR = 12;
|
|
936
|
-
QueryScheduler.MAX_ERROR_RESTART_COUNT = 10;
|
|
937
|
-
QueryScheduler.UNLIMITED_ERROR_RESTART_INDEX = QueryScheduler.MAX_ERROR_RESTART_COUNT + 1;
|
|
938
936
|
// Per ISO-8601 the days array is Mon - Sun
|
|
939
937
|
// This is display order which is Sun - Sat
|
|
940
938
|
QueryScheduler.DAYS = Object.freeze({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven-enterprise/query-utils",
|
|
3
|
-
"version": "1.20240723.
|
|
3
|
+
"version": "1.20240723.145-beta",
|
|
4
4
|
"description": "Deephaven Enterprise Query Utils",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "0fc77c3fb8464e083a81308f438d8e4606099a43"
|
|
33
33
|
}
|