@digipair/skill-factory 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-factory",
3
- "version": "0.25.6",
3
+ "version": "0.26.0",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
package/schema.fr.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-factory",
5
+ "summary": "Actions dans la factory Digipair",
6
+ "description": "Actions dans la factory Digipair.",
7
+ "version": "0.1.0",
8
+ "x-icon": "🛠"
9
+ },
10
+ "paths": {
11
+ "/start": {
12
+ "post": {
13
+ "tags": ["service"],
14
+ "summary": "Démarrage d'un raisonnement",
15
+ "description": "Démarrage d'un raisonnement depuis la factory Digipair",
16
+ "parameters": [
17
+ {
18
+ "name": "digipair",
19
+ "summary": "Digipair",
20
+ "required": false,
21
+ "description": "Propriétaire du raisonnement",
22
+ "schema": {
23
+ "type": "string"
24
+ }
25
+ },
26
+ {
27
+ "name": "reasoning",
28
+ "summary": "Raisonnement",
29
+ "required": true,
30
+ "description": "Nom du raisonnement",
31
+ "schema": {
32
+ "type": "string"
33
+ }
34
+ },
35
+ {
36
+ "name": "body",
37
+ "summary": "Données",
38
+ "required": false,
39
+ "description": "Données à envoyer",
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-factory",
5
- "summary": "Actions dans la factory Digipair",
6
- "description": "Actions dans la factory Digipair.",
5
+ "summary": "Actions in the Digipair factory",
6
+ "description": "Actions in the Digipair factory.",
7
7
  "version": "0.1.0",
8
8
  "x-icon": "🛠"
9
9
  },
@@ -11,32 +11,32 @@
11
11
  "/start": {
12
12
  "post": {
13
13
  "tags": ["service"],
14
- "summary": "Démarrage d'un raisonnement",
15
- "description": "Démarrage d'un raisonnement depuis la factory Digipair",
14
+ "summary": "Start a reasoning",
15
+ "description": "Start a reasoning from the Digipair factory",
16
16
  "parameters": [
17
17
  {
18
18
  "name": "digipair",
19
19
  "summary": "Digipair",
20
20
  "required": false,
21
- "description": "Propriétaire du raisonnement",
21
+ "description": "Owner of the reasoning",
22
22
  "schema": {
23
23
  "type": "string"
24
24
  }
25
25
  },
26
26
  {
27
27
  "name": "reasoning",
28
- "summary": "Raisonnement",
28
+ "summary": "Reasoning",
29
29
  "required": true,
30
- "description": "Nom du raisonnement",
30
+ "description": "Name of the reasoning",
31
31
  "schema": {
32
32
  "type": "string"
33
33
  }
34
34
  },
35
35
  {
36
36
  "name": "body",
37
- "summary": "Données",
37
+ "summary": "Data",
38
38
  "required": false,
39
- "description": "Données à envoyer",
39
+ "description": "Data to send",
40
40
  "schema": {
41
41
  "type": "object"
42
42
  }