/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; export type CurrentPasswordNewPassword = { currentPassword: string; newPassword: string; }; /** @internal */ export type CurrentPasswordNewPassword$Outbound = { currentPassword: string; newPassword: string; }; /** @internal */ export const CurrentPasswordNewPassword$outboundSchema: z.ZodMiniType< CurrentPasswordNewPassword$Outbound, CurrentPasswordNewPassword > = z.object({ currentPassword: z.string(), newPassword: z.string(), }); export function currentPasswordNewPasswordToJSON( currentPasswordNewPassword: CurrentPasswordNewPassword, ): string { return JSON.stringify( CurrentPasswordNewPassword$outboundSchema.parse(currentPasswordNewPassword), ); }