neocatecumenal 1.0.13 → 2.0.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.
- package/README.md +11 -0
- package/dist/caminho/Cidade.d.ts +6 -0
- package/dist/caminho/Cidade.js +2 -0
- package/dist/caminho/Endereco.d.ts +10 -0
- package/dist/caminho/Endereco.js +2 -0
- package/dist/caminho/Escolaridade.d.ts +4 -0
- package/dist/caminho/Escolaridade.js +2 -0
- package/dist/caminho/Estado.d.ts +7 -0
- package/dist/caminho/Estado.js +2 -0
- package/dist/caminho/EstadoCivil.d.ts +4 -0
- package/dist/caminho/EstadoCivil.js +2 -0
- package/dist/caminho/Pais.d.ts +4 -0
- package/dist/caminho/Pais.js +2 -0
- package/dist/caminho/Pessoa.d.ts +17 -0
- package/dist/caminho/Pessoa.js +2 -0
- package/dist/caminho/PessoaConjugue.d.ts +6 -0
- package/dist/caminho/PessoaConjugue.js +2 -0
- package/dist/caminho/index.d.ts +9 -0
- package/dist/caminho/index.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +17 -0
- package/package.json +9 -5
- package/src/caminho/Cidade.ts +7 -0
- package/src/{types/endereco.ts → caminho/Endereco.ts} +2 -2
- package/src/caminho/Escolaridade.ts +4 -0
- package/src/caminho/Estado.ts +8 -0
- package/src/caminho/EstadoCivil.ts +4 -0
- package/src/caminho/Pais.ts +4 -0
- package/src/caminho/Pessoa.ts +18 -0
- package/src/caminho/PessoaConjugue.ts +7 -0
- package/src/caminho/index.ts +19 -0
- package/src/index.ts +1 -7
- package/tsconfig.json +14 -0
- package/src/types/cidade.ts +0 -7
- package/src/types/escolaridade.ts +0 -4
- package/src/types/estado.ts +0 -8
- package/src/types/estadoCivil.ts +0 -4
- package/src/types/pais.ts +0 -5
- package/src/types/pessoa.ts +0 -17
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import Endereco from "./Endereco";
|
|
2
|
+
import Escolaridade from "./Escolaridade";
|
|
3
|
+
import EstadoCivil from "./EstadoCivil";
|
|
4
|
+
export default interface Pessoa {
|
|
5
|
+
id: string;
|
|
6
|
+
nome: string;
|
|
7
|
+
conhecidoPor?: string;
|
|
8
|
+
cpf: string;
|
|
9
|
+
sexo: string;
|
|
10
|
+
nacionalidade: string;
|
|
11
|
+
dataNascimento: Date;
|
|
12
|
+
foto?: string;
|
|
13
|
+
ativo: boolean;
|
|
14
|
+
estadoCivil: EstadoCivil;
|
|
15
|
+
escolaridade: Escolaridade;
|
|
16
|
+
enderecos?: Endereco[];
|
|
17
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import Cidade from "./Cidade";
|
|
2
|
+
import Endereco from "./Endereco";
|
|
3
|
+
import Escolaridade from "./Escolaridade";
|
|
4
|
+
import Estado from "./Estado";
|
|
5
|
+
import EstadoCivil from "./EstadoCivil";
|
|
6
|
+
import Pais from "./Pais";
|
|
7
|
+
import Pessoa from "./Pessoa";
|
|
8
|
+
import PessoaConjugue from "./PessoaConjugue";
|
|
9
|
+
export { Cidade, Endereco, Escolaridade, Estado, EstadoCivil, Pais, Pessoa, PessoaConjugue, };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./caminho";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./caminho"), exports);
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "neocatecumenal",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Libs compartilhadas entre app do CNC",
|
|
5
|
-
"main": "index.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
6
7
|
"scripts": {
|
|
7
|
-
"
|
|
8
|
-
"
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"prepublishOnly": "npm run build"
|
|
9
10
|
},
|
|
10
11
|
"repository": {
|
|
11
12
|
"type": "git",
|
|
@@ -19,5 +20,8 @@
|
|
|
19
20
|
"bugs": {
|
|
20
21
|
"url": "https://github.com/leonardocintra/neocatecumenal/issues"
|
|
21
22
|
},
|
|
22
|
-
"homepage": "https://github.com/leonardocintra/neocatecumenal#readme"
|
|
23
|
+
"homepage": "https://github.com/leonardocintra/neocatecumenal#readme",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"typescript": "^5.8.2"
|
|
26
|
+
}
|
|
23
27
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import Endereco from "./Endereco";
|
|
2
|
+
import Escolaridade from "./Escolaridade";
|
|
3
|
+
import EstadoCivil from "./EstadoCivil";
|
|
4
|
+
|
|
5
|
+
export default interface Pessoa {
|
|
6
|
+
id: string;
|
|
7
|
+
nome: string;
|
|
8
|
+
conhecidoPor?: string;
|
|
9
|
+
cpf: string;
|
|
10
|
+
sexo: string;
|
|
11
|
+
nacionalidade: string;
|
|
12
|
+
dataNascimento: Date;
|
|
13
|
+
foto?: string;
|
|
14
|
+
ativo: boolean;
|
|
15
|
+
estadoCivil: EstadoCivil;
|
|
16
|
+
escolaridade: Escolaridade;
|
|
17
|
+
enderecos?: Endereco[];
|
|
18
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Cidade from "./Cidade";
|
|
2
|
+
import Endereco from "./Endereco";
|
|
3
|
+
import Escolaridade from "./Escolaridade";
|
|
4
|
+
import Estado from "./Estado";
|
|
5
|
+
import EstadoCivil from "./EstadoCivil";
|
|
6
|
+
import Pais from "./Pais";
|
|
7
|
+
import Pessoa from "./Pessoa";
|
|
8
|
+
import PessoaConjugue from "./PessoaConjugue";
|
|
9
|
+
|
|
10
|
+
export {
|
|
11
|
+
Cidade,
|
|
12
|
+
Endereco,
|
|
13
|
+
Escolaridade,
|
|
14
|
+
Estado,
|
|
15
|
+
EstadoCivil,
|
|
16
|
+
Pais,
|
|
17
|
+
Pessoa,
|
|
18
|
+
PessoaConjugue,
|
|
19
|
+
};
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./types/endereco";
|
|
3
|
-
export * from "./types/escolaridade";
|
|
4
|
-
export * from "./types/estado";
|
|
5
|
-
export * from "./types/estadoCivil";
|
|
6
|
-
export * from "./types/pais";
|
|
7
|
-
export * from "./types/pessoa";
|
|
1
|
+
export * from "./caminho";
|
package/tsconfig.json
ADDED
package/src/types/cidade.ts
DELETED
package/src/types/estado.ts
DELETED
package/src/types/estadoCivil.ts
DELETED
package/src/types/pais.ts
DELETED
package/src/types/pessoa.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Endereco } from "./endereco";
|
|
2
|
-
import { Escolaridade } from "./escolaridade";
|
|
3
|
-
import { EstadoCivil } from "./estadoCivil";
|
|
4
|
-
export interface Pessoa {
|
|
5
|
-
id: string;
|
|
6
|
-
nome: string;
|
|
7
|
-
conhecidoPor: string;
|
|
8
|
-
cpf: string;
|
|
9
|
-
sexo: string;
|
|
10
|
-
nacionalidade: string;
|
|
11
|
-
dataNascimento: Date;
|
|
12
|
-
foto: string;
|
|
13
|
-
ativo: boolean;
|
|
14
|
-
estadoCivil: EstadoCivil;
|
|
15
|
-
escolaridade: Escolaridade;
|
|
16
|
-
enderecos: Endereco[];
|
|
17
|
-
}
|