Merged in fix/move-sas-comparison-to-dynamic-content (pull request #1279)
Move SASTierComparison block to DynamicContent Approved-by: Erik Tiekstra
This commit is contained in:
@@ -6,7 +6,6 @@ import type { carouselCardsSchema } from "@/server/routers/contentstack/schemas/
|
||||
import type { contentSchema } from "@/server/routers/contentstack/schemas/blocks/content"
|
||||
import type { dynamicContentSchema } from "@/server/routers/contentstack/schemas/blocks/dynamicContent"
|
||||
import type { hotelListingSchema } from "@/server/routers/contentstack/schemas/blocks/hotelListing"
|
||||
import type { sasTierComparisonSchema } from "@/server/routers/contentstack/schemas/blocks/sasTierComparison"
|
||||
import type { shortcutsSchema } from "@/server/routers/contentstack/schemas/blocks/shortcuts"
|
||||
import type { tableSchema } from "@/server/routers/contentstack/schemas/blocks/table"
|
||||
import type { textColsSchema } from "@/server/routers/contentstack/schemas/blocks/textCols"
|
||||
@@ -24,6 +23,4 @@ export interface TextCols extends z.output<typeof textColsSchema> {}
|
||||
export interface UspGrid extends z.output<typeof uspGridSchema> {}
|
||||
interface GetHotelListing extends z.output<typeof hotelListingSchema> {}
|
||||
export type HotelListing = GetHotelListing["hotel_listing"]
|
||||
export interface SasTierComparison
|
||||
extends z.output<typeof sasTierComparisonSchema> {}
|
||||
export interface CarouselCards extends z.output<typeof carouselCardsSchema> {}
|
||||
|
||||
9
types/trpc/routers/contentstack/partner.ts
Normal file
9
types/trpc/routers/contentstack/partner.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { z } from "zod"
|
||||
|
||||
import type { validateSasTierComparisonSchema } from "@/server/routers/contentstack/partner/output"
|
||||
|
||||
export type SasTierComparisonResponse = z.input<
|
||||
typeof validateSasTierComparisonSchema
|
||||
>
|
||||
|
||||
export type SasTierComparison = z.output<typeof validateSasTierComparisonSchema>
|
||||
Reference in New Issue
Block a user