@digipair/skill-common 0.25.5 → 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 +47 -0
- package/schema.json +4 -4
package/package.json
CHANGED
package/schema.fr.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-common",
|
|
5
|
+
"summary": "Comportements par défauts des agents",
|
|
6
|
+
"description": "La compétence permet de gérer les comportements par défauts des agents.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "🚀"
|
|
9
|
+
},
|
|
10
|
+
"paths": {
|
|
11
|
+
"/metadata": {
|
|
12
|
+
"post": {
|
|
13
|
+
"tags": ["service"],
|
|
14
|
+
"summary": "Lister les metadatas",
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "digipair",
|
|
18
|
+
"in": "query",
|
|
19
|
+
"required": true,
|
|
20
|
+
"schema": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"x-events": []
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"/boosts": {
|
|
29
|
+
"post": {
|
|
30
|
+
"tags": ["service"],
|
|
31
|
+
"summary": "Lister les boosts",
|
|
32
|
+
"parameters": [
|
|
33
|
+
{
|
|
34
|
+
"name": "digipair",
|
|
35
|
+
"in": "query",
|
|
36
|
+
"required": true,
|
|
37
|
+
"schema": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"x-events": []
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"x-scene-blocks": {}
|
|
47
|
+
}
|
package/schema.json
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"openapi": "3.0.0",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "@digipair/skill-common",
|
|
5
|
-
"summary": "
|
|
6
|
-
"description": "
|
|
5
|
+
"summary": "Default behaviors of agents",
|
|
6
|
+
"description": "The skill allows managing the default behaviors of agents.",
|
|
7
7
|
"version": "0.1.0",
|
|
8
8
|
"x-icon": "🚀"
|
|
9
9
|
},
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"/metadata": {
|
|
12
12
|
"post": {
|
|
13
13
|
"tags": ["service"],
|
|
14
|
-
"summary": "
|
|
14
|
+
"summary": "List the metadata",
|
|
15
15
|
"parameters": [
|
|
16
16
|
{
|
|
17
17
|
"name": "digipair",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"/boosts": {
|
|
29
29
|
"post": {
|
|
30
30
|
"tags": ["service"],
|
|
31
|
-
"summary": "
|
|
31
|
+
"summary": "List the boosts",
|
|
32
32
|
"parameters": [
|
|
33
33
|
{
|
|
34
34
|
"name": "digipair",
|