/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 40018638e2e7 */ import * as z from "zod/v4"; import { remap as remap$ } from "../../lib/primitives.js"; import * as components from "../components/index.js"; export type ConnectorCreateOrUpdateUserCredentialsV1Request = { connectorIdOrName: string; credentialsCreateOrUpdate: components.CredentialsCreateOrUpdate; }; /** @internal */ export type ConnectorCreateOrUpdateUserCredentialsV1Request$Outbound = { connector_id_or_name: string; CredentialsCreateOrUpdate: components.CredentialsCreateOrUpdate$Outbound; }; /** @internal */ export const ConnectorCreateOrUpdateUserCredentialsV1Request$outboundSchema: z.ZodType< ConnectorCreateOrUpdateUserCredentialsV1Request$Outbound, ConnectorCreateOrUpdateUserCredentialsV1Request > = z.object({ connectorIdOrName: z.string(), credentialsCreateOrUpdate: components.CredentialsCreateOrUpdate$outboundSchema, }).transform((v) => { return remap$(v, { connectorIdOrName: "connector_id_or_name", credentialsCreateOrUpdate: "CredentialsCreateOrUpdate", }); }); export function connectorCreateOrUpdateUserCredentialsV1RequestToJSON( connectorCreateOrUpdateUserCredentialsV1Request: ConnectorCreateOrUpdateUserCredentialsV1Request, ): string { return JSON.stringify( ConnectorCreateOrUpdateUserCredentialsV1Request$outboundSchema.parse( connectorCreateOrUpdateUserCredentialsV1Request, ), ); }