Compare commits

..

4 Commits

Author SHA1 Message Date
a7821a7cb5 add websocket connection to webhook-proxy
Some checks failed
Companion Module Checks / Check module (push) Failing after 0s
CI / build (push) Successful in 5s
2025-09-29 15:01:05 +02:00
b9060b683f increase package version 2025-09-29 14:57:02 +02:00
34a2814c19 update deps to current state of module template; update runtime to node22 2025-09-29 14:54:12 +02:00
bryce
2f9fa1cb0b fix: module crash when there are no clients (#8)
* fix: module crashing with no clients

* chore: version bump

* chore: format
2025-09-14 14:16:26 -07:00
6 changed files with 3385 additions and 12 deletions

2
.github/FUNDING.yml vendored
View File

@@ -1,6 +1,6 @@
# These are supported funding model platforms
github: [daniep01,krombel] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
github: [daniep01, krombel] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username

View File

@@ -64,9 +64,18 @@ Presets are available for **Start Timer** and **Stop Timer**.
### Version 2.1.0
- rewrite module in typescript
- use module toggl-track instead of implementing api on our own
- add status reports for some failure cases in connections dashboard
- add configurable time entry poller
- add feedback for currently running project and client
- update timerDuration to contain the correct duration formatted as time string
- Rewrite module in typescript
- Use module toggl-track instead of implementing api on our own
- Add status reports for some failure cases in connections dashboard
- Add configurable time entry poller
- Add feedback for currently running project and client
- Update timerDuration to contain the correct duration formatted as time string
### Version 2.1.1
- Prevent module crash if user has no Clients
### Version 2.1.2
- Update node runtime to node22
- make polling interval configurable as toggl is updating their [API usage limits](https://support.toggl.com/en/articles/11484112-api-webhook-limits)

View File

@@ -3,7 +3,7 @@
"name": "toggl-track",
"shortname": "toggl-track",
"description": "Companion module for toggltrack timers",
"version": "2.0.1",
"version": "0.0.0",
"license": "MIT",
"repository": "git+https://github.com/bitfocus/companion-module-toggl-track.git",
"bugs": "https://github.com/bitfocus/companion-module-toggl-track/issues",
@@ -17,7 +17,7 @@
],
"legacyIds": [],
"runtime": {
"type": "node18",
"type": "node22",
"api": "nodejs-ipc",
"apiVersion": "0.0.0",
"entrypoint": "../dist/main.js"

View File

@@ -1,6 +1,6 @@
{
"name": "toggl-track",
"version": "2.1.1",
"version": "2.1.2",
"main": "dist/main.js",
"type": "module",
"scripts": {
@@ -48,5 +48,6 @@
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
},
"packageManager": "yarn@4.9.1"
}

View File

@@ -259,7 +259,7 @@ export class TogglTrack extends InstanceBase<ModuleConfig> {
timerDuration: timecodeSince(new Date(entry.start)),
timerProject: project?.label,
timerProjectID: entry.project_id,
timerClient: this.clients!.find((c) => c.id == project?.clientID)?.label,
timerClient: this.clients?.find((c) => c.id == project?.clientID)?.label ?? 'None',
timerClientID: project?.clientID,
})

3363
yarn.lock Normal file

File diff suppressed because it is too large Load Diff