@digipair/skill-debug 0.32.7 → 0.33.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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +1 -1
- package/schema.en.json +0 -52
package/index.cjs.js
CHANGED
|
@@ -111,7 +111,7 @@ let DebugService = class DebugService {
|
|
|
111
111
|
} else {
|
|
112
112
|
addLog(context, type, message);
|
|
113
113
|
}
|
|
114
|
-
return
|
|
114
|
+
return context.previous;
|
|
115
115
|
}
|
|
116
116
|
};
|
|
117
117
|
const log = (params, pinsSettingsList, context)=>new DebugService().log(params, pinsSettingsList, context);
|
package/index.esm.js
CHANGED
|
@@ -107,7 +107,7 @@ let DebugService = class DebugService {
|
|
|
107
107
|
} else {
|
|
108
108
|
addLog(context, type, message);
|
|
109
109
|
}
|
|
110
|
-
return
|
|
110
|
+
return context.previous;
|
|
111
111
|
}
|
|
112
112
|
};
|
|
113
113
|
const log = (params, pinsSettingsList, context)=>new DebugService().log(params, pinsSettingsList, context);
|
package/package.json
CHANGED
package/schema.en.json
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
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
|
-
}
|