@digipair/skill-temporal 0.96.0 → 0.97.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 +200 -20
- package/schema.json +200 -20
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/activity": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Activitée",
|
|
15
17
|
"description": "Définit une activité",
|
|
16
18
|
"parameters": [
|
|
@@ -36,12 +38,27 @@
|
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
],
|
|
39
|
-
"x-events": []
|
|
41
|
+
"x-events": [],
|
|
42
|
+
"responses": {
|
|
43
|
+
"200": {
|
|
44
|
+
"description": "Résultat de l'exécution de l'activité",
|
|
45
|
+
"content": {
|
|
46
|
+
"application/json": {
|
|
47
|
+
"schema": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Résultat de l'exécution de l'activité"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
40
55
|
}
|
|
41
56
|
},
|
|
42
57
|
"/sleep": {
|
|
43
58
|
"post": {
|
|
44
|
-
"tags": [
|
|
59
|
+
"tags": [
|
|
60
|
+
"service"
|
|
61
|
+
],
|
|
45
62
|
"summary": "Attente",
|
|
46
63
|
"parameters": [
|
|
47
64
|
{
|
|
@@ -63,12 +80,27 @@
|
|
|
63
80
|
}
|
|
64
81
|
}
|
|
65
82
|
],
|
|
66
|
-
"x-events": []
|
|
83
|
+
"x-events": [],
|
|
84
|
+
"responses": {
|
|
85
|
+
"200": {
|
|
86
|
+
"description": "Confirmation de la durée d'attente",
|
|
87
|
+
"content": {
|
|
88
|
+
"application/json": {
|
|
89
|
+
"schema": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"description": "Confirmation que la durée d'attente a été appliquée"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
67
97
|
}
|
|
68
98
|
},
|
|
69
99
|
"/condition": {
|
|
70
100
|
"post": {
|
|
71
|
-
"tags": [
|
|
101
|
+
"tags": [
|
|
102
|
+
"service"
|
|
103
|
+
],
|
|
72
104
|
"summary": "Condition d'attente",
|
|
73
105
|
"description": "Condition d'attente dans un workflow",
|
|
74
106
|
"parameters": [
|
|
@@ -91,12 +123,27 @@
|
|
|
91
123
|
}
|
|
92
124
|
}
|
|
93
125
|
],
|
|
94
|
-
"x-events": []
|
|
126
|
+
"x-events": [],
|
|
127
|
+
"responses": {
|
|
128
|
+
"200": {
|
|
129
|
+
"description": "Résultat de la condition d'attente",
|
|
130
|
+
"content": {
|
|
131
|
+
"application/json": {
|
|
132
|
+
"schema": {
|
|
133
|
+
"type": "boolean",
|
|
134
|
+
"description": "Si la condition a été remplie avant le timeout"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
95
140
|
}
|
|
96
141
|
},
|
|
97
142
|
"/goto": {
|
|
98
143
|
"post": {
|
|
99
|
-
"tags": [
|
|
144
|
+
"tags": [
|
|
145
|
+
"service"
|
|
146
|
+
],
|
|
100
147
|
"summary": "Aller à l'étape",
|
|
101
148
|
"parameters": [
|
|
102
149
|
{
|
|
@@ -118,12 +165,27 @@
|
|
|
118
165
|
}
|
|
119
166
|
}
|
|
120
167
|
],
|
|
121
|
-
"x-events": []
|
|
168
|
+
"x-events": [],
|
|
169
|
+
"responses": {
|
|
170
|
+
"200": {
|
|
171
|
+
"description": "Numéro d'étape après goto",
|
|
172
|
+
"content": {
|
|
173
|
+
"application/json": {
|
|
174
|
+
"schema": {
|
|
175
|
+
"type": "number",
|
|
176
|
+
"description": "Numéro de l'étape cible dans le workflow"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
122
182
|
}
|
|
123
183
|
},
|
|
124
184
|
"/stop": {
|
|
125
185
|
"post": {
|
|
126
|
-
"tags": [
|
|
186
|
+
"tags": [
|
|
187
|
+
"service"
|
|
188
|
+
],
|
|
127
189
|
"summary": "Arrête le workflow",
|
|
128
190
|
"description": "Arrête le workflow",
|
|
129
191
|
"parameters": [
|
|
@@ -137,12 +199,27 @@
|
|
|
137
199
|
}
|
|
138
200
|
}
|
|
139
201
|
],
|
|
140
|
-
"x-events": []
|
|
202
|
+
"x-events": [],
|
|
203
|
+
"responses": {
|
|
204
|
+
"200": {
|
|
205
|
+
"description": "Confirmation de l'arrêt du workflow",
|
|
206
|
+
"content": {
|
|
207
|
+
"application/json": {
|
|
208
|
+
"schema": {
|
|
209
|
+
"type": "null",
|
|
210
|
+
"description": "Le workflow a été arrêté"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
141
216
|
}
|
|
142
217
|
},
|
|
143
218
|
"/push": {
|
|
144
219
|
"post": {
|
|
145
|
-
"tags": [
|
|
220
|
+
"tags": [
|
|
221
|
+
"service"
|
|
222
|
+
],
|
|
146
223
|
"summary": "Envoi de nouvelles données dans un workflow",
|
|
147
224
|
"description": "Envoi de nouvelles données dans le workflow",
|
|
148
225
|
"parameters": [
|
|
@@ -165,12 +242,27 @@
|
|
|
165
242
|
}
|
|
166
243
|
}
|
|
167
244
|
],
|
|
168
|
-
"x-events": []
|
|
245
|
+
"x-events": [],
|
|
246
|
+
"responses": {
|
|
247
|
+
"200": {
|
|
248
|
+
"description": "Confirmation de l'envoi des données",
|
|
249
|
+
"content": {
|
|
250
|
+
"application/json": {
|
|
251
|
+
"schema": {
|
|
252
|
+
"type": "null",
|
|
253
|
+
"description": "Les données ont été envoyées avec succès au workflow"
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
169
259
|
}
|
|
170
260
|
},
|
|
171
261
|
"/terminate": {
|
|
172
262
|
"post": {
|
|
173
|
-
"tags": [
|
|
263
|
+
"tags": [
|
|
264
|
+
"service"
|
|
265
|
+
],
|
|
174
266
|
"summary": "Arrête un workflow",
|
|
175
267
|
"description": "Arrête un workflow",
|
|
176
268
|
"parameters": [
|
|
@@ -184,12 +276,27 @@
|
|
|
184
276
|
}
|
|
185
277
|
}
|
|
186
278
|
],
|
|
187
|
-
"x-events": []
|
|
279
|
+
"x-events": [],
|
|
280
|
+
"responses": {
|
|
281
|
+
"200": {
|
|
282
|
+
"description": "Confirmation de l'arrêt du workflow",
|
|
283
|
+
"content": {
|
|
284
|
+
"application/json": {
|
|
285
|
+
"schema": {
|
|
286
|
+
"type": "null",
|
|
287
|
+
"description": "Le workflow a été arrêté avec succès"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
188
293
|
}
|
|
189
294
|
},
|
|
190
295
|
"/list": {
|
|
191
296
|
"post": {
|
|
192
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
193
300
|
"summary": "Liste les workflows",
|
|
194
301
|
"description": "Liste les workflows",
|
|
195
302
|
"parameters": [
|
|
@@ -203,18 +310,79 @@
|
|
|
203
310
|
}
|
|
204
311
|
}
|
|
205
312
|
],
|
|
206
|
-
"x-events": []
|
|
313
|
+
"x-events": [],
|
|
314
|
+
"responses": {
|
|
315
|
+
"200": {
|
|
316
|
+
"description": "Liste des workflows",
|
|
317
|
+
"content": {
|
|
318
|
+
"application/json": {
|
|
319
|
+
"schema": {
|
|
320
|
+
"type": "array",
|
|
321
|
+
"items": {
|
|
322
|
+
"$ref": "#/components/schemas/WorkflowExecutionInfo"
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
207
329
|
}
|
|
208
330
|
}
|
|
209
331
|
},
|
|
210
332
|
"components": {
|
|
211
|
-
"schemas": {
|
|
333
|
+
"schemas": {
|
|
334
|
+
"WorkflowExecutionInfo": {
|
|
335
|
+
"type": "object",
|
|
336
|
+
"description": "Informations sur une exécution de workflow Temporal",
|
|
337
|
+
"properties": {
|
|
338
|
+
"workflowId": {
|
|
339
|
+
"type": "string",
|
|
340
|
+
"description": "Identifiant unique du workflow"
|
|
341
|
+
},
|
|
342
|
+
"runId": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"description": "Identifiant unique de l'exécution du workflow"
|
|
345
|
+
},
|
|
346
|
+
"type": {
|
|
347
|
+
"type": "object",
|
|
348
|
+
"properties": {
|
|
349
|
+
"name": {
|
|
350
|
+
"type": "string",
|
|
351
|
+
"description": "Nom du type de workflow"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"status": {
|
|
356
|
+
"type": "string",
|
|
357
|
+
"enum": [
|
|
358
|
+
"Running",
|
|
359
|
+
"Completed",
|
|
360
|
+
"Failed",
|
|
361
|
+
"Cancelled",
|
|
362
|
+
"Terminated"
|
|
363
|
+
],
|
|
364
|
+
"description": "Statut actuel du workflow"
|
|
365
|
+
},
|
|
366
|
+
"startTime": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"format": "date-time",
|
|
369
|
+
"description": "Quand le workflow a été démarré"
|
|
370
|
+
},
|
|
371
|
+
"taskQueue": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"description": "Nom de la file d'attente des tâches utilisée par le workflow"
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
212
378
|
},
|
|
213
379
|
"x-scene-blocks": {
|
|
214
380
|
"/workflow": {
|
|
215
381
|
"summary": "Workflow Temporal",
|
|
216
382
|
"description": "Execute un workflow Temporal",
|
|
217
|
-
"tags": [
|
|
383
|
+
"tags": [
|
|
384
|
+
"service"
|
|
385
|
+
],
|
|
218
386
|
"metadata": [],
|
|
219
387
|
"parameters": [
|
|
220
388
|
{
|
|
@@ -256,7 +424,19 @@
|
|
|
256
424
|
"type": "object"
|
|
257
425
|
}
|
|
258
426
|
}
|
|
259
|
-
]
|
|
427
|
+
],
|
|
428
|
+
"responses": {
|
|
429
|
+
"200": {
|
|
430
|
+
"description": "Résultat de l'exécution du workflow",
|
|
431
|
+
"content": {
|
|
432
|
+
"application/json": {
|
|
433
|
+
"schema": {
|
|
434
|
+
"description": "Le résultat de la dernière étape exécutée dans le workflow"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
260
440
|
}
|
|
261
441
|
}
|
|
262
|
-
}
|
|
442
|
+
}
|
package/schema.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/activity": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Activity",
|
|
15
17
|
"description": "Defines an activity",
|
|
16
18
|
"parameters": [
|
|
@@ -36,12 +38,27 @@
|
|
|
36
38
|
}
|
|
37
39
|
}
|
|
38
40
|
],
|
|
39
|
-
"x-events": []
|
|
41
|
+
"x-events": [],
|
|
42
|
+
"responses": {
|
|
43
|
+
"200": {
|
|
44
|
+
"description": "Activity execution result",
|
|
45
|
+
"content": {
|
|
46
|
+
"application/json": {
|
|
47
|
+
"schema": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"description": "Result of the activity execution"
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
40
55
|
}
|
|
41
56
|
},
|
|
42
57
|
"/sleep": {
|
|
43
58
|
"post": {
|
|
44
|
-
"tags": [
|
|
59
|
+
"tags": [
|
|
60
|
+
"service"
|
|
61
|
+
],
|
|
45
62
|
"summary": "Wait",
|
|
46
63
|
"parameters": [
|
|
47
64
|
{
|
|
@@ -63,12 +80,27 @@
|
|
|
63
80
|
}
|
|
64
81
|
}
|
|
65
82
|
],
|
|
66
|
-
"x-events": []
|
|
83
|
+
"x-events": [],
|
|
84
|
+
"responses": {
|
|
85
|
+
"200": {
|
|
86
|
+
"description": "Sleep duration confirmation",
|
|
87
|
+
"content": {
|
|
88
|
+
"application/json": {
|
|
89
|
+
"schema": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"description": "Confirmation that sleep duration has been applied"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
67
97
|
}
|
|
68
98
|
},
|
|
69
99
|
"/condition": {
|
|
70
100
|
"post": {
|
|
71
|
-
"tags": [
|
|
101
|
+
"tags": [
|
|
102
|
+
"service"
|
|
103
|
+
],
|
|
72
104
|
"summary": "Wait condition",
|
|
73
105
|
"description": "Wait condition in a workflow",
|
|
74
106
|
"parameters": [
|
|
@@ -91,12 +123,27 @@
|
|
|
91
123
|
}
|
|
92
124
|
}
|
|
93
125
|
],
|
|
94
|
-
"x-events": []
|
|
126
|
+
"x-events": [],
|
|
127
|
+
"responses": {
|
|
128
|
+
"200": {
|
|
129
|
+
"description": "Wait condition result",
|
|
130
|
+
"content": {
|
|
131
|
+
"application/json": {
|
|
132
|
+
"schema": {
|
|
133
|
+
"type": "boolean",
|
|
134
|
+
"description": "Whether the condition was met before timeout"
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
}
|
|
95
140
|
}
|
|
96
141
|
},
|
|
97
142
|
"/goto": {
|
|
98
143
|
"post": {
|
|
99
|
-
"tags": [
|
|
144
|
+
"tags": [
|
|
145
|
+
"service"
|
|
146
|
+
],
|
|
100
147
|
"summary": "Go to step",
|
|
101
148
|
"parameters": [
|
|
102
149
|
{
|
|
@@ -118,12 +165,27 @@
|
|
|
118
165
|
}
|
|
119
166
|
}
|
|
120
167
|
],
|
|
121
|
-
"x-events": []
|
|
168
|
+
"x-events": [],
|
|
169
|
+
"responses": {
|
|
170
|
+
"200": {
|
|
171
|
+
"description": "Step number after goto",
|
|
172
|
+
"content": {
|
|
173
|
+
"application/json": {
|
|
174
|
+
"schema": {
|
|
175
|
+
"type": "number",
|
|
176
|
+
"description": "Target step number in the workflow"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
122
182
|
}
|
|
123
183
|
},
|
|
124
184
|
"/stop": {
|
|
125
185
|
"post": {
|
|
126
|
-
"tags": [
|
|
186
|
+
"tags": [
|
|
187
|
+
"service"
|
|
188
|
+
],
|
|
127
189
|
"summary": "Stop the workflow",
|
|
128
190
|
"description": "Stop the workflow",
|
|
129
191
|
"parameters": [
|
|
@@ -137,12 +199,27 @@
|
|
|
137
199
|
}
|
|
138
200
|
}
|
|
139
201
|
],
|
|
140
|
-
"x-events": []
|
|
202
|
+
"x-events": [],
|
|
203
|
+
"responses": {
|
|
204
|
+
"200": {
|
|
205
|
+
"description": "Workflow stop confirmation",
|
|
206
|
+
"content": {
|
|
207
|
+
"application/json": {
|
|
208
|
+
"schema": {
|
|
209
|
+
"type": "null",
|
|
210
|
+
"description": "Workflow has been stopped"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
141
216
|
}
|
|
142
217
|
},
|
|
143
218
|
"/push": {
|
|
144
219
|
"post": {
|
|
145
|
-
"tags": [
|
|
220
|
+
"tags": [
|
|
221
|
+
"service"
|
|
222
|
+
],
|
|
146
223
|
"summary": "Send new data to a workflow",
|
|
147
224
|
"description": "Send new data to the workflow",
|
|
148
225
|
"parameters": [
|
|
@@ -165,12 +242,27 @@
|
|
|
165
242
|
}
|
|
166
243
|
}
|
|
167
244
|
],
|
|
168
|
-
"x-events": []
|
|
245
|
+
"x-events": [],
|
|
246
|
+
"responses": {
|
|
247
|
+
"200": {
|
|
248
|
+
"description": "Data push confirmation",
|
|
249
|
+
"content": {
|
|
250
|
+
"application/json": {
|
|
251
|
+
"schema": {
|
|
252
|
+
"type": "null",
|
|
253
|
+
"description": "Data has been successfully pushed to the workflow"
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
169
259
|
}
|
|
170
260
|
},
|
|
171
261
|
"/terminate": {
|
|
172
262
|
"post": {
|
|
173
|
-
"tags": [
|
|
263
|
+
"tags": [
|
|
264
|
+
"service"
|
|
265
|
+
],
|
|
174
266
|
"summary": "Stop a workflow",
|
|
175
267
|
"description": "Stop a workflow",
|
|
176
268
|
"parameters": [
|
|
@@ -184,12 +276,27 @@
|
|
|
184
276
|
}
|
|
185
277
|
}
|
|
186
278
|
],
|
|
187
|
-
"x-events": []
|
|
279
|
+
"x-events": [],
|
|
280
|
+
"responses": {
|
|
281
|
+
"200": {
|
|
282
|
+
"description": "Workflow termination confirmation",
|
|
283
|
+
"content": {
|
|
284
|
+
"application/json": {
|
|
285
|
+
"schema": {
|
|
286
|
+
"type": "null",
|
|
287
|
+
"description": "Workflow has been successfully terminated"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
188
293
|
}
|
|
189
294
|
},
|
|
190
295
|
"/list": {
|
|
191
296
|
"post": {
|
|
192
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
193
300
|
"summary": "List workflows",
|
|
194
301
|
"description": "List workflows",
|
|
195
302
|
"parameters": [
|
|
@@ -203,18 +310,79 @@
|
|
|
203
310
|
}
|
|
204
311
|
}
|
|
205
312
|
],
|
|
206
|
-
"x-events": []
|
|
313
|
+
"x-events": [],
|
|
314
|
+
"responses": {
|
|
315
|
+
"200": {
|
|
316
|
+
"description": "List of workflows",
|
|
317
|
+
"content": {
|
|
318
|
+
"application/json": {
|
|
319
|
+
"schema": {
|
|
320
|
+
"type": "array",
|
|
321
|
+
"items": {
|
|
322
|
+
"$ref": "#/components/schemas/WorkflowExecutionInfo"
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
207
329
|
}
|
|
208
330
|
}
|
|
209
331
|
},
|
|
210
332
|
"components": {
|
|
211
|
-
"schemas": {
|
|
333
|
+
"schemas": {
|
|
334
|
+
"WorkflowExecutionInfo": {
|
|
335
|
+
"type": "object",
|
|
336
|
+
"description": "Information about a Temporal workflow execution",
|
|
337
|
+
"properties": {
|
|
338
|
+
"workflowId": {
|
|
339
|
+
"type": "string",
|
|
340
|
+
"description": "Unique identifier of the workflow"
|
|
341
|
+
},
|
|
342
|
+
"runId": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"description": "Unique identifier of the workflow run"
|
|
345
|
+
},
|
|
346
|
+
"type": {
|
|
347
|
+
"type": "object",
|
|
348
|
+
"properties": {
|
|
349
|
+
"name": {
|
|
350
|
+
"type": "string",
|
|
351
|
+
"description": "Name of the workflow type"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"status": {
|
|
356
|
+
"type": "string",
|
|
357
|
+
"enum": [
|
|
358
|
+
"Running",
|
|
359
|
+
"Completed",
|
|
360
|
+
"Failed",
|
|
361
|
+
"Cancelled",
|
|
362
|
+
"Terminated"
|
|
363
|
+
],
|
|
364
|
+
"description": "Current status of the workflow"
|
|
365
|
+
},
|
|
366
|
+
"startTime": {
|
|
367
|
+
"type": "string",
|
|
368
|
+
"format": "date-time",
|
|
369
|
+
"description": "When the workflow was started"
|
|
370
|
+
},
|
|
371
|
+
"taskQueue": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"description": "Task queue name used by the workflow"
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
212
378
|
},
|
|
213
379
|
"x-scene-blocks": {
|
|
214
380
|
"/workflow": {
|
|
215
381
|
"summary": "Temporal Workflow",
|
|
216
382
|
"description": "Execute a Temporal workflow",
|
|
217
|
-
"tags": [
|
|
383
|
+
"tags": [
|
|
384
|
+
"service"
|
|
385
|
+
],
|
|
218
386
|
"metadata": [],
|
|
219
387
|
"parameters": [
|
|
220
388
|
{
|
|
@@ -256,7 +424,19 @@
|
|
|
256
424
|
"type": "object"
|
|
257
425
|
}
|
|
258
426
|
}
|
|
259
|
-
]
|
|
427
|
+
],
|
|
428
|
+
"responses": {
|
|
429
|
+
"200": {
|
|
430
|
+
"description": "Workflow execution result",
|
|
431
|
+
"content": {
|
|
432
|
+
"application/json": {
|
|
433
|
+
"schema": {
|
|
434
|
+
"description": "The result of the last executed step in the workflow"
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
260
440
|
}
|
|
261
441
|
}
|
|
262
|
-
}
|
|
442
|
+
}
|