46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { z } from "zod";
|
|
|
|
export const zodFields = z
|
|
.array(
|
|
z.object({
|
|
id: z.string(),
|
|
label: z.string(),
|
|
identifier: z.string().optional(),
|
|
type: z.string(),
|
|
selectText: z.string().optional(),
|
|
required: z.boolean().optional(),
|
|
})
|
|
)
|
|
.optional();
|
|
|
|
export const zodRoutes = z
|
|
.union([
|
|
z.array(
|
|
z.object({
|
|
id: z.string(),
|
|
queryValue: z.object({
|
|
id: z.string().optional(),
|
|
type: z.union([z.literal("group"), z.literal("switch_group")]),
|
|
children1: z.any(),
|
|
properties: z.any(),
|
|
}),
|
|
isFallback: z.boolean().optional(),
|
|
action: z.object({
|
|
// TODO: Make it a union type of "customPageMessage" and ..
|
|
type: z.union([
|
|
z.literal("customPageMessage"),
|
|
z.literal("externalRedirectUrl"),
|
|
z.literal("eventTypeRedirectUrl"),
|
|
]),
|
|
value: z.string(),
|
|
}),
|
|
})
|
|
),
|
|
z.null(),
|
|
])
|
|
.optional();
|
|
|
|
// TODO: This is a requirement right now that zod.ts file (if it exists) must have appDataSchema export(which is only required by apps having EventTypeAppCard interface)
|
|
// This is a temporary solution and will be removed in future
|
|
export const appDataSchema = z.any();
|