Skip to content

Commit 1c3699f

Browse files
committed
bump version
1 parent 77df84d commit 1c3699f

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
{
22
"name": "forge-apis",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "The Forge Platform contains an expanding collection of web service components that can be used with Autodesk cloud-based products or your own technologies. Take advantage of Autodesk’s expertise in design and engineering.",
55
"license": "Apache-2.0",
66
"main": "src/index.js",
77
"scripts": {
88
"test": "./node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 ./test",
9+
"test-oauth": "./node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 ./test/auth",
10+
"test-api": "./node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 ./test/api",
11+
"test-model": "./node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 ./test/model",
912
"testhubs": "./node_modules/mocha/bin/mocha --colors --timeout 10000 ./test/api/HubsApi.spec",
1013
"coverage": "nyc npm run test"
1114
},

src/model/Messages.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ module.exports = (function () {
2828
var ApiClient = require('../ApiClient'),
2929
Message = require('./Message');
3030

31-
32-
3331
/**
3432
* The Messages model module.
3533
* @module model/Messages
@@ -65,7 +63,7 @@ module.exports = (function () {
6563
_this = [];
6664
Object.setPrototypeOf(_this, exports);
6765

68-
return constructFromObject(theData, obj || _this);
66+
return constructFromObject(theData, obj);
6967
};
7068

7169
/**
@@ -77,9 +75,6 @@ module.exports = (function () {
7775
*/
7876
exports.constructFromObject = constructFromObject;
7977

80-
81-
82-
8378
return exports;
8479
}());
8580

0 commit comments

Comments
 (0)