dcdx 1.2.0-next.5 → 1.2.0-next.7

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 (70) hide show
  1. package/assets/{quickreload-5.0.2.jar → quickreload-5.0.4.jar} +0 -0
  2. package/assets/versions.json +1 -1
  3. package/lib/commands/build.js +8510 -1
  4. package/lib/commands/database.js +8441 -1
  5. package/lib/commands/debug.js +9257 -0
  6. package/lib/commands/profile.js +2 -1
  7. package/lib/commands/reset.js +9194 -1
  8. package/lib/commands/run.js +9227 -1
  9. package/lib/commands/stop.js +9191 -1
  10. package/lib/index.js +93 -1
  11. package/lib/types/src/applications/bamboo.d.ts +4 -6
  12. package/lib/types/src/applications/base.d.ts +8 -12
  13. package/lib/types/src/applications/bitbucket.d.ts +4 -6
  14. package/lib/types/src/applications/confluence.d.ts +4 -6
  15. package/lib/types/src/applications/jira.d.ts +4 -6
  16. package/lib/types/src/databases/base.d.ts +7 -15
  17. package/lib/types/src/databases/mssql.d.ts +3 -12
  18. package/lib/types/src/databases/mysql.d.ts +3 -12
  19. package/lib/types/src/databases/postgres.d.ts +3 -12
  20. package/lib/types/src/helpers/ActionHandler.d.ts +39 -0
  21. package/lib/types/src/helpers/FileWatcher.d.ts +3 -0
  22. package/lib/types/src/helpers/amps.d.ts +22 -12
  23. package/lib/types/src/helpers/docker.d.ts +3 -5
  24. package/lib/types/src/helpers/getApplication.d.ts +2 -6
  25. package/lib/types/src/helpers/getDatabaseEngine.d.ts +2 -0
  26. package/lib/types/src/helpers/getZodDefaults.d.ts +3 -0
  27. package/lib/types/src/helpers/licences.d.ts +2 -2
  28. package/lib/types/src/helpers/showHelpWithDefaultCommandOptions.d.ts +2 -0
  29. package/lib/types/src/types/AMPS.d.ts +96 -0
  30. package/lib/types/src/types/Application.d.ts +65 -0
  31. package/lib/types/src/types/Database.d.ts +169 -0
  32. package/package.json +10 -5
  33. package/lib/commands/database/mssql.js +0 -2
  34. package/lib/commands/database/mysql.js +0 -2
  35. package/lib/commands/database/postgres.js +0 -2
  36. package/lib/commands/reset/bamboo.js +0 -2
  37. package/lib/commands/reset/bitbucket.js +0 -2
  38. package/lib/commands/reset/confluence.js +0 -2
  39. package/lib/commands/reset/jira.js +0 -2
  40. package/lib/commands/run/bamboo.js +0 -2
  41. package/lib/commands/run/bitbucket.js +0 -2
  42. package/lib/commands/run/confluence.js +0 -2
  43. package/lib/commands/run/jira.js +0 -2
  44. package/lib/commands/start.js +0 -2
  45. package/lib/commands/stop/bamboo.js +0 -2
  46. package/lib/commands/stop/bitbucket.js +0 -2
  47. package/lib/commands/stop/confluence.js +0 -2
  48. package/lib/commands/stop/jira.js +0 -2
  49. package/lib/types/src/commands/database/mysql.d.ts +0 -2
  50. package/lib/types/src/commands/database/postgres.d.ts +0 -2
  51. package/lib/types/src/commands/reset/bamboo.d.ts +0 -2
  52. package/lib/types/src/commands/reset/bitbucket.d.ts +0 -2
  53. package/lib/types/src/commands/reset/confluence.d.ts +0 -2
  54. package/lib/types/src/commands/reset/jira.d.ts +0 -2
  55. package/lib/types/src/commands/run/bamboo.d.ts +0 -2
  56. package/lib/types/src/commands/run/bitbucket.d.ts +0 -2
  57. package/lib/types/src/commands/run/confluence.d.ts +0 -2
  58. package/lib/types/src/commands/run/jira.d.ts +0 -2
  59. package/lib/types/src/commands/start.d.ts +0 -2
  60. package/lib/types/src/commands/stop/bamboo.d.ts +0 -2
  61. package/lib/types/src/commands/stop/bitbucket.d.ts +0 -2
  62. package/lib/types/src/commands/stop/confluence.d.ts +0 -2
  63. package/lib/types/src/commands/stop/jira.d.ts +0 -2
  64. package/lib/types/src/types/ApplicationOptions.d.ts +0 -13
  65. package/lib/types/src/types/DatabaseEngine.d.ts +0 -17
  66. package/lib/types/src/types/DatabaseOptions.d.ts +0 -9
  67. package/lib/types/src/types/SupportedApplications.d.ts +0 -6
  68. package/lib/types/src/types/SupportedDatabaseDrivers.d.ts +0 -1
  69. package/lib/types/src/types/SupportedDatabaseEngines.d.ts +0 -1
  70. /package/lib/types/src/commands/{database/mssql.d.ts → debug.d.ts} +0 -0