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

clockify-ts

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clockify-ts

Clockify API wrapper in Typescript

  • 1.2108.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
661
increased by747.44%
Maintainers
1
Weekly downloads
 
Created
Source

Clockify-ts - Typescript/JavaScript Wrapper for Clockify API

clockify-logo

Quality Gate Status Coverage Bugs Code Smells Maintainability Rating Reliability Rating Security Rating

Introduction

Clockify-ts is an unofficial wrapper for the clockify API written in TypeScript. By using Clockify's REST-based API, you can push and pull data to and from Clockify, and integrate it with other systems.

You can install this package using NPM!

$ npm install clockify-ts

And import the package using require/import syntax.

import Clockify from "clockify-ts";

// Alternatively
const Clockify = require("clockify-ts").default;

Note: To use the "import"-syntax, you must use a bundler like Webpack, Parel or Vite that can handle ECMAScript modules (ESM).

Authentication

All communication with the Clockify API needs to be authenticated using a Auth-Token. This token can be generated in the User Settings page and needs to be passed to the clockify instance.

If your workspace is on a subdomain (eg. something.clockify.me), you'll need to generate a new API key in your Profile Settings that will work just for that workspace.

If you're a self-hosted user, you'll have to use a different API base endpoint: "https://yourcustomdomain.com/api" and "https://yourdomain.com/reports" (you can find exact endpoints when you go to "https://youdomain.com/web/boot").

import Clockify from "clockify-ts";

const clockifyApiKey = "YOUR-API-KEY";
const clockify = new Clockify("clockifyApiKey");

Principles

Clockify-ts wrapps all base API Endpoints from clockify. This is best illustrated using an example:

import Clockify from "clockify-ts";

const clockify = new Clockify("clockifyApiKey");

// Endpoint: GET /workspaces/{workspaceId}/projects
const projects = await clockify.workspace.withId("workspaceId").projects.get();

There are type definitions available for all return values and all possible query objects. The type definitions can be imported directly from the clockify-ts package:

import Clockify from "clockify-ts";
import type { ProjectType } from "clockify-ts";

const project: ProjectType = {
    id: "xxx"
}

Features

The following clockify API features are already well implemented and tested.

Base Endpoints
  • Client :heavy_check_mark:
  • Project :heavy_check_mark:
  • Tag :heavy_check_mark:
  • Task :heavy_check_mark:
  • Time Entry :heavy_check_mark:
  • User :heavy_check_mark:
  • Group: :x:
  • Workspace :heavy_check_mark:
  • Custom Fields :heavy_check_mark:
Report Endpoints
  • Detailed Reports: :heavy_check_mark:
  • Summary Reports: :heavy_check_mark:
  • Weekly Reports: :x:
  • Shared Reports: :x:

Examples / Documentation

Client

Find clients on workspace

API Documentation

import Clockify from "clockify-ts";
import type { ClientType } from "clockify-ts";

const clockify = new Clockify("clockifyApiKey");
const clients: ClientType[] = await clockify.workspace.withId("workspaceId").clients.get();

Or with a more complex query:

import Clockify, { ClientsQuery } from "clockify-ts";
import type { ClientType } from "clockify-ts";

const clockify = new Clockify("clockifyApiKey");
const query: ClientsQuery = {
    name: "Project Name",
    page: 1,
}
const clients: ClientType[] = await clockify.workspace.withId("workspaceId").clients.get(query);

Add a new client to workspace

API Documentation

import Clockify from "clockify-ts";
import type { ClientType } from "clockify-ts";

const clockify = new Clockify("clockifyApiKey");
const client: ClientType = await clockify.workspace.withId("workspaceId").clients.post({ name: "name" });

Update client

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedClient = await clockify.workspace.withId("workspaceId").clients.withId("clientId").put(client)

Delete client

API Documentation

const clockify = new Clockify("clockifyApiKey");
const deleted_client = await clockify.workspace.withId("workspaceId").clients.withId("clientId").delete();

Project

Get all projects on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const projects = await clockify.workspace.withId("workspaceId").projects.get();

Find project by ID

API Documentation

const clockify = new Clockify("clockifyApiKey");
const project = await clockify.workspace.withId("workspaceId").projects.withId("projectId").get();

Add a new project to workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const project = await clockify.workspace.withId("workspaceId").projects.post({ name });

Update project on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedProject = await clockify.workspace.withId("workspaceId").projects.withId("projectId").put( project )

Update project estimate

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedProject = await clockify.workspace.withId("workspaceId").projects.withId("projectId").estimate.patch(projectEstimate)

Update project memberships

API Documentation

const clockify = new Clockify("clockifyApiKey");
const project = await clockify.workspace.withId("workspaceId").projects.withId("projectId").memberships.patch(membership);

Update project template

API Documentation

const clockify = new Clockify("clockifyApiKey");
const projectNoTemplate = await clockify.workspace.withId("workspaceId").projects.withId("projectId").template.patch({
    isTemplate: false,
  });

Delete project from workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const deletedProject = await clockify.workspace.withId("workspaceId").projects.withId("archivedProjectId").delete();

Tag

Find tags on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const tags = await clockify.workspace.withId("workspaceId").tags.get();

Add a new tag to workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const createdTag = await clockify.workspace.withId("workspaceId").tags.post({ name });

Update tag

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedTag = await clockify.workspace.withId("workspaceId").tags.withId("tagId").put({ name });

Delete tag

API Documentation

const clockify = new Clockify("clockifyApiKey");
const deletedTag = await clockify.workspace.withId("workspaceId").tags.withId("tagId").delete();

Task

Find tasks on project

API Documentation

const clockify = new Clockify("clockifyApiKey");
const tasks = await clockify.workspace.withId("workspaceId").projects.withId("projectId").tasks.get();

Find task on project by ID

API Documentation

const clockify = new Clockify("clockifyApiKey");
const task = await clockify.workspace.withId("workspaceId").projects.withId("projectId").tasks.withId("taskId").get();

Add a new task on project

API Documentation

const clockify = new Clockify("clockifyApiKey");
const createdTask = await clockify.workspace.withId("workspaceId").projects.withId("projectId").tasks.post(task);

Update task on project

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedTask = await clockify.workspace.withId("workspaceId").projects.withId("projectId").tasks.withId("taskId").put(task);

Delete task from project

API Documentation

const clockify = new Clockify("clockifyApiKey");
const deletedTask = await clockify.workspace.withId("workspaceId").projects.withId("projectId").tasks.withId("taskId").delete();

Time Entry

Get your time entries on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const timeEntries = await clockify.workspace.withId("workspaceId").users.withId("userId").timeEntries.get();

Get a specific time entry on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const timeEntry = await clockify.workspace.withId("workspaceId").timeEntries.withId("timeEntryId").get();

Add a new time entry to workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const createdTimeEntry = await clockify.workspace.withId("workspaceId").timeEntries.post(timeEntry);

Add a new time entry for another user on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const createdTimeEntry = await clockify.workspace.withId("workspaceId").users.withId("userId").timeEntries.post(timeEntry);

Stop currently running timer on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedTimeEntry = await clockify.workspace.withId("workspaceId").users.withId("userId").timeEntries.patch({ end: new Date() });

Update time entry on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedTimeEntry = await clockify.workspace.withId("workspaceId").timeEntries.withId("timeEntryId").put(updatedTimeEntry);

Mark time entries as invoiced

API Documentation

const clockify = new Clockify("clockifyApiKey");
const updatedTimeEntry = await clockify.workspace.withId("workspaceId").timeEntries.invoiced.patch(invoiced);

Delete time entry from workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
await clockify.workspace.withId("workspaceId").timeEntries.withId("timeEntryId").delete();

User

Get currently logged in user's info

API Documentation

const clockify = new Clockify("clockifyApiKey");
const user = await clockify.user.get();

Find all users on workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const members = await clockify.workspace.withId("workspaceId").users.get();

Add user to workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const member = await clockify.workspace.withId("workspaceId").users.post({
    email: "test@example.com"
})

Update user's workspace status

API Documentation

const clockify = new Clockify("clockifyApiKey");
const inactiveUser = await clockify.workspace.withId("workspaceId").users.withId("userId").put({
    membershipStatus: UserStatusEnum.inactive,
})

Remove user from workspace

API Documentation

const clockify = new Clockify("clockifyApiKey");
const removedUser = await clockify.workspace.withId("workspaceId").users.withId("userId").delete();

Workspace

Get all my workspaces

API Documentation

const clockify = new Clockify("clockifyApiKey");
const workspaces = await clockify.workspace.get();

Reports

Summary Report

API Documentation

import type { RequestSummaryReportType } from "clockify-ts";
const clockify = new Clockify("clockifyApiKey");

const summaryQuery: RequestSummaryReportType = {
    dateRangeStart: new Date(1577836800000), // Jan. 2020
    dateRangeEnd: new Date(1609459199000), // Jan. 2021
    summaryFilter: {
        groups: [RequestSummaryReportGroupsEnum.project],
    }
}
const report = await clockify.workspaces.withId(testWorkspaceId).reports.summary.post(summaryQuery);

Detailed Report

API Documentation

import type { RequestDetailedReportType } from "clockify-ts";
const clockify = new Clockify("clockifyApiKey");

const detailedQuery: RequestDetailedReportType = {
    dateRangeStart: new Date(1577836800000), // Jan. 2020
    dateRangeEnd: new Date(1609459199000), // Jan. 2021
    detailedFilter: {}
}
const report = await clockify.workspaces.withId(testWorkspaceId).reports.detailed.post(detailedQuery);

Query, Types and Enums

Here you find an exhaustive list of all Types, Queries and Enums you can import form "clockify-ts".

Available Types

  • ClientType
  • CustomFieldType
  • EntityType
  • EstimateType
  • MembershipType
  • MemberType
  • NewClientType
  • NewProjectType
  • NewTaskType
  • NewTimeEntryType
  • NewUserType
  • ProjectType
  • RoleType
  • TagType
  • TaskType
  • TimeEntryType
  • UpdateClientType
  • UpdateProjectType
  • UserGroupType
  • UserType
  • WorkspaceType
  • RequestDetailedReportType
  • RequestSummaryReportType

Available Queries

  • ClientsQuery
  • CustomFieldsQuery
  • ProjectsQuery
  • Query
  • TagsQuery
  • TasksQuery
  • TimeEntriesQuery
  • TimeEntryQuery
  • UpdateClientQuery
  • UpdateProjectQuery
  • UserGroupQuery
  • UsersQuery

Available Enums

Type Enums
  • CustomFieldTypeEnum,
  • CustomFieldStatusEnum,
  • CustomFieldProjectDefaultValuesStatusEnum,
  • TimeEstimateTypeEnum,
  • BudgetEstimateTypeEnum,
  • TimeEstimateResetOptionEnum,
  • BudgetEstimateResetOptionEnum,
  • MembershipStatusEnum,
  • MembershipTypeEnum,
  • TaskStatusEnum,
  • RoleEnum,
Query Enums
  • CustomFieldQueryStatusEnum,
  • QuerySortOrderEnum,
  • ProjectsQueryClientStatusEnum,
  • ProjectsQueryUserStatusEnum,
  • UpdateProjectQueryEstimateTypeEnum,
  • UserQueryMembershipsEnum,
  • UserQueryStatusEnum,
Report Enums
  • RequestDetailedReportGroupsEnum
  • RequestDetailedReportTotalOptionEnum
  • RequestDetailedReportSortOrderEnum
  • RequestDetailedReportInvoicingStateEnum
  • RequestDetailedReportApprovalStateEnum
  • RequestDetailedReportSortColumnEnum
  • RequestDetailedReportAmountShownEnum
  • RequestDetailedReportExportTypeEnum
  • RequestDetailedReportContainsFilterEnum
  • RequestDetailedReportContainedInTimeEntryFilterEnum
  • RequestDetailedReportProjectStatusFilterEnum
  • RequestDetailedReportClientStatusFilterEnum
  • RequestDetailedReportTagStatusFilterEnum
  • RequestDetailedReportUserStatusFilterEnum
  • RequestDetailedReportTaskStatusFilterEnum
  • RequestSummaryReportGroupsEnum
  • RequestSummaryReportSortOrderEnum
  • RequestSummaryReportInvoicingStateEnum
  • RequestSummaryReportApprovalStateEnum
  • RequestSummaryReportSortColumnEnum
  • RequestSummaryReportAmountShownEnum
  • RequestSummaryReportExportTypeEnum
  • RequestSummaryReportContainsFilterEnum
  • RequestSummaryReportContainedInTimeEntryFilterEnum
  • RequestSummaryReportProjectStatusFilterEnum
  • RequestSummaryReportClientStatusFilterEnum
  • RequestSummaryReportTagStatusFilterEnum
  • RequestSummaryReportUserStatusFilterEnum
  • RequestSummaryReportTaskStatusFilterEnum

Credits

Open-Source Development by PolygonSoftware, Zurich

Keywords

FAQs

Package last updated on 01 Dec 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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