@win2win/shared 1.0.188 → 1.0.190

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.
@@ -14,6 +14,7 @@ export interface LandingRaw {
14
14
  ESTILOS: LandingStylesRaw[];
15
15
  METADATA?: Partial<LandingMetadata> | null;
16
16
  PAGINAS?: LandingPageRaw[];
17
+ MAILS: MailRaw[];
17
18
  }
18
19
  export interface LandingParams {
19
20
  logo?: string;
@@ -64,6 +65,7 @@ export interface LandingStylesRaw {
64
65
  export interface CuestionarioRaw {
65
66
  ID_CUESTIONARIO: Id;
66
67
  ID_LANDING: Id;
68
+ ID_GAMA?: Id;
67
69
  NOMBRE: string;
68
70
  ORDEN: number;
69
71
  FORMATO: "slider" | "grilla";
@@ -133,3 +135,13 @@ export interface LandingSectionRaw {
133
135
  ESTADO: number;
134
136
  FECHA_UPD: Date;
135
137
  }
138
+ export interface MailRaw {
139
+ ID_MAIL: Id;
140
+ ID_LANDING: Id;
141
+ COD_EMP_MVX: number;
142
+ TITULO: string;
143
+ ASUNTO: string;
144
+ EMAIL: string;
145
+ CODIGO: string;
146
+ PARAMS_REQUERIDOS: string;
147
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.188",
3
+ "version": "1.0.190",
4
4
  "description": "Tipos, interfaces, funciones, constantes, clases y enums compartidos por todos los proyectos de Win2Win",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",