Skip to content

Commit d29698e

Browse files
chore(deps): update all dependencies j:cdx-227 (#325)
* chore(deps): update all dependencies j:cdx-227 * remove undici from direct dependencies, rely on global node types --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Louis Bompart <[email protected]>
1 parent 142e70a commit d29698e

File tree

11 files changed

+46
-58
lines changed

11 files changed

+46
-58
lines changed

package-lock.json

Lines changed: 39 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
"zod": "^3.20.2"
2525
},
2626
"devDependencies": {
27-
"@coveo/semantic-monorepo-tools": "2.4.2",
27+
"@coveo/semantic-monorepo-tools": "2.4.10",
2828
"@octokit/auth-action": "^2.0.3",
29-
"@types/jest": "29.5.10",
30-
"@types/node": "20.10.3",
29+
"@types/jest": "29.5.11",
30+
"@types/node": "20.10.6",
3131
"@typescript-eslint/eslint-plugin": "5.62.0",
3232
"@typescript-eslint/parser": "5.62.0",
3333
"conventional-changelog-angular": "5.0.13",
3434
"cz-conventional-changelog": "3.3.0",
3535
"detect-indent": "7.0.1",
3636
"dotenv": "16.3.1",
37-
"eslint": "8.55.0",
37+
"eslint": "8.56.0",
3838
"eslint-config-prettier": "8.10.0",
3939
"gts": "3.1.1",
4040
"husky": "8.0.3",
@@ -44,10 +44,9 @@
4444
"octokit": "2.1.0",
4545
"prettier": "2.8.8",
4646
"ts-jest": "29.1.1",
47-
"ts-node": "10.9.1",
48-
"typedoc": "0.25.4",
49-
"typescript": "5.3.2",
50-
"undici": "^5.16.0"
47+
"ts-node": "10.9.2",
48+
"typedoc": "0.25.6",
49+
"typescript": "5.3.3"
5150
},
5251
"husky": {
5352
"hooks": {

src/APICore.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import type {Response} from 'undici';
2-
31
jest.mock('./errors/fetchError');
42
import {FetchError} from './errors/fetchError';
53
import {APICore} from './APICore';

src/APICore.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import {backOff} from 'exponential-backoff';
2-
import type {RequestInit, Response} from 'undici';
32
import {FetchError} from './errors/fetchError';
43
import {ThrottleError} from './errors/throttleError';
54
import {PlatformOptions} from './environment';

src/errors/fetchError.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type {Response} from 'undici';
21
import {PushApiClientBaseError} from './baseError';
32
import {FetchError} from './fetchError';
43

src/errors/fetchError.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type {Response} from 'undici';
21
import {PushApiClientBaseError} from './baseError';
32
import dedent from 'ts-dedent';
43

src/help/fileConsumer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
import {parseAndGetDocumentBuilderFromJSONDocument} from '../validation/parseFile';
1010
import {basename} from 'path';
1111
import {consumeGenerator} from './generator';
12-
import type {Response} from 'undici';
1312
import {isUndefined} from '@coveo/bueno';
1413

1514
export type SuccessfulUploadCallback = (data: UploadBatchCallbackData) => void;

src/help/fileContainer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type {Response} from 'undici';
21
import {URL} from 'node:url';
32
import {BatchUpdateDocuments} from '../interfaces';
43

src/interfaces.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import type {Response} from 'undici';
21
import {PathLike} from 'fs';
32
import type {DocumentBuilder} from './documentBuilder';
43
import type {Transformer} from './validation/transformers/transformer';

src/source/documentUploader.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import PlatformClient from '@coveo/platform-client';
2-
import type {Response} from 'undici';
32
import {FieldAnalyser} from '..';
43
import {APICore} from '../APICore';
54
import {DocumentBuilder} from '../documentBuilder';

0 commit comments

Comments
 (0)