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

import * as z from "zod/v3";
import { remap as remap$ } from "../../lib/primitives.js";
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";
import {
  ToolConfiguration,
  ToolConfiguration$inboundSchema,
  ToolConfiguration$Outbound,
  ToolConfiguration$outboundSchema,
} from "./toolconfiguration.js";

export const WebSearchToolType = {
  WebSearch: "web_search",
} as const;
export type WebSearchToolType = ClosedEnum<typeof WebSearchToolType>;

export type WebSearchTool = {
  toolConfiguration?: ToolConfiguration | null | undefined;
  type?: WebSearchToolType | undefined;
};

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

/** @internal */
export const WebSearchTool$inboundSchema: z.ZodType<
  WebSearchTool,
  z.ZodTypeDef,
  unknown
> = z.object({
  tool_configuration: z.nullable(ToolConfiguration$inboundSchema).optional(),
  type: WebSearchToolType$inboundSchema.default("web_search"),
}).transform((v) => {
  return remap$(v, {
    "tool_configuration": "toolConfiguration",
  });
});
/** @internal */
export type WebSearchTool$Outbound = {
  tool_configuration?: ToolConfiguration$Outbound | null | undefined;
  type: string;
};

/** @internal */
export const WebSearchTool$outboundSchema: z.ZodType<
  WebSearchTool$Outbound,
  z.ZodTypeDef,
  WebSearchTool
> = z.object({
  toolConfiguration: z.nullable(ToolConfiguration$outboundSchema).optional(),
  type: WebSearchToolType$outboundSchema.default("web_search"),
}).transform((v) => {
  return remap$(v, {
    toolConfiguration: "tool_configuration",
  });
});

export function webSearchToolToJSON(webSearchTool: WebSearchTool): string {
  return JSON.stringify(WebSearchTool$outboundSchema.parse(webSearchTool));
}
export function webSearchToolFromJSON(
  jsonString: string,
): SafeParseResult<WebSearchTool, SDKValidationError> {
  return safeParse(
    jsonString,
    (x) => WebSearchTool$inboundSchema.parse(JSON.parse(x)),
    `Failed to parse 'WebSearchTool' from JSON`,
  );
}
