File tree Expand file tree Collapse file tree 9 files changed +0
-1227
lines changed Expand file tree Collapse file tree 9 files changed +0
-1227
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ import Microvisor from "./Microvisor";
30
30
import Monitor from "./Monitor" ;
31
31
import Notify from "./Notify" ;
32
32
import Numbers from "./Numbers" ;
33
- import Oauth from "./Oauth" ;
34
33
import Preview from "./Preview" ;
35
34
import Pricing from "./Pricing" ;
36
35
import Proxy from "./Proxy" ;
@@ -118,8 +117,6 @@ class Twilio extends Client {
118
117
_notify ?: Notify ;
119
118
/** (Twilio.Numbers) - numbers domain */
120
119
_numbers ?: Numbers ;
121
- /** (Twilio.Oauth) - oauth domain */
122
- _oauth ?: Oauth ;
123
120
/** (Twilio.Preview) - preview domain */
124
121
_preview ?: Preview ;
125
122
/** (Twilio.Pricing) - pricing domain */
@@ -188,7 +185,6 @@ class Twilio extends Client {
188
185
this . monitor ;
189
186
this . notify ;
190
187
this . numbers ;
191
- this . oauth ;
192
188
this . preview ;
193
189
this . pricing ;
194
190
this . proxy ;
@@ -314,10 +310,6 @@ class Twilio extends Client {
314
310
get numbers ( ) : Numbers {
315
311
return this . _numbers ?? ( this . _numbers = new ( require ( "./Numbers" ) ) ( this ) ) ;
316
312
}
317
- /** Getter for (Twilio.Oauth) domain */
318
- get oauth ( ) : Oauth {
319
- return this . _oauth ?? ( this . _oauth = new ( require ( "./Oauth" ) ) ( this ) ) ;
320
- }
321
313
/** Getter for (Twilio.Preview) domain */
322
314
get preview ( ) : Preview {
323
315
return this . _preview ?? ( this . _preview = new ( require ( "./Preview" ) ) ( this ) ) ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments