@cool-studio/clickup-sdk
Advanced tools
Comparing version 1.0.1 to 1.0.2
import { TaskService } from "./Service/TaskService"; | ||
import { AuthService } from "./Service/AuthService"; | ||
import { CommentService } from "./Service/CommentService"; | ||
declare class ClickUp { | ||
@@ -6,4 +8,6 @@ private axios; | ||
tasks: TaskService; | ||
auth: AuthService; | ||
comments: CommentService; | ||
constructor(PersonalAccessToken: string); | ||
} | ||
export default ClickUp; |
@@ -5,2 +5,4 @@ "use strict"; | ||
const TaskService_1 = require("./Service/TaskService"); | ||
const AuthService_1 = require("./Service/AuthService"); | ||
const CommentService_1 = require("./Service/CommentService"); | ||
class ClickUp { | ||
@@ -16,4 +18,6 @@ constructor(PersonalAccessToken) { | ||
this.tasks = new TaskService_1.TaskService(this.axios); | ||
this.auth = new AuthService_1.AuthService(this.axios); | ||
this.comments = new CommentService_1.CommentService(this.axios); | ||
} | ||
} | ||
exports.default = ClickUp; |
@@ -0,1 +1,2 @@ | ||
import { User } from "./Authorization"; | ||
interface CustomFieldRequest { | ||
@@ -30,8 +31,2 @@ id: string; | ||
} | ||
interface Creator { | ||
id: number; | ||
username: string; | ||
color: string; | ||
profilePicture: string; | ||
} | ||
interface TypeConfig { | ||
@@ -93,3 +88,3 @@ single_user?: boolean; | ||
date_closed?: string | null; | ||
creator?: Creator; | ||
creator?: User; | ||
assignees?: string[]; | ||
@@ -96,0 +91,0 @@ checklists?: string[]; |
{ | ||
"name": "@cool-studio/clickup-sdk", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "A TS SDK for ClickUp", | ||
@@ -5,0 +5,0 @@ "repository": { |
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
13100
28
436