@checkstack/queue-bullmq-common 0.1.2 → 0.1.4
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 +18 -0
- package/package.json +1 -1
- package/src/access.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @checkstack/queue-bullmq-common
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [db1f56f]
|
|
8
|
+
- @checkstack/common@0.6.0
|
|
9
|
+
|
|
10
|
+
## 0.1.3
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 8a87cd4: Updated access rules to use new `accessPair` interface
|
|
15
|
+
|
|
16
|
+
Migrated to the new `accessPair` interface with per-level options objects for cleaner access rule definitions.
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [8a87cd4]
|
|
19
|
+
- @checkstack/common@0.5.0
|
|
20
|
+
|
|
3
21
|
## 0.1.2
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
package/src/access.ts
CHANGED
|
@@ -5,8 +5,8 @@ import { accessPair, type AccessRule } from "@checkstack/common";
|
|
|
5
5
|
* Uses the same permission IDs as before for backward compatibility.
|
|
6
6
|
*/
|
|
7
7
|
export const queueBullmqAccess = accessPair("queue-bullmq", {
|
|
8
|
-
read: "View BullMQ queue configuration and statistics",
|
|
9
|
-
manage: "Modify BullMQ queue configuration",
|
|
8
|
+
read: { description: "View BullMQ queue configuration and statistics" },
|
|
9
|
+
manage: { description: "Modify BullMQ queue configuration" },
|
|
10
10
|
});
|
|
11
11
|
|
|
12
12
|
/**
|