n8n-nodes-pdf4me 1.5.0 → 1.5.2
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 +21 -12
- package/dist/README.md +21 -12
- package/dist/nodes/Pdf4me/Descriptions.js +299 -299
- package/dist/nodes/Pdf4me/Descriptions.js.map +1 -1
- package/dist/nodes/Pdf4me/GenericFunctions.d.ts +37 -38
- package/dist/nodes/Pdf4me/GenericFunctions.js +40 -41
- package/dist/nodes/Pdf4me/GenericFunctions.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/GenerateDocumentsMultiple.js +1 -1
- package/dist/nodes/Pdf4me/actions/GenerateDocumentsMultiple.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/addImageStampToPdf.js +1 -1
- package/dist/nodes/Pdf4me/actions/addImageStampToPdf.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/aiInvoiceParser.js +69 -3
- package/dist/nodes/Pdf4me/actions/aiInvoiceParser.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/convertHtmlToPdf.js +7 -5
- package/dist/nodes/Pdf4me/actions/convertHtmlToPdf.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/convertMarkdownToPdf.js +55 -3
- package/dist/nodes/Pdf4me/actions/convertMarkdownToPdf.js.map +1 -1
- package/dist/nodes/Pdf4me/actions/extractResources.d.ts +1 -3
- package/dist/nodes/Pdf4me/actions/extractResources.js +154 -42
- package/dist/nodes/Pdf4me/actions/extractResources.js.map +1 -1
- package/dist/package.json +24 -23
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +24 -23
package/README.md
CHANGED
|
@@ -61,21 +61,21 @@ For Docker-based deployments, add the package to your package.json and rebuild t
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"n8n": "^1.0.0",
|
|
64
|
-
"n8n-nodes-pdf4me": "^
|
|
64
|
+
"n8n-nodes-pdf4me": "^1.5.1"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
## What's New in Version
|
|
69
|
+
## What's New in Version 1.5.1
|
|
70
70
|
|
|
71
|
-
Version
|
|
71
|
+
Version 1.5.1 brings stability improvements and code optimizations to the PDF4ME n8n node:
|
|
72
72
|
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
73
|
+
- **🔧 Code Refactoring**: Improved variable declarations and code structure
|
|
74
|
+
- **🖼️ Image Processing**: Enhanced MIME type handling for image operations
|
|
75
|
+
- **📝 Markdown Conversion**: Optimized Markdown to PDF conversion process
|
|
76
|
+
- **🔍 Resource Extraction**: Improved resource extraction functionality
|
|
77
|
+
- **✅ Stability**: Enhanced overall stability and performance
|
|
78
|
+
- **🔄 Backward Compatible**: All existing workflows continue to work seamlessly
|
|
79
79
|
|
|
80
80
|
## Operations
|
|
81
81
|
|
|
@@ -193,7 +193,7 @@ To use this node, you need a PDF4ME API key. Here's how to get started:
|
|
|
193
193
|
|
|
194
194
|
## Usage
|
|
195
195
|
|
|
196
|
-
This node allows you to automate document processing tasks in your n8n workflows. With version
|
|
196
|
+
This node allows you to automate document processing tasks in your n8n workflows. With version 1.5.1, the interface has been optimized for better performance and stability. Here are some common use cases:
|
|
197
197
|
|
|
198
198
|
### AI-Powered Document Processing
|
|
199
199
|
- Automatically extract invoice data for accounting systems
|
|
@@ -281,7 +281,7 @@ The Convert HTML to PDF operation supports multiple input methods for maximum fl
|
|
|
281
281
|
- Build complete document processing pipelines with enhanced reliability
|
|
282
282
|
- Automate document classification and routing
|
|
283
283
|
- Create end-to-end document workflows with improved error handling
|
|
284
|
-
- **Version
|
|
284
|
+
- **Version 1.5.1**: Enhanced stability and performance for reliable workflow execution
|
|
285
285
|
|
|
286
286
|
For detailed examples and workflow templates, visit our documentation.
|
|
287
287
|
|
|
@@ -296,8 +296,17 @@ For detailed examples and workflow templates, visit our documentation.
|
|
|
296
296
|
|
|
297
297
|
## Version History
|
|
298
298
|
|
|
299
|
+
### 1.5.1
|
|
300
|
+
- **Latest Version**: Stability improvements and code optimizations
|
|
301
|
+
- **Code Refactoring**: Improved variable declarations and code structure across actions
|
|
302
|
+
- **Image Processing**: Enhanced MIME type handling for image operations in extractResources
|
|
303
|
+
- **Markdown Conversion**: Optimized convertMarkdownToPdf functionality
|
|
304
|
+
- **Resource Extraction**: Improved resource extraction with better error handling
|
|
305
|
+
- **Performance**: Enhanced overall stability and processing speed
|
|
306
|
+
- **Maintained Compatibility**: All existing workflows continue to work seamlessly
|
|
307
|
+
|
|
299
308
|
### 1.5.0
|
|
300
|
-
- **
|
|
309
|
+
- **Previous Version**: Major refactoring and enhanced user experience
|
|
301
310
|
- **Simplified Output Handling**: Removed complex binaryDataName parameters across all actions
|
|
302
311
|
- **Enhanced Response Processing**: Improved response handling to return raw data and metadata consistently
|
|
303
312
|
- **Streamlined Interface**: Simplified action configurations for better usability
|
package/dist/README.md
CHANGED
|
@@ -61,21 +61,21 @@ For Docker-based deployments, add the package to your package.json and rebuild t
|
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"n8n": "^1.0.0",
|
|
64
|
-
"n8n-nodes-pdf4me": "^
|
|
64
|
+
"n8n-nodes-pdf4me": "^1.5.1"
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
```
|
|
68
68
|
|
|
69
|
-
## What's New in Version
|
|
69
|
+
## What's New in Version 1.5.1
|
|
70
70
|
|
|
71
|
-
Version
|
|
71
|
+
Version 1.5.1 brings stability improvements and code optimizations to the PDF4ME n8n node:
|
|
72
72
|
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
73
|
+
- **🔧 Code Refactoring**: Improved variable declarations and code structure
|
|
74
|
+
- **🖼️ Image Processing**: Enhanced MIME type handling for image operations
|
|
75
|
+
- **📝 Markdown Conversion**: Optimized Markdown to PDF conversion process
|
|
76
|
+
- **🔍 Resource Extraction**: Improved resource extraction functionality
|
|
77
|
+
- **✅ Stability**: Enhanced overall stability and performance
|
|
78
|
+
- **🔄 Backward Compatible**: All existing workflows continue to work seamlessly
|
|
79
79
|
|
|
80
80
|
## Operations
|
|
81
81
|
|
|
@@ -193,7 +193,7 @@ To use this node, you need a PDF4ME API key. Here's how to get started:
|
|
|
193
193
|
|
|
194
194
|
## Usage
|
|
195
195
|
|
|
196
|
-
This node allows you to automate document processing tasks in your n8n workflows. With version
|
|
196
|
+
This node allows you to automate document processing tasks in your n8n workflows. With version 1.5.1, the interface has been optimized for better performance and stability. Here are some common use cases:
|
|
197
197
|
|
|
198
198
|
### AI-Powered Document Processing
|
|
199
199
|
- Automatically extract invoice data for accounting systems
|
|
@@ -281,7 +281,7 @@ The Convert HTML to PDF operation supports multiple input methods for maximum fl
|
|
|
281
281
|
- Build complete document processing pipelines with enhanced reliability
|
|
282
282
|
- Automate document classification and routing
|
|
283
283
|
- Create end-to-end document workflows with improved error handling
|
|
284
|
-
- **Version
|
|
284
|
+
- **Version 1.5.1**: Enhanced stability and performance for reliable workflow execution
|
|
285
285
|
|
|
286
286
|
For detailed examples and workflow templates, visit our documentation.
|
|
287
287
|
|
|
@@ -296,8 +296,17 @@ For detailed examples and workflow templates, visit our documentation.
|
|
|
296
296
|
|
|
297
297
|
## Version History
|
|
298
298
|
|
|
299
|
+
### 1.5.1
|
|
300
|
+
- **Latest Version**: Stability improvements and code optimizations
|
|
301
|
+
- **Code Refactoring**: Improved variable declarations and code structure across actions
|
|
302
|
+
- **Image Processing**: Enhanced MIME type handling for image operations in extractResources
|
|
303
|
+
- **Markdown Conversion**: Optimized convertMarkdownToPdf functionality
|
|
304
|
+
- **Resource Extraction**: Improved resource extraction with better error handling
|
|
305
|
+
- **Performance**: Enhanced overall stability and processing speed
|
|
306
|
+
- **Maintained Compatibility**: All existing workflows continue to work seamlessly
|
|
307
|
+
|
|
299
308
|
### 1.5.0
|
|
300
|
-
- **
|
|
309
|
+
- **Previous Version**: Major refactoring and enhanced user experience
|
|
301
310
|
- **Simplified Output Handling**: Removed complex binaryDataName parameters across all actions
|
|
302
311
|
- **Enhanced Response Processing**: Improved response handling to return raw data and metadata consistently
|
|
303
312
|
- **Streamlined Interface**: Simplified action configurations for better usability
|