mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
Replaces the owner/general-manager/PoA trio with a single identity whose
subject is the PoA when the company declares one and the owner otherwise.
- Drop the general manager everywhere: entity columns, DTOs, required-field
list, self-service attributes, gm* identity handling.
- New explicit poaDeclared answer ("yes"/"no") replaces poaSameAsOwner. A
DARS delegation letter is required iff it is "yes"; a freight forwarder is
forced to "yes" server-side and gets no waiver.
- Owner name/email/phone become typeable and required, prefilled from the
eTrade lookup, never falling back to the authenticated account.
- Store eTrade's manager separately (etradeManagerName/Phone) and expose
ownerMatchesEtrade so backoffice compares the asserted owner against the
licence instead of against itself.
- Foreign companies satisfy the identity with Fayda or a passport number, on
whichever subject is verifying (poaPassportNumber added).
- Write companies.email/phone from the owner unconditionally, so a company
without a Fayda-verified owner still has a notification address.
18 lines
459 B
TypeScript
18 lines
459 B
TypeScript
import { ApiProperty } from "@nestjs/swagger";
|
|
import { IsIn } from "class-validator";
|
|
|
|
import {
|
|
POA_DECLARATIONS,
|
|
PoaDeclaration,
|
|
} from "./complete-identity-verification.dto";
|
|
|
|
export class SetPoaDeclaredDto {
|
|
@ApiProperty({
|
|
enum: POA_DECLARATIONS,
|
|
description:
|
|
'Whether anyone holds power of attorney for this company. "no" tears down any representative already recorded.',
|
|
})
|
|
@IsIn(POA_DECLARATIONS)
|
|
declared!: PoaDeclaration;
|
|
}
|