update api
All checks were successful
deploy / build-and-deploy (push) Successful in 13s

This commit is contained in:
2025-10-15 13:40:31 +02:00
parent d3af1cedfd
commit 4fee3a721a
6 changed files with 25 additions and 19 deletions

View File

@@ -16,6 +16,7 @@ export type WebhookActionType<T extends WebhookAction> = {
telephone: string | null;
username: string;
edition: 'java' | 'bedrock';
uuid: string | null;
};
[WebhookAction.Report]: {
reporter: string | null;
@@ -23,7 +24,7 @@ export type WebhookActionType<T extends WebhookAction> = {
reason: string;
};
[WebhookAction.Strike]: {
user: string;
uuid: string;
};
}[T];