/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type PageContentAssertion = { type?: "CONTENT" | undefined; negated?: boolean | undefined; value: string; }; /** @internal */ export const PageContentAssertion$inboundSchema: z.ZodType< PageContentAssertion, z.ZodTypeDef, unknown > = z.object({ type: z.literal("CONTENT").optional(), negated: z.boolean().optional(), value: z.string(), }); /** @internal */ export type PageContentAssertion$Outbound = { type: "CONTENT"; negated?: boolean | undefined; value: string; }; /** @internal */ export const PageContentAssertion$outboundSchema: z.ZodType< PageContentAssertion$Outbound, z.ZodTypeDef, PageContentAssertion > = z.object({ type: z.literal("CONTENT").default("CONTENT" as const), negated: z.boolean().optional(), value: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace PageContentAssertion$ { /** @deprecated use `PageContentAssertion$inboundSchema` instead. */ export const inboundSchema = PageContentAssertion$inboundSchema; /** @deprecated use `PageContentAssertion$outboundSchema` instead. */ export const outboundSchema = PageContentAssertion$outboundSchema; /** @deprecated use `PageContentAssertion$Outbound` instead. */ export type Outbound = PageContentAssertion$Outbound; }