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