datatruck 0.31.0 → 0.32.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 +7 -0
- package/config.schema.json +38 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# datatruck
|
|
2
2
|
|
|
3
|
+
## 0.32.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`7d755ba`](https://github.com/swordev/datatruck/commit/7d755bac0edf7aea719446f6bfcee5bea0fe9a90), [`9dba106`](https://github.com/swordev/datatruck/commit/9dba106865da2d4327282d65deecee5a03e49b49), [`c24eea2`](https://github.com/swordev/datatruck/commit/c24eea21b41d78451d5eabd65923daa26dcad78a), [`113ee82`](https://github.com/swordev/datatruck/commit/113ee8258951028d54b798eaaa813982222c20e8)]:
|
|
8
|
+
- @datatruck/cli@0.32.0
|
|
9
|
+
|
|
3
10
|
## 0.31.0
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/config.schema.json
CHANGED
|
@@ -1346,7 +1346,8 @@
|
|
|
1346
1346
|
"enum": [
|
|
1347
1347
|
"process",
|
|
1348
1348
|
"node",
|
|
1349
|
-
"telegram-message"
|
|
1349
|
+
"telegram-message",
|
|
1350
|
+
"ntfy"
|
|
1350
1351
|
]
|
|
1351
1352
|
},
|
|
1352
1353
|
"config": {}
|
|
@@ -1408,6 +1409,25 @@
|
|
|
1408
1409
|
}
|
|
1409
1410
|
},
|
|
1410
1411
|
"else": false
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
"if": {
|
|
1415
|
+
"type": "object",
|
|
1416
|
+
"properties": {
|
|
1417
|
+
"type": {
|
|
1418
|
+
"const": "ntfy"
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1422
|
+
"then": {
|
|
1423
|
+
"type": "object",
|
|
1424
|
+
"properties": {
|
|
1425
|
+
"config": {
|
|
1426
|
+
"$ref": "#/definitions/script-task_ntfyStepConfig"
|
|
1427
|
+
}
|
|
1428
|
+
}
|
|
1429
|
+
},
|
|
1430
|
+
"else": false
|
|
1411
1431
|
}
|
|
1412
1432
|
]
|
|
1413
1433
|
},
|
|
@@ -1482,6 +1502,23 @@
|
|
|
1482
1502
|
"type": "string"
|
|
1483
1503
|
}
|
|
1484
1504
|
}
|
|
1505
|
+
},
|
|
1506
|
+
"script-task_ntfyStepConfig": {
|
|
1507
|
+
"type": "object",
|
|
1508
|
+
"required": [
|
|
1509
|
+
"token"
|
|
1510
|
+
],
|
|
1511
|
+
"properties": {
|
|
1512
|
+
"token": {
|
|
1513
|
+
"type": "string"
|
|
1514
|
+
},
|
|
1515
|
+
"topic": {
|
|
1516
|
+
"type": "string"
|
|
1517
|
+
},
|
|
1518
|
+
"text": {
|
|
1519
|
+
"type": "string"
|
|
1520
|
+
}
|
|
1521
|
+
}
|
|
1485
1522
|
}
|
|
1486
1523
|
},
|
|
1487
1524
|
"$ref": "#/definitions/config"
|