🚀. Socket Launch Week Day 2:Introducing Manifest Alerts.Learn more
Sign In

@bull-board/api

Package Overview
Dependencies
Maintainers
1
Versions
237
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bull-board/api - npm Package Compare versions

Comparing version
7.2.1
to
8.0.0
+2
-2
package.json
{
"name": "@bull-board/api",
"version": "7.2.1",
"version": "8.0.0",
"description": "A Dashboard server API built on top of bull or bullmq.",

@@ -59,4 +59,4 @@ "keywords": [

"peerDependencies": {
"@bull-board/ui": "7.2.1"
"@bull-board/ui": "8.0.0"
}
}

@@ -261,2 +261,4 @@ import type { RedisInfo } from 'redis-info';

miscLinks: Array<IMiscLink>;
/** Hide the header Docs icon that links to the bull-board documentation site. Default: false (shown). */
hideDocsLink: boolean;
queueSortOptions: Array<{ key: string; label: string }>;

@@ -291,6 +293,6 @@ favIcon: FavIcon;

*
* @example `hh:mm:ss`
* @see https://date-fns.org/v3.6.0/docs/format
* @example `{ hour: 'numeric', minute: 'numeric', second: 'numeric' }`
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
*/
short?: string;
short?: Intl.DateTimeFormatOptions;

@@ -300,12 +302,12 @@ /**

*
* @example `MM-dd hh:mm:ss`
* @see https://date-fns.org/v3.6.0/docs/format
* @example `{ month: 'numeric', day: 'numeric', hour: 'numeric', minute: '2-digit', second: '2-digit' }`
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
*/
common?: string;
common?: Intl.DateTimeFormatOptions;
/**
* @example `yyyy-MM-dd hh:mm:ss`
* @see https://date-fns.org/v3.6.0/docs/format
* @example `{ year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: '2-digit', second: '2-digit' }`
* @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat
*/
full?: string;
full?: Intl.DateTimeFormatOptions;
};