Skip to content

Commit

Permalink
sort
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticfalconvt committed Apr 22, 2024
1 parent b624e5a commit e1fadca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/getPortalSdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ export const getPortalSdk = () => {
const result = await sdk.addShare({ input });
return result.addShare || null;
},
editVoiceboxConversation: async (input: { id: string; name: string }) => {
const result = await sdk.editVoiceboxConversation({
input,
});
return result.editVoiceboxConversation || null;
},
getConnectionByIndex: async (index: number) => {
const result = await sdk.getConnectionByIndex({ index });
return result.connection || null;
Expand Down Expand Up @@ -125,11 +131,5 @@ export const getPortalSdk = () => {
const result = await sdk.trackEvent({ input });
return result.trackEvent || null;
},
editVoiceboxConversation: async (input: { id: string; name: string }) => {
const result = await sdk.editVoiceboxConversation({
input,
});
return result.editVoiceboxConversation || null;
},
};
};

0 comments on commit e1fadca

Please sign in to comment.