Documentation
    Preparing search index...

    Interface IHttpMigrateApplication

    Migrated application from OpenAPI document.

    IHttpMigrateApplication converts OpenAPI operations into callable HTTP routes via HttpMigration.application(). Unlike IHttpLlmApplication which targets LLM function calling, this focuses on SDK/client code generation with full HTTP semantics.

    Each IHttpMigrateRoute represents a single API endpoint with:

    • Resolved path parameters (:id format)
    • Combined query/header schemas as objects
    • Request/response body with content type
    • Accessor path for RPC-style function naming

    Failed operations go to errors with detailed messages.

    Jeongho Nam - https://github.com/samchon

    interface IHttpMigrateApplication {
        document: () => OpenApi.IDocument;
        errors: IHttpMigrateApplication.IError[];
        routes: IHttpMigrateRoute[];
    }
    Index

    Properties

    document: () => OpenApi.IDocument

    Returns source OpenAPI document.

    Operations that failed migration.

    Successfully migrated routes.