/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: ae1a358b12d7 */ import * as z from "zod/v4"; import { ClosedEnum } from "../../types/enums.js"; /** * Relation a subject holds on a shared registry object. */ export const ShareRelation = { ShareRelationUnspecified: "share_relation_unspecified", Reader: "reader", Writer: "writer", } as const; /** * Relation a subject holds on a shared registry object. */ export type ShareRelation = ClosedEnum; /** @internal */ export const ShareRelation$outboundSchema: z.ZodEnum = z .enum(ShareRelation);