@digipair/skill-web-debug 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-web-debug",
3
- "version": "0.96.0",
3
+ "version": "0.97.1",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "web",
package/schema.fr.json CHANGED
@@ -10,7 +10,10 @@
10
10
  "paths": {
11
11
  "/log": {
12
12
  "post": {
13
- "tags": ["web", "spatial"],
13
+ "tags": [
14
+ "web",
15
+ "spatial"
16
+ ],
14
17
  "summary": "Afficher dans la console",
15
18
  "description": "Element permettant d'afficher un message dans la console javascript",
16
19
  "parameters": [
@@ -42,11 +45,23 @@
42
45
  }
43
46
  }
44
47
  ],
45
- "x-events": []
48
+ "x-events": [],
49
+ "responses": {
50
+ "200": {
51
+ "description": "Message de log affiché avec succès dans la console et valeur du contexte précédent retournée",
52
+ "content": {
53
+ "application/json": {
54
+ "schema": {
55
+ "description": "Retourne la valeur précédente du contexte d'exécution (passage direct)"
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
46
61
  }
47
62
  }
48
63
  },
49
64
  "components": {
50
65
  "schemas": {}
51
66
  }
52
- }
67
+ }
package/schema.json CHANGED
@@ -10,7 +10,10 @@
10
10
  "paths": {
11
11
  "/log": {
12
12
  "post": {
13
- "tags": ["web", "spatial"],
13
+ "tags": [
14
+ "web",
15
+ "spatial"
16
+ ],
14
17
  "summary": "Display in Console",
15
18
  "description": "Element for displaying a message in the JavaScript console",
16
19
  "parameters": [
@@ -42,11 +45,23 @@
42
45
  }
43
46
  }
44
47
  ],
45
- "x-events": []
48
+ "x-events": [],
49
+ "responses": {
50
+ "200": {
51
+ "description": "Log message successfully displayed in console and previous context value returned",
52
+ "content": {
53
+ "application/json": {
54
+ "schema": {
55
+ "description": "Returns the previous value from the execution context (passthrough)"
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
46
61
  }
47
62
  }
48
63
  },
49
64
  "components": {
50
65
  "schemas": {}
51
66
  }
52
- }
67
+ }