@digipair/skill-debug 0.28.13 → 0.29.2
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 +52 -0
package/package.json
CHANGED
package/schema.en.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-debug",
|
|
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
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "🔧"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/log": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["service"],
|
|
14
|
+
"summary": "Display in logs",
|
|
15
|
+
"description": "Element for displaying a message in the logs",
|
|
16
|
+
"parameters": [
|
|
17
|
+
{
|
|
18
|
+
"name": "label",
|
|
19
|
+
"summary": "Subject",
|
|
20
|
+
"required": true,
|
|
21
|
+
"description": "Log subject",
|
|
22
|
+
"schema": {
|
|
23
|
+
"type": "string"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "type",
|
|
28
|
+
"summary": "Type",
|
|
29
|
+
"required": false,
|
|
30
|
+
"description": "Log type",
|
|
31
|
+
"schema": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "value",
|
|
37
|
+
"summary": "Value",
|
|
38
|
+
"required": false,
|
|
39
|
+
"description": "Additional value to display",
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "object"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"x-events": []
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"components": {
|
|
50
|
+
"schemas": {}
|
|
51
|
+
}
|
|
52
|
+
}
|