@beauraines/toggl-cli 2.3.0 → 2.3.1
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/cmds/addTimeEntry.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.3.1](https://github.com/beauraines/toggl-cli/compare/v2.3.0...v2.3.1) (2024-05-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* missed required start/end option on add command ([5b1ca68](https://github.com/beauraines/toggl-cli/commit/5b1ca68eb78707c44a478d5e0c9bd7b1949aa0f0))
|
|
11
|
+
|
|
5
12
|
## [2.3.0](https://github.com/beauraines/toggl-cli/compare/v2.2.1...v2.3.0) (2024-05-25)
|
|
6
13
|
|
|
7
14
|
|
package/cmds/addTimeEntry.mjs
CHANGED
|
@@ -16,8 +16,8 @@ export const desc = 'Create a time entry. Time must be parsable by dayjs, e.g. 4
|
|
|
16
16
|
export const builder = {
|
|
17
17
|
d: { alias: ['description'], describe: 'Time entry name', type: 'string:', demandOption: true},
|
|
18
18
|
p: { alias: ['projectId', 'project'], describe: 'The case insensitive project name or project id.', type: 'string', demandOption: false },
|
|
19
|
-
s: { alias: ['start', 'startTime'], describe: 'The start time for the task, e.g. 13:00 12:45AM.', type: 'string', demandOption:
|
|
20
|
-
e: { alias: ['end', 'endTime'], describe: 'The end time for the task, e.g. 13:00 12:45AM.', type: 'string', demandOption:
|
|
19
|
+
s: { alias: ['start', 'startTime'], describe: 'The start time for the task, e.g. 13:00 12:45AM.', type: 'string', demandOption: true },
|
|
20
|
+
e: { alias: ['end', 'endTime'], describe: 'The end time for the task, e.g. 13:00 12:45AM.', type: 'string', demandOption: true }
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export const handler = async function (argv) {
|