Skip to content

Commit edaf186

Browse files
authored
Merge pull request #212 from internxt/feat/update-inxt-js
[_]: feat/update-inxt-js
2 parents 68f4ba4 + a0ff617 commit edaf186

File tree

5 files changed

+1223
-1194
lines changed

5 files changed

+1223
-1194
lines changed

.github/workflows/commands-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 20.11.0
17+
node-version: 20.12.1
1818
cache: yarn
1919
# Generate a .npmrc file with the NPM_TOKEN
2020
- run: echo "registry=https://registry.yarnpkg.com/" > .npmrc

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 20.11.0
22+
node-version: 20.12.1
2323
cache: yarn
2424
# Generate a .npmrc file with the NPM_TOKEN
2525
- run: echo "registry=https://registry.yarnpkg.com/" > .npmrc

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A CLI tool to interact with your Internxt encrypted files
1717

1818
You can install the Internxt CLI by using NPM:
1919

20-
Requires Node >= 20.0.0
20+
Requires Node >= 20.12.1
2121

2222
`npm i -g @internxt/cli`
2323

@@ -31,7 +31,7 @@ $ npm install -g @internxt/cli
3131
$ internxt COMMAND
3232
running command...
3333
$ internxt (--version)
34-
@internxt/cli/1.5.0 win32-x64 node-v20.9.0
34+
@internxt/cli/1.5.1 win32-x64 node-v20.12.1
3535
$ internxt --help [COMMAND]
3636
USAGE
3737
$ internxt COMMAND
@@ -99,7 +99,7 @@ EXAMPLES
9999
$ internxt add-cert
100100
```
101101

102-
_See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/add-cert.ts)_
102+
_See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/add-cert.ts)_
103103

104104
## `internxt config`
105105

@@ -119,7 +119,7 @@ EXAMPLES
119119
$ internxt config
120120
```
121121

122-
_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/config.ts)_
122+
_See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/config.ts)_
123123

124124
## `internxt create-folder`
125125

@@ -148,7 +148,7 @@ EXAMPLES
148148
$ internxt create-folder
149149
```
150150

151-
_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/create-folder.ts)_
151+
_See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/create-folder.ts)_
152152

153153
## `internxt delete-permanently-file`
154154

@@ -178,7 +178,7 @@ EXAMPLES
178178
$ internxt delete-permanently-file
179179
```
180180

181-
_See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/delete-permanently-file.ts)_
181+
_See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/delete-permanently-file.ts)_
182182

183183
## `internxt delete-permanently-folder`
184184

@@ -208,7 +208,7 @@ EXAMPLES
208208
$ internxt delete-permanently-folder
209209
```
210210

211-
_See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/delete-permanently-folder.ts)_
211+
_See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/delete-permanently-folder.ts)_
212212

213213
## `internxt delete permanently file`
214214

@@ -297,7 +297,7 @@ EXAMPLES
297297
$ internxt download-file
298298
```
299299

300-
_See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/download-file.ts)_
300+
_See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/download-file.ts)_
301301

302302
## `internxt download file`
303303

@@ -356,7 +356,7 @@ EXAMPLES
356356
$ internxt list
357357
```
358358

359-
_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/list.ts)_
359+
_See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/list.ts)_
360360

361361
## `internxt login`
362362

@@ -385,7 +385,7 @@ EXAMPLES
385385
$ internxt login
386386
```
387387

388-
_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/login.ts)_
388+
_See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/login.ts)_
389389

390390
## `internxt logout`
391391

@@ -405,7 +405,7 @@ EXAMPLES
405405
$ internxt logout
406406
```
407407

408-
_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/logout.ts)_
408+
_See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/logout.ts)_
409409

410410
## `internxt logs`
411411

@@ -425,7 +425,7 @@ EXAMPLES
425425
$ internxt logs
426426
```
427427

428-
_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/logs.ts)_
428+
_See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/logs.ts)_
429429

430430
## `internxt move-file`
431431

@@ -457,7 +457,7 @@ EXAMPLES
457457
$ internxt move-file
458458
```
459459

460-
_See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/move-file.ts)_
460+
_See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/move-file.ts)_
461461

462462
## `internxt move-folder`
463463

@@ -489,7 +489,7 @@ EXAMPLES
489489
$ internxt move-folder
490490
```
491491

492-
_See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/move-folder.ts)_
492+
_See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/move-folder.ts)_
493493

494494
## `internxt move file`
495495

@@ -580,7 +580,7 @@ EXAMPLES
580580
$ internxt rename-file
581581
```
582582

583-
_See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/rename-file.ts)_
583+
_See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/rename-file.ts)_
584584

585585
## `internxt rename-folder`
586586

@@ -611,7 +611,7 @@ EXAMPLES
611611
$ internxt rename-folder
612612
```
613613

614-
_See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/rename-folder.ts)_
614+
_See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/rename-folder.ts)_
615615

616616
## `internxt rename file`
617617

@@ -699,7 +699,7 @@ EXAMPLES
699699
$ internxt trash-clear
700700
```
701701

702-
_See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-clear.ts)_
702+
_See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-clear.ts)_
703703

704704
## `internxt trash-file`
705705

@@ -729,7 +729,7 @@ EXAMPLES
729729
$ internxt trash-file
730730
```
731731

732-
_See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-file.ts)_
732+
_See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-file.ts)_
733733

734734
## `internxt trash-folder`
735735

@@ -759,7 +759,7 @@ EXAMPLES
759759
$ internxt trash-folder
760760
```
761761

762-
_See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-folder.ts)_
762+
_See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-folder.ts)_
763763

764764
## `internxt trash-list`
765765

@@ -785,7 +785,7 @@ EXAMPLES
785785
$ internxt trash-list
786786
```
787787

788-
_See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-list.ts)_
788+
_See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-list.ts)_
789789

790790
## `internxt trash-restore-file`
791791

@@ -816,7 +816,7 @@ EXAMPLES
816816
$ internxt trash-restore-file
817817
```
818818

819-
_See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-restore-file.ts)_
819+
_See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-restore-file.ts)_
820820

821821
## `internxt trash-restore-folder`
822822

@@ -847,7 +847,7 @@ EXAMPLES
847847
$ internxt trash-restore-folder
848848
```
849849

850-
_See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/trash-restore-folder.ts)_
850+
_See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/trash-restore-folder.ts)_
851851

852852
## `internxt trash clear`
853853

@@ -1044,7 +1044,7 @@ EXAMPLES
10441044
$ internxt upload-file
10451045
```
10461046

1047-
_See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/upload-file.ts)_
1047+
_See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/upload-file.ts)_
10481048

10491049
## `internxt upload file`
10501050

@@ -1099,7 +1099,7 @@ EXAMPLES
10991099
$ internxt webdav status
11001100
```
11011101

1102-
_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/webdav.ts)_
1102+
_See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/webdav.ts)_
11031103

11041104
## `internxt webdav-config`
11051105

@@ -1124,7 +1124,7 @@ EXAMPLES
11241124
$ internxt webdav-config
11251125
```
11261126

1127-
_See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/webdav-config.ts)_
1127+
_See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/webdav-config.ts)_
11281128

11291129
## `internxt whoami`
11301130

@@ -1144,7 +1144,7 @@ EXAMPLES
11441144
$ internxt whoami
11451145
```
11461146

1147-
_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.5.0/src/commands/whoami.ts)_
1147+
_See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.5.1/src/commands/whoami.ts)_
11481148
<!-- commandsstop -->
11491149

11501150
# Current Limitations

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"author": "Internxt <[email protected]>",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"description": "Internxt CLI to manage your encrypted storage",
55
"scripts": {
66
"build": "yarn clean && tsc",
@@ -37,14 +37,14 @@
3737
"/oclif.manifest.json"
3838
],
3939
"dependencies": {
40-
"@inquirer/prompts": "7.2.3",
41-
"@internxt/inxt-js": "2.0.11",
40+
"@inquirer/prompts": "7.3.2",
41+
"@internxt/inxt-js": "2.1.0",
4242
"@internxt/lib": "1.2.1",
4343
"@internxt/sdk": "1.7.0",
44-
"@oclif/core": "4.2.3",
44+
"@oclif/core": "4.2.8",
4545
"@types/validator": "13.12.2",
4646
"async": "3.2.6",
47-
"axios": "1.7.9",
47+
"axios": "1.8.1",
4848
"bip39": "3.1.0",
4949
"body-parser": "1.20.3",
5050
"cli-progress": "3.12.0",
@@ -53,7 +53,7 @@
5353
"express": "4.21.2",
5454
"express-async-handler": "1.2.0",
5555
"express-basic-auth": "1.2.1",
56-
"fast-xml-parser": "4.5.1",
56+
"fast-xml-parser": "5.0.8",
5757
"mime-types": "2.1.35",
5858
"openpgp": "5.11.2",
5959
"pm2": "5.4.3",
@@ -70,32 +70,32 @@
7070
"devDependencies": {
7171
"@internxt/eslint-config-internxt": "2.0.0",
7272
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
73-
"@oclif/test": "4.1.7",
73+
"@oclif/test": "4.1.11",
7474
"@openpgp/web-stream-tools": "0.0.11-patch-1",
7575
"@types/async": "3.2.24",
7676
"@types/cli-progress": "3.11.6",
7777
"@types/express": "5.0.0",
7878
"@types/mime-types": "2.1.4",
7979
"@types/node": "22.10.7",
8080
"@types/range-parser": "1.2.7",
81-
"@vitest/coverage-istanbul": "2.1.8",
82-
"@vitest/spy": "2.1.8",
83-
"eslint": "9.18.0",
81+
"@vitest/coverage-istanbul": "3.0.7",
82+
"@vitest/spy": "3.0.7",
83+
"eslint": "9.21.0",
8484
"husky": "9.1.7",
85-
"lint-staged": "15.4.0",
86-
"nock": "13.5.6",
85+
"lint-staged": "15.4.3",
86+
"nock": "14.0.1",
8787
"nodemon": "3.1.9",
88-
"oclif": "4.17.13",
89-
"prettier": "3.4.2",
88+
"oclif": "4.17.34",
89+
"prettier": "3.5.3",
9090
"rimraf": "6.0.1",
9191
"sequelize-cli": "6.6.2",
9292
"ts-node": "10.9.2",
93-
"typescript": "5.7.3",
94-
"vitest": "2.1.8",
93+
"typescript": "5.8.2",
94+
"vitest": "3.0.7",
9595
"vitest-mock-express": "2.2.0"
9696
},
9797
"engines": {
98-
"node": ">=20.5.0"
98+
"node": ">=20.12.1"
9999
},
100100
"bin": {
101101
"internxt": "./bin/run.js"

0 commit comments

Comments
 (0)