This commit is contained in:
SepehrYahyaee
2026-05-18 10:06:14 +03:30
parent f0ba8949cb
commit 7ff3e9fd10
6 changed files with 113 additions and 58 deletions

View File

@@ -93,6 +93,11 @@ export class ClaimDetailV2ResponseDto {
type: 'object',
properties: {
index: { type: 'number' },
partId: {
type: 'string',
description:
'Send this in PUT reply/submit parts[] — stable id (`id:{catalogId}` or `{side}|{name}`)',
},
id: { type: 'number', nullable: true },
name: { type: 'string' },
side: { type: 'string' },
@@ -104,6 +109,7 @@ export class ClaimDetailV2ResponseDto {
})
damagedParts?: Array<{
index: number;
partId: string;
id?: number | null;
name: string;
side: string;