@hubspot/cli 7.5.1-experimental.0 → 7.5.2-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (379) hide show
  1. package/api/migrate.d.ts +12 -3
  2. package/api/migrate.js +9 -2
  3. package/bin/cli.js +96 -93
  4. package/commands/account/auth.d.ts +6 -0
  5. package/commands/account/auth.js +167 -0
  6. package/commands/account/clean.d.ts +3 -7
  7. package/commands/account/clean.js +54 -14
  8. package/commands/account/createOverride.d.ts +6 -0
  9. package/commands/account/createOverride.js +121 -0
  10. package/commands/account/info.d.ts +3 -7
  11. package/commands/account/info.js +51 -9
  12. package/commands/account/list.d.ts +3 -7
  13. package/commands/account/list.js +38 -13
  14. package/commands/account/remove.d.ts +3 -7
  15. package/commands/account/remove.js +57 -11
  16. package/commands/account/removeOverride.d.ts +6 -0
  17. package/commands/account/removeOverride.js +93 -0
  18. package/commands/account/rename.d.ts +3 -7
  19. package/commands/account/rename.js +16 -9
  20. package/commands/account/use.d.ts +5 -9
  21. package/commands/account/use.js +39 -9
  22. package/commands/account.d.ts +3 -4
  23. package/commands/account.js +33 -53
  24. package/commands/app/migrate.d.ts +5 -6
  25. package/commands/app/migrate.js +60 -44
  26. package/commands/app/secret/add.d.ts +7 -0
  27. package/commands/app/secret/add.js +64 -0
  28. package/commands/app/secret/delete.d.ts +8 -0
  29. package/commands/app/secret/delete.js +87 -0
  30. package/commands/app/secret/list.d.ts +6 -0
  31. package/commands/app/secret/list.js +64 -0
  32. package/commands/app/secret/update.d.ts +7 -0
  33. package/commands/app/secret/update.js +77 -0
  34. package/commands/app/secret.d.ts +3 -0
  35. package/commands/app/secret.js +30 -0
  36. package/commands/app.d.ts +2 -5
  37. package/commands/app.js +10 -10
  38. package/commands/auth.d.ts +3 -7
  39. package/commands/auth.js +20 -25
  40. package/commands/cms/convertFields.d.ts +7 -1
  41. package/commands/cms/convertFields.js +57 -41
  42. package/commands/cms/getReactModule.d.ts +7 -1
  43. package/commands/cms/getReactModule.js +52 -34
  44. package/commands/cms/lighthouseScore.d.ts +8 -1
  45. package/commands/cms/lighthouseScore.js +133 -100
  46. package/commands/cms.d.ts +3 -1
  47. package/commands/cms.js +22 -16
  48. package/commands/completion.d.ts +3 -1
  49. package/commands/completion.js +23 -13
  50. package/commands/config/migrate.d.ts +6 -0
  51. package/commands/config/migrate.js +75 -0
  52. package/commands/config/set.d.ts +10 -1
  53. package/commands/config/set.js +61 -32
  54. package/commands/config.d.ts +3 -1
  55. package/commands/config.js +19 -11
  56. package/commands/create/api-sample.d.ts +3 -1
  57. package/commands/create/api-sample.js +34 -36
  58. package/commands/create/app.d.ts +3 -1
  59. package/commands/create/app.js +9 -7
  60. package/commands/create/function.d.ts +3 -1
  61. package/commands/create/function.js +11 -10
  62. package/commands/create/index.d.ts +5 -1
  63. package/commands/create/index.js +23 -11
  64. package/commands/create/module.d.ts +3 -1
  65. package/commands/create/module.js +14 -13
  66. package/commands/create/react-app.d.ts +3 -1
  67. package/commands/create/react-app.js +10 -7
  68. package/commands/create/template.d.ts +3 -1
  69. package/commands/create/template.js +14 -14
  70. package/commands/create/vue-app.d.ts +3 -1
  71. package/commands/create/vue-app.js +10 -7
  72. package/commands/create/webpack-serverless.d.ts +3 -1
  73. package/commands/create/webpack-serverless.js +10 -7
  74. package/commands/create/website-theme.d.ts +3 -1
  75. package/commands/create/website-theme.js +10 -9
  76. package/commands/create.d.ts +4 -24
  77. package/commands/create.js +62 -75
  78. package/commands/customObject/create.d.ts +4 -9
  79. package/commands/customObject/create.js +17 -10
  80. package/commands/customObject/schema/create.d.ts +4 -9
  81. package/commands/customObject/schema/create.js +18 -11
  82. package/commands/customObject/schema/delete.d.ts +4 -9
  83. package/commands/customObject/schema/delete.js +21 -11
  84. package/commands/customObject/schema/fetch-all.d.ts +4 -9
  85. package/commands/customObject/schema/fetch-all.js +19 -11
  86. package/commands/customObject/schema/fetch.d.ts +4 -9
  87. package/commands/customObject/schema/fetch.js +19 -11
  88. package/commands/customObject/schema/list.d.ts +4 -8
  89. package/commands/customObject/schema/list.js +17 -10
  90. package/commands/customObject/schema/update.d.ts +4 -9
  91. package/commands/customObject/schema/update.js +18 -11
  92. package/commands/customObject/schema.d.ts +3 -5
  93. package/commands/customObject/schema.js +27 -54
  94. package/commands/customObject.d.ts +3 -4
  95. package/commands/customObject.js +20 -48
  96. package/commands/doctor.d.ts +6 -8
  97. package/commands/doctor.js +30 -22
  98. package/commands/feedback.d.ts +4 -1
  99. package/commands/feedback.js +38 -48
  100. package/commands/fetch.d.ts +12 -1
  101. package/commands/fetch.js +49 -34
  102. package/commands/filemanager/fetch.d.ts +4 -9
  103. package/commands/filemanager/fetch.js +18 -11
  104. package/commands/filemanager/upload.d.ts +4 -9
  105. package/commands/filemanager/upload.js +17 -11
  106. package/commands/filemanager.d.ts +3 -4
  107. package/commands/filemanager.js +18 -42
  108. package/commands/function/deploy.d.ts +6 -1
  109. package/commands/function/deploy.js +70 -50
  110. package/commands/function/list.d.ts +6 -1
  111. package/commands/function/list.js +44 -32
  112. package/commands/function/server.d.ts +10 -1
  113. package/commands/function/server.js +49 -38
  114. package/commands/function.d.ts +5 -1
  115. package/commands/function.js +22 -11
  116. package/commands/hubdb/clear.d.ts +4 -9
  117. package/commands/hubdb/clear.js +21 -15
  118. package/commands/hubdb/create.d.ts +4 -9
  119. package/commands/hubdb/create.js +23 -17
  120. package/commands/hubdb/delete.d.ts +4 -9
  121. package/commands/hubdb/delete.js +24 -16
  122. package/commands/hubdb/fetch.d.ts +4 -9
  123. package/commands/hubdb/fetch.js +20 -14
  124. package/commands/hubdb/list.d.ts +4 -0
  125. package/commands/hubdb/list.js +83 -0
  126. package/commands/hubdb.d.ts +3 -2
  127. package/commands/hubdb.js +24 -47
  128. package/commands/init.d.ts +3 -7
  129. package/commands/init.js +25 -23
  130. package/commands/lint.d.ts +6 -4
  131. package/commands/lint.js +42 -44
  132. package/commands/list.d.ts +3 -7
  133. package/commands/list.js +21 -16
  134. package/commands/logs.d.ts +10 -1
  135. package/commands/logs.js +53 -45
  136. package/commands/module/marketplace-validate.d.ts +6 -1
  137. package/commands/module/marketplace-validate.js +39 -30
  138. package/commands/module.d.ts +3 -1
  139. package/commands/module.js +23 -12
  140. package/commands/mv.d.ts +3 -7
  141. package/commands/mv.js +20 -15
  142. package/commands/open.d.ts +3 -7
  143. package/commands/open.js +20 -15
  144. package/commands/project/add.d.ts +8 -9
  145. package/commands/project/add.js +53 -85
  146. package/commands/project/cloneApp.d.ts +6 -8
  147. package/commands/project/cloneApp.js +51 -47
  148. package/commands/project/create.d.ts +4 -1
  149. package/commands/project/create.js +132 -81
  150. package/commands/project/deploy.d.ts +4 -6
  151. package/commands/project/deploy.js +66 -36
  152. package/commands/project/dev/deprecatedFlow.d.ts +8 -2
  153. package/commands/project/dev/deprecatedFlow.js +41 -26
  154. package/commands/project/dev/index.d.ts +4 -5
  155. package/commands/project/dev/index.js +103 -33
  156. package/commands/project/dev/unifiedFlow.d.ts +11 -2
  157. package/commands/project/dev/unifiedFlow.js +85 -46
  158. package/commands/project/download.d.ts +3 -7
  159. package/commands/project/download.js +18 -19
  160. package/commands/project/installDeps.d.ts +6 -1
  161. package/commands/project/installDeps.js +48 -32
  162. package/commands/project/listBuilds.d.ts +3 -7
  163. package/commands/project/listBuilds.js +32 -27
  164. package/commands/project/logs.d.ts +10 -1
  165. package/commands/project/logs.js +73 -65
  166. package/commands/project/migrate.d.ts +7 -8
  167. package/commands/project/migrate.js +49 -26
  168. package/commands/project/migrateApp.d.ts +3 -8
  169. package/commands/project/migrateApp.js +23 -20
  170. package/commands/project/open.d.ts +3 -7
  171. package/commands/project/open.js +29 -21
  172. package/commands/project/profile/add.d.ts +7 -0
  173. package/commands/project/profile/add.js +209 -0
  174. package/commands/project/profile/delete.d.ts +6 -0
  175. package/commands/project/profile/delete.js +123 -0
  176. package/commands/project/profile.d.ts +3 -0
  177. package/commands/project/profile.js +25 -0
  178. package/commands/project/upload.d.ts +10 -1
  179. package/commands/project/upload.js +110 -56
  180. package/commands/project/watch.d.ts +6 -1
  181. package/commands/project/watch.js +95 -61
  182. package/commands/project.d.ts +3 -1
  183. package/commands/project.js +47 -37
  184. package/commands/remove.d.ts +3 -7
  185. package/commands/remove.js +22 -20
  186. package/commands/sandbox/create.d.ts +4 -9
  187. package/commands/sandbox/create.js +27 -21
  188. package/commands/sandbox/delete.d.ts +4 -9
  189. package/commands/sandbox/delete.js +35 -29
  190. package/commands/sandbox.d.ts +3 -4
  191. package/commands/sandbox.js +18 -44
  192. package/commands/secret/addSecret.d.ts +4 -9
  193. package/commands/secret/addSecret.js +21 -15
  194. package/commands/secret/deleteSecret.d.ts +4 -9
  195. package/commands/secret/deleteSecret.js +28 -18
  196. package/commands/secret/listSecret.d.ts +4 -9
  197. package/commands/secret/listSecret.js +19 -13
  198. package/commands/secret/updateSecret.d.ts +4 -9
  199. package/commands/secret/updateSecret.js +25 -17
  200. package/commands/secret.d.ts +3 -4
  201. package/commands/secret.js +23 -49
  202. package/commands/theme/generate-selectors.d.ts +3 -7
  203. package/commands/theme/generate-selectors.js +20 -16
  204. package/commands/theme/marketplace-validate.d.ts +4 -9
  205. package/commands/theme/marketplace-validate.js +22 -18
  206. package/commands/theme/preview.d.ts +4 -9
  207. package/commands/theme/preview.js +36 -30
  208. package/commands/theme.d.ts +3 -4
  209. package/commands/theme.js +22 -48
  210. package/commands/upload.d.ts +12 -1
  211. package/commands/upload.js +116 -135
  212. package/commands/watch.d.ts +14 -1
  213. package/commands/watch.js +74 -76
  214. package/lang/en.d.ts +3094 -0
  215. package/lang/en.js +2957 -3316
  216. package/lang/en.lyaml +89 -214
  217. package/lib/accountTypes.d.ts +1 -0
  218. package/lib/accountTypes.js +11 -0
  219. package/lib/app/migrate.d.ts +33 -4
  220. package/lib/app/migrate.js +171 -86
  221. package/lib/app/migrate_legacy.d.ts +2 -2
  222. package/lib/app/migrate_legacy.js +12 -11
  223. package/lib/app/urls.d.ts +16 -0
  224. package/lib/app/urls.js +16 -0
  225. package/lib/buildAccount.d.ts +1 -2
  226. package/lib/buildAccount.js +11 -10
  227. package/lib/commonOpts.d.ts +4 -7
  228. package/lib/commonOpts.js +47 -19
  229. package/lib/configMigrate.d.ts +2 -0
  230. package/lib/configMigrate.js +83 -0
  231. package/lib/configOptions.d.ts +4 -0
  232. package/lib/configOptions.js +41 -45
  233. package/lib/constants.d.ts +28 -0
  234. package/lib/constants.js +29 -1
  235. package/lib/dependencyManagement.d.ts +0 -5
  236. package/lib/dependencyManagement.js +14 -40
  237. package/lib/doctor/Diagnosis.d.ts +1 -2
  238. package/lib/doctor/Diagnosis.js +19 -16
  239. package/lib/doctor/DiagnosticInfoBuilder.d.ts +2 -1
  240. package/lib/doctor/DiagnosticInfoBuilder.js +10 -9
  241. package/lib/doctor/Doctor.d.ts +1 -0
  242. package/lib/doctor/Doctor.js +59 -45
  243. package/lib/errorHandlers/index.js +6 -7
  244. package/lib/errorHandlers/suppressError.js +18 -26
  245. package/lib/filesystem.d.ts +1 -1
  246. package/lib/generateSelectors.js +3 -6
  247. package/lib/hasFeature.d.ts +3 -1
  248. package/lib/interpolation.d.ts +2 -3
  249. package/lib/lang.d.ts +2 -3
  250. package/lib/marketplaceValidate.d.ts +12 -2
  251. package/lib/marketplaceValidate.js +22 -29
  252. package/lib/middleware/__test__/yargsChecksMiddleware.test.js +3 -3
  253. package/lib/middleware/autoUpdateMiddleware.d.ts +1 -0
  254. package/lib/middleware/autoUpdateMiddleware.js +89 -0
  255. package/lib/middleware/configMiddleware.js +23 -3
  256. package/lib/middleware/fireAlarmMiddleware.d.ts +4 -0
  257. package/lib/middleware/fireAlarmMiddleware.js +125 -0
  258. package/lib/middleware/yargsChecksMiddleware.js +2 -2
  259. package/lib/npm.d.ts +9 -0
  260. package/lib/npm.js +36 -0
  261. package/lib/oauth.js +1 -2
  262. package/lib/process.js +1 -2
  263. package/lib/projectProfiles.d.ts +6 -0
  264. package/lib/projectProfiles.js +65 -0
  265. package/lib/projects/ProjectLogsManager.d.ts +1 -1
  266. package/lib/projects/ProjectLogsManager.js +16 -21
  267. package/lib/projects/add/legacyAddComponent.d.ts +5 -0
  268. package/lib/projects/add/legacyAddComponent.js +48 -0
  269. package/lib/projects/add/v3AddComponent.d.ts +8 -0
  270. package/lib/projects/add/v3AddComponent.js +85 -0
  271. package/lib/projects/buildAndDeploy.js +45 -41
  272. package/lib/projects/components.d.ts +2 -0
  273. package/lib/projects/components.js +82 -0
  274. package/lib/projects/config.d.ts +9 -0
  275. package/lib/projects/config.js +79 -0
  276. package/lib/projects/create/index.d.ts +23 -0
  277. package/lib/projects/create/index.js +33 -0
  278. package/lib/projects/create/legacy.d.ts +6 -0
  279. package/lib/projects/{create.js → create/legacy.js} +23 -15
  280. package/lib/projects/create/v3.d.ts +27 -0
  281. package/lib/projects/create/v3.js +158 -0
  282. package/lib/projects/ensureProjectExists.d.ts +11 -0
  283. package/lib/projects/ensureProjectExists.js +97 -0
  284. package/lib/projects/localDev/AppDevModeInterface.d.ts +27 -0
  285. package/lib/projects/localDev/AppDevModeInterface.js +186 -0
  286. package/lib/{DevServerManager.d.ts → projects/localDev/DevServerManager.d.ts} +1 -1
  287. package/lib/{DevServerManager.js → projects/localDev/DevServerManager.js} +6 -6
  288. package/lib/projects/localDev/DevServerManagerV2.d.ts +22 -0
  289. package/lib/{DevServerManagerV2.js → projects/localDev/DevServerManagerV2.js} +22 -19
  290. package/lib/projects/localDev/LocalDevLogger.d.ts +30 -0
  291. package/lib/projects/localDev/LocalDevLogger.js +159 -0
  292. package/lib/{LocalDevManager.d.ts → projects/localDev/LocalDevManager.d.ts} +1 -1
  293. package/lib/{LocalDevManager.js → projects/localDev/LocalDevManager.js} +57 -83
  294. package/lib/projects/localDev/LocalDevProcess.d.ts +34 -0
  295. package/lib/projects/localDev/LocalDevProcess.js +201 -0
  296. package/lib/projects/localDev/LocalDevState.d.ts +50 -0
  297. package/lib/projects/localDev/LocalDevState.js +119 -0
  298. package/lib/projects/localDev/LocalDevWatcher.d.ts +10 -0
  299. package/lib/projects/localDev/LocalDevWatcher.js +53 -0
  300. package/lib/projects/localDev/LocalDevWebsocketServer.d.ts +20 -0
  301. package/lib/projects/localDev/LocalDevWebsocketServer.js +131 -0
  302. package/lib/{localDev.d.ts → projects/localDev/helpers.d.ts} +6 -4
  303. package/lib/{localDev.js → projects/localDev/helpers.js} +127 -114
  304. package/lib/projects/ui.d.ts +1 -0
  305. package/lib/projects/ui.js +15 -0
  306. package/lib/projects/upload.d.ts +14 -2
  307. package/lib/projects/upload.js +25 -35
  308. package/lib/projects/urls.d.ts +2 -0
  309. package/lib/projects/urls.js +14 -2
  310. package/lib/projects/watch.d.ts +1 -1
  311. package/lib/projects/watch.js +21 -18
  312. package/lib/prompts/accountNamePrompt.js +16 -13
  313. package/lib/prompts/accountsPrompt.js +1 -2
  314. package/lib/prompts/cmsFieldPrompt.js +1 -2
  315. package/lib/prompts/createApiSamplePrompt.d.ts +2 -10
  316. package/lib/prompts/createApiSamplePrompt.js +4 -5
  317. package/lib/prompts/createFunctionPrompt.js +13 -14
  318. package/lib/prompts/createModulePrompt.js +8 -9
  319. package/lib/prompts/createProjectPrompt.d.ts +20 -4
  320. package/lib/prompts/createProjectPrompt.js +41 -13
  321. package/lib/prompts/createTemplatePrompt.d.ts +22 -4
  322. package/lib/prompts/createTemplatePrompt.js +1 -2
  323. package/lib/prompts/downloadProjectPrompt.js +3 -4
  324. package/lib/prompts/installAppPrompt.d.ts +1 -0
  325. package/lib/prompts/installAppPrompt.js +35 -0
  326. package/lib/prompts/personalAccessKeyPrompt.js +17 -18
  327. package/lib/prompts/previewPrompt.js +5 -6
  328. package/lib/prompts/projectAddPrompt.d.ts +5 -1
  329. package/lib/prompts/projectAddPrompt.js +35 -8
  330. package/lib/prompts/projectDevTargetAccountPrompt.d.ts +6 -1
  331. package/lib/prompts/projectDevTargetAccountPrompt.js +15 -16
  332. package/lib/prompts/projectNamePrompt.js +5 -6
  333. package/lib/prompts/projectsLogsPrompt.js +3 -2
  334. package/lib/prompts/promptUtils.d.ts +3 -2
  335. package/lib/prompts/promptUtils.js +2 -1
  336. package/lib/prompts/sandboxesPrompt.js +5 -6
  337. package/lib/prompts/secretPrompt.js +2 -3
  338. package/lib/prompts/selectAppPrompt.d.ts +2 -0
  339. package/lib/prompts/selectAppPrompt.js +40 -0
  340. package/lib/prompts/selectHubDBTablePrompt.js +11 -8
  341. package/lib/prompts/{selectPublicAppPrompt.d.ts → selectPublicAppForMigrationPrompt.d.ts} +1 -1
  342. package/lib/prompts/{selectPublicAppPrompt.js → selectPublicAppForMigrationPrompt.js} +8 -9
  343. package/lib/prompts/setAsDefaultAccountPrompt.js +11 -2
  344. package/lib/prompts/uploadPrompt.js +4 -5
  345. package/lib/sandboxSync.js +15 -14
  346. package/lib/sandboxes.js +12 -13
  347. package/lib/serverlessLogs.js +4 -6
  348. package/lib/testUtils.d.ts +3 -3
  349. package/lib/testUtils.js +8 -9
  350. package/lib/ui/SpinniesManager.d.ts +1 -1
  351. package/lib/ui/boxen.d.ts +5 -0
  352. package/lib/ui/boxen.js +30 -0
  353. package/lib/ui/git.js +8 -9
  354. package/lib/ui/index.d.ts +4 -2
  355. package/lib/ui/index.js +20 -17
  356. package/lib/ui/logger.d.ts +10 -0
  357. package/lib/ui/logger.js +15 -0
  358. package/lib/ui/serverlessFunctionLogs.js +2 -3
  359. package/lib/ui/spinniesUtils.d.ts +5 -5
  360. package/lib/upload.d.ts +1 -1
  361. package/lib/validation.js +4 -5
  362. package/lib/yargsUtils.d.ts +5 -1
  363. package/lib/yargsUtils.js +6 -0
  364. package/package.json +17 -11
  365. package/types/Cms.d.ts +30 -0
  366. package/types/Cms.js +2 -0
  367. package/types/LocalDev.d.ts +34 -0
  368. package/types/LocalDev.js +2 -0
  369. package/types/Projects.d.ts +19 -2
  370. package/types/Prompts.d.ts +0 -7
  371. package/types/Yargs.d.ts +14 -14
  372. package/lib/DevServerManagerV2.d.ts +0 -33
  373. package/lib/LocalDevManagerV2.d.ts +0 -64
  374. package/lib/LocalDevManagerV2.js +0 -377
  375. package/lib/projects/create.d.ts +0 -5
  376. package/lib/projects/index.d.ts +0 -21
  377. package/lib/projects/index.js +0 -194
  378. package/lib/prompts/installPublicAppPrompt.d.ts +0 -1
  379. package/lib/prompts/installPublicAppPrompt.js +0 -40
package/lib/ui/index.js CHANGED
@@ -15,6 +15,7 @@ exports.uiDeprecatedTag = uiDeprecatedTag;
15
15
  exports.uiCommandDisabledBanner = uiCommandDisabledBanner;
16
16
  exports.uiDeprecatedDescription = uiDeprecatedDescription;
17
17
  exports.uiDeprecatedMessage = uiDeprecatedMessage;
18
+ exports.indent = indent;
18
19
  const chalk_1 = __importDefault(require("chalk"));
19
20
  const config_1 = require("@hubspot/local-dev-lib/config");
20
21
  const logger_1 = require("@hubspot/local-dev-lib/logger");
@@ -60,7 +61,10 @@ function uiAccountDescription(accountId, bold = true) {
60
61
  if (account && account.accountType) {
61
62
  message = `${account.name} [${HUBSPOT_ACCOUNT_TYPE_STRINGS[account.accountType]}] (${accountId})`;
62
63
  }
63
- return bold ? chalk_1.default.bold(message) : message || '';
64
+ else {
65
+ message = accountId ? accountId.toString() : '';
66
+ }
67
+ return bold ? chalk_1.default.bold(message) : message;
64
68
  }
65
69
  function uiInfoSection(title, logContent) {
66
70
  uiLine();
@@ -78,10 +82,9 @@ function uiCommandReference(command, withQuotes = true) {
78
82
  : commandReference);
79
83
  }
80
84
  function uiFeatureHighlight(features, title) {
81
- const i18nKey = 'lib.ui.featureHighlight';
82
- uiInfoSection(title ? title : (0, lang_1.i18n)(`${i18nKey}.defaultTitle`), () => {
85
+ uiInfoSection(title ? title : (0, lang_1.i18n)(`lib.ui.featureHighlight.defaultTitle`), () => {
83
86
  features.forEach((c, i) => {
84
- const featureKey = `${i18nKey}.featureKeys.${c}`;
87
+ const featureKey = `lib.ui.featureHighlight.featureKeys.${c}`;
85
88
  const message = (0, lang_1.i18n)(`${featureKey}.message`, {
86
89
  command: uiCommandReference((0, lang_1.i18n)(`${featureKey}.command`)),
87
90
  link: uiLink((0, lang_1.i18n)(`${featureKey}.linkText`), (0, lang_1.i18n)(`${featureKey}.url`)),
@@ -94,9 +97,8 @@ function uiFeatureHighlight(features, title) {
94
97
  });
95
98
  }
96
99
  function uiBetaTag(message, log = true) {
97
- const i18nKey = 'lib.ui';
98
100
  const terminalUISupport = getTerminalUISupport();
99
- const tag = (0, lang_1.i18n)(`${i18nKey}.betaTag`);
101
+ const tag = (0, lang_1.i18n)(`lib.ui.betaTag`);
100
102
  const result = `${terminalUISupport.color ? chalk_1.default.hex(exports.UI_COLORS.SORBET)(tag) : tag} ${message}`;
101
103
  if (log) {
102
104
  logger_1.logger.log(result);
@@ -105,21 +107,20 @@ function uiBetaTag(message, log = true) {
105
107
  return result;
106
108
  }
107
109
  function uiDeprecatedTag(message, log = true) {
108
- const i18nKey = 'lib.ui';
109
110
  const terminalUISupport = getTerminalUISupport();
110
- const tag = (0, lang_1.i18n)(`${i18nKey}.deprecatedTag`);
111
+ const tag = (0, lang_1.i18n)(`lib.ui.deprecatedTag`);
111
112
  const result = `${terminalUISupport.color ? chalk_1.default.yellow(tag) : tag} ${message}`;
112
113
  if (log) {
113
114
  logger_1.logger.log(result);
115
+ return;
114
116
  }
115
117
  return result;
116
118
  }
117
119
  function uiCommandDisabledBanner(command, url, message) {
118
- const i18nKey = 'lib.ui';
119
120
  const tag = message ||
120
- (0, lang_1.i18n)(`${i18nKey}.disabledMessage`, {
121
+ (0, lang_1.i18n)(`lib.ui.disabledMessage`, {
121
122
  command: uiCommandReference(command),
122
- url: url ? uiLink((0, lang_1.i18n)(`${i18nKey}.disabledUrlText`), url) : '',
123
+ url: url ? uiLink((0, lang_1.i18n)(`lib.ui.disabledUrlText`), url) : '',
123
124
  npmCommand: uiCommandReference('npm i -g @hubspot/cli@latest'),
124
125
  });
125
126
  logger_1.logger.log();
@@ -129,22 +130,24 @@ function uiCommandDisabledBanner(command, url, message) {
129
130
  logger_1.logger.log();
130
131
  }
131
132
  function uiDeprecatedDescription(message, command, url) {
132
- const i18nKey = 'lib.ui';
133
- const tag = (0, lang_1.i18n)(`${i18nKey}.deprecatedDescription`, {
133
+ const tag = (0, lang_1.i18n)(`lib.ui.deprecatedDescription`, {
134
134
  message,
135
135
  command: uiCommandReference(command),
136
- url: url ? uiLink((0, lang_1.i18n)(`${i18nKey}.deprecatedUrlText`), url) : '',
136
+ url: url ? uiLink((0, lang_1.i18n)(`lib.ui.deprecatedUrlText`), url) : '',
137
137
  });
138
138
  return uiDeprecatedTag(tag);
139
139
  }
140
140
  function uiDeprecatedMessage(command, url, message) {
141
- const i18nKey = 'lib.ui';
142
141
  const tag = message ||
143
- (0, lang_1.i18n)(`${i18nKey}.deprecatedMessage`, {
142
+ (0, lang_1.i18n)(`lib.ui.deprecatedMessage`, {
144
143
  command: uiCommandReference(command),
145
- url: url ? uiLink((0, lang_1.i18n)(`${i18nKey}.deprecatedUrlText`), url) : '',
144
+ url: url ? uiLink((0, lang_1.i18n)(`lib.ui.deprecatedUrlText`), url) : '',
146
145
  });
147
146
  logger_1.logger.log();
148
147
  uiDeprecatedTag(tag);
149
148
  logger_1.logger.log();
150
149
  }
150
+ function indent(level) {
151
+ const indentation = ' ';
152
+ return indentation.repeat(level);
153
+ }
@@ -0,0 +1,10 @@
1
+ export declare const uiLogger: {
2
+ log: (message: string) => void;
3
+ error: (message: string) => void;
4
+ warn: (message: string) => void;
5
+ success: (message: string) => void;
6
+ info: (message: string) => void;
7
+ debug: (...args: any[]) => void;
8
+ group: (message: string) => void;
9
+ groupEnd: () => void;
10
+ };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.uiLogger = void 0;
4
+ const logger_1 = require("@hubspot/local-dev-lib/logger");
5
+ // Wrapper around LDL logger to provide type checking
6
+ exports.uiLogger = {
7
+ log: (message) => logger_1.logger.log(message),
8
+ error: (message) => logger_1.logger.error(message),
9
+ warn: (message) => logger_1.logger.warn(message),
10
+ success: (message) => logger_1.logger.success(message),
11
+ info: (message) => logger_1.logger.info(message),
12
+ debug: logger_1.logger.debug,
13
+ group: (message) => logger_1.logger.group(message),
14
+ groupEnd: () => logger_1.logger.groupEnd(),
15
+ };
@@ -8,7 +8,6 @@ const moment_1 = __importDefault(require("moment"));
8
8
  const chalk_1 = __importDefault(require("chalk"));
9
9
  const logger_1 = require("@hubspot/local-dev-lib/logger");
10
10
  const lang_1 = require("../lang");
11
- const i18nKey = 'lib.ui.serverlessFunctionLogs';
12
11
  const SEPARATOR = ' - ';
13
12
  const LOG_STATUS_COLORS = {
14
13
  SUCCESS: logger_1.Styles.success,
@@ -63,7 +62,7 @@ function processLog(log, options) {
63
62
  return logHandler[log.status](log, options);
64
63
  }
65
64
  catch (e) {
66
- logger_1.logger.error((0, lang_1.i18n)(`${i18nKey}.unableToProcessLog`, {
65
+ logger_1.logger.error((0, lang_1.i18n)(`lib.ui.serverlessFunctionLogs.unableToProcessLog`, {
67
66
  log: JSON.stringify(log),
68
67
  }));
69
68
  }
@@ -77,7 +76,7 @@ function isLogsResponse(logsResp) {
77
76
  function processLogs(logsResp, options) {
78
77
  const isLogsResp = isLogsResponse(logsResp);
79
78
  if (!logsResp || (isLogsResp && logsResp.results.length === 0)) {
80
- return (0, lang_1.i18n)(`${i18nKey}.noLogsFound`);
79
+ return (0, lang_1.i18n)(`lib.ui.serverlessFunctionLogs.noLogsFound`);
81
80
  }
82
81
  else if (isLogsResp) {
83
82
  return logsResp
@@ -6,14 +6,14 @@ export type Spinner = {
6
6
  };
7
7
  export type SpinnerOptions = {
8
8
  text?: string;
9
- status?: typeof VALID_STATUSES[number];
9
+ status?: (typeof VALID_STATUSES)[number];
10
10
  indent?: number;
11
11
  spinner?: Partial<Spinner>;
12
12
  disableSpins?: boolean;
13
- color?: typeof VALID_COLORS[number];
14
- spinnerColor?: typeof VALID_COLORS[number];
15
- succeedColor?: typeof VALID_COLORS[number];
16
- failColor?: typeof VALID_COLORS[number];
13
+ color?: (typeof VALID_COLORS)[number];
14
+ spinnerColor?: (typeof VALID_COLORS)[number];
15
+ succeedColor?: (typeof VALID_COLORS)[number];
16
+ failColor?: (typeof VALID_COLORS)[number];
17
17
  succeedPrefix?: string;
18
18
  failPrefix?: string;
19
19
  };
package/lib/upload.d.ts CHANGED
@@ -1 +1 @@
1
- export declare function getUploadableFileList(src: string, convertFields: boolean): Promise<string[]>;
1
+ export declare function getUploadableFileList(src: string, convertFields?: boolean): Promise<string[]>;
package/lib/validation.js CHANGED
@@ -145,28 +145,27 @@ function validateCmsPublishMode(options) {
145
145
  return false;
146
146
  }
147
147
  function fileExists(_path) {
148
- let isFile;
149
148
  try {
150
149
  const absoluteSrcPath = path.resolve((0, path_1.getCwd)(), _path);
151
150
  if (!absoluteSrcPath)
152
151
  return false;
153
152
  const stats = fs.statSync(absoluteSrcPath);
154
- isFile = stats.isFile();
153
+ const isFile = stats.isFile();
155
154
  if (!isFile) {
156
- logger_1.logger.error(`The path "${_path}" is not a path to a file`);
157
155
  return false;
158
156
  }
159
157
  }
160
158
  catch (e) {
161
- logger_1.logger.error(`The path "${_path}" is not a path to a file`);
162
159
  return false;
163
160
  }
164
161
  return true;
165
162
  }
166
163
  function checkAndConvertToJson(_path) {
167
164
  const filePath = (0, path_1.getAbsoluteFilePath)(_path);
168
- if (!fileExists(filePath))
165
+ if (!fileExists(filePath)) {
166
+ logger_1.logger.error(`The path "${_path}" is not a path to a file`);
169
167
  return null;
168
+ }
170
169
  if ((0, path_1.getExt)(_path) !== 'json') {
171
170
  logger_1.logger.error(`The file "${_path}" must be a valid JSON file`);
172
171
  return null;
@@ -1,9 +1,13 @@
1
1
  import { Argv } from 'yargs';
2
2
  export declare function hasFlag(flag: string, argv?: string[]): boolean;
3
- export declare function makeYargsBuilder<T>(callback: (yargs: Argv) => Argv<T>, command: string, describe: string, options?: {
3
+ export declare function makeYargsBuilder<T>(callback: (yargs: Argv) => Argv<T>, command: string | string[], describe?: string, options?: {
4
4
  useGlobalOptions?: boolean;
5
5
  useAccountOptions?: boolean;
6
6
  useConfigOptions?: boolean;
7
7
  useEnvironmentOptions?: boolean;
8
8
  useTestingOptions?: boolean;
9
+ useCmsPublishModeOptions?: boolean | {
10
+ read?: boolean;
11
+ write?: boolean;
12
+ };
9
13
  }): (yargs: Argv) => Promise<Argv<T>>;
package/lib/yargsUtils.js CHANGED
@@ -32,6 +32,12 @@ function makeYargsBuilder(callback, command, describe, options = {}) {
32
32
  if (options.useTestingOptions) {
33
33
  (0, commonOpts_1.addTestingOptions)(yargs);
34
34
  }
35
+ if (options.useCmsPublishModeOptions) {
36
+ const opts = typeof options.useCmsPublishModeOptions === 'object'
37
+ ? options.useCmsPublishModeOptions
38
+ : { write: true };
39
+ (0, commonOpts_1.addCmsPublishModeOptions)(yargs, opts);
40
+ }
35
41
  const result = callback(yargs);
36
42
  // Must go last to pick up available options
37
43
  await (0, commonOpts_1.addCustomHelpOutput)(result, command, describe);
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@hubspot/cli",
3
- "version": "7.5.1-experimental.0",
3
+ "version": "7.5.2-beta.1",
4
4
  "description": "The official CLI for developing on HubSpot",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "https://github.com/HubSpot/hubspot-cli",
7
7
  "dependencies": {
8
- "@hubspot/local-dev-lib": "3.5.1",
9
- "@hubspot/project-parsing-lib": "0.1.6",
10
- "@hubspot/serverless-dev-runtime": "7.0.2",
8
+ "@hubspot/local-dev-lib": "3.7.1",
9
+ "@hubspot/project-parsing-lib": "0.3.0",
10
+ "@hubspot/serverless-dev-runtime": "7.0.6",
11
11
  "@hubspot/theme-preview-dev-server": "0.0.10",
12
- "@hubspot/ui-extensions-dev-server": "0.8.52",
12
+ "@hubspot/ui-extensions-dev-server": "0.9.2",
13
13
  "archiver": "7.0.1",
14
+ "boxen": "8.0.1",
14
15
  "chalk": "4.1.2",
15
16
  "chokidar": "3.6.0",
16
17
  "cli-cursor": "3.1.0",
@@ -27,6 +28,7 @@
27
28
  "table": "6.9.0",
28
29
  "tmp": "0.2.3",
29
30
  "update-notifier": "5.1.0",
31
+ "ws": "^8.18.2",
30
32
  "yargs": "17.7.2",
31
33
  "yargs-parser": "21.1.1"
32
34
  },
@@ -40,10 +42,11 @@
40
42
  "@types/js-yaml": "^4.0.9",
41
43
  "@types/semver": "^7.5.8",
42
44
  "@types/tmp": "^0.2.6",
45
+ "@types/ws": "^8.18.1",
43
46
  "@types/yargs": "^17.0.33",
44
- "@typescript-eslint/eslint-plugin": "^8.11.0",
47
+ "@typescript-eslint/eslint-plugin": "^8.30.1",
45
48
  "@typescript-eslint/parser": "^8.11.0",
46
- "axios": "^1.7.2",
49
+ "axios": "^1.7.4",
47
50
  "eslint": "^8.56.0",
48
51
  "eslint-plugin-import": "^2.31.0",
49
52
  "husky": "^4.3.8",
@@ -62,10 +65,12 @@
62
65
  },
63
66
  "scripts": {
64
67
  "build": "ts-node ./scripts/build.ts",
65
- "lint": "eslint . && prettier --list-different ./**/*.{js,json}",
68
+ "lint": "echo 'Linting is disabled for Blazar'",
69
+ "lint:local": "eslint . && prettier --list-different './**/*.{ts,js,json}'",
66
70
  "list-all-commands": "yarn ts-node ./scripts/get-all-commands.ts",
67
- "prettier:write": "prettier --write ./**/*.{ts,js,json}",
68
- "test": "yarn node --experimental-vm-modules $(yarn bin jest)",
71
+ "local-link": "yarn ts-node ./scripts/linking.ts",
72
+ "prettier:write": "prettier --write './**/*.{ts,js,json}'",
73
+ "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
69
74
  "test-cli": "yarn build && yarn --cwd 'acceptance-tests' test-ci",
70
75
  "test-cli-debug": "yarn build && yarn --cwd 'acceptance-tests' test-debug",
71
76
  "test-cli-qa": "yarn build && yarn --cwd 'acceptance-tests' test-qa",
@@ -75,7 +80,8 @@
75
80
  "release": "yarn ts-node ./scripts/release.ts release",
76
81
  "hs": "yarn build && node ./dist/bin/hs",
77
82
  "hs-debug": "yarn build && NODE_DEBUG=http* node --inspect-brk ./dist/bin/hs",
78
- "update-ldl": "yarn add --exact @hubspot/local-dev-lib@latest"
83
+ "update-ldl": "yarn add --exact @hubspot/local-dev-lib@latest",
84
+ "view-unreleased-changes": "node ./scripts/unreleasedChanges.js"
79
85
  },
80
86
  "lint-staged": {
81
87
  "**/*.{js,ts,scss,css}": [
package/types/Cms.d.ts ADDED
@@ -0,0 +1,30 @@
1
+ import { CommonArgs, ConfigArgs } from './Yargs';
2
+ export type CreateArgs = CommonArgs & ConfigArgs & {
3
+ branch?: string;
4
+ type: string;
5
+ dest: string;
6
+ name: string;
7
+ internal?: boolean;
8
+ };
9
+ export type CmsAssetOperationArgs = {
10
+ assetType: string;
11
+ name: string;
12
+ dest: string;
13
+ getInternalVersion: boolean;
14
+ commandArgs: CreateArgs;
15
+ };
16
+ export type CreatableCmsAsset = {
17
+ hidden: boolean;
18
+ dest: (args: CmsAssetOperationArgs) => string;
19
+ validate?: (args: CmsAssetOperationArgs) => boolean;
20
+ execute: (args: CmsAssetOperationArgs) => Promise<void>;
21
+ };
22
+ export type ApiSampleChoice = {
23
+ name: string;
24
+ description: string;
25
+ id: string;
26
+ languages: string[];
27
+ };
28
+ export type ApiSampleConfig = {
29
+ samples: ApiSampleChoice[];
30
+ };
package/types/Cms.js ADDED
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,34 @@
1
+ import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types';
2
+ import { Build } from '@hubspot/local-dev-lib/types/Build';
3
+ import { Environment } from '@hubspot/local-dev-lib/types/Config';
4
+ import { ValueOf } from '@hubspot/local-dev-lib/types/Utils';
5
+ import { ProjectConfig } from './Projects';
6
+ import LocalDevState from '../lib/projects/localDev/LocalDevState';
7
+ import { APP_INSTALLATION_STATES, LOCAL_DEV_SERVER_MESSAGE_TYPES } from '../lib/constants';
8
+ export type LocalDevStateConstructorOptions = {
9
+ targetProjectAccountId: number;
10
+ targetTestingAccountId: number;
11
+ projectConfig: ProjectConfig;
12
+ projectDir: string;
13
+ projectId: number;
14
+ projectName: string;
15
+ debug?: boolean;
16
+ deployedBuild?: Build;
17
+ isGithubLinked: boolean;
18
+ initialProjectNodes: {
19
+ [key: string]: IntermediateRepresentationNodeLocalDev;
20
+ };
21
+ env: Environment;
22
+ };
23
+ export type LocalDevWebsocketMessage = {
24
+ type: string;
25
+ data?: unknown;
26
+ };
27
+ export type LocalDevStateListener<K extends keyof LocalDevState> = (value: LocalDevState[K]) => void;
28
+ export type AppLocalDevData = {
29
+ id: number;
30
+ clientId: string;
31
+ name: string;
32
+ installationState: ValueOf<typeof APP_INSTALLATION_STATES>;
33
+ };
34
+ export type LocalDevServerMessage = ValueOf<typeof LOCAL_DEV_SERVER_MESSAGE_TYPES>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,15 +1,23 @@
1
1
  import { Build, SubbuildStatus } from '@hubspot/local-dev-lib/types/Build';
2
2
  import { Deploy, SubdeployStatus } from '@hubspot/local-dev-lib/types/Deploy';
3
+ import { appComponent, marketplaceDistribution, oAuth, privateDistribution, staticAuth } from '../lib/constants';
3
4
  export type ProjectTemplate = {
4
5
  name: string;
5
6
  label: string;
6
7
  path: string;
7
- insertPath: string;
8
8
  };
9
9
  export type ComponentTemplate = {
10
10
  path: string;
11
11
  label: string;
12
- insertPath: string;
12
+ type: string;
13
+ parentComponent?: string;
14
+ supportedAuthTypes?: string[];
15
+ supportedDistributions?: string[];
16
+ };
17
+ export type ComponentTemplateChoice = {
18
+ name: string;
19
+ value: ComponentTemplate;
20
+ disabled?: string | boolean;
13
21
  };
14
22
  export type ProjectConfig = {
15
23
  name: string;
@@ -32,9 +40,18 @@ export type ProjectPollStatusFunctionText = {
32
40
  TYPE_KEY: string;
33
41
  SUBTASK_NAME_KEY: string;
34
42
  };
43
+ export type ParentComponent = {
44
+ label: string;
45
+ type: typeof appComponent;
46
+ authType: typeof staticAuth | typeof oAuth;
47
+ distribution: typeof privateDistribution | typeof marketplaceDistribution;
48
+ path: string;
49
+ };
35
50
  export type ProjectTemplateRepoConfig = {
36
51
  projects?: ProjectTemplate[];
37
52
  components?: ComponentTemplate[];
53
+ defaultFiles?: string;
54
+ parentComponents?: ParentComponent[];
38
55
  };
39
56
  export type ProjectPollResult = {
40
57
  succeeded: boolean;
@@ -1,4 +1,3 @@
1
- import { DeveloperTestAccount } from '@hubspot/local-dev-lib/types/developerTestAccounts';
2
1
  export type GenericPromptResponse = {
3
2
  [key: string]: any;
4
3
  };
@@ -23,10 +22,4 @@ export type PromptConfig<T extends GenericPromptResponse> = {
23
22
  mask?: string;
24
23
  filter?: (input: string) => string;
25
24
  };
26
- export type ProjectDevTargetAccountPromptResponse = {
27
- targetAccountId: number | null;
28
- createNestedAccount: boolean;
29
- parentAccountId?: number | null;
30
- notInConfigAccount?: DeveloperTestAccount | null;
31
- };
32
25
  export {};
package/types/Yargs.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- import { Options } from 'yargs';
1
+ import { Options, CommandModule, Argv } from 'yargs';
2
+ import { CmsPublishMode } from '@hubspot/local-dev-lib/types/Files';
2
3
  export type CommonArgs = {
3
4
  derivedAccountId: number;
4
5
  providedAccountId?: number;
@@ -23,20 +24,19 @@ export type OverwriteArgs = Options & {
23
24
  export type StringArgType = Options & {
24
25
  type: 'string';
25
26
  };
26
- export type ProjectDevArgs = CommonArgs & ConfigArgs & EnvironmentArgs;
27
+ export type ProjectDevArgs = CommonArgs & ConfigArgs & EnvironmentArgs & {
28
+ profile?: string;
29
+ testingAccount?: string | number;
30
+ projectAccount?: string | number;
31
+ };
27
32
  export type TestingArgs = {
28
33
  qa?: boolean;
29
34
  };
30
- export type MigrateAppOptions = CommonArgs & AccountArgs & EnvironmentArgs & ConfigArgs & {
31
- name?: string;
32
- dest?: string;
33
- appId?: number;
34
- platformVersion: string;
35
- };
36
- export type ProjectMigrateOptions = CommonArgs & AccountArgs & EnvironmentArgs & ConfigArgs & {
37
- dest?: string;
38
- };
39
- export type CloneAppArgs = ConfigArgs & EnvironmentArgs & AccountArgs & CommonArgs & {
40
- dest: string;
41
- appId: number;
35
+ export type CmsPublishModeArgs = {
36
+ 'cms-publish-mode'?: CmsPublishMode;
37
+ m?: CmsPublishMode;
42
38
  };
39
+ export interface YargsCommandModule<T, U> extends CommandModule<T, U> {
40
+ builder: (yargs: Argv) => Promise<Argv<U>>;
41
+ }
42
+ export type YargsCommandModuleBucket = YargsCommandModule<unknown, object>;
@@ -1,33 +0,0 @@
1
- import { ProjectConfig } from '../types/Projects';
2
- import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types';
3
- type DevServerInterface = {
4
- setup?: Function;
5
- start?: (options: object) => Promise<void>;
6
- fileChange?: (filePath: string, event: string) => Promise<void>;
7
- cleanup?: () => Promise<void>;
8
- };
9
- declare class DevServerManagerV2 {
10
- private initialized;
11
- private started;
12
- private devServers;
13
- constructor();
14
- iterateDevServers(callback: (serverInterface: DevServerInterface) => Promise<void>): Promise<void>;
15
- setup({ projectNodes, accountId, setActiveApp, }: {
16
- projectNodes: {
17
- [key: string]: IntermediateRepresentationNodeLocalDev;
18
- };
19
- accountId: number;
20
- setActiveApp: (appUid: string | undefined) => Promise<void>;
21
- }): Promise<void>;
22
- start({ accountId, projectConfig, }: {
23
- accountId: number;
24
- projectConfig: ProjectConfig;
25
- }): Promise<void>;
26
- fileChange({ filePath, event, }: {
27
- filePath: string;
28
- event: string;
29
- }): Promise<void>;
30
- cleanup(): Promise<void>;
31
- }
32
- declare const Manager: DevServerManagerV2;
33
- export default Manager;
@@ -1,64 +0,0 @@
1
- import { FSWatcher } from 'chokidar';
2
- import { Build } from '@hubspot/local-dev-lib/types/Build';
3
- import { PublicApp } from '@hubspot/local-dev-lib/types/Apps';
4
- import { Environment } from '@hubspot/local-dev-lib/types/Config';
5
- import { ProjectConfig } from '../types/Projects';
6
- import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types';
7
- import { AppIRNode } from '../types/ProjectComponents';
8
- type LocalDevManagerConstructorOptions = {
9
- targetProjectAccountId: number;
10
- targetTestingAccountId: number;
11
- projectConfig: ProjectConfig;
12
- projectDir: string;
13
- projectId: number;
14
- debug?: boolean;
15
- deployedBuild?: Build;
16
- isGithubLinked: boolean;
17
- projectNodes: {
18
- [key: string]: IntermediateRepresentationNodeLocalDev;
19
- };
20
- env: Environment;
21
- };
22
- declare class LocalDevManagerV2 {
23
- targetProjectAccountId: number;
24
- targetTestingAccountId: number;
25
- projectConfig: ProjectConfig;
26
- projectDir: string;
27
- projectId: number;
28
- debug: boolean;
29
- deployedBuild?: Build;
30
- isGithubLinked: boolean;
31
- watcher: FSWatcher | null;
32
- uploadWarnings: {
33
- [key: string]: boolean;
34
- };
35
- projectNodes: {
36
- [key: string]: IntermediateRepresentationNodeLocalDev;
37
- };
38
- activeApp: AppIRNode | null;
39
- activePublicAppData: PublicApp | null;
40
- env: Environment;
41
- publicAppActiveInstalls: number | null;
42
- projectSourceDir: string;
43
- mostRecentUploadWarning: string | null;
44
- constructor(options: LocalDevManagerConstructorOptions);
45
- setActiveApp(appUid?: string): Promise<void>;
46
- setActivePublicAppData(): Promise<void>;
47
- checkActivePublicAppInstalls(): Promise<void>;
48
- start(): Promise<void>;
49
- stop(showProgress?: boolean): Promise<void>;
50
- checkPublicAppInstallation(): Promise<void>;
51
- updateKeypressListeners(): void;
52
- getUploadCommand(): string;
53
- logUploadWarning(reason?: string): void;
54
- monitorConsoleOutput(): void;
55
- compareLocalProjectToDeployed(): void;
56
- startWatching(): void;
57
- stopWatching(): Promise<void>;
58
- handleWatchEvent(filePath: string, event: string, configPaths: string[]): void;
59
- devServerSetup(): Promise<boolean>;
60
- devServerStart(): Promise<void>;
61
- devServerFileChange(filePath: string, event: string): void;
62
- devServerCleanup(): Promise<boolean>;
63
- }
64
- export default LocalDevManagerV2;