@digipair/skill-factory 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/index.esm.js +5 -5
- package/package.json +1 -1
- package/schema.fr.json +196 -14
- package/schema.json +196 -14
package/index.esm.js
CHANGED
|
@@ -23899,14 +23899,14 @@ function indent(str, spaces) {
|
|
|
23899
23899
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23900
23900
|
// match is required
|
|
23901
23901
|
if (!match) {
|
|
23902
|
-
return
|
|
23902
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23903
23903
|
v: nextMatch1
|
|
23904
23904
|
};
|
|
23905
23905
|
}
|
|
23906
23906
|
var token = match.token, offset = match.offset;
|
|
23907
23907
|
i1 += offset;
|
|
23908
23908
|
if (token === " ") {
|
|
23909
|
-
return
|
|
23909
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23910
23910
|
}
|
|
23911
23911
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23912
23912
|
token
|
|
@@ -23925,7 +23925,7 @@ function indent(str, spaces) {
|
|
|
23925
23925
|
if (contextKeys.some(function(el) {
|
|
23926
23926
|
return el.startsWith(name);
|
|
23927
23927
|
})) {
|
|
23928
|
-
return
|
|
23928
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23929
23929
|
}
|
|
23930
23930
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23931
23931
|
return el === name;
|
|
@@ -23944,9 +23944,9 @@ function indent(str, spaces) {
|
|
|
23944
23944
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23945
23945
|
return el.startsWith(name);
|
|
23946
23946
|
})) {
|
|
23947
|
-
return
|
|
23947
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, "continue";
|
|
23948
23948
|
}
|
|
23949
|
-
return
|
|
23949
|
+
return nextMatch = nextMatch1, tokens = tokens1, i = i1, {
|
|
23950
23950
|
v: nextMatch1
|
|
23951
23951
|
};
|
|
23952
23952
|
};
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/start": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Démarrage d'un raisonnement",
|
|
15
17
|
"description": "Démarrage d'un raisonnement depuis la factory Digipair",
|
|
16
18
|
"parameters": [
|
|
@@ -51,12 +53,26 @@
|
|
|
51
53
|
}
|
|
52
54
|
}
|
|
53
55
|
],
|
|
54
|
-
"x-events": []
|
|
56
|
+
"x-events": [],
|
|
57
|
+
"responses": {
|
|
58
|
+
"200": {
|
|
59
|
+
"description": "Raisonnement démarré avec succès",
|
|
60
|
+
"content": {
|
|
61
|
+
"application/json": {
|
|
62
|
+
"schema": {
|
|
63
|
+
"$ref": "#/components/schemas/ReasoningResult"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
55
69
|
}
|
|
56
70
|
},
|
|
57
71
|
"/execute": {
|
|
58
72
|
"post": {
|
|
59
|
-
"tags": [
|
|
73
|
+
"tags": [
|
|
74
|
+
"service"
|
|
75
|
+
],
|
|
60
76
|
"summary": "Execute avec un contexte",
|
|
61
77
|
"description": "Execute des Pin's avec un contexte donné",
|
|
62
78
|
"parameters": [
|
|
@@ -82,21 +98,49 @@
|
|
|
82
98
|
}
|
|
83
99
|
}
|
|
84
100
|
],
|
|
85
|
-
"x-events": []
|
|
101
|
+
"x-events": [],
|
|
102
|
+
"responses": {
|
|
103
|
+
"200": {
|
|
104
|
+
"description": "Exécution des Pin's terminée avec succès",
|
|
105
|
+
"content": {
|
|
106
|
+
"application/json": {
|
|
107
|
+
"schema": {
|
|
108
|
+
"$ref": "#/components/schemas/ExecutionResult"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
86
114
|
}
|
|
87
115
|
},
|
|
88
116
|
"/keepAlive": {
|
|
89
117
|
"post": {
|
|
90
|
-
"tags": [
|
|
118
|
+
"tags": [
|
|
119
|
+
"service"
|
|
120
|
+
],
|
|
91
121
|
"summary": "Keep-alive",
|
|
92
122
|
"description": "Garder en vie le raisonnement",
|
|
93
123
|
"parameters": [],
|
|
94
|
-
"x-events": []
|
|
124
|
+
"x-events": [],
|
|
125
|
+
"responses": {
|
|
126
|
+
"200": {
|
|
127
|
+
"description": "Signal keep-alive envoyé avec succès",
|
|
128
|
+
"content": {
|
|
129
|
+
"application/json": {
|
|
130
|
+
"schema": {
|
|
131
|
+
"$ref": "#/components/schemas/KeepAliveResult"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
95
137
|
}
|
|
96
138
|
},
|
|
97
139
|
"/stop": {
|
|
98
140
|
"post": {
|
|
99
|
-
"tags": [
|
|
141
|
+
"tags": [
|
|
142
|
+
"service"
|
|
143
|
+
],
|
|
100
144
|
"summary": "Stop",
|
|
101
145
|
"description": "Stop le raisonnement",
|
|
102
146
|
"parameters": [
|
|
@@ -110,7 +154,19 @@
|
|
|
110
154
|
}
|
|
111
155
|
}
|
|
112
156
|
],
|
|
113
|
-
"x-events": []
|
|
157
|
+
"x-events": [],
|
|
158
|
+
"responses": {
|
|
159
|
+
"200": {
|
|
160
|
+
"description": "Raisonnement arrêté avec succès",
|
|
161
|
+
"content": {
|
|
162
|
+
"application/json": {
|
|
163
|
+
"schema": {
|
|
164
|
+
"$ref": "#/components/schemas/StopResult"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
114
170
|
}
|
|
115
171
|
}
|
|
116
172
|
},
|
|
@@ -118,7 +174,9 @@
|
|
|
118
174
|
"/task": {
|
|
119
175
|
"summary": "Tache",
|
|
120
176
|
"description": "Exécution d'une tache.",
|
|
121
|
-
"tags": [
|
|
177
|
+
"tags": [
|
|
178
|
+
"service"
|
|
179
|
+
],
|
|
122
180
|
"metadata": [],
|
|
123
181
|
"parameters": [
|
|
124
182
|
{
|
|
@@ -138,7 +196,9 @@
|
|
|
138
196
|
"/action": {
|
|
139
197
|
"summary": "Action",
|
|
140
198
|
"description": "Action exécutable.",
|
|
141
|
-
"tags": [
|
|
199
|
+
"tags": [
|
|
200
|
+
"service"
|
|
201
|
+
],
|
|
142
202
|
"metadata": [
|
|
143
203
|
{
|
|
144
204
|
"name": "parameters",
|
|
@@ -152,6 +212,15 @@
|
|
|
152
212
|
}
|
|
153
213
|
}
|
|
154
214
|
},
|
|
215
|
+
{
|
|
216
|
+
"name": "output",
|
|
217
|
+
"summary": "Format de sortie",
|
|
218
|
+
"required": false,
|
|
219
|
+
"description": "Format de sortie de l'action",
|
|
220
|
+
"schema": {
|
|
221
|
+
"type": "object"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
155
224
|
{
|
|
156
225
|
"name": "context",
|
|
157
226
|
"summary": "Contexte",
|
|
@@ -180,7 +249,9 @@
|
|
|
180
249
|
"/trigger": {
|
|
181
250
|
"summary": "Déclencheur",
|
|
182
251
|
"description": "Déclenchement d'une exécution d'actions.",
|
|
183
|
-
"tags": [
|
|
252
|
+
"tags": [
|
|
253
|
+
"service"
|
|
254
|
+
],
|
|
184
255
|
"metadata": [
|
|
185
256
|
{
|
|
186
257
|
"name": "tags",
|
|
@@ -227,7 +298,9 @@
|
|
|
227
298
|
"schemas": {
|
|
228
299
|
"Parameter": {
|
|
229
300
|
"type": "object",
|
|
230
|
-
"tags": [
|
|
301
|
+
"tags": [
|
|
302
|
+
"service"
|
|
303
|
+
],
|
|
231
304
|
"summary": "Parameter",
|
|
232
305
|
"properties": {
|
|
233
306
|
"name": {
|
|
@@ -255,8 +328,117 @@
|
|
|
255
328
|
"type": "string"
|
|
256
329
|
}
|
|
257
330
|
},
|
|
258
|
-
"required": [
|
|
331
|
+
"required": [
|
|
332
|
+
"name",
|
|
333
|
+
"summary",
|
|
334
|
+
"required",
|
|
335
|
+
"schema"
|
|
336
|
+
]
|
|
337
|
+
},
|
|
338
|
+
"ReasoningResult": {
|
|
339
|
+
"type": "object",
|
|
340
|
+
"description": "Résultat de l'exécution de raisonnement",
|
|
341
|
+
"properties": {
|
|
342
|
+
"success": {
|
|
343
|
+
"type": "boolean",
|
|
344
|
+
"description": "Indique si le raisonnement a été démarré avec succès"
|
|
345
|
+
},
|
|
346
|
+
"result": {
|
|
347
|
+
"type": "object",
|
|
348
|
+
"description": "Détails de l'exécution du raisonnement",
|
|
349
|
+
"properties": {
|
|
350
|
+
"status": {
|
|
351
|
+
"type": "string",
|
|
352
|
+
"description": "Statut actuel du raisonnement"
|
|
353
|
+
},
|
|
354
|
+
"reasoning": {
|
|
355
|
+
"type": "string",
|
|
356
|
+
"description": "Nom du raisonnement qui a été démarré"
|
|
357
|
+
},
|
|
358
|
+
"digipair": {
|
|
359
|
+
"type": "string",
|
|
360
|
+
"description": "Propriétaire du raisonnement"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
},
|
|
366
|
+
"ExecutionResult": {
|
|
367
|
+
"type": "object",
|
|
368
|
+
"description": "Résultat de l'exécution des Pin's",
|
|
369
|
+
"properties": {
|
|
370
|
+
"success": {
|
|
371
|
+
"type": "boolean",
|
|
372
|
+
"description": "Indique si l'exécution s'est déroulée avec succès"
|
|
373
|
+
},
|
|
374
|
+
"data": {
|
|
375
|
+
"type": "object",
|
|
376
|
+
"description": "Données retournées par l'exécution",
|
|
377
|
+
"properties": {
|
|
378
|
+
"executed": {
|
|
379
|
+
"type": "boolean",
|
|
380
|
+
"description": "Indique si l'exécution est terminée"
|
|
381
|
+
},
|
|
382
|
+
"results": {
|
|
383
|
+
"type": "array",
|
|
384
|
+
"description": "Résultats des pins exécutés",
|
|
385
|
+
"items": {
|
|
386
|
+
"type": "object"
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
"KeepAliveResult": {
|
|
394
|
+
"type": "object",
|
|
395
|
+
"description": "Résultat de l'opération keep-alive",
|
|
396
|
+
"properties": {
|
|
397
|
+
"type": {
|
|
398
|
+
"type": "string",
|
|
399
|
+
"description": "Type de la réponse keep-alive"
|
|
400
|
+
},
|
|
401
|
+
"status": {
|
|
402
|
+
"type": "string",
|
|
403
|
+
"description": "Statut de l'opération keep-alive"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"StopResult": {
|
|
408
|
+
"type": "object",
|
|
409
|
+
"description": "Résultat de l'opération d'arrêt",
|
|
410
|
+
"properties": {
|
|
411
|
+
"type": {
|
|
412
|
+
"type": "string",
|
|
413
|
+
"description": "Type de la réponse d'arrêt"
|
|
414
|
+
},
|
|
415
|
+
"value": {
|
|
416
|
+
"type": "object",
|
|
417
|
+
"description": "Valeur retournée lors de l'arrêt du raisonnement"
|
|
418
|
+
},
|
|
419
|
+
"status": {
|
|
420
|
+
"type": "string",
|
|
421
|
+
"description": "Statut de l'opération d'arrêt"
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"TaskResult": {
|
|
426
|
+
"type": "object",
|
|
427
|
+
"description": "Résultat de l'exécution de tâche",
|
|
428
|
+
"properties": {
|
|
429
|
+
"success": {
|
|
430
|
+
"type": "boolean",
|
|
431
|
+
"description": "Indique si l'exécution de la tâche s'est déroulée avec succès"
|
|
432
|
+
},
|
|
433
|
+
"results": {
|
|
434
|
+
"type": "array",
|
|
435
|
+
"description": "Résultats de la tâche exécutée",
|
|
436
|
+
"items": {
|
|
437
|
+
"type": "object"
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
}
|
|
259
441
|
}
|
|
260
442
|
}
|
|
261
443
|
}
|
|
262
|
-
}
|
|
444
|
+
}
|
package/schema.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/start": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Start a reasoning",
|
|
15
17
|
"description": "Start a reasoning from the Digipair factory",
|
|
16
18
|
"parameters": [
|
|
@@ -51,12 +53,26 @@
|
|
|
51
53
|
}
|
|
52
54
|
}
|
|
53
55
|
],
|
|
54
|
-
"x-events": []
|
|
56
|
+
"x-events": [],
|
|
57
|
+
"responses": {
|
|
58
|
+
"200": {
|
|
59
|
+
"description": "Reasoning started successfully",
|
|
60
|
+
"content": {
|
|
61
|
+
"application/json": {
|
|
62
|
+
"schema": {
|
|
63
|
+
"$ref": "#/components/schemas/ReasoningResult"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
55
69
|
}
|
|
56
70
|
},
|
|
57
71
|
"/execute": {
|
|
58
72
|
"post": {
|
|
59
|
-
"tags": [
|
|
73
|
+
"tags": [
|
|
74
|
+
"service"
|
|
75
|
+
],
|
|
60
76
|
"summary": "Execute with context",
|
|
61
77
|
"description": "Execute a Pin's with a given context",
|
|
62
78
|
"parameters": [
|
|
@@ -82,21 +98,49 @@
|
|
|
82
98
|
}
|
|
83
99
|
}
|
|
84
100
|
],
|
|
85
|
-
"x-events": []
|
|
101
|
+
"x-events": [],
|
|
102
|
+
"responses": {
|
|
103
|
+
"200": {
|
|
104
|
+
"description": "Pin's execution completed successfully",
|
|
105
|
+
"content": {
|
|
106
|
+
"application/json": {
|
|
107
|
+
"schema": {
|
|
108
|
+
"$ref": "#/components/schemas/ExecutionResult"
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
86
114
|
}
|
|
87
115
|
},
|
|
88
116
|
"/keepAlive": {
|
|
89
117
|
"post": {
|
|
90
|
-
"tags": [
|
|
118
|
+
"tags": [
|
|
119
|
+
"service"
|
|
120
|
+
],
|
|
91
121
|
"summary": "Keep Alive",
|
|
92
122
|
"description": "Keep alive the reasoning",
|
|
93
123
|
"parameters": [],
|
|
94
|
-
"x-events": []
|
|
124
|
+
"x-events": [],
|
|
125
|
+
"responses": {
|
|
126
|
+
"200": {
|
|
127
|
+
"description": "Keep alive signal sent successfully",
|
|
128
|
+
"content": {
|
|
129
|
+
"application/json": {
|
|
130
|
+
"schema": {
|
|
131
|
+
"$ref": "#/components/schemas/KeepAliveResult"
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
95
137
|
}
|
|
96
138
|
},
|
|
97
139
|
"/stop": {
|
|
98
140
|
"post": {
|
|
99
|
-
"tags": [
|
|
141
|
+
"tags": [
|
|
142
|
+
"service"
|
|
143
|
+
],
|
|
100
144
|
"summary": "Stop",
|
|
101
145
|
"description": "Stop the reasoning",
|
|
102
146
|
"parameters": [
|
|
@@ -110,7 +154,19 @@
|
|
|
110
154
|
}
|
|
111
155
|
}
|
|
112
156
|
],
|
|
113
|
-
"x-events": []
|
|
157
|
+
"x-events": [],
|
|
158
|
+
"responses": {
|
|
159
|
+
"200": {
|
|
160
|
+
"description": "Reasoning stopped successfully",
|
|
161
|
+
"content": {
|
|
162
|
+
"application/json": {
|
|
163
|
+
"schema": {
|
|
164
|
+
"$ref": "#/components/schemas/StopResult"
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
114
170
|
}
|
|
115
171
|
}
|
|
116
172
|
},
|
|
@@ -118,7 +174,9 @@
|
|
|
118
174
|
"schemas": {
|
|
119
175
|
"Parameter": {
|
|
120
176
|
"type": "object",
|
|
121
|
-
"tags": [
|
|
177
|
+
"tags": [
|
|
178
|
+
"service"
|
|
179
|
+
],
|
|
122
180
|
"summary": "Parameter",
|
|
123
181
|
"properties": {
|
|
124
182
|
"name": {
|
|
@@ -146,7 +204,116 @@
|
|
|
146
204
|
"type": "string"
|
|
147
205
|
}
|
|
148
206
|
},
|
|
149
|
-
"required": [
|
|
207
|
+
"required": [
|
|
208
|
+
"name",
|
|
209
|
+
"summary",
|
|
210
|
+
"required",
|
|
211
|
+
"schema"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
"ReasoningResult": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"description": "Result of reasoning execution",
|
|
217
|
+
"properties": {
|
|
218
|
+
"success": {
|
|
219
|
+
"type": "boolean",
|
|
220
|
+
"description": "Whether the reasoning was started successfully"
|
|
221
|
+
},
|
|
222
|
+
"result": {
|
|
223
|
+
"type": "object",
|
|
224
|
+
"description": "Details of the reasoning execution",
|
|
225
|
+
"properties": {
|
|
226
|
+
"status": {
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "Current status of the reasoning"
|
|
229
|
+
},
|
|
230
|
+
"reasoning": {
|
|
231
|
+
"type": "string",
|
|
232
|
+
"description": "Name of the reasoning that was started"
|
|
233
|
+
},
|
|
234
|
+
"digipair": {
|
|
235
|
+
"type": "string",
|
|
236
|
+
"description": "Owner of the reasoning"
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"ExecutionResult": {
|
|
243
|
+
"type": "object",
|
|
244
|
+
"description": "Result of Pin's execution",
|
|
245
|
+
"properties": {
|
|
246
|
+
"success": {
|
|
247
|
+
"type": "boolean",
|
|
248
|
+
"description": "Whether the execution was successful"
|
|
249
|
+
},
|
|
250
|
+
"data": {
|
|
251
|
+
"type": "object",
|
|
252
|
+
"description": "Data returned from the execution",
|
|
253
|
+
"properties": {
|
|
254
|
+
"executed": {
|
|
255
|
+
"type": "boolean",
|
|
256
|
+
"description": "Whether the execution was completed"
|
|
257
|
+
},
|
|
258
|
+
"results": {
|
|
259
|
+
"type": "array",
|
|
260
|
+
"description": "Results from the executed pins",
|
|
261
|
+
"items": {
|
|
262
|
+
"type": "object"
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
},
|
|
269
|
+
"KeepAliveResult": {
|
|
270
|
+
"type": "object",
|
|
271
|
+
"description": "Result of keep alive operation",
|
|
272
|
+
"properties": {
|
|
273
|
+
"type": {
|
|
274
|
+
"type": "string",
|
|
275
|
+
"description": "Type of the keep alive response"
|
|
276
|
+
},
|
|
277
|
+
"status": {
|
|
278
|
+
"type": "string",
|
|
279
|
+
"description": "Status of the keep alive operation"
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"StopResult": {
|
|
284
|
+
"type": "object",
|
|
285
|
+
"description": "Result of stop operation",
|
|
286
|
+
"properties": {
|
|
287
|
+
"type": {
|
|
288
|
+
"type": "string",
|
|
289
|
+
"description": "Type of the stop response"
|
|
290
|
+
},
|
|
291
|
+
"value": {
|
|
292
|
+
"type": "object",
|
|
293
|
+
"description": "Value returned when stopping the reasoning"
|
|
294
|
+
},
|
|
295
|
+
"status": {
|
|
296
|
+
"type": "string",
|
|
297
|
+
"description": "Status of the stop operation"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
"TaskResult": {
|
|
302
|
+
"type": "object",
|
|
303
|
+
"description": "Result of task execution",
|
|
304
|
+
"properties": {
|
|
305
|
+
"success": {
|
|
306
|
+
"type": "boolean",
|
|
307
|
+
"description": "Whether the task execution was successful"
|
|
308
|
+
},
|
|
309
|
+
"results": {
|
|
310
|
+
"type": "array",
|
|
311
|
+
"description": "Results from the executed task",
|
|
312
|
+
"items": {
|
|
313
|
+
"type": "object"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
150
317
|
}
|
|
151
318
|
}
|
|
152
319
|
},
|
|
@@ -154,7 +321,9 @@
|
|
|
154
321
|
"/task": {
|
|
155
322
|
"summary": "Task",
|
|
156
323
|
"description": "Execution of a task.",
|
|
157
|
-
"tags": [
|
|
324
|
+
"tags": [
|
|
325
|
+
"service"
|
|
326
|
+
],
|
|
158
327
|
"metadata": [],
|
|
159
328
|
"parameters": [
|
|
160
329
|
{
|
|
@@ -174,7 +343,9 @@
|
|
|
174
343
|
"/action": {
|
|
175
344
|
"summary": "Action",
|
|
176
345
|
"description": "Executable action.",
|
|
177
|
-
"tags": [
|
|
346
|
+
"tags": [
|
|
347
|
+
"service"
|
|
348
|
+
],
|
|
178
349
|
"metadata": [
|
|
179
350
|
{
|
|
180
351
|
"name": "parameters",
|
|
@@ -188,6 +359,15 @@
|
|
|
188
359
|
}
|
|
189
360
|
}
|
|
190
361
|
},
|
|
362
|
+
{
|
|
363
|
+
"name": "output",
|
|
364
|
+
"summary": "Output format",
|
|
365
|
+
"required": false,
|
|
366
|
+
"description": "Output format of the action",
|
|
367
|
+
"schema": {
|
|
368
|
+
"type": "object"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
191
371
|
{
|
|
192
372
|
"name": "context",
|
|
193
373
|
"summary": "Contexte",
|
|
@@ -216,7 +396,9 @@
|
|
|
216
396
|
"/trigger": {
|
|
217
397
|
"summary": "Trigger",
|
|
218
398
|
"description": "Executable trigger.",
|
|
219
|
-
"tags": [
|
|
399
|
+
"tags": [
|
|
400
|
+
"service"
|
|
401
|
+
],
|
|
220
402
|
"metadata": [
|
|
221
403
|
{
|
|
222
404
|
"name": "tags",
|
|
@@ -259,4 +441,4 @@
|
|
|
259
441
|
]
|
|
260
442
|
}
|
|
261
443
|
}
|
|
262
|
-
}
|
|
444
|
+
}
|