npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

clockify-ts

v1.2108.13

Published

Clockify API wrapper in Typescript

Downloads

416

Readme

Clockify-ts - Typescript/JavaScript Wrapper for Clockify API

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: "[email protected]"
})

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