sigo-entities 0.0.48 → 0.0.50
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 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -681,7 +681,6 @@ declare class EquiposDTO {
|
|
|
681
681
|
Collection: string;
|
|
682
682
|
NroContable: string;
|
|
683
683
|
NroDocumento: string;
|
|
684
|
-
Orden: string;
|
|
685
684
|
Serie: string;
|
|
686
685
|
MAC: string;
|
|
687
686
|
Marca: string;
|
|
@@ -693,6 +692,7 @@ declare class EquiposDTO {
|
|
|
693
692
|
declare class StockPersonalEquiposENTITY {
|
|
694
693
|
ID_StockPersonalEquipos: number;
|
|
695
694
|
ID_StockPersonal: number;
|
|
695
|
+
Identificacion: string;
|
|
696
696
|
CodigoLlave: string;
|
|
697
697
|
CodigoBusqueda: string;
|
|
698
698
|
Equipos: EquiposDTO[];
|
package/dist/index.d.ts
CHANGED
|
@@ -681,7 +681,6 @@ declare class EquiposDTO {
|
|
|
681
681
|
Collection: string;
|
|
682
682
|
NroContable: string;
|
|
683
683
|
NroDocumento: string;
|
|
684
|
-
Orden: string;
|
|
685
684
|
Serie: string;
|
|
686
685
|
MAC: string;
|
|
687
686
|
Marca: string;
|
|
@@ -693,6 +692,7 @@ declare class EquiposDTO {
|
|
|
693
692
|
declare class StockPersonalEquiposENTITY {
|
|
694
693
|
ID_StockPersonalEquipos: number;
|
|
695
694
|
ID_StockPersonal: number;
|
|
695
|
+
Identificacion: string;
|
|
696
696
|
CodigoLlave: string;
|
|
697
697
|
CodigoBusqueda: string;
|
|
698
698
|
Equipos: EquiposDTO[];
|
package/dist/index.js
CHANGED
|
@@ -3245,7 +3245,6 @@ var EquiposDTO = class {
|
|
|
3245
3245
|
Collection = "";
|
|
3246
3246
|
NroContable = "";
|
|
3247
3247
|
NroDocumento = "";
|
|
3248
|
-
Orden = "";
|
|
3249
3248
|
Serie = "";
|
|
3250
3249
|
MAC = "";
|
|
3251
3250
|
Marca = "";
|
|
@@ -3267,8 +3266,7 @@ __decorateClass([
|
|
|
3267
3266
|
], EquiposDTO.prototype, "Posicion", 2);
|
|
3268
3267
|
__decorateClass([
|
|
3269
3268
|
(0, import_class_validator63.IsString)({ message: "debe ser un texto" }),
|
|
3270
|
-
(0, import_class_validator63.
|
|
3271
|
-
(0, import_class_validator63.Length)(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3269
|
+
(0, import_class_validator63.Length)(0, 70, { message: "debe tener entre 0 y 150 caracteres" }),
|
|
3272
3270
|
(0, import_class_transformer63.Expose)()
|
|
3273
3271
|
], EquiposDTO.prototype, "Collection", 2);
|
|
3274
3272
|
__decorateClass([
|
|
@@ -3282,11 +3280,6 @@ __decorateClass([
|
|
|
3282
3280
|
(0, import_class_validator63.Length)(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3283
3281
|
(0, import_class_transformer63.Expose)()
|
|
3284
3282
|
], EquiposDTO.prototype, "NroDocumento", 2);
|
|
3285
|
-
__decorateClass([
|
|
3286
|
-
(0, import_class_validator63.IsString)({ message: "debe ser un texto" }),
|
|
3287
|
-
(0, import_class_validator63.Length)(0, 70, { message: "debe tener entre 0 y 70 caracteres" }),
|
|
3288
|
-
(0, import_class_transformer63.Expose)()
|
|
3289
|
-
], EquiposDTO.prototype, "Orden", 2);
|
|
3290
3283
|
__decorateClass([
|
|
3291
3284
|
(0, import_class_validator63.IsString)({ message: "debe ser un texto" }),
|
|
3292
3285
|
(0, import_class_validator63.Length)(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|
|
@@ -3325,6 +3318,7 @@ var import_class_validator64 = require("class-validator");
|
|
|
3325
3318
|
var StockPersonalEquiposENTITY = class {
|
|
3326
3319
|
ID_StockPersonalEquipos = 0;
|
|
3327
3320
|
ID_StockPersonal = 0;
|
|
3321
|
+
Identificacion = "";
|
|
3328
3322
|
CodigoLlave = "";
|
|
3329
3323
|
CodigoBusqueda = "";
|
|
3330
3324
|
Equipos = [];
|
|
@@ -3341,6 +3335,12 @@ __decorateClass([
|
|
|
3341
3335
|
(0, import_class_validator64.IsNotEmpty)({ message: "es requerido" }),
|
|
3342
3336
|
(0, import_class_validator64.Min)(0, { message: "el valor m\xEDnimo es 0" })
|
|
3343
3337
|
], StockPersonalEquiposENTITY.prototype, "ID_StockPersonal", 2);
|
|
3338
|
+
__decorateClass([
|
|
3339
|
+
(0, import_class_validator64.IsString)({ message: "debe ser un texto" }),
|
|
3340
|
+
(0, import_class_validator64.IsNotEmpty)({ message: "es requerido" }),
|
|
3341
|
+
(0, import_class_validator64.Length)(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|
|
3342
|
+
(0, import_class_transformer64.Expose)()
|
|
3343
|
+
], StockPersonalEquiposENTITY.prototype, "Identificacion", 2);
|
|
3344
3344
|
__decorateClass([
|
|
3345
3345
|
(0, import_class_validator64.IsString)({ message: "debe ser un texto" }),
|
|
3346
3346
|
(0, import_class_validator64.Length)(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|
package/dist/index.mjs
CHANGED
|
@@ -3138,7 +3138,6 @@ var EquiposDTO = class {
|
|
|
3138
3138
|
Collection = "";
|
|
3139
3139
|
NroContable = "";
|
|
3140
3140
|
NroDocumento = "";
|
|
3141
|
-
Orden = "";
|
|
3142
3141
|
Serie = "";
|
|
3143
3142
|
MAC = "";
|
|
3144
3143
|
Marca = "";
|
|
@@ -3160,8 +3159,7 @@ __decorateClass([
|
|
|
3160
3159
|
], EquiposDTO.prototype, "Posicion", 2);
|
|
3161
3160
|
__decorateClass([
|
|
3162
3161
|
IsString52({ message: "debe ser un texto" }),
|
|
3163
|
-
|
|
3164
|
-
Length52(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3162
|
+
Length52(0, 70, { message: "debe tener entre 0 y 150 caracteres" }),
|
|
3165
3163
|
Expose62()
|
|
3166
3164
|
], EquiposDTO.prototype, "Collection", 2);
|
|
3167
3165
|
__decorateClass([
|
|
@@ -3175,11 +3173,6 @@ __decorateClass([
|
|
|
3175
3173
|
Length52(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3176
3174
|
Expose62()
|
|
3177
3175
|
], EquiposDTO.prototype, "NroDocumento", 2);
|
|
3178
|
-
__decorateClass([
|
|
3179
|
-
IsString52({ message: "debe ser un texto" }),
|
|
3180
|
-
Length52(0, 70, { message: "debe tener entre 0 y 70 caracteres" }),
|
|
3181
|
-
Expose62()
|
|
3182
|
-
], EquiposDTO.prototype, "Orden", 2);
|
|
3183
3176
|
__decorateClass([
|
|
3184
3177
|
IsString52({ message: "debe ser un texto" }),
|
|
3185
3178
|
Length52(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|
|
@@ -3218,6 +3211,7 @@ import { IsArray as IsArray13, IsNotEmpty as IsNotEmpty63, IsNumber as IsNumber3
|
|
|
3218
3211
|
var StockPersonalEquiposENTITY = class {
|
|
3219
3212
|
ID_StockPersonalEquipos = 0;
|
|
3220
3213
|
ID_StockPersonal = 0;
|
|
3214
|
+
Identificacion = "";
|
|
3221
3215
|
CodigoLlave = "";
|
|
3222
3216
|
CodigoBusqueda = "";
|
|
3223
3217
|
Equipos = [];
|
|
@@ -3234,6 +3228,12 @@ __decorateClass([
|
|
|
3234
3228
|
IsNotEmpty63({ message: "es requerido" }),
|
|
3235
3229
|
Min21(0, { message: "el valor m\xEDnimo es 0" })
|
|
3236
3230
|
], StockPersonalEquiposENTITY.prototype, "ID_StockPersonal", 2);
|
|
3231
|
+
__decorateClass([
|
|
3232
|
+
IsString53({ message: "debe ser un texto" }),
|
|
3233
|
+
IsNotEmpty63({ message: "es requerido" }),
|
|
3234
|
+
Length53(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|
|
3235
|
+
Expose63()
|
|
3236
|
+
], StockPersonalEquiposENTITY.prototype, "Identificacion", 2);
|
|
3237
3237
|
__decorateClass([
|
|
3238
3238
|
IsString53({ message: "debe ser un texto" }),
|
|
3239
3239
|
Length53(1, 100, { message: "debe tener entre 1 y 100 caracteres" }),
|