@apteva/integrations 0.15.10 → 0.15.12
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/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +144 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/fal-ai.json +278 -290
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/kling-ai.json +197 -161
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/leadbyte.json +16 -54
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/replicate.json +315 -61
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/runway.json +386 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stability-ai.json +356 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +19 -21
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "runway",
|
|
3
|
+
"name": "Runway",
|
|
4
|
+
"description": "Runway API for generative video, images, audio, upscaling, tasks, uploads, organization usage, recipes, voices, and workflows.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=runwayml.com&sz=128",
|
|
6
|
+
"categories": ["ai", "video-generation", "image-generation", "audio", "upscale", "generative-ai"],
|
|
7
|
+
"base_url": "https://api.dev.runwayml.com",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["bearer"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"Authorization": "Bearer {{token}}",
|
|
12
|
+
"X-Runway-Version": "2024-11-06",
|
|
13
|
+
"Content-Type": "application/json"
|
|
14
|
+
},
|
|
15
|
+
"credential_fields": [
|
|
16
|
+
{
|
|
17
|
+
"name": "token",
|
|
18
|
+
"label": "API Key",
|
|
19
|
+
"type": "password",
|
|
20
|
+
"description": "Runway API key from https://dev.runwayml.com."
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
"health_check": {
|
|
25
|
+
"tool": "get_organization"
|
|
26
|
+
},
|
|
27
|
+
"tools": [
|
|
28
|
+
{
|
|
29
|
+
"name": "text_to_video",
|
|
30
|
+
"description": "Start a Runway text-to-video task. Returns a task id; poll get_task for status and output URLs.",
|
|
31
|
+
"method": "POST",
|
|
32
|
+
"path": "/v1/text_to_video",
|
|
33
|
+
"timeout_ms": 120000,
|
|
34
|
+
"input_schema": {
|
|
35
|
+
"type": "object",
|
|
36
|
+
"properties": {
|
|
37
|
+
"model": { "type": "string", "description": "Video model id, e.g. gen4.5, seedance2, seedance2_fast, seedance2_mini, happyhorse_1_0, gemini_omni_flash.", "default": "gen4.5" },
|
|
38
|
+
"promptText": { "type": "string", "description": "Text prompt for the video." },
|
|
39
|
+
"ratio": { "type": "string", "description": "Output width:height ratio/resolution, e.g. 1280:720, 720:1280, 1920:1080, 1080:1920, or model-specific 4K values." },
|
|
40
|
+
"duration": { "type": "integer", "description": "Duration in seconds. Supported range is model-specific.", "minimum": 2, "maximum": 15 },
|
|
41
|
+
"seed": { "type": "integer", "minimum": 0, "maximum": 4294967295 },
|
|
42
|
+
"contentModeration": { "type": "object", "description": "Optional Runway content moderation settings." }
|
|
43
|
+
},
|
|
44
|
+
"required": ["model", "promptText"]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "image_to_video",
|
|
49
|
+
"description": "Start a Runway image-to-video task. promptImage can be a URL/runway URI/data URI string or an array of first/last image objects.",
|
|
50
|
+
"method": "POST",
|
|
51
|
+
"path": "/v1/image_to_video",
|
|
52
|
+
"timeout_ms": 120000,
|
|
53
|
+
"input_schema": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {
|
|
56
|
+
"model": { "type": "string", "description": "Video model id, e.g. gen4.5, seedance2, veo3.1, happyhorse_1_0, gemini_omni_flash.", "default": "gen4.5" },
|
|
57
|
+
"promptImage": {
|
|
58
|
+
"description": "First/last frame input. String URL/runway URI/data URI, or [{uri, position:'first'|'last'}].",
|
|
59
|
+
"oneOf": [
|
|
60
|
+
{ "type": "string" },
|
|
61
|
+
{
|
|
62
|
+
"type": "array",
|
|
63
|
+
"items": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {
|
|
66
|
+
"uri": { "type": "string" },
|
|
67
|
+
"position": { "type": "string", "enum": ["first", "last"] }
|
|
68
|
+
},
|
|
69
|
+
"required": ["uri", "position"]
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
},
|
|
74
|
+
"promptText": { "type": "string", "description": "Optional motion/action prompt." },
|
|
75
|
+
"ratio": { "type": "string", "description": "Output ratio/resolution when supported, e.g. 1280:720 or 720:1280." },
|
|
76
|
+
"resolution": { "type": "string", "description": "Quality/resolution for models that use resolution instead of ratio.", "enum": ["720P", "1080P", "720p", "1080p"] },
|
|
77
|
+
"duration": { "type": "integer", "minimum": 2, "maximum": 15 },
|
|
78
|
+
"seed": { "type": "integer", "minimum": 0, "maximum": 4294967295 },
|
|
79
|
+
"contentModeration": { "type": "object" }
|
|
80
|
+
},
|
|
81
|
+
"required": ["model", "promptImage"]
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "video_to_video",
|
|
86
|
+
"description": "Start a Runway video-to-video/edit task for models such as aleph2, seedance2, or gemini_omni_flash.",
|
|
87
|
+
"method": "POST",
|
|
88
|
+
"path": "/v1/video_to_video",
|
|
89
|
+
"timeout_ms": 120000,
|
|
90
|
+
"input_schema": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"properties": {
|
|
93
|
+
"model": { "type": "string", "description": "Video edit model id, e.g. aleph2, seedance2, seedance2_fast, gemini_omni_flash." },
|
|
94
|
+
"videoUri": { "type": "string", "description": "Input video URL, data URI, or runway:// upload URI." },
|
|
95
|
+
"promptText": { "type": "string", "description": "Edit prompt." },
|
|
96
|
+
"referenceImages": { "type": "array", "description": "Optional reference images.", "items": { "type": "string" } },
|
|
97
|
+
"keyframes": { "type": "array", "description": "Optional keyframe image controls for supported models.", "items": { "type": "object" } },
|
|
98
|
+
"seed": { "type": "integer", "minimum": 0, "maximum": 4294967295 },
|
|
99
|
+
"contentModeration": { "type": "object" }
|
|
100
|
+
},
|
|
101
|
+
"required": ["model", "videoUri", "promptText"]
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"name": "text_to_image",
|
|
106
|
+
"description": "Start a Runway text/reference-to-image task. Returns a task id.",
|
|
107
|
+
"method": "POST",
|
|
108
|
+
"path": "/v1/text_to_image",
|
|
109
|
+
"timeout_ms": 120000,
|
|
110
|
+
"input_schema": {
|
|
111
|
+
"type": "object",
|
|
112
|
+
"properties": {
|
|
113
|
+
"model": { "type": "string", "description": "Image model id, e.g. gen4_image, gen4_image_turbo, gpt_image_2, gemini_image3_pro.", "default": "gen4_image" },
|
|
114
|
+
"promptText": { "type": "string", "description": "Image prompt." },
|
|
115
|
+
"ratio": { "type": "string", "description": "Output width:height ratio/resolution, e.g. 1360:768, 1024:1024, auto, or model-specific values." },
|
|
116
|
+
"referenceImages": { "type": "array", "description": "Optional reference image URLs/data URIs/runway URIs or tagged reference objects.", "items": { "type": ["string", "object"] } },
|
|
117
|
+
"seed": { "type": "integer", "minimum": 0, "maximum": 4294967295 },
|
|
118
|
+
"contentModeration": { "type": "object" }
|
|
119
|
+
},
|
|
120
|
+
"required": ["model", "promptText"]
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "image_upscale",
|
|
125
|
+
"description": "Start an image upscale task.",
|
|
126
|
+
"method": "POST",
|
|
127
|
+
"path": "/v1/image_upscale",
|
|
128
|
+
"timeout_ms": 120000,
|
|
129
|
+
"input_schema": {
|
|
130
|
+
"type": "object",
|
|
131
|
+
"properties": {
|
|
132
|
+
"model": { "type": "string", "description": "Image upscale model id." },
|
|
133
|
+
"imageUri": { "type": "string", "description": "Input image URL/data URI/runway URI." },
|
|
134
|
+
"scale": { "type": "integer", "description": "Upscale factor when supported.", "minimum": 2, "maximum": 4 },
|
|
135
|
+
"contentModeration": { "type": "object" }
|
|
136
|
+
},
|
|
137
|
+
"required": ["model", "imageUri"]
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"name": "video_upscale",
|
|
142
|
+
"description": "Start a video upscale task. For Magnific use model magnific_video_upscaler_creative.",
|
|
143
|
+
"method": "POST",
|
|
144
|
+
"path": "/v1/video_upscale",
|
|
145
|
+
"timeout_ms": 120000,
|
|
146
|
+
"input_schema": {
|
|
147
|
+
"type": "object",
|
|
148
|
+
"properties": {
|
|
149
|
+
"model": { "type": "string", "default": "magnific_video_upscaler_creative" },
|
|
150
|
+
"videoUri": { "type": "string", "description": "Input video URL/data URI/runway URI." },
|
|
151
|
+
"resolution": { "type": "string", "enum": ["720p", "1k", "2k", "4k"], "default": "2k" },
|
|
152
|
+
"creativity": { "type": "number", "description": "Creative hallucination/detail strength, model-specific." },
|
|
153
|
+
"sharpen": { "type": "number" },
|
|
154
|
+
"smartGrain": { "type": "number" },
|
|
155
|
+
"flavor": { "type": "string" },
|
|
156
|
+
"fpsBoost": { "type": "boolean" },
|
|
157
|
+
"contentModeration": { "type": "object" }
|
|
158
|
+
},
|
|
159
|
+
"required": ["model", "videoUri"]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "sound_effect",
|
|
164
|
+
"description": "Generate a sound effect from text, optionally with audio references.",
|
|
165
|
+
"method": "POST",
|
|
166
|
+
"path": "/v1/sound_effect",
|
|
167
|
+
"timeout_ms": 120000,
|
|
168
|
+
"input_schema": {
|
|
169
|
+
"type": "object",
|
|
170
|
+
"properties": {
|
|
171
|
+
"model": { "type": "string", "description": "Audio model id, e.g. seed_audio." },
|
|
172
|
+
"promptText": { "type": "string" },
|
|
173
|
+
"duration": { "type": "number", "description": "Output duration in seconds." },
|
|
174
|
+
"referenceAudio": { "type": "array", "items": { "type": "string" }, "description": "Optional reference audio URLs/data URIs/runway URIs." },
|
|
175
|
+
"outputFormat": { "type": "string", "enum": ["wav", "mp3", "ogg"] }
|
|
176
|
+
},
|
|
177
|
+
"required": ["model", "promptText"]
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"name": "text_to_speech",
|
|
182
|
+
"description": "Generate speech from text.",
|
|
183
|
+
"method": "POST",
|
|
184
|
+
"path": "/v1/text_to_speech",
|
|
185
|
+
"timeout_ms": 120000,
|
|
186
|
+
"input_schema": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"model": { "type": "string", "description": "TTS model id, e.g. seed_audio or eleven_multilingual_v2." },
|
|
190
|
+
"text": { "type": "string", "description": "Text to synthesize." },
|
|
191
|
+
"voice": { "type": ["string", "object"], "description": "Voice id or voice configuration, depending on model." },
|
|
192
|
+
"outputFormat": { "type": "string", "enum": ["wav", "mp3", "ogg"] }
|
|
193
|
+
},
|
|
194
|
+
"required": ["model", "text", "voice"]
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "speech_to_speech",
|
|
199
|
+
"description": "Transform speech audio while preserving or changing voice characteristics.",
|
|
200
|
+
"method": "POST",
|
|
201
|
+
"path": "/v1/speech_to_speech",
|
|
202
|
+
"timeout_ms": 120000,
|
|
203
|
+
"input_schema": {
|
|
204
|
+
"type": "object",
|
|
205
|
+
"properties": {
|
|
206
|
+
"model": { "type": "string" },
|
|
207
|
+
"audioUri": { "type": "string", "description": "Input audio URL/data URI/runway URI." },
|
|
208
|
+
"promptText": { "type": "string" },
|
|
209
|
+
"voice": { "type": ["string", "object"] },
|
|
210
|
+
"outputFormat": { "type": "string", "enum": ["wav", "mp3", "ogg"] }
|
|
211
|
+
},
|
|
212
|
+
"required": ["model", "audioUri"]
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "voice_dubbing",
|
|
217
|
+
"description": "Dub voice/audio into a target language.",
|
|
218
|
+
"method": "POST",
|
|
219
|
+
"path": "/v1/voice_dubbing",
|
|
220
|
+
"timeout_ms": 120000,
|
|
221
|
+
"input_schema": {
|
|
222
|
+
"type": "object",
|
|
223
|
+
"properties": {
|
|
224
|
+
"model": { "type": "string" },
|
|
225
|
+
"audioUri": { "type": "string" },
|
|
226
|
+
"videoUri": { "type": "string" },
|
|
227
|
+
"targetLanguage": { "type": "string", "description": "Target language code or name." },
|
|
228
|
+
"sourceLanguage": { "type": "string" }
|
|
229
|
+
},
|
|
230
|
+
"required": ["model", "targetLanguage"]
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"name": "voice_isolation",
|
|
235
|
+
"description": "Isolate speech from an audio or video recording.",
|
|
236
|
+
"method": "POST",
|
|
237
|
+
"path": "/v1/voice_isolation",
|
|
238
|
+
"timeout_ms": 120000,
|
|
239
|
+
"input_schema": {
|
|
240
|
+
"type": "object",
|
|
241
|
+
"properties": {
|
|
242
|
+
"model": { "type": "string" },
|
|
243
|
+
"audioUri": { "type": "string" },
|
|
244
|
+
"videoUri": { "type": "string" },
|
|
245
|
+
"outputFormat": { "type": "string", "enum": ["wav", "mp3"] }
|
|
246
|
+
},
|
|
247
|
+
"required": ["model"]
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"name": "character_performance",
|
|
252
|
+
"description": "Create a character performance task from source media and driving input.",
|
|
253
|
+
"method": "POST",
|
|
254
|
+
"path": "/v1/character_performance",
|
|
255
|
+
"timeout_ms": 120000,
|
|
256
|
+
"input_schema": {
|
|
257
|
+
"type": "object",
|
|
258
|
+
"properties": {
|
|
259
|
+
"model": { "type": "string" },
|
|
260
|
+
"characterImage": { "type": "string", "description": "Character image URL/data URI/runway URI." },
|
|
261
|
+
"drivingVideo": { "type": "string", "description": "Optional driving video URL/data URI/runway URI." },
|
|
262
|
+
"drivingAudio": { "type": "string", "description": "Optional driving audio URL/data URI/runway URI." },
|
|
263
|
+
"promptText": { "type": "string" }
|
|
264
|
+
},
|
|
265
|
+
"required": ["model", "characterImage"]
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"name": "get_task",
|
|
270
|
+
"description": "Get a Runway task by id. Use for generated image/video/audio task status and output URLs.",
|
|
271
|
+
"method": "GET",
|
|
272
|
+
"path": "/v1/tasks/{task_id}",
|
|
273
|
+
"input_schema": {
|
|
274
|
+
"type": "object",
|
|
275
|
+
"properties": {
|
|
276
|
+
"task_id": { "type": "string" }
|
|
277
|
+
},
|
|
278
|
+
"required": ["task_id"]
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "cancel_or_delete_task",
|
|
283
|
+
"description": "Cancel or delete a Runway task.",
|
|
284
|
+
"method": "DELETE",
|
|
285
|
+
"path": "/v1/tasks/{task_id}",
|
|
286
|
+
"input_schema": {
|
|
287
|
+
"type": "object",
|
|
288
|
+
"properties": {
|
|
289
|
+
"task_id": { "type": "string" }
|
|
290
|
+
},
|
|
291
|
+
"required": ["task_id"]
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"name": "create_upload",
|
|
296
|
+
"description": "Create an ephemeral upload. Then POST the returned form fields plus the file to uploadUrl; use runwayUri in generation inputs.",
|
|
297
|
+
"method": "POST",
|
|
298
|
+
"path": "/v1/uploads",
|
|
299
|
+
"input_schema": {
|
|
300
|
+
"type": "object",
|
|
301
|
+
"properties": {
|
|
302
|
+
"filename": { "type": "string", "description": "Filename with representative extension, e.g. input.mp4." },
|
|
303
|
+
"type": { "type": "string", "enum": ["ephemeral"], "default": "ephemeral" }
|
|
304
|
+
},
|
|
305
|
+
"required": ["filename", "type"]
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "get_organization",
|
|
310
|
+
"description": "Get the authenticated Runway organization/account.",
|
|
311
|
+
"method": "GET",
|
|
312
|
+
"path": "/v1/organization",
|
|
313
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "query_organization_usage",
|
|
317
|
+
"description": "Query Runway organization credit usage for a date range.",
|
|
318
|
+
"method": "POST",
|
|
319
|
+
"path": "/v1/organization/usage",
|
|
320
|
+
"input_schema": {
|
|
321
|
+
"type": "object",
|
|
322
|
+
"properties": {
|
|
323
|
+
"startDate": { "type": "string", "description": "Start date/time." },
|
|
324
|
+
"endDate": { "type": "string", "description": "End date/time." },
|
|
325
|
+
"groupBy": { "type": "string", "description": "Optional grouping supported by Runway." }
|
|
326
|
+
},
|
|
327
|
+
"required": ["startDate", "endDate"]
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "list_voices",
|
|
332
|
+
"description": "List available Runway voices.",
|
|
333
|
+
"method": "GET",
|
|
334
|
+
"path": "/v1/voices",
|
|
335
|
+
"input_schema": {
|
|
336
|
+
"type": "object",
|
|
337
|
+
"properties": {
|
|
338
|
+
"cursor": { "type": "string" },
|
|
339
|
+
"limit": { "type": "integer", "minimum": 1, "maximum": 100 }
|
|
340
|
+
}
|
|
341
|
+
}
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"name": "list_workflows",
|
|
345
|
+
"description": "List Runway workflows.",
|
|
346
|
+
"method": "GET",
|
|
347
|
+
"path": "/v1/workflows",
|
|
348
|
+
"input_schema": {
|
|
349
|
+
"type": "object",
|
|
350
|
+
"properties": {
|
|
351
|
+
"cursor": { "type": "string" },
|
|
352
|
+
"limit": { "type": "integer", "minimum": 1, "maximum": 100 }
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "invoke_workflow",
|
|
358
|
+
"description": "Invoke a Runway workflow version.",
|
|
359
|
+
"method": "POST",
|
|
360
|
+
"path": "/v1/workflows/{workflow_id}/versions/{version_id}/invoke",
|
|
361
|
+
"input_schema": {
|
|
362
|
+
"type": "object",
|
|
363
|
+
"additionalProperties": true,
|
|
364
|
+
"properties": {
|
|
365
|
+
"workflow_id": { "type": "string" },
|
|
366
|
+
"version_id": { "type": "string" },
|
|
367
|
+
"inputs": { "type": "object", "description": "Workflow input map." }
|
|
368
|
+
},
|
|
369
|
+
"required": ["workflow_id", "version_id", "inputs"]
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"name": "get_workflow_invocation",
|
|
374
|
+
"description": "Get Runway workflow invocation status/output.",
|
|
375
|
+
"method": "GET",
|
|
376
|
+
"path": "/v1/workflow_invocations/{id}",
|
|
377
|
+
"input_schema": {
|
|
378
|
+
"type": "object",
|
|
379
|
+
"properties": {
|
|
380
|
+
"id": { "type": "string" }
|
|
381
|
+
},
|
|
382
|
+
"required": ["id"]
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
]
|
|
386
|
+
}
|