adobe-firefly-sdk
    Preparing search index...

    Type Alias ConvertToInDesignResponse

    Response data returned when PDF to InDesign conversion is successful. This data is returned in the data field of the succeeded status response. The output is always a ZIP file containing subfolders for each converted PDF with the requested INDD/IDML file and associated assets.

    type ConvertToInDesignResponse = {
        outputs?: {
            input?: string;
            outputPath?: string;
            warnings?: {
                missingFonts?: string[];
                missingLinks?: string[];
                otherWarnings?: string[];
            };
        }[];
    }
    Index

    Properties

    Properties

    outputs?: {
        input?: string;
        outputPath?: string;
        warnings?: {
            missingFonts?: string[];
            missingLinks?: string[];
            otherWarnings?: string[];
        };
    }[]

    Array of conversion outputs. Each item provides information about the conversion result for a specific input PDF.

    Type Declaration

    • Optionalinput?: string

      Name of the input PDF file that was converted.

    • OptionaloutputPath?: string

      Path to the output folder for the particular input PDF file within the ZIP archive.

    • Optionalwarnings?: { missingFonts?: string[]; missingLinks?: string[]; otherWarnings?: string[] }

      Warnings encountered during conversion.

      • OptionalmissingFonts?: string[]

        Array of fonts that are not available in the runtime environment.

      • OptionalmissingLinks?: string[]

        Array of links that are missing or inaccessible in the converted document.

      • OptionalotherWarnings?: string[]

        Array of other warnings generated during conversion.