@internxt/cli 1.6.1 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. package/README.md +410 -71
  2. package/dist/commands/add-cert.d.ts +1 -1
  3. package/dist/commands/add-cert.js +3 -3
  4. package/dist/commands/config.d.ts +7 -1
  5. package/dist/commands/config.js +36 -5
  6. package/dist/commands/create-folder.d.ts +2 -1
  7. package/dist/commands/create-folder.js +10 -7
  8. package/dist/commands/delete-permanently-file.d.ts +1 -0
  9. package/dist/commands/delete-permanently-folder.d.ts +1 -0
  10. package/dist/commands/download-file.d.ts +1 -0
  11. package/dist/commands/download-file.js +4 -2
  12. package/dist/commands/list.d.ts +1 -0
  13. package/dist/commands/list.js +2 -4
  14. package/dist/commands/login-legacy.d.ts +1 -0
  15. package/dist/commands/logs.js +3 -3
  16. package/dist/commands/move-file.d.ts +1 -1
  17. package/dist/commands/move-file.js +7 -21
  18. package/dist/commands/move-folder.d.ts +1 -1
  19. package/dist/commands/move-folder.js +7 -21
  20. package/dist/commands/rename-file.d.ts +1 -0
  21. package/dist/commands/rename-folder.d.ts +1 -0
  22. package/dist/commands/trash-clear.d.ts +1 -0
  23. package/dist/commands/trash-file.d.ts +1 -0
  24. package/dist/commands/trash-folder.d.ts +1 -0
  25. package/dist/commands/trash-restore-file.d.ts +1 -1
  26. package/dist/commands/trash-restore-file.js +7 -21
  27. package/dist/commands/trash-restore-folder.d.ts +1 -1
  28. package/dist/commands/trash-restore-folder.js +7 -21
  29. package/dist/commands/upload-file.d.ts +5 -6
  30. package/dist/commands/upload-file.js +77 -52
  31. package/dist/commands/upload-folder.d.ts +1 -0
  32. package/dist/commands/upload-folder.js +11 -6
  33. package/dist/commands/webdav-config.d.ts +19 -1
  34. package/dist/commands/webdav-config.js +81 -3
  35. package/dist/commands/webdav.d.ts +1 -1
  36. package/dist/commands/webdav.js +10 -5
  37. package/dist/commands/whoami.js +2 -1
  38. package/dist/commands/workspaces-list.d.ts +20 -0
  39. package/dist/commands/workspaces-list.js +67 -0
  40. package/dist/commands/workspaces-unset.d.ts +23 -0
  41. package/dist/commands/workspaces-unset.js +45 -0
  42. package/dist/commands/workspaces-use.d.ts +27 -0
  43. package/dist/commands/workspaces-use.js +113 -0
  44. package/dist/constants/configs.d.ts +13 -0
  45. package/dist/constants/configs.js +21 -0
  46. package/dist/hooks/prerun/auth_check.js +13 -4
  47. package/dist/services/auth.service.d.ts +5 -2
  48. package/dist/services/auth.service.js +68 -6
  49. package/dist/services/config.service.d.ts +1 -13
  50. package/dist/services/config.service.js +44 -41
  51. package/dist/services/crypto.service.d.ts +5 -0
  52. package/dist/services/crypto.service.js +43 -0
  53. package/dist/services/database/database.service.d.ts +9 -0
  54. package/dist/services/database/database.service.js +39 -0
  55. package/dist/services/database/drive-file/drive-file.attributes.d.ts +3 -6
  56. package/dist/services/database/drive-file/drive-file.domain.d.ts +3 -6
  57. package/dist/services/database/drive-file/drive-file.domain.js +1 -12
  58. package/dist/services/database/drive-file/drive-file.model.d.ts +15 -0
  59. package/dist/services/database/drive-file/drive-file.model.js +67 -0
  60. package/dist/services/database/drive-file/drive-file.repository.d.ts +11 -0
  61. package/dist/services/database/drive-file/drive-file.repository.js +63 -0
  62. package/dist/services/database/drive-folder/drive-folder.attributes.d.ts +3 -4
  63. package/dist/services/database/drive-folder/drive-folder.domain.d.ts +4 -5
  64. package/dist/services/database/drive-folder/drive-folder.domain.js +11 -15
  65. package/dist/services/database/drive-folder/drive-folder.model.d.ts +11 -0
  66. package/dist/services/database/drive-folder/drive-folder.model.js +51 -0
  67. package/dist/services/database/drive-folder/drive-folder.repository.d.ts +13 -0
  68. package/dist/services/database/drive-folder/drive-folder.repository.js +99 -0
  69. package/dist/services/drive/drive-file.service.d.ts +2 -0
  70. package/dist/services/drive/drive-file.service.js +71 -15
  71. package/dist/services/drive/drive-folder.service.d.ts +6 -1
  72. package/dist/services/drive/drive-folder.service.js +157 -31
  73. package/dist/services/drive/trash.service.d.ts +3 -0
  74. package/dist/services/drive/trash.service.js +52 -16
  75. package/dist/services/drive/workspace.service.d.ts +7 -0
  76. package/dist/services/drive/workspace.service.js +30 -0
  77. package/dist/services/keys.service.d.ts +7 -0
  78. package/dist/services/keys.service.js +55 -0
  79. package/dist/services/local-filesystem/local-filesystem.service.d.ts +2 -2
  80. package/dist/services/local-filesystem/local-filesystem.service.js +4 -4
  81. package/dist/services/network/download.service.d.ts +2 -2
  82. package/dist/services/network/download.service.js +2 -2
  83. package/dist/services/network/network-facade.service.d.ts +3 -7
  84. package/dist/services/network/network-facade.service.js +9 -11
  85. package/dist/services/network/upload/upload-facade.service.d.ts +1 -1
  86. package/dist/services/network/upload/upload-facade.service.js +15 -8
  87. package/dist/services/network/upload/upload-file.service.d.ts +5 -4
  88. package/dist/services/network/upload/upload-file.service.js +73 -41
  89. package/dist/services/network/upload/upload-folder.service.d.ts +2 -2
  90. package/dist/services/network/upload/upload-folder.service.js +15 -10
  91. package/dist/services/network/upload/upload.types.d.ts +13 -2
  92. package/dist/services/network/upload/upload.types.js +1 -1
  93. package/dist/services/sdk-manager.service.d.ts +11 -9
  94. package/dist/services/sdk-manager.service.js +29 -15
  95. package/dist/services/thumbnail.service.d.ts +19 -1
  96. package/dist/services/thumbnail.service.js +29 -2
  97. package/dist/services/universal-link.service.d.ts +3 -1
  98. package/dist/services/universal-link.service.js +15 -3
  99. package/dist/services/usage.service.d.ts +1 -2
  100. package/dist/services/usage.service.js +1 -1
  101. package/dist/services/validation.service.d.ts +5 -0
  102. package/dist/services/validation.service.js +36 -22
  103. package/dist/{webdav/services → services/webdav}/webdav-folder.service.d.ts +1 -7
  104. package/dist/{webdav/services → services/webdav}/webdav-folder.service.js +6 -10
  105. package/dist/types/command.types.d.ts +44 -1
  106. package/dist/types/command.types.js +29 -1
  107. package/dist/types/config.types.d.ts +1 -0
  108. package/dist/types/drive.types.d.ts +7 -6
  109. package/dist/types/network.types.d.ts +6 -0
  110. package/dist/utils/async.utils.d.ts +2 -1
  111. package/dist/utils/async.utils.js +13 -2
  112. package/dist/utils/cli.utils.d.ts +23 -15
  113. package/dist/utils/cli.utils.js +85 -21
  114. package/dist/utils/crypto.utils.d.ts +3 -1
  115. package/dist/utils/crypto.utils.js +15 -2
  116. package/dist/utils/database.utils.d.ts +11 -0
  117. package/dist/utils/database.utils.js +26 -0
  118. package/dist/utils/drive.utils.js +7 -10
  119. package/dist/utils/errors.utils.d.ts +4 -3
  120. package/dist/utils/errors.utils.js +16 -13
  121. package/dist/utils/format.utils.d.ts +1 -0
  122. package/dist/utils/format.utils.js +3 -0
  123. package/dist/utils/inquirer.utils.js +10 -1
  124. package/dist/utils/logger.utils.js +5 -5
  125. package/dist/utils/network.utils.js +17 -18
  126. package/dist/utils/path.utils.d.ts +7 -0
  127. package/dist/utils/path.utils.js +18 -0
  128. package/dist/utils/thumbnail.utils.d.ts +6 -20
  129. package/dist/utils/thumbnail.utils.js +20 -45
  130. package/dist/utils/webdav.utils.d.ts +4 -20
  131. package/dist/utils/webdav.utils.js +12 -14
  132. package/dist/utils/xml.utils.d.ts +1 -1
  133. package/dist/utils/xml.utils.js +1 -1
  134. package/dist/webdav/handlers/DELETE.handler.d.ts +0 -9
  135. package/dist/webdav/handlers/DELETE.handler.js +18 -16
  136. package/dist/webdav/handlers/GET.handler.d.ts +0 -13
  137. package/dist/webdav/handlers/GET.handler.js +6 -13
  138. package/dist/webdav/handlers/HEAD.handler.d.ts +0 -5
  139. package/dist/webdav/handlers/HEAD.handler.js +11 -23
  140. package/dist/webdav/handlers/MKCOL.handler.d.ts +0 -7
  141. package/dist/webdav/handlers/MKCOL.handler.js +5 -12
  142. package/dist/webdav/handlers/MOVE.handler.d.ts +0 -9
  143. package/dist/webdav/handlers/MOVE.handler.js +10 -16
  144. package/dist/webdav/handlers/PROPFIND.handler.d.ts +0 -7
  145. package/dist/webdav/handlers/PROPFIND.handler.js +7 -19
  146. package/dist/webdav/handlers/PUT.handler.d.ts +0 -15
  147. package/dist/webdav/handlers/PUT.handler.js +70 -57
  148. package/dist/webdav/index.js +6 -8
  149. package/dist/webdav/middewares/auth.middleware.d.ts +1 -2
  150. package/dist/webdav/middewares/auth.middleware.js +5 -4
  151. package/dist/webdav/middewares/errors.middleware.js +3 -3
  152. package/dist/webdav/middewares/webdav-auth.middleware.d.ts +3 -0
  153. package/dist/webdav/middewares/webdav-auth.middleware.js +44 -0
  154. package/dist/webdav/webdav-server.d.ts +3 -16
  155. package/dist/webdav/webdav-server.js +33 -91
  156. package/oclif.manifest.json +429 -6
  157. package/package.json +27 -22
package/README.md CHANGED
@@ -52,7 +52,7 @@ $ npm install -g @internxt/cli
52
52
  $ internxt COMMAND
53
53
  running command...
54
54
  $ internxt (--version)
55
- @internxt/cli/1.6.1 linux-x64 node-v22.21.1
55
+ @internxt/cli/1.6.3 linux-x64 node-v22.22.0
56
56
  $ internxt --help [COMMAND]
57
57
  USAGE
58
58
  $ internxt COMMAND
@@ -68,9 +68,11 @@ USAGE
68
68
 
69
69
  <!-- commands -->
70
70
  * [`internxt add-cert`](#internxt-add-cert)
71
+ * [`internxt add cert`](#internxt-add-cert)
71
72
  * [`internxt autocomplete [SHELL]`](#internxt-autocomplete-shell)
72
73
  * [`internxt config`](#internxt-config)
73
74
  * [`internxt create-folder`](#internxt-create-folder)
75
+ * [`internxt create folder`](#internxt-create-folder)
74
76
  * [`internxt delete-permanently-file`](#internxt-delete-permanently-file)
75
77
  * [`internxt delete-permanently-folder`](#internxt-delete-permanently-folder)
76
78
  * [`internxt delete permanently file`](#internxt-delete-permanently-file)
@@ -109,6 +111,12 @@ USAGE
109
111
  * [`internxt webdav ACTION`](#internxt-webdav-action)
110
112
  * [`internxt webdav-config`](#internxt-webdav-config)
111
113
  * [`internxt whoami`](#internxt-whoami)
114
+ * [`internxt workspaces-list`](#internxt-workspaces-list)
115
+ * [`internxt workspaces-unset`](#internxt-workspaces-unset)
116
+ * [`internxt workspaces-use`](#internxt-workspaces-use)
117
+ * [`internxt workspaces list`](#internxt-workspaces-list)
118
+ * [`internxt workspaces unset`](#internxt-workspaces-unset)
119
+ * [`internxt workspaces use`](#internxt-workspaces-use)
112
120
 
113
121
  ## `internxt add-cert`
114
122
 
@@ -124,11 +132,35 @@ GLOBAL FLAGS
124
132
  DESCRIPTION
125
133
  Add a self-signed certificate to the trusted store for macOS, Linux, and Windows.
126
134
 
135
+ ALIASES
136
+ $ internxt add cert
137
+
127
138
  EXAMPLES
128
139
  $ internxt add-cert
129
140
  ```
130
141
 
131
- _See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/add-cert.ts)_
142
+ _See code: [src/commands/add-cert.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/add-cert.ts)_
143
+
144
+ ## `internxt add cert`
145
+
146
+ Add a self-signed certificate to the trusted store for macOS, Linux, and Windows.
147
+
148
+ ```
149
+ USAGE
150
+ $ internxt add cert [--json]
151
+
152
+ GLOBAL FLAGS
153
+ --json Format output as json.
154
+
155
+ DESCRIPTION
156
+ Add a self-signed certificate to the trusted store for macOS, Linux, and Windows.
157
+
158
+ ALIASES
159
+ $ internxt add cert
160
+
161
+ EXAMPLES
162
+ $ internxt add cert
163
+ ```
132
164
 
133
165
  ## `internxt autocomplete [SHELL]`
134
166
 
@@ -159,7 +191,7 @@ EXAMPLES
159
191
  $ internxt autocomplete --refresh-cache
160
192
  ```
161
193
 
162
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.39/src/commands/autocomplete/index.ts)_
194
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.40/src/commands/autocomplete/index.ts)_
163
195
 
164
196
  ## `internxt config`
165
197
 
@@ -167,7 +199,16 @@ Display useful information from the user logged into the Internxt CLI.
167
199
 
168
200
  ```
169
201
  USAGE
170
- $ internxt config [--json]
202
+ $ internxt config [--json] [-x] [--debug] [-e]
203
+
204
+ FLAGS
205
+ -e, --extended Displays additional information in the list.
206
+
207
+ HELPER FLAGS
208
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
209
+ not request input through the console and will throw errors directly.
210
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
211
+ console.
171
212
 
172
213
  GLOBAL FLAGS
173
214
  --json Format output as json.
@@ -179,7 +220,7 @@ EXAMPLES
179
220
  $ internxt config
180
221
  ```
181
222
 
182
- _See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/config.ts)_
223
+ _See code: [src/commands/config.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/config.ts)_
183
224
 
184
225
  ## `internxt create-folder`
185
226
 
@@ -187,7 +228,7 @@ Create a folder in your Internxt Drive
187
228
 
188
229
  ```
189
230
  USAGE
190
- $ internxt create-folder [--json] [-x] [-n <value>] [-i <value>]
231
+ $ internxt create-folder [--json] [-x] [--debug] [-n <value>] [-i <value>]
191
232
 
192
233
  FLAGS
193
234
  -i, --id=<value> The ID of the folder where the new folder will be created. Defaults to your root folder if not
@@ -197,6 +238,8 @@ FLAGS
197
238
  HELPER FLAGS
198
239
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
199
240
  not request input through the console and will throw errors directly.
241
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
242
+ console.
200
243
 
201
244
  GLOBAL FLAGS
202
245
  --json Format output as json.
@@ -204,11 +247,46 @@ GLOBAL FLAGS
204
247
  DESCRIPTION
205
248
  Create a folder in your Internxt Drive
206
249
 
250
+ ALIASES
251
+ $ internxt create folder
252
+
207
253
  EXAMPLES
208
254
  $ internxt create-folder
209
255
  ```
210
256
 
211
- _See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/create-folder.ts)_
257
+ _See code: [src/commands/create-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/create-folder.ts)_
258
+
259
+ ## `internxt create folder`
260
+
261
+ Create a folder in your Internxt Drive
262
+
263
+ ```
264
+ USAGE
265
+ $ internxt create folder [--json] [-x] [--debug] [-n <value>] [-i <value>]
266
+
267
+ FLAGS
268
+ -i, --id=<value> The ID of the folder where the new folder will be created. Defaults to your root folder if not
269
+ specified.
270
+ -n, --name=<value> The new name for the folder
271
+
272
+ HELPER FLAGS
273
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
274
+ not request input through the console and will throw errors directly.
275
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
276
+ console.
277
+
278
+ GLOBAL FLAGS
279
+ --json Format output as json.
280
+
281
+ DESCRIPTION
282
+ Create a folder in your Internxt Drive
283
+
284
+ ALIASES
285
+ $ internxt create folder
286
+
287
+ EXAMPLES
288
+ $ internxt create folder
289
+ ```
212
290
 
213
291
  ## `internxt delete-permanently-file`
214
292
 
@@ -216,7 +294,7 @@ Deletes permanently a file. This action cannot be undone.
216
294
 
217
295
  ```
218
296
  USAGE
219
- $ internxt delete-permanently-file [--json] [-x] [-i <value>]
297
+ $ internxt delete-permanently-file [--json] [-x] [--debug] [-i <value>]
220
298
 
221
299
  FLAGS
222
300
  -i, --id=<value> The file id to be permanently deleted.
@@ -224,6 +302,8 @@ FLAGS
224
302
  HELPER FLAGS
225
303
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
226
304
  not request input through the console and will throw errors directly.
305
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
306
+ console.
227
307
 
228
308
  GLOBAL FLAGS
229
309
  --json Format output as json.
@@ -238,7 +318,7 @@ EXAMPLES
238
318
  $ internxt delete-permanently-file
239
319
  ```
240
320
 
241
- _See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/delete-permanently-file.ts)_
321
+ _See code: [src/commands/delete-permanently-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/delete-permanently-file.ts)_
242
322
 
243
323
  ## `internxt delete-permanently-folder`
244
324
 
@@ -246,7 +326,7 @@ Deletes permanently a folder. This action cannot be undone.
246
326
 
247
327
  ```
248
328
  USAGE
249
- $ internxt delete-permanently-folder [--json] [-x] [-i <value>]
329
+ $ internxt delete-permanently-folder [--json] [-x] [--debug] [-i <value>]
250
330
 
251
331
  FLAGS
252
332
  -i, --id=<value> The folder id to be permanently deleted.
@@ -254,6 +334,8 @@ FLAGS
254
334
  HELPER FLAGS
255
335
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
256
336
  not request input through the console and will throw errors directly.
337
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
338
+ console.
257
339
 
258
340
  GLOBAL FLAGS
259
341
  --json Format output as json.
@@ -268,7 +350,7 @@ EXAMPLES
268
350
  $ internxt delete-permanently-folder
269
351
  ```
270
352
 
271
- _See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/delete-permanently-folder.ts)_
353
+ _See code: [src/commands/delete-permanently-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/delete-permanently-folder.ts)_
272
354
 
273
355
  ## `internxt delete permanently file`
274
356
 
@@ -276,7 +358,7 @@ Deletes permanently a file. This action cannot be undone.
276
358
 
277
359
  ```
278
360
  USAGE
279
- $ internxt delete permanently file [--json] [-x] [-i <value>]
361
+ $ internxt delete permanently file [--json] [-x] [--debug] [-i <value>]
280
362
 
281
363
  FLAGS
282
364
  -i, --id=<value> The file id to be permanently deleted.
@@ -284,6 +366,8 @@ FLAGS
284
366
  HELPER FLAGS
285
367
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
286
368
  not request input through the console and will throw errors directly.
369
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
370
+ console.
287
371
 
288
372
  GLOBAL FLAGS
289
373
  --json Format output as json.
@@ -304,7 +388,7 @@ Deletes permanently a folder. This action cannot be undone.
304
388
 
305
389
  ```
306
390
  USAGE
307
- $ internxt delete permanently folder [--json] [-x] [-i <value>]
391
+ $ internxt delete permanently folder [--json] [-x] [--debug] [-i <value>]
308
392
 
309
393
  FLAGS
310
394
  -i, --id=<value> The folder id to be permanently deleted.
@@ -312,6 +396,8 @@ FLAGS
312
396
  HELPER FLAGS
313
397
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
314
398
  not request input through the console and will throw errors directly.
399
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
400
+ console.
315
401
 
316
402
  GLOBAL FLAGS
317
403
  --json Format output as json.
@@ -332,7 +418,7 @@ Download and decrypts a file from Internxt Drive to a directory. The file name w
332
418
 
333
419
  ```
334
420
  USAGE
335
- $ internxt download-file [--json] [-x] [-i <value>] [-d <value>] [-o]
421
+ $ internxt download-file [--json] [-x] [--debug] [-i <value>] [-d <value>] [-o]
336
422
 
337
423
  FLAGS
338
424
  -d, --directory=<value> The directory to download the file to. Leave empty for the current folder.
@@ -342,6 +428,8 @@ FLAGS
342
428
  HELPER FLAGS
343
429
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
344
430
  not request input through the console and will throw errors directly.
431
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
432
+ console.
345
433
 
346
434
  GLOBAL FLAGS
347
435
  --json Format output as json.
@@ -357,7 +445,7 @@ EXAMPLES
357
445
  $ internxt download-file
358
446
  ```
359
447
 
360
- _See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/download-file.ts)_
448
+ _See code: [src/commands/download-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/download-file.ts)_
361
449
 
362
450
  ## `internxt download file`
363
451
 
@@ -365,7 +453,7 @@ Download and decrypts a file from Internxt Drive to a directory. The file name w
365
453
 
366
454
  ```
367
455
  USAGE
368
- $ internxt download file [--json] [-x] [-i <value>] [-d <value>] [-o]
456
+ $ internxt download file [--json] [-x] [--debug] [-i <value>] [-d <value>] [-o]
369
457
 
370
458
  FLAGS
371
459
  -d, --directory=<value> The directory to download the file to. Leave empty for the current folder.
@@ -375,6 +463,8 @@ FLAGS
375
463
  HELPER FLAGS
376
464
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
377
465
  not request input through the console and will throw errors directly.
466
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
467
+ console.
378
468
 
379
469
  GLOBAL FLAGS
380
470
  --json Format output as json.
@@ -396,7 +486,7 @@ Lists the content of a folder id.
396
486
 
397
487
  ```
398
488
  USAGE
399
- $ internxt list [--json] [-x] [-i <value>] [-e]
489
+ $ internxt list [--json] [-x] [--debug] [-i <value>] [-e]
400
490
 
401
491
  FLAGS
402
492
  -e, --extended Displays additional information in the list.
@@ -405,6 +495,8 @@ FLAGS
405
495
  HELPER FLAGS
406
496
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
407
497
  not request input through the console and will throw errors directly.
498
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
499
+ console.
408
500
 
409
501
  GLOBAL FLAGS
410
502
  --json Format output as json.
@@ -416,7 +508,7 @@ EXAMPLES
416
508
  $ internxt list
417
509
  ```
418
510
 
419
- _See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/list.ts)_
511
+ _See code: [src/commands/list.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/list.ts)_
420
512
 
421
513
  ## `internxt login`
422
514
 
@@ -444,7 +536,7 @@ EXAMPLES
444
536
  $ internxt login
445
537
  ```
446
538
 
447
- _See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/login.ts)_
539
+ _See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/login.ts)_
448
540
 
449
541
  ## `internxt login-legacy`
450
542
 
@@ -452,7 +544,7 @@ _See code: [src/commands/login.ts](https://github.com/internxt/cli/blob/v1.6.1/s
452
544
 
453
545
  ```
454
546
  USAGE
455
- $ internxt login-legacy [--json] [-x] [-e <value>] [-p <value>] [-w 123456] [-t token]
547
+ $ internxt login-legacy [--json] [-x] [--debug] [-e <value>] [-p <value>] [-w 123456] [-t token]
456
548
 
457
549
  FLAGS
458
550
  -e, --email=<value> [env: INXT_USER] The email to log in
@@ -464,6 +556,8 @@ FLAGS
464
556
  HELPER FLAGS
465
557
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
466
558
  not request input through the console and will throw errors directly.
559
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
560
+ console.
467
561
 
468
562
  GLOBAL FLAGS
469
563
  --json Format output as json.
@@ -476,7 +570,7 @@ EXAMPLES
476
570
  $ internxt login-legacy
477
571
  ```
478
572
 
479
- _See code: [src/commands/login-legacy.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/login-legacy.ts)_
573
+ _See code: [src/commands/login-legacy.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/login-legacy.ts)_
480
574
 
481
575
  ## `internxt logout`
482
576
 
@@ -496,7 +590,7 @@ EXAMPLES
496
590
  $ internxt logout
497
591
  ```
498
592
 
499
- _See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/logout.ts)_
593
+ _See code: [src/commands/logout.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/logout.ts)_
500
594
 
501
595
  ## `internxt logs`
502
596
 
@@ -516,7 +610,7 @@ EXAMPLES
516
610
  $ internxt logs
517
611
  ```
518
612
 
519
- _See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/logs.ts)_
613
+ _See code: [src/commands/logs.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/logs.ts)_
520
614
 
521
615
  ## `internxt move-file`
522
616
 
@@ -524,7 +618,7 @@ Move a file into a destination folder.
524
618
 
525
619
  ```
526
620
  USAGE
527
- $ internxt move-file [--json] [-x] [-i <value>] [-d <value>]
621
+ $ internxt move-file [--json] [-x] [--debug] [-i <value>] [-d <value>]
528
622
 
529
623
  FLAGS
530
624
  -d, --destination=<value> The destination folder id where the file is going to be moved. Leave empty for the root
@@ -534,6 +628,8 @@ FLAGS
534
628
  HELPER FLAGS
535
629
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
536
630
  not request input through the console and will throw errors directly.
631
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
632
+ console.
537
633
 
538
634
  GLOBAL FLAGS
539
635
  --json Format output as json.
@@ -548,7 +644,7 @@ EXAMPLES
548
644
  $ internxt move-file
549
645
  ```
550
646
 
551
- _See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/move-file.ts)_
647
+ _See code: [src/commands/move-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/move-file.ts)_
552
648
 
553
649
  ## `internxt move-folder`
554
650
 
@@ -556,7 +652,7 @@ Move a folder into a destination folder.
556
652
 
557
653
  ```
558
654
  USAGE
559
- $ internxt move-folder [--json] [-x] [-i <value>] [-d <value>]
655
+ $ internxt move-folder [--json] [-x] [--debug] [-i <value>] [-d <value>]
560
656
 
561
657
  FLAGS
562
658
  -d, --destination=<value> The destination folder id where the folder is going to be moved. Leave empty for the root
@@ -566,6 +662,8 @@ FLAGS
566
662
  HELPER FLAGS
567
663
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
568
664
  not request input through the console and will throw errors directly.
665
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
666
+ console.
569
667
 
570
668
  GLOBAL FLAGS
571
669
  --json Format output as json.
@@ -580,7 +678,7 @@ EXAMPLES
580
678
  $ internxt move-folder
581
679
  ```
582
680
 
583
- _See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/move-folder.ts)_
681
+ _See code: [src/commands/move-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/move-folder.ts)_
584
682
 
585
683
  ## `internxt move file`
586
684
 
@@ -588,7 +686,7 @@ Move a file into a destination folder.
588
686
 
589
687
  ```
590
688
  USAGE
591
- $ internxt move file [--json] [-x] [-i <value>] [-d <value>]
689
+ $ internxt move file [--json] [-x] [--debug] [-i <value>] [-d <value>]
592
690
 
593
691
  FLAGS
594
692
  -d, --destination=<value> The destination folder id where the file is going to be moved. Leave empty for the root
@@ -598,6 +696,8 @@ FLAGS
598
696
  HELPER FLAGS
599
697
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
600
698
  not request input through the console and will throw errors directly.
699
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
700
+ console.
601
701
 
602
702
  GLOBAL FLAGS
603
703
  --json Format output as json.
@@ -618,7 +718,7 @@ Move a folder into a destination folder.
618
718
 
619
719
  ```
620
720
  USAGE
621
- $ internxt move folder [--json] [-x] [-i <value>] [-d <value>]
721
+ $ internxt move folder [--json] [-x] [--debug] [-i <value>] [-d <value>]
622
722
 
623
723
  FLAGS
624
724
  -d, --destination=<value> The destination folder id where the folder is going to be moved. Leave empty for the root
@@ -628,6 +728,8 @@ FLAGS
628
728
  HELPER FLAGS
629
729
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
630
730
  not request input through the console and will throw errors directly.
731
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
732
+ console.
631
733
 
632
734
  GLOBAL FLAGS
633
735
  --json Format output as json.
@@ -648,7 +750,7 @@ Rename a file.
648
750
 
649
751
  ```
650
752
  USAGE
651
- $ internxt rename-file [--json] [-x] [-i <value>] [-n <value>]
753
+ $ internxt rename-file [--json] [-x] [--debug] [-i <value>] [-n <value>]
652
754
 
653
755
  FLAGS
654
756
  -i, --id=<value> The ID of the file to be renamed.
@@ -657,6 +759,8 @@ FLAGS
657
759
  HELPER FLAGS
658
760
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
659
761
  not request input through the console and will throw errors directly.
762
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
763
+ console.
660
764
 
661
765
  GLOBAL FLAGS
662
766
  --json Format output as json.
@@ -671,7 +775,7 @@ EXAMPLES
671
775
  $ internxt rename-file
672
776
  ```
673
777
 
674
- _See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/rename-file.ts)_
778
+ _See code: [src/commands/rename-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/rename-file.ts)_
675
779
 
676
780
  ## `internxt rename-folder`
677
781
 
@@ -679,7 +783,7 @@ Rename a folder.
679
783
 
680
784
  ```
681
785
  USAGE
682
- $ internxt rename-folder [--json] [-x] [-i <value>] [-n <value>]
786
+ $ internxt rename-folder [--json] [-x] [--debug] [-i <value>] [-n <value>]
683
787
 
684
788
  FLAGS
685
789
  -i, --id=<value> The ID of the folder to be renamed.
@@ -688,6 +792,8 @@ FLAGS
688
792
  HELPER FLAGS
689
793
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
690
794
  not request input through the console and will throw errors directly.
795
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
796
+ console.
691
797
 
692
798
  GLOBAL FLAGS
693
799
  --json Format output as json.
@@ -702,7 +808,7 @@ EXAMPLES
702
808
  $ internxt rename-folder
703
809
  ```
704
810
 
705
- _See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/rename-folder.ts)_
811
+ _See code: [src/commands/rename-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/rename-folder.ts)_
706
812
 
707
813
  ## `internxt rename file`
708
814
 
@@ -710,7 +816,7 @@ Rename a file.
710
816
 
711
817
  ```
712
818
  USAGE
713
- $ internxt rename file [--json] [-x] [-i <value>] [-n <value>]
819
+ $ internxt rename file [--json] [-x] [--debug] [-i <value>] [-n <value>]
714
820
 
715
821
  FLAGS
716
822
  -i, --id=<value> The ID of the file to be renamed.
@@ -719,6 +825,8 @@ FLAGS
719
825
  HELPER FLAGS
720
826
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
721
827
  not request input through the console and will throw errors directly.
828
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
829
+ console.
722
830
 
723
831
  GLOBAL FLAGS
724
832
  --json Format output as json.
@@ -739,7 +847,7 @@ Rename a folder.
739
847
 
740
848
  ```
741
849
  USAGE
742
- $ internxt rename folder [--json] [-x] [-i <value>] [-n <value>]
850
+ $ internxt rename folder [--json] [-x] [--debug] [-i <value>] [-n <value>]
743
851
 
744
852
  FLAGS
745
853
  -i, --id=<value> The ID of the folder to be renamed.
@@ -748,6 +856,8 @@ FLAGS
748
856
  HELPER FLAGS
749
857
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
750
858
  not request input through the console and will throw errors directly.
859
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
860
+ console.
751
861
 
752
862
  GLOBAL FLAGS
753
863
  --json Format output as json.
@@ -768,7 +878,7 @@ Deletes permanently all the content of the trash. This action cannot be undone.
768
878
 
769
879
  ```
770
880
  USAGE
771
- $ internxt trash-clear [--json] [-x] [-f]
881
+ $ internxt trash-clear [--json] [-x] [--debug] [-f]
772
882
 
773
883
  FLAGS
774
884
  -f, --force It forces the trash to be emptied without confirmation.
@@ -776,6 +886,8 @@ FLAGS
776
886
  HELPER FLAGS
777
887
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
778
888
  not request input through the console and will throw errors directly.
889
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
890
+ console.
779
891
 
780
892
  GLOBAL FLAGS
781
893
  --json Format output as json.
@@ -790,7 +902,7 @@ EXAMPLES
790
902
  $ internxt trash-clear
791
903
  ```
792
904
 
793
- _See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-clear.ts)_
905
+ _See code: [src/commands/trash-clear.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-clear.ts)_
794
906
 
795
907
  ## `internxt trash-file`
796
908
 
@@ -798,7 +910,7 @@ Moves a given file to the trash.
798
910
 
799
911
  ```
800
912
  USAGE
801
- $ internxt trash-file [--json] [-x] [-i <value>]
913
+ $ internxt trash-file [--json] [-x] [--debug] [-i <value>]
802
914
 
803
915
  FLAGS
804
916
  -i, --id=<value> The file id to be trashed.
@@ -806,6 +918,8 @@ FLAGS
806
918
  HELPER FLAGS
807
919
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
808
920
  not request input through the console and will throw errors directly.
921
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
922
+ console.
809
923
 
810
924
  GLOBAL FLAGS
811
925
  --json Format output as json.
@@ -820,7 +934,7 @@ EXAMPLES
820
934
  $ internxt trash-file
821
935
  ```
822
936
 
823
- _See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-file.ts)_
937
+ _See code: [src/commands/trash-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-file.ts)_
824
938
 
825
939
  ## `internxt trash-folder`
826
940
 
@@ -828,7 +942,7 @@ Moves a given folder to the trash.
828
942
 
829
943
  ```
830
944
  USAGE
831
- $ internxt trash-folder [--json] [-x] [-i <value>]
945
+ $ internxt trash-folder [--json] [-x] [--debug] [-i <value>]
832
946
 
833
947
  FLAGS
834
948
  -i, --id=<value> The folder id to be trashed.
@@ -836,6 +950,8 @@ FLAGS
836
950
  HELPER FLAGS
837
951
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
838
952
  not request input through the console and will throw errors directly.
953
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
954
+ console.
839
955
 
840
956
  GLOBAL FLAGS
841
957
  --json Format output as json.
@@ -850,7 +966,7 @@ EXAMPLES
850
966
  $ internxt trash-folder
851
967
  ```
852
968
 
853
- _See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-folder.ts)_
969
+ _See code: [src/commands/trash-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-folder.ts)_
854
970
 
855
971
  ## `internxt trash-list`
856
972
 
@@ -876,7 +992,7 @@ EXAMPLES
876
992
  $ internxt trash-list
877
993
  ```
878
994
 
879
- _See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-list.ts)_
995
+ _See code: [src/commands/trash-list.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-list.ts)_
880
996
 
881
997
  ## `internxt trash-restore-file`
882
998
 
@@ -884,7 +1000,7 @@ Restore a trashed file into a destination folder.
884
1000
 
885
1001
  ```
886
1002
  USAGE
887
- $ internxt trash-restore-file [--json] [-x] [-i <value>] [-d <value>]
1003
+ $ internxt trash-restore-file [--json] [-x] [--debug] [-i <value>] [-d <value>]
888
1004
 
889
1005
  FLAGS
890
1006
  -d, --destination=<value> The folder id where the file is going to be restored. Leave empty for the root folder.
@@ -893,6 +1009,8 @@ FLAGS
893
1009
  HELPER FLAGS
894
1010
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
895
1011
  not request input through the console and will throw errors directly.
1012
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1013
+ console.
896
1014
 
897
1015
  GLOBAL FLAGS
898
1016
  --json Format output as json.
@@ -907,7 +1025,7 @@ EXAMPLES
907
1025
  $ internxt trash-restore-file
908
1026
  ```
909
1027
 
910
- _See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-restore-file.ts)_
1028
+ _See code: [src/commands/trash-restore-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-restore-file.ts)_
911
1029
 
912
1030
  ## `internxt trash-restore-folder`
913
1031
 
@@ -915,7 +1033,7 @@ Restore a trashed folder into a destination folder.
915
1033
 
916
1034
  ```
917
1035
  USAGE
918
- $ internxt trash-restore-folder [--json] [-x] [-i <value>] [-d <value>]
1036
+ $ internxt trash-restore-folder [--json] [-x] [--debug] [-i <value>] [-d <value>]
919
1037
 
920
1038
  FLAGS
921
1039
  -d, --destination=<value> The folder id where the folder is going to be restored. Leave empty for the root folder.
@@ -924,6 +1042,8 @@ FLAGS
924
1042
  HELPER FLAGS
925
1043
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
926
1044
  not request input through the console and will throw errors directly.
1045
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1046
+ console.
927
1047
 
928
1048
  GLOBAL FLAGS
929
1049
  --json Format output as json.
@@ -938,7 +1058,7 @@ EXAMPLES
938
1058
  $ internxt trash-restore-folder
939
1059
  ```
940
1060
 
941
- _See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/trash-restore-folder.ts)_
1061
+ _See code: [src/commands/trash-restore-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/trash-restore-folder.ts)_
942
1062
 
943
1063
  ## `internxt trash clear`
944
1064
 
@@ -946,7 +1066,7 @@ Deletes permanently all the content of the trash. This action cannot be undone.
946
1066
 
947
1067
  ```
948
1068
  USAGE
949
- $ internxt trash clear [--json] [-x] [-f]
1069
+ $ internxt trash clear [--json] [-x] [--debug] [-f]
950
1070
 
951
1071
  FLAGS
952
1072
  -f, --force It forces the trash to be emptied without confirmation.
@@ -954,6 +1074,8 @@ FLAGS
954
1074
  HELPER FLAGS
955
1075
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
956
1076
  not request input through the console and will throw errors directly.
1077
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1078
+ console.
957
1079
 
958
1080
  GLOBAL FLAGS
959
1081
  --json Format output as json.
@@ -974,7 +1096,7 @@ Moves a given file to the trash.
974
1096
 
975
1097
  ```
976
1098
  USAGE
977
- $ internxt trash file [--json] [-x] [-i <value>]
1099
+ $ internxt trash file [--json] [-x] [--debug] [-i <value>]
978
1100
 
979
1101
  FLAGS
980
1102
  -i, --id=<value> The file id to be trashed.
@@ -982,6 +1104,8 @@ FLAGS
982
1104
  HELPER FLAGS
983
1105
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
984
1106
  not request input through the console and will throw errors directly.
1107
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1108
+ console.
985
1109
 
986
1110
  GLOBAL FLAGS
987
1111
  --json Format output as json.
@@ -1002,7 +1126,7 @@ Moves a given folder to the trash.
1002
1126
 
1003
1127
  ```
1004
1128
  USAGE
1005
- $ internxt trash folder [--json] [-x] [-i <value>]
1129
+ $ internxt trash folder [--json] [-x] [--debug] [-i <value>]
1006
1130
 
1007
1131
  FLAGS
1008
1132
  -i, --id=<value> The folder id to be trashed.
@@ -1010,6 +1134,8 @@ FLAGS
1010
1134
  HELPER FLAGS
1011
1135
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1012
1136
  not request input through the console and will throw errors directly.
1137
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1138
+ console.
1013
1139
 
1014
1140
  GLOBAL FLAGS
1015
1141
  --json Format output as json.
@@ -1054,7 +1180,7 @@ Restore a trashed file into a destination folder.
1054
1180
 
1055
1181
  ```
1056
1182
  USAGE
1057
- $ internxt trash restore file [--json] [-x] [-i <value>] [-d <value>]
1183
+ $ internxt trash restore file [--json] [-x] [--debug] [-i <value>] [-d <value>]
1058
1184
 
1059
1185
  FLAGS
1060
1186
  -d, --destination=<value> The folder id where the file is going to be restored. Leave empty for the root folder.
@@ -1063,6 +1189,8 @@ FLAGS
1063
1189
  HELPER FLAGS
1064
1190
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1065
1191
  not request input through the console and will throw errors directly.
1192
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1193
+ console.
1066
1194
 
1067
1195
  GLOBAL FLAGS
1068
1196
  --json Format output as json.
@@ -1083,7 +1211,7 @@ Restore a trashed folder into a destination folder.
1083
1211
 
1084
1212
  ```
1085
1213
  USAGE
1086
- $ internxt trash restore folder [--json] [-x] [-i <value>] [-d <value>]
1214
+ $ internxt trash restore folder [--json] [-x] [--debug] [-i <value>] [-d <value>]
1087
1215
 
1088
1216
  FLAGS
1089
1217
  -d, --destination=<value> The folder id where the folder is going to be restored. Leave empty for the root folder.
@@ -1092,6 +1220,8 @@ FLAGS
1092
1220
  HELPER FLAGS
1093
1221
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1094
1222
  not request input through the console and will throw errors directly.
1223
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1224
+ console.
1095
1225
 
1096
1226
  GLOBAL FLAGS
1097
1227
  --json Format output as json.
@@ -1112,7 +1242,7 @@ Upload a file to Internxt Drive
1112
1242
 
1113
1243
  ```
1114
1244
  USAGE
1115
- $ internxt upload-file [--json] [-x] [-f <value>] [-i <value>]
1245
+ $ internxt upload-file [--json] [-x] [--debug] [-f <value>] [-i <value>]
1116
1246
 
1117
1247
  FLAGS
1118
1248
  -f, --file=<value> The path to the file on your system.
@@ -1121,6 +1251,8 @@ FLAGS
1121
1251
  HELPER FLAGS
1122
1252
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1123
1253
  not request input through the console and will throw errors directly.
1254
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1255
+ console.
1124
1256
 
1125
1257
  GLOBAL FLAGS
1126
1258
  --json Format output as json.
@@ -1135,7 +1267,7 @@ EXAMPLES
1135
1267
  $ internxt upload-file
1136
1268
  ```
1137
1269
 
1138
- _See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/upload-file.ts)_
1270
+ _See code: [src/commands/upload-file.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/upload-file.ts)_
1139
1271
 
1140
1272
  ## `internxt upload-folder`
1141
1273
 
@@ -1143,7 +1275,7 @@ Upload a folder to Internxt Drive
1143
1275
 
1144
1276
  ```
1145
1277
  USAGE
1146
- $ internxt upload-folder [--json] [-x] [-f <value>] [-i <value>]
1278
+ $ internxt upload-folder [--json] [-x] [--debug] [-f <value>] [-i <value>]
1147
1279
 
1148
1280
  FLAGS
1149
1281
  -f, --folder=<value> The path to the folder on your system.
@@ -1152,6 +1284,8 @@ FLAGS
1152
1284
  HELPER FLAGS
1153
1285
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1154
1286
  not request input through the console and will throw errors directly.
1287
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1288
+ console.
1155
1289
 
1156
1290
  GLOBAL FLAGS
1157
1291
  --json Format output as json.
@@ -1166,7 +1300,7 @@ EXAMPLES
1166
1300
  $ internxt upload-folder
1167
1301
  ```
1168
1302
 
1169
- _See code: [src/commands/upload-folder.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/upload-folder.ts)_
1303
+ _See code: [src/commands/upload-folder.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/upload-folder.ts)_
1170
1304
 
1171
1305
  ## `internxt upload file`
1172
1306
 
@@ -1174,7 +1308,7 @@ Upload a file to Internxt Drive
1174
1308
 
1175
1309
  ```
1176
1310
  USAGE
1177
- $ internxt upload file [--json] [-x] [-f <value>] [-i <value>]
1311
+ $ internxt upload file [--json] [-x] [--debug] [-f <value>] [-i <value>]
1178
1312
 
1179
1313
  FLAGS
1180
1314
  -f, --file=<value> The path to the file on your system.
@@ -1183,6 +1317,8 @@ FLAGS
1183
1317
  HELPER FLAGS
1184
1318
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1185
1319
  not request input through the console and will throw errors directly.
1320
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1321
+ console.
1186
1322
 
1187
1323
  GLOBAL FLAGS
1188
1324
  --json Format output as json.
@@ -1203,7 +1339,7 @@ Upload a folder to Internxt Drive
1203
1339
 
1204
1340
  ```
1205
1341
  USAGE
1206
- $ internxt upload folder [--json] [-x] [-f <value>] [-i <value>]
1342
+ $ internxt upload folder [--json] [-x] [--debug] [-f <value>] [-i <value>]
1207
1343
 
1208
1344
  FLAGS
1209
1345
  -f, --folder=<value> The path to the folder on your system.
@@ -1212,6 +1348,8 @@ FLAGS
1212
1348
  HELPER FLAGS
1213
1349
  -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1214
1350
  not request input through the console and will throw errors directly.
1351
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1352
+ console.
1215
1353
 
1216
1354
  GLOBAL FLAGS
1217
1355
  --json Format output as json.
@@ -1228,7 +1366,7 @@ EXAMPLES
1228
1366
 
1229
1367
  ## `internxt webdav ACTION`
1230
1368
 
1231
- Enable, disable, restart or get the status of the Internxt CLI WebDav server
1369
+ Start, stop, restart or get the status of the Internxt CLI WebDAV server
1232
1370
 
1233
1371
  ```
1234
1372
  USAGE
@@ -1238,19 +1376,19 @@ GLOBAL FLAGS
1238
1376
  --json Format output as json.
1239
1377
 
1240
1378
  DESCRIPTION
1241
- Enable, disable, restart or get the status of the Internxt CLI WebDav server
1379
+ Start, stop, restart or get the status of the Internxt CLI WebDAV server
1242
1380
 
1243
1381
  EXAMPLES
1244
- $ internxt webdav enable
1382
+ $ internxt webdav enable | start
1245
1383
 
1246
- $ internxt webdav disable
1384
+ $ internxt webdav disable | stop
1247
1385
 
1248
1386
  $ internxt webdav restart
1249
1387
 
1250
1388
  $ internxt webdav status
1251
1389
  ```
1252
1390
 
1253
- _See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/webdav.ts)_
1391
+ _See code: [src/commands/webdav.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/webdav.ts)_
1254
1392
 
1255
1393
  ## `internxt webdav-config`
1256
1394
 
@@ -1258,15 +1396,26 @@ Edit the configuration of the Internxt CLI WebDav server as the port or the prot
1258
1396
 
1259
1397
  ```
1260
1398
  USAGE
1261
- $ internxt webdav-config [--json] [-l <value>] [-p <value>] [-s | -h] [-t <value>] [-c]
1399
+ $ internxt webdav-config [--json] [-x] [--debug] [-l <value>] [-p <value>] [-s | -h] [-t <value>] [-c] [-a] [-u
1400
+ <value>] [-w <value>] [-d]
1262
1401
 
1263
1402
  FLAGS
1264
- -c, --[no-]createFullPath Auto-create missing parent directories during file uploads.
1265
- -h, --http Configures the WebDAV server to use insecure plain HTTP.
1266
- -l, --host=<value> The listening host for the WebDAV server.
1267
- -p, --port=<value> The new port for the WebDAV server.
1268
- -s, --https Configures the WebDAV server to use HTTPS with self-signed certificates.
1269
- -t, --timeout=<value> Configures the WebDAV server to use this timeout in minutes.
1403
+ -a, --[no-]customAuth Configures the WebDAV server to use custom authentication.
1404
+ -c, --[no-]createFullPath Auto-create missing parent directories during file uploads.
1405
+ -d, --[no-]deleteFilesPermanently Configures the WebDAV server to delete files permanently instead of trashing them.
1406
+ -h, --http Configures the WebDAV server to use insecure plain HTTP.
1407
+ -l, --host=<value> The listening host for the WebDAV server.
1408
+ -p, --port=<value> The new port for the WebDAV server.
1409
+ -s, --https Configures the WebDAV server to use HTTPS with self-signed certificates.
1410
+ -t, --timeout=<value> Configures the WebDAV server to use this timeout in minutes.
1411
+ -u, --username=<value> Configures the WebDAV server to use this username for custom authentication.
1412
+ -w, --password=<value> Configures the WebDAV server to use this password for custom authentication.
1413
+
1414
+ HELPER FLAGS
1415
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1416
+ not request input through the console and will throw errors directly.
1417
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1418
+ console.
1270
1419
 
1271
1420
  GLOBAL FLAGS
1272
1421
  --json Format output as json.
@@ -1278,7 +1427,7 @@ EXAMPLES
1278
1427
  $ internxt webdav-config
1279
1428
  ```
1280
1429
 
1281
- _See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/webdav-config.ts)_
1430
+ _See code: [src/commands/webdav-config.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/webdav-config.ts)_
1282
1431
 
1283
1432
  ## `internxt whoami`
1284
1433
 
@@ -1298,7 +1447,197 @@ EXAMPLES
1298
1447
  $ internxt whoami
1299
1448
  ```
1300
1449
 
1301
- _See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.6.1/src/commands/whoami.ts)_
1450
+ _See code: [src/commands/whoami.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/whoami.ts)_
1451
+
1452
+ ## `internxt workspaces-list`
1453
+
1454
+ Get the list of workspaces.
1455
+
1456
+ ```
1457
+ USAGE
1458
+ $ internxt workspaces-list [--json] [-x] [--debug] [-e]
1459
+
1460
+ FLAGS
1461
+ -e, --extended Displays additional information in the list.
1462
+
1463
+ HELPER FLAGS
1464
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1465
+ not request input through the console and will throw errors directly.
1466
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1467
+ console.
1468
+
1469
+ GLOBAL FLAGS
1470
+ --json Format output as json.
1471
+
1472
+ DESCRIPTION
1473
+ Get the list of workspaces.
1474
+
1475
+ ALIASES
1476
+ $ internxt workspaces list
1477
+
1478
+ EXAMPLES
1479
+ $ internxt workspaces-list
1480
+ ```
1481
+
1482
+ _See code: [src/commands/workspaces-list.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/workspaces-list.ts)_
1483
+
1484
+ ## `internxt workspaces-unset`
1485
+
1486
+ Unset the active workspace context for the current user session. Once a workspace is unset, WebDAV and all of the subsequent CLI commands will operate within the personal drive space until it is changed or set again.
1487
+
1488
+ ```
1489
+ USAGE
1490
+ $ internxt workspaces-unset [--json] [-x] [--debug]
1491
+
1492
+ HELPER FLAGS
1493
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1494
+ not request input through the console and will throw errors directly.
1495
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1496
+ console.
1497
+
1498
+ GLOBAL FLAGS
1499
+ --json Format output as json.
1500
+
1501
+ DESCRIPTION
1502
+ Unset the active workspace context for the current user session. Once a workspace is unset, WebDAV and all of the
1503
+ subsequent CLI commands will operate within the personal drive space until it is changed or set again.
1504
+
1505
+ ALIASES
1506
+ $ internxt workspaces unset
1507
+
1508
+ EXAMPLES
1509
+ $ internxt workspaces-unset
1510
+ ```
1511
+
1512
+ _See code: [src/commands/workspaces-unset.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/workspaces-unset.ts)_
1513
+
1514
+ ## `internxt workspaces-use`
1515
+
1516
+ Set the active workspace context for the current user session. Once a workspace is selected, WebDAV and all of the subsequent CLI commands will operate within that workspace until it is changed or unset.
1517
+
1518
+ ```
1519
+ USAGE
1520
+ $ internxt workspaces-use [--json] [-x] [--debug] [-i <value> | -p]
1521
+
1522
+ FLAGS
1523
+ -i, --id=<value> The id of the workspace to activate. Use internxt workspaces list to view your available workspace
1524
+ ids.
1525
+ -p, --personal Change to the personal drive space. It unsets the active workspace context for the current user
1526
+ session.
1527
+
1528
+ HELPER FLAGS
1529
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1530
+ not request input through the console and will throw errors directly.
1531
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1532
+ console.
1533
+
1534
+ GLOBAL FLAGS
1535
+ --json Format output as json.
1536
+
1537
+ DESCRIPTION
1538
+ Set the active workspace context for the current user session. Once a workspace is selected, WebDAV and all of the
1539
+ subsequent CLI commands will operate within that workspace until it is changed or unset.
1540
+
1541
+ ALIASES
1542
+ $ internxt workspaces use
1543
+
1544
+ EXAMPLES
1545
+ $ internxt workspaces-use
1546
+ ```
1547
+
1548
+ _See code: [src/commands/workspaces-use.ts](https://github.com/internxt/cli/blob/v1.6.3/src/commands/workspaces-use.ts)_
1549
+
1550
+ ## `internxt workspaces list`
1551
+
1552
+ Get the list of workspaces.
1553
+
1554
+ ```
1555
+ USAGE
1556
+ $ internxt workspaces list [--json] [-x] [--debug] [-e]
1557
+
1558
+ FLAGS
1559
+ -e, --extended Displays additional information in the list.
1560
+
1561
+ HELPER FLAGS
1562
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1563
+ not request input through the console and will throw errors directly.
1564
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1565
+ console.
1566
+
1567
+ GLOBAL FLAGS
1568
+ --json Format output as json.
1569
+
1570
+ DESCRIPTION
1571
+ Get the list of workspaces.
1572
+
1573
+ ALIASES
1574
+ $ internxt workspaces list
1575
+
1576
+ EXAMPLES
1577
+ $ internxt workspaces list
1578
+ ```
1579
+
1580
+ ## `internxt workspaces unset`
1581
+
1582
+ Unset the active workspace context for the current user session. Once a workspace is unset, WebDAV and all of the subsequent CLI commands will operate within the personal drive space until it is changed or set again.
1583
+
1584
+ ```
1585
+ USAGE
1586
+ $ internxt workspaces unset [--json] [-x] [--debug]
1587
+
1588
+ HELPER FLAGS
1589
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1590
+ not request input through the console and will throw errors directly.
1591
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1592
+ console.
1593
+
1594
+ GLOBAL FLAGS
1595
+ --json Format output as json.
1596
+
1597
+ DESCRIPTION
1598
+ Unset the active workspace context for the current user session. Once a workspace is unset, WebDAV and all of the
1599
+ subsequent CLI commands will operate within the personal drive space until it is changed or set again.
1600
+
1601
+ ALIASES
1602
+ $ internxt workspaces unset
1603
+
1604
+ EXAMPLES
1605
+ $ internxt workspaces unset
1606
+ ```
1607
+
1608
+ ## `internxt workspaces use`
1609
+
1610
+ Set the active workspace context for the current user session. Once a workspace is selected, WebDAV and all of the subsequent CLI commands will operate within that workspace until it is changed or unset.
1611
+
1612
+ ```
1613
+ USAGE
1614
+ $ internxt workspaces use [--json] [-x] [--debug] [-i <value> | -p]
1615
+
1616
+ FLAGS
1617
+ -i, --id=<value> The id of the workspace to activate. Use internxt workspaces list to view your available workspace
1618
+ ids.
1619
+ -p, --personal Change to the personal drive space. It unsets the active workspace context for the current user
1620
+ session.
1621
+
1622
+ HELPER FLAGS
1623
+ -x, --non-interactive [env: INXT_NONINTERACTIVE] Prevents the CLI from being interactive. When enabled, the CLI will
1624
+ not request input through the console and will throw errors directly.
1625
+ --debug [env: INXT_DEBUG] Enables debug mode. When enabled, the CLI will print debug messages to the
1626
+ console.
1627
+
1628
+ GLOBAL FLAGS
1629
+ --json Format output as json.
1630
+
1631
+ DESCRIPTION
1632
+ Set the active workspace context for the current user session. Once a workspace is selected, WebDAV and all of the
1633
+ subsequent CLI commands will operate within that workspace until it is changed or unset.
1634
+
1635
+ ALIASES
1636
+ $ internxt workspaces use
1637
+
1638
+ EXAMPLES
1639
+ $ internxt workspaces use
1640
+ ```
1302
1641
  <!-- commandsstop -->
1303
1642
 
1304
1643
  # Current Limitations