@pipedream/harvest 0.1.0 → 1.0.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 (43) hide show
  1. package/actions/create-invoice/create-invoice.mjs +116 -0
  2. package/actions/create-project/create-project.mjs +138 -0
  3. package/actions/create-task-assignment/create-task-assignment.mjs +77 -0
  4. package/actions/create-timesheet-entry/create-timesheet-entry.mjs +34 -38
  5. package/actions/create-user/create-user.mjs +109 -0
  6. package/actions/create-user-assignment/create-user-assignment.mjs +85 -0
  7. package/actions/delete-invoice/delete-invoice.mjs +38 -0
  8. package/actions/delete-project/delete-project.mjs +38 -0
  9. package/actions/delete-task-assignment/delete-task-assignment.mjs +45 -0
  10. package/actions/delete-time-entry/delete-time-entry.mjs +38 -0
  11. package/actions/delete-user/delete-user.mjs +39 -0
  12. package/actions/delete-user-assignment/delete-user-assignment.mjs +45 -0
  13. package/actions/get-invoice/get-invoice.mjs +39 -0
  14. package/actions/get-me/get-me.mjs +32 -0
  15. package/actions/get-project/get-project.mjs +39 -0
  16. package/actions/get-projects/get-projects.mjs +15 -12
  17. package/actions/get-task-assignment/get-task-assignment.mjs +46 -0
  18. package/actions/get-time-entry/get-time-entry.mjs +39 -0
  19. package/actions/get-time-report/get-time-report.mjs +80 -0
  20. package/actions/get-user/get-user.mjs +40 -0
  21. package/actions/get-user-assignment/get-user-assignment.mjs +46 -0
  22. package/actions/list-account-id-options/list-account-id-options.mjs +12 -3
  23. package/actions/list-clients/list-clients.mjs +57 -0
  24. package/actions/list-invoices/list-invoices.mjs +86 -0
  25. package/actions/list-task-assignments/list-task-assignments.mjs +66 -0
  26. package/actions/list-tasks/list-tasks.mjs +57 -0
  27. package/actions/list-time-entries/list-time-entries.mjs +150 -0
  28. package/actions/list-user-assignments/list-user-assignments.mjs +74 -0
  29. package/actions/list-users/list-users.mjs +57 -0
  30. package/actions/start-timer/start-timer.mjs +5 -7
  31. package/actions/stop-timer/stop-timer.mjs +5 -7
  32. package/actions/update-invoice/update-invoice.mjs +114 -0
  33. package/actions/update-project/update-project.mjs +140 -0
  34. package/actions/update-task-assignment/update-task-assignment.mjs +77 -0
  35. package/actions/update-time-entry/update-time-entry.mjs +92 -0
  36. package/actions/update-user/update-user.mjs +106 -0
  37. package/actions/update-user-assignment/update-user-assignment.mjs +84 -0
  38. package/common/constants.mjs +51 -1
  39. package/common/utils.mjs +50 -1
  40. package/harvest.app.mjs +683 -110
  41. package/package.json +1 -1
  42. package/sources/new-invoice-entry/new-invoice-entry.mjs +1 -1
  43. package/sources/new-timesheet-entry/new-timesheet-entry.mjs +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pipedream/harvest",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "Pipedream Harvest Components",
5
5
  "main": "harvest.app.mjs",
6
6
  "keywords": [
@@ -5,7 +5,7 @@ export default {
5
5
  key: "harvest-new-invoice-entry",
6
6
  name: "New Invoice Entry",
7
7
  description: "Emit new notifications when a new invoice is created",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  type: "source",
10
10
  props: {
11
11
  harvest,
@@ -5,7 +5,7 @@ export default {
5
5
  key: "harvest-new-timesheet-entry",
6
6
  name: "New Timesheet Entry",
7
7
  description: "Emit new notifications when a new timesheet entry is created",
8
- version: "0.0.4",
8
+ version: "0.0.5",
9
9
  type: "source",
10
10
  props: {
11
11
  harvest,