@makehq/sdk
    Preparing search index...

    Type Alias RolePermission

    Represents a permission that can be granted through a role.

    type RolePermission = {
        category: string;
        customRolesHidden: boolean;
        id: number;
        label: string;
        name: string;
        note: string;
        requires: string[];
        roleCategory: "organization" | "team";
    }
    Index

    Properties

    category: string

    Group the permission belongs to

    customRolesHidden: boolean

    Whether the permission is hidden from the custom role editor

    id: number

    Unique identifier of the permission

    label: string

    Human-readable label of the permission

    name: string

    Name of the permission

    note: string

    Note describing the permission

    requires: string[]

    Names of other permissions this permission requires

    roleCategory: "organization" | "team"

    Whether the permission applies to an organization or a team