neocatecumenal 2.1.7 → 2.1.9
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/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import Diocese from "./Diocese";
|
|
|
3
3
|
import Endereco from "./Endereco";
|
|
4
4
|
import Estado from "./Estado";
|
|
5
5
|
import Pais from "./Pais";
|
|
6
|
+
import Paroquia from "./Paroquia";
|
|
6
7
|
import Pessoa from "./Pessoa";
|
|
7
8
|
import PessoaConjugue from "./PessoaConjugue";
|
|
8
|
-
export { Cidade, Diocese, Endereco, Estado, Pais, Pessoa, PessoaConjugue };
|
|
9
|
+
export { Cidade, Diocese, Endereco, Estado, Pais, Pessoa, PessoaConjugue, Paroquia, };
|
package/package.json
CHANGED
package/src/Caminho/Endereco.ts
CHANGED
package/src/Caminho/index.ts
CHANGED
|
@@ -3,7 +3,17 @@ import Diocese from "./Diocese";
|
|
|
3
3
|
import Endereco from "./Endereco";
|
|
4
4
|
import Estado from "./Estado";
|
|
5
5
|
import Pais from "./Pais";
|
|
6
|
+
import Paroquia from "./Paroquia";
|
|
6
7
|
import Pessoa from "./Pessoa";
|
|
7
8
|
import PessoaConjugue from "./PessoaConjugue";
|
|
8
9
|
|
|
9
|
-
export {
|
|
10
|
+
export {
|
|
11
|
+
Cidade,
|
|
12
|
+
Diocese,
|
|
13
|
+
Endereco,
|
|
14
|
+
Estado,
|
|
15
|
+
Pais,
|
|
16
|
+
Pessoa,
|
|
17
|
+
PessoaConjugue,
|
|
18
|
+
Paroquia,
|
|
19
|
+
};
|