-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(federation): 🚚 Rename validators back to schemas, fix barrel…
… file
- Loading branch information
1 parent
d43775e
commit ce9be7e
Showing
20 changed files
with
58 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/** | ||
* @file Zod schema definitions | ||
* @module federation/schemas | ||
*/ | ||
|
||
// biome-ignore lint/performance/noBarrelFile: library export | ||
export { | ||
CollectionSchema as Collection, | ||
DeleteSchema as Delete, | ||
EntitySchema as Entity, | ||
FollowAcceptSchema as FollowAccept, | ||
FollowRejectSchema as FollowReject, | ||
FollowSchema as Follow, | ||
GroupSchema as Group, | ||
InstanceMetadataSchema as InstanceMetadata, | ||
NoteSchema as Note, | ||
UnfollowSchema as Unfollow, | ||
UserSchema as User, | ||
} from "./schemas/base.ts"; | ||
export { ContentFormatSchema as ContentFormat } from "./schemas/content_format.ts"; | ||
export { ExtensionPropertySchema as EntityExtensionProperty } from "./schemas/extensions.ts"; | ||
export { CustomEmojiExtensionSchema as CustomEmojiExtension } from "./schemas/extensions/custom_emojis.ts"; | ||
export { | ||
DislikeSchema as DislikeExtension, | ||
LikeSchema as LikeExtension, | ||
} from "./schemas/extensions/likes.ts"; | ||
export { VoteSchema as PollVoteExtension } from "./schemas/extensions/polls.ts"; | ||
export { ReactionSchema as ReactionExtension } from "./schemas/extensions/reactions.ts"; | ||
export { ShareSchema as ShareExtension } from "./schemas/extensions/share.ts"; | ||
export { VanityExtensionSchema as VanityExtension } from "./schemas/extensions/vanity.ts"; | ||
export { WebFingerSchema as WebFinger } from "./schemas/webfinger.ts"; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.