import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateTeamRequestBody = { name: string; }; export type UpdateTeamRequest = { orgId: string; teamId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; requestBody?: UpdateTeamRequestBody | undefined; }; export type UpdateTeamTeam = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** * OK */ export type UpdateTeamResponseBody = { team: UpdateTeamTeam; }; /** @internal */ export declare const UpdateTeamRequestBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateTeamRequestBody$Outbound = { name: string; }; /** @internal */ export declare const UpdateTeamRequestBody$outboundSchema: z.ZodType; export declare function updateTeamRequestBodyToJSON(updateTeamRequestBody: UpdateTeamRequestBody): string; export declare function updateTeamRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateTeamRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateTeamRequest$Outbound = { orgId: string; teamId: string; "X-On-Behalf-Of"?: string | undefined; RequestBody?: UpdateTeamRequestBody$Outbound | undefined; }; /** @internal */ export declare const UpdateTeamRequest$outboundSchema: z.ZodType; export declare function updateTeamRequestToJSON(updateTeamRequest: UpdateTeamRequest): string; export declare function updateTeamRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateTeamTeam$inboundSchema: z.ZodType; /** @internal */ export type UpdateTeamTeam$Outbound = { id: string; name: string; organizationId: string; createdAt: string; updatedAt: string; }; /** @internal */ export declare const UpdateTeamTeam$outboundSchema: z.ZodType; export declare function updateTeamTeamToJSON(updateTeamTeam: UpdateTeamTeam): string; export declare function updateTeamTeamFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const UpdateTeamResponseBody$inboundSchema: z.ZodType; /** @internal */ export type UpdateTeamResponseBody$Outbound = { team: UpdateTeamTeam$Outbound; }; /** @internal */ export declare const UpdateTeamResponseBody$outboundSchema: z.ZodType; export declare function updateTeamResponseBodyToJSON(updateTeamResponseBody: UpdateTeamResponseBody): string; export declare function updateTeamResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updateteam.d.ts.map