@win2win/shared 1.0.227 → 1.0.229

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.
@@ -21,7 +21,7 @@ export interface LandingRaw {
21
21
  CUESTIONARIOS?: CuestionarioRaw[];
22
22
  ESTILOS?: LandingStylesRaw[];
23
23
  MAILS?: MailRaw[];
24
- REEGIONES?: Partial<RegionRaw>[];
24
+ REGIONES?: Partial<RegionRaw>[];
25
25
  }
26
26
  export interface LandingFooter {
27
27
  show: boolean;
@@ -188,6 +188,18 @@ export interface MailRaw {
188
188
  CODIGO: string;
189
189
  PARAMS_REQUERIDOS: string;
190
190
  }
191
+ export interface PaisesRaw {
192
+ ID_PAIS: number;
193
+ CODIGO: string;
194
+ NOMBRE: string;
195
+ ID_DIVISA: number;
196
+ NUM_USU: number;
197
+ ESTADO: number;
198
+ TITULO_ZONA: string;
199
+ COD_TEL: string;
200
+ FECHA_UPD: Date;
201
+ FECHA_CREATED: Date;
202
+ }
191
203
  export interface RegionRaw {
192
204
  ID_REGION: Id;
193
205
  COD_EMP_MVX: number;
@@ -196,5 +208,6 @@ export interface RegionRaw {
196
208
  ID_DIVISA: Id;
197
209
  ESTADO: number;
198
210
  FECHA_UPD: string;
211
+ PAIS: PaisesRaw;
199
212
  }
200
213
  export type Style = Partial<CSSStyleDeclaration>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.227",
3
+ "version": "1.0.229",
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",
package/README.md DELETED
@@ -1,11 +0,0 @@
1
- # README #
2
- version 1.0.1
3
-
4
- ### Como hacer deploy del repo
5
-
6
- * Correr el comando
7
- `npm run deploy`
8
-
9
- * [Enlace al repo](https://www.npmjs.com/package/@win2win/shared)
10
-
11
-