import type { ApiClient } from "@promobase/sdk-runtime"; import { Cursor } from "@promobase/sdk-runtime"; import type { ProductFeedUploadErrorFields } from "./product-feed-upload-error.ts"; import type { ProductFeedUploadErrorReportFields } from "./product-feed-upload-error-report.ts"; import type { ProductFeedUploadInputMethod } from "../enums.ts"; export interface ProductFeedUploadFields { end_time: string; error_count: number; error_report: ProductFeedUploadErrorReportFields; filename: string; id: string; input_method: ProductFeedUploadInputMethod; num_deleted_items: number; num_detected_items: number; num_invalid_items: number; num_persisted_items: number; start_time: string; url: string; warning_count: number; } export interface ProductFeedUploadListErrorsParams { error_priority?: string; [key: string]: unknown; } export declare function productFeedUploadNode(client: ApiClient, id: string): { __path: string; __brand: ProductFeedUploadFields; get: (opts: { fields: F; params?: Record; }) => Promise>; createErrorReport: (params: Record) => Promise; errors: (opts: { fields: F; params?: ProductFeedUploadListErrorsParams; }) => Cursor>; }; //# sourceMappingURL=product-feed-upload.d.ts.map