@checkstack/queue-bullmq-common 0.1.1 → 0.1.3

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
@@ -1,5 +1,23 @@
1
1
  # @checkstack/queue-bullmq-common
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8a87cd4: Updated access rules to use new `accessPair` interface
8
+
9
+ Migrated to the new `accessPair` interface with per-level options objects for cleaner access rule definitions.
10
+
11
+ - Updated dependencies [8a87cd4]
12
+ - @checkstack/common@0.5.0
13
+
14
+ ## 0.1.2
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [83557c7]
19
+ - @checkstack/common@0.4.0
20
+
3
21
  ## 0.1.1
4
22
 
5
23
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/queue-bullmq-common",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
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
  /**