import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, Timestamp } from "@bufbuild/protobuf"; /** * @generated from message preflight.v1.FileType */ export declare class FileType extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: string name = 4; */ name: string; /** * @generated from field: repeated string extensions = 5; */ extensions: string[]; /** * @generated from field: repeated string mime_types = 6; */ mimeTypes: string[]; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.FileType"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): FileType; static fromJson(jsonValue: JsonValue, options?: Partial): FileType; static fromJsonString(jsonString: string, options?: Partial): FileType; static equals(a: FileType | PlainMessage | undefined, b: FileType | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.PreflightJobConfig */ export declare class PreflightJobConfig extends Message { /** * @generated from field: int64 id = 1; */ id: bigint; /** * @generated from field: google.protobuf.Timestamp created_at = 2; */ createdAt?: Timestamp; /** * @generated from field: google.protobuf.Timestamp updated_at = 3; */ updatedAt?: Timestamp; /** * @generated from field: string job_id = 4; */ jobId: string; /** * @generated from field: int64 supplier_id = 5; */ supplierId: bigint; /** * @generated from field: int32 image_res_min = 6; */ imageResMin: number; /** * @generated from field: int32 image_res_recommended = 7; */ imageResRecommended: number; /** * @generated from field: repeated preflight.v1.FileType allowed_file_types = 8; */ allowedFileTypes: FileType[]; /** * @generated from field: bool require_embedded_fonts = 9; */ requireEmbeddedFonts: boolean; /** * @generated from field: bool enabled = 10; */ enabled: boolean; /** * @generated from field: int32 page_count = 11; */ pageCount: number; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.PreflightJobConfig"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightJobConfig; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightJobConfig; static fromJsonString(jsonString: string, options?: Partial): PreflightJobConfig; static equals(a: PreflightJobConfig | PlainMessage | undefined, b: PreflightJobConfig | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetAvailableFileTypesRequest */ export declare class GetAvailableFileTypesRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.GetAvailableFileTypesRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAvailableFileTypesRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetAvailableFileTypesRequest; static fromJsonString(jsonString: string, options?: Partial): GetAvailableFileTypesRequest; static equals(a: GetAvailableFileTypesRequest | PlainMessage | undefined, b: GetAvailableFileTypesRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetAvailableFileTypesResponse */ export declare class GetAvailableFileTypesResponse extends Message { /** * @generated from field: repeated preflight.v1.FileType filetypes = 1; */ filetypes: FileType[]; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.GetAvailableFileTypesResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetAvailableFileTypesResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetAvailableFileTypesResponse; static fromJsonString(jsonString: string, options?: Partial): GetAvailableFileTypesResponse; static equals(a: GetAvailableFileTypesResponse | PlainMessage | undefined, b: GetAvailableFileTypesResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.SavePreflightJobConfigRequest */ export declare class SavePreflightJobConfigRequest extends Message { /** * @generated from field: string job_id = 1; */ jobId: string; /** * @generated from field: preflight.v1.PreflightJobConfig config = 2; */ config?: PreflightJobConfig; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.SavePreflightJobConfigRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SavePreflightJobConfigRequest; static fromJson(jsonValue: JsonValue, options?: Partial): SavePreflightJobConfigRequest; static fromJsonString(jsonString: string, options?: Partial): SavePreflightJobConfigRequest; static equals(a: SavePreflightJobConfigRequest | PlainMessage | undefined, b: SavePreflightJobConfigRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.SavePreflightJobConfigResponse */ export declare class SavePreflightJobConfigResponse extends Message { /** * @generated from field: preflight.v1.PreflightJobConfig config = 1; */ config?: PreflightJobConfig; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.SavePreflightJobConfigResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): SavePreflightJobConfigResponse; static fromJson(jsonValue: JsonValue, options?: Partial): SavePreflightJobConfigResponse; static fromJsonString(jsonString: string, options?: Partial): SavePreflightJobConfigResponse; static equals(a: SavePreflightJobConfigResponse | PlainMessage | undefined, b: SavePreflightJobConfigResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetPreflightJobConfigRequest */ export declare class GetPreflightJobConfigRequest extends Message { /** * @generated from field: string job_id = 1; */ jobId: string; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.GetPreflightJobConfigRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightJobConfigRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightJobConfigRequest; static fromJsonString(jsonString: string, options?: Partial): GetPreflightJobConfigRequest; static equals(a: GetPreflightJobConfigRequest | PlainMessage | undefined, b: GetPreflightJobConfigRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetPreflightJobConfigResponse */ export declare class GetPreflightJobConfigResponse extends Message { /** * @generated from field: preflight.v1.PreflightJobConfig config = 1; */ config?: PreflightJobConfig; constructor(data?: PartialMessage); static readonly runtime: import("@bufbuild/protobuf/dist/types/private/proto-runtime").ProtoRuntime; static readonly typeName = "preflight.v1.GetPreflightJobConfigResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetPreflightJobConfigResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetPreflightJobConfigResponse; static fromJsonString(jsonString: string, options?: Partial): GetPreflightJobConfigResponse; static equals(a: GetPreflightJobConfigResponse | PlainMessage | undefined, b: GetPreflightJobConfigResponse | PlainMessage | undefined): boolean; }