Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.envless.cloud/llms.txt

Use this file to discover all available pages before exploring further.

When it fires

After UpdateProjectService succeeds.

Payload

{
    type: 'project.updated',
    data: {
        project: {
            id: string
            name: string
            slug: string
            icon: string | null
            updatedAt: string | null
        }
        changes: Array<'name' | 'slug' | 'icon'>
    }
}

Example

{
    "type": "project.updated",
    "data": {
        "project": {
            "id": "0192a1b2-c3d4-7000-8000-000000000010",
            "name": "Billing Service",
            "slug": "billing-service",
            "icon": null,
            "updatedAt": "2026-05-31T10:40:11.000Z"
        },
        "changes": ["name"]
    }
}