Skip to content

Commit 846bd2f

Browse files
authored
Merge pull request #447 from internxt/feat/PB-5254-update-typescript-moduleResolution-config
[PB-5254]: feat/update-typescript-module-resolution-config
2 parents 2758645 + 5b7fb82 commit 846bd2f

File tree

7 files changed

+626
-43
lines changed

7 files changed

+626
-43
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@inquirer/prompts": "8.1.0",
4040
"@internxt/inxt-js": "2.2.9",
4141
"@internxt/lib": "1.4.1",
42-
"@internxt/sdk": "1.11.23",
42+
"@internxt/sdk": "1.11.24",
4343
"@oclif/core": "4.8.0",
4444
"@oclif/plugin-autocomplete": "3.2.39",
4545
"axios": "1.13.2",
@@ -53,22 +53,22 @@
5353
"fast-xml-parser": "5.3.3",
5454
"mime-types": "3.0.2",
5555
"open": "11.0.0",
56-
"openpgp": "6.2.2",
56+
"openpgp": "6.3.0",
5757
"otpauth": "9.4.1",
5858
"pm2": "6.0.14",
5959
"range-parser": "1.2.1",
60-
"selfsigned": "4.0.0",
60+
"selfsigned": "5.2.0",
6161
"tty-table": "5.0.0",
6262
"winston": "3.19.0"
6363
},
6464
"devDependencies": {
6565
"@internxt/eslint-config-internxt": "2.0.1",
6666
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
67-
"@openpgp/web-stream-tools": "0.1.3",
67+
"@openpgp/web-stream-tools": "0.3.0",
6868
"@types/cli-progress": "3.11.6",
6969
"@types/express": "5.0.6",
7070
"@types/mime-types": "3.0.1",
71-
"@types/node": "22.19.1",
71+
"@types/node": "25.0.3",
7272
"@types/range-parser": "1.2.7",
7373
"@vitest/coverage-istanbul": "4.0.16",
7474
"@vitest/spy": "4.0.16",

src/services/crypto.service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { CryptoProvider } from '@internxt/sdk';
22
import { Keys, Password } from '@internxt/sdk/dist/auth';
3-
import { createCipheriv, createDecipheriv, createHash, Decipher, pbkdf2Sync, randomBytes } from 'node:crypto';
3+
import { createCipheriv, createDecipheriv, createHash, Decipheriv, pbkdf2Sync, randomBytes } from 'node:crypto';
44
import { KeysService } from './keys.service';
55
import { ConfigService } from '../services/config.service';
66
import { StreamUtils } from '../utils/stream.utils';
@@ -121,7 +121,7 @@ export class CryptoService {
121121
iv: Buffer,
122122
startOffsetByte?: number,
123123
) => {
124-
let decipher: Decipher;
124+
let decipher: Decipheriv;
125125
if (startOffsetByte) {
126126
const aesBlockSize = 16;
127127
const startOffset = startOffsetByte % aesBlockSize;

0 commit comments

Comments
 (0)