Socket
Socket
Sign inDemoInstall

bee-queue

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bee-queue - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

10

HISTORY.md

@@ -0,1 +1,11 @@

1.2.1 / 2018-01-15
==================
* Update Typescript type definitions (thanks @brickyang for #90).
1.2.0 / 2018-01-10
==================
* Add Typescript type definitions (thanks @pbadenski for #80 and @martinwepner for #89).
1.1.0 / 2017-08-12

@@ -2,0 +12,0 @@ ==================

9

index.d.ts

@@ -26,2 +26,5 @@ import { ClientOpts } from 'redis';

getJob(jobId: string, cb: (job: BeeQueue.Job) => void): void;
getJob(jobId: string): Promise<BeeQueue.Job>;
getJobs(type: string, page: BeeQueue.Page, cb: (jobs: BeeQueue.Job[]) => void): void;

@@ -96,5 +99,5 @@ getJobs(type: string, page: BeeQueue.Page): Promise<BeeQueue.Job[]>;

interface Page {
start: number;
end: number;
size: number;
start?: number;
end?: number;
size?: number;
}

@@ -101,0 +104,0 @@

{
"name": "bee-queue",
"version": "1.2.0",
"version": "1.2.1",
"description": "A simple, fast, robust job/task queue, backed by Redis.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc