Home > @uniformdev/webhooks > ReleaseDeletedDefinition
ReleaseDeletedDefinition variable
Signature:
ReleaseDeletedDefinition: Definition<z.ZodObject<Omit<{
id: z.ZodString;
state: z.ZodEnum<["open", "locked", "queued", "launching", "launched", "deleting"]>;
name: z.ZodString;
project: z.ZodObject<{
id: z.ZodString;
url: z.ZodString;
}, "strip", z.ZodTypeAny, {
id: string;
url: string;
}, {
id: string;
url: string;
}>;
autoLaunchSchedule: z.ZodOptional<z.ZodNumber>;
autoLaunchScheduleTimeZone: z.ZodOptional<z.ZodString>;
edit_url: z.ZodString;
api_url: z.ZodString;
}, "edit_url" | "api_url">, "strip", z.ZodTypeAny, {
id: string;
name: string;
project: {
id: string;
url: string;
};
state: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
autoLaunchSchedule?: number | undefined;
autoLaunchScheduleTimeZone?: string | undefined;
}, {
id: string;
name: string;
project: {
id: string;
url: string;
};
state: "open" | "locked" | "queued" | "launching" | "launched" | "deleting";
autoLaunchSchedule?: number | undefined;
autoLaunchScheduleTimeZone?: string | undefined;
}>>