datatruck 0.3.2 → 0.6.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # datatruck
2
2
 
3
+ ## 0.6.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`0c6877d`](https://github.com/swordev/datatruck/commit/0c6877d189761e75dd434b0a8d72b71621d024de), [`b62a6f8`](https://github.com/swordev/datatruck/commit/b62a6f8a82409339afd65d4f96476eb57bbfb5a2), [`751e1f6`](https://github.com/swordev/datatruck/commit/751e1f6d6b33d3fa96eb40d998fdd140ce0e3875), [`05487e6`](https://github.com/swordev/datatruck/commit/05487e6a33f875a3afb7ff0815b16da6f2a41301)]:
8
+ - @datatruck/cli@0.6.0
9
+
10
+ ## 0.5.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`5aeb2af`](https://github.com/swordev/datatruck/commit/5aeb2afb96692e00bdba501b58df9cc0e02dceaa), [`75de836`](https://github.com/swordev/datatruck/commit/75de8369356cf02ed3fd5c58b1f9bea66432cda8)]:
15
+ - @datatruck/cli@0.5.0
16
+
17
+ ## 0.4.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies [[`eeb00a6`](https://github.com/swordev/datatruck/commit/eeb00a69d75c91da40711ae79475612b1d5193b6)]:
22
+ - @datatruck/cli@0.4.0
23
+
3
24
  ## 0.3.2
4
25
 
5
26
  ### Patch Changes
@@ -20,6 +20,37 @@
20
20
  "name": {
21
21
  "type": "string"
22
22
  },
23
+ "enabled": {
24
+ "anyOf": [
25
+ {
26
+ "type": "boolean"
27
+ },
28
+ {
29
+ "type": "object",
30
+ "additionalProperties": false,
31
+ "properties": {
32
+ "defaults": {
33
+ "type": "boolean"
34
+ },
35
+ "backup": {
36
+ "type": "boolean"
37
+ },
38
+ "init": {
39
+ "type": "boolean"
40
+ },
41
+ "prune": {
42
+ "type": "boolean"
43
+ },
44
+ "restore": {
45
+ "type": "boolean"
46
+ },
47
+ "snapshots": {
48
+ "type": "boolean"
49
+ }
50
+ }
51
+ }
52
+ ]
53
+ },
23
54
  "config": {}
24
55
  },
25
56
  "anyOf": [
@@ -456,19 +487,39 @@
456
487
  }
457
488
  }
458
489
  ]
490
+ },
491
+ "fileCopyConcurrency": {
492
+ "type": "integer",
493
+ "minimum": 1
459
494
  }
460
495
  }
461
496
  },
462
497
  "restic-repository": {
463
498
  "type": "object",
464
499
  "required": [
465
- "passwordFile",
500
+ "password",
466
501
  "repository"
467
502
  ],
468
503
  "additionalProperties": false,
469
504
  "properties": {
470
- "passwordFile": {
471
- "type": "string"
505
+ "password": {
506
+ "anyOf": [
507
+ {
508
+ "type": "string"
509
+ },
510
+ {
511
+ "type": "object",
512
+ "additionalProperties": false,
513
+ "required": [
514
+ "path"
515
+ ],
516
+ "properties": {
517
+ "path": {
518
+ "type": "string"
519
+ }
520
+ }
521
+ }
522
+ ]
472
523
  },
473
524
  "repository": {
474
525
  "type": "object",
@@ -568,6 +619,10 @@
568
619
  },
569
620
  "includeConfig": {
570
621
  "type": "boolean"
622
+ },
623
+ "fileCopyConcurrency": {
624
+ "type": "integer",
625
+ "minimum": 1
571
626
  }
572
627
  }
573
628
  },
@@ -769,6 +824,9 @@
769
824
  "$schema": {
770
825
  "type": "string"
771
826
  },
827
+ "tempDir": {
828
+ "type": "string"
829
+ },
772
830
  "repositories": {
773
831
  "type": "array",
774
832
  "items": {
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.3.2",
3
+ "version": "0.6.0",
4
4
  "dependencies": {
5
- "@datatruck/cli": "0.3.2"
5
+ "@datatruck/cli": "0.6.0"
6
6
  },
7
7
  "engine": {
8
8
  "node": ">=16.0.0"