Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: removing preview_iam references #1030

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading