dcdx 1.2.0-next.6 → 1.2.0-next.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 (119) hide show
  1. package/assets/versions.json +1 -1
  2. package/lib/commands/apt.js +11223 -0
  3. package/lib/commands/build.js +9566 -1
  4. package/lib/commands/database.js +9273 -1
  5. package/lib/commands/debug.js +10261 -0
  6. package/lib/commands/install.js +9453 -0
  7. package/lib/commands/profile.js +2 -1
  8. package/lib/commands/reset.js +10112 -1
  9. package/lib/commands/run.js +10138 -1
  10. package/lib/commands/stop.js +10109 -1
  11. package/lib/commands/update.js +9090 -0
  12. package/lib/index.js +164 -1
  13. package/lib/types/src/applications/bamboo.d.ts +3 -7
  14. package/lib/types/src/applications/base.d.ts +12 -15
  15. package/lib/types/src/applications/bitbucket.d.ts +3 -7
  16. package/lib/types/src/applications/confluence.d.ts +3 -7
  17. package/lib/types/src/applications/jira.d.ts +3 -7
  18. package/lib/types/src/apt/helpers/dcapt.d.ts +6 -0
  19. package/lib/types/src/apt/helpers/generatePerformanceReport.d.ts +2 -0
  20. package/lib/types/src/apt/helpers/generateScalabilityReport.d.ts +2 -0
  21. package/lib/types/src/apt/helpers/getAWSCredentials.d.ts +2 -0
  22. package/lib/types/src/apt/helpers/getAptDirectory.d.ts +1 -0
  23. package/lib/types/src/apt/helpers/getClusterURL.d.ts +2 -0
  24. package/lib/types/src/apt/helpers/getDuration.d.ts +3 -0
  25. package/lib/types/src/apt/helpers/getEnvironmentName.d.ts +1 -0
  26. package/lib/types/src/apt/helpers/getHostLicense.d.ts +4 -0
  27. package/lib/types/src/apt/helpers/getNodeNumberForStage.d.ts +2 -0
  28. package/lib/types/src/apt/helpers/getOutputDirectory.d.ts +1 -0
  29. package/lib/types/src/apt/helpers/getProduct.d.ts +2 -0
  30. package/lib/types/src/apt/helpers/getReindexProgress.d.ts +1 -0
  31. package/lib/types/src/apt/helpers/getReport.d.ts +2 -0
  32. package/lib/types/src/apt/helpers/getReportDirectory.d.ts +1 -0
  33. package/lib/types/src/apt/helpers/getResults.d.ts +2 -0
  34. package/lib/types/src/apt/helpers/getResultsDirectory.d.ts +2 -0
  35. package/lib/types/src/apt/helpers/getRunForStage.d.ts +2 -0
  36. package/lib/types/src/apt/helpers/installApp.d.ts +1 -0
  37. package/lib/types/src/apt/helpers/persistClusterConfiguration.d.ts +1 -0
  38. package/lib/types/src/apt/helpers/persistTestConfiguration.d.ts +2 -0
  39. package/lib/types/src/apt/helpers/persistsAWSCredentials.d.ts +1 -0
  40. package/lib/types/src/apt/helpers/provisionCluster.d.ts +8 -0
  41. package/lib/types/src/apt/helpers/reindex.d.ts +1 -0
  42. package/lib/types/src/apt/helpers/runPerformanceTest.d.ts +2 -0
  43. package/lib/types/src/apt/helpers/runScalabilityTest.d.ts +2 -0
  44. package/lib/types/src/apt/helpers/teardownCluster.d.ts +2 -0
  45. package/lib/types/src/apt/helpers/waitForUserInput.d.ts +2 -0
  46. package/lib/types/src/apt/messages.d.ts +30 -0
  47. package/lib/types/src/apt/performance.d.ts +2 -0
  48. package/lib/types/src/apt/scalability.d.ts +2 -0
  49. package/lib/types/src/databases/base.d.ts +7 -15
  50. package/lib/types/src/databases/mssql.d.ts +3 -12
  51. package/lib/types/src/databases/mysql.d.ts +3 -12
  52. package/lib/types/src/databases/postgres.d.ts +3 -12
  53. package/lib/types/src/helpers/ActionHandler.d.ts +44 -0
  54. package/lib/types/src/helpers/CustomBuilder.d.ts +12 -0
  55. package/lib/types/src/helpers/FileWatcher.d.ts +3 -0
  56. package/lib/types/src/helpers/Installer.d.ts +3 -0
  57. package/lib/types/src/helpers/amps.d.ts +23 -12
  58. package/lib/types/src/helpers/capitalize.d.ts +1 -0
  59. package/lib/types/src/helpers/docker.d.ts +3 -5
  60. package/lib/types/src/helpers/generateVersionList.d.ts +3 -0
  61. package/lib/types/src/helpers/getApplication.d.ts +2 -6
  62. package/lib/types/src/helpers/getDatabaseEngine.d.ts +2 -0
  63. package/lib/types/src/helpers/getVersions.d.ts +1 -0
  64. package/lib/types/src/helpers/getZodDefaults.d.ts +3 -0
  65. package/lib/types/src/helpers/isOfType.d.ts +1 -0
  66. package/lib/types/src/helpers/licences.d.ts +3 -2
  67. package/lib/types/src/helpers/readLinesInFile.d.ts +1 -0
  68. package/lib/types/src/helpers/replaceLinesInFile.d.ts +1 -0
  69. package/lib/types/src/helpers/showHelpWithDefaultCommandOptions.d.ts +2 -0
  70. package/lib/types/src/helpers/upm.d.ts +3 -0
  71. package/lib/types/src/types/AMPS.d.ts +123 -0
  72. package/lib/types/src/types/Application.d.ts +69 -0
  73. package/lib/types/src/types/DCAPT.d.ts +302 -0
  74. package/lib/types/src/types/Database.d.ts +169 -0
  75. package/package.json +24 -7
  76. package/lib/commands/database/mssql.js +0 -2
  77. package/lib/commands/database/mysql.js +0 -2
  78. package/lib/commands/database/postgres.js +0 -2
  79. package/lib/commands/reset/bamboo.js +0 -2
  80. package/lib/commands/reset/bitbucket.js +0 -2
  81. package/lib/commands/reset/command.js +0 -2
  82. package/lib/commands/reset/confluence.js +0 -2
  83. package/lib/commands/reset/jira.js +0 -2
  84. package/lib/commands/run/bamboo.js +0 -2
  85. package/lib/commands/run/bitbucket.js +0 -2
  86. package/lib/commands/run/command.js +0 -2
  87. package/lib/commands/run/confluence.js +0 -2
  88. package/lib/commands/run/jira.js +0 -2
  89. package/lib/commands/start.js +0 -2
  90. package/lib/commands/stop/bamboo.js +0 -2
  91. package/lib/commands/stop/bitbucket.js +0 -2
  92. package/lib/commands/stop/command.js +0 -2
  93. package/lib/commands/stop/confluence.js +0 -2
  94. package/lib/commands/stop/jira.js +0 -2
  95. package/lib/types/src/commands/reset/bitbucket.d.ts +0 -2
  96. package/lib/types/src/commands/reset/command.d.ts +0 -3
  97. package/lib/types/src/commands/reset/confluence.d.ts +0 -2
  98. package/lib/types/src/commands/reset/jira.d.ts +0 -2
  99. package/lib/types/src/commands/run/bamboo.d.ts +0 -2
  100. package/lib/types/src/commands/run/bitbucket.d.ts +0 -2
  101. package/lib/types/src/commands/run/command.d.ts +0 -3
  102. package/lib/types/src/commands/run/confluence.d.ts +0 -2
  103. package/lib/types/src/commands/run/jira.d.ts +0 -2
  104. package/lib/types/src/commands/start.d.ts +0 -2
  105. package/lib/types/src/commands/stop/bamboo.d.ts +0 -2
  106. package/lib/types/src/commands/stop/bitbucket.d.ts +0 -2
  107. package/lib/types/src/commands/stop/command.d.ts +0 -3
  108. package/lib/types/src/commands/stop/confluence.d.ts +0 -2
  109. package/lib/types/src/commands/stop/jira.d.ts +0 -2
  110. package/lib/types/src/types/ApplicationOptions.d.ts +0 -13
  111. package/lib/types/src/types/DatabaseEngine.d.ts +0 -17
  112. package/lib/types/src/types/DatabaseOptions.d.ts +0 -9
  113. package/lib/types/src/types/SupportedApplications.d.ts +0 -6
  114. package/lib/types/src/types/SupportedDatabaseDrivers.d.ts +0 -1
  115. package/lib/types/src/types/SupportedDatabaseEngines.d.ts +0 -1
  116. /package/lib/types/src/commands/{database/mssql.d.ts → apt.d.ts} +0 -0
  117. /package/lib/types/src/commands/{database/mysql.d.ts → debug.d.ts} +0 -0
  118. /package/lib/types/src/commands/{database/postgres.d.ts → install.d.ts} +0 -0
  119. /package/lib/types/src/commands/{reset/bamboo.d.ts → update.d.ts} +0 -0
@@ -1,2 +1,3 @@
1
1
  #!/usr/bin/env node
2
- console.log("Profiles are currently not supported, but are coming soon!");
2
+ console.log('Profiles are currently not supported, but are coming soon!');
3
+ //# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS5qcyIsInNvdXJjZXMiOlsiLi4vLi4vZGlzdC9zcmMvY29tbWFuZHMvcHJvZmlsZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyIjIS91c3IvYmluL2VudiBub2RlXG5cInVzZSBzdHJpY3RcIjtcbmNvbnNvbGUubG9nKCdQcm9maWxlcyBhcmUgY3VycmVudGx5IG5vdCBzdXBwb3J0ZWQsIGJ1dCBhcmUgY29taW5nIHNvb24hJyk7XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUVBLE9BQU8sQ0FBQyxHQUFHLENBQUMsNERBQTRELENBQUMifQ==