@hubspot/cli 8.3.0-beta.1 → 8.4.0-beta.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 +2 -0
- package/commands/account/auth.js +12 -22
- package/commands/account/clean.js +5 -6
- package/commands/account/createOverride.js +7 -7
- package/commands/account/info.js +2 -1
- package/commands/account/list.js +3 -5
- package/commands/account/remove.js +2 -3
- package/commands/account/removeOverride.js +8 -10
- package/commands/account/rename.js +5 -6
- package/commands/account/use.js +8 -19
- package/commands/api.d.ts +10 -0
- package/commands/api.js +164 -0
- package/commands/app/migrate.js +8 -8
- package/commands/app/secret/add.js +6 -7
- package/commands/app/secret/delete.js +9 -10
- package/commands/app/secret/list.js +6 -7
- package/commands/app/secret/update.js +8 -9
- package/commands/auth.js +12 -12
- package/commands/cms/app/create.js +9 -5
- package/commands/cms/convertFields.js +8 -8
- package/commands/cms/delete.js +2 -3
- package/commands/cms/fetch.js +7 -7
- package/commands/cms/function/create.js +9 -5
- package/commands/cms/function/deploy.js +2 -3
- package/commands/cms/function/list.js +11 -7
- package/commands/cms/function/logs.js +17 -23
- package/commands/cms/function/server.js +2 -3
- package/commands/cms/getReactModule.js +7 -8
- package/commands/cms/lighthouseScore.js +25 -24
- package/commands/cms/lint.js +4 -5
- package/commands/cms/list.js +5 -6
- package/commands/cms/module/create.js +9 -5
- package/commands/cms/module/marketplace-validate.js +7 -8
- package/commands/cms/mv.js +2 -3
- package/commands/cms/template/create.js +10 -6
- package/commands/cms/theme/create.js +5 -5
- package/commands/cms/theme/generate-selectors.js +5 -4
- package/commands/cms/theme/marketplace-validate.js +8 -9
- package/commands/cms/theme/preview.js +16 -8
- package/commands/cms/upload.js +15 -12
- package/commands/cms/watch.js +5 -5
- package/commands/cms/webpack/create.js +5 -5
- package/commands/completion.js +3 -5
- package/commands/config/migrate.js +6 -7
- package/commands/config/set.js +5 -6
- package/commands/customObject/create.js +4 -5
- package/commands/customObject/createSchema.js +4 -5
- package/commands/customObject/deleteSchema.js +4 -5
- package/commands/customObject/fetchAllSchemas.js +2 -3
- package/commands/customObject/fetchSchema.js +2 -3
- package/commands/customObject/listSchemas.js +2 -3
- package/commands/customObject/updateSchema.js +4 -5
- package/commands/doctor.js +8 -8
- package/commands/feedback.js +6 -4
- package/commands/filemanager/fetch.js +5 -6
- package/commands/filemanager/upload.js +5 -5
- package/commands/getStarted.js +14 -16
- package/commands/hubdb/clear.js +5 -6
- package/commands/hubdb/create.js +4 -5
- package/commands/hubdb/delete.js +8 -9
- package/commands/hubdb/fetch.js +5 -6
- package/commands/hubdb/list.js +16 -14
- package/commands/init.js +14 -17
- package/commands/mcp/setup.js +5 -6
- package/commands/mcp/start.js +2 -3
- package/commands/open.js +4 -5
- package/commands/project/add.js +10 -5
- package/commands/project/create.js +10 -10
- package/commands/project/delete.d.ts +7 -0
- package/commands/project/delete.js +74 -0
- package/commands/project/deploy.js +36 -34
- package/commands/project/dev/deprecatedFlow.js +42 -15
- package/commands/project/dev/index.d.ts +3 -3
- package/commands/project/dev/index.js +24 -30
- package/commands/project/dev/unifiedFlow.js +37 -14
- package/commands/project/download.js +10 -11
- package/commands/project/info.d.ts +4 -0
- package/commands/project/info.js +67 -0
- package/commands/project/installDeps.js +9 -6
- package/commands/project/lint.js +11 -8
- package/commands/project/list.js +14 -14
- package/commands/project/listBuilds.js +8 -6
- package/commands/project/logs.js +5 -6
- package/commands/project/migrate.js +8 -8
- package/commands/project/open.js +5 -6
- package/commands/project/profile/add.js +12 -8
- package/commands/project/profile/delete.js +15 -11
- package/commands/project/updateDeps.js +9 -6
- package/commands/project/upload.js +31 -17
- package/commands/project/validate.js +11 -11
- package/commands/project/watch.js +20 -20
- package/commands/project.js +4 -0
- package/commands/sandbox/create.js +15 -15
- package/commands/sandbox/delete.js +13 -14
- package/commands/secret/addSecret.js +6 -7
- package/commands/secret/deleteSecret.js +5 -6
- package/commands/secret/listSecret.js +2 -3
- package/commands/secret/updateSecret.js +4 -5
- package/commands/testAccount/create.d.ts +1 -1
- package/commands/testAccount/create.js +20 -16
- package/commands/testAccount/createConfig.js +7 -8
- package/commands/testAccount/delete.js +27 -18
- package/commands/testAccount/importData.js +6 -7
- package/commands/upgrade.js +9 -10
- package/lang/en.d.ts +114 -5
- package/lang/en.js +111 -5
- package/lib/accountAuth.js +2 -2
- package/lib/buildAccount.js +3 -3
- package/lib/doctor/Diagnosis.js +5 -5
- package/lib/errorHandlers/index.js +4 -3
- package/lib/errorHandlers/suppressError.js +4 -0
- package/lib/errors/PromptExitError.d.ts +4 -2
- package/lib/errors/PromptExitError.js +3 -0
- package/lib/process.d.ts +1 -1
- package/lib/process.js +10 -3
- package/lib/projects/delete.d.ts +13 -0
- package/lib/projects/delete.js +193 -0
- package/lib/projects/localDev/AppDevModeInterface.js +11 -11
- package/lib/projects/localDev/DevServerManager_DEPRECATED.d.ts +3 -1
- package/lib/projects/localDev/DevServerManager_DEPRECATED.js +2 -2
- package/lib/projects/localDev/DevSessionManager.d.ts +6 -3
- package/lib/projects/localDev/DevSessionManager.js +31 -19
- package/lib/projects/localDev/LocalDevManager_DEPRECATED.d.ts +3 -0
- package/lib/projects/localDev/LocalDevManager_DEPRECATED.js +16 -12
- package/lib/projects/localDev/LocalDevProcess.js +6 -5
- package/lib/projects/localDev/LocalDevState.d.ts +3 -2
- package/lib/projects/localDev/LocalDevState.js +3 -1
- package/lib/projects/localDev/helpers/account.d.ts +4 -3
- package/lib/projects/localDev/helpers/account.js +16 -19
- package/lib/projects/localDev/helpers/process.d.ts +1 -1
- package/lib/projects/localDev/helpers/process.js +4 -10
- package/lib/projects/localDev/helpers/project.d.ts +4 -3
- package/lib/projects/localDev/helpers/project.js +31 -15
- package/lib/projects/projectInfo.d.ts +5 -0
- package/lib/projects/projectInfo.js +82 -0
- package/lib/projects/projectProfiles.d.ts +1 -2
- package/lib/projects/projectProfiles.js +5 -17
- package/lib/prompts/createApiSamplePrompt.js +4 -0
- package/lib/prompts/projectProfilePrompt.d.ts +2 -0
- package/lib/prompts/projectProfilePrompt.js +46 -0
- package/lib/prompts/promptUtils.js +3 -2
- package/lib/prompts/selectHubDBTablePrompt.js +2 -2
- package/lib/prompts/selectPublicAppForMigrationPrompt.js +2 -2
- package/lib/theme/cmsDevServerProcess.d.ts +2 -0
- package/lib/theme/cmsDevServerProcess.js +7 -6
- package/lib/ui/SpinniesManager.d.ts +1 -0
- package/lib/ui/SpinniesManager.js +20 -6
- package/lib/ui/spinniesUtils.d.ts +0 -1
- package/lib/ui/spinniesUtils.js +6 -16
- package/lib/usageTracking.d.ts +3 -4
- package/lib/yargs/makeYargsBuilder.d.ts +13 -0
- package/lib/yargs/makeYargsBuilder.js +33 -0
- package/lib/yargs/makeYargsHandlerWithUsageTracking.d.ts +3 -0
- package/lib/yargs/makeYargsHandlerWithUsageTracking.js +95 -0
- package/lib/yargs/strictEnforceBoolean.d.ts +1 -0
- package/lib/yargs/strictEnforceBoolean.js +13 -0
- package/lib/yargsUtils.d.ts +3 -16
- package/lib/yargsUtils.js +3 -48
- package/package.json +9 -4
- package/types/LocalDev.d.ts +5 -0
- package/types/Projects.d.ts +19 -0
- package/types/Yargs.d.ts +18 -1
- package/api/__tests__/migrate.test.d.ts +0 -1
- package/api/__tests__/migrate.test.js +0 -199
- package/commands/__tests__/account.test.d.ts +0 -1
- package/commands/__tests__/account.test.js +0 -69
- package/commands/__tests__/auth.test.d.ts +0 -1
- package/commands/__tests__/auth.test.js +0 -43
- package/commands/__tests__/cms.test.d.ts +0 -1
- package/commands/__tests__/cms.test.js +0 -87
- package/commands/__tests__/config.test.d.ts +0 -1
- package/commands/__tests__/config.test.js +0 -44
- package/commands/__tests__/customObject.test.d.ts +0 -1
- package/commands/__tests__/customObject.test.js +0 -68
- package/commands/__tests__/doctor.test.d.ts +0 -1
- package/commands/__tests__/doctor.test.js +0 -132
- package/commands/__tests__/feedback.test.d.ts +0 -1
- package/commands/__tests__/feedback.test.js +0 -24
- package/commands/__tests__/filemanager.test.d.ts +0 -1
- package/commands/__tests__/filemanager.test.js +0 -45
- package/commands/__tests__/getStarted.test.d.ts +0 -1
- package/commands/__tests__/getStarted.test.js +0 -173
- package/commands/__tests__/hubdb.test.d.ts +0 -1
- package/commands/__tests__/hubdb.test.js +0 -50
- package/commands/__tests__/init.test.d.ts +0 -1
- package/commands/__tests__/init.test.js +0 -42
- package/commands/__tests__/mcp.test.d.ts +0 -1
- package/commands/__tests__/mcp.test.js +0 -46
- package/commands/__tests__/open.test.d.ts +0 -1
- package/commands/__tests__/open.test.js +0 -58
- package/commands/__tests__/project.test.d.ts +0 -1
- package/commands/__tests__/project.test.js +0 -125
- package/commands/__tests__/sandbox.test.d.ts +0 -1
- package/commands/__tests__/sandbox.test.js +0 -44
- package/commands/__tests__/secret.test.d.ts +0 -1
- package/commands/__tests__/secret.test.js +0 -49
- package/commands/__tests__/testAccount.test.d.ts +0 -1
- package/commands/__tests__/testAccount.test.js +0 -57
- package/commands/__tests__/upgrade.test.d.ts +0 -1
- package/commands/__tests__/upgrade.test.js +0 -309
- package/commands/account/__tests__/auth.test.d.ts +0 -1
- package/commands/account/__tests__/auth.test.js +0 -206
- package/commands/account/__tests__/clean.test.d.ts +0 -1
- package/commands/account/__tests__/clean.test.js +0 -28
- package/commands/account/__tests__/createOverride.test.d.ts +0 -1
- package/commands/account/__tests__/createOverride.test.js +0 -32
- package/commands/account/__tests__/info.test.d.ts +0 -1
- package/commands/account/__tests__/info.test.js +0 -28
- package/commands/account/__tests__/list.test.d.ts +0 -1
- package/commands/account/__tests__/list.test.js +0 -153
- package/commands/account/__tests__/remove.test.d.ts +0 -1
- package/commands/account/__tests__/remove.test.js +0 -36
- package/commands/account/__tests__/removeOverride.d.ts +0 -1
- package/commands/account/__tests__/removeOverride.js +0 -25
- package/commands/account/__tests__/rename.test.d.ts +0 -1
- package/commands/account/__tests__/rename.test.js +0 -82
- package/commands/account/__tests__/use.test.d.ts +0 -1
- package/commands/account/__tests__/use.test.js +0 -170
- package/commands/app/__tests__/migrate.test.d.ts +0 -1
- package/commands/app/__tests__/migrate.test.js +0 -111
- package/commands/app/secret/__tests__/add.test.d.ts +0 -1
- package/commands/app/secret/__tests__/add.test.js +0 -140
- package/commands/app/secret/__tests__/delete.test.d.ts +0 -1
- package/commands/app/secret/__tests__/delete.test.js +0 -28
- package/commands/app/secret/__tests__/list.test.d.ts +0 -1
- package/commands/app/secret/__tests__/list.test.js +0 -25
- package/commands/app/secret/__tests__/update.test.d.ts +0 -1
- package/commands/app/secret/__tests__/update.test.js +0 -28
- package/commands/cms/__tests__/delete.test.d.ts +0 -1
- package/commands/cms/__tests__/delete.test.js +0 -39
- package/commands/cms/__tests__/fetch.test.d.ts +0 -1
- package/commands/cms/__tests__/fetch.test.js +0 -156
- package/commands/cms/__tests__/function.test.d.ts +0 -1
- package/commands/cms/__tests__/function.test.js +0 -50
- package/commands/cms/__tests__/lint.test.d.ts +0 -1
- package/commands/cms/__tests__/lint.test.js +0 -33
- package/commands/cms/__tests__/list.test.d.ts +0 -1
- package/commands/cms/__tests__/list.test.js +0 -42
- package/commands/cms/__tests__/module.test.d.ts +0 -1
- package/commands/cms/__tests__/module.test.js +0 -45
- package/commands/cms/__tests__/mv.test.d.ts +0 -1
- package/commands/cms/__tests__/mv.test.js +0 -46
- package/commands/cms/__tests__/theme.test.d.ts +0 -1
- package/commands/cms/__tests__/theme.test.js +0 -54
- package/commands/cms/__tests__/upload.test.d.ts +0 -1
- package/commands/cms/__tests__/upload.test.js +0 -312
- package/commands/cms/__tests__/watch.test.d.ts +0 -1
- package/commands/cms/__tests__/watch.test.js +0 -204
- package/commands/cms/function/__tests__/logs.test.d.ts +0 -1
- package/commands/cms/function/__tests__/logs.test.js +0 -70
- package/commands/cms/theme/__tests__/generate-selectors.test.d.ts +0 -1
- package/commands/cms/theme/__tests__/generate-selectors.test.js +0 -28
- package/commands/cms/theme/__tests__/marketplace-validate.test.d.ts +0 -1
- package/commands/cms/theme/__tests__/marketplace-validate.test.js +0 -36
- package/commands/cms/theme/__tests__/preview.test.d.ts +0 -1
- package/commands/cms/theme/__tests__/preview.test.js +0 -54
- package/commands/customObject/__tests__/create.test.d.ts +0 -1
- package/commands/customObject/__tests__/create.test.js +0 -40
- package/commands/customObject/__tests__/createSchema.test.d.ts +0 -1
- package/commands/customObject/__tests__/createSchema.test.js +0 -28
- package/commands/customObject/__tests__/deleteSchema.test.d.ts +0 -1
- package/commands/customObject/__tests__/deleteSchema.test.js +0 -42
- package/commands/customObject/__tests__/fetch-all-schemas.test.d.ts +0 -1
- package/commands/customObject/__tests__/fetch-all-schemas.test.js +0 -41
- package/commands/customObject/__tests__/fetchSchema.test.d.ts +0 -1
- package/commands/customObject/__tests__/fetchSchema.test.js +0 -45
- package/commands/customObject/__tests__/listSchemas.test.d.ts +0 -1
- package/commands/customObject/__tests__/listSchemas.test.js +0 -29
- package/commands/customObject/__tests__/updateSchema.test.d.ts +0 -1
- package/commands/customObject/__tests__/updateSchema.test.js +0 -40
- package/commands/filemanager/__tests__/fetch.test.d.ts +0 -1
- package/commands/filemanager/__tests__/fetch.test.js +0 -32
- package/commands/filemanager/__tests__/upload.test.d.ts +0 -1
- package/commands/filemanager/__tests__/upload.test.js +0 -191
- package/commands/hubdb/__tests__/clear.test.d.ts +0 -1
- package/commands/hubdb/__tests__/clear.test.js +0 -28
- package/commands/hubdb/__tests__/create.test.d.ts +0 -1
- package/commands/hubdb/__tests__/create.test.js +0 -28
- package/commands/hubdb/__tests__/delete.test.d.ts +0 -1
- package/commands/hubdb/__tests__/delete.test.js +0 -28
- package/commands/hubdb/__tests__/fetch.test.d.ts +0 -1
- package/commands/hubdb/__tests__/fetch.test.js +0 -28
- package/commands/hubdb/__tests__/list.test.d.ts +0 -1
- package/commands/hubdb/__tests__/list.test.js +0 -88
- package/commands/mcp/__tests__/setup.test.d.ts +0 -1
- package/commands/mcp/__tests__/setup.test.js +0 -26
- package/commands/mcp/__tests__/start.test.d.ts +0 -1
- package/commands/mcp/__tests__/start.test.js +0 -144
- package/commands/project/__tests__/add.test.d.ts +0 -1
- package/commands/project/__tests__/add.test.js +0 -107
- package/commands/project/__tests__/create.test.d.ts +0 -1
- package/commands/project/__tests__/create.test.js +0 -97
- package/commands/project/__tests__/deploy.test.d.ts +0 -1
- package/commands/project/__tests__/deploy.test.js +0 -307
- package/commands/project/__tests__/dev.test.d.ts +0 -1
- package/commands/project/__tests__/dev.test.js +0 -273
- package/commands/project/__tests__/devUnifiedFlow.test.d.ts +0 -1
- package/commands/project/__tests__/devUnifiedFlow.test.js +0 -434
- package/commands/project/__tests__/download.test.d.ts +0 -1
- package/commands/project/__tests__/download.test.js +0 -39
- package/commands/project/__tests__/installDeps.test.d.ts +0 -1
- package/commands/project/__tests__/installDeps.test.js +0 -140
- package/commands/project/__tests__/lint.test.d.ts +0 -1
- package/commands/project/__tests__/lint.test.js +0 -704
- package/commands/project/__tests__/list.test.d.ts +0 -1
- package/commands/project/__tests__/list.test.js +0 -31
- package/commands/project/__tests__/listBuilds.test.d.ts +0 -1
- package/commands/project/__tests__/listBuilds.test.js +0 -38
- package/commands/project/__tests__/logs.test.d.ts +0 -1
- package/commands/project/__tests__/logs.test.js +0 -202
- package/commands/project/__tests__/migrate.test.d.ts +0 -1
- package/commands/project/__tests__/migrate.test.js +0 -106
- package/commands/project/__tests__/open.test.d.ts +0 -1
- package/commands/project/__tests__/open.test.js +0 -39
- package/commands/project/__tests__/profile.test.d.ts +0 -1
- package/commands/project/__tests__/profile.test.js +0 -42
- package/commands/project/__tests__/updateDeps.test.d.ts +0 -1
- package/commands/project/__tests__/updateDeps.test.js +0 -140
- package/commands/project/__tests__/upload.test.d.ts +0 -1
- package/commands/project/__tests__/upload.test.js +0 -234
- package/commands/project/__tests__/validate.test.d.ts +0 -1
- package/commands/project/__tests__/validate.test.js +0 -381
- package/commands/project/__tests__/watch.test.d.ts +0 -1
- package/commands/project/__tests__/watch.test.js +0 -35
- package/commands/sandbox/__tests__/create.test.d.ts +0 -1
- package/commands/sandbox/__tests__/create.test.js +0 -198
- package/commands/sandbox/__tests__/delete.test.d.ts +0 -1
- package/commands/sandbox/__tests__/delete.test.js +0 -31
- package/commands/secret/__tests__/addSecret.test.d.ts +0 -1
- package/commands/secret/__tests__/addSecret.test.js +0 -162
- package/commands/secret/__tests__/deleteSecret.test.d.ts +0 -1
- package/commands/secret/__tests__/deleteSecret.test.js +0 -41
- package/commands/secret/__tests__/listSecret.test.d.ts +0 -1
- package/commands/secret/__tests__/listSecret.test.js +0 -29
- package/commands/secret/__tests__/updateSecret.test.d.ts +0 -1
- package/commands/secret/__tests__/updateSecret.test.js +0 -29
- package/commands/testAccount/__tests__/create.test.d.ts +0 -1
- package/commands/testAccount/__tests__/create.test.js +0 -106
- package/commands/testAccount/__tests__/createConfig.test.d.ts +0 -1
- package/commands/testAccount/__tests__/createConfig.test.js +0 -32
- package/commands/testAccount/__tests__/delete.test.d.ts +0 -1
- package/commands/testAccount/__tests__/delete.test.js +0 -29
- package/commands/testAccount/__tests__/importData.test.d.ts +0 -1
- package/commands/testAccount/__tests__/importData.test.js +0 -92
- package/lib/__tests__/CLIWebSocketServer.test.d.ts +0 -1
- package/lib/__tests__/CLIWebSocketServer.test.js +0 -252
- package/lib/__tests__/accountAuth.test.d.ts +0 -1
- package/lib/__tests__/accountAuth.test.js +0 -258
- package/lib/__tests__/accountTypes.test.d.ts +0 -1
- package/lib/__tests__/accountTypes.test.js +0 -98
- package/lib/__tests__/buildAccount.test.d.ts +0 -1
- package/lib/__tests__/buildAccount.test.js +0 -211
- package/lib/__tests__/cliUpgradeUtils.test.d.ts +0 -1
- package/lib/__tests__/cliUpgradeUtils.test.js +0 -131
- package/lib/__tests__/commandSuggestion.test.d.ts +0 -1
- package/lib/__tests__/commandSuggestion.test.js +0 -121
- package/lib/__tests__/commonOpts.test.d.ts +0 -1
- package/lib/__tests__/commonOpts.test.js +0 -80
- package/lib/__tests__/dependencyManagement.test.d.ts +0 -1
- package/lib/__tests__/dependencyManagement.test.js +0 -1067
- package/lib/__tests__/developerTestAccounts.test.d.ts +0 -1
- package/lib/__tests__/developerTestAccounts.test.js +0 -156
- package/lib/__tests__/hasFeature.test.d.ts +0 -1
- package/lib/__tests__/hasFeature.test.js +0 -167
- package/lib/__tests__/http.test.d.ts +0 -1
- package/lib/__tests__/http.test.js +0 -40
- package/lib/__tests__/importData.test.d.ts +0 -1
- package/lib/__tests__/importData.test.js +0 -98
- package/lib/__tests__/npmCli.test.d.ts +0 -1
- package/lib/__tests__/npmCli.test.js +0 -84
- package/lib/__tests__/oauth.test.d.ts +0 -1
- package/lib/__tests__/oauth.test.js +0 -109
- package/lib/__tests__/parsing.test.d.ts +0 -1
- package/lib/__tests__/parsing.test.js +0 -34
- package/lib/__tests__/polling.test.d.ts +0 -1
- package/lib/__tests__/polling.test.js +0 -76
- package/lib/__tests__/process.test.d.ts +0 -1
- package/lib/__tests__/process.test.js +0 -89
- package/lib/__tests__/sandboxes.test.d.ts +0 -1
- package/lib/__tests__/sandboxes.test.js +0 -128
- package/lib/__tests__/serverlessLogs.test.d.ts +0 -1
- package/lib/__tests__/serverlessLogs.test.js +0 -163
- package/lib/__tests__/usageTracking.test.d.ts +0 -1
- package/lib/__tests__/usageTracking.test.js +0 -197
- package/lib/__tests__/validation.test.d.ts +0 -1
- package/lib/__tests__/validation.test.js +0 -143
- package/lib/__tests__/yargsUtils.test.d.ts +0 -1
- package/lib/__tests__/yargsUtils.test.js +0 -124
- package/lib/app/__tests__/migrate.test.d.ts +0 -1
- package/lib/app/__tests__/migrate.test.js +0 -638
- package/lib/doctor/__tests__/Diagnosis.test.d.ts +0 -1
- package/lib/doctor/__tests__/Diagnosis.test.js +0 -84
- package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.d.ts +0 -1
- package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.js +0 -177
- package/lib/doctor/__tests__/Doctor.test.d.ts +0 -1
- package/lib/doctor/__tests__/Doctor.test.js +0 -560
- package/lib/errorHandlers/__tests__/index.test.d.ts +0 -1
- package/lib/errorHandlers/__tests__/index.test.js +0 -278
- package/lib/mcp/__tests__/setup.test.d.ts +0 -1
- package/lib/mcp/__tests__/setup.test.js +0 -523
- package/lib/middleware/__tests__/commandTargetingUtils.test.d.ts +0 -1
- package/lib/middleware/__tests__/commandTargetingUtils.test.js +0 -99
- package/lib/middleware/__tests__/configMiddleware.test.d.ts +0 -1
- package/lib/middleware/__tests__/configMiddleware.test.js +0 -118
- package/lib/middleware/__tests__/gitMiddleware.test.d.ts +0 -1
- package/lib/middleware/__tests__/gitMiddleware.test.js +0 -43
- package/lib/middleware/__tests__/requestMiddleware.test.d.ts +0 -1
- package/lib/middleware/__tests__/requestMiddleware.test.js +0 -15
- package/lib/middleware/__tests__/usageTrackingMiddleware.test.d.ts +0 -1
- package/lib/middleware/__tests__/usageTrackingMiddleware.test.js +0 -44
- package/lib/middleware/__tests__/yargsChecksMiddleware.test.d.ts +0 -1
- package/lib/middleware/__tests__/yargsChecksMiddleware.test.js +0 -39
- package/lib/projects/__tests__/AppDevModeInterface.test.d.ts +0 -1
- package/lib/projects/__tests__/AppDevModeInterface.test.js +0 -541
- package/lib/projects/__tests__/DevServerManager.test.d.ts +0 -1
- package/lib/projects/__tests__/DevServerManager.test.js +0 -185
- package/lib/projects/__tests__/DevSessionManager.test.d.ts +0 -1
- package/lib/projects/__tests__/DevSessionManager.test.js +0 -250
- package/lib/projects/__tests__/LocalDevProcess.test.d.ts +0 -1
- package/lib/projects/__tests__/LocalDevProcess.test.js +0 -481
- package/lib/projects/__tests__/LocalDevWebsocketServer.test.d.ts +0 -1
- package/lib/projects/__tests__/LocalDevWebsocketServer.test.js +0 -231
- package/lib/projects/__tests__/ProjectLogsManager.test.d.ts +0 -1
- package/lib/projects/__tests__/ProjectLogsManager.test.js +0 -302
- package/lib/projects/__tests__/UIExtensionsDevModeInterface.test.d.ts +0 -1
- package/lib/projects/__tests__/UIExtensionsDevModeInterface.test.js +0 -160
- package/lib/projects/__tests__/components.test.d.ts +0 -1
- package/lib/projects/__tests__/components.test.js +0 -440
- package/lib/projects/__tests__/deploy.test.d.ts +0 -1
- package/lib/projects/__tests__/deploy.test.js +0 -231
- package/lib/projects/__tests__/localDevProjectHelpers.test.d.ts +0 -1
- package/lib/projects/__tests__/localDevProjectHelpers.test.js +0 -120
- package/lib/projects/__tests__/platformVersion.test.d.ts +0 -1
- package/lib/projects/__tests__/platformVersion.test.js +0 -63
- package/lib/projects/__tests__/pollProjectBuildAndDeploy.test.d.ts +0 -1
- package/lib/projects/__tests__/pollProjectBuildAndDeploy.test.js +0 -328
- package/lib/projects/__tests__/projectProfiles.test.d.ts +0 -1
- package/lib/projects/__tests__/projectProfiles.test.js +0 -441
- package/lib/projects/__tests__/projects.test.d.ts +0 -1
- package/lib/projects/__tests__/projects.test.js +0 -58
- package/lib/projects/__tests__/structure.test.d.ts +0 -1
- package/lib/projects/__tests__/structure.test.js +0 -210
- package/lib/projects/__tests__/uieLinting.test.d.ts +0 -1
- package/lib/projects/__tests__/uieLinting.test.js +0 -631
- package/lib/projects/__tests__/upload.test.d.ts +0 -1
- package/lib/projects/__tests__/upload.test.js +0 -183
- package/lib/projects/add/__tests__/legacyAddComponent.test.d.ts +0 -1
- package/lib/projects/add/__tests__/legacyAddComponent.test.js +0 -245
- package/lib/projects/add/__tests__/v2AddComponent.test.d.ts +0 -1
- package/lib/projects/add/__tests__/v2AddComponent.test.js +0 -343
- package/lib/projects/create/__tests__/legacy.test.d.ts +0 -1
- package/lib/projects/create/__tests__/legacy.test.js +0 -72
- package/lib/projects/create/__tests__/v2.test.d.ts +0 -1
- package/lib/projects/create/__tests__/v2.test.js +0 -257
- package/lib/prompts/__tests__/createDeveloperTestAccountConfigPrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/createDeveloperTestAccountConfigPrompt.test.js +0 -157
- package/lib/prompts/__tests__/createFunctionPrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/createFunctionPrompt.test.js +0 -129
- package/lib/prompts/__tests__/createModulePrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/createModulePrompt.test.js +0 -187
- package/lib/prompts/__tests__/createTemplatePrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/createTemplatePrompt.test.js +0 -102
- package/lib/prompts/__tests__/downloadProjectPrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/downloadProjectPrompt.test.js +0 -31
- package/lib/prompts/__tests__/projectAddPrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/projectAddPrompt.test.js +0 -143
- package/lib/prompts/__tests__/projectsLogsPrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/projectsLogsPrompt.test.js +0 -37
- package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.d.ts +0 -1
- package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.js +0 -160
- package/lib/theme/__tests__/migrate.test.d.ts +0 -1
- package/lib/theme/__tests__/migrate.test.js +0 -247
- package/lib/ui/__tests__/SpinniesManager.test.d.ts +0 -1
- package/lib/ui/__tests__/SpinniesManager.test.js +0 -488
- package/lib/ui/__tests__/removeAnsiCodes.test.d.ts +0 -1
- package/lib/ui/__tests__/removeAnsiCodes.test.js +0 -84
- package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.js +0 -254
- package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.js +0 -227
- package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.js +0 -208
- package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.js +0 -186
- package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.js +0 -124
- package/mcp-server/tools/cms/__tests__/HsListTool.test.d.ts +0 -1
- package/mcp-server/tools/cms/__tests__/HsListTool.test.js +0 -124
- package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.js +0 -157
- package/mcp-server/tools/project/__tests__/CreateProjectTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/CreateProjectTool.test.js +0 -131
- package/mcp-server/tools/project/__tests__/CreateTestAccountTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/CreateTestAccountTool.test.js +0 -461
- package/mcp-server/tools/project/__tests__/DeployProjectTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/DeployProjectTool.test.js +0 -125
- package/mcp-server/tools/project/__tests__/DocFetchTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/DocFetchTool.test.js +0 -125
- package/mcp-server/tools/project/__tests__/DocsSearchTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/DocsSearchTool.test.js +0 -210
- package/mcp-server/tools/project/__tests__/GetApiUsagePatternsByAppIdTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GetApiUsagePatternsByAppIdTool.test.js +0 -146
- package/mcp-server/tools/project/__tests__/GetApplicationInfoTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GetApplicationInfoTool.test.js +0 -124
- package/mcp-server/tools/project/__tests__/GetBuildLogsTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GetBuildLogsTool.test.js +0 -307
- package/mcp-server/tools/project/__tests__/GetBuildStatusTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GetBuildStatusTool.test.js +0 -242
- package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.js +0 -209
- package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.js +0 -158
- package/mcp-server/tools/project/__tests__/UploadProjectTools.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/UploadProjectTools.test.js +0 -187
- package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.d.ts +0 -1
- package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.js +0 -118
- package/mcp-server/utils/__tests__/command.test.d.ts +0 -1
- package/mcp-server/utils/__tests__/command.test.js +0 -275
- package/mcp-server/utils/__tests__/content.test.d.ts +0 -1
- package/mcp-server/utils/__tests__/content.test.js +0 -164
- package/mcp-server/utils/__tests__/feedbackTracking.test.d.ts +0 -1
- package/mcp-server/utils/__tests__/feedbackTracking.test.js +0 -69
package/bin/cli.js
CHANGED
|
@@ -31,6 +31,7 @@ import testAccountCommands from '../commands/testAccount.js';
|
|
|
31
31
|
import getStartedCommand from '../commands/getStarted.js';
|
|
32
32
|
import mcpCommand from '../commands/mcp.js';
|
|
33
33
|
import upgradeCommand from '../commands/upgrade.js';
|
|
34
|
+
import apiCommand from '../commands/api.js';
|
|
34
35
|
import { uiLogger } from '../lib/ui/logger.js';
|
|
35
36
|
import { initializeSpinniesManager } from '../lib/middleware/spinniesMiddleware.js';
|
|
36
37
|
import { addCommandSuggestions } from '../lib/commandSuggestion.js';
|
|
@@ -111,6 +112,7 @@ const argv = yargs(process.argv.slice(2))
|
|
|
111
112
|
.command(hubdbCommand)
|
|
112
113
|
.command(filemanagerCommand)
|
|
113
114
|
// Misc commands
|
|
115
|
+
.command(apiCommand)
|
|
114
116
|
.command(customObjectCommand)
|
|
115
117
|
.command(completionCommand)
|
|
116
118
|
.command(doctorCommand)
|
package/commands/account/auth.js
CHANGED
|
@@ -2,15 +2,15 @@ import { ENVIRONMENTS } from '@hubspot/local-dev-lib/constants/environments';
|
|
|
2
2
|
import { PERSONAL_ACCESS_KEY_AUTH_METHOD } from '@hubspot/local-dev-lib/constants/auth';
|
|
3
3
|
import { deleteConfigFileIfEmpty } from '@hubspot/local-dev-lib/config';
|
|
4
4
|
import { handleExit } from '../../lib/process.js';
|
|
5
|
-
import {
|
|
5
|
+
import { trackAuthAction } from '../../lib/usageTracking.js';
|
|
6
6
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
7
7
|
import { uiFeatureHighlight } from '../../lib/ui/index.js';
|
|
8
8
|
import { parseStringToNumber } from '../../lib/parsing.js';
|
|
9
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
9
10
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
10
11
|
import { commands } from '../../lang/en.js';
|
|
11
12
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
12
13
|
import { authenticateNewAccount } from '../../lib/accountAuth.js';
|
|
13
|
-
import { PromptExitError } from '../../lib/errors/PromptExitError.js';
|
|
14
14
|
const TRACKING_STATUS = {
|
|
15
15
|
STARTED: 'started',
|
|
16
16
|
ERROR: 'error',
|
|
@@ -20,7 +20,7 @@ const authType = PERSONAL_ACCESS_KEY_AUTH_METHOD.value;
|
|
|
20
20
|
const describe = commands.account.subcommands.auth.describe;
|
|
21
21
|
const command = 'auth';
|
|
22
22
|
async function handler(args) {
|
|
23
|
-
const { disableTracking, personalAccessKey: providedPersonalAccessKey, userProvidedAccount, } = args;
|
|
23
|
+
const { disableTracking, personalAccessKey: providedPersonalAccessKey, userProvidedAccount, exit, } = args;
|
|
24
24
|
let parsedUserProvidedAccountId;
|
|
25
25
|
if (userProvidedAccount) {
|
|
26
26
|
try {
|
|
@@ -28,33 +28,23 @@ async function handler(args) {
|
|
|
28
28
|
}
|
|
29
29
|
catch (err) {
|
|
30
30
|
uiLogger.error(commands.account.subcommands.auth.errors.invalidAccountIdProvided);
|
|
31
|
-
|
|
31
|
+
return exit(EXIT_CODES.ERROR);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
if (!disableTracking) {
|
|
35
|
-
trackCommandUsage('account-auth', {}, parsedUserProvidedAccountId);
|
|
36
35
|
await trackAuthAction('account-auth', authType, TRACKING_STATUS.STARTED);
|
|
37
36
|
}
|
|
38
37
|
handleExit(deleteConfigFileIfEmpty);
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
accountId: parsedUserProvidedAccountId,
|
|
45
|
-
});
|
|
46
|
-
}
|
|
47
|
-
catch (e) {
|
|
48
|
-
if (e instanceof PromptExitError) {
|
|
49
|
-
process.exit(e.exitCode);
|
|
50
|
-
}
|
|
51
|
-
throw e;
|
|
52
|
-
}
|
|
38
|
+
const updatedConfig = await authenticateNewAccount({
|
|
39
|
+
env: args.qa ? ENVIRONMENTS.QA : ENVIRONMENTS.PROD,
|
|
40
|
+
providedPersonalAccessKey,
|
|
41
|
+
accountId: parsedUserProvidedAccountId,
|
|
42
|
+
});
|
|
53
43
|
if (!updatedConfig) {
|
|
54
44
|
if (!disableTracking) {
|
|
55
45
|
await trackAuthAction('account-auth', authType, TRACKING_STATUS.ERROR);
|
|
56
46
|
}
|
|
57
|
-
return
|
|
47
|
+
return exit(EXIT_CODES.ERROR);
|
|
58
48
|
}
|
|
59
49
|
const { accountId } = updatedConfig;
|
|
60
50
|
uiFeatureHighlight([
|
|
@@ -66,7 +56,7 @@ async function handler(args) {
|
|
|
66
56
|
if (!disableTracking) {
|
|
67
57
|
await trackAuthAction('account-auth', authType, TRACKING_STATUS.COMPLETE, accountId);
|
|
68
58
|
}
|
|
69
|
-
|
|
59
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
70
60
|
}
|
|
71
61
|
function accountAuthBuilder(yargs) {
|
|
72
62
|
yargs.options({
|
|
@@ -96,7 +86,7 @@ const builder = makeYargsBuilder(accountAuthBuilder, command, commands.account.s
|
|
|
96
86
|
const accountAuthCommand = {
|
|
97
87
|
command,
|
|
98
88
|
describe,
|
|
99
|
-
handler,
|
|
89
|
+
handler: makeYargsHandlerWithUsageTracking('account-auth', handler),
|
|
100
90
|
builder,
|
|
101
91
|
};
|
|
102
92
|
export default accountAuthCommand;
|
|
@@ -3,12 +3,12 @@ import { accessTokenForPersonalAccessKey } from '@hubspot/local-dev-lib/personal
|
|
|
3
3
|
import { removeAccountFromConfig, getAllConfigAccounts, getConfigDefaultAccountIfExists, setConfigAccountAsDefault, } from '@hubspot/local-dev-lib/config';
|
|
4
4
|
import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
5
5
|
import { isSpecifiedError } from '@hubspot/local-dev-lib/errors/index';
|
|
6
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
7
6
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
8
7
|
import { promptUser } from '../../lib/prompts/promptUtils.js';
|
|
9
8
|
import { selectAccountFromConfig } from '../../lib/prompts/accountsPrompt.js';
|
|
10
9
|
import SpinniesManager from '../../lib/ui/SpinniesManager.js';
|
|
11
10
|
import { uiAccountDescription } from '../../lib/ui/index.js';
|
|
11
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
12
12
|
import { logError } from '../../lib/errorHandlers/index.js';
|
|
13
13
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
14
14
|
import { commands } from '../../lang/en.js';
|
|
@@ -17,13 +17,12 @@ import { renderList } from '../../ui/render.js';
|
|
|
17
17
|
const command = 'clean';
|
|
18
18
|
const describe = commands.account.subcommands.clean.describe;
|
|
19
19
|
async function handler(args) {
|
|
20
|
-
const { qa } = args;
|
|
21
|
-
trackCommandUsage('accounts-clean');
|
|
20
|
+
const { qa, exit } = args;
|
|
22
21
|
const accountsList = getAllConfigAccounts();
|
|
23
22
|
const filteredTestAccounts = accountsList.filter(p => qa ? p.env === 'qa' : p.env !== 'qa');
|
|
24
23
|
if (filteredTestAccounts && filteredTestAccounts.length === 0) {
|
|
25
24
|
uiLogger.log(commands.account.subcommands.clean.noResults);
|
|
26
|
-
|
|
25
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
27
26
|
}
|
|
28
27
|
const accountsToRemove = [];
|
|
29
28
|
SpinniesManager.init({
|
|
@@ -105,7 +104,7 @@ async function handler(args) {
|
|
|
105
104
|
});
|
|
106
105
|
}
|
|
107
106
|
uiLogger.log('');
|
|
108
|
-
|
|
107
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
109
108
|
}
|
|
110
109
|
function accountCleanBuilder(yargs) {
|
|
111
110
|
yargs.example([['$0 accounts clean']]);
|
|
@@ -119,7 +118,7 @@ const builder = makeYargsBuilder(accountCleanBuilder, command, describe, {
|
|
|
119
118
|
const accountCleanCommand = {
|
|
120
119
|
command,
|
|
121
120
|
describe,
|
|
122
|
-
handler,
|
|
121
|
+
handler: makeYargsHandlerWithUsageTracking('accounts-clean', handler),
|
|
123
122
|
builder,
|
|
124
123
|
};
|
|
125
124
|
export default accountCleanCommand;
|
|
@@ -6,20 +6,21 @@ import { getConfigFilePath, getConfigAccountIfExists, globalConfigFileExists, ge
|
|
|
6
6
|
import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
7
7
|
import { promptUser } from '../../lib/prompts/promptUtils.js';
|
|
8
8
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
9
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
10
9
|
import { selectAccountFromConfig } from '../../lib/prompts/accountsPrompt.js';
|
|
11
10
|
import { logError } from '../../lib/errorHandlers/index.js';
|
|
11
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
12
12
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
13
13
|
import { commands } from '../../lang/en.js';
|
|
14
14
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
15
15
|
const command = 'create-override [account]';
|
|
16
16
|
const describe = commands.account.subcommands.createOverride.describe(DEFAULT_ACCOUNT_OVERRIDE_FILE_NAME);
|
|
17
17
|
async function handler(args) {
|
|
18
|
+
const { exit } = args;
|
|
18
19
|
let overrideDefaultAccount = args.account;
|
|
19
20
|
const globalConfigExists = globalConfigFileExists();
|
|
20
21
|
if (!globalConfigExists) {
|
|
21
22
|
uiLogger.error(commands.account.subcommands.createOverride.errors.globalConfigNotFound);
|
|
22
|
-
|
|
23
|
+
return exit(EXIT_CODES.ERROR);
|
|
23
24
|
}
|
|
24
25
|
const accounts = getAllConfigAccounts();
|
|
25
26
|
const accountOverrideId = getDefaultAccountOverrideAccountId(accounts);
|
|
@@ -33,7 +34,7 @@ async function handler(args) {
|
|
|
33
34
|
});
|
|
34
35
|
uiLogger.log('');
|
|
35
36
|
if (!replaceOverrideFile) {
|
|
36
|
-
|
|
37
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
37
38
|
}
|
|
38
39
|
}
|
|
39
40
|
if (!overrideDefaultAccount) {
|
|
@@ -48,16 +49,15 @@ async function handler(args) {
|
|
|
48
49
|
}
|
|
49
50
|
const account = getConfigAccountIfExists(overrideDefaultAccount);
|
|
50
51
|
const accountId = account?.accountId;
|
|
51
|
-
trackCommandUsage('account-createOverride', undefined, accountId);
|
|
52
52
|
try {
|
|
53
53
|
const overrideFilePath = path.join(getCwd(), DEFAULT_ACCOUNT_OVERRIDE_FILE_NAME);
|
|
54
54
|
await fs.writeFile(overrideFilePath, accountId.toString(), 'utf8');
|
|
55
55
|
uiLogger.success(commands.account.subcommands.createOverride.success(overrideFilePath));
|
|
56
|
-
|
|
56
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
57
57
|
}
|
|
58
58
|
catch (e) {
|
|
59
59
|
logError(e);
|
|
60
|
-
|
|
60
|
+
return exit(EXIT_CODES.ERROR);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
function accountCreateOverrideBuilder(yargs) {
|
|
@@ -87,7 +87,7 @@ const builder = makeYargsBuilder(accountCreateOverrideBuilder, command, describe
|
|
|
87
87
|
const accountCreateOverrideCommand = {
|
|
88
88
|
command,
|
|
89
89
|
describe,
|
|
90
|
-
handler,
|
|
90
|
+
handler: makeYargsHandlerWithUsageTracking('account-createOverride', handler),
|
|
91
91
|
builder,
|
|
92
92
|
};
|
|
93
93
|
export default accountCreateOverrideCommand;
|
package/commands/account/info.js
CHANGED
|
@@ -3,6 +3,7 @@ import { getDefaultAccountOverrideFilePath } from '@hubspot/local-dev-lib/config
|
|
|
3
3
|
import { getAccessToken } from '@hubspot/local-dev-lib/personalAccessKey';
|
|
4
4
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
5
5
|
import { indent } from '../../lib/ui/index.js';
|
|
6
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
6
7
|
import { commands } from '../../lang/en.js';
|
|
7
8
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
8
9
|
import { renderList } from '../../ui/render.js';
|
|
@@ -69,7 +70,7 @@ const builder = makeYargsBuilder(accountInfoBuilder, command, describe, {
|
|
|
69
70
|
const accountInfoCommand = {
|
|
70
71
|
command,
|
|
71
72
|
describe,
|
|
72
|
-
handler,
|
|
73
|
+
handler: makeYargsHandlerWithUsageTracking('account-info', handler),
|
|
73
74
|
builder,
|
|
74
75
|
};
|
|
75
76
|
export default accountInfoCommand;
|
package/commands/account/list.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { getConfigFilePath, getAllConfigAccounts, getConfigDefaultAccountIfExists, } from '@hubspot/local-dev-lib/config';
|
|
2
2
|
import { getDefaultAccountOverrideFilePath } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
3
3
|
import { indent } from '../../lib/ui/index.js';
|
|
4
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
5
4
|
import { isSandbox, isDeveloperTestAccount } from '../../lib/accountTypes.js';
|
|
6
5
|
import { HUBSPOT_ACCOUNT_TYPES, HUBSPOT_ACCOUNT_TYPE_STRINGS, } from '@hubspot/local-dev-lib/constants/config';
|
|
6
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
7
7
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
8
8
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
9
9
|
import { commands } from '../../lang/en.js';
|
|
@@ -58,9 +58,7 @@ function getAccountData(mappedAccountData) {
|
|
|
58
58
|
});
|
|
59
59
|
return accountData;
|
|
60
60
|
}
|
|
61
|
-
async function handler(
|
|
62
|
-
const { derivedAccountId } = args;
|
|
63
|
-
trackCommandUsage('accounts-list', undefined, derivedAccountId);
|
|
61
|
+
async function handler() {
|
|
64
62
|
const configPath = getConfigFilePath();
|
|
65
63
|
const accountsList = getAllConfigAccounts();
|
|
66
64
|
const mappedAccountData = sortAndMapAccounts(accountsList);
|
|
@@ -101,7 +99,7 @@ const builder = makeYargsBuilder(accountListBuilder, command, describe, {
|
|
|
101
99
|
const accountListCommand = {
|
|
102
100
|
command,
|
|
103
101
|
describe,
|
|
104
|
-
handler,
|
|
102
|
+
handler: makeYargsHandlerWithUsageTracking('accounts-list', handler),
|
|
105
103
|
builder,
|
|
106
104
|
};
|
|
107
105
|
export default accountListCommand;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import fs from 'fs';
|
|
2
2
|
import { getConfigFilePath, removeAccountFromConfig, getConfigDefaultAccountIfExists, getConfigAccountIfExists, getConfigAccountById, setConfigAccountAsDefault, getAllConfigAccounts, } from '@hubspot/local-dev-lib/config';
|
|
3
3
|
import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
4
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
5
4
|
import { promptUser } from '../../lib/prompts/promptUtils.js';
|
|
6
5
|
import { logError } from '../../lib/errorHandlers/index.js';
|
|
7
6
|
import { selectAccountFromConfig } from '../../lib/prompts/accountsPrompt.js';
|
|
7
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
8
8
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
9
9
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
10
10
|
import { commands } from '../../lang/en.js';
|
|
@@ -23,7 +23,6 @@ async function handler(args) {
|
|
|
23
23
|
accountToRemoveId = await selectAccountFromConfig(commands.account.subcommands.remove.prompts.selectAccountToRemove);
|
|
24
24
|
}
|
|
25
25
|
accountToRemoveConfig = getConfigAccountById(accountToRemoveId);
|
|
26
|
-
trackCommandUsage('accounts-remove', undefined, accountToRemoveId);
|
|
27
26
|
const currentDefaultAccount = getConfigDefaultAccountIfExists();
|
|
28
27
|
const accounts = getAllConfigAccounts();
|
|
29
28
|
const accountOverride = getDefaultAccountOverrideAccountId(accounts);
|
|
@@ -81,7 +80,7 @@ const builder = makeYargsBuilder(accountRemoveBuilder, command, describe, {
|
|
|
81
80
|
const accountRemoveCommand = {
|
|
82
81
|
command,
|
|
83
82
|
describe,
|
|
84
|
-
handler,
|
|
83
|
+
handler: makeYargsHandlerWithUsageTracking('accounts-remove', handler),
|
|
85
84
|
builder,
|
|
86
85
|
};
|
|
87
86
|
export default accountRemoveCommand;
|
|
@@ -3,27 +3,25 @@ import { globalConfigFileExists, getAllConfigAccounts, } from '@hubspot/local-de
|
|
|
3
3
|
import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
4
4
|
import { DEFAULT_ACCOUNT_OVERRIDE_FILE_NAME } from '@hubspot/local-dev-lib/constants/config';
|
|
5
5
|
import { promptUser } from '../../lib/prompts/promptUtils.js';
|
|
6
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
7
6
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
8
7
|
import { logError } from '../../lib/errorHandlers/index.js';
|
|
8
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
9
9
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
10
10
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
11
11
|
import { commands } from '../../lang/en.js';
|
|
12
12
|
const command = 'remove-override';
|
|
13
13
|
const describe = commands.account.subcommands.removeOverride.describe(DEFAULT_ACCOUNT_OVERRIDE_FILE_NAME);
|
|
14
14
|
async function handler(args) {
|
|
15
|
-
const { force } = args;
|
|
15
|
+
const { force, exit } = args;
|
|
16
16
|
const globalConfigExists = globalConfigFileExists();
|
|
17
17
|
if (!globalConfigExists) {
|
|
18
18
|
uiLogger.error(commands.account.subcommands.removeOverride.errors.globalConfigNotFound);
|
|
19
|
-
|
|
19
|
+
return exit(EXIT_CODES.ERROR);
|
|
20
20
|
}
|
|
21
21
|
const accounts = getAllConfigAccounts();
|
|
22
22
|
const accountOverride = getDefaultAccountOverrideAccountId(accounts);
|
|
23
23
|
const overrideFilePath = getDefaultAccountOverrideFilePath();
|
|
24
24
|
if (accountOverride && overrideFilePath) {
|
|
25
|
-
const accountId = accountOverride;
|
|
26
|
-
trackCommandUsage('account-removeOverride', undefined, accountId);
|
|
27
25
|
if (!force) {
|
|
28
26
|
uiLogger.log(commands.account.subcommands.removeOverride.accountOverride(overrideFilePath, accountOverride.toString()));
|
|
29
27
|
const { deleteOverrideFile } = await promptUser({
|
|
@@ -34,22 +32,22 @@ async function handler(args) {
|
|
|
34
32
|
});
|
|
35
33
|
uiLogger.log('');
|
|
36
34
|
if (!deleteOverrideFile) {
|
|
37
|
-
|
|
35
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
38
36
|
}
|
|
39
37
|
}
|
|
40
38
|
try {
|
|
41
39
|
fs.unlinkSync(overrideFilePath);
|
|
42
40
|
uiLogger.success(commands.account.subcommands.removeOverride.success);
|
|
43
|
-
|
|
41
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
44
42
|
}
|
|
45
43
|
catch (error) {
|
|
46
44
|
logError(error);
|
|
47
|
-
|
|
45
|
+
return exit(EXIT_CODES.ERROR);
|
|
48
46
|
}
|
|
49
47
|
}
|
|
50
48
|
else {
|
|
51
49
|
uiLogger.log(commands.account.subcommands.removeOverride.noOverrideFile);
|
|
52
|
-
|
|
50
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
53
51
|
}
|
|
54
52
|
}
|
|
55
53
|
function accountRemoveOverrideBuilder(yargs) {
|
|
@@ -65,7 +63,7 @@ const builder = makeYargsBuilder(accountRemoveOverrideBuilder, command, describe
|
|
|
65
63
|
const accountRemoveOverrideCommand = {
|
|
66
64
|
command,
|
|
67
65
|
describe,
|
|
68
|
-
handler,
|
|
66
|
+
handler: makeYargsHandlerWithUsageTracking('account-removeOverride', handler),
|
|
69
67
|
builder,
|
|
70
68
|
};
|
|
71
69
|
export default accountRemoveOverrideCommand;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { renameConfigAccount } from '@hubspot/local-dev-lib/config';
|
|
2
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
3
2
|
import { commands } from '../../lang/en.js';
|
|
4
3
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
4
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
5
5
|
import { logError } from '../../lib/errorHandlers/index.js';
|
|
6
6
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
7
7
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
@@ -9,8 +9,7 @@ import { toKebabCase } from '@hubspot/local-dev-lib/text';
|
|
|
9
9
|
const command = 'rename <account-name> <new-name>';
|
|
10
10
|
const describe = commands.account.subcommands.rename.describe;
|
|
11
11
|
async function handler(args) {
|
|
12
|
-
const { accountName, newName,
|
|
13
|
-
trackCommandUsage('accounts-rename', undefined, derivedAccountId);
|
|
12
|
+
const { accountName, newName, exit } = args;
|
|
14
13
|
const newNameKebabCase = toKebabCase(newName);
|
|
15
14
|
const nameWasSanitized = newNameKebabCase !== newName;
|
|
16
15
|
try {
|
|
@@ -18,10 +17,10 @@ async function handler(args) {
|
|
|
18
17
|
}
|
|
19
18
|
catch (error) {
|
|
20
19
|
logError(error);
|
|
21
|
-
|
|
20
|
+
return exit(EXIT_CODES.ERROR);
|
|
22
21
|
}
|
|
23
22
|
uiLogger.success(commands.account.subcommands.rename.success.renamed(accountName, newNameKebabCase, nameWasSanitized));
|
|
24
|
-
|
|
23
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
25
24
|
}
|
|
26
25
|
function accountRenameBuilder(yargs) {
|
|
27
26
|
yargs.positional('account-name', {
|
|
@@ -45,7 +44,7 @@ const builder = makeYargsBuilder(accountRenameBuilder, command, describe, {
|
|
|
45
44
|
const accountRenameCommand = {
|
|
46
45
|
command,
|
|
47
46
|
describe,
|
|
48
|
-
handler,
|
|
47
|
+
handler: makeYargsHandlerWithUsageTracking('accounts-rename', handler),
|
|
49
48
|
builder,
|
|
50
49
|
};
|
|
51
50
|
export default accountRenameCommand;
|
package/commands/account/use.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import { getConfigFilePath, setConfigAccountAsDefault, getConfigAccountIfExists, getConfigAccountByName, getConfigAccountById, globalConfigFileExists, getAllConfigAccounts, } from '@hubspot/local-dev-lib/config';
|
|
2
2
|
import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
|
|
3
3
|
import { ENVIRONMENTS } from '@hubspot/local-dev-lib/constants/environments';
|
|
4
|
-
import { trackCommandUsage } from '../../lib/usageTracking.js';
|
|
5
4
|
import { commands } from '../../lang/en.js';
|
|
6
5
|
import { uiLogger } from '../../lib/ui/logger.js';
|
|
7
6
|
import { selectAccountFromConfig, AUTHENTICATE_NEW_ACCOUNT_VALUE, } from '../../lib/prompts/accountsPrompt.js';
|
|
7
|
+
import { makeYargsHandlerWithUsageTracking } from '../../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
8
8
|
import { makeYargsBuilder } from '../../lib/yargsUtils.js';
|
|
9
9
|
import { authenticateNewAccount } from '../../lib/accountAuth.js';
|
|
10
|
-
import { PromptExitError } from '../../lib/errors/PromptExitError.js';
|
|
11
10
|
import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
|
|
12
11
|
const command = 'use [account]';
|
|
13
12
|
const describe = commands.account.subcommands.use.describe;
|
|
14
13
|
async function handler(args) {
|
|
14
|
+
const { exit } = args;
|
|
15
15
|
let newDefaultAccount = args.account;
|
|
16
16
|
const usingGlobalConfig = globalConfigFileExists();
|
|
17
17
|
if (!newDefaultAccount) {
|
|
@@ -25,23 +25,13 @@ async function handler(args) {
|
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
if (newDefaultAccount === AUTHENTICATE_NEW_ACCOUNT_VALUE) {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
setAsDefaultAccount: true,
|
|
33
|
-
});
|
|
34
|
-
}
|
|
35
|
-
catch (e) {
|
|
36
|
-
if (e instanceof PromptExitError) {
|
|
37
|
-
process.exit(e.exitCode);
|
|
38
|
-
}
|
|
39
|
-
throw e;
|
|
40
|
-
}
|
|
28
|
+
const updatedConfig = await authenticateNewAccount({
|
|
29
|
+
env: args.qa ? ENVIRONMENTS.QA : ENVIRONMENTS.PROD,
|
|
30
|
+
setAsDefaultAccount: true,
|
|
31
|
+
});
|
|
41
32
|
if (!updatedConfig) {
|
|
42
|
-
|
|
33
|
+
return exit(EXIT_CODES.ERROR);
|
|
43
34
|
}
|
|
44
|
-
trackCommandUsage('accounts-use', undefined, updatedConfig.accountId);
|
|
45
35
|
return;
|
|
46
36
|
}
|
|
47
37
|
let account;
|
|
@@ -51,7 +41,6 @@ async function handler(args) {
|
|
|
51
41
|
else {
|
|
52
42
|
account = getConfigAccountByName(String(newDefaultAccount));
|
|
53
43
|
}
|
|
54
|
-
trackCommandUsage('accounts-use', undefined, account?.accountId);
|
|
55
44
|
const accounts = getAllConfigAccounts();
|
|
56
45
|
const accountOverride = getDefaultAccountOverrideAccountId(accounts);
|
|
57
46
|
const overrideFilePath = getDefaultAccountOverrideFilePath();
|
|
@@ -87,7 +76,7 @@ const builder = makeYargsBuilder(accountUseBuilder, command, describe, {
|
|
|
87
76
|
const accountUseCommand = {
|
|
88
77
|
command,
|
|
89
78
|
describe,
|
|
90
|
-
handler,
|
|
79
|
+
handler: makeYargsHandlerWithUsageTracking('accounts-use', handler),
|
|
91
80
|
builder,
|
|
92
81
|
};
|
|
93
82
|
export default accountUseCommand;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { CommonArgs, ConfigArgs, EnvironmentArgs, AccountArgs, JSONOutputArgs, YargsCommandModule } from '../types/Yargs.js';
|
|
2
|
+
declare const HTTP_METHODS: readonly ["GET", "POST", "PUT", "PATCH", "DELETE"];
|
|
3
|
+
type HttpMethod = (typeof HTTP_METHODS)[number];
|
|
4
|
+
export type ApiArgs = CommonArgs & ConfigArgs & EnvironmentArgs & AccountArgs & JSONOutputArgs & {
|
|
5
|
+
endpoint: string;
|
|
6
|
+
method?: HttpMethod;
|
|
7
|
+
data?: string;
|
|
8
|
+
};
|
|
9
|
+
declare const apiCommand: YargsCommandModule<unknown, ApiArgs>;
|
|
10
|
+
export default apiCommand;
|
package/commands/api.js
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import { http } from '@hubspot/local-dev-lib/http';
|
|
2
|
+
import { getHubSpotApiOrigin } from '@hubspot/local-dev-lib/urls';
|
|
3
|
+
import { getConfigAccountEnvironment } from '@hubspot/local-dev-lib/config';
|
|
4
|
+
import { logError, debugError, ApiErrorContext, } from '../lib/errorHandlers/index.js';
|
|
5
|
+
import { isHubSpotHttpError } from '@hubspot/local-dev-lib/errors/index';
|
|
6
|
+
import { commands } from '../lang/en.js';
|
|
7
|
+
import { EXIT_CODES } from '../lib/enums/exitCodes.js';
|
|
8
|
+
import { makeYargsHandlerWithUsageTracking } from '../lib/yargs/makeYargsHandlerWithUsageTracking.js';
|
|
9
|
+
import { makeYargsBuilder } from '../lib/yargsUtils.js';
|
|
10
|
+
import { uiLogger } from '../lib/ui/logger.js';
|
|
11
|
+
const HTTP_METHODS = ['GET', 'POST', 'PUT', 'PATCH', 'DELETE'];
|
|
12
|
+
const command = 'api <endpoint>';
|
|
13
|
+
const describe = commands.api.describe;
|
|
14
|
+
function parseRequestData(data) {
|
|
15
|
+
try {
|
|
16
|
+
return JSON.parse(data);
|
|
17
|
+
}
|
|
18
|
+
catch {
|
|
19
|
+
return undefined;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
function resolveMethod(args) {
|
|
23
|
+
if (args.method) {
|
|
24
|
+
return args.method;
|
|
25
|
+
}
|
|
26
|
+
return args.data ? 'POST' : 'GET';
|
|
27
|
+
}
|
|
28
|
+
function normalizeEndpoint(endpoint) {
|
|
29
|
+
return endpoint.startsWith('/') ? endpoint.slice(1) : endpoint;
|
|
30
|
+
}
|
|
31
|
+
async function handler(args) {
|
|
32
|
+
const { endpoint, data, derivedAccountId, json: formatOutputAsJson, exit, addUsageMetadata, } = args;
|
|
33
|
+
const method = resolveMethod(args);
|
|
34
|
+
addUsageMetadata({ action: method });
|
|
35
|
+
let parsedData;
|
|
36
|
+
if (data) {
|
|
37
|
+
parsedData = parseRequestData(data);
|
|
38
|
+
if (parsedData === undefined) {
|
|
39
|
+
uiLogger.error(commands.api.errors.invalidJson);
|
|
40
|
+
return exit(EXIT_CODES.ERROR);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
const normalizedEndpoint = normalizeEndpoint(endpoint);
|
|
44
|
+
const env = getConfigAccountEnvironment(derivedAccountId);
|
|
45
|
+
const baseUrl = getHubSpotApiOrigin(env);
|
|
46
|
+
const fullUrl = `${baseUrl}/${normalizedEndpoint}`;
|
|
47
|
+
if (!formatOutputAsJson) {
|
|
48
|
+
uiLogger.log(commands.api.requestLog(method, fullUrl));
|
|
49
|
+
if (parsedData) {
|
|
50
|
+
uiLogger.log(commands.api.requestBodyLog(JSON.stringify(parsedData)));
|
|
51
|
+
}
|
|
52
|
+
uiLogger.log('');
|
|
53
|
+
}
|
|
54
|
+
try {
|
|
55
|
+
const requestOptions = {
|
|
56
|
+
url: normalizedEndpoint,
|
|
57
|
+
};
|
|
58
|
+
if (parsedData) {
|
|
59
|
+
requestOptions.data = parsedData;
|
|
60
|
+
requestOptions.headers = { 'Content-Type': 'application/json' };
|
|
61
|
+
}
|
|
62
|
+
let response;
|
|
63
|
+
switch (method) {
|
|
64
|
+
case 'GET':
|
|
65
|
+
response = await http.get(derivedAccountId, requestOptions);
|
|
66
|
+
break;
|
|
67
|
+
case 'POST':
|
|
68
|
+
response = await http.post(derivedAccountId, requestOptions);
|
|
69
|
+
break;
|
|
70
|
+
case 'PUT':
|
|
71
|
+
response = await http.put(derivedAccountId, requestOptions);
|
|
72
|
+
break;
|
|
73
|
+
case 'PATCH':
|
|
74
|
+
response = await http.patch(derivedAccountId, requestOptions);
|
|
75
|
+
break;
|
|
76
|
+
case 'DELETE':
|
|
77
|
+
response = await http.delete(derivedAccountId, requestOptions);
|
|
78
|
+
break;
|
|
79
|
+
}
|
|
80
|
+
if (response !== undefined) {
|
|
81
|
+
const responseData = response.data;
|
|
82
|
+
if (formatOutputAsJson) {
|
|
83
|
+
uiLogger.json(responseData);
|
|
84
|
+
}
|
|
85
|
+
else {
|
|
86
|
+
uiLogger.log(commands.api.responseLog);
|
|
87
|
+
uiLogger.log(JSON.stringify(responseData, null, 2));
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
catch (error) {
|
|
92
|
+
const errorContext = new ApiErrorContext({
|
|
93
|
+
accountId: derivedAccountId,
|
|
94
|
+
request: `api ${method} ${endpoint}`,
|
|
95
|
+
});
|
|
96
|
+
if (!isHubSpotHttpError(error)) {
|
|
97
|
+
logError(error, errorContext);
|
|
98
|
+
return exit(EXIT_CODES.ERROR);
|
|
99
|
+
}
|
|
100
|
+
debugError(error, errorContext);
|
|
101
|
+
const errorData = error.data;
|
|
102
|
+
if (formatOutputAsJson && errorData) {
|
|
103
|
+
uiLogger.json(errorData);
|
|
104
|
+
}
|
|
105
|
+
else if (errorData) {
|
|
106
|
+
if (error.status && error.statusText) {
|
|
107
|
+
uiLogger.error(commands.api.errors.statusLine(error.status, error.statusText));
|
|
108
|
+
}
|
|
109
|
+
uiLogger.log(JSON.stringify(errorData, null, 2));
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
if (error.status && error.statusText) {
|
|
113
|
+
uiLogger.error(commands.api.errors.statusLine(error.status, error.statusText));
|
|
114
|
+
}
|
|
115
|
+
uiLogger.error(error.message);
|
|
116
|
+
}
|
|
117
|
+
return exit(EXIT_CODES.ERROR);
|
|
118
|
+
}
|
|
119
|
+
return exit(EXIT_CODES.SUCCESS);
|
|
120
|
+
}
|
|
121
|
+
function apiBuilder(yargs) {
|
|
122
|
+
yargs.positional('endpoint', {
|
|
123
|
+
describe: commands.api.positionals.endpoint.describe,
|
|
124
|
+
type: 'string',
|
|
125
|
+
});
|
|
126
|
+
yargs.option('method', {
|
|
127
|
+
alias: 'X',
|
|
128
|
+
describe: commands.api.options.method.describe,
|
|
129
|
+
type: 'string',
|
|
130
|
+
choices: [...HTTP_METHODS, ...HTTP_METHODS.map(m => m.toLowerCase())],
|
|
131
|
+
coerce: (value) => value.toUpperCase(),
|
|
132
|
+
});
|
|
133
|
+
yargs.option('data', {
|
|
134
|
+
describe: commands.api.options.data.describe,
|
|
135
|
+
type: 'string',
|
|
136
|
+
});
|
|
137
|
+
yargs.example([
|
|
138
|
+
['$0 api /crm/v3/objects/contacts', 'Fetch contacts using GET'],
|
|
139
|
+
[
|
|
140
|
+
'$0 api /crm/v3/objects/contacts -X POST --data \'{"properties":{"email":"test@example.com"}}\'',
|
|
141
|
+
'Create a contact',
|
|
142
|
+
],
|
|
143
|
+
['$0 api /crm/v3/objects/deals/123', 'Fetch a specific deal'],
|
|
144
|
+
[
|
|
145
|
+
'$0 api /crm/v3/objects/contacts -a my-sandbox',
|
|
146
|
+
'Fetch contacts from a specific account',
|
|
147
|
+
],
|
|
148
|
+
]);
|
|
149
|
+
return yargs;
|
|
150
|
+
}
|
|
151
|
+
const builder = makeYargsBuilder(apiBuilder, command, commands.api.verboseDescribe, {
|
|
152
|
+
useGlobalOptions: true,
|
|
153
|
+
useConfigOptions: true,
|
|
154
|
+
useAccountOptions: true,
|
|
155
|
+
useEnvironmentOptions: true,
|
|
156
|
+
useJSONOutputOptions: true,
|
|
157
|
+
});
|
|
158
|
+
const apiCommand = {
|
|
159
|
+
command,
|
|
160
|
+
describe,
|
|
161
|
+
builder,
|
|
162
|
+
handler: makeYargsHandlerWithUsageTracking('api', handler),
|
|
163
|
+
};
|
|
164
|
+
export default apiCommand;
|