Merged in fix/SW-1784-hotel-url-fetching (pull request #1450)

fix(SW-1784): Fixed issue fetching all hotel urls at once.

* fix(SW-1784): Fixed issue fetching all hotel urls at once.


Approved-by: Christian Andolf
This commit is contained in:
Erik Tiekstra
2025-03-03 06:37:55 +00:00
parent 4fc25e42b5
commit 4ad1799532
6 changed files with 125 additions and 13 deletions

View File

@@ -2,6 +2,7 @@ import type { z } from "zod"
import type {
contentBlock,
hotelPageCountSchema,
hotelPageRefsSchema,
hotelPageSchema,
hotelPageUrlsSchema,
@@ -24,4 +25,6 @@ export interface GetHotelPageRefsSchema
export interface HotelPageRefs extends z.output<typeof hotelPageRefsSchema> {}
export interface GetHotelPageUrlsData
extends z.input<typeof hotelPageUrlsSchema> {}
export interface GetHotelPageCountData
extends z.input<typeof hotelPageCountSchema> {}
export type HotelPageUrls = z.output<typeof hotelPageUrlsSchema>