/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { safeParse } from "../../lib/schemas.js";
import { ClosedEnum } from "../../types/enums.js";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";

export const Type = {
  Text: "text",
} as const;
export type Type = ClosedEnum<typeof Type>;

export type TextChunk = {
  text: string;
  type?: Type | undefined;
};

/** @internal */
export const Type$inboundSchema: z.ZodNativeEnum<typeof Type> = z.nativeEnum(
  Type,
);
/** @internal */
export const Type$outboundSchema: z.ZodNativeEnum<typeof Type> =
  Type$inboundSchema;

/** @internal */
export const TextChunk$inboundSchema: z.ZodType<
  TextChunk,
  z.ZodTypeDef,
  unknown
> = z.object({
  text: z.string(),
  type: Type$inboundSchema.default("text"),
});
/** @internal */
export type TextChunk$Outbound = {
  text: string;
  type: string;
};

/** @internal */
export const TextChunk$outboundSchema: z.ZodType<
  TextChunk$Outbound,
  z.ZodTypeDef,
  TextChunk
> = z.object({
  text: z.string(),
  type: Type$outboundSchema.default("text"),
});

export function textChunkToJSON(textChunk: TextChunk): string {
  return JSON.stringify(TextChunk$outboundSchema.parse(textChunk));
}
export function textChunkFromJSON(
  jsonString: string,
): SafeParseResult<TextChunk, SDKValidationError> {
  return safeParse(
    jsonString,
    (x) => TextChunk$inboundSchema.parse(JSON.parse(x)),
    `Failed to parse 'TextChunk' from JSON`,
  );
}
