/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 737a51a80c57 */ import * as z from "zod/v3"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; /** * Optional type classification for the update. */ export const UpdateType = { /** * Updates that require user attention or action */ Actionable: "ACTIONABLE", /** * Updates that are purely informational */ Informative: "INFORMATIVE", } as const; /** * Optional type classification for the update. */ export type UpdateType = OpenEnum; /** @internal */ export const UpdateType$inboundSchema: z.ZodType< UpdateType, z.ZodTypeDef, unknown > = openEnums.inboundSchema(UpdateType);