@digipair/skill-factory 0.97.0 → 0.98.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/index.esm.js +5 -5
- package/package.json +1 -1
- package/schema.fr.json +332 -343
- package/schema.json +339 -350
package/schema.json
CHANGED
|
@@ -62,394 +62,383 @@
|
|
|
62
62
|
"schema": {
|
|
63
63
|
"$ref": "#/components/schemas/ReasoningResult"
|
|
64
64
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"/execute": {
|
|
72
|
+
"post": {
|
|
73
|
+
"tags": [
|
|
74
|
+
"service"
|
|
75
|
+
],
|
|
76
|
+
"summary": "Execute with context",
|
|
77
|
+
"description": "Execute a Pin's with a given context",
|
|
78
|
+
"parameters": [
|
|
79
|
+
{
|
|
80
|
+
"name": "execute",
|
|
81
|
+
"required": true,
|
|
82
|
+
"summary": "Actions to execute",
|
|
83
|
+
"description": "Actions to execute",
|
|
84
|
+
"schema": {
|
|
85
|
+
"type": "array",
|
|
86
|
+
"items": {
|
|
87
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "context",
|
|
93
|
+
"required": false,
|
|
94
|
+
"summary": "Context",
|
|
95
|
+
"description": "Context of the execution",
|
|
96
|
+
"schema": {
|
|
97
|
+
"type": "object"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
],
|
|
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
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"/keepAlive": {
|
|
117
|
+
"post": {
|
|
118
|
+
"tags": [
|
|
119
|
+
"service"
|
|
120
|
+
],
|
|
121
|
+
"summary": "Keep Alive",
|
|
122
|
+
"description": "Keep alive the reasoning",
|
|
123
|
+
"parameters": [],
|
|
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
|
+
}
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"/stop": {
|
|
140
|
+
"post": {
|
|
141
|
+
"tags": [
|
|
142
|
+
"service"
|
|
143
|
+
],
|
|
144
|
+
"summary": "Stop",
|
|
145
|
+
"description": "Stop the reasoning",
|
|
146
|
+
"parameters": [
|
|
147
|
+
{
|
|
148
|
+
"name": "value",
|
|
149
|
+
"required": false,
|
|
150
|
+
"summary": "Value",
|
|
151
|
+
"description": "Value to return",
|
|
152
|
+
"schema": {
|
|
153
|
+
"type": "object"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
],
|
|
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
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"components": {
|
|
174
|
+
"schemas": {
|
|
175
|
+
"Parameter": {
|
|
176
|
+
"type": "object",
|
|
177
|
+
"tags": [
|
|
178
|
+
"service"
|
|
179
|
+
],
|
|
180
|
+
"summary": "Parameter",
|
|
181
|
+
"properties": {
|
|
182
|
+
"name": {
|
|
183
|
+
"summary": "Name",
|
|
184
|
+
"type": "string"
|
|
185
|
+
},
|
|
186
|
+
"summary": {
|
|
187
|
+
"summary": "Summary",
|
|
188
|
+
"type": "string"
|
|
189
|
+
},
|
|
190
|
+
"required": {
|
|
191
|
+
"summary": "Required",
|
|
192
|
+
"type": "boolean"
|
|
193
|
+
},
|
|
194
|
+
"ignoreForAI": {
|
|
195
|
+
"summary": "Ignore for AI",
|
|
196
|
+
"type": "boolean"
|
|
197
|
+
},
|
|
198
|
+
"schema": {
|
|
199
|
+
"summary": "Schema",
|
|
200
|
+
"type": "object"
|
|
201
|
+
},
|
|
202
|
+
"description": {
|
|
203
|
+
"summary": "Summary",
|
|
204
|
+
"type": "string"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
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"
|
|
70
263
|
}
|
|
71
264
|
}
|
|
72
265
|
}
|
|
73
266
|
}
|
|
74
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
|
+
}
|
|
75
317
|
}
|
|
76
318
|
}
|
|
77
319
|
},
|
|
78
|
-
"
|
|
79
|
-
"
|
|
320
|
+
"x-scene-blocks": {
|
|
321
|
+
"/task": {
|
|
322
|
+
"summary": "Task",
|
|
323
|
+
"description": "Execution of a task.",
|
|
80
324
|
"tags": [
|
|
81
325
|
"service"
|
|
82
326
|
],
|
|
83
|
-
"
|
|
84
|
-
"description": "Execute a Pin's with a given context",
|
|
327
|
+
"metadata": [],
|
|
85
328
|
"parameters": [
|
|
86
329
|
{
|
|
87
330
|
"name": "execute",
|
|
331
|
+
"summary": "Execute",
|
|
88
332
|
"required": true,
|
|
89
|
-
"
|
|
90
|
-
"description": "Actions to execute",
|
|
333
|
+
"description": "Commands to execute",
|
|
91
334
|
"schema": {
|
|
92
335
|
"type": "array",
|
|
93
336
|
"items": {
|
|
94
337
|
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
95
338
|
}
|
|
96
339
|
}
|
|
340
|
+
}
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
"/action": {
|
|
344
|
+
"summary": "Action",
|
|
345
|
+
"description": "Executable action.",
|
|
346
|
+
"tags": [
|
|
347
|
+
"service"
|
|
348
|
+
],
|
|
349
|
+
"metadata": [
|
|
350
|
+
{
|
|
351
|
+
"name": "parameters",
|
|
352
|
+
"summary": "Parameters",
|
|
353
|
+
"required": true,
|
|
354
|
+
"description": "Input parameters",
|
|
355
|
+
"schema": {
|
|
356
|
+
"type": "array",
|
|
357
|
+
"items": {
|
|
358
|
+
"$ref": "#/components/schemas/Parameter"
|
|
359
|
+
}
|
|
360
|
+
}
|
|
97
361
|
},
|
|
98
362
|
{
|
|
99
|
-
"name": "
|
|
363
|
+
"name": "output",
|
|
364
|
+
"summary": "Output format",
|
|
100
365
|
"required": false,
|
|
101
|
-
"
|
|
102
|
-
"description": "Context of the execution",
|
|
366
|
+
"description": "Output format of the action",
|
|
103
367
|
"schema": {
|
|
104
368
|
"type": "object"
|
|
105
369
|
}
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"name": "context",
|
|
373
|
+
"summary": "Contexte",
|
|
374
|
+
"required": false,
|
|
375
|
+
"description": "Display execution context",
|
|
376
|
+
"schema": {
|
|
377
|
+
"type": "boolean"
|
|
378
|
+
}
|
|
106
379
|
}
|
|
107
380
|
],
|
|
108
|
-
"
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"data": {
|
|
119
|
-
"executed": true,
|
|
120
|
-
"results": []
|
|
121
|
-
}
|
|
381
|
+
"parameters": [
|
|
382
|
+
{
|
|
383
|
+
"name": "execute",
|
|
384
|
+
"summary": "Execute",
|
|
385
|
+
"required": true,
|
|
386
|
+
"description": "Commands to execute",
|
|
387
|
+
"schema": {
|
|
388
|
+
"type": "array",
|
|
389
|
+
"items": {
|
|
390
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
122
391
|
}
|
|
123
392
|
}
|
|
124
393
|
}
|
|
125
|
-
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
"schema": {
|
|
144
|
-
"$ref": "#/components/schemas/KeepAliveResult"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
"/trigger": {
|
|
397
|
+
"summary": "Trigger",
|
|
398
|
+
"description": "Executable trigger.",
|
|
399
|
+
"tags": [
|
|
400
|
+
"service"
|
|
401
|
+
],
|
|
402
|
+
"metadata": [
|
|
403
|
+
{
|
|
404
|
+
"name": "tags",
|
|
405
|
+
"summary": "Tags",
|
|
406
|
+
"required": true,
|
|
407
|
+
"description": "Trigger tags",
|
|
408
|
+
"schema": {
|
|
409
|
+
"type": "array",
|
|
410
|
+
"items": {
|
|
411
|
+
"type": "string"
|
|
145
412
|
}
|
|
146
|
-
"type": "DIGIPAIR_KEEPALIVE",
|
|
147
|
-
"status": "alive"
|
|
148
413
|
}
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"/stop": {
|
|
156
|
-
"post": {
|
|
157
|
-
"tags": [
|
|
158
|
-
"service"
|
|
159
|
-
],
|
|
160
|
-
"summary": "Stop",
|
|
161
|
-
"description": "Stop the reasoning",
|
|
162
|
-
"parameters": [
|
|
163
|
-
{
|
|
164
|
-
"name": "value",
|
|
165
|
-
"required": false,
|
|
166
|
-
"summary": "Value",
|
|
167
|
-
"description": "Value to return",
|
|
168
|
-
"schema": {
|
|
169
|
-
"type": "object"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
],
|
|
173
|
-
"x-events": [],
|
|
174
|
-
"responses": {
|
|
175
|
-
"200": {
|
|
176
|
-
"description": "Reasoning stopped successfully",
|
|
177
|
-
"content": {
|
|
178
|
-
"application/json": {
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "parameters",
|
|
417
|
+
"summary": "Parameters",
|
|
418
|
+
"required": true,
|
|
419
|
+
"description": "Input parameters",
|
|
179
420
|
"schema": {
|
|
180
|
-
"
|
|
421
|
+
"type": "array",
|
|
422
|
+
"items": {
|
|
423
|
+
"$ref": "#/components/schemas/Parameter"
|
|
424
|
+
}
|
|
181
425
|
}
|
|
182
|
-
"type": "DIGIPAIR_STOP",
|
|
183
|
-
"value": {},
|
|
184
|
-
"status": "stopped"
|
|
185
426
|
}
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"
|
|
194
|
-
"
|
|
195
|
-
"
|
|
196
|
-
"
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
],
|
|
200
|
-
"summary": "Parameter",
|
|
201
|
-
"properties": {
|
|
202
|
-
"name": {
|
|
203
|
-
"summary": "Name",
|
|
204
|
-
"type": "string"
|
|
205
|
-
},
|
|
206
|
-
"summary": {
|
|
207
|
-
"summary": "Summary",
|
|
208
|
-
"type": "string"
|
|
209
|
-
},
|
|
210
|
-
"required": {
|
|
211
|
-
"summary": "Required",
|
|
212
|
-
"type": "boolean"
|
|
213
|
-
},
|
|
214
|
-
"ignoreForAI": {
|
|
215
|
-
"summary": "Ignore for AI",
|
|
216
|
-
"type": "boolean"
|
|
217
|
-
},
|
|
218
|
-
"schema": {
|
|
219
|
-
"summary": "Schema",
|
|
220
|
-
"type": "object"
|
|
221
|
-
},
|
|
222
|
-
"description": {
|
|
223
|
-
"summary": "Summary",
|
|
224
|
-
"type": "string"
|
|
225
|
-
}
|
|
226
|
-
},
|
|
227
|
-
"required": [
|
|
228
|
-
"name",
|
|
229
|
-
"summary",
|
|
230
|
-
"required",
|
|
231
|
-
"schema"
|
|
232
|
-
]
|
|
233
|
-
},
|
|
234
|
-
"ReasoningResult": {
|
|
235
|
-
"type": "object",
|
|
236
|
-
"description": "Result of reasoning execution",
|
|
237
|
-
"properties": {
|
|
238
|
-
"success": {
|
|
239
|
-
"type": "boolean",
|
|
240
|
-
"description": "Whether the reasoning was started successfully"
|
|
241
|
-
},
|
|
242
|
-
"result": {
|
|
243
|
-
"type": "object",
|
|
244
|
-
"description": "Details of the reasoning execution",
|
|
245
|
-
"properties": {
|
|
246
|
-
"status": {
|
|
247
|
-
"type": "string",
|
|
248
|
-
"description": "Current status of the reasoning"
|
|
249
|
-
},
|
|
250
|
-
"reasoning": {
|
|
251
|
-
"type": "string",
|
|
252
|
-
"description": "Name of the reasoning that was started"
|
|
253
|
-
},
|
|
254
|
-
"digipair": {
|
|
255
|
-
"type": "string",
|
|
256
|
-
"description": "Owner of the reasoning"
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
},
|
|
262
|
-
"ExecutionResult": {
|
|
263
|
-
"type": "object",
|
|
264
|
-
"description": "Result of Pin's execution",
|
|
265
|
-
"properties": {
|
|
266
|
-
"success": {
|
|
267
|
-
"type": "boolean",
|
|
268
|
-
"description": "Whether the execution was successful"
|
|
269
|
-
},
|
|
270
|
-
"data": {
|
|
271
|
-
"type": "object",
|
|
272
|
-
"description": "Data returned from the execution",
|
|
273
|
-
"properties": {
|
|
274
|
-
"executed": {
|
|
275
|
-
"type": "boolean",
|
|
276
|
-
"description": "Whether the execution was completed"
|
|
277
|
-
},
|
|
278
|
-
"results": {
|
|
279
|
-
"type": "array",
|
|
280
|
-
"description": "Results from the executed pins",
|
|
281
|
-
"items": {
|
|
282
|
-
"type": "object"
|
|
427
|
+
],
|
|
428
|
+
"parameters": [
|
|
429
|
+
{
|
|
430
|
+
"name": "execute",
|
|
431
|
+
"summary": "Execute",
|
|
432
|
+
"required": true,
|
|
433
|
+
"description": "Commands to execute",
|
|
434
|
+
"schema": {
|
|
435
|
+
"type": "array",
|
|
436
|
+
"items": {
|
|
437
|
+
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
438
|
+
}
|
|
439
|
+
}
|
|
283
440
|
}
|
|
284
|
-
|
|
285
|
-
}
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
},
|
|
289
|
-
"KeepAliveResult": {
|
|
290
|
-
"type": "object",
|
|
291
|
-
"description": "Result of keep alive operation",
|
|
292
|
-
"properties": {
|
|
293
|
-
"type": {
|
|
294
|
-
"type": "string",
|
|
295
|
-
"description": "Type of the keep alive response"
|
|
296
|
-
},
|
|
297
|
-
"status": {
|
|
298
|
-
"type": "string",
|
|
299
|
-
"description": "Status of the keep alive operation"
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
},
|
|
303
|
-
"StopResult": {
|
|
304
|
-
"type": "object",
|
|
305
|
-
"description": "Result of stop operation",
|
|
306
|
-
"properties": {
|
|
307
|
-
"type": {
|
|
308
|
-
"type": "string",
|
|
309
|
-
"description": "Type of the stop response"
|
|
310
|
-
},
|
|
311
|
-
"value": {
|
|
312
|
-
"type": "object",
|
|
313
|
-
"description": "Value returned when stopping the reasoning"
|
|
314
|
-
},
|
|
315
|
-
"status": {
|
|
316
|
-
"type": "string",
|
|
317
|
-
"description": "Status of the stop operation"
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
},
|
|
321
|
-
"TaskResult": {
|
|
322
|
-
"type": "object",
|
|
323
|
-
"description": "Result of task execution",
|
|
324
|
-
"properties": {
|
|
325
|
-
"success": {
|
|
326
|
-
"type": "boolean",
|
|
327
|
-
"description": "Whether the task execution was successful"
|
|
328
|
-
},
|
|
329
|
-
"results": {
|
|
330
|
-
"type": "array",
|
|
331
|
-
"description": "Results from the executed task",
|
|
332
|
-
"items": {
|
|
333
|
-
"type": "object"
|
|
334
|
-
}
|
|
335
|
-
}
|
|
336
|
-
}
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
},
|
|
340
|
-
"x-scene-blocks": {
|
|
341
|
-
"/task": {
|
|
342
|
-
"summary": "Task",
|
|
343
|
-
"description": "Execution of a task.",
|
|
344
|
-
"tags": [
|
|
345
|
-
"service"
|
|
346
|
-
],
|
|
347
|
-
"metadata": [],
|
|
348
|
-
"parameters": [
|
|
349
|
-
{
|
|
350
|
-
"name": "execute",
|
|
351
|
-
"summary": "Execute",
|
|
352
|
-
"required": true,
|
|
353
|
-
"description": "Commands to execute",
|
|
354
|
-
"schema": {
|
|
355
|
-
"type": "array",
|
|
356
|
-
"items": {
|
|
357
|
-
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
358
|
-
}
|
|
359
|
-
}
|
|
360
|
-
}
|
|
361
|
-
]
|
|
362
|
-
},
|
|
363
|
-
"/action": {
|
|
364
|
-
"summary": "Action",
|
|
365
|
-
"description": "Executable action.",
|
|
366
|
-
"tags": [
|
|
367
|
-
"service"
|
|
368
|
-
],
|
|
369
|
-
"metadata": [
|
|
370
|
-
{
|
|
371
|
-
"name": "parameters",
|
|
372
|
-
"summary": "Parameters",
|
|
373
|
-
"required": true,
|
|
374
|
-
"description": "Input parameters",
|
|
375
|
-
"schema": {
|
|
376
|
-
"type": "array",
|
|
377
|
-
"items": {
|
|
378
|
-
"$ref": "#/components/schemas/Parameter"
|
|
379
|
-
}
|
|
380
|
-
}
|
|
381
|
-
},
|
|
382
|
-
{
|
|
383
|
-
"name": "context",
|
|
384
|
-
"summary": "Contexte",
|
|
385
|
-
"required": false,
|
|
386
|
-
"description": "Display execution context",
|
|
387
|
-
"schema": {
|
|
388
|
-
"type": "boolean"
|
|
389
|
-
}
|
|
390
|
-
}
|
|
391
|
-
],
|
|
392
|
-
"parameters": [
|
|
393
|
-
{
|
|
394
|
-
"name": "execute",
|
|
395
|
-
"summary": "Execute",
|
|
396
|
-
"required": true,
|
|
397
|
-
"description": "Commands to execute",
|
|
398
|
-
"schema": {
|
|
399
|
-
"type": "array",
|
|
400
|
-
"items": {
|
|
401
|
-
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
]
|
|
406
|
-
},
|
|
407
|
-
"/trigger": {
|
|
408
|
-
"summary": "Trigger",
|
|
409
|
-
"description": "Executable trigger.",
|
|
410
|
-
"tags": [
|
|
411
|
-
"service"
|
|
412
|
-
],
|
|
413
|
-
"metadata": [
|
|
414
|
-
{
|
|
415
|
-
"name": "tags",
|
|
416
|
-
"summary": "Tags",
|
|
417
|
-
"required": true,
|
|
418
|
-
"description": "Trigger tags",
|
|
419
|
-
"schema": {
|
|
420
|
-
"type": "array",
|
|
421
|
-
"items": {
|
|
422
|
-
"type": "string"
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
{
|
|
427
|
-
"name": "parameters",
|
|
428
|
-
"summary": "Parameters",
|
|
429
|
-
"required": true,
|
|
430
|
-
"description": "Input parameters",
|
|
431
|
-
"schema": {
|
|
432
|
-
"type": "array",
|
|
433
|
-
"items": {
|
|
434
|
-
"$ref": "#/components/schemas/Parameter"
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
}
|
|
438
|
-
],
|
|
439
|
-
"parameters": [
|
|
440
|
-
{
|
|
441
|
-
"name": "execute",
|
|
442
|
-
"summary": "Execute",
|
|
443
|
-
"required": true,
|
|
444
|
-
"description": "Commands to execute",
|
|
445
|
-
"schema": {
|
|
446
|
-
"type": "array",
|
|
447
|
-
"items": {
|
|
448
|
-
"$ref": "https://schemas.digipair.ai/pinsSettings"
|
|
441
|
+
]
|
|
449
442
|
}
|
|
450
443
|
}
|
|
451
|
-
}
|
|
452
|
-
]
|
|
453
|
-
}
|
|
454
|
-
}
|
|
455
444
|
}
|