Skip to content

Commit

Permalink
chore: update snaps
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvanhulle committed Jan 21, 2024
1 parent 84dcf1a commit d864ae3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ exports[`<Mutation/> > pets 1`] = `
*/
export function createCreatePets201(): NonNullable<CreatePets201> {
return unknown()
return undefined
}
export function createCreatePetsMutationRequest(): NonNullable<CreatePetsMutationRequest> {
return { name: faker.string.alpha(), tag: faker.string.alpha() }
}
export function createCreatePetsMutationResponse(): NonNullable<CreatePetsMutationResponse> {
return unknown()
return undefined
}
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ exports[`<Mutation/> > pets 1`] = `
"/**
* @description Null response
*/
export const CreatePets201 = z.unknown()
export const CreatePets201 = z.any()
export const CreatePetsMutationRequest = z.object({ name: z.string(), tag: z.string() })
export const CreatePetsMutationResponse = z.unknown()
export const CreatePetsMutationResponse = z.any()
/**
* @description unexpected error
Expand Down

0 comments on commit d864ae3

Please sign in to comment.