Auto-commit 2026-04-29 16:31

This commit is contained in:
2026-04-29 16:31:27 -04:00
parent e8687bb6b2
commit 0495ee5bd2
19691 changed files with 3272886 additions and 138 deletions

39
node_modules/twilio/lib/rest/Trusthub.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
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;