feat(editor): Setup Sentry integration (#10945)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-09-24 17:49:22 +02:00
committed by GitHub
parent c75990e063
commit 6de4dfff87
19 changed files with 307 additions and 121 deletions

View File

@@ -49,6 +49,9 @@ export type AuthenticatedRequest<
> = Omit<APIRequest<RouteParams, ResponseBody, RequestBody, RequestQuery>, 'user' | 'cookies'> & {
user: User;
cookies: Record<string, string | undefined>;
headers: express.Request['headers'] & {
'push-ref': string;
};
};
// ----------------------------------