Skip to content

Commit 71037cf

Browse files
committed
updates/typos
1 parent e0d31bb commit 71037cf

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

components/elevenlabs/actions/add-voice/add-voice.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
data,
6060
});
6161

62-
$.export("$summary", `Sucessfully added voice (ID: ${response.voice_id})`);
62+
$.export("$summary", `Successfully added voice (ID: ${response.voice_id})`);
6363
return response;
6464
},
6565
};

components/elevenlabs/elevenlabs.app.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,27 +182,27 @@ export default {
182182
},
183183
listPhoneNumbers(args = {}) {
184184
return this._makeRequest({
185-
path: "/convai/phone-numbers/",
185+
path: "convai/phone-numbers/",
186186
...args,
187187
});
188188
},
189189
listAgents(args = {}) {
190190
return this._makeRequest({
191-
path: "/convai/agents",
191+
path: "convai/agents",
192192
...args,
193193
});
194194
},
195195
createAgent(args = {}) {
196196
return this._makeRequest({
197197
method: "POST",
198-
path: "/convai/agents/create",
198+
path: "convai/agents/create",
199199
...args,
200200
});
201201
},
202202
makeOutboundCall(args = {}) {
203203
return this._makeRequest({
204204
method: "POST",
205-
path: "/convai/twilio/outbound_call",
205+
path: "convai/twilio/outbound_call",
206206
...args,
207207
});
208208
},

components/highlevel_oauth/actions/add-contact-to-campaign/add-contact-to-campaign.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default {
2929
campaignId: this.campaignId,
3030
});
3131
if (response?.succeded) {
32-
$.export("$summary", `Successfully added conatct to campaign with ID: ${this.campaignId}`);
32+
$.export("$summary", `Successfully added contact to campaign with ID: ${this.campaignId}`);
3333
}
3434
return response;
3535
},

0 commit comments

Comments
 (0)