feat(blocked_slots): add blocked slots

This commit is contained in:
Dominik 2025-06-30 20:13:56 +02:00
parent ce27923118
commit 016b4371c2
Signed by: dominik
GPG key ID: 06A4003FC5049644
17 changed files with 1038 additions and 36 deletions

View file

@ -85,3 +85,14 @@ export const EventIdParamSchema = registry.registerParameter(
example: '67890',
}),
);
export const SlotIdParamSchema = registry.registerParameter(
'SlotIdParam',
zod.string().openapi({
param: {
name: 'slotID',
in: 'path',
},
example: 'abcde12345',
}),
);