Skip to content

Commit

Permalink
chore: removing preview_iam references
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Jul 30, 2024
1 parent 0456569 commit aee81ee
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 41 deletions.
5 changes: 0 additions & 5 deletions src/rest/PreviewIam.ts

This file was deleted.

25 changes: 0 additions & 25 deletions src/rest/PreviewIamBase.ts

This file was deleted.

11 changes: 0 additions & 11 deletions src/rest/Twilio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import Conversations from "./Conversations";
import Events from "./Events";
import FlexApi from "./FlexApi";
import FrontlineApi from "./FrontlineApi";
import PreviewIam from "./PreviewIam";
import Insights from "./Insights";
import Intelligence from "./Intelligence";
import IpMessaging from "./IpMessaging";
Expand Down Expand Up @@ -96,8 +95,6 @@ class Twilio extends Client {
_flexApi?: FlexApi;
/** (Twilio.FrontlineApi) - frontlineApi domain */
_frontlineApi?: FrontlineApi;
/** (Twilio.PreviewIam) - previewIam domain */
_previewIam?: PreviewIam;
/** (Twilio.Insights) - insights domain */
_insights?: Insights;
/** (Twilio.Intelligence) - intelligence domain */
Expand Down Expand Up @@ -177,7 +174,6 @@ class Twilio extends Client {
this.events;
this.flexApi;
this.frontlineApi;
this.previewIam;
this.insights;
this.intelligence;
this.ipMessaging;
Expand Down Expand Up @@ -255,13 +251,6 @@ class Twilio extends Client {
(this._frontlineApi = new (require("./FrontlineApi"))(this))
);
}
/** Getter for (Twilio.PreviewIam) domain */
get previewIam(): PreviewIam {
return (
this._previewIam ??
(this._previewIam = new (require("./PreviewIam"))(this))
);
}
/** Getter for (Twilio.Insights) domain */
get insights(): Insights {
return (
Expand Down

0 comments on commit aee81ee

Please sign in to comment.