@loopback/cron 0.9.5 → 0.9.7
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/types.d.ts +2 -2
- package/package.json +9 -9
package/dist/types.d.ts
CHANGED
|
@@ -7,13 +7,13 @@ import { EventEmitter } from 'events';
|
|
|
7
7
|
*
|
|
8
8
|
* {@link https://github.com/kelektiv/node-cron#api | cron configuration}
|
|
9
9
|
*/
|
|
10
|
-
export
|
|
10
|
+
export type CronJobOptions = CronJobParameters & {
|
|
11
11
|
name?: string;
|
|
12
12
|
};
|
|
13
13
|
/**
|
|
14
14
|
* Configuration for a cron job.
|
|
15
15
|
*/
|
|
16
|
-
export
|
|
16
|
+
export type CronJobConfig = Partial<CronJobOptions>;
|
|
17
17
|
/**
|
|
18
18
|
* Name of the cron job extension point
|
|
19
19
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/cron",
|
|
3
3
|
"description": "Schedule tasks using cron-like syntax",
|
|
4
|
-
"version": "0.9.
|
|
4
|
+
"version": "0.9.7",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"LoopBack",
|
|
7
7
|
"Cron",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"directory": "extensions/cron"
|
|
19
19
|
},
|
|
20
20
|
"engines": {
|
|
21
|
-
"node": "14 || 16 ||
|
|
21
|
+
"node": "14 || 16 || 18 || 19"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build": "lb-tsc",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"!*/__tests__"
|
|
38
38
|
],
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@loopback/core": "^4.0.
|
|
40
|
+
"@loopback/core": "^4.0.7"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@types/cron": "^2.0.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"tslib": "^2.4.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@loopback/build": "^9.0.
|
|
51
|
-
"@loopback/core": "^4.0.
|
|
52
|
-
"@loopback/eslint-config": "^13.0.
|
|
53
|
-
"@loopback/testlab": "^5.0.
|
|
54
|
-
"@types/node": "^14.18.
|
|
50
|
+
"@loopback/build": "^9.0.7",
|
|
51
|
+
"@loopback/core": "^4.0.7",
|
|
52
|
+
"@loopback/eslint-config": "^13.0.7",
|
|
53
|
+
"@loopback/testlab": "^5.0.7",
|
|
54
|
+
"@types/node": "^14.18.36"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "06cbcba72ceb28ab5033bae80cc5504c80ac53c2"
|
|
57
57
|
}
|