Skip to content

Commit 4b4b722

Browse files
committed
Fix linting errors
1 parent 5bc5a74 commit 4b4b722

File tree

30 files changed

+114
-88
lines changed

30 files changed

+114
-88
lines changed

deployed-devices/rest/certificates/update-certificate/update-certificate.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fleet
1313
.certificates('CYXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
1414
.update({
1515
friendlyName: 'My New Certificate',
16-
deviceSid: 'THXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
16+
deviceSid: 'THXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
1717
})
1818
.then(response => {
1919
console.log(response);

deployed-devices/rest/deployments/create-deployment/create-deployment.3.x.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ const authToken = 'your_auth_token';
33
const Twilio = require('twilio').Twilio;
44

55
const client = new Twilio(accountSid, authToken);
6-
const fleet = client.preview.deployed_devices.fleets('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
6+
const fleet = client.preview.deployed_devices.fleets(
7+
'FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
8+
);
79

810
fleet.deployments
911
.create({
10-
friendlyName: 'My Device Deployment'
12+
friendlyName: 'My Device Deployment',
1113
})
1214
.then(response => {
1315
console.log(response);

deployed-devices/rest/deployments/delete-deployment/delete-deployment.3.x.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ const authToken = 'your_auth_token';
33
const Twilio = require('twilio').Twilio;
44

55
const client = new Twilio(accountSid, authToken);
6-
const fleet = client.preview.deployed_devices.fleets('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
6+
const fleet = client.preview.deployed_devices.fleets(
7+
'FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
8+
);
79

810
fleet
911
.deployments('DLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')

deployed-devices/rest/deployments/list-deployments/list-deployments.3.x.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ const authToken = 'your_auth_token';
33
const Twilio = require('twilio').Twilio;
44

55
const client = new Twilio(accountSid, authToken);
6-
const fleet = client.preview.deployed_devices.fleets('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
6+
const fleet = client.preview.deployed_devices.fleets(
7+
'FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
8+
);
79

810
fleet.deployments
911
.list()

deployed-devices/rest/deployments/retrieve-deployment/retrieve-deployment.3.x.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ const authToken = 'your_auth_token';
33
const Twilio = require('twilio').Twilio;
44

55
const client = new Twilio(accountSid, authToken);
6-
const fleet = client.preview.deployed_devices.fleets('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
6+
const fleet = client.preview.deployed_devices.fleets(
7+
'FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
8+
);
79

810
fleet
911
.deployments('DLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')

deployed-devices/rest/deployments/update-deployment/update-deployment.3.x.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ const authToken = 'your_auth_token';
33
const Twilio = require('twilio').Twilio;
44

55
const client = new Twilio(accountSid, authToken);
6-
const fleet = client.preview.deployed_devices.fleets('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
6+
const fleet = client.preview.deployed_devices.fleets(
7+
'FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
8+
);
79

810
fleet
911
.deployments('FLXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
1012
.update({
1113
friendlyName: 'My New Device Deployment',
12-
syncServiceSid: 'ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
14+
syncServiceSid: 'ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
1315
})
1416
.then(response => {
1517
console.log(response);

deployed-devices/rest/devices/create-device/create-device.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const fleetService = client.preview.deployed_devices.fleets(fleetSid);
1212

1313
fleetService.devices
1414
.create({
15-
friendlyName: 'My Device #1'
15+
friendlyName: 'My Device #1',
1616
})
1717
.then(response => {
1818
console.log(response);

deployed-devices/rest/devices/update-device/update-device.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fleetService
1414
.devices('THXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
1515
.update({
1616
friendlyName: 'My New Device',
17-
identity: 'bob@twilio.com'
17+
identity: 'bob@twilio.com',
1818
})
1919
.then(response => {
2020
console.log(response);

deployed-devices/rest/fleets/create-fleet/create-fleet.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const client = new Twilio(accountSid, authToken);
66

77
client.preview.deployed_devices.fleets
88
.create({
9-
friendlyName: 'My Fleet of Devices'
9+
friendlyName: 'My Fleet of Devices',
1010
})
1111
.then(response => {
1212
console.log(response);

deployed-devices/rest/fleets/update-fleet/update-fleet.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const client = new Twilio(accountSid, authToken);
77
client.sync
88
.services('ISXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX')
99
.update({
10-
friendlyName: 'My New Fleet of Devices'
10+
friendlyName: 'My New Fleet of Devices',
1111
})
1212
.then(response => {
1313
console.log(response);

0 commit comments

Comments
 (0)