archiver-ts 0.4.0 → 0.4.2
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.
- package/README.md +11 -2
- package/dist/index.js +1232 -1084
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ arv vault list [-a|--all]
|
|
|
36
36
|
Query and maintenance:
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
|
-
arv list [
|
|
39
|
+
arv list [-p|--plain]
|
|
40
40
|
arv log [YYYYMM | YYYYMM-YYYYMM | all]
|
|
41
41
|
arv log --id <log-id>
|
|
42
42
|
arv config
|
|
@@ -64,7 +64,16 @@ In the editor:
|
|
|
64
64
|
|
|
65
65
|
## List output behavior
|
|
66
66
|
|
|
67
|
-
`arv list`
|
|
67
|
+
`arv list` opens an interactive picker (TTY):
|
|
68
|
+
|
|
69
|
+
- status filter: Archived / Restored / All (default All)
|
|
70
|
+
- vault filter: All or a specific vault (default All)
|
|
71
|
+
- fuzzy filter input: matches archive names and hides non-matching rows
|
|
72
|
+
- actions: enter slot / restore (when applicable)
|
|
73
|
+
|
|
74
|
+
When not in TTY, `arv list` falls back to plain list lines.
|
|
75
|
+
|
|
76
|
+
Non-interactive line format:
|
|
68
77
|
|
|
69
78
|
- format: `[<archiveId>] <A|R> <display-name>`
|
|
70
79
|
- `<archiveId>` is zero-padded to 4 digits
|