@loadmill/universal 0.3.28 → 0.3.29
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/package.json
CHANGED
package/src/cron-utils.ts
CHANGED
|
@@ -48,6 +48,6 @@ export const VALID_DAYS = {
|
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
export const VALID_HOURS = [
|
|
51
|
-
'00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '08:00', '09:00', '10:00', '11:00',
|
|
51
|
+
'00:00', '01:00', '02:00', '03:00', '04:00', '05:00', '06:00', '07:00', '08:00', '09:00', '10:00', '11:00',
|
|
52
52
|
'12:00', '13:00', '14:00', '15:00', '16:00', '17:00', '18:00', '19:00', '20:00', '21:00', '22:00', '23:00'
|
|
53
53
|
];
|
|
@@ -3,7 +3,7 @@ import PresentableError from './presentable-error';
|
|
|
3
3
|
export default class JSONSchemaAssertionError extends PresentableError {
|
|
4
4
|
constructor(public readonly prettyMessage) {
|
|
5
5
|
super(prettyMessage);
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
// Workaround suggested in: https://github.com/Microsoft/TypeScript-wiki/blob/master/Breaking-Changes.md#extending-built-ins-like-error-array-and-map-may-no-longer-work
|
|
8
8
|
Object.setPrototypeOf(this, JSONSchemaAssertionError.prototype);
|
|
9
9
|
}
|