Skip to content

Commit

Permalink
chore: update test
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvanhulle committed Mar 24, 2024
1 parent d56cb6d commit 925955d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { Pets } from "./Pets";
import { Error } from "./Error";
export const ListPetsQueryParams = z.object({ "limit": z.string().describe("How many items to return at one time (max 100)").optional() }).optional().optional();
export const ListPetsQueryParams = z.object({ "limit": z.string().describe("How many items to return at one time (max 100)").optional() }).optional();
/**
* @description A paged array of pets
Expand All @@ -76,7 +76,7 @@ import { Pet } from "./Pet";
import { Error } from "./Error";
export const ShowPetByIdPathParams = z.object({ "petId": z.string().describe("The id of the pet to retrieve"), "testId": z.string().describe("The id of the pet to retrieve") }).optional();
export const ShowPetByIdPathParams = z.object({ "petId": z.string().describe("The id of the pet to retrieve"), "testId": z.string().describe("The id of the pet to retrieve") });
/**
* @description Expected response to a valid request
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export const ShowPetByIdPathParams = z
.object({ petId: z.string().describe('The id of the pet to retrieve'), testId: z.string().describe('The id of the pet to retrieve') })
.optional()
export const ShowPetByIdPathParams = z.object({
petId: z.string().describe('The id of the pet to retrieve'),
testId: z.string().describe('The id of the pet to retrieve'),
})

/**
* @description Expected response to a valid request
Expand Down

0 comments on commit 925955d

Please sign in to comment.