Skip to content

Commit

Permalink
chore: made type optional
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Sep 23, 2024
1 parent c9c66f7 commit 3e99da1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/github/types/state-validation-payload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export const stateValidationSchema = Type.Object({
const validationErrorSchema = Type.Object({
path: Type.String(),
message: Type.String(),
type: Type.Number(),
type: Type.Number({ default: 0 }),
value: Type.Any(),
schema: Type.Any(),
schema: Type.Any({ default: {} }),
});

export const pluginValidationResponseSchema = Type.Object({
Expand Down

0 comments on commit 3e99da1

Please sign in to comment.