sigo-entities 0.0.202 → 0.0.203
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -1
- package/dist/index.mjs +24 -19
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -8912,7 +8912,6 @@ __decorateClass([
|
|
|
8912
8912
|
__decorateClass([
|
|
8913
8913
|
(0, import_class_validator154.IsBoolean)({ message: "debe ser true o false" }),
|
|
8914
8914
|
(0, import_class_validator154.IsNotEmpty)({ message: "es requerido" }),
|
|
8915
|
-
(0, import_class_validator154.Length)(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
8916
8915
|
(0, import_class_transformer154.Expose)()
|
|
8917
8916
|
], EmpresaDTO4.prototype, "Propia", 2);
|
|
8918
8917
|
|
|
@@ -9267,6 +9266,7 @@ var BaremosColombiaENTITY = class {
|
|
|
9267
9266
|
FechaDocumento = /* @__PURE__ */ new Date(0);
|
|
9268
9267
|
CambiosEstadosFase = [];
|
|
9269
9268
|
PagosEC = [];
|
|
9269
|
+
Cancelado = false;
|
|
9270
9270
|
};
|
|
9271
9271
|
__decorateClass([
|
|
9272
9272
|
(0, import_class_transformer161.Expose)(),
|
|
@@ -9442,6 +9442,11 @@ __decorateClass([
|
|
|
9442
9442
|
(0, import_class_transformer161.Expose)(),
|
|
9443
9443
|
(0, import_class_validator161.ValidateNested)({ each: true })
|
|
9444
9444
|
], BaremosColombiaENTITY.prototype, "PagosEC", 2);
|
|
9445
|
+
__decorateClass([
|
|
9446
|
+
(0, import_class_validator161.IsBoolean)({ message: "debe ser true o false" }),
|
|
9447
|
+
(0, import_class_validator161.IsNotEmpty)({ message: "es requerido" }),
|
|
9448
|
+
(0, import_class_transformer161.Expose)()
|
|
9449
|
+
], BaremosColombiaENTITY.prototype, "Cancelado", 2);
|
|
9445
9450
|
|
|
9446
9451
|
// src/programados/Reportes/LiberacionDePagos/shared/index.ts
|
|
9447
9452
|
var import_class_transformer170 = require("class-transformer");
|
package/dist/index.mjs
CHANGED
|
@@ -8579,7 +8579,7 @@ __decorateClass([
|
|
|
8579
8579
|
|
|
8580
8580
|
// src/programados/Reportes/ReporteProduccion/Colombia/Baremos/index.ts
|
|
8581
8581
|
import { Expose as Expose160, Type as Type112 } from "class-transformer";
|
|
8582
|
-
import { IsArray as IsArray68, IsDate as IsDate67, IsIn as IsIn24, IsNotEmpty as IsNotEmpty158, IsNumber as IsNumber116, IsOptional as IsOptional3, IsString as IsString136, Min as Min85, ValidateNested as ValidateNested101 } from "class-validator";
|
|
8582
|
+
import { IsArray as IsArray68, IsBoolean as IsBoolean24, IsDate as IsDate67, IsIn as IsIn24, IsNotEmpty as IsNotEmpty158, IsNumber as IsNumber116, IsOptional as IsOptional3, IsString as IsString136, Min as Min85, ValidateNested as ValidateNested101 } from "class-validator";
|
|
8583
8583
|
|
|
8584
8584
|
// src/programados/Reportes/ReporteProduccion/Colombia/Baremos/dto/cambios-estados-pagos-produccion-dto.ts
|
|
8585
8585
|
import { Expose as Expose151, Type as Type104 } from "class-transformer";
|
|
@@ -8671,7 +8671,6 @@ __decorateClass([
|
|
|
8671
8671
|
__decorateClass([
|
|
8672
8672
|
IsBoolean18({ message: "debe ser true o false" }),
|
|
8673
8673
|
IsNotEmpty151({ message: "es requerido" }),
|
|
8674
|
-
Length114(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
8675
8674
|
Expose153()
|
|
8676
8675
|
], EmpresaDTO4.prototype, "Propia", 2);
|
|
8677
8676
|
|
|
@@ -9026,6 +9025,7 @@ var BaremosColombiaENTITY = class {
|
|
|
9026
9025
|
FechaDocumento = /* @__PURE__ */ new Date(0);
|
|
9027
9026
|
CambiosEstadosFase = [];
|
|
9028
9027
|
PagosEC = [];
|
|
9028
|
+
Cancelado = false;
|
|
9029
9029
|
};
|
|
9030
9030
|
__decorateClass([
|
|
9031
9031
|
Expose160(),
|
|
@@ -9201,10 +9201,15 @@ __decorateClass([
|
|
|
9201
9201
|
Expose160(),
|
|
9202
9202
|
ValidateNested101({ each: true })
|
|
9203
9203
|
], BaremosColombiaENTITY.prototype, "PagosEC", 2);
|
|
9204
|
+
__decorateClass([
|
|
9205
|
+
IsBoolean24({ message: "debe ser true o false" }),
|
|
9206
|
+
IsNotEmpty158({ message: "es requerido" }),
|
|
9207
|
+
Expose160()
|
|
9208
|
+
], BaremosColombiaENTITY.prototype, "Cancelado", 2);
|
|
9204
9209
|
|
|
9205
9210
|
// src/programados/Reportes/LiberacionDePagos/shared/index.ts
|
|
9206
9211
|
import { Expose as Expose169, Type as Type121 } from "class-transformer";
|
|
9207
|
-
import { IsArray as IsArray77, IsBoolean as
|
|
9212
|
+
import { IsArray as IsArray77, IsBoolean as IsBoolean32, IsDate as IsDate76, IsIn as IsIn33, IsNotEmpty as IsNotEmpty167, IsNumber as IsNumber124, IsString as IsString145, Min as Min93, ValidateNested as ValidateNested110 } from "class-validator";
|
|
9208
9213
|
|
|
9209
9214
|
// src/programados/Reportes/LiberacionDePagos/shared/dto/periodo-liberacion-pagos-dto.ts
|
|
9210
9215
|
import { Expose as Expose161 } from "class-transformer";
|
|
@@ -9290,7 +9295,7 @@ __decorateClass([
|
|
|
9290
9295
|
|
|
9291
9296
|
// src/programados/Reportes/LiberacionDePagos/shared/dto/empresa-liberacion-pagos-dto.ts
|
|
9292
9297
|
import { Expose as Expose163 } from "class-transformer";
|
|
9293
|
-
import { IsBoolean as
|
|
9298
|
+
import { IsBoolean as IsBoolean27, IsNotEmpty as IsNotEmpty161, IsString as IsString139, Length as Length123 } from "class-validator";
|
|
9294
9299
|
var EmpresaLiberacionPagosDTO = class {
|
|
9295
9300
|
Codigo = "";
|
|
9296
9301
|
RazonSocial = "";
|
|
@@ -9309,14 +9314,14 @@ __decorateClass([
|
|
|
9309
9314
|
Expose163()
|
|
9310
9315
|
], EmpresaLiberacionPagosDTO.prototype, "RazonSocial", 2);
|
|
9311
9316
|
__decorateClass([
|
|
9312
|
-
|
|
9317
|
+
IsBoolean27({ message: "debe ser true o false" }),
|
|
9313
9318
|
IsNotEmpty161({ message: "es requerido" }),
|
|
9314
9319
|
Expose163()
|
|
9315
9320
|
], EmpresaLiberacionPagosDTO.prototype, "Propia", 2);
|
|
9316
9321
|
|
|
9317
9322
|
// src/programados/Reportes/LiberacionDePagos/shared/dto/manoobra-liberacion_pagos-dto.ts
|
|
9318
9323
|
import { Expose as Expose164 } from "class-transformer";
|
|
9319
|
-
import { IsBoolean as
|
|
9324
|
+
import { IsBoolean as IsBoolean28, IsNotEmpty as IsNotEmpty162, IsString as IsString140, Length as Length124 } from "class-validator";
|
|
9320
9325
|
var ManoObraLiberacionPagosDTO = class {
|
|
9321
9326
|
Codigo = "";
|
|
9322
9327
|
Nombre = "";
|
|
@@ -9335,7 +9340,7 @@ __decorateClass([
|
|
|
9335
9340
|
Expose164()
|
|
9336
9341
|
], ManoObraLiberacionPagosDTO.prototype, "Nombre", 2);
|
|
9337
9342
|
__decorateClass([
|
|
9338
|
-
|
|
9343
|
+
IsBoolean28({ message: "debe ser true o false" }),
|
|
9339
9344
|
IsNotEmpty162({ message: "es requerido" }),
|
|
9340
9345
|
Length124(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
|
9341
9346
|
Expose164()
|
|
@@ -9814,7 +9819,7 @@ __decorateClass([
|
|
|
9814
9819
|
Min93(1)
|
|
9815
9820
|
], LiberacionDePagosAlemaniaENTITY.prototype, "Decimales", 2);
|
|
9816
9821
|
__decorateClass([
|
|
9817
|
-
|
|
9822
|
+
IsBoolean32({ message: "debe ser true o false" }),
|
|
9818
9823
|
IsNotEmpty167({ message: "es requerido" }),
|
|
9819
9824
|
Expose169()
|
|
9820
9825
|
], LiberacionDePagosAlemaniaENTITY.prototype, "isContratista", 2);
|
|
@@ -11197,7 +11202,7 @@ import { IsArray as IsArray87, IsNotEmpty as IsNotEmpty184, IsNumber as IsNumber
|
|
|
11197
11202
|
|
|
11198
11203
|
// src/logistica/ingreso almacen/shared/dto/empresa-dto.ts
|
|
11199
11204
|
import { Expose as Expose185 } from "class-transformer";
|
|
11200
|
-
import { IsBoolean as
|
|
11205
|
+
import { IsBoolean as IsBoolean33, IsNotEmpty as IsNotEmpty181, IsString as IsString158, Length as Length140 } from "class-validator";
|
|
11201
11206
|
var EmpresaDTO5 = class {
|
|
11202
11207
|
Codigo = "";
|
|
11203
11208
|
RazonSocial = "";
|
|
@@ -11214,7 +11219,7 @@ __decorateClass([
|
|
|
11214
11219
|
Expose185()
|
|
11215
11220
|
], EmpresaDTO5.prototype, "RazonSocial", 2);
|
|
11216
11221
|
__decorateClass([
|
|
11217
|
-
|
|
11222
|
+
IsBoolean33({ message: "debe ser un booleano" }),
|
|
11218
11223
|
IsNotEmpty181({ message: "es requerido" }),
|
|
11219
11224
|
Expose185()
|
|
11220
11225
|
], EmpresaDTO5.prototype, "Propia", 2);
|
|
@@ -12161,7 +12166,7 @@ __decorateClass([
|
|
|
12161
12166
|
import { Expose as Expose205, Type as Type147 } from "class-transformer";
|
|
12162
12167
|
import {
|
|
12163
12168
|
IsArray as IsArray95,
|
|
12164
|
-
IsBoolean as
|
|
12169
|
+
IsBoolean as IsBoolean34,
|
|
12165
12170
|
IsDate as IsDate85,
|
|
12166
12171
|
IsNotEmpty as IsNotEmpty200,
|
|
12167
12172
|
IsNumber as IsNumber147,
|
|
@@ -12318,7 +12323,7 @@ __decorateClass([
|
|
|
12318
12323
|
ValidateNested136()
|
|
12319
12324
|
], PersonalENTITY.prototype, "Sincronizacion", 2);
|
|
12320
12325
|
__decorateClass([
|
|
12321
|
-
|
|
12326
|
+
IsBoolean34({ message: "debe ser un booleano" }),
|
|
12322
12327
|
IsNotEmpty200({ message: "es requerido" }),
|
|
12323
12328
|
Expose205()
|
|
12324
12329
|
], PersonalENTITY.prototype, "Administrativo", 2);
|
|
@@ -12592,7 +12597,7 @@ import { IsNotEmpty as IsNotEmpty206, IsNumber as IsNumber153, IsString as IsStr
|
|
|
12592
12597
|
|
|
12593
12598
|
// src/configuracion/empresa/shared/dto/tipo-miembro-grupo-empresa-dto.ts
|
|
12594
12599
|
import { Expose as Expose212 } from "class-transformer";
|
|
12595
|
-
import { IsBoolean as
|
|
12600
|
+
import { IsBoolean as IsBoolean35, IsNotEmpty as IsNotEmpty205, IsNumber as IsNumber152, IsString as IsString181, Length as Length161, Min as Min119 } from "class-validator";
|
|
12596
12601
|
var TipoMiembroGrupoEmpresaDTO = class {
|
|
12597
12602
|
ID_TipoMiembroGrupoEmpresa = 0;
|
|
12598
12603
|
Nombre = "";
|
|
@@ -12610,7 +12615,7 @@ __decorateClass([
|
|
|
12610
12615
|
Expose212()
|
|
12611
12616
|
], TipoMiembroGrupoEmpresaDTO.prototype, "Nombre", 2);
|
|
12612
12617
|
__decorateClass([
|
|
12613
|
-
|
|
12618
|
+
IsBoolean35({ message: "debe ser un booleano" }),
|
|
12614
12619
|
IsNotEmpty205({ message: "es requerido" }),
|
|
12615
12620
|
Expose212()
|
|
12616
12621
|
], TipoMiembroGrupoEmpresaDTO.prototype, "PermiteOtroGrupo", 2);
|
|
@@ -12724,7 +12729,7 @@ __decorateClass([
|
|
|
12724
12729
|
], TipoEmpresaDTO.prototype, "Nombre", 2);
|
|
12725
12730
|
|
|
12726
12731
|
// src/configuracion/empresa/shared/index.ts
|
|
12727
|
-
import { IsArray as IsArray100, IsBoolean as
|
|
12732
|
+
import { IsArray as IsArray100, IsBoolean as IsBoolean36, IsNotEmpty as IsNotEmpty209, IsNumber as IsNumber156, IsString as IsString185, Length as Length165, Min as Min123, ValidateNested as ValidateNested142 } from "class-validator";
|
|
12728
12733
|
var EmpresaENTITY = class {
|
|
12729
12734
|
ID_Empresa = 0;
|
|
12730
12735
|
Pais = new PaisStockPersonalDTO();
|
|
@@ -12804,7 +12809,7 @@ __decorateClass([
|
|
|
12804
12809
|
Expose216()
|
|
12805
12810
|
], EmpresaENTITY.prototype, "NombreComercial", 2);
|
|
12806
12811
|
__decorateClass([
|
|
12807
|
-
|
|
12812
|
+
IsBoolean36({ message: "debe ser un booleano" }),
|
|
12808
12813
|
IsNotEmpty209({ message: "es requerido" }),
|
|
12809
12814
|
Expose216()
|
|
12810
12815
|
], EmpresaENTITY.prototype, "Propia", 2);
|
|
@@ -13336,7 +13341,7 @@ __decorateClass([
|
|
|
13336
13341
|
|
|
13337
13342
|
// src/configuracion/usuarios/shared/index.ts
|
|
13338
13343
|
import { Expose as Expose228, Type as Type163 } from "class-transformer";
|
|
13339
|
-
import { IsArray as IsArray102, IsBoolean as
|
|
13344
|
+
import { IsArray as IsArray102, IsBoolean as IsBoolean37, IsNotEmpty as IsNotEmpty220, IsNumber as IsNumber164, IsString as IsString196, Length as Length176, Min as Min130, ValidateNested as ValidateNested146, IsEmail as IsEmail4, IsEnum as IsEnum3 } from "class-validator";
|
|
13340
13345
|
var UsuarioENTITY = class {
|
|
13341
13346
|
IdUsuario = 0;
|
|
13342
13347
|
User = "";
|
|
@@ -13510,12 +13515,12 @@ __decorateClass([
|
|
|
13510
13515
|
ValidateNested146({ each: true })
|
|
13511
13516
|
], UsuarioENTITY.prototype, "Bitacora", 2);
|
|
13512
13517
|
__decorateClass([
|
|
13513
|
-
|
|
13518
|
+
IsBoolean37({ message: "debe ser un booleano" }),
|
|
13514
13519
|
IsNotEmpty220({ message: "es requerido" }),
|
|
13515
13520
|
Expose228()
|
|
13516
13521
|
], UsuarioENTITY.prototype, "isCreate", 2);
|
|
13517
13522
|
__decorateClass([
|
|
13518
|
-
|
|
13523
|
+
IsBoolean37({ message: "debe ser un booleano" }),
|
|
13519
13524
|
IsNotEmpty220({ message: "es requerido" }),
|
|
13520
13525
|
Expose228()
|
|
13521
13526
|
], UsuarioENTITY.prototype, "SuperUsuario", 2);
|