Skip to content

Commit 685798b

Browse files
committed
Fixed discrepancies between SDK and public API
1 parent 376ff23 commit 685798b

4 files changed

Lines changed: 139 additions & 83 deletions

File tree

fiscalapi/__init__.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@
2323

2424
# Modelos de Carta Porte (Bill of Lading)
2525
from .models.bill_of_lading_models import (
26-
Domicilio,
26+
UbicacionDomicilio,
27+
TipoFiguraDomicilio,
2728
RegimenAduanero,
2829
Ubicacion,
2930
DocumentoAduanero,
31+
GuiaIdentificacion,
3032
CantidadTransporta,
3133
DetalleMercancia,
3234
Mercancia,
@@ -37,7 +39,7 @@
3739
TransporteMaritimo,
3840
TransporteAereo,
3941
DerechoDePaso,
40-
ContenedorFerroviario,
42+
CarroContenedor,
4143
Carro,
4244
TransporteFerroviario,
4345
ParteTransporte,
@@ -196,7 +198,8 @@
196198
"LadingComplement",
197199
"InvoiceComplement",
198200
# Bill of Lading models
199-
"Domicilio",
201+
"UbicacionDomicilio",
202+
"TipoFiguraDomicilio",
200203
"RegimenAduanero",
201204
"Ubicacion",
202205
"DocumentoAduanero",
@@ -210,7 +213,7 @@
210213
"TransporteMaritimo",
211214
"TransporteAereo",
212215
"DerechoDePaso",
213-
"ContenedorFerroviario",
216+
"CarroContenedor",
214217
"Carro",
215218
"TransporteFerroviario",
216219
"ParteTransporte",

fiscalapi/models/__init__.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@
1010
)
1111
from .bill_of_lading_models import (
1212
# Bill of Lading models
13-
Domicilio,
13+
UbicacionDomicilio,
14+
TipoFiguraDomicilio,
1415
RegimenAduanero,
1516
Ubicacion,
1617
DocumentoAduanero,
18+
GuiaIdentificacion,
1719
CantidadTransporta,
1820
DetalleMercancia,
1921
Mercancia,
@@ -24,7 +26,7 @@
2426
TransporteMaritimo,
2527
TransporteAereo,
2628
DerechoDePaso,
27-
ContenedorFerroviario,
29+
CarroContenedor,
2830
Carro,
2931
TransporteFerroviario,
3032
ParteTransporte,
@@ -114,7 +116,8 @@
114116
# common_models
115117
"ApiResponse",
116118
# Bill of Lading models
117-
"Domicilio",
119+
"UbicacionDomicilio",
120+
"TipoFiguraDomicilio",
118121
"RegimenAduanero",
119122
"Ubicacion",
120123
"DocumentoAduanero",
@@ -128,7 +131,7 @@
128131
"TransporteMaritimo",
129132
"TransporteAereo",
130133
"DerechoDePaso",
131-
"ContenedorFerroviario",
134+
"CarroContenedor",
132135
"Carro",
133136
"TransporteFerroviario",
134137
"ParteTransporte",

0 commit comments

Comments
 (0)