@digipair/skill-pdf 0.32.7 → 0.33.0
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/package.json +1 -1
- package/schema.en.json +0 -71
package/package.json
CHANGED
package/schema.en.json
DELETED
@@ -1,71 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"openapi": "3.0.0",
|
3
|
-
"info": {
|
4
|
-
"title": "@digipair/skill-pdf",
|
5
|
-
"summary": "PDF Manipulation",
|
6
|
-
"description": "This skill allows users to manipulate PDF files to extract or fill out forms.",
|
7
|
-
"version": "0.1.0",
|
8
|
-
"x-icon": "📕"
|
9
|
-
},
|
10
|
-
"paths": {
|
11
|
-
"/fillForm": {
|
12
|
-
"post": {
|
13
|
-
"tags": ["service", "web", "spatial"],
|
14
|
-
"summary": "Fill out a PDF form",
|
15
|
-
"description": "Fills out a PDF form with the specified values.",
|
16
|
-
"parameters": [
|
17
|
-
{
|
18
|
-
"name": "file",
|
19
|
-
"summary": "File",
|
20
|
-
"required": true,
|
21
|
-
"description": "Base64 encoded PDF file to fill out",
|
22
|
-
"schema": {
|
23
|
-
"type": "string"
|
24
|
-
}
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"name": "data",
|
28
|
-
"summary": "Data",
|
29
|
-
"required": true,
|
30
|
-
"description": "Data to insert into the PDF",
|
31
|
-
"schema": {
|
32
|
-
"type": "object"
|
33
|
-
}
|
34
|
-
},
|
35
|
-
{
|
36
|
-
"name": "flatten",
|
37
|
-
"summary": "Flatten",
|
38
|
-
"required": false,
|
39
|
-
"description": "Flatten the form after filling",
|
40
|
-
"schema": {
|
41
|
-
"type": "boolean"
|
42
|
-
}
|
43
|
-
}
|
44
|
-
],
|
45
|
-
"x-events": []
|
46
|
-
}
|
47
|
-
},
|
48
|
-
"/getFields": {
|
49
|
-
"post": {
|
50
|
-
"tags": ["service", "web", "spatial"],
|
51
|
-
"summary": "Extract fields from a PDF",
|
52
|
-
"description": "Extracts fields from a PDF form.",
|
53
|
-
"parameters": [
|
54
|
-
{
|
55
|
-
"name": "file",
|
56
|
-
"summary": "File",
|
57
|
-
"required": true,
|
58
|
-
"description": "Base64 encoded PDF file to analyze",
|
59
|
-
"schema": {
|
60
|
-
"type": "string"
|
61
|
-
}
|
62
|
-
}
|
63
|
-
],
|
64
|
-
"x-events": []
|
65
|
-
}
|
66
|
-
}
|
67
|
-
},
|
68
|
-
"components": {
|
69
|
-
"schemas": {}
|
70
|
-
}
|
71
|
-
}
|