@hubspot/cli 7.5.11-experimental.0 → 7.7.0-experimental.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.
- package/bin/cli.js +5 -6
- package/bin/hsmcp.d.ts +2 -0
- package/bin/hsmcp.js +13 -0
- package/commands/account/auth.d.ts +3 -7
- package/commands/account/auth.js +19 -9
- package/commands/account/clean.d.ts +3 -7
- package/commands/account/clean.js +16 -9
- package/commands/account/createOverride.d.ts +3 -7
- package/commands/account/createOverride.js +23 -6
- package/commands/account/info.d.ts +3 -7
- package/commands/account/info.js +13 -5
- package/commands/account/list.d.ts +3 -7
- package/commands/account/list.js +15 -8
- package/commands/account/remove.d.ts +3 -7
- package/commands/account/remove.js +21 -9
- package/commands/account/removeOverride.d.ts +3 -7
- package/commands/account/removeOverride.js +23 -6
- package/commands/account/rename.d.ts +3 -7
- package/commands/account/rename.js +16 -9
- package/commands/account/use.d.ts +5 -9
- package/commands/account/use.js +14 -6
- package/commands/account.d.ts +3 -4
- package/commands/account.js +35 -58
- package/commands/app/migrate.d.ts +1 -2
- package/commands/app/migrate.js +7 -8
- package/commands/app/secret/add.d.ts +7 -0
- package/commands/app/secret/add.js +64 -0
- package/commands/app/secret/delete.d.ts +8 -0
- package/commands/app/secret/delete.js +87 -0
- package/commands/app/secret/list.d.ts +6 -0
- package/commands/app/secret/list.js +64 -0
- package/commands/app/secret/update.d.ts +7 -0
- package/commands/app/secret/update.js +77 -0
- package/commands/app/secret.d.ts +3 -0
- package/commands/app/secret.js +30 -0
- package/commands/app.d.ts +2 -5
- package/commands/app.js +12 -8
- package/commands/auth.d.ts +3 -7
- package/commands/auth.js +12 -5
- package/commands/cms/convertFields.d.ts +7 -1
- package/commands/cms/convertFields.js +57 -41
- package/commands/cms/getReactModule.d.ts +7 -1
- package/commands/cms/getReactModule.js +52 -34
- package/commands/cms/lighthouseScore.d.ts +8 -1
- package/commands/cms/lighthouseScore.js +129 -100
- package/commands/cms.d.ts +3 -1
- package/commands/cms.js +24 -15
- package/commands/completion.d.ts +3 -1
- package/commands/completion.js +25 -12
- package/commands/config/migrate.d.ts +3 -7
- package/commands/config/migrate.js +25 -15
- package/commands/config/set.d.ts +5 -6
- package/commands/config/set.js +38 -14
- package/commands/config.d.ts +3 -4
- package/commands/config.js +20 -44
- package/commands/create/api-sample.d.ts +3 -1
- package/commands/create/api-sample.js +34 -38
- package/commands/create/app.d.ts +3 -1
- package/commands/create/app.js +9 -7
- package/commands/create/function.d.ts +3 -1
- package/commands/create/function.js +11 -10
- package/commands/create/index.d.ts +5 -1
- package/commands/create/index.js +23 -11
- package/commands/create/module.d.ts +3 -1
- package/commands/create/module.js +14 -13
- package/commands/create/react-app.d.ts +3 -1
- package/commands/create/react-app.js +10 -7
- package/commands/create/template.d.ts +3 -1
- package/commands/create/template.js +14 -14
- package/commands/create/vue-app.d.ts +3 -1
- package/commands/create/vue-app.js +10 -7
- package/commands/create/webpack-serverless.d.ts +3 -1
- package/commands/create/webpack-serverless.js +10 -7
- package/commands/create/website-theme.d.ts +3 -1
- package/commands/create/website-theme.js +10 -9
- package/commands/create.d.ts +4 -24
- package/commands/create.js +64 -74
- package/commands/customObject/create.d.ts +4 -9
- package/commands/customObject/create.js +17 -10
- package/commands/customObject/schema/create.d.ts +4 -9
- package/commands/customObject/schema/create.js +18 -11
- package/commands/customObject/schema/delete.d.ts +4 -9
- package/commands/customObject/schema/delete.js +17 -10
- package/commands/customObject/schema/fetch-all.d.ts +4 -9
- package/commands/customObject/schema/fetch-all.js +17 -10
- package/commands/customObject/schema/fetch.d.ts +4 -9
- package/commands/customObject/schema/fetch.js +17 -10
- package/commands/customObject/schema/list.d.ts +4 -8
- package/commands/customObject/schema/list.js +17 -10
- package/commands/customObject/schema/update.d.ts +4 -9
- package/commands/customObject/schema/update.js +18 -11
- package/commands/customObject/schema.d.ts +3 -5
- package/commands/customObject/schema.js +27 -54
- package/commands/customObject.d.ts +3 -4
- package/commands/customObject.js +20 -45
- package/commands/doctor.d.ts +6 -8
- package/commands/doctor.js +32 -21
- package/commands/feedback.d.ts +4 -1
- package/commands/feedback.js +40 -47
- package/commands/fetch.d.ts +12 -1
- package/commands/fetch.js +49 -33
- package/commands/filemanager/fetch.d.ts +4 -9
- package/commands/filemanager/fetch.js +18 -11
- package/commands/filemanager/upload.d.ts +4 -9
- package/commands/filemanager/upload.js +17 -11
- package/commands/filemanager.d.ts +3 -4
- package/commands/filemanager.js +20 -41
- package/commands/function/deploy.d.ts +6 -1
- package/commands/function/deploy.js +70 -50
- package/commands/function/list.d.ts +6 -1
- package/commands/function/list.js +44 -32
- package/commands/function/server.d.ts +10 -1
- package/commands/function/server.js +49 -38
- package/commands/function.d.ts +5 -1
- package/commands/function.js +24 -10
- package/commands/hubdb/clear.d.ts +4 -9
- package/commands/hubdb/clear.js +17 -10
- package/commands/hubdb/create.d.ts +4 -9
- package/commands/hubdb/create.js +17 -10
- package/commands/hubdb/delete.d.ts +4 -9
- package/commands/hubdb/delete.js +17 -10
- package/commands/hubdb/fetch.d.ts +4 -9
- package/commands/hubdb/fetch.js +17 -10
- package/commands/hubdb.d.ts +3 -2
- package/commands/hubdb.js +23 -45
- package/commands/init.d.ts +3 -7
- package/commands/init.js +12 -5
- package/commands/lint.d.ts +6 -4
- package/commands/lint.js +44 -43
- package/commands/list.d.ts +3 -7
- package/commands/list.js +19 -11
- package/commands/logs.d.ts +10 -1
- package/commands/logs.js +53 -44
- package/commands/module/marketplace-validate.d.ts +6 -1
- package/commands/module/marketplace-validate.js +39 -27
- package/commands/module.d.ts +3 -1
- package/commands/module.js +22 -10
- package/commands/mv.d.ts +3 -7
- package/commands/mv.js +19 -11
- package/commands/open.d.ts +3 -7
- package/commands/open.js +19 -11
- package/commands/project/cloneApp.d.ts +1 -1
- package/commands/project/cloneApp.js +2 -2
- package/commands/project/create.js +3 -3
- package/commands/project/deploy.d.ts +1 -0
- package/commands/project/deploy.js +40 -12
- package/commands/project/dev/index.d.ts +1 -4
- package/commands/project/dev/index.js +48 -16
- package/commands/project/dev/unifiedFlow.d.ts +2 -1
- package/commands/project/dev/unifiedFlow.js +85 -30
- package/commands/project/migrate.d.ts +1 -0
- package/commands/project/profile/add.d.ts +7 -0
- package/commands/project/profile/add.js +209 -0
- package/commands/project/profile/delete.d.ts +6 -0
- package/commands/project/profile/delete.js +123 -0
- package/commands/project/profile.d.ts +3 -0
- package/commands/project/profile.js +25 -0
- package/commands/project/upload.d.ts +1 -0
- package/commands/project/upload.js +38 -8
- package/commands/project/validate.d.ts +4 -0
- package/commands/project/validate.js +53 -0
- package/commands/project.js +4 -0
- package/commands/remove.d.ts +3 -7
- package/commands/remove.js +19 -11
- package/commands/sandbox/create.d.ts +4 -9
- package/commands/sandbox/create.js +18 -11
- package/commands/sandbox/delete.d.ts +4 -9
- package/commands/sandbox/delete.js +18 -11
- package/commands/sandbox.d.ts +3 -4
- package/commands/sandbox.js +20 -43
- package/commands/secret/addSecret.d.ts +4 -9
- package/commands/secret/addSecret.js +17 -10
- package/commands/secret/deleteSecret.d.ts +4 -9
- package/commands/secret/deleteSecret.js +17 -10
- package/commands/secret/listSecret.d.ts +4 -9
- package/commands/secret/listSecret.js +17 -10
- package/commands/secret/updateSecret.d.ts +4 -9
- package/commands/secret/updateSecret.js +17 -10
- package/commands/secret.d.ts +3 -4
- package/commands/secret.js +25 -48
- package/commands/setupMcp.d.ts +8 -0
- package/commands/setupMcp.js +229 -0
- package/commands/theme/generate-selectors.d.ts +3 -7
- package/commands/theme/generate-selectors.js +14 -6
- package/commands/theme/marketplace-validate.d.ts +4 -9
- package/commands/theme/marketplace-validate.js +17 -10
- package/commands/theme/preview.d.ts +4 -9
- package/commands/theme/preview.js +16 -9
- package/commands/theme.d.ts +3 -4
- package/commands/theme.js +23 -46
- package/commands/upload.d.ts +12 -1
- package/commands/upload.js +118 -97
- package/commands/watch.d.ts +14 -1
- package/commands/watch.js +76 -65
- package/lang/en.d.ts +838 -574
- package/lang/en.js +630 -373
- package/lang/en.lyaml +30 -23
- package/lib/accountTypes.js +2 -1
- package/lib/app/migrate.d.ts +23 -0
- package/lib/app/migrate.js +14 -3
- package/lib/app/migrate_legacy.js +7 -7
- package/lib/app/urls.d.ts +16 -0
- package/lib/app/urls.js +16 -0
- package/lib/configMigrate.js +24 -10
- package/lib/configOptions.d.ts +4 -0
- package/lib/configOptions.js +41 -46
- package/lib/constants.d.ts +6 -0
- package/lib/constants.js +7 -1
- package/lib/dependencyManagement.d.ts +0 -5
- package/lib/dependencyManagement.js +13 -39
- package/lib/doctor/Doctor.js +2 -1
- package/lib/filesystem.d.ts +1 -1
- package/lib/interpolation.d.ts +2 -3
- package/lib/lang.d.ts +2 -3
- package/lib/middleware/autoUpdateMiddleware.d.ts +1 -0
- package/lib/middleware/autoUpdateMiddleware.js +89 -0
- package/lib/middleware/configMiddleware.js +8 -0
- package/lib/npm.d.ts +9 -0
- package/lib/npm.js +36 -0
- package/lib/projectProfiles.d.ts +6 -0
- package/lib/projectProfiles.js +65 -0
- package/lib/projects/buildAndDeploy.js +17 -2
- package/lib/projects/localDev/AppDevModeInterface.d.ts +26 -0
- package/lib/projects/localDev/AppDevModeInterface.js +156 -0
- package/lib/projects/localDev/DevServerManagerV2.d.ts +11 -22
- package/lib/projects/localDev/DevServerManagerV2.js +19 -15
- package/lib/projects/localDev/LocalDevLogger.d.ts +30 -0
- package/lib/projects/localDev/LocalDevLogger.js +158 -0
- package/lib/projects/localDev/LocalDevManager.js +12 -5
- package/lib/projects/localDev/LocalDevProcess.d.ts +27 -0
- package/lib/projects/localDev/LocalDevProcess.js +171 -0
- package/lib/projects/localDev/LocalDevState.d.ts +37 -0
- package/lib/projects/localDev/LocalDevState.js +78 -0
- package/lib/projects/localDev/LocalDevWatcher.d.ts +10 -0
- package/lib/projects/localDev/LocalDevWatcher.js +56 -0
- package/lib/projects/localDev/LocalDevWebsocketServer.d.ts +17 -0
- package/lib/projects/localDev/LocalDevWebsocketServer.js +92 -0
- package/lib/projects/localDev/helpers.d.ts +3 -2
- package/lib/projects/localDev/helpers.js +32 -2
- package/lib/projects/upload.d.ts +2 -1
- package/lib/projects/upload.js +2 -2
- package/lib/prompts/createApiSamplePrompt.d.ts +2 -10
- package/lib/prompts/createTemplatePrompt.d.ts +22 -4
- package/lib/prompts/installAppPrompt.d.ts +1 -0
- package/lib/prompts/installAppPrompt.js +35 -0
- package/lib/prompts/projectDevTargetAccountPrompt.d.ts +6 -1
- package/lib/prompts/projectDevTargetAccountPrompt.js +6 -6
- package/lib/prompts/promptUtils.d.ts +2 -1
- package/lib/prompts/promptUtils.js +2 -1
- package/lib/prompts/selectAppPrompt.d.ts +2 -0
- package/lib/prompts/selectAppPrompt.js +40 -0
- package/lib/prompts/{selectPublicAppPrompt.d.ts → selectPublicAppForMigrationPrompt.d.ts} +1 -1
- package/lib/prompts/{selectPublicAppPrompt.js → selectPublicAppForMigrationPrompt.js} +8 -8
- package/lib/testUtils.d.ts +3 -3
- package/lib/testUtils.js +8 -9
- package/lib/ui/index.js +4 -1
- package/lib/upload.d.ts +1 -1
- package/lib/validation.js +4 -5
- package/lib/yargsUtils.d.ts +4 -0
- package/lib/yargsUtils.js +6 -0
- package/mcp-server/index.d.ts +1 -0
- package/mcp-server/index.js +17 -0
- package/mcp-server/mcpLoader.d.ts +5 -0
- package/mcp-server/mcpLoader.js +24 -0
- package/mcp-server/tools/ExplainProjectStructureTool.d.ts +33 -0
- package/mcp-server/tools/ExplainProjectStructureTool.js +266 -0
- package/mcp-server/tools/GenerateAppComponentTool.d.ts +99 -0
- package/mcp-server/tools/GenerateAppComponentTool.js +193 -0
- package/mcp-server/tools/GenerateCardComponentTool.d.ts +74 -0
- package/mcp-server/tools/GenerateCardComponentTool.js +146 -0
- package/mcp-server/tools/GenerateProjectConfigTool.d.ts +32 -0
- package/mcp-server/tools/GenerateProjectConfigTool.js +40 -0
- package/mcp-server/tools/HubSpotCLIHelper.d.ts +16 -0
- package/mcp-server/tools/HubSpotCLIHelper.js +74 -0
- package/mcp-server/tools/UploadProjectTool.d.ts +44 -0
- package/mcp-server/tools/UploadProjectTool.js +149 -0
- package/mcp-server/tools/ValidateProjectTool.d.ts +62 -0
- package/mcp-server/tools/ValidateProjectTool.js +315 -0
- package/package.json +13 -6
- package/types/Cms.d.ts +30 -0
- package/types/Cms.js +2 -0
- package/types/LocalDev.d.ts +24 -0
- package/types/LocalDev.js +2 -0
- package/types/Prompts.d.ts +0 -7
- package/types/Yargs.d.ts +8 -1
- package/lib/projects/localDev/LocalDevManagerV2.d.ts +0 -64
- package/lib/projects/localDev/LocalDevManagerV2.js +0 -345
- package/lib/prompts/installPublicAppPrompt.d.ts +0 -1
- package/lib/prompts/installPublicAppPrompt.js +0 -41
package/commands/list.js
CHANGED
|
@@ -3,11 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.describe = exports.command = void 0;
|
|
7
|
-
exports.handler = handler;
|
|
8
|
-
exports.builder = builder;
|
|
9
6
|
const chalk_1 = __importDefault(require("chalk"));
|
|
10
|
-
const commonOpts_1 = require("../lib/commonOpts");
|
|
11
7
|
const usageTracking_1 = require("../lib/usageTracking");
|
|
12
8
|
const filesystem_1 = require("../lib/filesystem");
|
|
13
9
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
@@ -16,6 +12,7 @@ const fileMapper_1 = require("@hubspot/local-dev-lib/api/fileMapper");
|
|
|
16
12
|
const constants_1 = require("../lib/constants");
|
|
17
13
|
const lang_1 = require("../lib/lang");
|
|
18
14
|
const exitCodes_1 = require("../lib/enums/exitCodes");
|
|
15
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
19
16
|
function addColorToContents(fileOrFolder) {
|
|
20
17
|
if (!(0, filesystem_1.isPathFolder)(fileOrFolder)) {
|
|
21
18
|
return chalk_1.default.reset.cyan(fileOrFolder);
|
|
@@ -42,8 +39,8 @@ function sortContents(a, b) {
|
|
|
42
39
|
}
|
|
43
40
|
return a.localeCompare(b);
|
|
44
41
|
}
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
const command = ['list [path]', 'ls [path]'];
|
|
43
|
+
const describe = (0, lang_1.i18n)(`commands.list.describe`);
|
|
47
44
|
async function handler(args) {
|
|
48
45
|
const { path, derivedAccountId } = args;
|
|
49
46
|
const directoryPath = path || '/';
|
|
@@ -83,11 +80,7 @@ async function handler(args) {
|
|
|
83
80
|
logger_1.logger.log(folderContentsOutput);
|
|
84
81
|
process.exit(exitCodes_1.EXIT_CODES.SUCCESS);
|
|
85
82
|
}
|
|
86
|
-
function
|
|
87
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
88
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
89
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
90
|
-
(0, commonOpts_1.addGlobalOptions)(yargs);
|
|
83
|
+
function cmsListBuilder(yargs) {
|
|
91
84
|
yargs.positional('path', {
|
|
92
85
|
describe: (0, lang_1.i18n)(`commands.list.positionals.path.describe`),
|
|
93
86
|
type: 'string',
|
|
@@ -95,3 +88,18 @@ function builder(yargs) {
|
|
|
95
88
|
yargs.example([['$0 list'], ['$0 list /'], ['$0 list my-modules']]);
|
|
96
89
|
return yargs;
|
|
97
90
|
}
|
|
91
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(cmsListBuilder, command, describe, {
|
|
92
|
+
useGlobalOptions: true,
|
|
93
|
+
useConfigOptions: true,
|
|
94
|
+
useAccountOptions: true,
|
|
95
|
+
useEnvironmentOptions: true,
|
|
96
|
+
});
|
|
97
|
+
const cmsListCommand = {
|
|
98
|
+
command,
|
|
99
|
+
describe,
|
|
100
|
+
handler,
|
|
101
|
+
builder,
|
|
102
|
+
};
|
|
103
|
+
exports.default = cmsListCommand;
|
|
104
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
105
|
+
module.exports = cmsListCommand;
|
package/commands/logs.d.ts
CHANGED
|
@@ -1 +1,10 @@
|
|
|
1
|
-
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, YargsCommandModule, EnvironmentArgs } from '../types/Yargs';
|
|
2
|
+
type LogsArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
3
|
+
endpoint?: string;
|
|
4
|
+
latest?: boolean;
|
|
5
|
+
compact?: boolean;
|
|
6
|
+
follow?: boolean;
|
|
7
|
+
limit?: number;
|
|
8
|
+
};
|
|
9
|
+
declare const logsCommand: YargsCommandModule<unknown, LogsArgs>;
|
|
10
|
+
export default logsCommand;
|
package/commands/logs.js
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
const { isHubSpotHttpError } = require('@hubspot/local-dev-lib/errors/index');
|
|
3
|
+
const usageTracking_1 = require("../lib/usageTracking");
|
|
4
|
+
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
5
|
+
const serverlessFunctionLogs_1 = require("../lib/ui/serverlessFunctionLogs");
|
|
6
|
+
const functions_1 = require("@hubspot/local-dev-lib/api/functions");
|
|
7
|
+
const serverlessLogs_1 = require("../lib/serverlessLogs");
|
|
8
|
+
const lang_1 = require("../lib/lang");
|
|
9
|
+
const promptUtils_1 = require("../lib/prompts/promptUtils");
|
|
10
|
+
const exitCodes_1 = require("../lib/enums/exitCodes");
|
|
11
|
+
const index_1 = require("@hubspot/local-dev-lib/errors/index");
|
|
12
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
14
13
|
const handleLogsError = (e, accountId, functionPath) => {
|
|
15
|
-
if (isHubSpotHttpError(e) && (e.status === 404 || e.status == 400)) {
|
|
16
|
-
logger.error(i18n(`commands.logs.errors.noLogsFound`, {
|
|
14
|
+
if ((0, index_1.isHubSpotHttpError)(e) && (e.status === 404 || e.status == 400)) {
|
|
15
|
+
logger_1.logger.error((0, lang_1.i18n)(`commands.logs.errors.noLogsFound`, {
|
|
17
16
|
accountId,
|
|
18
17
|
functionPath,
|
|
19
18
|
}));
|
|
@@ -21,101 +20,111 @@ const handleLogsError = (e, accountId, functionPath) => {
|
|
|
21
20
|
};
|
|
22
21
|
const endpointLog = async (accountId, functionPath, options) => {
|
|
23
22
|
const { limit, latest, follow, compact } = options;
|
|
24
|
-
const
|
|
23
|
+
const requestParams = {
|
|
25
24
|
limit,
|
|
26
25
|
latest,
|
|
27
26
|
follow,
|
|
28
|
-
compact,
|
|
29
27
|
endpoint: functionPath,
|
|
30
28
|
};
|
|
31
|
-
logger.debug(i18n(`commands.logs.gettingLogs`, {
|
|
29
|
+
logger_1.logger.debug((0, lang_1.i18n)(`commands.logs.gettingLogs`, {
|
|
32
30
|
latest,
|
|
33
31
|
functionPath,
|
|
34
32
|
}));
|
|
35
33
|
let logsResp;
|
|
36
34
|
if (follow) {
|
|
37
|
-
const tailCall = after => getFunctionLogs(accountId, functionPath, { after });
|
|
35
|
+
const tailCall = (after) => (0, functions_1.getFunctionLogs)(accountId, functionPath, { after });
|
|
38
36
|
const fetchLatest = () => {
|
|
39
37
|
try {
|
|
40
|
-
return getLatestFunctionLog(accountId, functionPath);
|
|
38
|
+
return (0, functions_1.getLatestFunctionLog)(accountId, functionPath);
|
|
41
39
|
}
|
|
42
40
|
catch (e) {
|
|
43
41
|
handleLogsError(e, accountId, functionPath);
|
|
42
|
+
return Promise.reject(e);
|
|
44
43
|
}
|
|
45
44
|
};
|
|
46
|
-
await tailLogs(accountId, functionPath, fetchLatest, tailCall, compact);
|
|
45
|
+
await (0, serverlessLogs_1.tailLogs)(accountId, functionPath, fetchLatest, tailCall, compact);
|
|
47
46
|
}
|
|
48
47
|
else if (latest) {
|
|
49
48
|
try {
|
|
50
|
-
const { data } = await getLatestFunctionLog(accountId, functionPath);
|
|
49
|
+
const { data } = await (0, functions_1.getLatestFunctionLog)(accountId, functionPath);
|
|
51
50
|
logsResp = data;
|
|
52
51
|
}
|
|
53
52
|
catch (e) {
|
|
54
53
|
handleLogsError(e, accountId, functionPath);
|
|
55
|
-
process.exit(EXIT_CODES.ERROR);
|
|
54
|
+
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
56
55
|
}
|
|
57
56
|
}
|
|
58
57
|
else {
|
|
59
58
|
try {
|
|
60
|
-
const { data } = await getFunctionLogs(accountId, functionPath,
|
|
59
|
+
const { data } = await (0, functions_1.getFunctionLogs)(accountId, functionPath, requestParams);
|
|
61
60
|
logsResp = data;
|
|
62
61
|
}
|
|
63
62
|
catch (e) {
|
|
64
63
|
handleLogsError(e, accountId, functionPath);
|
|
65
|
-
process.exit(EXIT_CODES.ERROR);
|
|
64
|
+
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
66
65
|
}
|
|
67
66
|
}
|
|
68
67
|
if (logsResp) {
|
|
69
|
-
return outputLogs(logsResp,
|
|
68
|
+
return (0, serverlessFunctionLogs_1.outputLogs)(logsResp, { compact });
|
|
70
69
|
}
|
|
71
70
|
};
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
71
|
+
const command = 'logs [endpoint]';
|
|
72
|
+
const describe = (0, lang_1.i18n)(`commands.logs.describe`);
|
|
73
|
+
const handler = async (options) => {
|
|
75
74
|
const { endpoint: endpointArgValue, latest, derivedAccountId } = options;
|
|
76
|
-
trackCommandUsage('logs', { latest }, derivedAccountId);
|
|
77
|
-
const { endpointPromptValue } = await promptUser({
|
|
75
|
+
(0, usageTracking_1.trackCommandUsage)('logs', latest ? { action: 'latest' } : {}, derivedAccountId);
|
|
76
|
+
const { endpointPromptValue } = await (0, promptUtils_1.promptUser)({
|
|
78
77
|
name: 'endpointPromptValue',
|
|
79
|
-
message: i18n(`commands.logs.endpointPrompt`),
|
|
78
|
+
message: (0, lang_1.i18n)(`commands.logs.endpointPrompt`),
|
|
80
79
|
when: !endpointArgValue,
|
|
81
80
|
});
|
|
82
|
-
endpointLog(derivedAccountId, endpointArgValue || endpointPromptValue, options);
|
|
81
|
+
await endpointLog(derivedAccountId, endpointArgValue || endpointPromptValue, options);
|
|
83
82
|
};
|
|
84
|
-
|
|
83
|
+
function logsBuilder(yargs) {
|
|
85
84
|
yargs.positional('endpoint', {
|
|
86
|
-
describe: i18n(`commands.logs.positionals.endpoint.describe`),
|
|
85
|
+
describe: (0, lang_1.i18n)(`commands.logs.positionals.endpoint.describe`),
|
|
87
86
|
type: 'string',
|
|
88
87
|
});
|
|
89
88
|
yargs
|
|
90
89
|
.options({
|
|
91
90
|
latest: {
|
|
92
91
|
alias: 'l',
|
|
93
|
-
describe: i18n(`commands.logs.options.latest.describe`),
|
|
92
|
+
describe: (0, lang_1.i18n)(`commands.logs.options.latest.describe`),
|
|
94
93
|
type: 'boolean',
|
|
95
94
|
},
|
|
96
95
|
compact: {
|
|
97
|
-
describe: i18n(`commands.logs.options.compact.describe`),
|
|
96
|
+
describe: (0, lang_1.i18n)(`commands.logs.options.compact.describe`),
|
|
98
97
|
type: 'boolean',
|
|
99
98
|
},
|
|
100
99
|
follow: {
|
|
101
100
|
alias: ['f'],
|
|
102
|
-
describe: i18n(`commands.logs.options.follow.describe`),
|
|
101
|
+
describe: (0, lang_1.i18n)(`commands.logs.options.follow.describe`),
|
|
103
102
|
type: 'boolean',
|
|
104
103
|
},
|
|
105
104
|
limit: {
|
|
106
|
-
describe: i18n(`commands.logs.options.limit.describe`),
|
|
105
|
+
describe: (0, lang_1.i18n)(`commands.logs.options.limit.describe`),
|
|
107
106
|
type: 'number',
|
|
108
107
|
},
|
|
109
108
|
})
|
|
110
109
|
.conflicts('follow', 'limit');
|
|
111
110
|
yargs.example([
|
|
112
|
-
['$0 logs my-endpoint', i18n(`commands.logs.examples.default`)],
|
|
113
|
-
['$0 logs my-endpoint --limit=10', i18n(`commands.logs.examples.limit`)],
|
|
114
|
-
['$0 logs my-endpoint --follow', i18n(`commands.logs.examples.follow`)],
|
|
111
|
+
['$0 logs my-endpoint', (0, lang_1.i18n)(`commands.logs.examples.default`)],
|
|
112
|
+
['$0 logs my-endpoint --limit=10', (0, lang_1.i18n)(`commands.logs.examples.limit`)],
|
|
113
|
+
['$0 logs my-endpoint --follow', (0, lang_1.i18n)(`commands.logs.examples.follow`)],
|
|
115
114
|
]);
|
|
116
|
-
addConfigOptions(yargs);
|
|
117
|
-
addAccountOptions(yargs);
|
|
118
|
-
addUseEnvironmentOptions(yargs);
|
|
119
|
-
addGlobalOptions(yargs);
|
|
120
115
|
return yargs;
|
|
116
|
+
}
|
|
117
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(logsBuilder, command, describe, {
|
|
118
|
+
useGlobalOptions: true,
|
|
119
|
+
useConfigOptions: true,
|
|
120
|
+
useAccountOptions: true,
|
|
121
|
+
useEnvironmentOptions: true,
|
|
122
|
+
});
|
|
123
|
+
const logsCommand = {
|
|
124
|
+
command,
|
|
125
|
+
describe,
|
|
126
|
+
builder,
|
|
127
|
+
handler,
|
|
121
128
|
};
|
|
129
|
+
exports.default = logsCommand;
|
|
130
|
+
module.exports = logsCommand;
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
+
type MarketplaceValidateArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
|
|
3
|
+
src: string;
|
|
4
|
+
};
|
|
5
|
+
declare const marketplaceValidateCommand: YargsCommandModule<unknown, MarketplaceValidateArgs>;
|
|
6
|
+
export default marketplaceValidateCommand;
|
|
@@ -1,38 +1,50 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
const { src, derivedAccountId } =
|
|
13
|
-
trackCommandUsage('validate',
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
text: i18n(`commands.module.subcommands.marketplaceValidate.logs.validatingModule`, {
|
|
6
|
+
const SpinniesManager_1 = __importDefault(require("../../lib/ui/SpinniesManager"));
|
|
7
|
+
const usageTracking_1 = require("../../lib/usageTracking");
|
|
8
|
+
const marketplaceValidate_1 = require("../../lib/marketplaceValidate");
|
|
9
|
+
const lang_1 = require("../../lib/lang");
|
|
10
|
+
const exitCodes_1 = require("../../lib/enums/exitCodes");
|
|
11
|
+
const yargsUtils_1 = require("../../lib/yargsUtils");
|
|
12
|
+
const command = 'marketplace-validate <src>';
|
|
13
|
+
const describe = (0, lang_1.i18n)(`commands.module.subcommands.marketplaceValidate.describe`);
|
|
14
|
+
async function handler(args) {
|
|
15
|
+
const { src, derivedAccountId } = args;
|
|
16
|
+
(0, usageTracking_1.trackCommandUsage)('validate', undefined, derivedAccountId);
|
|
17
|
+
SpinniesManager_1.default.init();
|
|
18
|
+
SpinniesManager_1.default.add('marketplaceValidation', {
|
|
19
|
+
text: (0, lang_1.i18n)(`commands.module.subcommands.marketplaceValidate.logs.validatingModule`, {
|
|
17
20
|
path: src,
|
|
18
21
|
}),
|
|
19
22
|
});
|
|
20
23
|
const assetType = 'MODULE';
|
|
21
|
-
const validationId = await kickOffValidation(derivedAccountId, assetType, src);
|
|
22
|
-
await pollForValidationFinish(derivedAccountId, validationId);
|
|
23
|
-
|
|
24
|
-
const validationResults = await fetchValidationResults(derivedAccountId, validationId);
|
|
25
|
-
processValidationErrors('commands.module.subcommands.marketplaceValidate', validationResults);
|
|
26
|
-
displayValidationResults('commands.module.subcommands.marketplaceValidate', validationResults);
|
|
27
|
-
process.exit();
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
addConfigOptions(yargs);
|
|
31
|
-
addAccountOptions(yargs);
|
|
32
|
-
addUseEnvironmentOptions(yargs);
|
|
24
|
+
const validationId = await (0, marketplaceValidate_1.kickOffValidation)(derivedAccountId, assetType, src);
|
|
25
|
+
await (0, marketplaceValidate_1.pollForValidationFinish)(derivedAccountId, validationId);
|
|
26
|
+
SpinniesManager_1.default.remove('marketplaceValidation');
|
|
27
|
+
const validationResults = await (0, marketplaceValidate_1.fetchValidationResults)(derivedAccountId, validationId);
|
|
28
|
+
(0, marketplaceValidate_1.processValidationErrors)('commands.module.subcommands.marketplaceValidate', validationResults);
|
|
29
|
+
(0, marketplaceValidate_1.displayValidationResults)('commands.module.subcommands.marketplaceValidate', validationResults);
|
|
30
|
+
process.exit(exitCodes_1.EXIT_CODES.SUCCESS);
|
|
31
|
+
}
|
|
32
|
+
function marketplaceValidateBuilder(yargs) {
|
|
33
33
|
yargs.positional('src', {
|
|
34
|
-
describe: i18n(`commands.module.subcommands.marketplaceValidate.positionals.src.describe`),
|
|
34
|
+
describe: (0, lang_1.i18n)(`commands.module.subcommands.marketplaceValidate.positionals.src.describe`),
|
|
35
35
|
type: 'string',
|
|
36
36
|
});
|
|
37
37
|
return yargs;
|
|
38
|
+
}
|
|
39
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(marketplaceValidateBuilder, command, describe, {
|
|
40
|
+
useConfigOptions: true,
|
|
41
|
+
useAccountOptions: true,
|
|
42
|
+
useEnvironmentOptions: true,
|
|
43
|
+
});
|
|
44
|
+
const marketplaceValidateCommand = {
|
|
45
|
+
command,
|
|
46
|
+
describe,
|
|
47
|
+
handler,
|
|
48
|
+
builder,
|
|
38
49
|
};
|
|
50
|
+
exports.default = marketplaceValidateCommand;
|
package/commands/module.d.ts
CHANGED
package/commands/module.js
CHANGED
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
2
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
addConfigOptions(yargs);
|
|
10
|
-
addAccountOptions(yargs);
|
|
11
|
-
addGlobalOptions(yargs);
|
|
12
|
-
yargs.command(marketplaceValidate).demandCommand(1, '');
|
|
6
|
+
const marketplace_validate_1 = __importDefault(require("./module/marketplace-validate"));
|
|
7
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
8
|
+
const command = 'module';
|
|
9
|
+
const describe = undefined;
|
|
10
|
+
function moduleBuilder(yargs) {
|
|
11
|
+
yargs.command(marketplace_validate_1.default).demandCommand(1, '');
|
|
13
12
|
return yargs;
|
|
13
|
+
}
|
|
14
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(moduleBuilder, command, describe, {
|
|
15
|
+
useGlobalOptions: true,
|
|
16
|
+
useConfigOptions: true,
|
|
17
|
+
useAccountOptions: true,
|
|
18
|
+
});
|
|
19
|
+
const moduleCommand = {
|
|
20
|
+
command,
|
|
21
|
+
describe,
|
|
22
|
+
builder,
|
|
23
|
+
handler: () => { },
|
|
14
24
|
};
|
|
25
|
+
exports.default = moduleCommand;
|
|
26
|
+
module.exports = moduleCommand;
|
package/commands/mv.d.ts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CommonArgs, ConfigArgs, EnvironmentArgs } from '../types/Yargs';
|
|
3
|
-
export declare const command = "mv <srcPath> <destPath>";
|
|
4
|
-
export declare const describe: string;
|
|
1
|
+
import { CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../types/Yargs';
|
|
5
2
|
type MvArgs = CommonArgs & ConfigArgs & EnvironmentArgs & {
|
|
6
3
|
srcPath: string;
|
|
7
4
|
destPath: string;
|
|
8
5
|
};
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
export {};
|
|
6
|
+
declare const cmsMvCommand: YargsCommandModule<unknown, MvArgs>;
|
|
7
|
+
export default cmsMvCommand;
|
package/commands/mv.js
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.describe = exports.command = void 0;
|
|
4
|
-
exports.handler = handler;
|
|
5
|
-
exports.builder = builder;
|
|
6
3
|
const logger_1 = require("@hubspot/local-dev-lib/logger");
|
|
7
4
|
const fileMapper_1 = require("@hubspot/local-dev-lib/api/fileMapper");
|
|
8
5
|
const index_1 = require("@hubspot/local-dev-lib/errors/index");
|
|
9
6
|
const index_2 = require("../lib/errorHandlers/index");
|
|
10
|
-
const commonOpts_1 = require("../lib/commonOpts");
|
|
11
7
|
const usageTracking_1 = require("../lib/usageTracking");
|
|
12
8
|
const filesystem_1 = require("../lib/filesystem");
|
|
13
9
|
const lang_1 = require("../lib/lang");
|
|
14
10
|
const ui_1 = require("../lib/ui");
|
|
11
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
15
12
|
function getCorrectedDestPath(srcPath, destPath) {
|
|
16
13
|
if (!(0, filesystem_1.isPathFolder)(srcPath)) {
|
|
17
14
|
return destPath;
|
|
@@ -19,8 +16,8 @@ function getCorrectedDestPath(srcPath, destPath) {
|
|
|
19
16
|
// Makes sure that nested folders are moved independently
|
|
20
17
|
return `${destPath}/${srcPath.split('/').pop()}`;
|
|
21
18
|
}
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
const command = 'mv <srcPath> <destPath>';
|
|
20
|
+
const describe = (0, ui_1.uiBetaTag)((0, lang_1.i18n)(`commands.mv.describe`), false);
|
|
24
21
|
async function handler(args) {
|
|
25
22
|
const { srcPath, destPath, derivedAccountId } = args;
|
|
26
23
|
(0, usageTracking_1.trackCommandUsage)('mv', undefined, derivedAccountId);
|
|
@@ -51,11 +48,7 @@ async function handler(args) {
|
|
|
51
48
|
}
|
|
52
49
|
}
|
|
53
50
|
}
|
|
54
|
-
function
|
|
55
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
56
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
57
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
58
|
-
(0, commonOpts_1.addGlobalOptions)(yargs);
|
|
51
|
+
function cmsMvBuilder(yargs) {
|
|
59
52
|
yargs.positional('srcPath', {
|
|
60
53
|
describe: 'Remote hubspot path',
|
|
61
54
|
type: 'string',
|
|
@@ -66,3 +59,18 @@ function builder(yargs) {
|
|
|
66
59
|
});
|
|
67
60
|
return yargs;
|
|
68
61
|
}
|
|
62
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(cmsMvBuilder, command, describe, {
|
|
63
|
+
useGlobalOptions: true,
|
|
64
|
+
useConfigOptions: true,
|
|
65
|
+
useAccountOptions: true,
|
|
66
|
+
useEnvironmentOptions: true,
|
|
67
|
+
});
|
|
68
|
+
const cmsMvCommand = {
|
|
69
|
+
command,
|
|
70
|
+
describe,
|
|
71
|
+
handler,
|
|
72
|
+
builder,
|
|
73
|
+
};
|
|
74
|
+
exports.default = cmsMvCommand;
|
|
75
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
76
|
+
module.exports = cmsMvCommand;
|
package/commands/open.d.ts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { CommonArgs, ConfigArgs, EnvironmentArgs, AccountArgs } from '../types/Yargs';
|
|
3
|
-
export declare const command = "open [shortcut]";
|
|
4
|
-
export declare const describe: string;
|
|
1
|
+
import { CommonArgs, ConfigArgs, EnvironmentArgs, AccountArgs, YargsCommandModule } from '../types/Yargs';
|
|
5
2
|
type OpenArgs = CommonArgs & ConfigArgs & EnvironmentArgs & AccountArgs & {
|
|
6
3
|
shortcut?: string;
|
|
7
4
|
list?: boolean;
|
|
8
5
|
};
|
|
9
|
-
|
|
10
|
-
export
|
|
11
|
-
export {};
|
|
6
|
+
declare const openCommand: YargsCommandModule<unknown, OpenArgs>;
|
|
7
|
+
export default openCommand;
|
package/commands/open.js
CHANGED
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.describe = exports.command = void 0;
|
|
4
|
-
exports.handler = handler;
|
|
5
|
-
exports.builder = builder;
|
|
6
|
-
const commonOpts_1 = require("../lib/commonOpts");
|
|
7
3
|
const usageTracking_1 = require("../lib/usageTracking");
|
|
8
4
|
const links_1 = require("../lib/links");
|
|
9
5
|
const promptUtils_1 = require("../lib/prompts/promptUtils");
|
|
10
6
|
const lang_1 = require("../lib/lang");
|
|
11
7
|
const exitCodes_1 = require("../lib/enums/exitCodes");
|
|
8
|
+
const yargsUtils_1 = require("../lib/yargsUtils");
|
|
12
9
|
const separator = ' => ';
|
|
13
10
|
async function createListPrompt(accountId) {
|
|
14
11
|
return (0, promptUtils_1.promptUser)([
|
|
@@ -22,8 +19,8 @@ async function createListPrompt(accountId) {
|
|
|
22
19
|
},
|
|
23
20
|
]);
|
|
24
21
|
}
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
const command = 'open [shortcut]';
|
|
23
|
+
const describe = (0, lang_1.i18n)('commands.open.describe');
|
|
27
24
|
async function handler(args) {
|
|
28
25
|
const { shortcut, list, derivedAccountId } = args;
|
|
29
26
|
(0, usageTracking_1.trackCommandUsage)('open', undefined, derivedAccountId);
|
|
@@ -39,11 +36,7 @@ async function handler(args) {
|
|
|
39
36
|
}
|
|
40
37
|
process.exit(exitCodes_1.EXIT_CODES.SUCCESS);
|
|
41
38
|
}
|
|
42
|
-
function
|
|
43
|
-
(0, commonOpts_1.addConfigOptions)(yargs);
|
|
44
|
-
(0, commonOpts_1.addAccountOptions)(yargs);
|
|
45
|
-
(0, commonOpts_1.addUseEnvironmentOptions)(yargs);
|
|
46
|
-
(0, commonOpts_1.addGlobalOptions)(yargs);
|
|
39
|
+
function openBuilder(yargs) {
|
|
47
40
|
yargs.positional('[shortcut]', {
|
|
48
41
|
describe: (0, lang_1.i18n)('commands.open.positionals.shortcut.describe'),
|
|
49
42
|
type: 'string',
|
|
@@ -62,3 +55,18 @@ function builder(yargs) {
|
|
|
62
55
|
]);
|
|
63
56
|
return yargs;
|
|
64
57
|
}
|
|
58
|
+
const builder = (0, yargsUtils_1.makeYargsBuilder)(openBuilder, command, describe, {
|
|
59
|
+
useGlobalOptions: true,
|
|
60
|
+
useConfigOptions: true,
|
|
61
|
+
useAccountOptions: true,
|
|
62
|
+
useEnvironmentOptions: true,
|
|
63
|
+
});
|
|
64
|
+
const openCommand = {
|
|
65
|
+
command,
|
|
66
|
+
describe,
|
|
67
|
+
handler,
|
|
68
|
+
builder,
|
|
69
|
+
};
|
|
70
|
+
exports.default = openCommand;
|
|
71
|
+
// TODO Remove this legacy export once we've migrated all commands to TS
|
|
72
|
+
module.exports = openCommand;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AccountArgs, CommonArgs, ConfigArgs, EnvironmentArgs, YargsCommandModule } from '../../types/Yargs';
|
|
2
|
-
|
|
2
|
+
type CloneAppArgs = ConfigArgs & EnvironmentArgs & AccountArgs & CommonArgs & {
|
|
3
3
|
dest: string;
|
|
4
4
|
appId: number;
|
|
5
5
|
};
|
|
@@ -7,7 +7,7 @@ const path_1 = __importDefault(require("path"));
|
|
|
7
7
|
const fs_1 = __importDefault(require("fs"));
|
|
8
8
|
const usageTracking_1 = require("../../lib/usageTracking");
|
|
9
9
|
const lang_1 = require("../../lib/lang");
|
|
10
|
-
const
|
|
10
|
+
const selectPublicAppForMigrationPrompt_1 = require("../../lib/prompts/selectPublicAppForMigrationPrompt");
|
|
11
11
|
const createProjectPrompt_1 = require("../../lib/prompts/createProjectPrompt");
|
|
12
12
|
const polling_1 = require("../../lib/polling");
|
|
13
13
|
const errorHandlers_1 = require("../../lib/errorHandlers");
|
|
@@ -46,7 +46,7 @@ async function handler(args) {
|
|
|
46
46
|
try {
|
|
47
47
|
appId = args.appId;
|
|
48
48
|
if (!appId) {
|
|
49
|
-
const appIdResponse = await (0,
|
|
49
|
+
const appIdResponse = await (0, selectPublicAppForMigrationPrompt_1.selectPublicAppForMigrationPrompt)({
|
|
50
50
|
accountId: derivedAccountId,
|
|
51
51
|
accountName,
|
|
52
52
|
isMigratingApp: false,
|
|
@@ -34,17 +34,17 @@ async function handler(args) {
|
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
36
|
catch (err) {
|
|
37
|
-
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.
|
|
37
|
+
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.errors.failedToFetchProjectList`));
|
|
38
38
|
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
if (!templateSource || !templateSource.includes('/')) {
|
|
42
|
-
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.
|
|
42
|
+
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.errors.invalidTemplateSource`));
|
|
43
43
|
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
44
44
|
}
|
|
45
45
|
const projectTemplates = await (0, create_1.getProjectTemplateListFromRepo)(templateSource, latestRepoReleaseTag || constants_1.DEFAULT_PROJECT_TEMPLATE_BRANCH);
|
|
46
46
|
if (!projectTemplates.length) {
|
|
47
|
-
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.
|
|
47
|
+
logger_1.logger.error((0, lang_1.i18n)(`commands.project.subcommands.create.errors.failedToFetchProjectList`));
|
|
48
48
|
process.exit(exitCodes_1.EXIT_CODES.ERROR);
|
|
49
49
|
}
|
|
50
50
|
const createProjectPromptResponse = await (0, createProjectPrompt_1.createProjectPrompt)(args, projectTemplates);
|
|
@@ -3,6 +3,7 @@ export type ProjectDeployArgs = CommonArgs & ConfigArgs & AccountArgs & Environm
|
|
|
3
3
|
project?: string;
|
|
4
4
|
build?: number;
|
|
5
5
|
buildId?: number;
|
|
6
|
+
profile?: string;
|
|
6
7
|
};
|
|
7
8
|
declare const projectDeployCommand: YargsCommandModule<unknown, ProjectDeployArgs>;
|
|
8
9
|
export default projectDeployCommand;
|