* feat(SW-3028): Added query and typings to fetch campaigns by hotelUid * feat(SW-3028): Added components for campaigns to the hotel page * feat(SW-3028): Implemented prioritized campaigns list * chore(SW-3028): Refactor how campaigns are fetched on hotel pages * feat(SW-3028): Added offers/campaigns to tab navigation Approved-by: Matilda Landström
6 lines
114 B
TypeScript
6 lines
114 B
TypeScript
import { z } from "zod"
|
|
|
|
export const getCampaignPagesByHotelUidInput = z.object({
|
|
hotelPageUid: z.string(),
|
|
})
|