Merged in fix/SW-1819-batching-city-urls (pull request #1477)

fix(SW-1819): Batching fetch for city page urls

* fix(SW-1819): Batching fetch for city page urls


Approved-by: Fredrik Thorsson
Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-03-05 10:15:52 +00:00
parent 6897e3bb0d
commit 76c20df8e8
10 changed files with 143 additions and 32 deletions

View File

@@ -2,6 +2,7 @@ import type { z } from "zod"
import type {
blocksSchema,
cityPageCountSchema,
cityPageUrlsSchema,
destinationCityListDataSchema,
destinationCityPageRefsSchema,
@@ -19,6 +20,8 @@ export interface GetDestinationCityListDataResponse
export interface DestinationCityListData
extends z.output<typeof destinationCityListDataSchema> {}
export interface GetCityPageCountData
extends z.input<typeof cityPageCountSchema> {}
export interface GetCityPageUrlsData
extends z.input<typeof cityPageUrlsSchema> {}