Skip to content

Commit

Permalink
chore: removing auotpilot references
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Feb 29, 2024
1 parent b7a0826 commit 1499c88
Show file tree
Hide file tree
Showing 19 changed files with 0 additions and 8,524 deletions.
25 changes: 0 additions & 25 deletions src/rest/Autopilot.ts

This file was deleted.

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

This file was deleted.

10 changes: 0 additions & 10 deletions src/rest/Twilio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import { Client, ClientOpts, RequestOpts } from "../base/BaseTwilio";
import Accounts from "./Accounts";
import Api from "./Api";
import Autopilot from "./Autopilot";
import Bulkexports from "./Bulkexports";
import Chat from "./Chat";
import Content from "./Content";
Expand Down Expand Up @@ -82,8 +81,6 @@ class Twilio extends Client {
_accounts?: Accounts;
/** (Twilio.Api) - api domain */
_api?: Api;
/** (Twilio.Autopilot) - autopilot domain */
_autopilot?: Autopilot;
/** (Twilio.Bulkexports) - bulkexports domain */
_bulkexports?: Bulkexports;
/** (Twilio.Chat) - chat domain */
Expand Down Expand Up @@ -170,7 +167,6 @@ class Twilio extends Client {
if (this.opts?.lazyLoading === false) {
this.accounts;
this.api;
this.autopilot;
this.bulkexports;
this.chat;
this.content;
Expand Down Expand Up @@ -218,12 +214,6 @@ class Twilio extends Client {
get api(): Api {
return this._api ?? (this._api = new (require("./Api"))(this));
}
/** Getter for (Twilio.Autopilot) domain */
get autopilot(): Autopilot {
return (
this._autopilot ?? (this._autopilot = new (require("./Autopilot"))(this))
);
}
/** Getter for (Twilio.Bulkexports) domain */
get bulkexports(): Bulkexports {
return (
Expand Down
47 changes: 0 additions & 47 deletions src/rest/autopilot/V1.ts

This file was deleted.

0 comments on commit 1499c88

Please sign in to comment.