fiscalia_bo-nest-helpers 0.2.35 → 0.2.36
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/ms-agetic/types.d.ts +20 -18
- package/package.json +1 -1
@@ -7,26 +7,28 @@ export declare class AgeticVerifyDocumentsDto extends EnviromentDto {
|
|
7
7
|
export declare class AgeticVerifyCDigitalDto extends EnviromentDto {
|
8
8
|
ci: string;
|
9
9
|
}
|
10
|
+
export type AgeticAprovationsData = {
|
11
|
+
fechaSolicitud: string;
|
12
|
+
nombres: string;
|
13
|
+
primer_apellido: string;
|
14
|
+
segundo_apellido: string;
|
15
|
+
descripcion: string;
|
16
|
+
timestamp: string;
|
17
|
+
ci: string;
|
18
|
+
clientId: string;
|
19
|
+
};
|
20
|
+
export type AgeticVerificationData = {
|
21
|
+
verificacionCorrecta: boolean;
|
22
|
+
mensajeInfo: string;
|
23
|
+
multiple: boolean;
|
24
|
+
mensajeExito: string;
|
25
|
+
error: string;
|
26
|
+
registros: AgeticAprovationsData[];
|
27
|
+
mensajeAdicional: string;
|
28
|
+
};
|
10
29
|
export type AgeticDocsAprobadosResponse = {
|
11
30
|
documentId: string;
|
12
|
-
verification:
|
13
|
-
verificacionCorrecta: boolean;
|
14
|
-
mensajeInfo: string;
|
15
|
-
multiple: boolean;
|
16
|
-
mensajeExito: string;
|
17
|
-
error: string;
|
18
|
-
registros: {
|
19
|
-
fechaSolicitud: string;
|
20
|
-
nombres: string;
|
21
|
-
primer_apellido: string;
|
22
|
-
segundo_apellido: string;
|
23
|
-
descripcion: string;
|
24
|
-
timestamp: string;
|
25
|
-
ci: string;
|
26
|
-
clientId: string;
|
27
|
-
}[];
|
28
|
-
mensajeAdicional: string;
|
29
|
-
};
|
31
|
+
verification: AgeticVerificationData;
|
30
32
|
}[];
|
31
33
|
export type AgeticCiudadanoDigitalResponse = {
|
32
34
|
finalizado: boolean;
|