Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit ab8f7f9

Browse files
committed
Send build folder for version 0.2.1 fix and closes #3.
1 parent 6aebeb3 commit ab8f7f9

File tree

4 files changed

+39
-32
lines changed

4 files changed

+39
-32
lines changed

dist/endpoints/blog.js

+14-30
Original file line numberDiff line numberDiff line change
@@ -2,60 +2,44 @@
22

33
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
44

5-
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
6-
75
var _errorHandler = require('../helpers/errorHandler');
86

97
var _errorHandler2 = _interopRequireDefault(_errorHandler);
108

119
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1210

13-
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
14-
15-
var Blog = function () {
16-
function Blog() {
17-
var api = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
18-
19-
_classCallCheck(this, Blog);
11+
var Blog = function Blog() {
12+
var api = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
2013

21-
if (api === null) throw new Error('Request instance must be provided on constructor.');
2214

23-
this.api = api;
24-
}
15+
if (api === null) throw new Error('Request instance must be provided on constructor.');
2516

26-
_createClass(Blog, [{
27-
key: 'getAllBlogs',
28-
value: function getAllBlogs(params) {
17+
return {
18+
getAllBlogs: function getAllBlogs(params) {
2919

30-
return this.api.get('content/api/v2/blogs', _extends({}, params)).then(function (response) {
20+
return api.get('content/api/v2/blogs', _extends({}, params)).then(function (response) {
3121
return response;
3222
}).catch(function (error) {
3323
return (0, _errorHandler2.default)(error);
3424
});
35-
}
36-
}, {
37-
key: 'getPosts',
38-
value: function getPosts(params) {
25+
},
26+
getPosts: function getPosts(params) {
3927

40-
return this.api.get('content/api/v2/blog-posts', _extends({}, params)).then(function (response) {
28+
return api.get('content/api/v2/blog-posts', _extends({}, params)).then(function (response) {
4129
return response;
4230
}).catch(function (error) {
4331
return (0, _errorHandler2.default)(error);
4432
});
45-
}
46-
}, {
47-
key: 'getPostById',
48-
value: function getPostById(postId) {
33+
},
34+
getPostById: function getPostById(postId) {
4935

50-
return this.api.get('content/api/v2/blog-posts/' + postId).then(function (response) {
36+
return api.get('content/api/v2/blog-posts/' + postId).then(function (response) {
5137
return response;
5238
}).catch(function (error) {
5339
return (0, _errorHandler2.default)(error);
5440
});
5541
}
56-
}]);
57-
58-
return Blog;
59-
}();
42+
};
43+
};
6044

6145
module.exports = Blog;

dist/endpoints/contacts.js

+19
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ var _responseHandler2 = _interopRequireDefault(_responseHandler);
1818

1919
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
2020

21+
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
22+
2123
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
2224

2325
var Contacts = function () {
@@ -46,6 +48,23 @@ var Contacts = function () {
4648
return (0, _errorHandler2.default)(error);
4749
});
4850
}
51+
}, {
52+
key: 'createContact',
53+
value: function createContact(properties) {
54+
55+
var mappedProperties = Object.keys(properties).map(function (property) {
56+
return {
57+
property: property,
58+
value: properties[property]
59+
};
60+
});
61+
62+
return this.api.post('contacts/v1/contact', { properties: [].concat(_toConsumableArray(mappedProperties)) }).then(function (response) {
63+
return (0, _responseHandler2.default)(response);
64+
}).catch(function (error) {
65+
return (0, _errorHandler2.default)(error);
66+
});
67+
}
4968
}]);
5069

5170
return Contacts;

dist/helpers/request.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@ var Request = function () {
5050

5151
}, {
5252
key: 'post',
53-
value: function post() {}
53+
value: function post(endPoint) {
54+
var params = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
55+
56+
return this.apiInstance.post(endPoint + '?hapikey=' + this.apiKey, this.normalizeParams(params));
57+
}
5458

5559
// TODO
5660

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var NodeHubspotApi = function NodeHubspotApi() {
2424
calendar: null,
2525
companies: null,
2626
contacts: new _contacts2.default(api),
27-
blog: new _blog2.default(api),
27+
blog: (0, _blog2.default)(api),
2828
domains: null,
2929
files: null
3030
};

0 commit comments

Comments
 (0)