Test ?with=

This commit is contained in:
Zoe Roux
2025-03-03 18:11:39 +01:00
parent 750434465d
commit cdf4ab4941
5 changed files with 49 additions and 10 deletions
+8 -7
View File
@@ -1,13 +1,14 @@
import { t } from "elysia";
import { comment } from "../../utils";
export const ExternalId = () => t.Record(
t.String(),
t.Object({
dataId: t.String(),
link: t.Nullable(t.String({ format: "uri" })),
}),
);
export const ExternalId = () =>
t.Record(
t.String(),
t.Object({
dataId: t.String(),
link: t.Nullable(t.String({ format: "uri" })),
}),
);
export const EpisodeId = t.Record(
t.String(),