Skip to content

Commit f09984f

Browse files
author
Corentin Mors
authored
Update dependencies may 2024 (#240)
Regular updates
1 parent 1445889 commit f09984f

File tree

7 files changed

+325
-191
lines changed

7 files changed

+325
-191
lines changed

package.json

+12-12
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@
5151
},
5252
"devDependencies": {
5353
"@types/async": "^3.2.24",
54-
"@types/better-sqlite3": "^7.6.9",
55-
"@types/chai": "^4.3.14",
56-
"@types/inquirer": "^8.2.10",
54+
"@types/better-sqlite3": "^7.6.10",
55+
"@types/chai": "^4.3.16",
56+
"@types/inquirer": "^9.0.7",
5757
"@types/mocha": "^10.0.6",
58-
"@types/node": "^18.19.31",
59-
"@typescript-eslint/eslint-plugin": "^7.7.0",
60-
"@typescript-eslint/parser": "^7.7.0",
58+
"@types/node": "^18.19.33",
59+
"@typescript-eslint/eslint-plugin": "^7.8.0",
60+
"@typescript-eslint/parser": "^7.8.0",
6161
"@yao-pkg/pkg": "^5.11.5",
6262
"chai": "^4.4.1",
6363
"esbuild": "^0.21.2",
@@ -75,16 +75,16 @@
7575
"@json2csv/transforms": "^7.0.6",
7676
"@napi-rs/clipboard": "^1.1.2",
7777
"@napi-rs/keyring": "^1.1.6",
78-
"@node-rs/argon2": "^1.8.0",
79-
"better-sqlite3": "^9.5.0",
80-
"commander": "^11.1.0",
78+
"@node-rs/argon2": "^1.8.3",
79+
"better-sqlite3": "^10.0.0",
80+
"commander": "^12.0.0",
8181
"got": "^11.8.6",
82-
"inquirer": "^8.2.6",
82+
"inquirer": "^9.2.20",
8383
"inquirer-search-list": "^1.2.6",
84-
"jsonpath-plus": "^8.1.0",
84+
"jsonpath-plus": "^9.0.0",
8585
"node-mac-auth": "^1.0.0",
8686
"otplib": "^12.0.1",
87-
"playwright-core": "^1.43.1",
87+
"playwright-core": "^1.44.0",
8888
"winston": "^3.13.0",
8989
"xml-js": "^1.6.11",
9090
"zlib": "^1.0.5"

src/modules/api-connect/postRequestAPI.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const postRequestAPI = <T>(params: PostRequestAPIParams<T>) => {
2323
...(customHeaders || {}),
2424
};
2525

26-
let authorizationHeader = null;
26+
let authorizationHeader: string | null = null;
2727

2828
if (authentication.type !== 'none') {
2929
authorizationHeader = signRequest({

src/modules/crypto/test.ts

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect } from 'chai';
1+
import { assert } from 'chai';
22
import * as crypto from 'crypto';
33
import { decrypt } from './decrypt';
44
import { encryptAesCbcHmac256 } from './encrypt';
@@ -14,20 +14,20 @@ describe('Encrypt and decrypt using random symmetric key', () => {
1414
const decodedBase64 = buffer.toString('ascii');
1515
const { encryptedData } = deserializeEncryptedData(decodedBase64, buffer);
1616

17-
expect(encryptedData.keyDerivation.algo).to.equal('noderivation', 'Invalid key derivation algorithm');
18-
expect(encryptedData.cipherConfig.encryption).to.equal('aes256', 'Invalid encryption algorithm');
19-
expect(encryptedData.cipherConfig.cipherMode).to.equal('cbchmac', 'Invalid encryption mode');
20-
expect(encryptedData.cipherConfig.ivLength).to.equal(16, 'Invalid IV length');
21-
expect(encryptedData.cipherData.salt).length(0, 'Invalid salt length');
22-
expect(encryptedData.cipherData.iv).length(16, 'Invalid IV');
23-
expect(encryptedData.cipherData.hash).length(32, 'Invalid hash length');
17+
assert(encryptedData.keyDerivation.algo === 'noderivation', 'Invalid key derivation algorithm');
18+
assert(encryptedData.cipherConfig.encryption === 'aes256', 'Invalid encryption algorithm');
19+
assert(encryptedData.cipherConfig.cipherMode === 'cbchmac', 'Invalid encryption mode');
20+
assert(encryptedData.cipherConfig.ivLength === 16, 'Invalid IV length');
21+
assert(encryptedData.cipherData.salt.length === 0, 'Invalid salt length');
22+
assert(encryptedData.cipherData.iv.length === 16, 'Invalid IV');
23+
assert(encryptedData.cipherData.hash.length === 32, 'Invalid hash length');
2424
});
2525

2626
it('decryption of encryption should successfully return the input', async () => {
2727
const input = 'The input string I want to encrypt';
2828
const key = crypto.randomBytes(32);
2929
const encryptedInput = encryptAesCbcHmac256(key, Buffer.from(input));
3030
const decryptedInput = await decrypt(encryptedInput, { type: 'alreadyComputed', symmetricKey: key });
31-
expect(input).to.equal(decryptedInput.toString());
31+
assert(input === decryptedInput.toString(), 'Decrypted input is different from the original input');
3232
});
3333
});

src/requestApi.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import * as got from 'got';
1+
import { Response, HTTPError } from 'got';
22
import * as apiConnect from './modules/api-connect';
33
import { CLI_VERSION, cliVersionToString } from './cliVersion';
44
import { gotImplementation } from './utils/';
55

66
interface RequestApi {
7-
payload: Dictionary<unknown>;
7+
payload: Record<string, unknown>;
88
path: string;
99
authentication: apiConnect.Authentication;
1010
}
@@ -43,9 +43,9 @@ const makeStagingCloudflareHeaders = () =>
4343
const requestApi = async <T>(params: RequestApi): Promise<T> => {
4444
const { payload, path, authentication } = params;
4545

46-
let response;
46+
let response: Response<string>;
4747
try {
48-
response = await apiConnect.postRequestAPI<got.Response<string>>({
48+
response = await apiConnect.postRequestAPI<Response<string>>({
4949
requestFunction: gotImplementation,
5050
authentication,
5151
path: 'v1/' + path,
@@ -56,7 +56,7 @@ const requestApi = async <T>(params: RequestApi): Promise<T> => {
5656
});
5757
} catch (error: unknown) {
5858
// Generate a DashlaneApiError if appropriate
59-
if (error instanceof got.HTTPError && typeof error.response?.body === 'string') {
59+
if (error instanceof HTTPError && typeof error.response?.body === 'string') {
6060
let details;
6161
try {
6262
details = (JSON.parse(error.response.body) as DashlaneApiErrorResponse).errors[0];
@@ -77,7 +77,7 @@ const requestApi = async <T>(params: RequestApi): Promise<T> => {
7777
};
7878

7979
export interface RequestAppApi {
80-
payload: Dictionary<unknown>;
80+
payload: Record<string, unknown>;
8181
path: string;
8282
}
8383

@@ -93,7 +93,7 @@ export const requestAppApi = async <T>(params: RequestAppApi): Promise<T> => {
9393

9494
export interface RequestUserApi {
9595
login: string;
96-
payload: Dictionary<unknown>;
96+
payload: Record<string, unknown>;
9797
path: string;
9898
deviceKeys: {
9999
accessKey: string;
@@ -116,7 +116,7 @@ export const requestUserApi = async <T>(params: RequestUserApi): Promise<T> => {
116116

117117
export interface RequestTeamApi {
118118
teamUuid: string;
119-
payload: Dictionary<unknown>;
119+
payload: Record<string, unknown>;
120120
path: string;
121121
teamDeviceKeys: {
122122
accessKey: string;

src/utils/gotImplementation.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import * as got from 'got';
1+
import got, { Response } from 'got';
22
import * as apiConnect from '../modules/api-connect';
33

4-
export const gotImplementation: apiConnect.RequestFunction<got.Response<string>> = (
4+
export const gotImplementation: apiConnect.RequestFunction<Response<string>> = (
55
options: apiConnect.RequestFunctionOptions
66
) => {
77
const { headers, json, url } = options;
88

9-
return got.default.post(url, {
9+
return got.post(url, {
1010
headers,
1111
json,
1212
retry: { limit: 3 },

tsconfig.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"jsx": "react",
43
/* Visit https://aka.ms/tsconfig.json to read more about this file */
54

65
/* Projects */
@@ -12,7 +11,7 @@
1211
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
1312

1413
/* Language and Environment */
15-
"target": "es2020" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
14+
"target": "ES2022" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
1615
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
1716
// "jsx": "preserve", /* Specify what JSX code is generated. */
1817
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
@@ -99,5 +98,5 @@
9998
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
10099
"skipLibCheck": true /* Skip type checking all .d.ts files. */
101100
},
102-
"exclude": ["documentation/components/**/*"]
101+
"exclude": ["documentation/**/*", "scripts/**/*"]
103102
}

0 commit comments

Comments
 (0)