datatruck 0.26.1 → 0.27.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 +14 -0
- package/config.schema.json +38 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# datatruck
|
|
2
2
|
|
|
3
|
+
## 0.27.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`e6485ad`](https://github.com/swordev/datatruck/commit/e6485ad80258d3b1c30f3efb1a2549a5c2760878)]:
|
|
8
|
+
- @datatruck/cli@0.27.0
|
|
9
|
+
|
|
10
|
+
## 0.26.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`627adbd`](https://github.com/swordev/datatruck/commit/627adbd8114510371f451b674b007dc2093fee96)]:
|
|
15
|
+
- @datatruck/cli@0.26.2
|
|
16
|
+
|
|
3
17
|
## 0.26.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/config.schema.json
CHANGED
|
@@ -444,11 +444,11 @@
|
|
|
444
444
|
"datatruck-repository": {
|
|
445
445
|
"type": "object",
|
|
446
446
|
"required": [
|
|
447
|
-
"
|
|
447
|
+
"backend"
|
|
448
448
|
],
|
|
449
449
|
"additionalProperties": false,
|
|
450
450
|
"properties": {
|
|
451
|
-
"
|
|
451
|
+
"backend": {
|
|
452
452
|
"type": "string"
|
|
453
453
|
},
|
|
454
454
|
"compress": {
|
|
@@ -996,6 +996,42 @@
|
|
|
996
996
|
"items": {
|
|
997
997
|
"$ref": "#/definitions/package"
|
|
998
998
|
}
|
|
999
|
+
},
|
|
1000
|
+
"server": {
|
|
1001
|
+
"type": "object",
|
|
1002
|
+
"additionalProperties": false,
|
|
1003
|
+
"properties": {
|
|
1004
|
+
"path": {
|
|
1005
|
+
"type": "string"
|
|
1006
|
+
},
|
|
1007
|
+
"users": {
|
|
1008
|
+
"type": "array",
|
|
1009
|
+
"items": {
|
|
1010
|
+
"type": "object",
|
|
1011
|
+
"additionalProperties": false,
|
|
1012
|
+
"properties": {
|
|
1013
|
+
"name": {
|
|
1014
|
+
"type": "string"
|
|
1015
|
+
},
|
|
1016
|
+
"password": {
|
|
1017
|
+
"type": "string"
|
|
1018
|
+
}
|
|
1019
|
+
}
|
|
1020
|
+
}
|
|
1021
|
+
},
|
|
1022
|
+
"listen": {
|
|
1023
|
+
"type": "object",
|
|
1024
|
+
"additionalProperties": false,
|
|
1025
|
+
"properties": {
|
|
1026
|
+
"port": {
|
|
1027
|
+
"type": "integer"
|
|
1028
|
+
},
|
|
1029
|
+
"address": {
|
|
1030
|
+
"type": "string"
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
}
|
|
999
1035
|
}
|
|
1000
1036
|
}
|
|
1001
1037
|
},
|