@meith/moderation 0.21.2 → 0.23.0
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/package.json +3 -3
- package/src/queue.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/moderation",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@meith/core": "0.
|
|
23
|
-
"@meith/i18n": "0.
|
|
22
|
+
"@meith/core": "0.23.0",
|
|
23
|
+
"@meith/i18n": "0.23.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
package/src/queue.ts
CHANGED
|
@@ -36,7 +36,6 @@ export interface QueueOutcome {
|
|
|
36
36
|
readonly applied: number
|
|
37
37
|
readonly refused: number
|
|
38
38
|
readonly missing: number
|
|
39
|
-
/** The items the decision was carried out on, for whoever has to announce it. */
|
|
40
39
|
readonly decided: readonly { readonly kind: QueueItemKind; readonly id: number }[]
|
|
41
40
|
}
|
|
42
41
|
|