8000 chore: Remove references to microvisor (#1091) · twilio/twilio-node@47d4c79 · GitHub
[go: up one dir, main page]

Skip to content

Commit 47d4c79

Browse files
authored
chore: Remove references to microvisor (#1091)
1 parent 051a941 commit 47d4c79

File tree

11 files changed

+0
-4035
lines changed

11 files changed

+0
-4035
lines changed

src/rest/Microvisor.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/rest/MicrovisorBase.ts

Lines changed: 0 additions & 33 deletions
This file was deleted.

src/rest/Twilio.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ import IpMessaging from "./IpMessaging";
2828
import Lookups from "./Lookups";
2929
import Marketplace from "./Marketplace";
3030
import Messaging from "./Messaging";
31-
import Microvisor from "./Microvisor";
3231
import Monitor from "./Monitor";
3332
import Notify from "./Notify";
3433
import Numbers from "./Numbers";
@@ -116,8 +115,6 @@ class Twilio extends Client {
116115
_marketplace?: Marketplace;
117116
/** (Twilio.Messaging) - messaging domain */
118117
_messaging?: Messaging;
119-
/** (Twilio.Microvisor) - microvisor domain */
120-
_microvisor?: Microvisor;
121118
/** (Twilio.Monitor) - monitor domain */
122119
_monitor?: Monitor;
123120
/** (Twilio.Notify) - notify domain */
@@ -192,7 +189,6 @@ class Twilio extends Client {
192189
this.lookups;
193190
this.marketplace;
194191
this.messaging;
195-
this.microvisor;
196192
this.monitor;
197193
this.notify;
198194
this.numbers;
@@ -318,13 +314,6 @@ class Twilio extends Client {
318314
this._messaging ?? (this._messaging = new (require("./Messaging"))(this))
319315
);
320316
}
321-
/** Getter for (Twilio.Microvisor) domain */
322-
get microvisor(): Microvisor {
323-
return (
324-
this._microvisor ??
325-
(this._microvisor = new (require("./Microvisor"))(this))
326-
);
327-
}
328317
/** Getter for (Twilio.Monitor) domain */
329318
get monitor(): Monitor {
330319
return this._monitor ?? (this._monitor = new (require("./Monitor"))(this));

src/rest/microvisor/V1.ts

Lines changed: 0 additions & 66 deletions
This file was deleted.

0 commit comments

Comments
 (0)
0