Skip to content

Commit 034b8d8

Browse files
author
Justin
committedAug 25, 2023
chore(deps): ENG-393 update all
1 parent 0689467 commit 034b8d8

File tree

9 files changed

+3417
-2435
lines changed

9 files changed

+3417
-2435
lines changed
 

‎package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,25 @@
1010
}
1111
},
1212
"dependencies": {
13-
"axios": "0.21.1"
13+
"axios": "1.4.0"
1414
},
1515
"description": "SDK for timelyapp.com API",
1616
"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"
3232
},
3333
"engines": {
3434
"node": ">=12"

‎src/lib/clients/clients.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
22
import { AddTimelyClient, TimelyAppConfig, TimelyClient } from '../types'
33

44
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+
) {}
69

710
async getAll(): Promise<TimelyClient[]> {
811
const { data } = await this.http.get(`/${this.config.accountId}/clients?show=all`)

‎src/lib/events/events.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ import {
99
} from '../types'
1010

1111
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+
) {}
1316

1417
async getAll(start?: DateString, end?: DateString): Promise<TimelyEvent[]> {
1518
// Ensure given date range conforms to ISO string format

‎src/lib/labels/labels.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
22
import { AddTimelyLabel, TimelyAppConfig, TimelyLabel } from '../types'
33

44
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+
) {}
69

710
async getAll(): Promise<TimelyLabel[]> {
811
const { data } = await this.http.get(`/${this.config.accountId}/labels`)

‎src/lib/projects/projects.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
22
import { AddTimelyProject, TimelyAppConfig, TimelyProject } from '../types'
33

44
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+
) {}
69

710
async getAll(filter?: 'active' | 'all' | 'mine' | 'archived'): Promise<TimelyProject[]> {
811
const { data } = await this.http.get(

‎src/lib/reports/reports.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { paginatedRequest } from '../http/paginated-request'
33
import { TimelyAppConfig } from '../types'
44

55
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+
) {}
710

811
async getByExternalId(
912
externalId: string,

‎src/lib/teams/teams.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ import { AxiosInstance } from 'axios'
22
import { TimelyAppConfig, TimelyTeam, TimelyUser } from '../types'
33

44
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+
) {}
69

710
async getAll(): Promise<TimelyUser[]> {
811
const { data } = await this.http.get(`/${this.config.accountId}/teams`)

‎src/lib/users/users.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ import {
1111
} from '../types'
1212

1313
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+
) {}
1518

1619
async getAll(): Promise<TimelyUser[]> {
1720
const { data } = await this.http.get(`/${this.config.accountId}/users?limit=1000`)

‎yarn.lock

+3,373-2,412
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.