const CapabilitiesDtoSchema: ZodObject<{
actions: ZodObject<{
cancel: ZodBoolean;
cancelBulk: ZodBoolean;
delete: ZodBoolean;
deleteBulk: ZodBoolean;
read: ZodBoolean;
reschedule: ZodBoolean;
retry: ZodBoolean;
retryBulk: ZodBoolean;
}, $strict>;
readOnly: ZodBoolean;
}, $strict>;
Defined in: schemas/capabilities.ts:26
Runtime capabilities for a management surface.
Capabilities combine configured read-only mode, scheduler method support, and the optional
authorization hook for the current request context.