@@ -292,20 +292,20 @@ describe('DefaultAPI', () => {
292
292
293
293
test ( '#listSmsMessages' , async ( ) => {
294
294
const to = "to_example"
295
- const _from = "from_example"
295
+ const from = "from_example"
296
296
const beginTime = "beginTime_example"
297
297
const endTime = "endTime_example"
298
298
const direction = MessageDirection . INBOUND
299
299
const campaignId = "CX56XX4"
300
300
const brandId = "BX56XX4"
301
301
const is10DLC = true
302
- let data = await apiInstance . listSmsMessages ( to , _from , beginTime , endTime , direction )
302
+ let data = await apiInstance . listSmsMessages ( to , from , beginTime , endTime , direction )
303
303
expect ( data ) . toBeInstanceOf ( MessagesList )
304
304
} ) ;
305
305
306
306
test ( '#makeACall' , async ( ) => {
307
307
const request = {
308
- _from : "_from_example " ,
308
+ from : "from_example " ,
309
309
to : "to_example" ,
310
310
applicationId : "applicationId_example" ,
311
311
sendDigits : "sendDigits_example" ,
@@ -330,7 +330,7 @@ describe('DefaultAPI', () => {
330
330
331
331
test ( '#sendAnSmsMessage' , async ( ) => {
332
332
const request = {
333
- _from : "_from_example " ,
333
+ from : "from_example " ,
334
334
to : "to_example" ,
335
335
text : "Example Text"
336
336
}
@@ -442,7 +442,7 @@ describe('DefaultAPI', () => {
442
442
test ( '#makeAWebrtcJwt' , async ( ) => {
443
443
const createWebrtcToken : freeclimb . CreateWebRTCToken = {
444
444
to : "to_example" ,
445
- _from : "from_example" ,
445
+ from : "from_example" ,
446
446
uses : 1 ,
447
447
}
448
448
let data = await apiInstance . makeAWebrtcJwt ( createWebrtcToken )
0 commit comments