@win2win/shared 1.0.230 → 1.0.233

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/README.md ADDED
@@ -0,0 +1,11 @@
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
+
@@ -2,5 +2,6 @@ export declare enum TipoGarantia {
2
2
  INMUEBLE = "Propiedad inmobiliaria",
3
3
  VEHICULO = "Veh\u00EDculo",
4
4
  AVAL_PERSONAL = "Aval personal",
5
+ BANCARIA = "Bancaria",
5
6
  OTROS = "Otros"
6
7
  }
@@ -6,5 +6,6 @@ var TipoGarantia;
6
6
  TipoGarantia["INMUEBLE"] = "Propiedad inmobiliaria";
7
7
  TipoGarantia["VEHICULO"] = "Veh\u00EDculo";
8
8
  TipoGarantia["AVAL_PERSONAL"] = "Aval personal";
9
+ TipoGarantia["BANCARIA"] = "Bancaria";
9
10
  TipoGarantia["OTROS"] = "Otros";
10
11
  })(TipoGarantia || (exports.TipoGarantia = TipoGarantia = {}));
@@ -1,7 +1,8 @@
1
1
  import { Estado } from "./estado";
2
2
  export declare enum EstadoEffectType {
3
3
  WRITE = "write",
4
- NOTIFY = "notify"
4
+ NOTIFY = "notify",
5
+ ASYNC_EFFECT = "async_effect"
5
6
  }
6
7
  export interface EstadoEffect {
7
8
  ID_ESTADO_EFFECT: string;
@@ -5,4 +5,5 @@ var EstadoEffectType;
5
5
  (function (EstadoEffectType) {
6
6
  EstadoEffectType["WRITE"] = "write";
7
7
  EstadoEffectType["NOTIFY"] = "notify";
8
+ EstadoEffectType["ASYNC_EFFECT"] = "async_effect";
8
9
  })(EstadoEffectType || (exports.EstadoEffectType = EstadoEffectType = {}));
@@ -1,6 +1,12 @@
1
1
  import { GamaPropControlCode } from "../props";
2
2
  import { GamaRaw } from "../raw_entities";
3
3
  import { Id, JsonObject } from "../shared";
4
+ export interface LandingRegionRaw {
5
+ ID_REGION: Id;
6
+ ID_LANDING: Id;
7
+ REGION: Partial<RegionRaw>;
8
+ LANDING: Partial<LandingRaw>;
9
+ }
4
10
  export interface LandingRaw {
5
11
  ID_LANDING: Id;
6
12
  TITULO: string;
@@ -18,6 +24,7 @@ export interface LandingRaw {
18
24
  FECHA_UPD?: string;
19
25
  GAMA?: GamaRaw[];
20
26
  PAGINAS?: LandingPageRaw[];
27
+ LANDING_REGIONES?: LandingRegionRaw[];
21
28
  CUESTIONARIOS?: CuestionarioRaw[];
22
29
  ESTILOS?: LandingStylesRaw[];
23
30
  MAILS?: MailRaw[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.230",
3
+ "version": "1.0.233",
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",