Skip to content

Commit acb5c1f

Browse files
Update READMEs
1 parent 3be8c84 commit acb5c1f

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

README-ES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -308,22 +308,22 @@ type TBsCalculatedAverage = {
308308
309309
El paquete también está desplegado y funciona como API para aquellos usuarios que no quieran o no puedan incorporarlo a sus proyectos como dependencia.
310310
311-
Para acceder a la API deben utilizar la ruta https://venecodollar.vercel.app/api/v1.
311+
Para acceder a la API deben utilizar la ruta https://venecodollar.vercel.app/api/v2.
312312
313313
Asimismo, pueden acceder a la documentación hecha en swagger para el proyecto ubicada aquí [documentación de la API venecodollar](https://venecodollar.vercel.app/api/doc).
314314
315315
#### Obtener todas las entidades
316316
317317
```http
318-
GET /api/v1/dollar
318+
GET /api/v2/dollar
319319
```
320320
321321
Este endpoint permite obtener todas las entidades de seguimiento del dólar con su respectivo nombre y fecha de última actualización, así como una media de todas las entidades activas (es decir, las que tienen un valor del dólar superior a cero).
322322
323323
#### Obtener entidades por un nombre
324324
325325
```http
326-
GET /api/v1/dollar/entity?name=${name}
326+
GET /api/v2/dollar/entity?name=${name}
327327
```
328328
329329
| Parámetro Tipo Descripción |
@@ -335,7 +335,7 @@ Este endpoint permite obtener todas las entidades de seguimiento del dólar por
335335
#### Calcular Bs
336336
337337
```http
338-
GET /api/v1/dollar/toBs?dollar=${dollar}&entity={entity}
338+
GET /api/v2/dollar/toBs?dollar=${dollar}&entity={entity}
339339
```
340340
341341
| Parameter | Type | Description |
@@ -348,7 +348,7 @@ Este endpoint permite obtener todas las entidades de monitoreo de dólares calcu
348348
#### Calcular Dólar
349349
350350
```http
351-
GET /api/v1/dollar/toDollar?bs=${bs}&entity={entity}
351+
GET /api/v2/dollar/toDollar?bs=${bs}&entity={entity}
352352
```
353353
354354
| Parameter | Type | Description |

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -262,22 +262,22 @@ type TBsCalculatedAverage = {
262262
263263
The package is also deployed and works as an API for those users who do not want to or cannot incorporate it into their projects as a dependency.
264264
265-
To access the API they should use the path https://venecodollar.vercel.app/api/v1.
265+
To access the API they should use the path https://venecodollar.vercel.app/api/v2.
266266
267267
Likewise, you can access the documentation made in swagger for the project located here [venecodollar API documentation](https://venecodollar.vercel.app/api/doc).
268268
269269
#### Get all entities
270270
271271
```http
272-
GET /api/v1/dollar
272+
GET /api/v2/dollar
273273
```
274274
275275
This endpoint allows obtaining all the dollar monitoring entities with their respective name and last update date, as well as an average of all the active entities (i.e., those with a dollar value greater than zero).
276276
277277
#### Get entities by name
278278
279279
```http
280-
GET /api/v1/dollar/entity?name=${name}
280+
GET /api/v2/dollar/entity?name=${name}
281281
```
282282
283283
| Parameter | Type | Description |
@@ -289,7 +289,7 @@ This endpoint allows to obtain all the monitoring entities of the dollar by the
289289
#### Calculate Bs
290290
291291
```http
292-
GET /api/v1/dollar/toBs?dollar=${dollar}&entity={entity}
292+
GET /api/v2/dollar/toBs?dollar=${dollar}&entity={entity}
293293
```
294294
295295
| Parameter | Type | Description |
@@ -302,7 +302,7 @@ This endpoint allows obtaining all the dollar monitoring entities while calculat
302302
#### Calculate Dollar
303303
304304
```http
305-
GET /api/v1/dollar/toDollar?bs=${bs}&entity={entity}
305+
GET /api/v2/dollar/toDollar?bs=${bs}&entity={entity}
306306
```
307307
308308
| Parameter | Type | Description |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "venecodollar",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Library to consult the different dollar values and their average in terms of bolivars.",
55
"keywords": [
66
"dollar",

0 commit comments

Comments
 (0)