neocatecumenal 2.4.4 → 2.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { EtapaEnum } from "../Commons/Enums";
|
|
2
|
+
import Equipe from "./Equipe";
|
|
2
3
|
export default interface ComunidadeEtapa {
|
|
3
4
|
id: number;
|
|
4
5
|
comunidadeId: number;
|
|
5
6
|
etapa: EtapaEnum;
|
|
7
|
+
equipe?: Equipe;
|
|
6
8
|
dataInicio?: Date;
|
|
7
9
|
dataFim?: Date;
|
|
8
10
|
observacao?: string;
|
package/package.json
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { EtapaEnum } from "../Commons/Enums";
|
|
2
|
+
import Equipe from "./Equipe";
|
|
2
3
|
|
|
3
4
|
export default interface ComunidadeEtapa {
|
|
4
5
|
id: number;
|
|
5
6
|
comunidadeId: number;
|
|
6
7
|
etapa: EtapaEnum;
|
|
8
|
+
equipe?: Equipe;
|
|
7
9
|
dataInicio?: Date;
|
|
8
10
|
dataFim?: Date;
|
|
9
11
|
observacao?: string;
|