@digipair/skill-web-chatbot 0.3.1 → 0.4.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/index.cjs2.js +20341 -5439
- package/index.esm2.js +20341 -5439
- package/package.json +1 -1
- package/schema.json +52 -0
package/package.json
CHANGED
package/schema.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-web-chatbot",
|
|
5
|
+
"description": "Intégration d'un chatbot interactif sur une page web pour améliorer l'engagement et la communication avec les utilisateurs.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"x-icon": "🚀"
|
|
8
|
+
},
|
|
9
|
+
"paths": {
|
|
10
|
+
"/digipair-chatbot-full": {
|
|
11
|
+
"post": {
|
|
12
|
+
"tags": [],
|
|
13
|
+
"summary": "Chatbot en pleine page",
|
|
14
|
+
"description": "Affiche une conversation avec un chatbot en pleine page",
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "code",
|
|
18
|
+
"summary": "Digipair",
|
|
19
|
+
"required": true,
|
|
20
|
+
"description": "Digipair à afficher",
|
|
21
|
+
"schema": {
|
|
22
|
+
"type": "string"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"x-events": []
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"/digipair-chatbot": {
|
|
30
|
+
"post": {
|
|
31
|
+
"tags": [],
|
|
32
|
+
"summary": "Chatbot",
|
|
33
|
+
"description": "Affiche un chatbot sur une page internet",
|
|
34
|
+
"parameters": [
|
|
35
|
+
{
|
|
36
|
+
"name": "code",
|
|
37
|
+
"summary": "Digipair",
|
|
38
|
+
"required": true,
|
|
39
|
+
"description": "Digipair à afficher",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"x-events": []
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"components": {
|
|
50
|
+
"schemas": {}
|
|
51
|
+
}
|
|
52
|
+
}
|