Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@cool-studio/clickup-sdk

Package Overview
Dependencies
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cool-studio/clickup-sdk - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

dist/Service/AuthService.d.ts

4

dist/index.d.ts
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;

9

dist/Types/Task.d.ts

@@ -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": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc