@win2win/shared 1.0.23 → 1.0.25

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.
@@ -10,3 +10,7 @@ export declare enum EstadoLiquidacionReclamo {
10
10
  APROBADO = 2,
11
11
  NEGADO = 3
12
12
  }
13
+ export declare enum TipoLiquidacionReclamo {
14
+ ITEM = 1,
15
+ COBRO = 2
16
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EstadoLiquidacionReclamo = exports.EstadoLiquidacion = void 0;
3
+ exports.TipoLiquidacionReclamo = exports.EstadoLiquidacionReclamo = exports.EstadoLiquidacion = void 0;
4
4
  var EstadoLiquidacion;
5
5
  (function (EstadoLiquidacion) {
6
6
  EstadoLiquidacion[EstadoLiquidacion["EN_PREVISION"] = 1] = "EN_PREVISION";
@@ -15,3 +15,8 @@ var EstadoLiquidacionReclamo;
15
15
  EstadoLiquidacionReclamo[EstadoLiquidacionReclamo["APROBADO"] = 2] = "APROBADO";
16
16
  EstadoLiquidacionReclamo[EstadoLiquidacionReclamo["NEGADO"] = 3] = "NEGADO";
17
17
  })(EstadoLiquidacionReclamo || (exports.EstadoLiquidacionReclamo = EstadoLiquidacionReclamo = {}));
18
+ var TipoLiquidacionReclamo;
19
+ (function (TipoLiquidacionReclamo) {
20
+ TipoLiquidacionReclamo[TipoLiquidacionReclamo["ITEM"] = 1] = "ITEM";
21
+ TipoLiquidacionReclamo[TipoLiquidacionReclamo["COBRO"] = 2] = "COBRO";
22
+ })(TipoLiquidacionReclamo || (exports.TipoLiquidacionReclamo = TipoLiquidacionReclamo = {}));
@@ -6,7 +6,7 @@ interface ItemLiquidable {
6
6
  ESTADO: string;
7
7
  pedido: ItemLiquidablePedido;
8
8
  gerente: ItemLiquidableUsuarioLite;
9
- jefe_delefacion: ItemLiquidableUsuarioLite;
9
+ organizador: ItemLiquidableUsuarioLite;
10
10
  situacion: {
11
11
  ID_SITUACION: number;
12
12
  NOMBRE: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",