Files
boc/vims-backend/node_modules/twilio/lib/rest/Trusthub.d.ts
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- 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
2026-07-08 19:56:03 +00:00

40 lines
1.4 KiB
TypeScript

import { CustomerProfilesListInstance } from "./trusthub/v1/customerProfiles";
import { EndUserListInstance } from "./trusthub/v1/endUser";
import { EndUserTypeListInstance } from "./trusthub/v1/endUserType";
import { PoliciesListInstance } from "./trusthub/v1/policies";
import { SupportingDocumentListInstance } from "./trusthub/v1/supportingDocument";
import { SupportingDocumentTypeListInstance } from "./trusthub/v1/supportingDocumentType";
import { TrustProductsListInstance } from "./trusthub/v1/trustProducts";
import TrusthubBase from "./TrusthubBase";
declare class Trusthub extends TrusthubBase {
/**
* @deprecated - Use v1.customerProfiles instead
*/
get customerProfiles(): CustomerProfilesListInstance;
/**
* @deprecated - Use v1.endUsers instead
*/
get endUsers(): EndUserListInstance;
/**
* @deprecated - Use v1.endUserTypes instead
*/
get endUserTypes(): EndUserTypeListInstance;
/**
* @deprecated - Use v1.policies instead
*/
get policies(): PoliciesListInstance;
/**
* @deprecated - Use v1.supportingDocuments instead
*/
get supportingDocuments(): SupportingDocumentListInstance;
/**
* @deprecated - Use v1.supportingDocumentTypes instead
*/
get supportingDocumentTypes(): SupportingDocumentTypeListInstance;
/**
* @deprecated - Use v1.trustProducts instead
*/
get trustProducts(): TrustProductsListInstance;
}
export = Trusthub;