sigo-entities 1.1.49 → 1.1.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 CHANGED
@@ -882,6 +882,20 @@ declare class OTGlobalENTITY {
882
882
  Estado: EstadoDTO;
883
883
  }
884
884
 
885
+ declare class ProveedorExtraDTO {
886
+ ID_ProveedorExtra: number;
887
+ Proveedor: EmpresaLogisticaDTO;
888
+ Participante: string;
889
+ Pais: CodigoNombreDTO;
890
+ Delegacion: CodigoNombreDTO;
891
+ Estado: EstadoDTO;
892
+ }
893
+
894
+ declare class SkuDTO {
895
+ Proveedor: ProveedorExtraDTO;
896
+ Sku: string;
897
+ }
898
+
885
899
  declare class ItemExtraENTITY {
886
900
  ID_ItemExtra: number;
887
901
  ID_Item: number;
@@ -896,6 +910,7 @@ declare class ItemExtraENTITY {
896
910
  CodigoGAS: string;
897
911
  CodigoCCINV: string;
898
912
  CodigoSISTEMA: string;
913
+ Sku: SkuDTO[];
899
914
  Estado: EstadoDTO;
900
915
  }
901
916
 
package/dist/index.d.ts CHANGED
@@ -882,6 +882,20 @@ declare class OTGlobalENTITY {
882
882
  Estado: EstadoDTO;
883
883
  }
884
884
 
885
+ declare class ProveedorExtraDTO {
886
+ ID_ProveedorExtra: number;
887
+ Proveedor: EmpresaLogisticaDTO;
888
+ Participante: string;
889
+ Pais: CodigoNombreDTO;
890
+ Delegacion: CodigoNombreDTO;
891
+ Estado: EstadoDTO;
892
+ }
893
+
894
+ declare class SkuDTO {
895
+ Proveedor: ProveedorExtraDTO;
896
+ Sku: string;
897
+ }
898
+
885
899
  declare class ItemExtraENTITY {
886
900
  ID_ItemExtra: number;
887
901
  ID_Item: number;
@@ -896,6 +910,7 @@ declare class ItemExtraENTITY {
896
910
  CodigoGAS: string;
897
911
  CodigoCCINV: string;
898
912
  CodigoSISTEMA: string;
913
+ Sku: SkuDTO[];
899
914
  Estado: EstadoDTO;
900
915
  }
901
916