@meith/admin 0.21.2 → 0.22.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 +2 -2
- package/src/index.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meith/admin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@meith/core": "0.
|
|
22
|
+
"@meith/core": "0.22.0"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/src/index.ts
CHANGED
|
@@ -69,7 +69,6 @@ export interface AdminLogRepository {
|
|
|
69
69
|
readonly action?: string | undefined
|
|
70
70
|
}): Promise<readonly AdminLogRow[]>
|
|
71
71
|
|
|
72
|
-
/** How many entries the filter matches, whichever page was asked for. */
|
|
73
72
|
count(input: { readonly action?: string | undefined }): Promise<number>
|
|
74
73
|
|
|
75
74
|
actions(limit?: number): Promise<readonly string[]>
|