/** * Twilio Node - Version 1 * Discriminator: resource=call, operation=make */ interface Credentials { twilioApi: CredentialReference; } export type TwilioV1CallMakeParams = { resource: 'call'; operation: 'make'; /** * The number from which to send the message */ from?: string | Expression | PlaceholderValue; /** * The number to which to send the message */ to?: string | Expression | PlaceholderValue; /** * Whether to use the <a href="https://www.twilio.com/docs/voice/twiml">Twilio Markup Language</a> in the message * @default false */ twiml?: boolean | Expression; /** * Message */ message?: string | Expression | PlaceholderValue; options?: { /** Status Callbacks allow you to receive events related to the REST resources managed by Twilio: Rooms, Recordings and Compositions */ statusCallback?: string | Expression | PlaceholderValue; }; }; export type TwilioV1CallMakeOutput = { account_sid?: string; annotation?: null; answered_by?: null; api_version?: string; caller_name?: null; date_created?: null; date_updated?: null; direction?: string; duration?: null; end_time?: null; forwarded_from?: null; from?: string; from_formatted?: string; group_sid?: null; parent_call_sid?: null; price?: null; price_unit?: string; queue_time?: string; sid?: string; start_time?: null; status?: string; subresource_uris?: { events?: string; notifications?: string; payments?: string; recordings?: string; siprec?: string; streams?: string; transcriptions?: string; user_defined_message_subscriptions?: string; user_defined_messages?: string; }; to?: string; to_formatted?: string; trunk_sid?: null; uri?: string; }; export type TwilioV1CallMakeNode = { type: 'n8n-nodes-base.twilio'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };