pl-api: Update docs

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-11-29 16:01:54 +01:00
parent b357261ff2
commit bc65755862
78 changed files with 221 additions and 22 deletions

View File

@ -9,7 +9,7 @@ const directoryCategorySchema = v.object({
});
/**
* @category Directory types
* @category Directory entity types
*/
type DirectoryCategory = v.InferOutput<typeof directoryCategorySchema>;

View File

@ -10,7 +10,7 @@ const directoryLanguageSchema = v.object({
});
/**
* @category Directory types
* @category Directory entity types
*/
type DirectoryLanguage = v.InferOutput<typeof directoryLanguageSchema>;

View File

@ -20,7 +20,7 @@ const directoryServerSchema = v.object({
});
/**
* @category Directory types
* @category Directory entity types
*/
type DirectoryServer = v.InferOutput<typeof directoryServerSchema>;

View File

@ -11,7 +11,7 @@ const directoryStatisticsPeriodSchema = v.object({
});
/**
* @category Directory types
* @category Directory entity types
*/
type DirectoryStatisticsPeriod = v.InferOutput<typeof directoryStatisticsPeriodSchema>;