Skip to content

Commit

Permalink
revert to base no update
Browse files Browse the repository at this point in the history
  • Loading branch information
timolegros committed Nov 8, 2024
1 parent c51072f commit f355bd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions libs/schemas/src/commands/community.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const CreateCommunity = {
discord: z.string().url().startsWith('https://discord.com/').optional(),
}),
output: z.object({
community: Community.optional(),
community: Community,
admin_address: z.string().optional(),
}),
};
Expand All @@ -74,7 +74,7 @@ export const SetCommunityStake = {
.default(1),
stake_enabled: z.coerce.boolean().default(true),
}),
output: Community.optional(),
output: Community,
};

export const CreateStakeTransaction = {
Expand Down
1 change: 0 additions & 1 deletion libs/schemas/src/queries/thread.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ export const GetThreadsByIds = {
input: z.object({
community_id: z.string(),
thread_ids: z.string(),
random: z.string().nullish(),
}),
output: z.array(ThreadView),
};
Expand Down

0 comments on commit f355bd0

Please sign in to comment.