Manage invites in your organization.
Returns a list of invites for the organization.
$turso->invites()->list()->get();
Ref: https://docs.turso.tech/api-reference/organizations/invites/list
Invite a user (who isn’t already a Turso user) to an organization.
use Darkterminal\TursoPlatformAPI\core\Enums\RoleType;
$turso->invites()->createInvite('darkterminal@quack.com', RoleType::ADMIN)->get();
Delete an invite for the organization by email.
$turso->invites()->deleteInvite('darkterminal@quack.com')->get();
Ref: https://docs.turso.tech/api-reference/organizations/invites/delete
Turso Invites: https://docs.turso.tech/api-reference/invites