n8n-nodes-centum 0.2.28 → 0.2.30
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/README.md +12 -1
- package/dist/nodes/Centum/Centum.node.js +1166 -1044
- package/dist/nodes/Centum/Centum.node.js.map +1 -1
- package/dist/nodes/Centum/CentumDescription.js +369 -161
- package/dist/nodes/Centum/CentumDescription.js.map +1 -1
- package/dist/nodes/Centum/helpers/functions.d.ts +4 -2
- package/dist/nodes/Centum/helpers/functions.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,17 +20,19 @@ The node is built to be extensible, making it easy to add new operations for spe
|
|
|
20
20
|
|
|
21
21
|
## Available Operations
|
|
22
22
|
|
|
23
|
-
**
|
|
23
|
+
**55 endpoints organized into 5 categories:**
|
|
24
24
|
|
|
25
25
|
### 📦 Articles
|
|
26
26
|
- `articulo`: Search articles with filters (categories, dates, stock)
|
|
27
27
|
- `articuloPorId`: Query by exact ID or code
|
|
28
|
+
- `articuloPorNombre`: Query by article name
|
|
28
29
|
- `articulosDatosGenerales`: Retrieve general article data
|
|
29
30
|
- `articulosExistencia`: Stock availability by branch
|
|
30
31
|
- `articulosImagenes`: Download and process article images
|
|
31
32
|
- `articulosPrecioPorLista`: Prices by price list
|
|
32
33
|
- `articulosSucursalesFisicas`: Articles grouped by branch
|
|
33
34
|
- `articuloSucursalFisica`: Specific article in branch
|
|
35
|
+
- `buscarArticulo`: Search article by name or code
|
|
34
36
|
- `categoriasObtener`: List categories
|
|
35
37
|
- `marcasObtener`: List brands
|
|
36
38
|
- `rubrosObtener`: List product groups
|
|
@@ -53,11 +55,16 @@ The node is built to be extensible, making it easy to add new operations for spe
|
|
|
53
55
|
- `crearPedidoVenta`: Create a sales order
|
|
54
56
|
- `obtenerPedidosDeVenta`: List sales orders
|
|
55
57
|
- `obtenerFacturasPedidosVentas`: Sales order invoice history
|
|
58
|
+
- `obtenerFacturasPedidosVentasPorID`: Sales order invoice history by ID
|
|
56
59
|
- `obtenerEstadosPedidosDeVenta`: Available sales order statuses
|
|
57
60
|
- `pedidoVentaActividad`: Check sales order activity
|
|
58
61
|
- `generarVentas`: Generate a sale
|
|
59
62
|
- `generarCompras`: Generate a purchase
|
|
60
63
|
- `obtenerCompras`: Filter purchases
|
|
64
|
+
- `generarOrdenCompra`: Generate a purchase order
|
|
65
|
+
- `obtenerOrdenCompra`: Get purchase order by ID
|
|
66
|
+
- `obtenerOrdenesCompras`: Filter purchase orders
|
|
67
|
+
- `obtenerBonificaciones`: Get available discounts
|
|
61
68
|
|
|
62
69
|
### 🌍 Catalogs
|
|
63
70
|
- `provinciasLista`: List of provinces (Argentina)
|
|
@@ -68,12 +75,16 @@ The node is built to be extensible, making it easy to add new operations for spe
|
|
|
68
75
|
- `regimenesEspecialesLista`: Special tax regimes
|
|
69
76
|
- `regimenesEspecialesPorId`: Special regime by ID
|
|
70
77
|
- `tipoComprobante`: Voucher types
|
|
78
|
+
- `obtenerTurnoEntrega`: Get delivery time slots
|
|
79
|
+
- `obtenerVendedores`: Get sales representatives
|
|
71
80
|
|
|
72
81
|
### ⚙️ Utilities
|
|
73
82
|
- `generarProductosWoo`: Transform data to WooCommerce format
|
|
74
83
|
- `procesarImagenes`: Image processing and synchronization
|
|
75
84
|
- `generarToken`: Authentication token generation
|
|
76
85
|
- `operadoresMoviles`: Retrieve mobile operator data based on credentials
|
|
86
|
+
- `proveedorBuscar`: Search supplier by ID
|
|
87
|
+
- `proveedorCrear`: Create a new supplier
|
|
77
88
|
|
|
78
89
|
## Prerequisites
|
|
79
90
|
|