AutoBE
    Preparing search index...

    Prerequisite API operation that must succeed before the main operation.

    ONLY for business logic dependencies (resource existence, state checks, data availability). NEVER for authentication or authorization -- those are handled via authorizationActor.

    Keep prerequisite chains minimal. Descriptions should explain WHY the dependency is needed.

    interface IPrerequisite {
        description: string;
        endpoint: IEndpoint;
    }
    Index

    Properties

    description: string

    Why this prerequisite is required (specific condition or state).

    MUST be written in English. Never use other languages.

    endpoint: IEndpoint

    The API endpoint that must be called first.