datatruck 0.27.0 → 0.29.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 +89 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# datatruck
|
|
2
2
|
|
|
3
|
+
## 0.29.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`1c5084d`](https://github.com/swordev/datatruck/commit/1c5084dab2058ab9699f1a908f2581cd03da0468), [`363fc0d`](https://github.com/swordev/datatruck/commit/363fc0d8158aba6ae6a171769ef01dcd0fd2de08), [`5fe3e91`](https://github.com/swordev/datatruck/commit/5fe3e91e994238cf901e570c9b9ef8254d79afa1), [`e47ed46`](https://github.com/swordev/datatruck/commit/e47ed46c47fc93d7d5f3b76935d425c6b42ae9a5), [`0a760a2`](https://github.com/swordev/datatruck/commit/0a760a2038ff77966936b3a9a0a8e865f4dae4c4), [`bd4d42e`](https://github.com/swordev/datatruck/commit/bd4d42e0261f79bdb69dd55abc30ef8bb0bfdcd7)]:
|
|
8
|
+
- @datatruck/cli@0.29.0
|
|
9
|
+
|
|
10
|
+
## 0.28.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`b50b10b`](https://github.com/swordev/datatruck/commit/b50b10bb29a15db0b4dadd3de499b9cd6738d706), [`89b0856`](https://github.com/swordev/datatruck/commit/89b0856b2a5bfc42458a9bcb271a04f2dce26098), [`93e8e83`](https://github.com/swordev/datatruck/commit/93e8e830792f7d8957e89787c981e6a45ae4d02d), [`1ad7fd9`](https://github.com/swordev/datatruck/commit/1ad7fd99f6e8f6d8128ea35e7c680cc3618d6ac4), [`1745715`](https://github.com/swordev/datatruck/commit/17457154930f15865858e89b7f3932c617dfddf4), [`8fa2fe0`](https://github.com/swordev/datatruck/commit/8fa2fe0a1213cf9614bb8c5bbe999d0d8e7130e8), [`e3d54c3`](https://github.com/swordev/datatruck/commit/e3d54c34df8ba42e77040d183d993808c8a7cdbb), [`d59d435`](https://github.com/swordev/datatruck/commit/d59d435fc1a244da944ad0c36bf1dcf7735ba289), [`802d6a5`](https://github.com/swordev/datatruck/commit/802d6a577f46bfccc1c1a5b8c4431976cd6d7820), [`5d1ece0`](https://github.com/swordev/datatruck/commit/5d1ece0760c317c71175250812e43fc866bcfc5a), [`8c00e9c`](https://github.com/swordev/datatruck/commit/8c00e9c78a656807d09d147c9b1017c2a1b8d127)]:
|
|
15
|
+
- @datatruck/cli@0.28.0
|
|
16
|
+
|
|
3
17
|
## 0.27.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/config.schema.json
CHANGED
|
@@ -902,6 +902,16 @@
|
|
|
902
902
|
"csvSharedPath": {
|
|
903
903
|
"type": "string"
|
|
904
904
|
},
|
|
905
|
+
"compress": {
|
|
906
|
+
"anyOf": [
|
|
907
|
+
{
|
|
908
|
+
"type": "boolean"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"$ref": "#/definitions/compress-util"
|
|
912
|
+
}
|
|
913
|
+
]
|
|
914
|
+
},
|
|
905
915
|
"password": {
|
|
906
916
|
"anyOf": [
|
|
907
917
|
{
|
|
@@ -985,6 +995,43 @@
|
|
|
985
995
|
"tempDir": {
|
|
986
996
|
"type": "string"
|
|
987
997
|
},
|
|
998
|
+
"minFreeDiskSpace": {
|
|
999
|
+
"anyOf": [
|
|
1000
|
+
{
|
|
1001
|
+
"type": "integer"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"type": "string"
|
|
1005
|
+
}
|
|
1006
|
+
]
|
|
1007
|
+
},
|
|
1008
|
+
"reports": {
|
|
1009
|
+
"type": "array",
|
|
1010
|
+
"items": {
|
|
1011
|
+
"type": "object",
|
|
1012
|
+
"additionalProperties": false,
|
|
1013
|
+
"properties": {
|
|
1014
|
+
"when": {
|
|
1015
|
+
"enum": [
|
|
1016
|
+
"success",
|
|
1017
|
+
"error"
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
"format": {
|
|
1021
|
+
"enum": [
|
|
1022
|
+
"json",
|
|
1023
|
+
"list",
|
|
1024
|
+
"pjson",
|
|
1025
|
+
"table",
|
|
1026
|
+
"yaml"
|
|
1027
|
+
]
|
|
1028
|
+
},
|
|
1029
|
+
"run": {
|
|
1030
|
+
"$ref": "#/definitions/script-task_step"
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
988
1035
|
"repositories": {
|
|
989
1036
|
"type": "array",
|
|
990
1037
|
"items": {
|
|
@@ -1032,6 +1079,9 @@
|
|
|
1032
1079
|
}
|
|
1033
1080
|
}
|
|
1034
1081
|
}
|
|
1082
|
+
},
|
|
1083
|
+
"prunePolicy": {
|
|
1084
|
+
"$ref": "#/definitions/prune-policy"
|
|
1035
1085
|
}
|
|
1036
1086
|
}
|
|
1037
1087
|
},
|
|
@@ -1111,7 +1161,8 @@
|
|
|
1111
1161
|
"type": {
|
|
1112
1162
|
"enum": [
|
|
1113
1163
|
"process",
|
|
1114
|
-
"node"
|
|
1164
|
+
"node",
|
|
1165
|
+
"telegram-message"
|
|
1115
1166
|
]
|
|
1116
1167
|
},
|
|
1117
1168
|
"config": {}
|
|
@@ -1154,6 +1205,25 @@
|
|
|
1154
1205
|
}
|
|
1155
1206
|
},
|
|
1156
1207
|
"else": false
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"if": {
|
|
1211
|
+
"type": "object",
|
|
1212
|
+
"properties": {
|
|
1213
|
+
"type": {
|
|
1214
|
+
"const": "telegram-message"
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
},
|
|
1218
|
+
"then": {
|
|
1219
|
+
"type": "object",
|
|
1220
|
+
"properties": {
|
|
1221
|
+
"config": {
|
|
1222
|
+
"$ref": "#/definitions/script-task_telegramMessageStepConfig"
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"else": false
|
|
1157
1227
|
}
|
|
1158
1228
|
]
|
|
1159
1229
|
},
|
|
@@ -1210,6 +1280,24 @@
|
|
|
1210
1280
|
}
|
|
1211
1281
|
}
|
|
1212
1282
|
}
|
|
1283
|
+
},
|
|
1284
|
+
"script-task_telegramMessageStepConfig": {
|
|
1285
|
+
"type": "object",
|
|
1286
|
+
"required": [
|
|
1287
|
+
"bot",
|
|
1288
|
+
"chatId"
|
|
1289
|
+
],
|
|
1290
|
+
"properties": {
|
|
1291
|
+
"command": {
|
|
1292
|
+
"type": "string"
|
|
1293
|
+
},
|
|
1294
|
+
"chatId": {
|
|
1295
|
+
"type": "integer"
|
|
1296
|
+
},
|
|
1297
|
+
"text": {
|
|
1298
|
+
"type": "string"
|
|
1299
|
+
}
|
|
1300
|
+
}
|
|
1213
1301
|
}
|
|
1214
1302
|
},
|
|
1215
1303
|
"$ref": "#/definitions/config"
|