neocatecumenal 2.5.2 → 2.5.3
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.
package/dist/Caminho/Pessoa.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import Endereco from "./Endereco";
|
|
|
2
2
|
import PessoaConjugue from "./PessoaConjugue";
|
|
3
3
|
import SituacaoReligiosa from "../Configuracao/SituacaoReligiosa";
|
|
4
4
|
import { Carisma } from "../Configuracao";
|
|
5
|
-
import
|
|
5
|
+
import Comunidade from "./Comunidade";
|
|
6
6
|
export default interface Pessoa {
|
|
7
7
|
id: number;
|
|
8
8
|
externalId: string;
|
|
@@ -20,5 +20,5 @@ export default interface Pessoa {
|
|
|
20
20
|
conjugue?: PessoaConjugue;
|
|
21
21
|
situacaoReligiosa: SituacaoReligiosa;
|
|
22
22
|
carismas?: Carisma[];
|
|
23
|
-
comunidade?:
|
|
23
|
+
comunidade?: Comunidade;
|
|
24
24
|
}
|
package/package.json
CHANGED