6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
56 lines
2.7 KiB
TypeScript
56 lines
2.7 KiB
TypeScript
import ITwilio from "./rest/Twilio";
|
|
import * as webhooks from "./webhooks/webhooks";
|
|
import IRequestClient from "./base/RequestClient";
|
|
import type { ClientOpts as IClientOpts } from "./base/BaseTwilio";
|
|
import IAccessToken from "./jwt/AccessToken";
|
|
import IClientCapability from "./jwt/ClientCapability";
|
|
import ITaskRouterCapability from "./jwt/taskrouter/TaskRouterCapability";
|
|
import * as taskRouterUtil from "./jwt/taskrouter/util";
|
|
import IVoiceResponse from "./twiml/VoiceResponse";
|
|
import IMessagingResponse from "./twiml/MessagingResponse";
|
|
import IFaxResponse from "./twiml/FaxResponse";
|
|
declare function TwilioSDK(accountSid?: string, authToken?: string, opts?: IClientOpts): TwilioSDK.Twilio;
|
|
declare namespace TwilioSDK {
|
|
type Twilio = ITwilio;
|
|
const Twilio: typeof ITwilio;
|
|
namespace jwt {
|
|
type AccessToken = IAccessToken;
|
|
const AccessToken: typeof IAccessToken;
|
|
type ClientCapability = IClientCapability;
|
|
const ClientCapability: typeof IClientCapability;
|
|
namespace taskrouter {
|
|
type TaskRouterCapability = ITaskRouterCapability;
|
|
const TaskRouterCapability: typeof ITaskRouterCapability;
|
|
const util: typeof taskRouterUtil;
|
|
}
|
|
}
|
|
namespace twiml {
|
|
type VoiceResponse = IVoiceResponse;
|
|
const VoiceResponse: typeof IVoiceResponse;
|
|
type MessagingResponse = IMessagingResponse;
|
|
const MessagingResponse: typeof IMessagingResponse;
|
|
type FaxResponse = IFaxResponse;
|
|
const FaxResponse: typeof IFaxResponse;
|
|
}
|
|
type RequestClient = IRequestClient;
|
|
const RequestClient: typeof IRequestClient;
|
|
type validateBody = typeof webhooks.validateBody;
|
|
const validateBody: typeof webhooks.validateBody;
|
|
type validateRequest = typeof webhooks.validateRequest;
|
|
const validateRequest: typeof webhooks.validateRequest;
|
|
type validateRequestWithBody = typeof webhooks.validateRequestWithBody;
|
|
const validateRequestWithBody: typeof webhooks.validateRequestWithBody;
|
|
type validateExpressRequest = typeof webhooks.validateExpressRequest;
|
|
const validateExpressRequest: typeof webhooks.validateExpressRequest;
|
|
type validateIncomingRequest = typeof webhooks.validateIncomingRequest;
|
|
const validateIncomingRequest: typeof webhooks.validateIncomingRequest;
|
|
type getExpectedBodyHash = typeof webhooks.getExpectedBodyHash;
|
|
const getExpectedBodyHash: typeof webhooks.getExpectedBodyHash;
|
|
type getExpectedTwilioSignature = typeof webhooks.getExpectedTwilioSignature;
|
|
const getExpectedTwilioSignature: typeof webhooks.getExpectedTwilioSignature;
|
|
type webhook = typeof webhooks.webhook;
|
|
const webhook: typeof webhooks.webhook;
|
|
type ClientOpts = IClientOpts;
|
|
}
|
|
export = TwilioSDK;
|