neocatecumenal 2.3.0 → 2.3.1
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,11 +1,9 @@
|
|
|
1
1
|
import { TipoDiocese } from "../Configuracao";
|
|
2
2
|
import Endereco from "./Endereco";
|
|
3
|
-
import Setor from "./Setor";
|
|
4
3
|
export default interface Diocese {
|
|
5
4
|
id: number;
|
|
6
5
|
descricao: string;
|
|
7
6
|
tipoDiocese: TipoDiocese;
|
|
8
7
|
endereco: Endereco;
|
|
9
|
-
setor: Setor;
|
|
10
8
|
observacao?: string;
|
|
11
9
|
}
|
package/package.json
CHANGED
package/src/Caminho/Diocese.ts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import { TipoDiocese } from "../Configuracao";
|
|
2
2
|
import Endereco from "./Endereco";
|
|
3
|
-
import Setor from "./Setor";
|
|
4
3
|
|
|
5
4
|
export default interface Diocese {
|
|
6
5
|
id: number;
|
|
7
6
|
descricao: string;
|
|
8
7
|
tipoDiocese: TipoDiocese;
|
|
9
8
|
endereco: Endereco;
|
|
10
|
-
setor: Setor;
|
|
11
9
|
observacao?: string;
|
|
12
10
|
}
|