import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3, Timestamp } from "@bufbuild/protobuf"; import { PreflightResult } from "../../common/v1/preflight-warning_pb.js"; import { ObjectRef } from "../../common/v1/object-ref_pb.js"; /** * @generated from message preflight.v1.PageRef */ export declare class PageRef extends Message { /** * @generated from field: int64 media_item_id = 1; */ mediaItemId: bigint; /** * @generated from field: int32 page = 2; */ page: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.PageRef"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PageRef; static fromJson(jsonValue: JsonValue, options?: Partial): PageRef; static fromJsonString(jsonString: string, options?: Partial): PageRef; static equals(a: PageRef | PlainMessage | undefined, b: PageRef | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.PreflightCustomerCheck */ export declare class PreflightCustomerCheck extends Message { /** * @generated from field: repeated preflight.v1.PageRef page_refs = 1; */ pageRefs: PageRef[]; /** * @generated from field: common.v1.PreflightResult preflight_result = 2; */ preflightResult?: PreflightResult; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.PreflightCustomerCheck"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): PreflightCustomerCheck; static fromJson(jsonValue: JsonValue, options?: Partial): PreflightCustomerCheck; static fromJsonString(jsonString: string, options?: Partial): PreflightCustomerCheck; static equals(a: PreflightCustomerCheck | PlainMessage | undefined, b: PreflightCustomerCheck | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.CustomerReportSummary */ export declare class CustomerReportSummary 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: repeated preflight.v1.PreflightCustomerCheck items = 4; */ items: PreflightCustomerCheck[]; /** * @generated from field: int32 page_count = 5; */ pageCount: number; /** * @generated from field: repeated int64 encrypted_files_media_item_ids = 6; */ encryptedFilesMediaItemIds: bigint[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.CustomerReportSummary"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): CustomerReportSummary; static fromJson(jsonValue: JsonValue, options?: Partial): CustomerReportSummary; static fromJsonString(jsonString: string, options?: Partial): CustomerReportSummary; static equals(a: CustomerReportSummary | PlainMessage | undefined, b: CustomerReportSummary | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportSummaryRequest */ export declare class GetCustomerReportSummaryRequest extends Message { /** * @generated from field: int64 artworker_id = 1; */ artworkerId: bigint; /** * @generated from field: common.v1.ObjectRef object_ref = 2; */ objectRef?: ObjectRef; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportSummaryRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportSummaryRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportSummaryRequest; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportSummaryRequest; static equals(a: GetCustomerReportSummaryRequest | PlainMessage | undefined, b: GetCustomerReportSummaryRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportSummaryResponse */ export declare class GetCustomerReportSummaryResponse extends Message { /** * @generated from field: preflight.v1.CustomerReportSummary report = 1; */ report?: CustomerReportSummary; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportSummaryResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportSummaryResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportSummaryResponse; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportSummaryResponse; static equals(a: GetCustomerReportSummaryResponse | PlainMessage | undefined, b: GetCustomerReportSummaryResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportPageRequest */ export declare class GetCustomerReportPageRequest extends Message { /** * @generated from field: int64 report_summary_id = 1; */ reportSummaryId: bigint; /** * @generated from field: int64 media_item_id = 2; */ mediaItemId: bigint; /** * @generated from field: int32 page = 3; */ page: number; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportPageRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportPageRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportPageRequest; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportPageRequest; static equals(a: GetCustomerReportPageRequest | PlainMessage | undefined, b: GetCustomerReportPageRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportPageResponse */ export declare class GetCustomerReportPageResponse extends Message { /** * @generated from field: repeated common.v1.PreflightResult page_report = 1; */ pageReport: PreflightResult[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportPageResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportPageResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportPageResponse; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportPageResponse; static equals(a: GetCustomerReportPageResponse | PlainMessage | undefined, b: GetCustomerReportPageResponse | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportFileSummaryRequest */ export declare class GetCustomerReportFileSummaryRequest extends Message { /** * @generated from field: int64 media_item_id = 2; */ mediaItemId: bigint; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportFileSummaryRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportFileSummaryRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportFileSummaryRequest; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportFileSummaryRequest; static equals(a: GetCustomerReportFileSummaryRequest | PlainMessage | undefined, b: GetCustomerReportFileSummaryRequest | PlainMessage | undefined): boolean; } /** * @generated from message preflight.v1.GetCustomerReportFileSummaryResponse */ export declare class GetCustomerReportFileSummaryResponse extends Message { /** * @generated from field: repeated common.v1.PreflightResult file_report = 1; */ fileReport: PreflightResult[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "preflight.v1.GetCustomerReportFileSummaryResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetCustomerReportFileSummaryResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetCustomerReportFileSummaryResponse; static fromJsonString(jsonString: string, options?: Partial): GetCustomerReportFileSummaryResponse; static equals(a: GetCustomerReportFileSummaryResponse | PlainMessage | undefined, b: GetCustomerReportFileSummaryResponse | PlainMessage | undefined): boolean; }