@loopback/cron 0.9.4 → 0.9.6

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -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 declare type CronJobOptions = CronJobParameters & {
10
+ export type CronJobOptions = CronJobParameters & {
11
11
  name?: string;
12
12
  };
13
13
  /**
14
14
  * Configuration for a cron job.
15
15
  */
16
- export declare type CronJobConfig = Partial<CronJobOptions>;
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",
4
+ "version": "0.9.6",
5
5
  "keywords": [
6
6
  "LoopBack",
7
7
  "Cron",
@@ -37,21 +37,21 @@
37
37
  "!*/__tests__"
38
38
  ],
39
39
  "peerDependencies": {
40
- "@loopback/core": "^4.0.4"
40
+ "@loopback/core": "^4.0.6"
41
41
  },
42
42
  "dependencies": {
43
43
  "@types/cron": "^2.0.0",
44
44
  "@types/debug": "^4.1.7",
45
45
  "cron": "^2.1.0",
46
46
  "debug": "^4.3.4",
47
- "tslib": "^2.4.0"
47
+ "tslib": "^2.4.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@loopback/build": "^9.0.4",
51
- "@loopback/core": "^4.0.4",
52
- "@loopback/eslint-config": "^13.0.4",
53
- "@loopback/testlab": "^5.0.4",
54
- "@types/node": "^14.18.32"
50
+ "@loopback/build": "^9.0.6",
51
+ "@loopback/core": "^4.0.6",
52
+ "@loopback/eslint-config": "^13.0.6",
53
+ "@loopback/testlab": "^5.0.6",
54
+ "@types/node": "^14.18.34"
55
55
  },
56
- "gitHead": "947500110c84ba77b2197b759b559c195cfce260"
56
+ "gitHead": "709a5ecd1ffddeb02262cecabf7b663c7b4d7e47"
57
57
  }