@vercel/sdk
Version:
<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>
26 lines (22 loc) • 684 B
text/typescript
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
/**
* Enum containing the actions that can be performed against a resource. Group operations are included.
*/
export const ACLAction = {
Create: "create",
Delete: "delete",
List: "list",
Read: "read",
Update: "update",
} as const;
/**
* Enum containing the actions that can be performed against a resource. Group operations are included.
*/
export type ACLAction = ClosedEnum<typeof ACLAction>;
/** @internal */
export const ACLAction$inboundSchema: z.ZodNativeEnum<typeof ACLAction> = z
.nativeEnum(ACLAction);