neocatecumenal 2.5.0 → 2.5.2

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/README.md CHANGED
@@ -7,5 +7,9 @@ $ npm run build
7
7
  $ npm publish
8
8
  ```
9
9
 
10
+
11
+ ## NPM
12
+ https://www.npmjs.com/package/neocatecumenal
13
+
10
14
  ## Meta
11
15
  Leonardo Nascimento Cintra - leonardo.ncintra@outlook.com
@@ -9,4 +9,6 @@ export default interface ComunidadeEtapa {
9
9
  dataFim?: Date;
10
10
  localConvivencia?: string;
11
11
  observacao?: string;
12
+ createdAt: Date;
13
+ updatedAt: Date;
12
14
  }
@@ -0,0 +1,7 @@
1
+ import { EtapaEnum } from "../Commons/Enums";
2
+ export default interface ComunidadePessoa {
3
+ id: number;
4
+ comunidadeId: number;
5
+ pessoaId: number;
6
+ etapa: EtapaEnum;
7
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -2,6 +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 ComunidadePessoa from "./ComunidadePessoa";
5
6
  export default interface Pessoa {
6
7
  id: number;
7
8
  externalId: string;
@@ -19,4 +20,5 @@ export default interface Pessoa {
19
20
  conjugue?: PessoaConjugue;
20
21
  situacaoReligiosa: SituacaoReligiosa;
21
22
  carismas?: Carisma[];
23
+ comunidade?: ComunidadePessoa;
22
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neocatecumenal",
3
- "version": "2.5.0",
3
+ "version": "2.5.2",
4
4
  "description": "Libs compartilhadas entre app do CNC",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",