// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Result of the upsert images operation */ export interface UpsertImagesResult { /** * List of ids of the created images */ created: string[]; /** * List of ids of the updated images */ updated: string[]; /** * Dictionary with ids of failed images and errors found */ errors: Record; }