sigo-entities 1.2.91 → 1.2.92

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/index.d.mts CHANGED
@@ -709,7 +709,6 @@ declare enum StateInventory {
709
709
 
710
710
  declare enum StateInternalOrder {
711
711
  PENDIENTE = "Pendiente",
712
- REVISION = "Revisi\u00F3n",
713
712
  FINALIZADA = "Finalizada"
714
713
  }
715
714
 
@@ -6425,6 +6424,7 @@ declare class MaterialeswinDTO {
6425
6424
  cantidad: number;
6426
6425
  invsn: string;
6427
6426
  invpool: string;
6427
+ ID_StockPersonal: number;
6428
6428
  }
6429
6429
  declare class HistorialEstadoswinDTO {
6430
6430
  estado: string;
package/dist/index.d.ts CHANGED
@@ -709,7 +709,6 @@ declare enum StateInventory {
709
709
 
710
710
  declare enum StateInternalOrder {
711
711
  PENDIENTE = "Pendiente",
712
- REVISION = "Revisi\u00F3n",
713
712
  FINALIZADA = "Finalizada"
714
713
  }
715
714
 
@@ -6425,6 +6424,7 @@ declare class MaterialeswinDTO {
6425
6424
  cantidad: number;
6426
6425
  invsn: string;
6427
6426
  invpool: string;
6427
+ ID_StockPersonal: number;
6428
6428
  }
6429
6429
  declare class HistorialEstadoswinDTO {
6430
6430
  estado: string;
package/dist/index.js CHANGED
@@ -3968,7 +3968,6 @@ var StateInventory = /* @__PURE__ */ ((StateInventory2) => {
3968
3968
  // src/shared/enums/StateInternalOrder.ts
3969
3969
  var StateInternalOrder = /* @__PURE__ */ ((StateInternalOrder2) => {
3970
3970
  StateInternalOrder2["PENDIENTE"] = "Pendiente";
3971
- StateInternalOrder2["REVISION"] = "Revisi\xF3n";
3972
3971
  StateInternalOrder2["FINALIZADA"] = "Finalizada";
3973
3972
  return StateInternalOrder2;
3974
3973
  })(StateInternalOrder || {});
@@ -34159,6 +34158,7 @@ var MaterialeswinDTO = class {
34159
34158
  cantidad = 0;
34160
34159
  invsn = "";
34161
34160
  invpool = "";
34161
+ ID_StockPersonal = 0;
34162
34162
  };
34163
34163
  __decorateClass([
34164
34164
  (0, import_class_transformer556.Expose)({ name: "code" }),
@@ -34185,6 +34185,11 @@ __decorateClass([
34185
34185
  (0, import_class_validator557.IsDefined)({ message: "El campo invpool es obligatorio." }),
34186
34186
  (0, import_class_validator557.IsString)()
34187
34187
  ], MaterialeswinDTO.prototype, "invpool", 2);
34188
+ __decorateClass([
34189
+ (0, import_class_transformer556.Expose)({ name: "ID_StockPersonal" }),
34190
+ (0, import_class_validator557.IsDefined)({ message: "El campo ID_StockPersonal es obligatorio." }),
34191
+ (0, import_class_validator557.IsNumber)()
34192
+ ], MaterialeswinDTO.prototype, "ID_StockPersonal", 2);
34188
34193
  var HistorialEstadoswinDTO = class {
34189
34194
  estado = "";
34190
34195
  usuario = "";
package/dist/index.mjs CHANGED
@@ -3383,7 +3383,6 @@ var StateInventory = /* @__PURE__ */ ((StateInventory2) => {
3383
3383
  // src/shared/enums/StateInternalOrder.ts
3384
3384
  var StateInternalOrder = /* @__PURE__ */ ((StateInternalOrder2) => {
3385
3385
  StateInternalOrder2["PENDIENTE"] = "Pendiente";
3386
- StateInternalOrder2["REVISION"] = "Revisi\xF3n";
3387
3386
  StateInternalOrder2["FINALIZADA"] = "Finalizada";
3388
3387
  return StateInternalOrder2;
3389
3388
  })(StateInternalOrder || {});
@@ -33767,6 +33766,7 @@ var MaterialeswinDTO = class {
33767
33766
  cantidad = 0;
33768
33767
  invsn = "";
33769
33768
  invpool = "";
33769
+ ID_StockPersonal = 0;
33770
33770
  };
33771
33771
  __decorateClass([
33772
33772
  Expose554({ name: "code" }),
@@ -33793,6 +33793,11 @@ __decorateClass([
33793
33793
  IsDefined161({ message: "El campo invpool es obligatorio." }),
33794
33794
  IsString449()
33795
33795
  ], MaterialeswinDTO.prototype, "invpool", 2);
33796
+ __decorateClass([
33797
+ Expose554({ name: "ID_StockPersonal" }),
33798
+ IsDefined161({ message: "El campo ID_StockPersonal es obligatorio." }),
33799
+ IsNumber365()
33800
+ ], MaterialeswinDTO.prototype, "ID_StockPersonal", 2);
33796
33801
  var HistorialEstadoswinDTO = class {
33797
33802
  estado = "";
33798
33803
  usuario = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigo-entities",
3
- "version": "1.2.91",
3
+ "version": "1.2.92",
4
4
  "description": "Desarrollo de modelos de datos SIGO",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",