sigo-entities 0.0.54 → 0.0.55

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
@@ -71,6 +71,7 @@ declare class EquipoLogisticaDTO {
71
71
  Posicion: number;
72
72
  Collection: string;
73
73
  NroDocumento: string;
74
+ Orden: string;
74
75
  NroContable: string;
75
76
  Serie: string;
76
77
  MAC: string;
package/dist/index.d.ts CHANGED
@@ -71,6 +71,7 @@ declare class EquipoLogisticaDTO {
71
71
  Posicion: number;
72
72
  Collection: string;
73
73
  NroDocumento: string;
74
+ Orden: string;
74
75
  NroContable: string;
75
76
  Serie: string;
76
77
  MAC: string;
package/dist/index.js CHANGED
@@ -458,6 +458,7 @@ var EquipoLogisticaDTO = class {
458
458
  Posicion = 0;
459
459
  Collection = "";
460
460
  NroDocumento = "";
461
+ Orden = "";
461
462
  NroContable = "";
462
463
  Serie = "";
463
464
  MAC = "";
@@ -484,6 +485,11 @@ __decorateClass([
484
485
  (0, import_class_validator13.Length)(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
485
486
  (0, import_class_transformer13.Expose)()
486
487
  ], EquipoLogisticaDTO.prototype, "NroDocumento", 2);
488
+ __decorateClass([
489
+ (0, import_class_validator13.IsString)({ message: "debe ser un texto" }),
490
+ (0, import_class_validator13.Length)(0, 100, { message: "debe tener entre 0 y 100 caracteres" }),
491
+ (0, import_class_transformer13.Expose)()
492
+ ], EquipoLogisticaDTO.prototype, "Orden", 2);
487
493
  __decorateClass([
488
494
  (0, import_class_validator13.IsString)({ message: "debe ser un texto" }),
489
495
  (0, import_class_validator13.Length)(0, 70, { message: "debe tener entre 0 y 70 caracteres" }),
package/dist/index.mjs CHANGED
@@ -348,6 +348,7 @@ var EquipoLogisticaDTO = class {
348
348
  Posicion = 0;
349
349
  Collection = "";
350
350
  NroDocumento = "";
351
+ Orden = "";
351
352
  NroContable = "";
352
353
  Serie = "";
353
354
  MAC = "";
@@ -374,6 +375,11 @@ __decorateClass([
374
375
  Length11(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
375
376
  Expose12()
376
377
  ], EquipoLogisticaDTO.prototype, "NroDocumento", 2);
378
+ __decorateClass([
379
+ IsString11({ message: "debe ser un texto" }),
380
+ Length11(0, 100, { message: "debe tener entre 0 y 100 caracteres" }),
381
+ Expose12()
382
+ ], EquipoLogisticaDTO.prototype, "Orden", 2);
377
383
  __decorateClass([
378
384
  IsString11({ message: "debe ser un texto" }),
379
385
  Length11(0, 70, { message: "debe tener entre 0 y 70 caracteres" }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sigo-entities",
3
- "version": "0.0.54",
3
+ "version": "0.0.55",
4
4
  "description": "Desarrollo de modelos de datos SIGO",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",