File tree 9 files changed +3417
-2435
lines changed
9 files changed +3417
-2435
lines changed Original file line number Diff line number Diff line change 10
10
}
11
11
},
12
12
"dependencies" : {
13
- "axios" : " 0.21.1 "
13
+ "axios" : " 1.4.0 "
14
14
},
15
15
"description" : " SDK for timelyapp.com API" ,
16
16
"devDependencies" : {
17
- "@digitalroute/cz-conventional-changelog-for-jira" : " 6.6 .0" ,
18
- "@pliancy/eslint-config-ts" : " 0 .0.5 " ,
19
- "@pliancy/semantic-release-config-npm" : " ^2.1 .0" ,
20
- "@types/jest" : " 27.0.1 " ,
21
- "commitizen" : " 4.2.4 " ,
22
- "cpy-cli" : " 3.1.1 " ,
23
- "husky" : " 7 .0.2 " ,
24
- "jest" : " 27.1.0 " ,
25
- "npm-run-all" : " ^ 4.1.5" ,
26
- "pinst" : " 2.1.6 " ,
27
- "rimraf" : " 3 .0.2 " ,
28
- "semantic-release" : " ^17.4.7 " ,
29
- "ts-jest" : " 27.0.5 " ,
30
- "ts-node" : " ^9.1 .1" ,
31
- "typescript" : " 4.4.2 "
17
+ "@digitalroute/cz-conventional-changelog-for-jira" : " 6.8 .0" ,
18
+ "@pliancy/eslint-config-ts" : " 1 .0.0 " ,
19
+ "@pliancy/semantic-release-config-npm" : " 2.2 .0" ,
20
+ "@types/jest" : " 29.5.4 " ,
21
+ "commitizen" : " 4.3.0 " ,
22
+ "cpy-cli" : " 5.0.0 " ,
23
+ "husky" : " 8 .0.3 " ,
24
+ "jest" : " 29.6.4 " ,
25
+ "npm-run-all" : " 4.1.5" ,
26
+ "pinst" : " 3.0.0 " ,
27
+ "rimraf" : " 5 .0.1 " ,
28
+ "semantic-release" : " 19.0.5 " ,
29
+ "ts-jest" : " 29.1.1 " ,
30
+ "ts-node" : " 10.9 .1" ,
31
+ "typescript" : " 5.1.6 "
32
32
},
33
33
"engines" : {
34
34
"node" : " >=12"
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
2
2
import { AddTimelyClient , TimelyAppConfig , TimelyClient } from '../types'
3
3
4
4
export class Clients {
5
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
5
+ constructor (
6
+ private readonly http : AxiosInstance ,
7
+ private readonly config : TimelyAppConfig ,
8
+ ) { }
6
9
7
10
async getAll ( ) : Promise < TimelyClient [ ] > {
8
11
const { data } = await this . http . get ( `/${ this . config . accountId } /clients?show=all` )
Original file line number Diff line number Diff line change @@ -9,7 +9,10 @@ import {
9
9
} from '../types'
10
10
11
11
export class Events {
12
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
12
+ constructor (
13
+ private readonly http : AxiosInstance ,
14
+ private readonly config : TimelyAppConfig ,
15
+ ) { }
13
16
14
17
async getAll ( start ?: DateString , end ?: DateString ) : Promise < TimelyEvent [ ] > {
15
18
// Ensure given date range conforms to ISO string format
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
2
2
import { AddTimelyLabel , TimelyAppConfig , TimelyLabel } from '../types'
3
3
4
4
export class Labels {
5
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
5
+ constructor (
6
+ private readonly http : AxiosInstance ,
7
+ private readonly config : TimelyAppConfig ,
8
+ ) { }
6
9
7
10
async getAll ( ) : Promise < TimelyLabel [ ] > {
8
11
const { data } = await this . http . get ( `/${ this . config . accountId } /labels` )
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
2
2
import { AddTimelyProject , TimelyAppConfig , TimelyProject } from '../types'
3
3
4
4
export class Projects {
5
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
5
+ constructor (
6
+ private readonly http : AxiosInstance ,
7
+ private readonly config : TimelyAppConfig ,
8
+ ) { }
6
9
7
10
async getAll ( filter ?: 'active' | 'all' | 'mine' | 'archived' ) : Promise < TimelyProject [ ] > {
8
11
const { data } = await this . http . get (
Original file line number Diff line number Diff line change @@ -3,7 +3,10 @@ import { paginatedRequest } from '../http/paginated-request'
3
3
import { TimelyAppConfig } from '../types'
4
4
5
5
export class Reports {
6
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
6
+ constructor (
7
+ private readonly http : AxiosInstance ,
8
+ private readonly config : TimelyAppConfig ,
9
+ ) { }
7
10
8
11
async getByExternalId (
9
12
externalId : string ,
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
2
2
import { TimelyAppConfig , TimelyTeam , TimelyUser } from '../types'
3
3
4
4
export class Teams {
5
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
5
+ constructor (
6
+ private readonly http : AxiosInstance ,
7
+ private readonly config : TimelyAppConfig ,
8
+ ) { }
6
9
7
10
async getAll ( ) : Promise < TimelyUser [ ] > {
8
11
const { data } = await this . http . get ( `/${ this . config . accountId } /teams` )
Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ import {
11
11
} from '../types'
12
12
13
13
export class Users {
14
- constructor ( private readonly http : AxiosInstance , private readonly config : TimelyAppConfig ) { }
14
+ constructor (
15
+ private readonly http : AxiosInstance ,
16
+ private readonly config : TimelyAppConfig ,
17
+ ) { }
15
18
16
19
async getAll ( ) : Promise < TimelyUser [ ] > {
17
20
const { data } = await this . http . get ( `/${ this . config . accountId } /users?limit=1000` )
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments