n8n-nodes-proofofauthenticity 1.0.6 → 1.0.7
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 +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,6 +30,28 @@ Certify content with blockchain timestamp.
|
|
|
30
30
|
| Description | Description (optional) |
|
|
31
31
|
| Certification Mode | Simple or AI + C2PA |
|
|
32
32
|
|
|
33
|
+
### Download C2PA File
|
|
34
|
+
|
|
35
|
+
Download the C2PA signed image file as binary output. Use this after creating a certificate with AI + C2PA mode.
|
|
36
|
+
|
|
37
|
+
| Parameter | Description |
|
|
38
|
+
|-----------|-------------|
|
|
39
|
+
| C2PA Download URL | The `c2pa_download_url` returned by Create Certificate (AI mode) |
|
|
40
|
+
| Binary Property Name | Output binary property name (default: `c2pa_file`) |
|
|
41
|
+
|
|
42
|
+
**Output**: Binary file with C2PA metadata embedded.
|
|
43
|
+
|
|
44
|
+
### Download PDF Certificate
|
|
45
|
+
|
|
46
|
+
Download the PDF certificate as binary output.
|
|
47
|
+
|
|
48
|
+
| Parameter | Description |
|
|
49
|
+
|-----------|-------------|
|
|
50
|
+
| C2PA File ID | The `c2pa_file_id` returned by Create Certificate (AI mode) |
|
|
51
|
+
| Binary Property Name | Output binary property name (default: `pdf_certificate`) |
|
|
52
|
+
|
|
53
|
+
**Output**: PDF document with certification details.
|
|
54
|
+
|
|
33
55
|
### List Certificates
|
|
34
56
|
|
|
35
57
|
List blockchain certificates with optional filters (hash, filename, signature).
|
package/package.json
CHANGED