@polinetwork/backend 0.15.10 → 0.15.11
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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -33,7 +33,7 @@ declare const AUDIT_TYPE: {
|
|
|
33
33
|
readonly MUTE: "mute";
|
|
34
34
|
readonly UNMUTE: "unmute";
|
|
35
35
|
readonly BAN_ALL: "ban_all";
|
|
36
|
-
readonly
|
|
36
|
+
readonly UNBAN_ALL: "unban_all";
|
|
37
37
|
};
|
|
38
38
|
type TAuditType = (typeof AUDIT_TYPE)[keyof typeof AUDIT_TYPE];
|
|
39
39
|
|
|
@@ -515,7 +515,7 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
515
515
|
input: {
|
|
516
516
|
adminId: number;
|
|
517
517
|
targetId: number;
|
|
518
|
-
type: "ban" | "unban" | "kick" | "mute" | "unmute" | "ban_all" | "
|
|
518
|
+
type: "ban" | "unban" | "kick" | "mute" | "unmute" | "ban_all" | "unban_all";
|
|
519
519
|
groupId: number | null;
|
|
520
520
|
until: Date | null;
|
|
521
521
|
reason?: string | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ declare const AUDIT_TYPE: {
|
|
|
33
33
|
readonly MUTE: "mute";
|
|
34
34
|
readonly UNMUTE: "unmute";
|
|
35
35
|
readonly BAN_ALL: "ban_all";
|
|
36
|
-
readonly
|
|
36
|
+
readonly UNBAN_ALL: "unban_all";
|
|
37
37
|
};
|
|
38
38
|
type TAuditType = (typeof AUDIT_TYPE)[keyof typeof AUDIT_TYPE];
|
|
39
39
|
|
|
@@ -515,7 +515,7 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
515
515
|
input: {
|
|
516
516
|
adminId: number;
|
|
517
517
|
targetId: number;
|
|
518
|
-
type: "ban" | "unban" | "kick" | "mute" | "unmute" | "ban_all" | "
|
|
518
|
+
type: "ban" | "unban" | "kick" | "mute" | "unmute" | "ban_all" | "unban_all";
|
|
519
519
|
groupId: number | null;
|
|
520
520
|
until: Date | null;
|
|
521
521
|
reason?: string | undefined;
|