@bull-board/api
Advanced tools
+2
-2
| { | ||
| "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" | ||
| } | ||
| } |
+11
-9
@@ -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; | ||
| }; |
111225
0.53%1799
0.11%