fiscalia_bo-nest-helpers 1.5.10 → 1.5.14
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/decorators/validator.decorators.js +3 -3
- package/dist/decorators/validator.decorators.js.map +1 -1
- package/dist/http-service/request.helper.js +3 -4
- package/dist/http-service/request.helper.js.map +1 -1
- package/dist/modules/ms-mailer/dto/ms-mailer.input.d.ts +7 -0
- package/dist/modules/ms-mailer/dto/ms-mailer.input.js +34 -1
- package/dist/modules/ms-mailer/dto/ms-mailer.input.js.map +1 -1
- package/dist/modules/ms-mailer/ms-mailer.service.d.ts +3 -1
- package/dist/modules/ms-mailer/ms-mailer.service.js +20 -0
- package/dist/modules/ms-mailer/ms-mailer.service.js.map +1 -1
- package/dist/modules/ms-oep/index.d.ts +3 -0
- package/dist/modules/ms-oep/index.js +9 -0
- package/dist/modules/ms-oep/index.js.map +1 -0
- package/dist/modules/ms-oep/ms-oep.module.d.ts +13 -0
- package/dist/modules/ms-oep/ms-oep.module.js +65 -0
- package/dist/modules/ms-oep/ms-oep.module.js.map +1 -0
- package/dist/modules/ms-oep/ms-oep.service.d.ts +17 -0
- package/dist/modules/ms-oep/ms-oep.service.js +108 -0
- package/dist/modules/ms-oep/ms-oep.service.js.map +1 -0
- package/dist/modules/ms-oep/types.d.ts +195 -0
- package/dist/modules/ms-oep/types.js +557 -0
- package/dist/modules/ms-oep/types.js.map +1 -0
- package/dist/modules/ms-seguridad/types/seguridad.pb.js +2 -2
- package/dist/modules/ms-seguridad/types/seguridad.pb.js.map +1 -1
- package/dist/modules/ms-seguridad-convenio/decorators/token.decorator.js +3 -3
- package/dist/modules/ms-seguridad-convenio/decorators/token.decorator.js.map +1 -1
- package/dist/modules/ms-telegram/dto/ms-telegram.input.d.ts +2 -2
- package/dist/modules/ms-telegram/dto/ms-telegram.input.js +3 -5
- package/dist/modules/ms-telegram/dto/ms-telegram.input.js.map +1 -1
- package/dist/modules/throttler-request/throttle.decorator.js +4 -4
- package/dist/modules/throttler-request/throttle.decorator.js.map +1 -1
- package/package.json +2 -1
@@ -0,0 +1,195 @@
|
|
1
|
+
export type BuscarCertificadoDefuncionResponse = {
|
2
|
+
data?: {
|
3
|
+
id: number;
|
4
|
+
estado: number;
|
5
|
+
oficialia: string;
|
6
|
+
libro: string;
|
7
|
+
partida: number;
|
8
|
+
departamentoInscripcion: string;
|
9
|
+
localidadInscripcion: string;
|
10
|
+
fechaPartidaInscripcion: string;
|
11
|
+
nombresDifunto: string;
|
12
|
+
paternoDifunto: string;
|
13
|
+
maternoDifunto: string;
|
14
|
+
tipoDocumentoDifunto: string;
|
15
|
+
nroDocumentoDifunto: string;
|
16
|
+
fechaFallecimiento: string;
|
17
|
+
departamentoFallecimiento: string;
|
18
|
+
localidadFallecimiento: string;
|
19
|
+
causaFallecimiento: string;
|
20
|
+
notaMarginalImprimible: string;
|
21
|
+
createdAt: Date;
|
22
|
+
updatedAt: Date;
|
23
|
+
creadorUsuarioId: null | number;
|
24
|
+
};
|
25
|
+
fecha?: string;
|
26
|
+
codigo?: number;
|
27
|
+
correcto?: boolean;
|
28
|
+
estado?: string;
|
29
|
+
notificacion?: string;
|
30
|
+
};
|
31
|
+
export type BuscarCertificadoNacimientoResponse = {
|
32
|
+
data?: {
|
33
|
+
id: number;
|
34
|
+
estado: number;
|
35
|
+
oficialia: string;
|
36
|
+
libro: string;
|
37
|
+
partida: string;
|
38
|
+
departamentoInscripcion: string;
|
39
|
+
localidadInscripcion: string;
|
40
|
+
fechaPartidaInscripcion: string;
|
41
|
+
nombres: string;
|
42
|
+
paterno: string;
|
43
|
+
materno: string;
|
44
|
+
localidadNacimiento: string;
|
45
|
+
fechaNacimiento: string;
|
46
|
+
genero: string;
|
47
|
+
nombresPadre: string;
|
48
|
+
paternoPadre: string;
|
49
|
+
maternoPadre: string;
|
50
|
+
nombresMadre: string;
|
51
|
+
paternoMadre: string;
|
52
|
+
maternoMadre: string;
|
53
|
+
createdAt: Date;
|
54
|
+
updatedAt: Date;
|
55
|
+
creadorUsuarioId: null | number;
|
56
|
+
};
|
57
|
+
fecha?: string;
|
58
|
+
codigo?: number;
|
59
|
+
correcto?: boolean;
|
60
|
+
estado?: string;
|
61
|
+
notificacion?: string;
|
62
|
+
};
|
63
|
+
export type BuscarCertificadoMatrimonioResponse = {
|
64
|
+
data?: {
|
65
|
+
id: number;
|
66
|
+
estado: number;
|
67
|
+
oficialia: string;
|
68
|
+
libro: string;
|
69
|
+
partida: string;
|
70
|
+
departamentoInscripcion: string;
|
71
|
+
localidadInscripcion: string;
|
72
|
+
fechaPartidaInscripcion: string;
|
73
|
+
fechaDivorcio: string;
|
74
|
+
fechaAnulacion: string;
|
75
|
+
nroJuzgadoAnulacion: string;
|
76
|
+
nombresEsposo: string;
|
77
|
+
paternoEsposo: string;
|
78
|
+
maternoEsposo: string;
|
79
|
+
tipoDocumentoEsposo: string;
|
80
|
+
nroDocumentoEsposo: string;
|
81
|
+
fechaNacimientoEsposo: string;
|
82
|
+
nombresEsposa: string;
|
83
|
+
paternoEsposa: string;
|
84
|
+
maternoEsposa: string;
|
85
|
+
tipoDocumentoEsposa: string;
|
86
|
+
nroDocumentoEsposa: string;
|
87
|
+
fechaNacimientoEsposa: string;
|
88
|
+
notaMarginalImprimible: string;
|
89
|
+
createdAt: Date;
|
90
|
+
updatedAt: Date;
|
91
|
+
creadorUsuarioId: null | number;
|
92
|
+
};
|
93
|
+
fecha?: string;
|
94
|
+
codigo?: number;
|
95
|
+
correcto?: boolean;
|
96
|
+
estado?: string;
|
97
|
+
notificacion?: string;
|
98
|
+
};
|
99
|
+
export type BuscarPadronElectoralResponse = {
|
100
|
+
data?: {
|
101
|
+
id: number;
|
102
|
+
estado: number;
|
103
|
+
fechaRegistro: string;
|
104
|
+
nombres: string;
|
105
|
+
primerApellido: string;
|
106
|
+
segundoApellido: string;
|
107
|
+
apellidoEsposo: string;
|
108
|
+
fechaNacimiento: string;
|
109
|
+
tipoDocumento: string;
|
110
|
+
numeroDocumento: string;
|
111
|
+
paisElectoral: string;
|
112
|
+
departamentoElectoral: string;
|
113
|
+
localidadElectoral: string;
|
114
|
+
recintoElectoral: string;
|
115
|
+
zonaElectoral: string;
|
116
|
+
asientoVotacion: string;
|
117
|
+
domicilioElectoral: string;
|
118
|
+
fechaActualizacionPadron: string;
|
119
|
+
createdAt: Date;
|
120
|
+
updatedAt: Date;
|
121
|
+
creadorUsuarioId: null | number;
|
122
|
+
};
|
123
|
+
fecha?: string;
|
124
|
+
codigo?: number;
|
125
|
+
correcto?: boolean;
|
126
|
+
estado?: string;
|
127
|
+
notificacion?: string;
|
128
|
+
};
|
129
|
+
export declare class BuscarCertificadoDto {
|
130
|
+
evento?: string;
|
131
|
+
usuario?: string;
|
132
|
+
contrasenia?: string;
|
133
|
+
usuarioNumeroDocumento: string;
|
134
|
+
usuarioComplementoDocumento?: string;
|
135
|
+
ip?: string;
|
136
|
+
nombres: string;
|
137
|
+
apellidoPaterno?: string;
|
138
|
+
apellidoMaterno?: string;
|
139
|
+
}
|
140
|
+
export declare class VerificarCertificadoDto {
|
141
|
+
evento?: string;
|
142
|
+
usuario?: string;
|
143
|
+
contrasenia?: string;
|
144
|
+
usuarioNumeroDocumento: string;
|
145
|
+
usuarioComplementoDocumento?: string;
|
146
|
+
ip?: string;
|
147
|
+
oficialia: string;
|
148
|
+
libro: string;
|
149
|
+
partida: string;
|
150
|
+
}
|
151
|
+
export declare class BuscarCertificadoDefuncionDto extends BuscarCertificadoDto {
|
152
|
+
numeroDocumentoDifunto: string;
|
153
|
+
complemento?: string;
|
154
|
+
}
|
155
|
+
export declare class VerificarCerfificadoDefuncionDto extends VerificarCertificadoDto {
|
156
|
+
nombres: string;
|
157
|
+
apellidoPaterno?: string;
|
158
|
+
apellidoMaterno?: string;
|
159
|
+
fechaFallecimiento?: string;
|
160
|
+
numeroDocumentoDifunto?: string;
|
161
|
+
complemento?: string;
|
162
|
+
}
|
163
|
+
export declare class BuscarCertificadoMatrimonioDto extends BuscarCertificadoDto {
|
164
|
+
busqueda: string;
|
165
|
+
numeroDocumentoEsposo?: string;
|
166
|
+
numeroDocumentoEsposa?: string;
|
167
|
+
}
|
168
|
+
export declare class VerificarCerfificadoMatrimonioDto extends VerificarCertificadoDto {
|
169
|
+
busqueda: string;
|
170
|
+
numeroDocumentoEsposo?: string;
|
171
|
+
numeroDocumentoEsposa?: string;
|
172
|
+
}
|
173
|
+
export declare class BuscarCertificadoNacimientoDto extends BuscarCertificadoDto {
|
174
|
+
fechaNacimiento: string;
|
175
|
+
}
|
176
|
+
export declare class VerificarCerfificadoNacimientoDto extends VerificarCertificadoDto {
|
177
|
+
nombres: string;
|
178
|
+
apellidoPaterno?: string;
|
179
|
+
apellidoMaterno?: string;
|
180
|
+
fechaNacimiento: string;
|
181
|
+
}
|
182
|
+
declare const BuscarPadronElectoralDto_base: import("@nestjs/common").Type<Omit<BuscarCertificadoDto, "evento">>;
|
183
|
+
export declare class BuscarPadronElectoralDto extends BuscarPadronElectoralDto_base {
|
184
|
+
consulta?: string;
|
185
|
+
numeroDocumento: string;
|
186
|
+
fechaNacimiento: string;
|
187
|
+
}
|
188
|
+
declare const VerificarPadronElectoralDto_base: import("@nestjs/common").Type<Omit<BuscarCertificadoDto, "evento">>;
|
189
|
+
export declare class VerificarPadronElectoralDto extends VerificarPadronElectoralDto_base {
|
190
|
+
consulta?: string;
|
191
|
+
usuarioNumeroDocumento: string;
|
192
|
+
tipoDocumento?: string;
|
193
|
+
fechaNacimiento: string;
|
194
|
+
}
|
195
|
+
export {};
|