@cfxlabsinc/b2b-services
    Preparing search index...
    OpenApiPaths: {
        [path in keyof T]: {
            [method in keyof T[path]]: T[path][method] extends RouteSchema
                ? OpenApiOperation<T[path][method]>
                : never
        }
    }

    OpenAPI Paths, as prescribed by openapi-typescript

    This is primarily used when using openapi-fetch to ensure type-safety.

    Example:

    const myApi = { ... } as const satisfies FastifyApi;
    type MyApiPaths = OpenApiPaths<typeof myApi>;
    const client = createClient<MyApiPaths>({ ... });

    Type Parameters