@digipair/skill-debug 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 +1 -1
- package/schema.fr.json +52 -0
- package/schema.json +9 -9
package/package.json
CHANGED
package/schema.fr.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-debug",
|
|
5
|
+
"summary": "Debug de la factory",
|
|
6
|
+
"description": "Cette compétence permet aux utilisateurs de déboguer des actions exécutées sur la factory, offrant des outils et des fonctionnalités pour identifier et résoudre les problèmes.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "🔧"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/log": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["service"],
|
|
14
|
+
"summary": "Afficher dans les logs",
|
|
15
|
+
"description": "Element permettant d'afficher un message dans les logs",
|
|
16
|
+
"parameters": [
|
|
17
|
+
{
|
|
18
|
+
"name": "label",
|
|
19
|
+
"summary": "Sujet",
|
|
20
|
+
"required": true,
|
|
21
|
+
"description": "Sujet du log",
|
|
22
|
+
"schema": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "type",
|
|
28
|
+
"summary": "Type",
|
|
29
|
+
"required": false,
|
|
30
|
+
"description": "Type de log",
|
|
31
|
+
"schema": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "value",
|
|
37
|
+
"summary": "Valeur",
|
|
38
|
+
"required": false,
|
|
39
|
+
"description": "Valeur supplémentaire à afficher",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "object"
|
|
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-debug",
|
|
5
|
-
"summary": "
|
|
6
|
-
"description": "
|
|
5
|
+
"summary": "Factory Debugging",
|
|
6
|
+
"description": "This skill allows users to debug actions executed on the factory, providing tools and features to identify and resolve issues.",
|
|
7
7
|
"version": "0.1.0",
|
|
8
8
|
"x-icon": "🔧"
|
|
9
9
|
},
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"/log": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": ["service"],
|
|
14
|
-
"summary": "
|
|
15
|
-
"description": "Element
|
|
14
|
+
"summary": "Display in logs",
|
|
15
|
+
"description": "Element for displaying a message in the logs",
|
|
16
16
|
"parameters": [
|
|
17
17
|
{
|
|
18
18
|
"name": "label",
|
|
19
|
-
"summary": "
|
|
19
|
+
"summary": "Subject",
|
|
20
20
|
"required": true,
|
|
21
|
-
"description": "
|
|
21
|
+
"description": "Log subject",
|
|
22
22
|
"schema": {
|
|
23
23
|
"type": "string"
|
|
24
24
|
}
|
|
@@ -27,16 +27,16 @@
|
|
|
27
27
|
"name": "type",
|
|
28
28
|
"summary": "Type",
|
|
29
29
|
"required": false,
|
|
30
|
-
"description": "
|
|
30
|
+
"description": "Log type",
|
|
31
31
|
"schema": {
|
|
32
32
|
"type": "string"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
36
|
"name": "value",
|
|
37
|
-
"summary": "
|
|
37
|
+
"summary": "Value",
|
|
38
38
|
"required": false,
|
|
39
|
-
"description": "
|
|
39
|
+
"description": "Additional value to display",
|
|
40
40
|
"schema": {
|
|
41
41
|
"type": "object"
|
|
42
42
|
}
|