@apteva/integrations 0.15.6 → 0.15.8
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 +17 -3
- package/dist/http-executor.js.map +1 -1
- package/dist/types.d.ts +1 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/amazon-ads.json +659 -44
- package/src/apps/bunny-stream.json +33 -2
- package/src/apps/dataforseo.json +15 -2
- package/src/apps/gmail.json +6 -3
- package/src/apps/google-ads.json +289 -5
- package/src/apps/linkedin-ads.json +678 -60
- package/src/apps/microsoft-ads.json +481 -27
- package/src/apps/pinterest-ads.json +506 -64
- package/src/apps/plivo.json +269 -0
- package/src/apps/reddit-ads.json +314 -41
- package/src/apps/ringover.json +5 -0
- package/src/apps/signalwire.json +220 -0
- package/src/apps/snapchat-ads.json +416 -49
- package/src/apps/spaceship.json +883 -0
- package/src/apps/taboola.json +672 -0
- package/src/apps/telnyx.json +321 -0
- package/src/apps/tiktok-ads.json +596 -77
- package/src/apps/twitter-ads.json +71 -1
- package/src/apps/vonage.json +116 -2
- package/src/apps/youtube-api.json +54 -0
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "plivo",
|
|
3
|
+
"name": "Plivo",
|
|
4
|
+
"description": "Plivo Voice API for outbound calls, call control, and bidirectional audio streaming over WebSockets for AI voice-agent backends.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=plivo.com&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"voice",
|
|
8
|
+
"calls",
|
|
9
|
+
"telephony",
|
|
10
|
+
"phone",
|
|
11
|
+
"communications",
|
|
12
|
+
"ai"
|
|
13
|
+
],
|
|
14
|
+
"base_url": "https://api.plivo.com/v1/Account/{{auth_id}}",
|
|
15
|
+
"auth": {
|
|
16
|
+
"types": [
|
|
17
|
+
"basic"
|
|
18
|
+
],
|
|
19
|
+
"headers": {
|
|
20
|
+
"Authorization": "Basic {{basic_auth}}",
|
|
21
|
+
"Content-Type": "application/json",
|
|
22
|
+
"Accept": "application/json"
|
|
23
|
+
},
|
|
24
|
+
"credential_fields": [
|
|
25
|
+
{
|
|
26
|
+
"name": "username",
|
|
27
|
+
"label": "Auth ID",
|
|
28
|
+
"description": "Plivo Auth ID. Also used as the HTTP Basic username.",
|
|
29
|
+
"required": true
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "password",
|
|
33
|
+
"label": "Auth Token",
|
|
34
|
+
"description": "Plivo Auth Token. Also used as the HTTP Basic password.",
|
|
35
|
+
"type": "password",
|
|
36
|
+
"required": true
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"name": "auth_id",
|
|
40
|
+
"label": "Auth ID",
|
|
41
|
+
"description": "Same Plivo Auth ID, used in REST paths.",
|
|
42
|
+
"required": true
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "phone_number",
|
|
46
|
+
"label": "Default From Number",
|
|
47
|
+
"description": "Default Plivo phone number to call from, in E.164 format."
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"health_check": {
|
|
52
|
+
"tool": "list_calls",
|
|
53
|
+
"input": {
|
|
54
|
+
"limit": 1
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"tools": [
|
|
58
|
+
{
|
|
59
|
+
"name": "make_call",
|
|
60
|
+
"description": "Place an outbound Plivo call. For AI voice agents, answer_url should return Plivo XML with a bidirectional <Stream> element pointing to the Telephony WebSocket.",
|
|
61
|
+
"method": "POST",
|
|
62
|
+
"path": "/Call/",
|
|
63
|
+
"input_schema": {
|
|
64
|
+
"type": "object",
|
|
65
|
+
"properties": {
|
|
66
|
+
"from": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Plivo number to call from, in E.164 format."
|
|
69
|
+
},
|
|
70
|
+
"to": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "Destination phone number in E.164 format."
|
|
73
|
+
},
|
|
74
|
+
"answer_url": {
|
|
75
|
+
"type": "string",
|
|
76
|
+
"description": "HTTPS URL returning Plivo XML call-control instructions."
|
|
77
|
+
},
|
|
78
|
+
"answer_method": {
|
|
79
|
+
"type": "string",
|
|
80
|
+
"enum": [
|
|
81
|
+
"GET",
|
|
82
|
+
"POST"
|
|
83
|
+
],
|
|
84
|
+
"default": "POST"
|
|
85
|
+
},
|
|
86
|
+
"hangup_url": {
|
|
87
|
+
"type": "string"
|
|
88
|
+
},
|
|
89
|
+
"hangup_method": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"enum": [
|
|
92
|
+
"GET",
|
|
93
|
+
"POST"
|
|
94
|
+
],
|
|
95
|
+
"default": "POST"
|
|
96
|
+
},
|
|
97
|
+
"time_limit": {
|
|
98
|
+
"type": "integer"
|
|
99
|
+
},
|
|
100
|
+
"ring_timeout": {
|
|
101
|
+
"type": "integer"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"required": [
|
|
105
|
+
"from",
|
|
106
|
+
"to",
|
|
107
|
+
"answer_url"
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
"mock_response": {
|
|
111
|
+
"api_id": "mock-api-id",
|
|
112
|
+
"message": "call fired",
|
|
113
|
+
"request_uuid": "mock-request-uuid"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"name": "update_call",
|
|
118
|
+
"description": "Redirect or transfer an active Plivo call by making it fetch new XML.",
|
|
119
|
+
"method": "POST",
|
|
120
|
+
"path": "/Call/{call_uuid}/",
|
|
121
|
+
"input_schema": {
|
|
122
|
+
"type": "object",
|
|
123
|
+
"properties": {
|
|
124
|
+
"call_uuid": {
|
|
125
|
+
"type": "string"
|
|
126
|
+
},
|
|
127
|
+
"legs": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"enum": [
|
|
130
|
+
"aleg",
|
|
131
|
+
"bleg",
|
|
132
|
+
"both"
|
|
133
|
+
],
|
|
134
|
+
"default": "aleg"
|
|
135
|
+
},
|
|
136
|
+
"aleg_url": {
|
|
137
|
+
"type": "string"
|
|
138
|
+
},
|
|
139
|
+
"aleg_method": {
|
|
140
|
+
"type": "string",
|
|
141
|
+
"enum": [
|
|
142
|
+
"GET",
|
|
143
|
+
"POST"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"bleg_url": {
|
|
147
|
+
"type": "string"
|
|
148
|
+
},
|
|
149
|
+
"bleg_method": {
|
|
150
|
+
"type": "string",
|
|
151
|
+
"enum": [
|
|
152
|
+
"GET",
|
|
153
|
+
"POST"
|
|
154
|
+
]
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"required": [
|
|
158
|
+
"call_uuid"
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "hangup_call",
|
|
164
|
+
"description": "Hang up an active Plivo call.",
|
|
165
|
+
"method": "DELETE",
|
|
166
|
+
"path": "/Call/{call_uuid}/",
|
|
167
|
+
"input_schema": {
|
|
168
|
+
"type": "object",
|
|
169
|
+
"properties": {
|
|
170
|
+
"call_uuid": {
|
|
171
|
+
"type": "string"
|
|
172
|
+
}
|
|
173
|
+
},
|
|
174
|
+
"required": [
|
|
175
|
+
"call_uuid"
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "start_stream",
|
|
181
|
+
"description": "Start an audio stream on an active Plivo call using the Audio Streams API.",
|
|
182
|
+
"method": "POST",
|
|
183
|
+
"path": "/Call/{call_uuid}/Stream/",
|
|
184
|
+
"input_schema": {
|
|
185
|
+
"type": "object",
|
|
186
|
+
"properties": {
|
|
187
|
+
"call_uuid": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
},
|
|
190
|
+
"service_url": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"description": "WebSocket URL that receives call audio."
|
|
193
|
+
},
|
|
194
|
+
"bidirectional": {
|
|
195
|
+
"type": "boolean",
|
|
196
|
+
"default": true
|
|
197
|
+
},
|
|
198
|
+
"audio_track": {
|
|
199
|
+
"type": "string",
|
|
200
|
+
"enum": [
|
|
201
|
+
"inbound",
|
|
202
|
+
"outbound",
|
|
203
|
+
"both"
|
|
204
|
+
],
|
|
205
|
+
"default": "inbound"
|
|
206
|
+
},
|
|
207
|
+
"content_type": {
|
|
208
|
+
"type": "string",
|
|
209
|
+
"description": "Audio content type, for example audio/x-mulaw;rate=8000."
|
|
210
|
+
},
|
|
211
|
+
"status_callback_url": {
|
|
212
|
+
"type": "string"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"required": [
|
|
216
|
+
"call_uuid",
|
|
217
|
+
"service_url"
|
|
218
|
+
]
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "stop_stream",
|
|
223
|
+
"description": "Stop one Plivo audio stream.",
|
|
224
|
+
"method": "DELETE",
|
|
225
|
+
"path": "/Call/{call_uuid}/Stream/{stream_id}/",
|
|
226
|
+
"input_schema": {
|
|
227
|
+
"type": "object",
|
|
228
|
+
"properties": {
|
|
229
|
+
"call_uuid": {
|
|
230
|
+
"type": "string"
|
|
231
|
+
},
|
|
232
|
+
"stream_id": {
|
|
233
|
+
"type": "string"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"required": [
|
|
237
|
+
"call_uuid",
|
|
238
|
+
"stream_id"
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "list_calls",
|
|
244
|
+
"description": "List Plivo calls.",
|
|
245
|
+
"method": "GET",
|
|
246
|
+
"path": "/Call/",
|
|
247
|
+
"input_schema": {
|
|
248
|
+
"type": "object",
|
|
249
|
+
"properties": {
|
|
250
|
+
"from_number": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"to_number": {
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
256
|
+
"call_direction": {
|
|
257
|
+
"type": "string"
|
|
258
|
+
},
|
|
259
|
+
"limit": {
|
|
260
|
+
"type": "integer"
|
|
261
|
+
},
|
|
262
|
+
"offset": {
|
|
263
|
+
"type": "integer"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
]
|
|
269
|
+
}
|