From b74f0511e47225d044c396dacfe6b8f61e9f530d Mon Sep 17 00:00:00 2001 From: Benjamin Levesque <14175665+benjlevesque@users.noreply.github.com> Date: Tue, 18 Feb 2025 11:07:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20Ajout=20commentaires?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ajouter/ajouter.command.ts" | 5 +++++ .../annuler/annuler.command.ts" | 5 +++++ 2 files changed, 10 insertions(+) diff --git "a/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/ajouter/ajouter.command.ts" "b/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/ajouter/ajouter.command.ts" index 1a5a4ce965..97925e68eb 100644 --- "a/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/ajouter/ajouter.command.ts" +++ "b/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/ajouter/ajouter.command.ts" @@ -8,6 +8,10 @@ import { loadGarantiesFinancièresFactory } from '../../garantiesFinancières.ag import { loadAchèvementFactory } from '../../../achèvement/achèvement.aggregate'; import * as TypeTâchePlanifiéeGarantiesFinancières from '../../typeTâchePlanifiéeGarantiesFinancières.valueType'; +/** + * @deprecated Cette commande est temporaire pour permettre l'appel au behavior, + * qui à terme sera fait directement depuis le behavior appelant, via l'aggregate root. + **/ export type AjouterTâchesPlanifiéesGarantiesFinancièresCommand = Message< 'Lauréat.GarantiesFinancières.Command.AjouterTâchesPlanifiées', { @@ -16,6 +20,7 @@ export type AjouterTâchesPlanifiéesGarantiesFinancièresCommand = Message< } >; +/** @deprecated */ export const registerAjouterTâchesPlanfiéesCommand = (loadAggregate: LoadAggregate) => { const loadGarantiesFinancières = loadGarantiesFinancièresFactory(loadAggregate); const loadAchèvement = loadAchèvementFactory(loadAggregate); diff --git "a/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/annuler/annuler.command.ts" "b/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/annuler/annuler.command.ts" index 9a0a9d4a2a..180c1b7ab2 100644 --- "a/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/annuler/annuler.command.ts" +++ "b/packages/domain/laur\303\251at/src/garantiesFinanci\303\250res/t\303\242ches-planifi\303\251es/annuler/annuler.command.ts" @@ -7,6 +7,10 @@ import { loadTâchePlanifiéeAggregateFactory } from '@potentiel-domain/tache-pl import { loadGarantiesFinancièresFactory } from '../../garantiesFinancières.aggregate'; import * as TypeTâchePlanifiéeGarantiesFinancières from '../../typeTâchePlanifiéeGarantiesFinancières.valueType'; +/** + * @deprecated Cette commande est temporaire pour permettre l'appel au behavior, + * qui à terme sera fait directement depuis le behavior appelant, via l'aggregate root. + **/ export type AnnulerTâchesPlanifiéesGarantiesFinancièresCommand = Message< 'Lauréat.GarantiesFinancières.Command.AnnulerTâchesPlanifiées', { @@ -14,6 +18,7 @@ export type AnnulerTâchesPlanifiéesGarantiesFinancièresCommand = Message< } >; +/** @deprecated */ export const registerAnnulerTâchesPlanifiéesCommand = (loadAggregate: LoadAggregate) => { const loadGarantiesFinancières = loadGarantiesFinancièresFactory(loadAggregate); const loadTâchePlanifiée = loadTâchePlanifiéeAggregateFactory(loadAggregate);