sigo-entities 0.0.50 → 0.0.51
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 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -3245,6 +3245,7 @@ var EquiposDTO = class {
|
|
|
3245
3245
|
Collection = "";
|
|
3246
3246
|
NroContable = "";
|
|
3247
3247
|
NroDocumento = "";
|
|
3248
|
+
Orden = "";
|
|
3248
3249
|
Serie = "";
|
|
3249
3250
|
MAC = "";
|
|
3250
3251
|
Marca = "";
|
|
@@ -3280,6 +3281,11 @@ __decorateClass([
|
|
|
3280
3281
|
(0, import_class_validator63.Length)(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3281
3282
|
(0, import_class_transformer63.Expose)()
|
|
3282
3283
|
], EquiposDTO.prototype, "NroDocumento", 2);
|
|
3284
|
+
__decorateClass([
|
|
3285
|
+
(0, import_class_validator63.IsString)({ message: "debe ser un texto" }),
|
|
3286
|
+
(0, import_class_validator63.Length)(0, 100, { message: "debe tener entre 0 y 100 caracteres" }),
|
|
3287
|
+
(0, import_class_transformer63.Expose)()
|
|
3288
|
+
], EquiposDTO.prototype, "Orden", 2);
|
|
3283
3289
|
__decorateClass([
|
|
3284
3290
|
(0, import_class_validator63.IsString)({ message: "debe ser un texto" }),
|
|
3285
3291
|
(0, import_class_validator63.Length)(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|
package/dist/index.mjs
CHANGED
|
@@ -3138,6 +3138,7 @@ var EquiposDTO = class {
|
|
|
3138
3138
|
Collection = "";
|
|
3139
3139
|
NroContable = "";
|
|
3140
3140
|
NroDocumento = "";
|
|
3141
|
+
Orden = "";
|
|
3141
3142
|
Serie = "";
|
|
3142
3143
|
MAC = "";
|
|
3143
3144
|
Marca = "";
|
|
@@ -3173,6 +3174,11 @@ __decorateClass([
|
|
|
3173
3174
|
Length52(1, 70, { message: "debe tener entre 1 y 70 caracteres" }),
|
|
3174
3175
|
Expose62()
|
|
3175
3176
|
], EquiposDTO.prototype, "NroDocumento", 2);
|
|
3177
|
+
__decorateClass([
|
|
3178
|
+
IsString52({ message: "debe ser un texto" }),
|
|
3179
|
+
Length52(0, 100, { message: "debe tener entre 0 y 100 caracteres" }),
|
|
3180
|
+
Expose62()
|
|
3181
|
+
], EquiposDTO.prototype, "Orden", 2);
|
|
3176
3182
|
__decorateClass([
|
|
3177
3183
|
IsString52({ message: "debe ser un texto" }),
|
|
3178
3184
|
Length52(1, 50, { message: "debe tener entre 1 y 50 caracteres" }),
|