The automatic time and productivity tracking app for Mac. Track time without timers!
The Timing app provides detailed time tracking capabilities, enabling users to automatically log time spent on various tasks and improve productivity. Using Pipedream’s integration, one could build workflows that trigger when new time entries are created, sync time data with other project management tools, or compile reports for invoicing and accountability. It's all about harnessing the power of automated time tracking to streamline processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
timing: {
type: "app",
app: "timing",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://web.timingapp.com/api/v1/projects`,
headers: {
Authorization: `Bearer ${this.timing.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})