clickup.js
Advanced tools
Comparing version 3.0.3 to 3.0.4
{ | ||
"name": "clickup.js", | ||
"version": "3.0.3", | ||
"version": "3.0.4", | ||
"description": "A Node.js wrapper for the Clickup API", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -380,9 +380,8 @@ class Teams { | ||
* @param {Number} teamId The team id | ||
* @param {Number} timerId The timer id | ||
* @param {Object} data The time entry data | ||
* @param {Object} [options] The parameter options to pass in | ||
*/ | ||
async startTimeEntry(teamId, timerId, data, options) { | ||
async startTimeEntry(teamId, data, options) { | ||
return this._request.post({ | ||
endpoint: `${this.route}/${teamId}/time_entries/start/${timerId}`, | ||
endpoint: `${this.route}/${teamId}/time_entries/start`, | ||
params: options, | ||
@@ -389,0 +388,0 @@ data, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
52380
2030