For the complete documentation index, see llms.txt. This page is also available as Markdown.

Bolos

Here, you'll find key exports for managing bolos. These exports allow you to create, update, and delete bolos as needed.


Type

type BOLO = {
    id: number,
    name: string,
    description: string,
    vehicle: string,
    date: number,
    createdAt: string,
    tag: {
        identifier: string,
        label: string,
        color: string
    },
    player: {
        identifier: string,
        name: string
    }
}

Exports

Search a bolo

Create a new Bolo

Update a Bolo

Delete an Bolo

Last updated