Skip to content

Commit 191a029

Browse files
author
Hovhannes Babayan
committed
changed API version to 4.0
1 parent beb92b5 commit 191a029

9 files changed

Lines changed: 9 additions & 9 deletions

examples/node/create-new-project.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, then creates a new project with name "API Project"\n');

examples/node/get-metadata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, returns metadata about available API resources\n');

examples/node/get-multiple-tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, queries details of multiple tasks\n');

examples/node/get-project-details.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, queries project and project owner details by project id\n');

examples/node/get-task-metadata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, queries metadata for the task object (objCode: TASK)\n');

examples/node/get-user-count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var util = require('util');
88

99
var instance = ApiFactory.getInstance({
1010
url: 'http://localhost:8080',
11-
version: '5.0'
11+
version: '4.0'
1212
});
1313

1414
util.print('Logs in, returns number of active users\n');

examples/node/login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in\n');

examples/node/logout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in and logs out\n');

examples/node/search-for-projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var util = require('util');
77

88
var instance = ApiFactory.getInstance({
99
url: 'http://localhost:8080',
10-
version: '5.0'
10+
version: '4.0'
1111
});
1212

1313
util.print('Logs in, then search for projects with percentComplete > 0\n');

0 commit comments

Comments
 (0)