// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BaseSubmissionResponse } from './base-submission-response'; /** * An updated image submission. */ export interface UpdatedImageSubmission { /** * The ID of the part. */ partId: string; /** * The ID of the image. */ imageId: string; /** * The URL of the image. */ url: string; } /** * Response for updating image submissions. */ export interface UpdateImageSubmissionResponse extends BaseSubmissionResponse { /** * The updated images. */ images?: UpdatedImageSubmission[]; }