diff --git a/packages/sdk-core/src/sinch-client.ts b/packages/sdk-core/src/sinch-client.ts index 78aa50b2..2713cc00 100644 --- a/packages/sdk-core/src/sinch-client.ts +++ b/packages/sdk-core/src/sinch-client.ts @@ -22,22 +22,11 @@ export class SinchClient { * @param {SinchClientParameters} params - The object containing the Sinch credentials. */ constructor(params: SinchClientParameters) { - // Initialize the "Conversation" API this.conversation = new ConversationService(params); - - // Initialize the "Fax" API this.fax = new FaxService(params); - - // Initialize the "Numbers" API this.numbers = new NumbersService(params); - - // Initialize the "SMS" API. this.sms = new SmsService(params); - - // Initialize the "Verification" API this.verification = new VerificationService(params); - - // Initialize the "Voice" API this.voice = new VoiceService(params); } }