datatruck 0.35.0 → 0.36.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.
Files changed (2) hide show
  1. package/config.schema.json +25 -28
  2. package/package.json +2 -2
@@ -2073,7 +2073,7 @@
2073
2073
  "const": "prune"
2074
2074
  },
2075
2075
  "options": {
2076
- "$ref": "#/definitions/PruneCommandOptions"
2076
+ "$ref": "#/definitions/Omit<PruneCommandOptions,\"confirm\">"
2077
2077
  }
2078
2078
  },
2079
2079
  "required": [
@@ -2084,62 +2084,59 @@
2084
2084
  }
2085
2085
  ]
2086
2086
  },
2087
- "PruneCommandOptions": {
2088
- "additionalProperties": false,
2087
+ "Omit<PruneCommandOptions,\"confirm\">": {
2089
2088
  "type": "object",
2090
2089
  "properties": {
2091
- "keepLast": {
2092
- "type": "number"
2090
+ "repository": {
2091
+ "type": "string"
2093
2092
  },
2094
- "keepMinutely": {
2093
+ "repositoryType": {
2094
+ "type": "string"
2095
+ },
2096
+ "id": {
2097
+ "type": "string"
2098
+ },
2099
+ "groupBy": {
2100
+ "type": "string"
2101
+ },
2102
+ "dryRun": {
2103
+ "type": "boolean"
2104
+ },
2105
+ "keepDaily": {
2095
2106
  "type": "number"
2096
2107
  },
2097
2108
  "keepHourly": {
2098
2109
  "type": "number"
2099
2110
  },
2100
- "keepDaily": {
2111
+ "keepMinutely": {
2101
2112
  "type": "number"
2102
2113
  },
2103
- "keepWeekly": {
2114
+ "keepLast": {
2104
2115
  "type": "number"
2105
2116
  },
2106
2117
  "keepMonthly": {
2107
2118
  "type": "number"
2108
2119
  },
2109
- "keepYearly": {
2120
+ "keepWeekly": {
2110
2121
  "type": "number"
2111
2122
  },
2112
- "id": {
2113
- "type": "string"
2114
- },
2115
- "longId": {
2116
- "type": "boolean"
2123
+ "keepYearly": {
2124
+ "type": "number"
2117
2125
  },
2118
2126
  "package": {
2119
2127
  "type": "string"
2120
2128
  },
2121
- "repository": {
2122
- "type": "string"
2123
- },
2124
- "repositoryType": {
2125
- "type": "string"
2126
- },
2127
2129
  "tag": {
2128
2130
  "type": "string"
2129
2131
  },
2130
- "groupBy": {
2131
- "type": "string"
2132
- },
2133
- "dryRun": {
2132
+ "longId": {
2134
2133
  "type": "boolean"
2135
2134
  },
2136
2135
  "showAll": {
2137
2136
  "type": "boolean"
2138
- },
2139
- "confirm": {
2140
- "type": "boolean"
2141
2137
  }
2142
- }
2138
+ },
2139
+ "additionalProperties": false
2143
2140
  }
2144
2141
  },
2145
2142
  "$schema": "http://json-schema.org/draft-07/schema#"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datatruck",
3
- "version": "0.35.0",
3
+ "version": "0.36.0",
4
4
  "description": "Tool for creating and managing backups",
5
5
  "homepage": "https://github.com/swordev/datatruck#readme",
6
6
  "bugs": {
@@ -26,7 +26,7 @@
26
26
  "config.schema.json"
27
27
  ],
28
28
  "dependencies": {
29
- "@datatruck/cli": "0.35.0"
29
+ "@datatruck/cli": "0.36.0"
30
30
  },
31
31
  "engine": {
32
32
  "node": ">=20.0.0"