diff --git a/packages/domain/candidature/src/notifier/notifierCandidature.behavior.ts b/packages/domain/candidature/src/notifier/notifierCandidature.behavior.ts index 510aa60724..e0bb01d761 100644 --- a/packages/domain/candidature/src/notifier/notifierCandidature.behavior.ts +++ b/packages/domain/candidature/src/notifier/notifierCandidature.behavior.ts @@ -5,8 +5,8 @@ import { CandidatureAggregate } from '../candidature.aggregate'; export type NotifierOptions = { identifiantProjet: IdentifiantProjet.ValueType; - notifiéLe: DateTime.ValueType; - notifiéPar: Email.ValueType; + notifiéeLe: DateTime.ValueType; + notifiéePar: Email.ValueType; attestation: { format: string; }; @@ -27,7 +27,7 @@ export type CandidatureNotifiéeEvent = DomainEvent< export async function notifier( this: CandidatureAggregate, - { identifiantProjet, notifiéLe, notifiéPar, attestation: { format } }: NotifierOptions, + { identifiantProjet, notifiéeLe, notifiéePar, attestation: { format } }: NotifierOptions, ) { if (this.estNotifiée) { throw new CandidatureDéjàNotifiéeError(identifiantProjet); @@ -36,8 +36,8 @@ export async function notifier( type: 'CandidatureNotifiée-V1', payload: { identifiantProjet: identifiantProjet.formatter(), - notifiéeLe: notifiéLe.formatter(), - notifiéePar: notifiéPar.formatter(), + notifiéeLe: notifiéeLe.formatter(), + notifiéePar: notifiéePar.formatter(), attestation: { format, }, diff --git a/packages/domain/candidature/src/notifier/notifierCandidature.command.ts b/packages/domain/candidature/src/notifier/notifierCandidature.command.ts index 0ea1563c8b..5750056b9b 100644 --- a/packages/domain/candidature/src/notifier/notifierCandidature.command.ts +++ b/packages/domain/candidature/src/notifier/notifierCandidature.command.ts @@ -9,8 +9,8 @@ export type NotifierCandidatureCommand = Message< 'Candidature.Command.NotifierCandidature', { identifiantProjet: IdentifiantProjet.ValueType; - notifiéLe: DateTime.ValueType; - notifiéPar: Email.ValueType; + notifiéeLe: DateTime.ValueType; + notifiéePar: Email.ValueType; attestation: { format: string }; } >; diff --git a/packages/domain/candidature/src/notifier/notifierCandidature.usecase.ts b/packages/domain/candidature/src/notifier/notifierCandidature.usecase.ts index 623e08ad7e..2d563e6276 100644 --- a/packages/domain/candidature/src/notifier/notifierCandidature.usecase.ts +++ b/packages/domain/candidature/src/notifier/notifierCandidature.usecase.ts @@ -8,8 +8,8 @@ export type NotifierCandidatureUseCase = Message< 'Candidature.UseCase.NotifierCandidature', { identifiantProjetValue: string; - notifiéLeValue: string; - notifiéParValue: string; + notifiéeLeValue: string; + notifiéeParValue: string; attestationValue: { format: string; }; @@ -19,16 +19,16 @@ export type NotifierCandidatureUseCase = Message< export const registerNotifierCandidatureUseCase = () => { const handler: MessageHandler = async ({ identifiantProjetValue, - notifiéParValue, - notifiéLeValue, + notifiéeParValue, + notifiéeLeValue, attestationValue: { format }, }) => { await mediator.send({ type: 'Candidature.Command.NotifierCandidature', data: { identifiantProjet: IdentifiantProjet.convertirEnValueType(identifiantProjetValue), - notifiéLe: DateTime.convertirEnValueType(notifiéLeValue), - notifiéPar: Email.convertirEnValueType(notifiéParValue), + notifiéeLe: DateTime.convertirEnValueType(notifiéeLeValue), + notifiéePar: Email.convertirEnValueType(notifiéeParValue), attestation: { format }, }, });