export type AdminAcceptInvite = { /** * The user's email. */ email?: string | null; /** * The user's first name. */ first_name?: string | null; /** * The user's last name. */ last_name?: string | null; }; export type AdminCreateInvite = { /** * The email of the user to invite. */ email: string; /** * The RBAC roles to assign to the user when the invite is accepted. * * @featureFlag rbac */ roles?: string[] | null; /** * Key-value pairs of custom data. */ metadata?: Record | null; }; //# sourceMappingURL=payloads.d.ts.map