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.
- package/assets/versions.json +1 -1
- package/lib/commands/apt.js +11223 -0
- package/lib/commands/build.js +9566 -1
- package/lib/commands/database.js +9273 -1
- package/lib/commands/debug.js +10261 -0
- package/lib/commands/install.js +9453 -0
- package/lib/commands/profile.js +2 -1
- package/lib/commands/reset.js +10112 -1
- package/lib/commands/run.js +10138 -1
- package/lib/commands/stop.js +10109 -1
- package/lib/commands/update.js +9090 -0
- package/lib/index.js +164 -1
- package/lib/types/src/applications/bamboo.d.ts +3 -7
- package/lib/types/src/applications/base.d.ts +12 -15
- package/lib/types/src/applications/bitbucket.d.ts +3 -7
- package/lib/types/src/applications/confluence.d.ts +3 -7
- package/lib/types/src/applications/jira.d.ts +3 -7
- package/lib/types/src/apt/helpers/dcapt.d.ts +6 -0
- package/lib/types/src/apt/helpers/generatePerformanceReport.d.ts +2 -0
- package/lib/types/src/apt/helpers/generateScalabilityReport.d.ts +2 -0
- package/lib/types/src/apt/helpers/getAWSCredentials.d.ts +2 -0
- package/lib/types/src/apt/helpers/getAptDirectory.d.ts +1 -0
- package/lib/types/src/apt/helpers/getClusterURL.d.ts +2 -0
- package/lib/types/src/apt/helpers/getDuration.d.ts +3 -0
- package/lib/types/src/apt/helpers/getEnvironmentName.d.ts +1 -0
- package/lib/types/src/apt/helpers/getHostLicense.d.ts +4 -0
- package/lib/types/src/apt/helpers/getNodeNumberForStage.d.ts +2 -0
- package/lib/types/src/apt/helpers/getOutputDirectory.d.ts +1 -0
- package/lib/types/src/apt/helpers/getProduct.d.ts +2 -0
- package/lib/types/src/apt/helpers/getReindexProgress.d.ts +1 -0
- package/lib/types/src/apt/helpers/getReport.d.ts +2 -0
- package/lib/types/src/apt/helpers/getReportDirectory.d.ts +1 -0
- package/lib/types/src/apt/helpers/getResults.d.ts +2 -0
- package/lib/types/src/apt/helpers/getResultsDirectory.d.ts +2 -0
- package/lib/types/src/apt/helpers/getRunForStage.d.ts +2 -0
- package/lib/types/src/apt/helpers/installApp.d.ts +1 -0
- package/lib/types/src/apt/helpers/persistClusterConfiguration.d.ts +1 -0
- package/lib/types/src/apt/helpers/persistTestConfiguration.d.ts +2 -0
- package/lib/types/src/apt/helpers/persistsAWSCredentials.d.ts +1 -0
- package/lib/types/src/apt/helpers/provisionCluster.d.ts +8 -0
- package/lib/types/src/apt/helpers/reindex.d.ts +1 -0
- package/lib/types/src/apt/helpers/runPerformanceTest.d.ts +2 -0
- package/lib/types/src/apt/helpers/runScalabilityTest.d.ts +2 -0
- package/lib/types/src/apt/helpers/teardownCluster.d.ts +2 -0
- package/lib/types/src/apt/helpers/waitForUserInput.d.ts +2 -0
- package/lib/types/src/apt/messages.d.ts +30 -0
- package/lib/types/src/apt/performance.d.ts +2 -0
- package/lib/types/src/apt/scalability.d.ts +2 -0
- package/lib/types/src/databases/base.d.ts +7 -15
- package/lib/types/src/databases/mssql.d.ts +3 -12
- package/lib/types/src/databases/mysql.d.ts +3 -12
- package/lib/types/src/databases/postgres.d.ts +3 -12
- package/lib/types/src/helpers/ActionHandler.d.ts +44 -0
- package/lib/types/src/helpers/CustomBuilder.d.ts +12 -0
- package/lib/types/src/helpers/FileWatcher.d.ts +3 -0
- package/lib/types/src/helpers/Installer.d.ts +3 -0
- package/lib/types/src/helpers/amps.d.ts +23 -12
- package/lib/types/src/helpers/capitalize.d.ts +1 -0
- package/lib/types/src/helpers/docker.d.ts +3 -5
- package/lib/types/src/helpers/generateVersionList.d.ts +3 -0
- package/lib/types/src/helpers/getApplication.d.ts +2 -6
- package/lib/types/src/helpers/getDatabaseEngine.d.ts +2 -0
- package/lib/types/src/helpers/getVersions.d.ts +1 -0
- package/lib/types/src/helpers/getZodDefaults.d.ts +3 -0
- package/lib/types/src/helpers/isOfType.d.ts +1 -0
- package/lib/types/src/helpers/licences.d.ts +3 -2
- package/lib/types/src/helpers/readLinesInFile.d.ts +1 -0
- package/lib/types/src/helpers/replaceLinesInFile.d.ts +1 -0
- package/lib/types/src/helpers/showHelpWithDefaultCommandOptions.d.ts +2 -0
- package/lib/types/src/helpers/upm.d.ts +3 -0
- package/lib/types/src/types/AMPS.d.ts +123 -0
- package/lib/types/src/types/Application.d.ts +69 -0
- package/lib/types/src/types/DCAPT.d.ts +302 -0
- package/lib/types/src/types/Database.d.ts +169 -0
- package/package.json +24 -7
- package/lib/commands/database/mssql.js +0 -2
- package/lib/commands/database/mysql.js +0 -2
- package/lib/commands/database/postgres.js +0 -2
- package/lib/commands/reset/bamboo.js +0 -2
- package/lib/commands/reset/bitbucket.js +0 -2
- package/lib/commands/reset/command.js +0 -2
- package/lib/commands/reset/confluence.js +0 -2
- package/lib/commands/reset/jira.js +0 -2
- package/lib/commands/run/bamboo.js +0 -2
- package/lib/commands/run/bitbucket.js +0 -2
- package/lib/commands/run/command.js +0 -2
- package/lib/commands/run/confluence.js +0 -2
- package/lib/commands/run/jira.js +0 -2
- package/lib/commands/start.js +0 -2
- package/lib/commands/stop/bamboo.js +0 -2
- package/lib/commands/stop/bitbucket.js +0 -2
- package/lib/commands/stop/command.js +0 -2
- package/lib/commands/stop/confluence.js +0 -2
- package/lib/commands/stop/jira.js +0 -2
- package/lib/types/src/commands/reset/bitbucket.d.ts +0 -2
- package/lib/types/src/commands/reset/command.d.ts +0 -3
- package/lib/types/src/commands/reset/confluence.d.ts +0 -2
- package/lib/types/src/commands/reset/jira.d.ts +0 -2
- package/lib/types/src/commands/run/bamboo.d.ts +0 -2
- package/lib/types/src/commands/run/bitbucket.d.ts +0 -2
- package/lib/types/src/commands/run/command.d.ts +0 -3
- package/lib/types/src/commands/run/confluence.d.ts +0 -2
- package/lib/types/src/commands/run/jira.d.ts +0 -2
- package/lib/types/src/commands/start.d.ts +0 -2
- package/lib/types/src/commands/stop/bamboo.d.ts +0 -2
- package/lib/types/src/commands/stop/bitbucket.d.ts +0 -2
- package/lib/types/src/commands/stop/command.d.ts +0 -3
- package/lib/types/src/commands/stop/confluence.d.ts +0 -2
- package/lib/types/src/commands/stop/jira.d.ts +0 -2
- package/lib/types/src/types/ApplicationOptions.d.ts +0 -13
- package/lib/types/src/types/DatabaseEngine.d.ts +0 -17
- package/lib/types/src/types/DatabaseOptions.d.ts +0 -9
- package/lib/types/src/types/SupportedApplications.d.ts +0 -6
- package/lib/types/src/types/SupportedDatabaseDrivers.d.ts +0 -1
- package/lib/types/src/types/SupportedDatabaseEngines.d.ts +0 -1
- /package/lib/types/src/commands/{database/mssql.d.ts → apt.d.ts} +0 -0
- /package/lib/types/src/commands/{database/mysql.d.ts → debug.d.ts} +0 -0
- /package/lib/types/src/commands/{database/postgres.d.ts → install.d.ts} +0 -0
- /package/lib/types/src/commands/{reset/bamboo.d.ts → update.d.ts} +0 -0
package/lib/commands/profile.js
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
console.log(
|
|
2
|
+
console.log('Profiles are currently not supported, but are coming soon!');
|
|
3
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZmlsZS5qcyIsInNvdXJjZXMiOlsiLi4vLi4vZGlzdC9zcmMvY29tbWFuZHMvcHJvZmlsZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyIjIS91c3IvYmluL2VudiBub2RlXG5cInVzZSBzdHJpY3RcIjtcbmNvbnNvbGUubG9nKCdQcm9maWxlcyBhcmUgY3VycmVudGx5IG5vdCBzdXBwb3J0ZWQsIGJ1dCBhcmUgY29taW5nIHNvb24hJyk7XG4iXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUVBLE9BQU8sQ0FBQyxHQUFHLENBQUMsNERBQTRELENBQUMifQ==
|