@win2win/shared 1.0.159 → 1.0.161
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/interfaces/raw_entities/captacion.d.ts +32 -0
- package/dist/interfaces/raw_entities/captacion.js +2 -0
- package/dist/interfaces/raw_entities/index.d.ts +4 -3
- package/dist/interfaces/raw_entities/index.js +1 -0
- package/dist/interfaces/shared/shared-types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EstadoCaptacion, TipoCaptacion } from "../../enums";
|
|
2
|
+
import { Id, JsonObject, Uuid } from "../shared";
|
|
3
|
+
export interface CaptacionRaw {
|
|
4
|
+
ID_CAPTACION: Id;
|
|
5
|
+
ID_PRODUCTO: Id | null;
|
|
6
|
+
ID_CONTACTO: Id | null;
|
|
7
|
+
ID_CAPTADOR: Id | null;
|
|
8
|
+
ID_ZONA: Id | null;
|
|
9
|
+
ID_SEGMENTO: Id | null;
|
|
10
|
+
ID_REGION: Id | null;
|
|
11
|
+
ID_ALMACEN: Id | null;
|
|
12
|
+
ID_RUTA: Id | null;
|
|
13
|
+
ID_DELEGACION: Id | null;
|
|
14
|
+
ID_LANDING: Id | null;
|
|
15
|
+
ID_VISITA: Id | null;
|
|
16
|
+
ID_DEVICE: Id | null;
|
|
17
|
+
ID_GAMA: Id | null;
|
|
18
|
+
ID_ESTADO: Uuid | null;
|
|
19
|
+
PROPS: JsonObject | null;
|
|
20
|
+
TIPO: TipoCaptacion;
|
|
21
|
+
COD_EMP_MVX: number;
|
|
22
|
+
COD_PROVEEDOR: string;
|
|
23
|
+
COD_CAPTACION: string;
|
|
24
|
+
CODIGO_EXTERNO: string;
|
|
25
|
+
UNI_ID_TPV: string | null;
|
|
26
|
+
FECHA_CAPTADO: Date;
|
|
27
|
+
ESTADO: EstadoCaptacion;
|
|
28
|
+
INCIDENCIA: number;
|
|
29
|
+
PUBLIC_TOKEN: string;
|
|
30
|
+
DESCRIPCION_GENERAL: string | null;
|
|
31
|
+
FECHA_UPD: Date | string;
|
|
32
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
1
|
+
export * from "./archivo";
|
|
2
|
+
export * from "./captacion";
|
|
3
|
+
export * from "./gama";
|
|
4
|
+
export * from "./producto";
|
|
@@ -15,5 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./archivo"), exports);
|
|
18
|
+
__exportStar(require("./captacion"), exports);
|
|
18
19
|
__exportStar(require("./gama"), exports);
|
|
19
20
|
__exportStar(require("./producto"), exports);
|
|
@@ -4,5 +4,5 @@ export type Prettify<T> = {
|
|
|
4
4
|
} & {};
|
|
5
5
|
export type JsonObject = Record<string, any>;
|
|
6
6
|
export type StringKeys<T> = Extract<keyof T, string>;
|
|
7
|
-
export type UppercasedKeys<T
|
|
8
|
-
export type LowercasedKeys<T
|
|
7
|
+
export type UppercasedKeys<T> = Record<Uppercase<StringKeys<T>>, T[StringKeys<T>]>;
|
|
8
|
+
export type LowercasedKeys<T> = Record<Lowercase<StringKeys<T>>, T[StringKeys<T>]>;
|
package/package.json
CHANGED