Add Clockify task resource (#2162)

*  Add Task resource to Clockify Node

* 🔨 Refactor Clockify expansion

* 🔥 Remove logging

*  Add defaults

*  Improvements

*  Minor improvements

Co-authored-by: Frank Silver <dasylva.f@gmail.com>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Iván Ovejero
2021-09-03 19:03:15 +02:00
committed by GitHub
parent 7dcbaedea6
commit 1084e7d9b5
5 changed files with 538 additions and 5 deletions

View File

@@ -1,4 +1,7 @@
import { IHourlyRateDto, IMembershipDto } from './CommonDtos';
import {
IHourlyRateDto,
IMembershipDto,
} from './CommonDtos';
enum EstimateEnum {
AUTO = 'AUTO',
@@ -52,4 +55,5 @@ export interface ITaskDto {
name: string;
projectId: string;
status: TaskStatusEnum;
'is-active': boolean;
}