@hyperdrive.bot/cli 1.0.7 → 1.0.9

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 (41) hide show
  1. package/README.md +307 -59
  2. package/dist/commands/account/list.d.ts +3 -0
  3. package/dist/commands/account/list.js +9 -2
  4. package/dist/commands/auth/logout.d.ts +11 -0
  5. package/dist/commands/auth/logout.js +86 -9
  6. package/dist/commands/git/connect.js +1 -0
  7. package/dist/commands/init.d.ts +1 -0
  8. package/dist/commands/init.js +20 -19
  9. package/dist/commands/jira/connect.d.ts +1 -0
  10. package/dist/commands/jira/connect.js +17 -6
  11. package/dist/commands/jira/hook/add.d.ts +17 -0
  12. package/dist/commands/jira/hook/add.js +147 -0
  13. package/dist/commands/jira/hook/list.d.ts +14 -0
  14. package/dist/commands/jira/hook/list.js +105 -0
  15. package/dist/commands/jira/hook/remove.d.ts +15 -0
  16. package/dist/commands/jira/hook/remove.js +119 -0
  17. package/dist/commands/jira/hook/toggle.d.ts +15 -0
  18. package/dist/commands/jira/hook/toggle.js +136 -0
  19. package/dist/commands/jira/status.js +11 -2
  20. package/dist/commands/project/init.d.ts +21 -0
  21. package/dist/commands/project/init.js +576 -0
  22. package/dist/commands/project/list.d.ts +10 -0
  23. package/dist/commands/project/list.js +119 -0
  24. package/dist/commands/project/status.d.ts +13 -0
  25. package/dist/commands/project/status.js +163 -0
  26. package/dist/commands/project/sync.d.ts +26 -0
  27. package/dist/commands/project/sync.js +406 -0
  28. package/dist/services/hyperdrive-sigv4.d.ts +125 -0
  29. package/dist/services/hyperdrive-sigv4.js +45 -0
  30. package/dist/services/tenant-service.d.ts +12 -0
  31. package/dist/services/tenant-service.js +44 -1
  32. package/dist/utils/account-flow.d.ts +2 -2
  33. package/dist/utils/account-flow.js +4 -4
  34. package/dist/utils/git-flow.d.ts +1 -0
  35. package/dist/utils/git-flow.js +2 -2
  36. package/dist/utils/hook-flow.d.ts +21 -0
  37. package/dist/utils/hook-flow.js +154 -0
  38. package/dist/utils/jira-flow.d.ts +2 -2
  39. package/dist/utils/jira-flow.js +4 -4
  40. package/oclif.manifest.json +591 -119
  41. package/package.json +5 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hyperdrive.bot/cli",
3
3
  "description": "hyperdrive.bot is a command-line interface (CLI) tool designed for managing and deploying projects using the Hyperdrive API. The CLI acts as a proxy to the Hyperdrive API, enabling users to:",
4
- "version": "1.0.7",
4
+ "version": "1.0.9",
5
5
  "author": "marcelomarra",
6
6
  "bin": {
7
7
  "hd": "./bin/run.js",
@@ -39,6 +39,7 @@
39
39
  "@oclif/test": "^4",
40
40
  "@types/chai": "^4",
41
41
  "@types/inquirer": "^9.0.7",
42
+ "@types/js-yaml": "^4.0.9",
42
43
  "@types/jsonwebtoken": "^9.0.10",
43
44
  "@types/mocha": "^10",
44
45
  "@types/node": "^18",
@@ -122,6 +123,9 @@
122
123
  "jira": {
123
124
  "description": "Jira CLI for issues, boards, and sprints (jira-plugin)"
124
125
  },
126
+ "jira hook": {
127
+ "description": "Manage Jira status transition hooks"
128
+ },
125
129
  "vercel": {
126
130
  "description": "Vercel CLI passthrough (vercel-plugin)"
127
131
  }