pyEscoAPI 0.0.37__tar.gz → 0.0.38__tar.gz

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.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pyEscoAPI
3
- Version: 0.0.37
3
+ Version: 0.0.38
4
4
  Summary: Python client for Esco API (Esco bolsa)
5
5
  Author-email: Codetria <hola@codetria.com>
6
6
  License: MIT License
@@ -1178,7 +1178,8 @@ class EscoAPI:
1178
1178
  fecha_hasta: datetime = None,
1179
1179
  por_concertacion: bool = True,
1180
1180
  es_consolidado: bool = True,
1181
- incluye_anulados: bool = True
1181
+ incluye_anulados: bool = True,
1182
+ moneda: str = None
1182
1183
  ):
1183
1184
  """
1184
1185
  Es una consulta de todos los boletos generados en VBolsa. Solo se muestran boletos vigentes, no se
@@ -1201,7 +1202,8 @@ class EscoAPI:
1201
1202
  "fechaHasta": fecha_hasta.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
1202
1203
  "porConcertacion": por_concertacion,
1203
1204
  "esConsolidado": es_consolidado,
1204
- "incluyeAnulados": incluye_anulados
1205
+ "incluyeAnulados": incluye_anulados,
1206
+ "moneda": moneda
1205
1207
  }
1206
1208
  self.__pre_connection()
1207
1209
  return self.__make_request(
@@ -1217,6 +1219,8 @@ class EscoAPI:
1217
1219
  fecha_hasta: datetime = None,
1218
1220
  por_concertacion: bool = True,
1219
1221
  es_consolidado: bool = True,
1222
+ moneda: str = None,
1223
+ tp_tesoreria_mov: str = None
1220
1224
  ):
1221
1225
  """
1222
1226
  Devuelve los recibos de comprobantes generados en VBolsa.
@@ -1237,6 +1241,8 @@ class EscoAPI:
1237
1241
  "fechaHasta": fecha_hasta.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
1238
1242
  "porConcertacion": por_concertacion,
1239
1243
  "esConsolidado": es_consolidado,
1244
+ "moneda": moneda,
1245
+ "tpTesoreriaMov": tp_tesoreria_mov
1240
1246
  }
1241
1247
  self.__pre_connection()
1242
1248
  return self.__make_request(
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: pyEscoAPI
3
- Version: 0.0.37
3
+ Version: 0.0.38
4
4
  Summary: Python client for Esco API (Esco bolsa)
5
5
  Author-email: Codetria <hola@codetria.com>
6
6
  License: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = 'pyEscoAPI'
7
- version = "0.0.37"
7
+ version = "0.0.38"
8
8
  license = {text = "MIT License"}
9
9
  authors = [
10
10
  { name="Codetria", email="hola@codetria.com" },
File without changes
File without changes