@digipair/skill-web-ocr 0.32.6 → 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 -98
package/package.json
CHANGED
package/schema.en.json
DELETED
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"openapi": "3.0.0",
|
|
3
|
-
"info": {
|
|
4
|
-
"title": "@digipair/skill-web-ocr",
|
|
5
|
-
"summary": "OCR Text Extraction",
|
|
6
|
-
"description": "This skill uses OCR technology to analyze images and extract text, enabling automatic data entry.",
|
|
7
|
-
"version": "0.1.0",
|
|
8
|
-
"x-icon": "📄"
|
|
9
|
-
},
|
|
10
|
-
"paths": {
|
|
11
|
-
"/digipair-input-ocr-selector": {
|
|
12
|
-
"post": {
|
|
13
|
-
"tags": ["boost"],
|
|
14
|
-
"summary": "Extract text from an image in the DOM",
|
|
15
|
-
"description": "Element for retrieving text from an image present in the DOM",
|
|
16
|
-
"parameters": [
|
|
17
|
-
{
|
|
18
|
-
"name": "selector",
|
|
19
|
-
"summary": "CSS selector of the image",
|
|
20
|
-
"required": true,
|
|
21
|
-
"description": "CSS selector of the image present in the DOM",
|
|
22
|
-
"schema": {
|
|
23
|
-
"type": "string"
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"name": "language",
|
|
28
|
-
"summary": "Language of the text to extract",
|
|
29
|
-
"required": true,
|
|
30
|
-
"description": "Language of the text to extract",
|
|
31
|
-
"schema": {
|
|
32
|
-
"type": "string"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
{
|
|
36
|
-
"name": "required",
|
|
37
|
-
"summary": "Required?",
|
|
38
|
-
"required": false,
|
|
39
|
-
"description": "When the field is required, the boost cannot be executed until a value has been entered",
|
|
40
|
-
"schema": {
|
|
41
|
-
"type": "boolean"
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"x-events": []
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
"/digipair-input-ocr": {
|
|
49
|
-
"post": {
|
|
50
|
-
"tags": ["boost"],
|
|
51
|
-
"summary": "Extract text from an image",
|
|
52
|
-
"description": "Element for extracting text from an image provided by the user",
|
|
53
|
-
"parameters": [
|
|
54
|
-
{
|
|
55
|
-
"name": "language",
|
|
56
|
-
"summary": "Language of the text",
|
|
57
|
-
"required": true,
|
|
58
|
-
"description": "Language of the text to extract",
|
|
59
|
-
"schema": {
|
|
60
|
-
"type": "string"
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
"name": "label",
|
|
65
|
-
"summary": "Displayed text",
|
|
66
|
-
"required": false,
|
|
67
|
-
"description": "Text displayed to the user to guide them in their input",
|
|
68
|
-
"schema": {
|
|
69
|
-
"type": "string"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
{
|
|
73
|
-
"name": "accept",
|
|
74
|
-
"summary": "File type",
|
|
75
|
-
"required": false,
|
|
76
|
-
"description": "Accepted file types",
|
|
77
|
-
"schema": {
|
|
78
|
-
"type": "string"
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
"name": "required",
|
|
83
|
-
"summary": "Required?",
|
|
84
|
-
"required": false,
|
|
85
|
-
"description": "Fields required to execute the boost",
|
|
86
|
-
"schema": {
|
|
87
|
-
"type": "boolean"
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
],
|
|
91
|
-
"x-events": []
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"components": {
|
|
96
|
-
"schemas": {}
|
|
97
|
-
}
|
|
98
|
-
}
|