Comparing version 1.0.9 to 1.0.10
@@ -29,3 +29,3 @@ const csvWriter = require('csv-write-stream') | ||
if (!fs.existsSync(configFilePath)) | ||
writer = csvWriter({headers: ["Client Name", "Client Id", "Secret Key", "Scope"] | ||
writer = csvWriter({headers: ["name", "clientId", "secretKey", "scope"] | ||
}); | ||
@@ -37,8 +37,8 @@ else | ||
writer.write( | ||
Client Name: clientName | ||
Client Id: clientId, | ||
Secret Key: clientSecret, | ||
Scope: scope); | ||
name: clientName, | ||
clientId: clientId, | ||
secretKey: clientSecret, | ||
scope: scope); | ||
writer.end(); | ||
console.log("Added") | ||
} |
{ | ||
"name": "coaclient", | ||
"version": "1.0.9", | ||
"version": "1.0.10", | ||
"description": "Custom Node.js library for manage CourseraOAuth2 API tokens", | ||
@@ -5,0 +5,0 @@ "main": "coaclient", |
Sorry, the diff of this file is not supported yet
13047