-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
66 lines (66 loc) · 3.05 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
var qs_1 = require("qs");
var axios_1 = __importDefault(require("axios"));
var ClockifyError_1 = __importDefault(require("../../ClockifyError"));
var paramsSerializer = function (params) { return (0, qs_1.stringify)(params, {
arrayFormat: "repeat",
serializeDate: function (d) { return d.toISOString(); },
}); };
var ClockifyAPI = (function () {
function ClockifyAPI(apiKey) {
this._apiKey = apiKey;
this._api = this.clockifyApiInstance(apiKey);
}
ClockifyAPI.prototype.resourceSubPath = function () {
return "";
};
ClockifyAPI.prototype.clockifyApiInstance = function (apiKey) {
return axios_1.default.create({
baseURL: "https://api.clockify.me/api/v1",
headers: {
'content-type': 'application/json',
'X-Api-Key': apiKey,
},
});
};
ClockifyAPI.prototype.axiosGet = function (query) {
if (query === void 0) { query = {}; }
return this._api.get(this.resourceSubPath(), { params: query, paramsSerializer: paramsSerializer })
.then(function (res) { return res.data; })
.catch(function (err) { throw new ClockifyError_1.default(err); });
};
ClockifyAPI.prototype.axiosPost = function (data, query) {
if (data === void 0) { data = {}; }
if (query === void 0) { query = {}; }
return this._api.post(this.resourceSubPath(), data, { params: query, paramsSerializer: paramsSerializer })
.then(function (res) { return res.data; })
.catch(function (err) { throw new ClockifyError_1.default(err); });
};
ClockifyAPI.prototype.axiosPut = function (data, query) {
if (data === void 0) { data = {}; }
if (query === void 0) { query = {}; }
return this._api.put(this.resourceSubPath(), data, { params: query, paramsSerializer: paramsSerializer })
.then(function (res) { return res.data; })
.catch(function (err) { throw new ClockifyError_1.default(err); });
};
ClockifyAPI.prototype.axiosPatch = function (data, query) {
if (data === void 0) { data = {}; }
if (query === void 0) { query = {}; }
return this._api.patch(this.resourceSubPath(), data, { params: query, paramsSerializer: paramsSerializer })
.then(function (res) { return res.data; })
.catch(function (err) { throw new ClockifyError_1.default(err); });
};
ClockifyAPI.prototype.axiosDelete = function (query) {
if (query === void 0) { query = {}; }
return this._api.delete(this.resourceSubPath(), { params: query, paramsSerializer: paramsSerializer })
.then(function (res) { return res.data; })
.catch(function (err) { throw new ClockifyError_1.default(err); });
};
return ClockifyAPI;
}());
exports.default = ClockifyAPI;
//# sourceMappingURL=index.js.map