Skip to content

Commit

Permalink
chore: Remove Media V1 (#1001)
Browse files Browse the repository at this point in the history
* Remove Media V1

* Remove media

* Remove more files
  • Loading branch information
califlower committed Feb 3, 2024
1 parent 7bbaaba commit 829f455
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 2,448 deletions.
38 changes: 0 additions & 38 deletions src/rest/Media.ts

This file was deleted.

33 changes: 0 additions & 33 deletions src/rest/MediaBase.ts

This file was deleted.

8 changes: 0 additions & 8 deletions src/rest/Twilio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import Insights from "./Insights";
import Intelligence from "./Intelligence";
import IpMessaging from "./IpMessaging";
import Lookups from "./Lookups";
import Media from "./Media";
import Messaging from "./Messaging";
import Microvisor from "./Microvisor";
import Monitor from "./Monitor";
Expand Down Expand Up @@ -102,8 +101,6 @@ class Twilio extends Client {
_ipMessaging?: IpMessaging;
/** (Twilio.Lookups) - lookups domain */
_lookups?: Lookups;
/** (Twilio.Media) - media domain */
_media?: Media;
/** (Twilio.Messaging) - messaging domain */
_messaging?: Messaging;
/** (Twilio.Microvisor) - microvisor domain */
Expand Down Expand Up @@ -175,7 +172,6 @@ class Twilio extends Client {
this.intelligence;
this.ipMessaging;
this.lookups;
this.media;
this.messaging;
this.microvisor;
this.monitor;
Expand Down Expand Up @@ -271,10 +267,6 @@ class Twilio extends Client {
get lookups(): Lookups {
return this._lookups ?? (this._lookups = new (require("./Lookups"))(this));
}
/** Getter for (Twilio.Media) domain */
get media(): Media {
return this._media ?? (this._media = new (require("./Media"))(this));
}
/** Getter for (Twilio.Messaging) domain */
get messaging(): Messaging {
return (
Expand Down
58 changes: 0 additions & 58 deletions src/rest/media/V1.ts

This file was deleted.

Loading

0 comments on commit 829f455

Please sign in to comment.