251218:1701 On going update to 1.7.0: Documnet Number rebuild
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-18 17:01:42 +07:00
parent aaa5da3ec1
commit 83704377f4
102 changed files with 3385 additions and 1451 deletions

View File

@@ -6,10 +6,10 @@ export class PreviewNumberDto {
projectId!: number;
@ApiProperty({ description: 'Originator organization ID' })
originatorId!: number;
originatorOrganizationId!: number;
@ApiProperty({ description: 'Correspondence type ID' })
typeId!: number;
correspondenceTypeId!: number;
@ApiPropertyOptional({ description: 'Sub type ID (for TRANSMITTAL)' })
subTypeId?: number;
@@ -25,4 +25,7 @@ export class PreviewNumberDto {
@ApiPropertyOptional({ description: 'Recipient organization ID' })
recipientOrganizationId?: number;
@ApiPropertyOptional({ description: 'Custom tokens' })
customTokens?: Record<string, string>;
}