import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; import { ObjectRef } from "../../common/v1/object-ref_pb.js"; /** * @generated from enum preflight.v2.ReportState */ export declare enum ReportState { /** * It's good practice to have an unspecified or default value of 0 * * @generated from enum value: REPORT_STATE_UNSPECIFIED = 0; */ UNSPECIFIED = 0, /** * @generated from enum value: REPORT_STATE_COMPLETE = 1; */ COMPLETE = 1, /** * @generated from enum value: REPORT_STATE_PROCESSING = 2; */ PROCESSING = 2, /** * @generated from enum value: REPORT_STATE_FAILED = 3; */ FAILED = 3 } /** * @generated from message preflight.v2.PreflightFileReport */ export declare class PreflightFileReport 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 media_item_id = 4; */ mediaItemId: bigint; /** * @generated from field: int64 task_execution_plan_id = 5; */ taskExecutionPlanId: bigint; /** * @generated from field: int32 file_num = 6; */ fileNum: number; /** * @generated from field: int32 file_size = 7; */ fileSize: number; /** * @generated from field: preflight.v2.DocumentCheck report = 8; */ report?: DocumentCheck; /** * @generated from field: preflight.v2.ReportState state = 9; */ state: ReportState; /** * @generated from field: string error = 10; */ error: string; /** * @generated from field: string error_code = 11; */ errorCode: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PreflightFileReport"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightFileReport; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightFileReport; static fromJsonString(jsonString: string, options?: Partial): PreflightFileReport; static equals(a: PreflightFileReport | PlainMessage | undefined, b: PreflightFileReport | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.PreflightPageReport */ export declare class PreflightPageReport 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 media_item_id = 4; */ mediaItemId: bigint; /** * @generated from field: int64 task_execution_plan_id = 5; */ taskExecutionPlanId: bigint; /** * @generated from field: int32 file_num = 6; */ fileNum: number; /** * @generated from field: int32 page = 7; */ page: number; /** * @generated from field: int32 file_size = 8; */ fileSize: number; /** * @generated from field: preflight.v2.DocumentCheck report = 9; */ report?: DocumentCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PreflightPageReport"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightPageReport; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightPageReport; static fromJsonString(jsonString: string, options?: Partial): PreflightPageReport; static equals(a: PreflightPageReport | PlainMessage | undefined, b: PreflightPageReport | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DocumentCheck */ export declare class DocumentCheck extends Message { /** * @generated from field: preflight.v2.DocumentCheck.Checks checks = 1; */ checks?: DocumentCheck_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.Failures failures = 3; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 4; */ warnings?: Warnings; /** * @generated from field: optional string name = 5; */ name?: string; /** * @generated from field: optional preflight.v2.DocumentInfo document_info = 6; */ documentInfo?: DocumentInfo; /** * @generated from field: optional string error = 7; */ error?: string; /** * @generated from field: int32 error_code = 8; */ errorCode: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DocumentCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DocumentCheck; static fromJson(jsonValue: JsonValue, options?: Partial): DocumentCheck; static fromJsonString(jsonString: string, options?: Partial): DocumentCheck; static equals(a: DocumentCheck | PlainMessage | undefined, b: DocumentCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DocumentCheck.Checks */ export declare class DocumentCheck_Checks extends Message { /** * @generated from field: preflight.v2.ColourChecks colours = 1; */ colours?: ColourChecks; /** * @generated from field: preflight.v2.DimensionsChecks dimensions = 2; */ dimensions?: DimensionsChecks; /** * @generated from field: preflight.v2.FontChecks fonts = 3; */ fonts?: FontChecks; /** * @generated from field: preflight.v2.ImageChecks images = 4; */ images?: ImageChecks; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DocumentCheck.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DocumentCheck_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): DocumentCheck_Checks; static fromJsonString(jsonString: string, options?: Partial): DocumentCheck_Checks; static equals(a: DocumentCheck_Checks | PlainMessage | undefined, b: DocumentCheck_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DocumentInfo */ export declare class DocumentInfo extends Message { /** * @generated from field: int32 page_count = 1; */ pageCount: number; /** * @generated from field: string created_at = 2; */ createdAt: string; /** * @generated from field: string modified_at = 3; */ modifiedAt: string; /** * @generated from field: string creator = 4; */ creator: string; /** * @generated from field: repeated preflight.v2.DocumentInfo.OutputIntent output_intents = 5; */ outputIntents: DocumentInfo_OutputIntent[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DocumentInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DocumentInfo; static fromJson(jsonValue: JsonValue, options?: Partial): DocumentInfo; static fromJsonString(jsonString: string, options?: Partial): DocumentInfo; static equals(a: DocumentInfo | PlainMessage | undefined, b: DocumentInfo | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DocumentInfo.OutputIntent */ export declare class DocumentInfo_OutputIntent extends Message { /** * @generated from field: string info = 1; */ info: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DocumentInfo.OutputIntent"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DocumentInfo_OutputIntent; static fromJson(jsonValue: JsonValue, options?: Partial): DocumentInfo_OutputIntent; static fromJsonString(jsonString: string, options?: Partial): DocumentInfo_OutputIntent; static equals(a: DocumentInfo_OutputIntent | PlainMessage | undefined, b: DocumentInfo_OutputIntent | PlainMessage | undefined): boolean; } /** * ----------------------------------------------------------------------- * Each group has explicit checks: no "map needed. * ----------------------------------------------------------------------- * * @generated from message preflight.v2.ColourChecks */ export declare class ColourChecks extends Message { /** * @generated from field: preflight.v2.ColourChecks.Checks checks = 1; */ checks?: ColourChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.Failures failures = 3; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 4; */ warnings?: Warnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourChecks; static fromJson(jsonValue: JsonValue, options?: Partial): ColourChecks; static fromJsonString(jsonString: string, options?: Partial): ColourChecks; static equals(a: ColourChecks | PlainMessage | undefined, b: ColourChecks | PlainMessage | undefined): boolean; } /** * The single "checkColours" as a specialized message: * * @generated from message preflight.v2.ColourChecks.Checks */ export declare class ColourChecks_Checks extends Message { /** * @generated from field: preflight.v2.ColourCheck check_colours = 1; */ checkColours?: ColourCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): ColourChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): ColourChecks_Checks; static equals(a: ColourChecks_Checks | PlainMessage | undefined, b: ColourChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DimensionsChecks */ export declare class DimensionsChecks extends Message { /** * @generated from field: preflight.v2.DimensionsChecks.Checks checks = 1; */ checks?: DimensionsChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.Failures failures = 3; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 4; */ warnings?: Warnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DimensionsChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DimensionsChecks; static fromJson(jsonValue: JsonValue, options?: Partial): DimensionsChecks; static fromJsonString(jsonString: string, options?: Partial): DimensionsChecks; static equals(a: DimensionsChecks | PlainMessage | undefined, b: DimensionsChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.DimensionsChecks.Checks */ export declare class DimensionsChecks_Checks extends Message { /** * @generated from field: preflight.v2.AspectRatioCheck aspect_ratio = 1; */ aspectRatio?: AspectRatioCheck; /** * @generated from field: preflight.v2.BleedCheck bleed = 2; */ bleed?: BleedCheck; /** * @generated from field: preflight.v2.OrientationCheck orientation = 3; */ orientation?: OrientationCheck; /** * @generated from field: preflight.v2.TrimSizeCheck trim_size = 4; */ trimSize?: TrimSizeCheck; /** * @generated from field: preflight.v2.BoxSizeCheck media_box_size = 5; */ mediaBoxSize?: BoxSizeCheck; /** * @generated from field: preflight.v2.BoxSizeCheck bleed_box_size = 6; */ bleedBoxSize?: BoxSizeCheck; /** * @generated from field: preflight.v2.BoxSizeCheck art_box_size = 7; */ artBoxSize?: BoxSizeCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.DimensionsChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): DimensionsChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): DimensionsChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): DimensionsChecks_Checks; static equals(a: DimensionsChecks_Checks | PlainMessage | undefined, b: DimensionsChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.FontChecks */ export declare class FontChecks extends Message { /** * @generated from field: preflight.v2.FontChecks.Checks checks = 1; */ checks?: FontChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.Failures failures = 3; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 4; */ warnings?: Warnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontChecks; static fromJson(jsonValue: JsonValue, options?: Partial): FontChecks; static fromJsonString(jsonString: string, options?: Partial): FontChecks; static equals(a: FontChecks | PlainMessage | undefined, b: FontChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.FontChecks.Checks */ export declare class FontChecks_Checks extends Message { /** * @generated from field: preflight.v2.FontsEmbeddedCheck fonts_embedded = 1; */ fontsEmbedded?: FontsEmbeddedCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): FontChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): FontChecks_Checks; static equals(a: FontChecks_Checks | PlainMessage | undefined, b: FontChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageChecks */ export declare class ImageChecks extends Message { /** * @generated from field: preflight.v2.ImageChecks.Checks checks = 1; */ checks?: ImageChecks_Checks; /** * @generated from field: string status = 2; */ status: string; /** * @generated from field: optional preflight.v2.Failures failures = 3; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 4; */ warnings?: Warnings; /** * @generated from field: optional string name = 5; */ name?: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageChecks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageChecks; static fromJson(jsonValue: JsonValue, options?: Partial): ImageChecks; static fromJsonString(jsonString: string, options?: Partial): ImageChecks; static equals(a: ImageChecks | PlainMessage | undefined, b: ImageChecks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageChecks.Checks */ export declare class ImageChecks_Checks extends Message { /** * @generated from field: preflight.v2.ImageResolutionCheck image_resolution = 1; */ imageResolution?: ImageResolutionCheck; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageChecks.Checks"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageChecks_Checks; static fromJson(jsonValue: JsonValue, options?: Partial): ImageChecks_Checks; static fromJsonString(jsonString: string, options?: Partial): ImageChecks_Checks; static equals(a: ImageChecks_Checks | PlainMessage | undefined, b: ImageChecks_Checks | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourCheck */ export declare class ColourCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; /** * @generated from field: optional preflight.v2.ColourPageDifferenceSummary page_difference_summary = 10; */ pageDifferenceSummary?: ColourPageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourCheck; static fromJson(jsonValue: JsonValue, options?: Partial): ColourCheck; static fromJsonString(jsonString: string, options?: Partial): ColourCheck; static equals(a: ColourCheck | PlainMessage | undefined, b: ColourCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.AspectRatioCheck */ export declare class AspectRatioCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.AspectRatioCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AspectRatioCheck; static fromJson(jsonValue: JsonValue, options?: Partial): AspectRatioCheck; static fromJsonString(jsonString: string, options?: Partial): AspectRatioCheck; static equals(a: AspectRatioCheck | PlainMessage | undefined, b: AspectRatioCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedCheck */ export declare class BleedCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; /** * @generated from field: optional preflight.v2.BleedPageDifferenceSummary page_difference_summary = 10; */ pageDifferenceSummary?: BleedPageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BleedCheck; static fromJsonString(jsonString: string, options?: Partial): BleedCheck; static equals(a: BleedCheck | PlainMessage | undefined, b: BleedCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationCheck */ export declare class OrientationCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; /** * @generated from field: optional preflight.v2.OrientationPageDifferenceSummary page_difference_summary = 10; */ pageDifferenceSummary?: OrientationPageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationCheck; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationCheck; static fromJsonString(jsonString: string, options?: Partial): OrientationCheck; static equals(a: OrientationCheck | PlainMessage | undefined, b: OrientationCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.TrimSizeCheck */ export declare class TrimSizeCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; /** * @generated from field: optional preflight.v2.PageDifferenceSummary page_difference_summary = 10; */ pageDifferenceSummary?: PageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.TrimSizeCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrimSizeCheck; static fromJson(jsonValue: JsonValue, options?: Partial): TrimSizeCheck; static fromJsonString(jsonString: string, options?: Partial): TrimSizeCheck; static equals(a: TrimSizeCheck | PlainMessage | undefined, b: TrimSizeCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BoxSizeCheck */ export declare class BoxSizeCheck 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 summary = 6; */ summary: string; /** * @generated from field: optional preflight.v2.PageDifferenceSummary page_difference_summary = 7; */ pageDifferenceSummary?: PageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BoxSizeCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BoxSizeCheck; static fromJson(jsonValue: JsonValue, options?: Partial): BoxSizeCheck; static fromJsonString(jsonString: string, options?: Partial): BoxSizeCheck; static equals(a: BoxSizeCheck | PlainMessage | undefined, b: BoxSizeCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BoxSizeCheckOutput */ export declare class BoxSizeCheckOutput extends Message { /** * @generated from field: float width = 1; */ width: number; /** * @generated from field: float height = 2; */ height: number; /** * @generated from field: string unit = 3; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BoxSizeCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BoxSizeCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): BoxSizeCheckOutput; static fromJsonString(jsonString: string, options?: Partial): BoxSizeCheckOutput; static equals(a: BoxSizeCheckOutput | PlainMessage | undefined, b: BoxSizeCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.FontsEmbeddedCheck */ export declare class FontsEmbeddedCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontsEmbeddedCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontsEmbeddedCheck; static fromJson(jsonValue: JsonValue, options?: Partial): FontsEmbeddedCheck; static fromJsonString(jsonString: string, options?: Partial): FontsEmbeddedCheck; static equals(a: FontsEmbeddedCheck | PlainMessage | undefined, b: FontsEmbeddedCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionCheck */ export declare class ImageResolutionCheck 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.Failures failures = 8; */ failures?: Failures; /** * @generated from field: optional preflight.v2.Warnings warnings = 9; */ warnings?: Warnings; /** * @generated from field: optional preflight.v2.ImageResolutionPageDifferenceSummary page_difference_summary = 10; */ pageDifferenceSummary?: ImageResolutionPageDifferenceSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionCheck; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionCheck; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionCheck; static equals(a: ImageResolutionCheck | PlainMessage | undefined, b: ImageResolutionCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.PageCountCheckInput */ export declare class PageCountCheckInput extends Message { /** * @generated from field: int32 expected_page_count = 1; */ expectedPageCount: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PageCountCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PageCountCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): PageCountCheckInput; static fromJsonString(jsonString: string, options?: Partial): PageCountCheckInput; static equals(a: PageCountCheckInput | PlainMessage | undefined, b: PageCountCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourCheckInput */ export declare class ColourCheckInput extends Message { /** * @generated from field: repeated string allowed_colours = 1; */ allowedColours: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): ColourCheckInput; static fromJsonString(jsonString: string, options?: Partial): ColourCheckInput; static equals(a: ColourCheckInput | PlainMessage | undefined, b: ColourCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.AspectRatioCheckInput */ export declare class AspectRatioCheckInput extends Message { /** * @generated from field: float pass_tolerance_percentage = 1; */ passTolerancePercentage: number; /** * @generated from field: float warn_tolerance_percentage = 2; */ warnTolerancePercentage: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.AspectRatioCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AspectRatioCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): AspectRatioCheckInput; static fromJsonString(jsonString: string, options?: Partial): AspectRatioCheckInput; static equals(a: AspectRatioCheckInput | PlainMessage | undefined, b: AspectRatioCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedCheckInput */ export declare class BleedCheckInput extends Message { /** * @generated from field: float bottom = 1; */ bottom: number; /** * @generated from field: float left = 2; */ left: number; /** * @generated from field: float right = 3; */ right: number; /** * @generated from field: float top = 4; */ top: number; /** * "mm" * * @generated from field: string unit = 5; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): BleedCheckInput; static fromJsonString(jsonString: string, options?: Partial): BleedCheckInput; static equals(a: BleedCheckInput | PlainMessage | undefined, b: BleedCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationCheckInput */ export declare class OrientationCheckInput extends Message { /** * "Portrait" * * @generated from field: string orientation = 1; */ orientation: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationCheckInput; static fromJsonString(jsonString: string, options?: Partial): OrientationCheckInput; static equals(a: OrientationCheckInput | PlainMessage | undefined, b: OrientationCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.TrimSizeCheckInput */ export declare class TrimSizeCheckInput extends Message { /** * @generated from field: float width = 1; */ width: number; /** * @generated from field: float height = 2; */ height: number; /** * "mm" * * @generated from field: string unit = 3; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.TrimSizeCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrimSizeCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): TrimSizeCheckInput; static fromJsonString(jsonString: string, options?: Partial): TrimSizeCheckInput; static equals(a: TrimSizeCheckInput | PlainMessage | undefined, b: TrimSizeCheckInput | PlainMessage | undefined): boolean; } /** * The original JSON had `input: null`. Potentially empty or future fields go here. * * @generated from message preflight.v2.FontsEmbeddedCheckInput */ export declare class FontsEmbeddedCheckInput extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontsEmbeddedCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontsEmbeddedCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): FontsEmbeddedCheckInput; static fromJsonString(jsonString: string, options?: Partial): FontsEmbeddedCheckInput; static equals(a: FontsEmbeddedCheckInput | PlainMessage | undefined, b: FontsEmbeddedCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionCheckInput */ export declare class ImageResolutionCheckInput extends Message { /** * "actual size" * * @generated from field: string check_resolution_size = 1; */ checkResolutionSize: string; /** * @generated from field: int32 error_below_d_p_i = 2; */ errorBelowDPI: number; /** * @generated from field: int32 recomended_d_p_i = 3; */ recomendedDPI: number; /** * @generated from field: int32 warn_below_d_p_i = 4; */ warnBelowDPI: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionCheckInput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionCheckInput; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionCheckInput; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionCheckInput; static equals(a: ImageResolutionCheckInput | PlainMessage | undefined, b: ImageResolutionCheckInput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.PageCountCheckOutput */ export declare class PageCountCheckOutput extends Message { /** * @generated from field: int32 actual_page_count = 1; */ actualPageCount: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PageCountCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PageCountCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): PageCountCheckOutput; static fromJsonString(jsonString: string, options?: Partial): PageCountCheckOutput; static equals(a: PageCountCheckOutput | PlainMessage | undefined, b: PageCountCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourCheckOutput */ export declare class ColourCheckOutput extends Message { /** * e.g. "CMYK" * * @generated from field: repeated string colours_found = 1; */ coloursFound: string[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): ColourCheckOutput; static fromJsonString(jsonString: string, options?: Partial): ColourCheckOutput; static equals(a: ColourCheckOutput | PlainMessage | undefined, b: ColourCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.AspectRatioCheckOutput */ export declare class AspectRatioCheckOutput extends Message { /** * @generated from field: optional bool all_pages_uniform = 1; */ allPagesUniform?: boolean; /** * @generated from field: float aspect_ratio = 2; */ aspectRatio: number; /** * @generated from field: float deviation_percentage = 3; */ deviationPercentage: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.AspectRatioCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AspectRatioCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): AspectRatioCheckOutput; static fromJsonString(jsonString: string, options?: Partial): AspectRatioCheckOutput; static equals(a: AspectRatioCheckOutput | PlainMessage | undefined, b: AspectRatioCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedCheckOutput */ export declare class BleedCheckOutput extends Message { /** * @generated from field: optional bool all_pages_uniform = 1; */ allPagesUniform?: boolean; /** * @generated from field: float bottom = 2; */ bottom: number; /** * @generated from field: float left = 3; */ left: number; /** * @generated from field: float right = 4; */ right: number; /** * @generated from field: float top = 5; */ top: number; /** * @generated from field: string unit = 6; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): BleedCheckOutput; static fromJsonString(jsonString: string, options?: Partial): BleedCheckOutput; static equals(a: BleedCheckOutput | PlainMessage | undefined, b: BleedCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationCheckOutput */ export declare class OrientationCheckOutput extends Message { /** * @generated from field: optional bool all_pages_uniform = 1; */ allPagesUniform?: boolean; /** * @generated from field: string orientation = 2; */ orientation: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationCheckOutput; static fromJsonString(jsonString: string, options?: Partial): OrientationCheckOutput; static equals(a: OrientationCheckOutput | PlainMessage | undefined, b: OrientationCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.TrimSizeCheckOutput */ export declare class TrimSizeCheckOutput extends Message { /** * @generated from field: optional bool all_pages_uniform = 1; */ allPagesUniform?: boolean; /** * @generated from field: float width = 2; */ width: number; /** * @generated from field: float height = 3; */ height: number; /** * @generated from field: string unit = 4; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.TrimSizeCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrimSizeCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): TrimSizeCheckOutput; static fromJsonString(jsonString: string, options?: Partial): TrimSizeCheckOutput; static equals(a: TrimSizeCheckOutput | PlainMessage | undefined, b: TrimSizeCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.FontsEmbeddedCheckOutput */ export declare class FontsEmbeddedCheckOutput extends Message { /** * deprecated in favour of "fonts" * * @generated from field: repeated string fonts_found = 1; */ fontsFound: string[]; /** * @generated from field: repeated preflight.v2.FontsEmbeddedCheckOutput.Font fonts = 2; */ fonts: FontsEmbeddedCheckOutput_Font[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontsEmbeddedCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontsEmbeddedCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): FontsEmbeddedCheckOutput; static fromJsonString(jsonString: string, options?: Partial): FontsEmbeddedCheckOutput; static equals(a: FontsEmbeddedCheckOutput | PlainMessage | undefined, b: FontsEmbeddedCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.FontsEmbeddedCheckOutput.Font */ export declare class FontsEmbeddedCheckOutput_Font extends Message { /** * @generated from field: string name = 1; */ name: string; /** * @generated from field: bool embedded = 2; */ embedded: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.FontsEmbeddedCheckOutput.Font"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FontsEmbeddedCheckOutput_Font; static fromJson(jsonValue: JsonValue, options?: Partial): FontsEmbeddedCheckOutput_Font; static fromJsonString(jsonString: string, options?: Partial): FontsEmbeddedCheckOutput_Font; static equals(a: FontsEmbeddedCheckOutput_Font | PlainMessage | undefined, b: FontsEmbeddedCheckOutput_Font | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionCheckOutput */ export declare class ImageResolutionCheckOutput extends Message { /** * @generated from field: float min_image_resolution_d_p_i = 1; */ minImageResolutionDPI: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionCheckOutput"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionCheckOutput; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionCheckOutput; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionCheckOutput; static equals(a: ImageResolutionCheckOutput | PlainMessage | undefined, b: ImageResolutionCheckOutput | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.Failures */ export declare class Failures extends Message { /** * @generated from field: repeated int32 affected_pages = 1; */ affectedPages: number[]; /** * @generated from field: int32 count = 2; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.Failures"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Failures; static fromJson(jsonValue: JsonValue, options?: Partial): Failures; static fromJsonString(jsonString: string, options?: Partial): Failures; static equals(a: Failures | PlainMessage | undefined, b: Failures | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.Warnings */ export declare class Warnings extends Message { /** * @generated from field: repeated int32 affected_pages = 1; */ affectedPages: number[]; /** * @generated from field: int32 count = 2; */ count: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.Warnings"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): Warnings; static fromJson(jsonValue: JsonValue, options?: Partial): Warnings; static fromJsonString(jsonString: string, options?: Partial): Warnings; static equals(a: Warnings | PlainMessage | undefined, b: Warnings | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.PreflightMediaItem */ export declare class PreflightMediaItem extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId: bigint; /** * @generated from field: int32 file_num = 2; */ fileNum: number; /** * @generated from field: string bucket_name = 3; */ bucketName: string; /** * @generated from field: string object_name = 4; */ objectName: string; /** * @generated from field: string content_type = 5; */ contentType: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PreflightMediaItem"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightMediaItem; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightMediaItem; static fromJsonString(jsonString: string, options?: Partial): PreflightMediaItem; static equals(a: PreflightMediaItem | PlainMessage | undefined, b: PreflightMediaItem | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.StartPreflightRequest */ export declare class StartPreflightRequest extends Message { /** * @generated from field: common.v1.ObjectRef object_ref = 1; */ objectRef?: ObjectRef; /** * @generated from field: repeated preflight.v2.PreflightMediaItem media_items = 2; */ mediaItems: PreflightMediaItem[]; /** * @generated from field: int64 artworker_id = 3; */ artworkerId: bigint; /** * @generated from field: common.v1.ObjectRef preflight_config_object_ref = 4; */ preflightConfigObjectRef?: ObjectRef; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.StartPreflightRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StartPreflightRequest; static fromJson(jsonValue: JsonValue, options?: Partial): StartPreflightRequest; static fromJsonString(jsonString: string, options?: Partial): StartPreflightRequest; static equals(a: StartPreflightRequest | PlainMessage | undefined, b: StartPreflightRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.StartPreflightResponse */ export declare class StartPreflightResponse extends Message { /** * @generated from field: bool ok = 1; */ ok: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.StartPreflightResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): StartPreflightResponse; static fromJson(jsonValue: JsonValue, options?: Partial): StartPreflightResponse; static fromJsonString(jsonString: string, options?: Partial): StartPreflightResponse; static equals(a: StartPreflightResponse | PlainMessage | undefined, b: StartPreflightResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightFileReportRequest */ export declare class GetPreflightFileReportRequest extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId: bigint; /** * @generated from field: int64 artworker_id = 2; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightFileReportRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightFileReportRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightFileReportRequest; static fromJsonString(jsonString: string, options?: Partial): GetPreflightFileReportRequest; static equals(a: GetPreflightFileReportRequest | PlainMessage | undefined, b: GetPreflightFileReportRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightFileReportResponse */ export declare class GetPreflightFileReportResponse extends Message { /** * @generated from field: preflight.v2.PreflightFileReport report = 1; */ report?: PreflightFileReport; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightFileReportResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightFileReportResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightFileReportResponse; static fromJsonString(jsonString: string, options?: Partial): GetPreflightFileReportResponse; static equals(a: GetPreflightFileReportResponse | PlainMessage | undefined, b: GetPreflightFileReportResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightPageReportRequest */ export declare class GetPreflightPageReportRequest extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId: bigint; /** * @generated from field: int32 page = 2; */ page: number; /** * @generated from field: int64 artworker_id = 3; */ artworkerId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightPageReportRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightPageReportRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightPageReportRequest; static fromJsonString(jsonString: string, options?: Partial): GetPreflightPageReportRequest; static equals(a: GetPreflightPageReportRequest | PlainMessage | undefined, b: GetPreflightPageReportRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.GetPreflightPageReportResponse */ export declare class GetPreflightPageReportResponse extends Message { /** * @generated from field: preflight.v2.PreflightPageReport report = 1; */ report?: PreflightPageReport; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.GetPreflightPageReportResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightPageReportResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightPageReportResponse; static fromJsonString(jsonString: string, options?: Partial): GetPreflightPageReportResponse; static equals(a: GetPreflightPageReportResponse | PlainMessage | undefined, b: GetPreflightPageReportResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.PageDifferenceSummary */ export declare class PageDifferenceSummary extends Message { /** * @generated from field: repeated preflight.v2.TrimSizeDifference differences = 1; */ differences: TrimSizeDifference[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.PageDifferenceSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PageDifferenceSummary; static fromJson(jsonValue: JsonValue, options?: Partial): PageDifferenceSummary; static fromJsonString(jsonString: string, options?: Partial): PageDifferenceSummary; static equals(a: PageDifferenceSummary | PlainMessage | undefined, b: PageDifferenceSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.TrimSizeDifference */ export declare class TrimSizeDifference extends Message { /** * @generated from field: preflight.v2.TrimSizeConfig config = 1; */ config?: TrimSizeConfig; /** * @generated from field: repeated int32 pages = 2; */ pages: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.TrimSizeDifference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrimSizeDifference; static fromJson(jsonValue: JsonValue, options?: Partial): TrimSizeDifference; static fromJsonString(jsonString: string, options?: Partial): TrimSizeDifference; static equals(a: TrimSizeDifference | PlainMessage | undefined, b: TrimSizeDifference | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.TrimSizeConfig */ export declare class TrimSizeConfig extends Message { /** * @generated from field: float height = 1; */ height: number; /** * @generated from field: string unit = 2; */ unit: string; /** * @generated from field: float width = 3; */ width: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.TrimSizeConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): TrimSizeConfig; static fromJson(jsonValue: JsonValue, options?: Partial): TrimSizeConfig; static fromJsonString(jsonString: string, options?: Partial): TrimSizeConfig; static equals(a: TrimSizeConfig | PlainMessage | undefined, b: TrimSizeConfig | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedPageDifferenceSummary */ export declare class BleedPageDifferenceSummary extends Message { /** * @generated from field: repeated preflight.v2.BleedDifference differences = 1; */ differences: BleedDifference[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedPageDifferenceSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedPageDifferenceSummary; static fromJson(jsonValue: JsonValue, options?: Partial): BleedPageDifferenceSummary; static fromJsonString(jsonString: string, options?: Partial): BleedPageDifferenceSummary; static equals(a: BleedPageDifferenceSummary | PlainMessage | undefined, b: BleedPageDifferenceSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedDifference */ export declare class BleedDifference extends Message { /** * @generated from field: preflight.v2.BleedConfig config = 1; */ config?: BleedConfig; /** * @generated from field: repeated int32 pages = 2; */ pages: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedDifference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedDifference; static fromJson(jsonValue: JsonValue, options?: Partial): BleedDifference; static fromJsonString(jsonString: string, options?: Partial): BleedDifference; static equals(a: BleedDifference | PlainMessage | undefined, b: BleedDifference | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.BleedConfig */ export declare class BleedConfig extends Message { /** * @generated from field: float bottom = 1; */ bottom: number; /** * @generated from field: float left = 2; */ left: number; /** * @generated from field: float right = 3; */ right: number; /** * @generated from field: float top = 4; */ top: number; /** * @generated from field: string unit = 5; */ unit: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.BleedConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): BleedConfig; static fromJson(jsonValue: JsonValue, options?: Partial): BleedConfig; static fromJsonString(jsonString: string, options?: Partial): BleedConfig; static equals(a: BleedConfig | PlainMessage | undefined, b: BleedConfig | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationPageDifferenceSummary */ export declare class OrientationPageDifferenceSummary extends Message { /** * @generated from field: repeated preflight.v2.OrientationDifference differences = 1; */ differences: OrientationDifference[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationPageDifferenceSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationPageDifferenceSummary; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationPageDifferenceSummary; static fromJsonString(jsonString: string, options?: Partial): OrientationPageDifferenceSummary; static equals(a: OrientationPageDifferenceSummary | PlainMessage | undefined, b: OrientationPageDifferenceSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationDifference */ export declare class OrientationDifference extends Message { /** * @generated from field: preflight.v2.OrientationConfig config = 1; */ config?: OrientationConfig; /** * @generated from field: repeated int32 pages = 2; */ pages: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationDifference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationDifference; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationDifference; static fromJsonString(jsonString: string, options?: Partial): OrientationDifference; static equals(a: OrientationDifference | PlainMessage | undefined, b: OrientationDifference | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.OrientationConfig */ export declare class OrientationConfig extends Message { /** * @generated from field: string orientation = 1; */ orientation: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.OrientationConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): OrientationConfig; static fromJson(jsonValue: JsonValue, options?: Partial): OrientationConfig; static fromJsonString(jsonString: string, options?: Partial): OrientationConfig; static equals(a: OrientationConfig | PlainMessage | undefined, b: OrientationConfig | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourPageDifferenceSummary */ export declare class ColourPageDifferenceSummary extends Message { /** * @generated from field: repeated preflight.v2.ColourDifference differences = 1; */ differences: ColourDifference[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourPageDifferenceSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourPageDifferenceSummary; static fromJson(jsonValue: JsonValue, options?: Partial): ColourPageDifferenceSummary; static fromJsonString(jsonString: string, options?: Partial): ColourPageDifferenceSummary; static equals(a: ColourPageDifferenceSummary | PlainMessage | undefined, b: ColourPageDifferenceSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourDifference */ export declare class ColourDifference extends Message { /** * @generated from field: preflight.v2.ColourConfig config = 1; */ config?: ColourConfig; /** * @generated from field: repeated int32 pages = 2; */ pages: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourDifference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourDifference; static fromJson(jsonValue: JsonValue, options?: Partial): ColourDifference; static fromJsonString(jsonString: string, options?: Partial): ColourDifference; static equals(a: ColourDifference | PlainMessage | undefined, b: ColourDifference | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ColourConfig */ export declare class ColourConfig extends Message { /** * @generated from field: string colour = 1; */ colour: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ColourConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ColourConfig; static fromJson(jsonValue: JsonValue, options?: Partial): ColourConfig; static fromJsonString(jsonString: string, options?: Partial): ColourConfig; static equals(a: ColourConfig | PlainMessage | undefined, b: ColourConfig | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionPageDifferenceSummary */ export declare class ImageResolutionPageDifferenceSummary extends Message { /** * @generated from field: repeated preflight.v2.ImageResolutionDifference differences = 1; */ differences: ImageResolutionDifference[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionPageDifferenceSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionPageDifferenceSummary; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionPageDifferenceSummary; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionPageDifferenceSummary; static equals(a: ImageResolutionPageDifferenceSummary | PlainMessage | undefined, b: ImageResolutionPageDifferenceSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionDifference */ export declare class ImageResolutionDifference extends Message { /** * @generated from field: preflight.v2.ImageResolutionConfig config = 1; */ config?: ImageResolutionConfig; /** * @generated from field: repeated int32 pages = 2; */ pages: number[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionDifference"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionDifference; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionDifference; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionDifference; static equals(a: ImageResolutionDifference | PlainMessage | undefined, b: ImageResolutionDifference | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v2.ImageResolutionConfig */ export declare class ImageResolutionConfig extends Message { /** * @generated from field: string status = 1; */ status: string; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v2.ImageResolutionConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): ImageResolutionConfig; static fromJson(jsonValue: JsonValue, options?: Partial): ImageResolutionConfig; static fromJsonString(jsonString: string, options?: Partial): ImageResolutionConfig; static equals(a: ImageResolutionConfig | PlainMessage | undefined, b: ImageResolutionConfig | PlainMessage | undefined): boolean; }