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
45 lines
1.6 KiB
TypeScript
45 lines
1.6 KiB
TypeScript
import { AddressConfigurationListInstance } from "./conversations/v1/addressConfiguration";
|
|
import { ConfigurationListInstance } from "./conversations/v1/configuration";
|
|
import { ConversationListInstance } from "./conversations/v1/conversation";
|
|
import { CredentialListInstance } from "./conversations/v1/credential";
|
|
import { ParticipantConversationListInstance } from "./conversations/v1/participantConversation";
|
|
import { RoleListInstance } from "./conversations/v1/role";
|
|
import { ServiceListInstance } from "./conversations/v1/service";
|
|
import { UserListInstance } from "./conversations/v1/user";
|
|
import ConversationsBase from "./ConversationsBase";
|
|
declare class Conversations extends ConversationsBase {
|
|
/**
|
|
* @deprecated - Use v1.configuration instead
|
|
*/
|
|
get configuration(): ConfigurationListInstance;
|
|
/**
|
|
* @deprecated - Use v1.addressConfigurations instead
|
|
*/
|
|
get addressConfigurations(): AddressConfigurationListInstance;
|
|
/**
|
|
* @deprecated - Use v1.conversations instead
|
|
*/
|
|
get conversations(): ConversationListInstance;
|
|
/**
|
|
* @deprecated - Use v1.credentials instead
|
|
*/
|
|
get credentials(): CredentialListInstance;
|
|
/**
|
|
* @deprecated - Use v1.participantConversations instead
|
|
*/
|
|
get participantConversations(): ParticipantConversationListInstance;
|
|
/**
|
|
* @deprecated - Use v1.roles instead
|
|
*/
|
|
get roles(): RoleListInstance;
|
|
/**
|
|
* @deprecated - Use v1.services instead
|
|
*/
|
|
get services(): ServiceListInstance;
|
|
/**
|
|
* @deprecated - Use v1.users instead
|
|
*/
|
|
get users(): UserListInstance;
|
|
}
|
|
export = Conversations;
|