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);