import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; import { AspectRatioCheckInput, AspectRatioCheckOutput, BleedCheckInput, BleedCheckOutput, BoxSizeCheckOutput, ColourCheckInput, ColourCheckOutput, FontsEmbeddedCheckInput, FontsEmbeddedCheckOutput, ImageResolutionCheckInput, ImageResolutionCheckOutput, OrientationCheckInput, OrientationCheckOutput, PageCountCheckInput, PageCountCheckOutput, PreflightMediaItem, ReportState, TrimSizeCheckInput, TrimSizeCheckOutput } from "./preflight_pb.js"; import { ObjectRef } from "../../common/v1/object-ref_pb.js"; /** * @generated from message preflight.v2.PreflightReport */ export declare class PreflightReport extends Message { /** * @generated from field: string object_id = 1; */ objectId: string; /** * @generated from field: string object_type = 2; */ objectType: string; /** * @generated from field: int64 artworker_id = 3; */ artworkerId: bigint; /** * @generated from field: int64 task_execution_plan_id = 4; */ taskExecutionPlanId: bigint; /** * @generated from field: int32 file_size = 5; */ fileSize: number; /** * @generated from field: int32 page_count = 6; */ pageCount: number; /** * @generated from field: repeated int64 encrypted_files_media_item_ids = 7; */ encryptedFilesMediaItemIds: bigint[]; /** * @generated from field: preflight.v2.BatchDocumentCheck report = 8; */ report?: BatchDocumentCheck; /** * @generated from field: preflight.v2.ReportState state = 9; */ state: ReportState; /** * @generated from field: int32 build_count = 10; */ buildCount: number; /** * @generated from field: repeated preflight.v2.PreflightMediaItem media_items = 11; */ mediaItems: PreflightMediaItem[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PreflightReport"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightReport; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightReport; static fromJsonString(jsonString: string, options?: Partial): PreflightReport; static equals(a: PreflightReport | PlainMessage | undefined, b: PreflightReport | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightReportRequest */ export declare class GetPreflightReportRequest extends Message { /** * @generated from field: common.v1.ObjectRef object_ref = 1; */ objectRef?: ObjectRef; /** * @generated from field: int64 artworker_id = 2; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightReportRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightReportRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightReportRequest; static fromJsonString(jsonString: string, options?: Partial): GetPreflightReportRequest; static equals(a: GetPreflightReportRequest | PlainMessage | undefined, b: GetPreflightReportRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightReportResponse */ export declare class GetPreflightReportResponse extends Message { /** * @generated from field: preflight.v2.PreflightReport report = 1; */ report?: PreflightReport; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightReportResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightReportResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightReportResponse; static fromJsonString(jsonString: string, options?: Partial): GetPreflightReportResponse; static equals(a: GetPreflightReportResponse | PlainMessage | undefined, b: GetPreflightReportResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchDocumentCheck */ export declare class BatchDocumentCheck extends Message { /** * @generated from field: preflight.v2.BatchDocumentCheck.Checks checks = 1; */ checks?: BatchDocumentCheck_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 3; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 4; */ warnings?: BatchWarnings; /** * @generated from field: optional string name = 5; */ name?: string; /** * @generated from field: int32 page_count = 6; */ pageCount: number; /** * @generated from field: string error = 7; */ error: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDocumentCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDocumentCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDocumentCheck; static fromJsonString(jsonString: string, options?: Partial): BatchDocumentCheck; static equals(a: BatchDocumentCheck | PlainMessage | undefined, b: BatchDocumentCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchDocumentCheck.Checks */ export declare class BatchDocumentCheck_Checks extends Message { /** * @generated from field: preflight.v2.BatchColourChecks colours = 1; */ colours?: BatchColourChecks; /** * @generated from field: preflight.v2.BatchDimensionsChecks dimensions = 2; */ dimensions?: BatchDimensionsChecks; /** * @generated from field: preflight.v2.BatchFontChecks fonts = 3; */ fonts?: BatchFontChecks; /** * @generated from field: preflight.v2.BatchImageChecks images = 4; */ images?: BatchImageChecks; /** * @generated from field: preflight.v2.BatchDocumentChecks document = 5; */ document?: BatchDocumentChecks; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDocumentCheck.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDocumentCheck_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDocumentCheck_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchDocumentCheck_Checks; static equals(a: BatchDocumentCheck_Checks | PlainMessage | undefined, b: BatchDocumentCheck_Checks | PlainMessage | undefined): boolean; } /** * ----------------------------------------------------------------------- * Each group has explicit checks: no "map needed. * ----------------------------------------------------------------------- * * @generated from message preflight.v2.BatchDocumentChecks */ export declare class BatchDocumentChecks extends Message { /** * @generated from field: preflight.v2.BatchDocumentChecks.Checks checks = 1; */ checks?: BatchDocumentChecks_Checks; /** * @generated from field: string status = 2; */ status: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDocumentChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDocumentChecks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDocumentChecks; static fromJsonString(jsonString: string, options?: Partial): BatchDocumentChecks; static equals(a: BatchDocumentChecks | PlainMessage | undefined, b: BatchDocumentChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchDocumentChecks.Checks */ export declare class BatchDocumentChecks_Checks extends Message { /** * @generated from field: preflight.v2.BatchPageCountCheck document_page_count = 1; */ documentPageCount?: BatchPageCountCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDocumentChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDocumentChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDocumentChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchDocumentChecks_Checks; static equals(a: BatchDocumentChecks_Checks | PlainMessage | undefined, b: BatchDocumentChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchColourChecks */ export declare class BatchColourChecks extends Message { /** * @generated from field: preflight.v2.BatchColourChecks.Checks checks = 1; */ checks?: BatchColourChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 3; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 4; */ warnings?: BatchWarnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchColourChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchColourChecks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchColourChecks; static fromJsonString(jsonString: string, options?: Partial): BatchColourChecks; static equals(a: BatchColourChecks | PlainMessage | undefined, b: BatchColourChecks | PlainMessage | undefined): boolean; } /** * The single "checkColours" as a specialized message: * * @generated from message preflight.v2.BatchColourChecks.Checks */ export declare class BatchColourChecks_Checks extends Message { /** * @generated from field: preflight.v2.BatchColourCheck check_colours = 1; */ checkColours?: BatchColourCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchColourChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchColourChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchColourChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchColourChecks_Checks; static equals(a: BatchColourChecks_Checks | PlainMessage | undefined, b: BatchColourChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchDimensionsChecks */ export declare class BatchDimensionsChecks extends Message { /** * @generated from field: preflight.v2.BatchDimensionsChecks.Checks checks = 1; */ checks?: BatchDimensionsChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 3; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 4; */ warnings?: BatchWarnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDimensionsChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDimensionsChecks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDimensionsChecks; static fromJsonString(jsonString: string, options?: Partial): BatchDimensionsChecks; static equals(a: BatchDimensionsChecks | PlainMessage | undefined, b: BatchDimensionsChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchDimensionsChecks.Checks */ export declare class BatchDimensionsChecks_Checks extends Message { /** * @generated from field: preflight.v2.BatchAspectRatioCheck aspect_ratio = 1; */ aspectRatio?: BatchAspectRatioCheck; /** * @generated from field: preflight.v2.BatchBleedCheck bleed = 2; */ bleed?: BatchBleedCheck; /** * @generated from field: preflight.v2.BatchOrientationCheck orientation = 3; */ orientation?: BatchOrientationCheck; /** * @generated from field: preflight.v2.BatchTrimSizeCheck trim_size = 4; */ trimSize?: BatchTrimSizeCheck; /** * @generated from field: preflight.v2.BatchBoxSizeCheck media_box_size = 5; */ mediaBoxSize?: BatchBoxSizeCheck; /** * @generated from field: preflight.v2.BatchBoxSizeCheck bleed_box_size = 6; */ bleedBoxSize?: BatchBoxSizeCheck; /** * @generated from field: preflight.v2.BatchBoxSizeCheck art_box_size = 7; */ artBoxSize?: BatchBoxSizeCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchDimensionsChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchDimensionsChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchDimensionsChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchDimensionsChecks_Checks; static equals(a: BatchDimensionsChecks_Checks | PlainMessage | undefined, b: BatchDimensionsChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchFontChecks */ export declare class BatchFontChecks extends Message { /** * @generated from field: preflight.v2.BatchFontChecks.Checks checks = 1; */ checks?: BatchFontChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 3; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 4; */ warnings?: BatchWarnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchFontChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchFontChecks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchFontChecks; static fromJsonString(jsonString: string, options?: Partial): BatchFontChecks; static equals(a: BatchFontChecks | PlainMessage | undefined, b: BatchFontChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchFontChecks.Checks */ export declare class BatchFontChecks_Checks extends Message { /** * @generated from field: preflight.v2.BatchFontsEmbeddedCheck fonts_embedded = 1; */ fontsEmbedded?: BatchFontsEmbeddedCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchFontChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchFontChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchFontChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchFontChecks_Checks; static equals(a: BatchFontChecks_Checks | PlainMessage | undefined, b: BatchFontChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchImageChecks */ export declare class BatchImageChecks extends Message { /** * @generated from field: preflight.v2.BatchImageChecks.Checks checks = 1; */ checks?: BatchImageChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 3; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 4; */ warnings?: BatchWarnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchImageChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchImageChecks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchImageChecks; static fromJsonString(jsonString: string, options?: Partial): BatchImageChecks; static equals(a: BatchImageChecks | PlainMessage | undefined, b: BatchImageChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchImageChecks.Checks */ export declare class BatchImageChecks_Checks extends Message { /** * @generated from field: preflight.v2.BatchImageResolutionCheck image_resolution = 1; */ imageResolution?: BatchImageResolutionCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchImageChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchImageChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): BatchImageChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): BatchImageChecks_Checks; static equals(a: BatchImageChecks_Checks | PlainMessage | undefined, b: BatchImageChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchPageCountCheck */ export declare class BatchPageCountCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.PageCountCheckInput input = 2; */ input?: PageCountCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.PageCountCheckOutput output = 5; */ output?: PageCountCheckOutput; /** * @generated from field: string status = 6; */ status: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchPageCountCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchPageCountCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchPageCountCheck; static fromJsonString(jsonString: string, options?: Partial): BatchPageCountCheck; static equals(a: BatchPageCountCheck | PlainMessage | undefined, b: BatchPageCountCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchColourCheck */ export declare class BatchColourCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.ColourCheckInput input = 2; */ input?: ColourCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.ColourCheckOutput output = 5; */ output?: ColourCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchColourCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchColourCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchColourCheck; static fromJsonString(jsonString: string, options?: Partial): BatchColourCheck; static equals(a: BatchColourCheck | PlainMessage | undefined, b: BatchColourCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchAspectRatioCheck */ export declare class BatchAspectRatioCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.AspectRatioCheckInput input = 2; */ input?: AspectRatioCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.AspectRatioCheckOutput output = 5; */ output?: AspectRatioCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchAspectRatioCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchAspectRatioCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchAspectRatioCheck; static fromJsonString(jsonString: string, options?: Partial): BatchAspectRatioCheck; static equals(a: BatchAspectRatioCheck | PlainMessage | undefined, b: BatchAspectRatioCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchBleedCheck */ export declare class BatchBleedCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.BleedCheckInput input = 2; */ input?: BleedCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.BleedCheckOutput output = 5; */ output?: BleedCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchBleedCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchBleedCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchBleedCheck; static fromJsonString(jsonString: string, options?: Partial): BatchBleedCheck; static equals(a: BatchBleedCheck | PlainMessage | undefined, b: BatchBleedCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchOrientationCheck */ export declare class BatchOrientationCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.OrientationCheckInput input = 2; */ input?: OrientationCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.OrientationCheckOutput output = 5; */ output?: OrientationCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchOrientationCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchOrientationCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchOrientationCheck; static fromJsonString(jsonString: string, options?: Partial): BatchOrientationCheck; static equals(a: BatchOrientationCheck | PlainMessage | undefined, b: BatchOrientationCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchTrimSizeCheck */ export declare class BatchTrimSizeCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.TrimSizeCheckInput input = 2; */ input?: TrimSizeCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.TrimSizeCheckOutput output = 5; */ output?: TrimSizeCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchTrimSizeCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchTrimSizeCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchTrimSizeCheck; static fromJsonString(jsonString: string, options?: Partial): BatchTrimSizeCheck; static equals(a: BatchTrimSizeCheck | PlainMessage | undefined, b: BatchTrimSizeCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchBoxSizeCheck */ export declare class BatchBoxSizeCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * TrimSizeCheckInput input = 2; * * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.BoxSizeCheckOutput output = 5; */ output?: BoxSizeCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchBoxSizeCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchBoxSizeCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchBoxSizeCheck; static fromJsonString(jsonString: string, options?: Partial): BatchBoxSizeCheck; static equals(a: BatchBoxSizeCheck | PlainMessage | undefined, b: BatchBoxSizeCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchFontsEmbeddedCheck */ export declare class BatchFontsEmbeddedCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.FontsEmbeddedCheckInput input = 2; */ input?: FontsEmbeddedCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.FontsEmbeddedCheckOutput output = 5; */ output?: FontsEmbeddedCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchFontsEmbeddedCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchFontsEmbeddedCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchFontsEmbeddedCheck; static fromJsonString(jsonString: string, options?: Partial): BatchFontsEmbeddedCheck; static equals(a: BatchFontsEmbeddedCheck | PlainMessage | undefined, b: BatchFontsEmbeddedCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchImageResolutionCheck */ export declare class BatchImageResolutionCheck extends Message { /** * @generated from field: bool check_enabled = 1; */ checkEnabled: boolean; /** * @generated from field: preflight.v2.ImageResolutionCheckInput input = 2; */ input?: ImageResolutionCheckInput; /** * @generated from field: string key = 3; */ key: string; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: preflight.v2.ImageResolutionCheckOutput output = 5; */ output?: ImageResolutionCheckOutput; /** * @generated from field: string status = 6; */ status: string; /** * @generated from field: string summary = 7; */ summary: string; /** * @generated from field: optional preflight.v2.BatchFailures failures = 8; */ failures?: BatchFailures; /** * @generated from field: optional preflight.v2.BatchWarnings warnings = 9; */ warnings?: BatchWarnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchImageResolutionCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchImageResolutionCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BatchImageResolutionCheck; static fromJsonString(jsonString: string, options?: Partial): BatchImageResolutionCheck; static equals(a: BatchImageResolutionCheck | PlainMessage | undefined, b: BatchImageResolutionCheck | PlainMessage | undefined): boolean; } /** * AffectedFilesAndPages represents affected files and pages * * @generated from message preflight.v2.BatchAffectedFilesAndPages */ export declare class BatchAffectedFilesAndPages extends Message { /** * @generated from field: int32 file_num = 1; */ fileNum: number; /** * @generated from field: int32 page_num = 2; */ pageNum: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchAffectedFilesAndPages"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchAffectedFilesAndPages; static fromJson(jsonValue: JsonValue, options?: Partial): BatchAffectedFilesAndPages; static fromJsonString(jsonString: string, options?: Partial): BatchAffectedFilesAndPages; static equals(a: BatchAffectedFilesAndPages | PlainMessage | undefined, b: BatchAffectedFilesAndPages | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchFailures */ export declare class BatchFailures extends Message { /** * @generated from field: repeated preflight.v2.BatchAffectedFilesAndPages affected_pages = 1; */ affectedPages: BatchAffectedFilesAndPages[]; /** * @generated from field: int32 count = 2; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchFailures"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchFailures; static fromJson(jsonValue: JsonValue, options?: Partial): BatchFailures; static fromJsonString(jsonString: string, options?: Partial): BatchFailures; static equals(a: BatchFailures | PlainMessage | undefined, b: BatchFailures | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BatchWarnings */ export declare class BatchWarnings extends Message { /** * @generated from field: repeated preflight.v2.BatchAffectedFilesAndPages affected_pages = 1; */ affectedPages: BatchAffectedFilesAndPages[]; /** * @generated from field: int32 count = 2; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BatchWarnings"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BatchWarnings; static fromJson(jsonValue: JsonValue, options?: Partial): BatchWarnings; static fromJsonString(jsonString: string, options?: Partial): BatchWarnings; static equals(a: BatchWarnings | PlainMessage | undefined, b: BatchWarnings | PlainMessage | undefined): boolean; }