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

34
node_modules/twilio/lib/base/ApiResponse.d.ts generated vendored Normal file
View File

@@ -0,0 +1,34 @@
/**
* API Response wrapper containing HTTP metadata
*
* This interface is returned by *WithHttpInfo methods and provides access to:
* - The response data (resource instance, page, or boolean)
* - HTTP status code
* - Response headers
*/
export interface ApiResponse<T> {
/**
* The response data
* - For create/fetch/update: Resource instance
* - For delete/remove: boolean indicating success
* - For page: Page object
*/
body: T;
/**
* HTTP status code from the response
* - 200: Success (fetch, update)
* - 201: Created (create)
* - 204: No Content (delete)
* - 4xx/5xx: Error responses
*/
statusCode: number;
/**
* Response headers as key-value pairs
* Common headers include:
* - Content-Type
* - X-RateLimit-Remaining
* - X-RateLimit-Limit
* - X-Request-ID
*/
headers: Record<string, string>;
}