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/Preview.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import { AuthorizationDocumentListInstance } from "./preview/hosted_numbers/authorizationDocument";
import { HostedNumberOrderListInstance } from "./preview/hosted_numbers/hostedNumberOrder";
import { AvailableAddOnListInstance } from "./preview/marketplace/availableAddOn";
import { InstalledAddOnListInstance } from "./preview/marketplace/installedAddOn";
import { CommandListInstance } from "./preview/wireless/command";
import { RatePlanListInstance } from "./preview/wireless/ratePlan";
import { SimListInstance } from "./preview/wireless/sim";
import PreviewBase from "./PreviewBase";
declare class Preview extends PreviewBase {
/**
* @deprecated - Use hosted_numbers.authorizationDocuments instead
*/
get authorizationDocuments(): AuthorizationDocumentListInstance;
/**
* @deprecated - Use hosted_numbers.hostedNumberOrders instead
*/
get hostedNumberOrders(): HostedNumberOrderListInstance;
/**
* @deprecated - Use marketplace.availableAddOns instead
*/
get availableAddOns(): AvailableAddOnListInstance;
/**
* @deprecated - Use marketplace.installedAddOns instead
*/
get installedAddOns(): InstalledAddOnListInstance;
/**
* @deprecated - Use wireless.commands instead
*/
get commands(): CommandListInstance;
/**
* @deprecated - Use wireless.ratePlans instead
*/
get ratePlans(): RatePlanListInstance;
/**
* @deprecated - Use wireless.sims instead
*/
get sims(): SimListInstance;
}
export = Preview;