@digipair/skill-docxtemplater 0.96.0 → 0.97.1
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.fr.json +20 -3
- package/schema.json +20 -3
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/generate": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Génère un document Word",
|
|
15
17
|
"parameters": [
|
|
16
18
|
{
|
|
@@ -32,7 +34,22 @@
|
|
|
32
34
|
}
|
|
33
35
|
}
|
|
34
36
|
],
|
|
35
|
-
"x-events": []
|
|
37
|
+
"x-events": [],
|
|
38
|
+
"responses": {
|
|
39
|
+
"200": {
|
|
40
|
+
"description": "Document Word généré",
|
|
41
|
+
"content": {
|
|
42
|
+
"application/json": {
|
|
43
|
+
"schema": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"format": "byte",
|
|
46
|
+
"description": "Document Word encodé en base64 avec préfixe de data URL",
|
|
47
|
+
"example": "data:application/vnd.openxmlformats-officedocument.wordprocessingml.document;base64,..."
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
36
53
|
}
|
|
37
54
|
}
|
|
38
55
|
},
|
|
@@ -40,4 +57,4 @@
|
|
|
40
57
|
"schemas": {}
|
|
41
58
|
},
|
|
42
59
|
"x-scene-blocks": {}
|
|
43
|
-
}
|
|
60
|
+
}
|
package/schema.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/generate": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Generate a Word document",
|
|
15
17
|
"parameters": [
|
|
16
18
|
{
|
|
@@ -32,7 +34,22 @@
|
|
|
32
34
|
}
|
|
33
35
|
}
|
|
34
36
|
],
|
|
35
|
-
"x-events": []
|
|
37
|
+
"x-events": [],
|
|
38
|
+
"responses": {
|
|
39
|
+
"200": {
|
|
40
|
+
"description": "Generated Word document",
|
|
41
|
+
"content": {
|
|
42
|
+
"application/json": {
|
|
43
|
+
"schema": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"format": "byte",
|
|
46
|
+
"description": "Base64-encoded Word document with data URL prefix",
|
|
47
|
+
"example": "data:application/vnd.openxmlformats-officedocument.wordprocessingml.document;base64,..."
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
36
53
|
}
|
|
37
54
|
}
|
|
38
55
|
},
|
|
@@ -40,4 +57,4 @@
|
|
|
40
57
|
"schemas": {}
|
|
41
58
|
},
|
|
42
59
|
"x-scene-blocks": {}
|
|
43
|
-
}
|
|
60
|
+
}
|