sigo-entities 1.2.62 → 1.2.63
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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5937,6 +5937,7 @@ declare class UbicaciontoaDTO {
|
|
|
5937
5937
|
nombre_de_provincia: string;
|
|
5938
5938
|
tipo_de_vivienda: string;
|
|
5939
5939
|
direccion_completa_y_referencia: string;
|
|
5940
|
+
nombre_distrito: string;
|
|
5940
5941
|
}
|
|
5941
5942
|
declare class PlantaDTO {
|
|
5942
5943
|
tap: number;
|
|
@@ -5979,6 +5980,7 @@ declare class UbicaciontoaDBDTO {
|
|
|
5979
5980
|
nombre_de_provincia: string;
|
|
5980
5981
|
tipo_de_vivienda: string;
|
|
5981
5982
|
direccion_completa_y_referencia: string;
|
|
5983
|
+
nombre_distrito: string;
|
|
5982
5984
|
}
|
|
5983
5985
|
declare class PlantaDBDTO {
|
|
5984
5986
|
tap: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -5937,6 +5937,7 @@ declare class UbicaciontoaDTO {
|
|
|
5937
5937
|
nombre_de_provincia: string;
|
|
5938
5938
|
tipo_de_vivienda: string;
|
|
5939
5939
|
direccion_completa_y_referencia: string;
|
|
5940
|
+
nombre_distrito: string;
|
|
5940
5941
|
}
|
|
5941
5942
|
declare class PlantaDTO {
|
|
5942
5943
|
tap: number;
|
|
@@ -5979,6 +5980,7 @@ declare class UbicaciontoaDBDTO {
|
|
|
5979
5980
|
nombre_de_provincia: string;
|
|
5980
5981
|
tipo_de_vivienda: string;
|
|
5981
5982
|
direccion_completa_y_referencia: string;
|
|
5983
|
+
nombre_distrito: string;
|
|
5982
5984
|
}
|
|
5983
5985
|
declare class PlantaDBDTO {
|
|
5984
5986
|
tap: number;
|
package/dist/index.js
CHANGED
|
@@ -31498,6 +31498,7 @@ var UbicaciontoaDTO = class {
|
|
|
31498
31498
|
nombre_de_provincia = "";
|
|
31499
31499
|
tipo_de_vivienda = "";
|
|
31500
31500
|
direccion_completa_y_referencia = "";
|
|
31501
|
+
nombre_distrito = "";
|
|
31501
31502
|
};
|
|
31502
31503
|
__decorateClass([
|
|
31503
31504
|
(0, import_class_transformer533.Expose)({ name: "Localidad" }),
|
|
@@ -31549,6 +31550,11 @@ __decorateClass([
|
|
|
31549
31550
|
(0, import_class_validator534.IsDefined)({ message: "El campo Direccion completa y referencia es obligatorio." }),
|
|
31550
31551
|
(0, import_class_validator534.IsString)()
|
|
31551
31552
|
], UbicaciontoaDTO.prototype, "direccion_completa_y_referencia", 2);
|
|
31553
|
+
__decorateClass([
|
|
31554
|
+
(0, import_class_transformer533.Expose)({ name: "Nombre Distrito" }),
|
|
31555
|
+
(0, import_class_validator534.IsDefined)({ message: "El campo Nombre Distrito es obligatorio." }),
|
|
31556
|
+
(0, import_class_validator534.IsString)()
|
|
31557
|
+
], UbicaciontoaDTO.prototype, "nombre_distrito", 2);
|
|
31552
31558
|
var PlantaDTO = class {
|
|
31553
31559
|
tap = 0;
|
|
31554
31560
|
amplificador = "";
|
|
@@ -31704,6 +31710,7 @@ var UbicaciontoaDBDTO = class {
|
|
|
31704
31710
|
nombre_de_provincia = "";
|
|
31705
31711
|
tipo_de_vivienda = "";
|
|
31706
31712
|
direccion_completa_y_referencia = "";
|
|
31713
|
+
nombre_distrito = "";
|
|
31707
31714
|
};
|
|
31708
31715
|
__decorateClass([
|
|
31709
31716
|
(0, import_class_transformer534.Expose)(),
|
|
@@ -31755,6 +31762,11 @@ __decorateClass([
|
|
|
31755
31762
|
(0, import_class_validator535.IsDefined)({ message: "El campo direccion_completa_y_referencia es obligatorio." }),
|
|
31756
31763
|
(0, import_class_validator535.IsString)()
|
|
31757
31764
|
], UbicaciontoaDBDTO.prototype, "direccion_completa_y_referencia", 2);
|
|
31765
|
+
__decorateClass([
|
|
31766
|
+
(0, import_class_transformer534.Expose)({ name: "Nombre Distrito" }),
|
|
31767
|
+
(0, import_class_validator535.IsDefined)({ message: "El campo Nombre Distrito es obligatorio." }),
|
|
31768
|
+
(0, import_class_validator535.IsString)()
|
|
31769
|
+
], UbicaciontoaDBDTO.prototype, "nombre_distrito", 2);
|
|
31758
31770
|
var PlantaDBDTO = class {
|
|
31759
31771
|
tap = 0;
|
|
31760
31772
|
amplificador = "";
|
package/dist/index.mjs
CHANGED
|
@@ -31070,6 +31070,7 @@ var UbicaciontoaDTO = class {
|
|
|
31070
31070
|
nombre_de_provincia = "";
|
|
31071
31071
|
tipo_de_vivienda = "";
|
|
31072
31072
|
direccion_completa_y_referencia = "";
|
|
31073
|
+
nombre_distrito = "";
|
|
31073
31074
|
};
|
|
31074
31075
|
__decorateClass([
|
|
31075
31076
|
Expose531({ name: "Localidad" }),
|
|
@@ -31121,6 +31122,11 @@ __decorateClass([
|
|
|
31121
31122
|
IsDefined139({ message: "El campo Direccion completa y referencia es obligatorio." }),
|
|
31122
31123
|
IsString429()
|
|
31123
31124
|
], UbicaciontoaDTO.prototype, "direccion_completa_y_referencia", 2);
|
|
31125
|
+
__decorateClass([
|
|
31126
|
+
Expose531({ name: "Nombre Distrito" }),
|
|
31127
|
+
IsDefined139({ message: "El campo Nombre Distrito es obligatorio." }),
|
|
31128
|
+
IsString429()
|
|
31129
|
+
], UbicaciontoaDTO.prototype, "nombre_distrito", 2);
|
|
31124
31130
|
var PlantaDTO = class {
|
|
31125
31131
|
tap = 0;
|
|
31126
31132
|
amplificador = "";
|
|
@@ -31288,6 +31294,7 @@ var UbicaciontoaDBDTO = class {
|
|
|
31288
31294
|
nombre_de_provincia = "";
|
|
31289
31295
|
tipo_de_vivienda = "";
|
|
31290
31296
|
direccion_completa_y_referencia = "";
|
|
31297
|
+
nombre_distrito = "";
|
|
31291
31298
|
};
|
|
31292
31299
|
__decorateClass([
|
|
31293
31300
|
Expose532(),
|
|
@@ -31339,6 +31346,11 @@ __decorateClass([
|
|
|
31339
31346
|
IsDefined140({ message: "El campo direccion_completa_y_referencia es obligatorio." }),
|
|
31340
31347
|
IsString430()
|
|
31341
31348
|
], UbicaciontoaDBDTO.prototype, "direccion_completa_y_referencia", 2);
|
|
31349
|
+
__decorateClass([
|
|
31350
|
+
Expose532({ name: "Nombre Distrito" }),
|
|
31351
|
+
IsDefined140({ message: "El campo Nombre Distrito es obligatorio." }),
|
|
31352
|
+
IsString430()
|
|
31353
|
+
], UbicaciontoaDBDTO.prototype, "nombre_distrito", 2);
|
|
31342
31354
|
var PlantaDBDTO = class {
|
|
31343
31355
|
tap = 0;
|
|
31344
31356
|
amplificador = "";
|