Skip to content

Commit

Permalink
fix telnyx api types dupes
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasassisrosa committed Jan 7, 2025
1 parent 94e15a9 commit 81b4e3b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions types/TelnyxAPI.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7204,7 +7204,7 @@ export interface paths {
* Retrieve a report
* @description Retrieve a specific report generated.
*/
get: operations['GetPortingReport'];
get: operations['GetPortoutReport'];
put?: never;
post?: never;
delete?: never;
Expand Down Expand Up @@ -7610,7 +7610,7 @@ export interface paths {
cookie?: never;
};
/** @description Generate and fetch voice usage report synchronously. This endpoint will both generate and fetch the voice report over a specified time period. No polling is necessary but the response may take up to a couple of minutes. */
get: operations['GetUsageReportSync'];
get: operations['CdrGetUsageReportSync'];
put?: never;
post?: never;
delete?: never;
Expand Down Expand Up @@ -7662,7 +7662,7 @@ export interface paths {
cookie?: never;
};
/** @description Fetch a single messaging usage report by id */
get: operations['GetUsageReport'];
get: operations['MdrGetUsageReport'];
put?: never;
post?: never;
/** @description Delete messaging usage report by id */
Expand Down Expand Up @@ -9197,7 +9197,7 @@ export interface paths {
* Initiate an outbound call
* @description Initiate an outbound TeXML call. Telnyx will request TeXML from the XML Request URL configured for the connection in the Mission Control Portal.
*/
post: operations['InitiateTexmlCall'];
post: operations['InitiateTexmlCallAccountSid'];
delete?: never;
options?: never;
head?: never;
Expand All @@ -9221,7 +9221,7 @@ export interface paths {
* Update call
* @description Update TeXML call. Please note that the keys present in the payload MUST BE formatted in CamelCase as specified in the example.
*/
post: operations['UpdateTexmlCall'];
post: operations['UpdateTexmlCallAccountSid'];
delete?: never;
options?: never;
head?: never;
Expand Down Expand Up @@ -61992,7 +61992,7 @@ export interface operations {
};
};
};
GetPortingReport: {
GetPortoutReport: {
parameters: {
query?: never;
header?: never;
Expand Down Expand Up @@ -62683,7 +62683,7 @@ export interface operations {
default: components['responses']['GenericErrorResponse'];
};
};
GetUsageReportSync: {
CdrGetUsageReportSync: {
parameters: {
query: {
start_date?: string;
Expand Down Expand Up @@ -62792,7 +62792,7 @@ export interface operations {
};
};
};
GetUsageReport: {
MdrGetUsageReport: {
parameters: {
query?: never;
header?: never;
Expand Down Expand Up @@ -65573,7 +65573,7 @@ export interface operations {
404: components['responses']['NotFoundResponse'];
};
};
InitiateTexmlCall: {
InitiateTexmlCallAccountSid: {
parameters: {
query?: never;
header?: never;
Expand Down Expand Up @@ -65611,7 +65611,7 @@ export interface operations {
404: components['responses']['NotFoundResponse'];
};
};
UpdateTexmlCall: {
UpdateTexmlCallAccountSid: {
parameters: {
query?: never;
header?: never;
Expand Down

0 comments on commit 81b4e3b

Please sign in to comment.