neocatecumenal 2.4.2 → 2.4.4
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,3 +1,4 @@
|
|
|
1
|
+
import Comunidade from "./Comunidade";
|
|
1
2
|
import Diocese from "./Diocese";
|
|
2
3
|
import Endereco from "./Endereco";
|
|
3
4
|
import Setor from "./Setor";
|
|
@@ -7,5 +8,6 @@ export default interface Paroquia {
|
|
|
7
8
|
diocese: Diocese;
|
|
8
9
|
endereco: Endereco;
|
|
9
10
|
setor: Setor;
|
|
11
|
+
comunidades?: Comunidade[];
|
|
10
12
|
observacao?: string;
|
|
11
13
|
}
|
package/package.json
CHANGED
package/src/Caminho/Paroquia.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Comunidade from "./Comunidade";
|
|
1
2
|
import Diocese from "./Diocese";
|
|
2
3
|
import Endereco from "./Endereco";
|
|
3
4
|
import Setor from "./Setor";
|
|
@@ -8,5 +9,6 @@ export default interface Paroquia {
|
|
|
8
9
|
diocese: Diocese;
|
|
9
10
|
endereco: Endereco;
|
|
10
11
|
setor: Setor;
|
|
12
|
+
comunidades?: Comunidade[];
|
|
11
13
|
observacao?: string;
|
|
12
14
|
}
|