@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,158 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "gladia",
|
|
3
|
+
"name": "Gladia",
|
|
4
|
+
"description": "Gladia v2 speech-to-text API for pre-recorded transcription, uploads, diarization, translation, summarization, subtitles, sentiment, NER, PII redaction, and custom metadata.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=gladia.io&sz=128",
|
|
6
|
+
"categories": ["ai", "speech", "speech-to-text", "transcription", "audio-intelligence"],
|
|
7
|
+
"base_url": "https://api.gladia.io",
|
|
8
|
+
"auth": {
|
|
9
|
+
"types": ["api_key"],
|
|
10
|
+
"headers": {
|
|
11
|
+
"x-gladia-key": "{{api_key}}",
|
|
12
|
+
"Content-Type": "application/json"
|
|
13
|
+
},
|
|
14
|
+
"credential_fields": [
|
|
15
|
+
{
|
|
16
|
+
"name": "api_key",
|
|
17
|
+
"label": "API Key",
|
|
18
|
+
"description": "Gladia API key from app.gladia.io/apikeys."
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"tools": [
|
|
23
|
+
{
|
|
24
|
+
"name": "upload_audio_url",
|
|
25
|
+
"description": "Ask Gladia to ingest an audio/video URL and return a Gladia audio_url usable by create_transcription.",
|
|
26
|
+
"method": "POST",
|
|
27
|
+
"path": "/v2/upload",
|
|
28
|
+
"input_schema": {
|
|
29
|
+
"type": "object",
|
|
30
|
+
"properties": {
|
|
31
|
+
"audio_url": { "type": "string", "description": "Publicly reachable audio or video URL." }
|
|
32
|
+
},
|
|
33
|
+
"required": ["audio_url"]
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "upload_audio_file",
|
|
38
|
+
"description": "Upload an audio/video file to Gladia and return a Gladia audio_url usable by create_transcription.",
|
|
39
|
+
"method": "POST",
|
|
40
|
+
"path": "/v2/upload",
|
|
41
|
+
"timeout_ms": 600000,
|
|
42
|
+
"multipart_form": {
|
|
43
|
+
"file_fields": { "audio": "audio" }
|
|
44
|
+
},
|
|
45
|
+
"input_schema": {
|
|
46
|
+
"type": "object",
|
|
47
|
+
"properties": {
|
|
48
|
+
"audio": { "type": "string", "description": "Audio/video file content as blobref://, base64, data URL, or raw string." },
|
|
49
|
+
"audio_filename": { "type": "string", "description": "Optional filename for the multipart upload." }
|
|
50
|
+
},
|
|
51
|
+
"required": ["audio"]
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "create_transcription",
|
|
56
|
+
"description": "Initiate a Gladia v2 pre-recorded transcription. Use audio_url from upload_audio_url/upload_audio_file or an external URL. Optional add-ons include diarization, subtitles, translation, summarization, NER, sentiment, PII redaction, audio_to_llm, sentences, and custom metadata.",
|
|
57
|
+
"method": "POST",
|
|
58
|
+
"path": "/v2/pre-recorded",
|
|
59
|
+
"timeout_ms": 600000,
|
|
60
|
+
"input_schema": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"properties": {
|
|
63
|
+
"audio_url": { "type": "string" },
|
|
64
|
+
"model": { "type": "string", "description": "solaria-1 or solaria-3 where available." },
|
|
65
|
+
"language_config": { "type": "object", "description": "Language config, e.g. {\"languages\":[\"en\"],\"code_switching\":false}." },
|
|
66
|
+
"callback": { "type": "boolean" },
|
|
67
|
+
"callback_config": { "type": "object" },
|
|
68
|
+
"diarization": { "type": "boolean" },
|
|
69
|
+
"diarization_config": { "type": "object" },
|
|
70
|
+
"subtitles": { "type": "boolean" },
|
|
71
|
+
"subtitles_config": { "type": "object" },
|
|
72
|
+
"translation": { "type": "boolean" },
|
|
73
|
+
"translation_config": { "type": "object" },
|
|
74
|
+
"summarization": { "type": "boolean" },
|
|
75
|
+
"summarization_config": { "type": "object" },
|
|
76
|
+
"named_entity_recognition": { "type": "boolean" },
|
|
77
|
+
"sentiment_analysis": { "type": "boolean" },
|
|
78
|
+
"pii_redaction": { "type": "boolean" },
|
|
79
|
+
"pii_redaction_config": { "type": "object" },
|
|
80
|
+
"audio_to_llm": { "type": "boolean" },
|
|
81
|
+
"audio_to_llm_config": { "type": "object" },
|
|
82
|
+
"custom_vocabulary": { "type": ["boolean", "array"] },
|
|
83
|
+
"custom_vocabulary_config": { "type": "object" },
|
|
84
|
+
"custom_spelling": { "type": "boolean" },
|
|
85
|
+
"custom_spelling_config": { "type": "object" },
|
|
86
|
+
"custom_metadata": { "type": "object" },
|
|
87
|
+
"sentences": { "type": "boolean" },
|
|
88
|
+
"punctuation_enhanced": { "type": "boolean" }
|
|
89
|
+
},
|
|
90
|
+
"required": ["audio_url"]
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "create_transcription_raw",
|
|
95
|
+
"description": "Initiate a Gladia pre-recorded transcription with a raw request body. Use this when the standard tool schema does not expose a new Gladia option yet.",
|
|
96
|
+
"method": "POST",
|
|
97
|
+
"path": "/v2/pre-recorded",
|
|
98
|
+
"timeout_ms": 600000,
|
|
99
|
+
"body_root_param": "body",
|
|
100
|
+
"input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "list_transcriptions",
|
|
104
|
+
"description": "List Gladia pre-recorded transcriptions with pagination, date, status, and metadata filters.",
|
|
105
|
+
"method": "GET",
|
|
106
|
+
"path": "/v2/pre-recorded",
|
|
107
|
+
"input_schema": {
|
|
108
|
+
"type": "object",
|
|
109
|
+
"properties": {
|
|
110
|
+
"offset": { "type": "integer" },
|
|
111
|
+
"limit": { "type": "integer" },
|
|
112
|
+
"date": { "type": "string" },
|
|
113
|
+
"before_date": { "type": "string" },
|
|
114
|
+
"after_date": { "type": "string" },
|
|
115
|
+
"status": { "type": "string", "description": "queued, processing, done, or error." }
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"name": "get_transcription",
|
|
121
|
+
"description": "Get a Gladia pre-recorded transcription status, parameters, and result. Result is available when status is done.",
|
|
122
|
+
"method": "GET",
|
|
123
|
+
"path": "/v2/pre-recorded/{id}",
|
|
124
|
+
"timeout_ms": 300000,
|
|
125
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "download_audio",
|
|
129
|
+
"description": "Download the audio file used by a Gladia pre-recorded transcription.",
|
|
130
|
+
"method": "GET",
|
|
131
|
+
"path": "/v2/pre-recorded/{id}/file",
|
|
132
|
+
"timeout_ms": 600000,
|
|
133
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "delete_transcription",
|
|
137
|
+
"description": "Delete a Gladia pre-recorded transcription and all related data.",
|
|
138
|
+
"method": "DELETE",
|
|
139
|
+
"path": "/v2/pre-recorded/{id}",
|
|
140
|
+
"input_schema": { "type": "object", "properties": { "id": { "type": "string" } }, "required": ["id"] }
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"webhooks": {
|
|
144
|
+
"signature_header": "x-gladia-key",
|
|
145
|
+
"events": [
|
|
146
|
+
{ "name": "transcription.created", "description": "A Gladia pre-recorded transcription was created." },
|
|
147
|
+
{ "name": "transcription.success", "description": "A Gladia pre-recorded transcription completed successfully." },
|
|
148
|
+
{ "name": "transcription.error", "description": "A Gladia pre-recorded transcription failed." }
|
|
149
|
+
],
|
|
150
|
+
"registration": {
|
|
151
|
+
"method": "POST",
|
|
152
|
+
"path": "/",
|
|
153
|
+
"url_field": "url",
|
|
154
|
+
"manual_setup": "Gladia callbacks are configured per transcription request with callback=true and callback_config.url. This integration does not auto-register a global webhook."
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"health_check": { "tool": "list_transcriptions", "input": { "limit": 1 } }
|
|
158
|
+
}
|
package/src/apps/gmail.json
CHANGED
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
},
|
|
463
463
|
{
|
|
464
464
|
"name": "list_threads",
|
|
465
|
-
"description": "List email thread IDs with optional search. Returns thread IDs and snippets
|
|
465
|
+
"description": "List email thread IDs with optional search. Returns thread IDs and snippets. Use gmail_get_thread first to inspect a compact latest-message summary, then fetch a specific message with gmail_get_message only when body text is needed.",
|
|
466
466
|
"method": "GET",
|
|
467
467
|
"path": "/users/me/threads",
|
|
468
468
|
"input_schema": {
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
},
|
|
510
510
|
{
|
|
511
511
|
"name": "get_thread",
|
|
512
|
-
"description": "Get
|
|
512
|
+
"description": "Get a compact email thread index. Output includes thread id, history id, messageCount, messageIds, and messages with compact per-message metadata/snippet only. It intentionally does not return message bodies, HTML, or attachments. Use this first to choose which message IDs matter, then call gmail_get_message for the specific body/content needed.",
|
|
513
513
|
"method": "GET",
|
|
514
514
|
"path": "/users/me/threads/{threadId}",
|
|
515
515
|
"input_schema": {
|
|
@@ -583,9 +583,6 @@
|
|
|
583
583
|
"sizeEstimate": 2048
|
|
584
584
|
}
|
|
585
585
|
]
|
|
586
|
-
},
|
|
587
|
-
"response_transform": {
|
|
588
|
-
"type": "email_thread"
|
|
589
586
|
}
|
|
590
587
|
},
|
|
591
588
|
{
|