Skip to content

Commit

Permalink
remove id.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolk committed Feb 7, 2025
1 parent 1774e91 commit 8f23591
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/platform-core/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,17 +169,14 @@ type Notice = z.infer<typeof noticeSchema>;

// @public (undocumented)
const noticeSchema: z.ZodObject<{
id: z.ZodString;
title: z.ZodString;
details: z.ZodString;
link: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
title: string;
details: string;
link: string;
}, {
id: string;
title: string;
details: string;
link: string;
Expand All @@ -191,31 +188,26 @@ type NoticesManifest = z.infer<typeof noticesManifestSchema>;
// @public (undocumented)
const noticesManifestSchema: z.ZodObject<{
currentNotices: z.ZodArray<z.ZodObject<{
id: z.ZodString;
title: z.ZodString;
details: z.ZodString;
link: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
title: string;
details: string;
link: string;
}, {
id: string;
title: string;
details: string;
link: string;
}>, "many">;
}, "strip", z.ZodTypeAny, {
currentNotices: {
id: string;
title: string;
details: string;
link: string;
}[];
}, {
currentNotices: {
id: string;
title: string;
details: string;
link: string;
Expand Down

0 comments on commit 8f23591

Please sign in to comment.