equipped 4.1.8 → 4.1.9

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [4.1.9](https://github.com/kevinand11/equipped/compare/v4.1.8...v4.1.9) (2023-04-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * export bull jobs interfaces to allow extending in user code ([a897617](https://github.com/kevinand11/equipped/commit/a897617eb7ee5bc6153568c7c4cbbc45d36e0f76))
11
+
5
12
  ### [4.1.8](https://github.com/kevinand11/equipped/compare/v4.0.2-alpha.4...v4.1.8) (2023-03-30)
6
13
 
7
14
 
@@ -2,12 +2,12 @@ import { Enum, ICronLikeJobs, ICronTypes, IDelayedJobs } from '../enums/types';
2
2
  type Cron = Enum<ICronTypes>;
3
3
  type Delayed = Enum<IDelayedJobs>;
4
4
  type CronLike = Enum<ICronLikeJobs>;
5
- interface DelayedJobEvents extends Record<Delayed, {
5
+ export interface DelayedJobEvents extends Record<Delayed, {
6
6
  type: Delayed;
7
7
  data: any;
8
8
  }> {
9
9
  }
10
- interface CronLikeJobsEvents extends Record<CronLike, {
10
+ export interface CronLikeJobsEvents extends Record<CronLike, {
11
11
  type: CronLike;
12
12
  data: any;
13
13
  }> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "equipped",
3
- "version": "4.1.8",
3
+ "version": "4.1.9",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "main": "lib/index.js",