datatruck 0.20.0 → 0.21.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,12 @@
1
1
  # datatruck
2
2
 
3
+ ## 0.21.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`211c914`](https://github.com/swordev/datatruck/commit/211c914e42b97213e81163511778b84b1ae2e9af)]:
8
+ - @datatruck/cli@0.21.0
9
+
3
10
  ## 0.20.0
4
11
 
5
12
  ### Patch Changes
@@ -449,7 +449,14 @@
449
449
  "type": "string"
450
450
  },
451
451
  "compress": {
452
- "type": "boolean"
452
+ "anyOf": [
453
+ {
454
+ "type": "boolean"
455
+ },
456
+ {
457
+ "$ref": "#/definitions/compress-util"
458
+ }
459
+ ]
453
460
  }
454
461
  }
455
462
  },
@@ -458,7 +465,14 @@
458
465
  "additionalProperties": false,
459
466
  "properties": {
460
467
  "compress": {
461
- "type": "boolean"
468
+ "anyOf": [
469
+ {
470
+ "type": "boolean"
471
+ },
472
+ {
473
+ "$ref": "#/definitions/compress-util"
474
+ }
475
+ ]
462
476
  },
463
477
  "packs": {
464
478
  "type": "array",
@@ -472,6 +486,16 @@
472
486
  "name": {
473
487
  "type": "string"
474
488
  },
489
+ "compress": {
490
+ "anyOf": [
491
+ {
492
+ "type": "boolean"
493
+ },
494
+ {
495
+ "$ref": "#/definitions/compress-util"
496
+ }
497
+ ]
498
+ },
475
499
  "include": {
476
500
  "$ref": "#/definitions/stringlist-util"
477
501
  },
@@ -975,6 +999,33 @@
975
999
  }
976
1000
  ]
977
1001
  },
1002
+ "compress-util": {
1003
+ "type": "object",
1004
+ "additionalProperties": false,
1005
+ "properties": {
1006
+ "level": {
1007
+ "type": "integer"
1008
+ },
1009
+ "cores": {
1010
+ "anyOf": [
1011
+ {
1012
+ "type": "integer"
1013
+ },
1014
+ {
1015
+ "type": "object",
1016
+ "required": [
1017
+ "percent"
1018
+ ],
1019
+ "properties": {
1020
+ "percent": {
1021
+ "type": "integer"
1022
+ }
1023
+ }
1024
+ }
1025
+ ]
1026
+ }
1027
+ }
1028
+ },
978
1029
  "script-task_step": {
979
1030
  "type": "object",
980
1031
  "required": [
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.20.0",
3
+ "version": "0.21.0",
4
4
  "dependencies": {
5
- "@datatruck/cli": "0.20.0"
5
+ "@datatruck/cli": "0.21.0"
6
6
  },
7
7
  "engine": {
8
8
  "node": ">=16.0.0"