@digipair/skill-web-pdf 0.25.6 → 0.26.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-pdf",
3
- "version": "0.25.6",
3
+ "version": "0.26.0",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
package/schema.fr.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-web-pdf",
5
+ "summary": "Extraction de texte depuis un PDF",
6
+ "description": "Cette compétence permet d'extraire le texte depuis un PDF.",
7
+ "version": "0.1.0",
8
+ "x-icon": "📄"
9
+ },
10
+ "paths": {
11
+ "/digipair-input-pdf": {
12
+ "post": {
13
+ "tags": ["boost"],
14
+ "summary": "Extraire le texte d'un PDF",
15
+ "description": "Element permettant d'extraire le texte à partir d'un fichier PDF fourni par l'utilisateur",
16
+ "parameters": [
17
+ {
18
+ "name": "label",
19
+ "summary": "Texte affiché",
20
+ "required": false,
21
+ "description": "Texte affiché à l'utilisateur pour le guider dans sa saisie",
22
+ "schema": {
23
+ "type": "string"
24
+ }
25
+ },
26
+ {
27
+ "name": "accept",
28
+ "summary": "Type de fichier",
29
+ "required": false,
30
+ "description": "Type de fichiers acceptés",
31
+ "schema": {
32
+ "type": "string"
33
+ }
34
+ },
35
+ {
36
+ "name": "required",
37
+ "summary": "Requis ?",
38
+ "required": false,
39
+ "description": "Champs requis pour exécuter le boost",
40
+ "schema": {
41
+ "type": "boolean"
42
+ }
43
+ }
44
+ ],
45
+ "x-events": []
46
+ }
47
+ }
48
+ },
49
+ "components": {
50
+ "schemas": {}
51
+ }
52
+ }
package/schema.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "openapi": "3.0.0",
3
3
  "info": {
4
4
  "title": "@digipair/skill-web-pdf",
5
- "summary": "Extraction de texte depuis un PDF",
6
- "description": "Cette compétence permet d'extraire le texte depuis un PDF.",
5
+ "summary": "Text extraction from a PDF",
6
+ "description": "This skill allows for the extraction of text from a PDF.",
7
7
  "version": "0.1.0",
8
8
  "x-icon": "📄"
9
9
  },
@@ -11,32 +11,32 @@
11
11
  "/digipair-input-pdf": {
12
12
  "post": {
13
13
  "tags": ["boost"],
14
- "summary": "Extraire le texte d'un PDF",
15
- "description": "Element permettant d'extraire le texte à partir d'un fichier PDF fourni par l'utilisateur",
14
+ "summary": "Extract text from a PDF",
15
+ "description": "Element that allows extracting text from a PDF file provided by the user.",
16
16
  "parameters": [
17
17
  {
18
18
  "name": "label",
19
- "summary": "Texte affiché",
19
+ "summary": "Displayed text",
20
20
  "required": false,
21
- "description": "Texte affiché à l'utilisateur pour le guider dans sa saisie",
21
+ "description": "Text displayed to the user to guide them in their input.",
22
22
  "schema": {
23
23
  "type": "string"
24
24
  }
25
25
  },
26
26
  {
27
27
  "name": "accept",
28
- "summary": "Type de fichier",
28
+ "summary": "File type",
29
29
  "required": false,
30
- "description": "Type de fichiers acceptés",
30
+ "description": "Accepted file types.",
31
31
  "schema": {
32
32
  "type": "string"
33
33
  }
34
34
  },
35
35
  {
36
36
  "name": "required",
37
- "summary": "Requis ?",
37
+ "summary": "Required?",
38
38
  "required": false,
39
- "description": "Champs requis pour exécuter le boost",
39
+ "description": "Fields required to execute the boost.",
40
40
  "schema": {
41
41
  "type": "boolean"
42
42
  }