@hubspot/cli 7.7.0-experimental.2 → 7.7.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.
Files changed (858) hide show
  1. package/README.md +0 -4
  2. package/api/__tests__/migrate.test.js +181 -0
  3. package/api/migrate.d.ts +10 -4
  4. package/api/migrate.js +14 -22
  5. package/bin/cli.js +60 -53
  6. package/bin/hs +2 -2
  7. package/bin/hscms +2 -2
  8. package/bin/silenceErrors.js +1 -2
  9. package/commands/__tests__/account.test.d.ts +1 -0
  10. package/commands/__tests__/account.test.js +69 -0
  11. package/commands/__tests__/auth.test.d.ts +1 -0
  12. package/commands/__tests__/auth.test.js +38 -0
  13. package/commands/__tests__/cms.test.d.ts +1 -0
  14. package/commands/__tests__/cms.test.js +44 -0
  15. package/commands/__tests__/config.test.d.ts +1 -0
  16. package/commands/__tests__/config.test.js +44 -0
  17. package/commands/__tests__/create.test.d.ts +1 -0
  18. package/commands/__tests__/create.test.js +53 -0
  19. package/commands/__tests__/customObject.test.d.ts +1 -0
  20. package/commands/__tests__/customObject.test.js +49 -0
  21. package/commands/__tests__/doctor.test.d.ts +1 -0
  22. package/commands/__tests__/doctor.test.js +134 -0
  23. package/commands/__tests__/feedback.test.d.ts +1 -0
  24. package/commands/__tests__/feedback.test.js +24 -0
  25. package/commands/__tests__/fetch.test.d.ts +1 -0
  26. package/commands/__tests__/fetch.test.js +57 -0
  27. package/commands/__tests__/filemanager.test.d.ts +1 -0
  28. package/commands/__tests__/filemanager.test.js +45 -0
  29. package/commands/__tests__/function.test.d.ts +1 -0
  30. package/commands/__tests__/function.test.js +46 -0
  31. package/commands/__tests__/getStarted.test.d.ts +1 -0
  32. package/commands/__tests__/getStarted.test.js +155 -0
  33. package/commands/__tests__/hubdb.test.d.ts +1 -0
  34. package/commands/__tests__/hubdb.test.js +50 -0
  35. package/commands/__tests__/init.test.d.ts +1 -0
  36. package/commands/__tests__/init.test.js +42 -0
  37. package/commands/__tests__/lint.test.d.ts +1 -0
  38. package/commands/__tests__/lint.test.js +33 -0
  39. package/commands/__tests__/list.test.d.ts +1 -0
  40. package/commands/__tests__/list.test.js +42 -0
  41. package/commands/__tests__/logs.test.d.ts +1 -0
  42. package/commands/__tests__/logs.test.js +71 -0
  43. package/commands/__tests__/mcp.test.d.ts +1 -0
  44. package/commands/__tests__/mcp.test.js +46 -0
  45. package/commands/__tests__/mv.test.d.ts +1 -0
  46. package/commands/__tests__/mv.test.js +46 -0
  47. package/commands/__tests__/open.test.d.ts +1 -0
  48. package/commands/__tests__/open.test.js +58 -0
  49. package/commands/__tests__/project.test.d.ts +1 -0
  50. package/commands/__tests__/project.test.js +92 -0
  51. package/commands/__tests__/remove.test.d.ts +1 -0
  52. package/commands/__tests__/remove.test.js +39 -0
  53. package/commands/__tests__/sandbox.test.d.ts +1 -0
  54. package/commands/__tests__/sandbox.test.js +44 -0
  55. package/commands/__tests__/secret.test.d.ts +1 -0
  56. package/commands/__tests__/secret.test.js +49 -0
  57. package/commands/__tests__/testAccount.test.d.ts +1 -0
  58. package/commands/__tests__/testAccount.test.js +57 -0
  59. package/commands/__tests__/theme.test.d.ts +1 -0
  60. package/commands/__tests__/theme.test.js +47 -0
  61. package/commands/account/__tests__/auth.test.d.ts +1 -0
  62. package/commands/account/__tests__/auth.test.js +26 -0
  63. package/commands/account/__tests__/clean.test.d.ts +1 -0
  64. package/commands/account/__tests__/clean.test.js +28 -0
  65. package/commands/account/__tests__/createOverride.test.d.ts +1 -0
  66. package/commands/account/__tests__/createOverride.test.js +32 -0
  67. package/commands/account/__tests__/info.test.d.ts +1 -0
  68. package/commands/account/__tests__/info.test.js +28 -0
  69. package/commands/account/__tests__/list.test.d.ts +1 -0
  70. package/commands/account/__tests__/list.test.js +28 -0
  71. package/commands/account/__tests__/remove.test.d.ts +1 -0
  72. package/commands/account/__tests__/remove.test.js +36 -0
  73. package/commands/account/__tests__/removeOverride.d.ts +1 -0
  74. package/commands/account/__tests__/removeOverride.js +25 -0
  75. package/commands/account/__tests__/rename.test.d.ts +1 -0
  76. package/commands/account/__tests__/rename.test.js +42 -0
  77. package/commands/account/__tests__/use.test.d.ts +1 -0
  78. package/commands/account/__tests__/use.test.js +32 -0
  79. package/commands/account/auth.d.ts +3 -1
  80. package/commands/account/auth.js +109 -123
  81. package/commands/account/clean.d.ts +1 -1
  82. package/commands/account/clean.js +55 -60
  83. package/commands/account/createOverride.d.ts +1 -1
  84. package/commands/account/createOverride.js +52 -57
  85. package/commands/account/info.d.ts +1 -1
  86. package/commands/account/info.js +33 -35
  87. package/commands/account/list.d.ts +1 -1
  88. package/commands/account/list.js +43 -45
  89. package/commands/account/remove.d.ts +1 -1
  90. package/commands/account/remove.js +37 -42
  91. package/commands/account/removeOverride.d.ts +1 -1
  92. package/commands/account/removeOverride.js +38 -43
  93. package/commands/account/rename.d.ts +1 -1
  94. package/commands/account/rename.js +18 -20
  95. package/commands/account/use.d.ts +1 -1
  96. package/commands/account/use.js +29 -31
  97. package/commands/account.d.ts +1 -1
  98. package/commands/account.js +23 -30
  99. package/commands/app/__tests__/migrate.test.d.ts +1 -0
  100. package/commands/app/__tests__/migrate.test.js +124 -0
  101. package/commands/app/migrate.d.ts +2 -2
  102. package/commands/app/migrate.js +41 -45
  103. package/commands/app/secret/__tests__/add.test.d.ts +1 -0
  104. package/commands/app/secret/__tests__/add.test.js +28 -0
  105. package/commands/app/secret/__tests__/delete.test.d.ts +1 -0
  106. package/commands/app/secret/__tests__/delete.test.js +28 -0
  107. package/commands/app/secret/__tests__/list.test.d.ts +1 -0
  108. package/commands/app/secret/__tests__/list.test.js +25 -0
  109. package/commands/app/secret/__tests__/update.test.d.ts +1 -0
  110. package/commands/app/secret/__tests__/update.test.js +28 -0
  111. package/commands/app/secret/add.d.ts +1 -1
  112. package/commands/app/secret/add.js +29 -30
  113. package/commands/app/secret/delete.d.ts +1 -1
  114. package/commands/app/secret/delete.js +35 -36
  115. package/commands/app/secret/list.d.ts +1 -1
  116. package/commands/app/secret/list.js +26 -27
  117. package/commands/app/secret/update.d.ts +1 -1
  118. package/commands/app/secret/update.js +33 -34
  119. package/commands/app/secret.d.ts +1 -1
  120. package/commands/app/secret.js +14 -18
  121. package/commands/app.d.ts +1 -1
  122. package/commands/app.js +8 -15
  123. package/commands/auth.d.ts +3 -1
  124. package/commands/auth.js +89 -99
  125. package/commands/cms/convertFields.d.ts +1 -1
  126. package/commands/cms/convertFields.js +34 -39
  127. package/commands/cms/getReactModule.d.ts +1 -1
  128. package/commands/cms/getReactModule.js +32 -37
  129. package/commands/cms/lighthouseScore.d.ts +1 -1
  130. package/commands/cms/lighthouseScore.js +67 -72
  131. package/commands/cms.d.ts +1 -1
  132. package/commands/cms.js +11 -18
  133. package/commands/completion.d.ts +1 -1
  134. package/commands/completion.js +10 -17
  135. package/commands/config/migrate.d.ts +1 -1
  136. package/commands/config/migrate.js +29 -53
  137. package/commands/config/set.d.ts +3 -2
  138. package/commands/config/set.js +88 -49
  139. package/commands/config.d.ts +1 -1
  140. package/commands/config.js +8 -15
  141. package/commands/create/api-sample.d.ts +1 -1
  142. package/commands/create/api-sample.js +28 -33
  143. package/commands/create/app.d.ts +1 -1
  144. package/commands/create/app.js +3 -5
  145. package/commands/create/function.d.ts +1 -1
  146. package/commands/create/function.js +10 -12
  147. package/commands/create/index.d.ts +1 -1
  148. package/commands/create/index.js +19 -24
  149. package/commands/create/module.d.ts +1 -1
  150. package/commands/create/module.js +13 -15
  151. package/commands/create/react-app.d.ts +1 -1
  152. package/commands/create/react-app.js +3 -5
  153. package/commands/create/template.d.ts +1 -1
  154. package/commands/create/template.js +13 -15
  155. package/commands/create/vue-app.d.ts +1 -1
  156. package/commands/create/vue-app.js +3 -5
  157. package/commands/create/webpack-serverless.d.ts +1 -1
  158. package/commands/create/webpack-serverless.js +3 -5
  159. package/commands/create/website-theme.d.ts +1 -1
  160. package/commands/create/website-theme.js +5 -7
  161. package/commands/create.d.ts +2 -2
  162. package/commands/create.js +77 -37
  163. package/commands/customObject/__tests__/create.test.d.ts +1 -0
  164. package/commands/customObject/__tests__/create.test.js +40 -0
  165. package/commands/customObject/__tests__/schema.test.d.ts +1 -0
  166. package/commands/customObject/__tests__/schema.test.js +53 -0
  167. package/commands/customObject/create.d.ts +1 -1
  168. package/commands/customObject/create.js +28 -30
  169. package/commands/customObject/schema/__tests__/create.test.d.ts +1 -0
  170. package/commands/customObject/schema/__tests__/create.test.js +28 -0
  171. package/commands/customObject/schema/__tests__/delete.test.d.ts +1 -0
  172. package/commands/customObject/schema/__tests__/delete.test.js +42 -0
  173. package/commands/customObject/schema/__tests__/fetch-all.test.d.ts +1 -0
  174. package/commands/customObject/schema/__tests__/fetch-all.test.js +41 -0
  175. package/commands/customObject/schema/__tests__/fetch.test.d.ts +1 -0
  176. package/commands/customObject/schema/__tests__/fetch.test.js +45 -0
  177. package/commands/customObject/schema/__tests__/list.test.d.ts +1 -0
  178. package/commands/customObject/schema/__tests__/list.test.js +29 -0
  179. package/commands/customObject/schema/__tests__/update.test.d.ts +1 -0
  180. package/commands/customObject/schema/__tests__/update.test.js +40 -0
  181. package/commands/customObject/schema/create.d.ts +1 -1
  182. package/commands/customObject/schema/create.js +28 -30
  183. package/commands/customObject/schema/delete.d.ts +1 -1
  184. package/commands/customObject/schema/delete.js +24 -26
  185. package/commands/customObject/schema/fetch-all.d.ts +1 -1
  186. package/commands/customObject/schema/fetch-all.js +22 -24
  187. package/commands/customObject/schema/fetch.d.ts +1 -1
  188. package/commands/customObject/schema/fetch.js +24 -26
  189. package/commands/customObject/schema/list.d.ts +1 -1
  190. package/commands/customObject/schema/list.js +13 -15
  191. package/commands/customObject/schema/update.d.ts +1 -1
  192. package/commands/customObject/schema/update.js +32 -34
  193. package/commands/customObject/schema.d.ts +1 -1
  194. package/commands/customObject/schema.js +17 -22
  195. package/commands/customObject.d.ts +1 -1
  196. package/commands/customObject.js +13 -20
  197. package/commands/doctor.d.ts +1 -1
  198. package/commands/doctor.js +28 -35
  199. package/commands/feedback.d.ts +1 -1
  200. package/commands/feedback.js +18 -25
  201. package/commands/fetch.d.ts +1 -1
  202. package/commands/fetch.js +28 -31
  203. package/commands/filemanager/__tests__/fetch.test.d.ts +1 -0
  204. package/commands/filemanager/__tests__/fetch.test.js +32 -0
  205. package/commands/filemanager/__tests__/upload.test.d.ts +1 -0
  206. package/commands/filemanager/__tests__/upload.test.js +30 -0
  207. package/commands/filemanager/fetch.d.ts +1 -1
  208. package/commands/filemanager/fetch.js +23 -25
  209. package/commands/filemanager/upload.d.ts +1 -1
  210. package/commands/filemanager/upload.js +39 -44
  211. package/commands/filemanager.d.ts +1 -1
  212. package/commands/filemanager.js +8 -15
  213. package/commands/function/deploy.d.ts +1 -1
  214. package/commands/function/deploy.js +35 -40
  215. package/commands/function/list.d.ts +1 -1
  216. package/commands/function/list.js +24 -29
  217. package/commands/function/server.d.ts +1 -1
  218. package/commands/function/server.js +15 -17
  219. package/commands/function.d.ts +1 -1
  220. package/commands/function.js +12 -20
  221. package/commands/getStarted.d.ts +7 -0
  222. package/commands/getStarted.js +296 -0
  223. package/commands/hubdb/__tests__/clear.test.d.ts +1 -0
  224. package/commands/hubdb/__tests__/clear.test.js +28 -0
  225. package/commands/hubdb/__tests__/create.test.d.ts +1 -0
  226. package/commands/hubdb/__tests__/create.test.js +28 -0
  227. package/commands/hubdb/__tests__/delete.test.d.ts +1 -0
  228. package/commands/hubdb/__tests__/delete.test.js +28 -0
  229. package/commands/hubdb/__tests__/fetch.test.d.ts +1 -0
  230. package/commands/hubdb/__tests__/fetch.test.js +28 -0
  231. package/commands/hubdb/__tests__/list.test.d.ts +1 -0
  232. package/commands/hubdb/__tests__/list.test.js +96 -0
  233. package/commands/hubdb/clear.d.ts +1 -1
  234. package/commands/hubdb/clear.js +20 -22
  235. package/commands/hubdb/create.d.ts +1 -1
  236. package/commands/hubdb/create.js +30 -35
  237. package/commands/hubdb/delete.d.ts +1 -1
  238. package/commands/hubdb/delete.js +24 -26
  239. package/commands/hubdb/fetch.d.ts +1 -1
  240. package/commands/hubdb/fetch.js +17 -19
  241. package/commands/hubdb/list.d.ts +4 -0
  242. package/commands/hubdb/list.js +81 -0
  243. package/commands/hubdb.d.ts +1 -1
  244. package/commands/hubdb.js +18 -24
  245. package/commands/init.d.ts +1 -1
  246. package/commands/init.js +96 -102
  247. package/commands/lint.d.ts +1 -1
  248. package/commands/lint.js +24 -28
  249. package/commands/list.d.ts +1 -1
  250. package/commands/list.js +32 -39
  251. package/commands/logs.d.ts +1 -1
  252. package/commands/logs.js +35 -38
  253. package/commands/mcp/__tests__/setup.test.d.ts +1 -0
  254. package/commands/mcp/__tests__/setup.test.js +26 -0
  255. package/commands/mcp/__tests__/start.test.d.ts +1 -0
  256. package/commands/mcp/__tests__/start.test.js +27 -0
  257. package/commands/mcp/setup.d.ts +6 -0
  258. package/commands/mcp/setup.js +52 -0
  259. package/commands/mcp/start.d.ts +6 -0
  260. package/commands/mcp/start.js +80 -0
  261. package/commands/mcp.d.ts +3 -0
  262. package/commands/mcp.js +21 -0
  263. package/commands/module/marketplace-validate.d.ts +1 -1
  264. package/commands/module/marketplace-validate.js +21 -28
  265. package/commands/module.d.ts +1 -1
  266. package/commands/module.js +7 -12
  267. package/commands/mv.d.ts +1 -1
  268. package/commands/mv.js +20 -24
  269. package/commands/open.d.ts +1 -1
  270. package/commands/open.js +29 -31
  271. package/commands/project/__tests__/add.test.d.ts +1 -0
  272. package/commands/project/__tests__/add.test.js +107 -0
  273. package/commands/project/__tests__/create.test.d.ts +1 -0
  274. package/commands/project/__tests__/create.test.js +97 -0
  275. package/commands/project/__tests__/deploy.test.d.ts +1 -0
  276. package/commands/project/__tests__/deploy.test.js +306 -0
  277. package/commands/project/__tests__/devUnifiedFlow.test.d.ts +1 -0
  278. package/commands/project/__tests__/devUnifiedFlow.test.js +403 -0
  279. package/commands/project/__tests__/download.test.d.ts +1 -0
  280. package/commands/project/__tests__/download.test.js +39 -0
  281. package/commands/project/__tests__/fixtures/exampleProject.json +33 -0
  282. package/commands/project/__tests__/installDeps.test.d.ts +1 -0
  283. package/commands/project/__tests__/installDeps.test.js +142 -0
  284. package/commands/project/__tests__/listBuilds.test.d.ts +1 -0
  285. package/commands/project/__tests__/listBuilds.test.js +38 -0
  286. package/commands/project/__tests__/logs.test.d.ts +1 -0
  287. package/commands/project/__tests__/logs.test.js +205 -0
  288. package/commands/project/__tests__/migrate.test.d.ts +1 -0
  289. package/commands/project/__tests__/migrate.test.js +110 -0
  290. package/commands/project/__tests__/migrateApp.test.d.ts +1 -0
  291. package/commands/project/__tests__/migrateApp.test.js +81 -0
  292. package/commands/project/__tests__/open.test.d.ts +1 -0
  293. package/commands/project/__tests__/open.test.js +39 -0
  294. package/commands/project/__tests__/profile.test.d.ts +1 -0
  295. package/commands/project/__tests__/profile.test.js +42 -0
  296. package/commands/project/__tests__/upload.test.d.ts +1 -0
  297. package/commands/project/__tests__/upload.test.js +43 -0
  298. package/commands/project/__tests__/validate.test.d.ts +1 -0
  299. package/commands/project/__tests__/validate.test.js +98 -0
  300. package/commands/project/__tests__/watch.test.d.ts +1 -0
  301. package/commands/project/__tests__/watch.test.js +35 -0
  302. package/commands/project/add.d.ts +7 -4
  303. package/commands/project/add.js +47 -92
  304. package/commands/project/cloneApp.d.ts +1 -1
  305. package/commands/project/cloneApp.js +69 -74
  306. package/commands/project/create.d.ts +2 -8
  307. package/commands/project/create.js +109 -86
  308. package/commands/project/deploy.d.ts +4 -2
  309. package/commands/project/deploy.js +103 -95
  310. package/commands/project/dev/deprecatedFlow.d.ts +10 -4
  311. package/commands/project/dev/deprecatedFlow.js +61 -58
  312. package/commands/project/dev/index.d.ts +1 -1
  313. package/commands/project/dev/index.js +103 -60
  314. package/commands/project/dev/unifiedFlow.d.ts +13 -5
  315. package/commands/project/dev/unifiedFlow.js +90 -103
  316. package/commands/project/download.d.ts +1 -1
  317. package/commands/project/download.js +34 -40
  318. package/commands/project/installDeps.d.ts +1 -1
  319. package/commands/project/installDeps.js +28 -34
  320. package/commands/project/listBuilds.d.ts +1 -1
  321. package/commands/project/listBuilds.js +40 -48
  322. package/commands/project/logs.d.ts +1 -1
  323. package/commands/project/logs.js +52 -54
  324. package/commands/project/migrate.d.ts +1 -1
  325. package/commands/project/migrate.js +60 -34
  326. package/commands/project/migrateApp.d.ts +2 -2
  327. package/commands/project/migrateApp.js +19 -22
  328. package/commands/project/open.d.ts +1 -1
  329. package/commands/project/open.js +24 -30
  330. package/commands/project/profile/add.d.ts +1 -1
  331. package/commands/project/profile/add.js +68 -73
  332. package/commands/project/profile/delete.d.ts +1 -1
  333. package/commands/project/profile/delete.js +67 -61
  334. package/commands/project/profile.d.ts +1 -1
  335. package/commands/project/profile.js +9 -15
  336. package/commands/project/upload.d.ts +2 -2
  337. package/commands/project/upload.js +63 -73
  338. package/commands/project/validate.d.ts +4 -2
  339. package/commands/project/validate.js +60 -35
  340. package/commands/project/watch.d.ts +1 -1
  341. package/commands/project/watch.js +59 -61
  342. package/commands/project.d.ts +1 -1
  343. package/commands/project.js +37 -45
  344. package/commands/remove.d.ts +1 -1
  345. package/commands/remove.js +15 -25
  346. package/commands/sandbox/__tests__/create.test.d.ts +1 -0
  347. package/commands/sandbox/__tests__/create.test.js +238 -0
  348. package/commands/sandbox/__tests__/delete.test.d.ts +1 -0
  349. package/commands/sandbox/__tests__/delete.test.js +31 -0
  350. package/commands/sandbox/create.d.ts +2 -2
  351. package/commands/sandbox/create.js +92 -79
  352. package/commands/sandbox/delete.d.ts +1 -1
  353. package/commands/sandbox/delete.js +98 -100
  354. package/commands/sandbox.d.ts +1 -1
  355. package/commands/sandbox.js +9 -16
  356. package/commands/secret/__tests__/addSecret.test.d.ts +1 -0
  357. package/commands/secret/__tests__/addSecret.test.js +29 -0
  358. package/commands/secret/__tests__/deleteSecret.test.d.ts +1 -0
  359. package/commands/secret/__tests__/deleteSecret.test.js +41 -0
  360. package/commands/secret/__tests__/listSecret.test.d.ts +1 -0
  361. package/commands/secret/__tests__/listSecret.test.js +29 -0
  362. package/commands/secret/__tests__/updateSecret.test.d.ts +1 -0
  363. package/commands/secret/__tests__/updateSecret.test.js +29 -0
  364. package/commands/secret/addSecret.d.ts +1 -1
  365. package/commands/secret/addSecret.js +26 -28
  366. package/commands/secret/deleteSecret.d.ts +1 -1
  367. package/commands/secret/deleteSecret.js +27 -29
  368. package/commands/secret/listSecret.d.ts +1 -1
  369. package/commands/secret/listSecret.js +19 -21
  370. package/commands/secret/updateSecret.d.ts +1 -1
  371. package/commands/secret/updateSecret.js +25 -27
  372. package/commands/secret.d.ts +1 -1
  373. package/commands/secret.js +13 -20
  374. package/commands/testAccount/__tests__/create.test.d.ts +1 -0
  375. package/commands/testAccount/__tests__/create.test.js +33 -0
  376. package/commands/testAccount/__tests__/createConfig.test.d.ts +1 -0
  377. package/commands/testAccount/__tests__/createConfig.test.js +32 -0
  378. package/commands/testAccount/__tests__/delete.test.d.ts +1 -0
  379. package/commands/testAccount/__tests__/delete.test.js +29 -0
  380. package/commands/testAccount/__tests__/importData.test.d.ts +1 -0
  381. package/commands/testAccount/__tests__/importData.test.js +93 -0
  382. package/commands/testAccount/create.d.ts +6 -0
  383. package/commands/testAccount/create.js +130 -0
  384. package/commands/testAccount/createConfig.d.ts +8 -0
  385. package/commands/testAccount/createConfig.js +92 -0
  386. package/commands/testAccount/delete.d.ts +7 -0
  387. package/commands/testAccount/delete.js +187 -0
  388. package/commands/testAccount/importData.d.ts +9 -0
  389. package/commands/testAccount/importData.js +61 -0
  390. package/commands/testAccount.d.ts +3 -0
  391. package/commands/testAccount.js +25 -0
  392. package/commands/theme/__tests__/generate-selectors.test.d.ts +1 -0
  393. package/commands/theme/__tests__/generate-selectors.test.js +28 -0
  394. package/commands/theme/__tests__/marketplace-validate.test.d.ts +1 -0
  395. package/commands/theme/__tests__/marketplace-validate.test.js +36 -0
  396. package/commands/theme/__tests__/preview.test.d.ts +1 -0
  397. package/commands/theme/__tests__/preview.test.js +60 -0
  398. package/commands/theme/generate-selectors.d.ts +1 -1
  399. package/commands/theme/generate-selectors.js +23 -31
  400. package/commands/theme/marketplace-validate.d.ts +1 -1
  401. package/commands/theme/marketplace-validate.js +19 -26
  402. package/commands/theme/preview.d.ts +1 -1
  403. package/commands/theme/preview.js +61 -67
  404. package/commands/theme.d.ts +1 -1
  405. package/commands/theme.js +11 -18
  406. package/commands/upload.d.ts +1 -1
  407. package/commands/upload.js +77 -121
  408. package/commands/watch.d.ts +1 -1
  409. package/commands/watch.js +45 -63
  410. package/lang/en.d.ts +653 -237
  411. package/lang/en.js +976 -564
  412. package/lang/en.lyaml +46 -237
  413. package/lib/__tests__/accountTypes.test.d.ts +1 -0
  414. package/lib/__tests__/accountTypes.test.js +98 -0
  415. package/lib/__tests__/buildAccount.test.d.ts +1 -0
  416. package/lib/__tests__/buildAccount.test.js +282 -0
  417. package/lib/__tests__/commonOpts.test.d.ts +1 -0
  418. package/lib/__tests__/commonOpts.test.js +85 -0
  419. package/lib/__tests__/dependencyManagement.test.d.ts +1 -0
  420. package/lib/__tests__/dependencyManagement.test.js +175 -0
  421. package/lib/__tests__/developerTestAccounts.test.d.ts +1 -0
  422. package/lib/__tests__/developerTestAccounts.test.js +145 -0
  423. package/lib/__tests__/hasFeature.test.d.ts +1 -0
  424. package/lib/__tests__/hasFeature.test.js +173 -0
  425. package/lib/__tests__/importData.test.d.ts +1 -0
  426. package/lib/__tests__/importData.test.js +89 -0
  427. package/lib/__tests__/npm.test.d.ts +1 -0
  428. package/lib/__tests__/npm.test.js +57 -0
  429. package/lib/__tests__/oauth.test.d.ts +1 -0
  430. package/lib/__tests__/oauth.test.js +108 -0
  431. package/lib/__tests__/parsing.test.d.ts +1 -0
  432. package/lib/__tests__/parsing.test.js +34 -0
  433. package/lib/__tests__/polling.test.d.ts +1 -0
  434. package/lib/__tests__/polling.test.js +76 -0
  435. package/lib/__tests__/process.test.d.ts +1 -0
  436. package/lib/__tests__/process.test.js +85 -0
  437. package/lib/__tests__/projectProfiles.test.d.ts +1 -0
  438. package/lib/__tests__/projectProfiles.test.js +129 -0
  439. package/lib/__tests__/sandboxSync.test.d.ts +1 -0
  440. package/lib/__tests__/sandboxSync.test.js +126 -0
  441. package/lib/__tests__/sandboxes.test.d.ts +1 -0
  442. package/lib/__tests__/sandboxes.test.js +146 -0
  443. package/lib/__tests__/serverlessLogs.test.d.ts +1 -0
  444. package/lib/__tests__/serverlessLogs.test.js +149 -0
  445. package/lib/__tests__/usageTracking.test.d.ts +1 -0
  446. package/lib/__tests__/usageTracking.test.js +164 -0
  447. package/lib/__tests__/validation.test.d.ts +1 -0
  448. package/lib/__tests__/validation.test.js +143 -0
  449. package/lib/__tests__/yargsUtils.test.d.ts +1 -0
  450. package/lib/__tests__/yargsUtils.test.js +124 -0
  451. package/lib/accountTypes.d.ts +1 -0
  452. package/lib/accountTypes.js +31 -33
  453. package/lib/app/__tests__/migrate.test.d.ts +1 -0
  454. package/lib/app/__tests__/migrate.test.js +498 -0
  455. package/lib/app/__tests__/migrate_legacy.test.d.ts +1 -0
  456. package/lib/app/__tests__/migrate_legacy.test.js +134 -0
  457. package/lib/app/migrate.d.ts +13 -6
  458. package/lib/app/migrate.js +154 -154
  459. package/lib/app/migrate_legacy.d.ts +1 -1
  460. package/lib/app/migrate_legacy.js +72 -79
  461. package/lib/app/urls.d.ts +1 -1
  462. package/lib/app/urls.js +5 -9
  463. package/lib/buildAccount.d.ts +12 -3
  464. package/lib/buildAccount.js +165 -69
  465. package/lib/commonOpts.d.ts +4 -4
  466. package/lib/commonOpts.js +78 -58
  467. package/lib/configMigrate.d.ts +2 -2
  468. package/lib/configMigrate.js +44 -83
  469. package/lib/configOptions.d.ts +5 -0
  470. package/lib/configOptions.js +51 -40
  471. package/lib/constants.d.ts +52 -5
  472. package/lib/constants.js +77 -29
  473. package/lib/customObject.js +2 -6
  474. package/lib/dependencyManagement.d.ts +1 -1
  475. package/lib/dependencyManagement.js +37 -45
  476. package/lib/developerTestAccounts.d.ts +1 -1
  477. package/lib/developerTestAccounts.js +34 -39
  478. package/lib/doctor/Diagnosis.d.ts +1 -1
  479. package/lib/doctor/Diagnosis.js +15 -19
  480. package/lib/doctor/DiagnosticInfoBuilder.d.ts +1 -1
  481. package/lib/doctor/DiagnosticInfoBuilder.js +37 -43
  482. package/lib/doctor/Doctor.d.ts +1 -1
  483. package/lib/doctor/Doctor.js +56 -63
  484. package/lib/doctor/__tests__/Diagnosis.test.d.ts +1 -0
  485. package/lib/doctor/__tests__/Diagnosis.test.js +82 -0
  486. package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.d.ts +1 -0
  487. package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.js +167 -0
  488. package/lib/doctor/__tests__/Doctor.test.d.ts +1 -0
  489. package/lib/doctor/__tests__/Doctor.test.js +396 -0
  490. package/lib/enums/exitCodes.js +1 -4
  491. package/lib/errorHandlers/index.d.ts +4 -0
  492. package/lib/errorHandlers/index.js +37 -41
  493. package/lib/errorHandlers/suppressError.d.ts +1 -1
  494. package/lib/errorHandlers/suppressError.js +28 -31
  495. package/lib/errors/ProjectValidationError.d.ts +4 -0
  496. package/lib/errors/ProjectValidationError.js +9 -0
  497. package/lib/filesystem.js +8 -15
  498. package/lib/generateSelectors.js +18 -31
  499. package/lib/hasFeature.d.ts +2 -1
  500. package/lib/hasFeature.js +16 -6
  501. package/lib/importData.d.ts +3 -0
  502. package/lib/importData.js +50 -0
  503. package/lib/interpolation.js +11 -18
  504. package/lib/lang.d.ts +1 -1
  505. package/lib/lang.js +22 -27
  506. package/lib/links.d.ts +1 -0
  507. package/lib/links.js +26 -27
  508. package/lib/marketplaceValidate.d.ts +12 -2
  509. package/lib/marketplaceValidate.js +35 -52
  510. package/lib/mcp/setup.d.ts +23 -0
  511. package/lib/mcp/setup.js +238 -0
  512. package/lib/middleware/__test__/configMiddleware.test.js +34 -69
  513. package/lib/middleware/__test__/gitMiddleware.test.js +11 -46
  514. package/lib/middleware/__test__/notificationsMiddleware.test.js +1 -3
  515. package/lib/middleware/__test__/requestMiddleware.test.js +8 -13
  516. package/lib/middleware/__test__/utils.test.js +9 -11
  517. package/lib/middleware/__test__/yargsChecksMiddleware.test.js +16 -51
  518. package/lib/middleware/autoUpdateMiddleware.js +33 -40
  519. package/lib/middleware/configMiddleware.js +56 -39
  520. package/lib/middleware/fireAlarmMiddleware.d.ts +2 -2
  521. package/lib/middleware/fireAlarmMiddleware.js +29 -23
  522. package/lib/middleware/gitMiddleware.js +5 -8
  523. package/lib/middleware/notificationsMiddleware.js +7 -11
  524. package/lib/middleware/requestMiddleware.js +4 -10
  525. package/lib/middleware/utils.js +1 -4
  526. package/lib/middleware/yargsChecksMiddleware.js +10 -13
  527. package/lib/npm.js +14 -23
  528. package/lib/oauth.js +29 -35
  529. package/lib/parsing.d.ts +1 -0
  530. package/lib/parsing.js +8 -0
  531. package/lib/polling.d.ts +1 -1
  532. package/lib/polling.js +19 -13
  533. package/lib/process.js +26 -23
  534. package/lib/projectProfiles.d.ts +3 -2
  535. package/lib/projectProfiles.js +46 -38
  536. package/lib/projects/ProjectLogsManager.js +18 -21
  537. package/lib/projects/__tests__/AppDevModeInterface.test.d.ts +1 -0
  538. package/lib/projects/__tests__/AppDevModeInterface.test.js +541 -0
  539. package/lib/projects/__tests__/LocalDevProcess.test.d.ts +1 -0
  540. package/lib/projects/__tests__/LocalDevProcess.test.js +466 -0
  541. package/lib/projects/__tests__/LocalDevWebsocketServer.test.d.ts +1 -0
  542. package/lib/projects/__tests__/LocalDevWebsocketServer.test.js +365 -0
  543. package/lib/projects/__tests__/ProjectLogsManager.test.d.ts +1 -0
  544. package/lib/projects/__tests__/ProjectLogsManager.test.js +189 -0
  545. package/lib/projects/__tests__/components.test.d.ts +1 -0
  546. package/lib/projects/__tests__/components.test.js +338 -0
  547. package/lib/projects/__tests__/deploy.test.d.ts +1 -0
  548. package/lib/projects/__tests__/deploy.test.js +229 -0
  549. package/lib/projects/__tests__/localDevProjectHelpers.test.d.ts +1 -0
  550. package/lib/projects/__tests__/localDevProjectHelpers.test.js +122 -0
  551. package/lib/projects/__tests__/platformVersion.test.d.ts +1 -0
  552. package/lib/projects/__tests__/platformVersion.test.js +23 -0
  553. package/lib/projects/__tests__/projects.test.d.ts +1 -0
  554. package/lib/projects/__tests__/projects.test.js +84 -0
  555. package/lib/projects/__tests__/structure.test.d.ts +1 -0
  556. package/lib/projects/__tests__/structure.test.js +211 -0
  557. package/lib/projects/__tests__/upload.test.d.ts +1 -0
  558. package/lib/projects/__tests__/upload.test.js +82 -0
  559. package/lib/projects/add/__tests__/legacyAddComponent.test.d.ts +1 -0
  560. package/lib/projects/add/__tests__/legacyAddComponent.test.js +247 -0
  561. package/lib/projects/add/__tests__/v3AddComponent.test.d.ts +1 -0
  562. package/lib/projects/add/__tests__/v3AddComponent.test.js +319 -0
  563. package/lib/projects/add/legacyAddComponent.d.ts +5 -0
  564. package/lib/projects/add/legacyAddComponent.js +46 -0
  565. package/lib/projects/add/v3AddComponent.d.ts +9 -0
  566. package/lib/projects/add/v3AddComponent.js +101 -0
  567. package/lib/projects/components.d.ts +3 -0
  568. package/lib/projects/components.js +102 -0
  569. package/lib/projects/config.d.ts +1 -1
  570. package/lib/projects/config.js +32 -41
  571. package/lib/projects/create/__tests__/legacy.test.d.ts +1 -0
  572. package/lib/projects/create/__tests__/legacy.test.js +91 -0
  573. package/lib/projects/create/__tests__/v3.test.d.ts +1 -0
  574. package/lib/projects/create/__tests__/v3.test.js +241 -0
  575. package/lib/projects/create/index.d.ts +24 -0
  576. package/lib/projects/create/index.js +36 -0
  577. package/lib/projects/create/legacy.d.ts +6 -0
  578. package/lib/projects/create/legacy.js +53 -0
  579. package/lib/projects/create/v3.d.ts +26 -0
  580. package/lib/projects/create/v3.js +171 -0
  581. package/lib/projects/deploy.d.ts +13 -0
  582. package/lib/projects/deploy.js +63 -0
  583. package/lib/projects/ensureProjectExists.js +31 -37
  584. package/lib/projects/localDev/AppDevModeInterface.d.ts +13 -5
  585. package/lib/projects/localDev/AppDevModeInterface.js +218 -68
  586. package/lib/projects/localDev/DevServerManager.d.ts +1 -1
  587. package/lib/projects/localDev/DevServerManager.js +22 -27
  588. package/lib/projects/localDev/DevServerManagerV2.d.ts +2 -2
  589. package/lib/projects/localDev/DevServerManagerV2.js +16 -22
  590. package/lib/projects/localDev/LocalDevLogger.d.ts +5 -5
  591. package/lib/projects/localDev/LocalDevLogger.js +88 -78
  592. package/lib/projects/localDev/LocalDevManager.d.ts +1 -1
  593. package/lib/projects/localDev/LocalDevManager.js +106 -111
  594. package/lib/projects/localDev/LocalDevProcess.d.ts +19 -8
  595. package/lib/projects/localDev/LocalDevProcess.js +155 -61
  596. package/lib/projects/localDev/LocalDevState.d.ts +33 -11
  597. package/lib/projects/localDev/LocalDevState.js +77 -25
  598. package/lib/projects/localDev/LocalDevWatcher.d.ts +1 -1
  599. package/lib/projects/localDev/LocalDevWatcher.js +9 -17
  600. package/lib/projects/localDev/LocalDevWebsocketServer.d.ts +8 -3
  601. package/lib/projects/localDev/LocalDevWebsocketServer.js +138 -47
  602. package/lib/projects/localDev/{helpers.d.ts → helpers/account.d.ts} +3 -9
  603. package/lib/projects/localDev/helpers/account.js +233 -0
  604. package/lib/projects/localDev/helpers/project.d.ts +12 -0
  605. package/lib/projects/localDev/helpers/project.js +176 -0
  606. package/lib/projects/localDev/localDevWebsocketServerUtils.d.ts +4 -0
  607. package/lib/projects/localDev/localDevWebsocketServerUtils.js +10 -0
  608. package/lib/projects/platformVersion.d.ts +1 -0
  609. package/lib/projects/platformVersion.js +10 -0
  610. package/lib/projects/{buildAndDeploy.d.ts → pollProjectBuildAndDeploy.d.ts} +1 -2
  611. package/lib/projects/{buildAndDeploy.js → pollProjectBuildAndDeploy.js} +90 -109
  612. package/lib/projects/structure.d.ts +3 -3
  613. package/lib/projects/structure.js +32 -78
  614. package/lib/projects/ui.js +10 -13
  615. package/lib/projects/upload.d.ts +4 -1
  616. package/lib/projects/upload.js +91 -58
  617. package/lib/projects/urls.d.ts +5 -0
  618. package/lib/projects/urls.js +30 -17
  619. package/lib/projects/watch.d.ts +1 -1
  620. package/lib/projects/watch.js +48 -54
  621. package/lib/prompts/__tests__/createFunctionPrompt.test.d.ts +1 -0
  622. package/lib/prompts/__tests__/createFunctionPrompt.test.js +129 -0
  623. package/lib/prompts/__tests__/createModulePrompt.test.d.ts +1 -0
  624. package/lib/prompts/__tests__/createModulePrompt.test.js +187 -0
  625. package/lib/prompts/__tests__/createTemplatePrompt.test.d.ts +1 -0
  626. package/lib/prompts/__tests__/createTemplatePrompt.test.js +102 -0
  627. package/lib/prompts/__tests__/downloadProjectPrompt.test.d.ts +1 -0
  628. package/lib/prompts/__tests__/downloadProjectPrompt.test.js +28 -0
  629. package/lib/prompts/__tests__/projectAddPrompt.test.d.ts +1 -0
  630. package/lib/prompts/__tests__/projectAddPrompt.test.js +143 -0
  631. package/lib/prompts/__tests__/projectsLogsPrompt.test.d.ts +1 -0
  632. package/lib/prompts/__tests__/projectsLogsPrompt.test.js +37 -0
  633. package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.d.ts +1 -0
  634. package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.js +160 -0
  635. package/lib/prompts/accountNamePrompt.d.ts +1 -1
  636. package/lib/prompts/accountNamePrompt.js +26 -31
  637. package/lib/prompts/accountsPrompt.js +12 -15
  638. package/lib/prompts/cmsFieldPrompt.js +13 -19
  639. package/lib/prompts/confirmImportDataPrompt.d.ts +1 -0
  640. package/lib/prompts/confirmImportDataPrompt.js +12 -0
  641. package/lib/prompts/createApiSamplePrompt.d.ts +1 -1
  642. package/lib/prompts/createApiSamplePrompt.js +9 -12
  643. package/lib/prompts/createDeveloperTestAccountConfigPrompt.d.ts +18 -0
  644. package/lib/prompts/createDeveloperTestAccountConfigPrompt.js +146 -0
  645. package/lib/prompts/createFunctionPrompt.d.ts +2 -1
  646. package/lib/prompts/createFunctionPrompt.js +51 -25
  647. package/lib/prompts/createModulePrompt.d.ts +2 -1
  648. package/lib/prompts/createModulePrompt.js +60 -17
  649. package/lib/prompts/createTemplatePrompt.d.ts +3 -24
  650. package/lib/prompts/createTemplatePrompt.js +13 -8
  651. package/lib/prompts/downloadProjectPrompt.js +17 -20
  652. package/lib/prompts/importDataFilePathPrompt.d.ts +1 -0
  653. package/lib/prompts/importDataFilePathPrompt.js +26 -0
  654. package/lib/prompts/importDataTestAccountSelectPrompt.d.ts +3 -0
  655. package/lib/prompts/importDataTestAccountSelectPrompt.js +29 -0
  656. package/lib/prompts/installAppPrompt.d.ts +7 -1
  657. package/lib/prompts/installAppPrompt.js +29 -21
  658. package/lib/prompts/personalAccessKeyPrompt.d.ts +2 -2
  659. package/lib/prompts/personalAccessKeyPrompt.js +53 -49
  660. package/lib/prompts/previewPrompt.js +15 -22
  661. package/lib/prompts/projectAddPrompt.d.ts +6 -1
  662. package/lib/prompts/projectAddPrompt.js +39 -13
  663. package/lib/prompts/projectDevTargetAccountPrompt.d.ts +1 -1
  664. package/lib/prompts/projectDevTargetAccountPrompt.js +49 -54
  665. package/lib/prompts/projectNameAndDestPrompt.d.ts +3 -0
  666. package/lib/prompts/projectNameAndDestPrompt.js +53 -0
  667. package/lib/prompts/projectNamePrompt.js +11 -14
  668. package/lib/prompts/projectsLogsPrompt.js +5 -8
  669. package/lib/prompts/promptUtils.d.ts +11 -3
  670. package/lib/prompts/promptUtils.js +195 -44
  671. package/lib/prompts/sandboxesPrompt.d.ts +1 -1
  672. package/lib/prompts/sandboxesPrompt.js +26 -30
  673. package/lib/prompts/secretPrompt.js +10 -15
  674. package/lib/prompts/selectAppPrompt.js +11 -14
  675. package/lib/prompts/selectHubDBTablePrompt.js +24 -30
  676. package/lib/prompts/selectProjectTemplatePrompt.d.ts +27 -0
  677. package/lib/prompts/selectProjectTemplatePrompt.js +71 -0
  678. package/lib/prompts/selectPublicAppForMigrationPrompt.js +22 -25
  679. package/lib/prompts/setAsDefaultAccountPrompt.js +18 -11
  680. package/lib/prompts/uploadPrompt.js +11 -17
  681. package/lib/sandboxSync.d.ts +1 -1
  682. package/lib/sandboxSync.js +58 -65
  683. package/lib/sandboxes.d.ts +5 -1
  684. package/lib/sandboxes.js +72 -76
  685. package/lib/schema.js +16 -19
  686. package/lib/serverlessLogs.js +45 -52
  687. package/lib/testUtils.js +5 -10
  688. package/lib/theme/__tests__/migrate.test.d.ts +1 -0
  689. package/lib/theme/__tests__/migrate.test.js +233 -0
  690. package/lib/theme/migrate.d.ts +13 -0
  691. package/lib/theme/migrate.js +90 -0
  692. package/lib/ui/SpinniesManager.d.ts +1 -1
  693. package/lib/ui/SpinniesManager.js +29 -35
  694. package/lib/ui/__tests__/removeAnsiCodes.test.d.ts +1 -0
  695. package/lib/ui/__tests__/removeAnsiCodes.test.js +84 -0
  696. package/lib/ui/boxen.js +11 -14
  697. package/lib/ui/git.js +14 -20
  698. package/lib/ui/index.d.ts +6 -0
  699. package/lib/ui/index.js +58 -81
  700. package/lib/ui/logger.d.ts +1 -0
  701. package/lib/ui/logger.js +11 -13
  702. package/lib/ui/removeAnsiCodes.d.ts +1 -0
  703. package/lib/ui/removeAnsiCodes.js +4 -0
  704. package/lib/ui/serverlessFunctionLogs.js +14 -20
  705. package/lib/ui/spinniesUtils.js +24 -39
  706. package/lib/ui/supportHyperlinks.js +3 -6
  707. package/lib/ui/supportsColor.js +11 -17
  708. package/lib/ui/table.js +6 -13
  709. package/lib/upload.js +15 -21
  710. package/lib/usageTracking.d.ts +11 -0
  711. package/lib/usageTracking.js +88 -103
  712. package/lib/utils/hasFlag.d.ts +1 -0
  713. package/lib/utils/hasFlag.js +9 -0
  714. package/lib/validation.d.ts +1 -1
  715. package/lib/validation.js +50 -89
  716. package/lib/yargsUtils.d.ts +4 -1
  717. package/lib/yargsUtils.js +28 -25
  718. package/mcp-server/server.d.ts +1 -0
  719. package/mcp-server/server.js +17 -0
  720. package/mcp-server/tools/cms/HsCreateFunctionTool.d.ts +32 -0
  721. package/mcp-server/tools/cms/HsCreateFunctionTool.js +96 -0
  722. package/mcp-server/tools/cms/HsCreateModuleTool.d.ts +38 -0
  723. package/mcp-server/tools/cms/HsCreateModuleTool.js +118 -0
  724. package/mcp-server/tools/cms/HsCreateTemplateTool.d.ts +26 -0
  725. package/mcp-server/tools/cms/HsCreateTemplateTool.js +75 -0
  726. package/mcp-server/tools/cms/HsFunctionLogsTool.d.ts +32 -0
  727. package/mcp-server/tools/cms/HsFunctionLogsTool.js +76 -0
  728. package/mcp-server/tools/cms/HsListFunctionsTool.d.ts +23 -0
  729. package/mcp-server/tools/cms/HsListFunctionsTool.js +58 -0
  730. package/mcp-server/tools/cms/HsListTool.d.ts +23 -0
  731. package/mcp-server/tools/cms/HsListTool.js +58 -0
  732. package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.d.ts +1 -0
  733. package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.js +251 -0
  734. package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.d.ts +1 -0
  735. package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.js +224 -0
  736. package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.d.ts +1 -0
  737. package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.js +206 -0
  738. package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.d.ts +1 -0
  739. package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.js +183 -0
  740. package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.d.ts +1 -0
  741. package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.js +120 -0
  742. package/mcp-server/tools/cms/__tests__/HsListTool.test.d.ts +1 -0
  743. package/mcp-server/tools/cms/__tests__/HsListTool.test.js +120 -0
  744. package/mcp-server/tools/index.d.ts +3 -0
  745. package/mcp-server/tools/index.js +38 -0
  746. package/mcp-server/tools/project/AddFeatureToProjectTool.d.ts +29 -0
  747. package/mcp-server/tools/project/AddFeatureToProjectTool.js +76 -0
  748. package/mcp-server/tools/project/CreateProjectTool.d.ts +35 -0
  749. package/mcp-server/tools/project/CreateProjectTool.js +93 -0
  750. package/mcp-server/tools/project/DeployProjectTool.d.ts +20 -0
  751. package/mcp-server/tools/project/DeployProjectTool.js +49 -0
  752. package/mcp-server/tools/project/DocFetchTool.d.ts +17 -0
  753. package/mcp-server/tools/project/DocFetchTool.js +49 -0
  754. package/mcp-server/tools/project/DocsSearchTool.d.ts +29 -0
  755. package/mcp-server/tools/project/DocsSearchTool.js +62 -0
  756. package/mcp-server/tools/project/GetConfigValuesTool.d.ts +23 -0
  757. package/mcp-server/tools/project/GetConfigValuesTool.js +58 -0
  758. package/mcp-server/tools/project/GuidedWalkthroughTool.d.ts +17 -0
  759. package/mcp-server/tools/project/GuidedWalkthroughTool.js +57 -0
  760. package/mcp-server/tools/project/UploadProjectTools.d.ts +17 -0
  761. package/mcp-server/tools/project/UploadProjectTools.js +31 -0
  762. package/mcp-server/tools/project/ValidateProjectTool.d.ts +17 -0
  763. package/mcp-server/tools/project/ValidateProjectTool.js +34 -0
  764. package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.d.ts +1 -0
  765. package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.js +151 -0
  766. package/mcp-server/tools/project/__tests__/CreateProjectTool.test.d.ts +1 -0
  767. package/mcp-server/tools/project/__tests__/CreateProjectTool.test.js +127 -0
  768. package/mcp-server/tools/project/__tests__/DeployProjectTool.test.d.ts +1 -0
  769. package/mcp-server/tools/project/__tests__/DeployProjectTool.test.js +119 -0
  770. package/mcp-server/tools/project/__tests__/DocFetchTool.test.d.ts +1 -0
  771. package/mcp-server/tools/project/__tests__/DocFetchTool.test.js +117 -0
  772. package/mcp-server/tools/project/__tests__/DocsSearchTool.test.d.ts +1 -0
  773. package/mcp-server/tools/project/__tests__/DocsSearchTool.test.js +192 -0
  774. package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.d.ts +1 -0
  775. package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.js +199 -0
  776. package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.d.ts +1 -0
  777. package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.js +126 -0
  778. package/mcp-server/tools/project/__tests__/UploadProjectTools.test.d.ts +1 -0
  779. package/mcp-server/tools/project/__tests__/UploadProjectTools.test.js +107 -0
  780. package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.d.ts +1 -0
  781. package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.js +110 -0
  782. package/mcp-server/tools/project/constants.d.ts +6 -0
  783. package/mcp-server/tools/project/constants.js +32 -0
  784. package/mcp-server/types.d.ts +14 -0
  785. package/mcp-server/types.js +13 -0
  786. package/mcp-server/utils/__tests__/cliConfig.test.d.ts +1 -0
  787. package/mcp-server/utils/__tests__/cliConfig.test.js +110 -0
  788. package/mcp-server/utils/__tests__/command.test.d.ts +1 -0
  789. package/mcp-server/utils/__tests__/command.test.js +45 -0
  790. package/mcp-server/utils/__tests__/project.test.d.ts +1 -0
  791. package/mcp-server/utils/__tests__/project.test.js +79 -0
  792. package/mcp-server/utils/cliConfig.d.ts +1 -0
  793. package/mcp-server/utils/cliConfig.js +12 -0
  794. package/mcp-server/utils/command.d.ts +3 -0
  795. package/mcp-server/utils/command.js +9 -0
  796. package/mcp-server/utils/content.d.ts +3 -0
  797. package/mcp-server/utils/content.js +17 -0
  798. package/mcp-server/utils/project.d.ts +5 -0
  799. package/mcp-server/utils/project.js +14 -0
  800. package/mcp-server/utils/toolUsageTracking.d.ts +3 -0
  801. package/mcp-server/utils/toolUsageTracking.js +23 -0
  802. package/package.json +42 -33
  803. package/types/Cms.d.ts +17 -1
  804. package/types/Cms.js +25 -2
  805. package/types/LocalDev.d.ts +34 -8
  806. package/types/LocalDev.js +1 -2
  807. package/types/ProjectComponents.d.ts +2 -2
  808. package/types/ProjectComponents.js +1 -2
  809. package/types/Projects.d.ts +20 -2
  810. package/types/Projects.js +2 -5
  811. package/types/Prompts.d.ts +5 -2
  812. package/types/Prompts.js +1 -2
  813. package/types/Sandboxes.js +1 -2
  814. package/types/Yargs.d.ts +7 -1
  815. package/types/Yargs.js +1 -2
  816. package/ui/components/BoxWithTitle.d.ts +8 -0
  817. package/ui/components/BoxWithTitle.js +9 -0
  818. package/ui/components/HorizontalSelectPrompt.d.ts +8 -0
  819. package/ui/components/HorizontalSelectPrompt.js +30 -0
  820. package/ui/components/StatusMessageBoxes.d.ts +12 -0
  821. package/ui/components/StatusMessageBoxes.js +31 -0
  822. package/ui/index.d.ts +1 -0
  823. package/ui/index.js +6 -0
  824. package/ui/lib/ui-testing-utils.d.ts +9 -0
  825. package/ui/lib/ui-testing-utils.js +47 -0
  826. package/ui/lib/useTerminalSize.d.ts +13 -0
  827. package/ui/lib/useTerminalSize.js +31 -0
  828. package/ui/styles.d.ts +18 -0
  829. package/ui/styles.js +18 -0
  830. package/ui/views/UiSandbox.d.ts +5 -0
  831. package/ui/views/UiSandbox.js +25 -0
  832. package/bin/hsmcp.d.ts +0 -2
  833. package/bin/hsmcp.js +0 -13
  834. package/commands/setupMcp.d.ts +0 -8
  835. package/commands/setupMcp.js +0 -229
  836. package/lib/projects/create.d.ts +0 -5
  837. package/lib/projects/create.js +0 -50
  838. package/lib/projects/localDev/helpers.js +0 -351
  839. package/lib/prompts/createProjectPrompt.d.ts +0 -19
  840. package/lib/prompts/createProjectPrompt.js +0 -95
  841. package/mcp-server/index.js +0 -17
  842. package/mcp-server/mcpLoader.d.ts +0 -5
  843. package/mcp-server/mcpLoader.js +0 -24
  844. package/mcp-server/tools/ExplainProjectStructureTool.d.ts +0 -33
  845. package/mcp-server/tools/ExplainProjectStructureTool.js +0 -266
  846. package/mcp-server/tools/GenerateAppComponentTool.d.ts +0 -99
  847. package/mcp-server/tools/GenerateAppComponentTool.js +0 -193
  848. package/mcp-server/tools/GenerateCardComponentTool.d.ts +0 -74
  849. package/mcp-server/tools/GenerateCardComponentTool.js +0 -146
  850. package/mcp-server/tools/GenerateProjectConfigTool.d.ts +0 -32
  851. package/mcp-server/tools/GenerateProjectConfigTool.js +0 -40
  852. package/mcp-server/tools/HubSpotCLIHelper.d.ts +0 -24
  853. package/mcp-server/tools/HubSpotCLIHelper.js +0 -110
  854. package/mcp-server/tools/UploadProjectTool.d.ts +0 -44
  855. package/mcp-server/tools/UploadProjectTool.js +0 -166
  856. package/mcp-server/tools/ValidateProjectTool.d.ts +0 -62
  857. package/mcp-server/tools/ValidateProjectTool.js +0 -336
  858. /package/{mcp-server/index.d.ts → api/__tests__/migrate.test.d.ts} +0 -0
package/package.json CHANGED
@@ -1,35 +1,36 @@
1
1
  {
2
2
  "name": "@hubspot/cli",
3
- "version": "7.7.0-experimental.2",
3
+ "version": "7.7.0",
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
+ "type": "module",
7
8
  "dependencies": {
8
- "@hubspot/local-dev-lib": "3.7.0",
9
- "@hubspot/project-parsing-lib": "0.2.0",
10
- "@hubspot/serverless-dev-runtime": "7.0.2",
9
+ "@hubspot/local-dev-lib": "3.19.1",
10
+ "@hubspot/project-parsing-lib": "0.9.0",
11
+ "@hubspot/serverless-dev-runtime": "7.0.6",
11
12
  "@hubspot/theme-preview-dev-server": "0.0.10",
12
- "@hubspot/ui-extensions-dev-server": "0.8.52",
13
- "@modelcontextprotocol/sdk": "^1.12.1",
13
+ "@hubspot/ui-extensions-dev-server": "0.10.0",
14
14
  "archiver": "7.0.1",
15
15
  "boxen": "8.0.1",
16
- "chalk": "4.1.2",
16
+ "chalk": "5.4.1",
17
17
  "chokidar": "3.6.0",
18
18
  "cli-cursor": "3.1.0",
19
19
  "cli-progress": "3.12.0",
20
20
  "express": "4.21.2",
21
21
  "findup-sync": "4.0.0",
22
22
  "fs-extra": "8.1.0",
23
- "inquirer": "8.2.0",
23
+ "ink": "5.2.1",
24
+ "inquirer": "12.7.0",
24
25
  "js-yaml": "4.1.0",
25
- "mcp-framework": "^0.2.2",
26
26
  "moment": "2.30.1",
27
27
  "open": "7.4.2",
28
- "p-queue": "6.6.2",
29
- "strip-ansi": "5.2.0",
28
+ "p-queue": "8.1.0",
29
+ "react": "^18.0.0",
30
+ "strip-ansi": "7.1.0",
30
31
  "table": "6.9.0",
31
32
  "tmp": "0.2.3",
32
- "update-notifier": "5.1.0",
33
+ "update-notifier": "7.3.1",
33
34
  "ws": "^8.18.2",
34
35
  "yargs": "17.7.2",
35
36
  "yargs-parser": "21.1.1"
@@ -40,52 +41,61 @@
40
41
  "@types/express": "^5.0.0",
41
42
  "@types/findup-sync": "^4.0.5",
42
43
  "@types/fs-extra": "^11.0.4",
43
- "@types/jest": "^29.5.14",
44
+ "@types/inquirer": "^9.0.8",
44
45
  "@types/js-yaml": "^4.0.9",
46
+ "@types/node": "^24.1.0",
47
+ "@types/react": "^18.3.12",
45
48
  "@types/semver": "^7.5.8",
46
49
  "@types/tmp": "^0.2.6",
50
+ "@types/update-notifier": "^6.0.8",
47
51
  "@types/ws": "^8.18.1",
48
52
  "@types/yargs": "^17.0.33",
49
53
  "@typescript-eslint/eslint-plugin": "^8.30.1",
50
54
  "@typescript-eslint/parser": "^8.11.0",
51
- "axios": "^1.7.2",
55
+ "axios": "^1.7.4",
52
56
  "eslint": "^8.56.0",
53
57
  "eslint-plugin-import": "^2.31.0",
54
58
  "husky": "^4.3.8",
55
- "jest": "^29.5.0",
56
59
  "lint-staged": "^10.5.4",
57
60
  "madge": "^8.0.0",
58
61
  "mock-stdin": "^1.0.0",
59
62
  "prettier": "^3.4.2",
60
63
  "semver": "^7.6.3",
61
- "ts-jest": "^29.2.5",
62
64
  "ts-node": "^10.9.2",
63
- "typescript": "^5.6.2"
65
+ "tsx": "^4.20.3",
66
+ "typescript": "^5.6.2",
67
+ "vitest": "^2.1.9"
64
68
  },
65
69
  "optionalDependencies": {
66
- "@hubspot/cms-dev-server": "^1.0.9"
70
+ "@hubspot/cms-dev-server": "^1.0.9",
71
+ "@modelcontextprotocol/sdk": "1.13.3"
67
72
  },
68
73
  "scripts": {
69
- "build": "ts-node ./scripts/build.ts",
74
+ "build": "tsx ./scripts/build.ts",
75
+ "build-docker": "docker image build --tag hs-cli-image . && docker image prune -f",
76
+ "circular-deps": "yarn madge --circular .",
77
+ "debug-mcp": "yarn build && npx @modelcontextprotocol/inspector node dist/mcp-server/server.js",
78
+ "hs": "yarn build && node ./dist/bin/hs",
79
+ "hs-debug": "yarn build && NODE_DEBUG=http* node --inspect-brk ./dist/bin/hs",
70
80
  "lint": "echo 'Linting is disabled for Blazar'",
71
- "lint:local": "eslint . && prettier --list-different './**/*.{ts,js,json}'",
72
- "list-all-commands": "yarn ts-node ./scripts/get-all-commands.ts",
73
- "local-link": "yarn ts-node ./scripts/linking.ts",
81
+ "lint:local": "eslint . && prettier --list-different './**/*.{ts,tsx,js,json}'",
82
+ "list-all-commands": "yarn tsx ./scripts/get-all-commands.ts",
83
+ "local-link": "yarn tsx ./scripts/linking.ts",
84
+ "mcp-local": "yarn tsx ./scripts/mcp-local.ts",
74
85
  "prettier:write": "prettier --write './**/*.{ts,js,json}'",
75
- "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
86
+ "release": "yarn tsx ./scripts/release.ts release",
87
+ "view-ui": "yarn build && yarn tsx ./scripts/view-ui.ts",
88
+ "test": "vitest run",
89
+ "test-dev": "vitest",
76
90
  "test-cli": "yarn build && yarn --cwd 'acceptance-tests' test-ci",
77
91
  "test-cli-debug": "yarn build && yarn --cwd 'acceptance-tests' test-debug",
78
- "test-cli-qa": "yarn build && yarn --cwd 'acceptance-tests' test-qa",
79
92
  "test-cli-latest": "yarn build && yarn build-docker && docker container run -it --rm --name=hs-cli-container hs-cli-image yarn --cwd 'acceptance-tests' test-latest",
80
- "build-docker": "docker image build --tag hs-cli-image . && docker image prune -f",
81
- "circular-deps": "yarn madge --circular .",
82
- "release": "yarn ts-node ./scripts/release.ts release",
83
- "hs": "yarn build && node ./dist/bin/hs",
84
- "hs-debug": "yarn build && NODE_DEBUG=http* node --inspect-brk ./dist/bin/hs",
85
- "update-ldl": "yarn add --exact @hubspot/local-dev-lib@latest"
93
+ "test-cli-qa": "yarn build && yarn --cwd 'acceptance-tests' test-qa",
94
+ "update-ldl": "yarn add --exact @hubspot/local-dev-lib@latest",
95
+ "view-unreleased-changes": "node ./scripts/unreleasedChanges.js"
86
96
  },
87
97
  "lint-staged": {
88
- "**/*.{js,ts,scss,css}": [
98
+ "**/*.{js,ts,tsx,scss,css}": [
89
99
  "prettier -l",
90
100
  "eslint"
91
101
  ]
@@ -100,8 +110,7 @@
100
110
  },
101
111
  "bin": {
102
112
  "hs": "./bin/hs",
103
- "hscms": "./bin/hscms",
104
- "hsmcp": "./bin/hsmcp.js"
113
+ "hscms": "./bin/hscms"
105
114
  },
106
115
  "publishConfig": {
107
116
  "access": "public",
package/types/Cms.d.ts CHANGED
@@ -1,10 +1,26 @@
1
- import { CommonArgs, ConfigArgs } from './Yargs';
1
+ import { CommonArgs, ConfigArgs } from './Yargs.js';
2
+ export declare const TEMPLATE_TYPES: readonly ["page-template", "email-template", "partial", "global-partial", "blog-listing-template", "blog-post-template", "search-template", "section"];
3
+ export type TemplateType = (typeof TEMPLATE_TYPES)[number];
4
+ export declare const HTTP_METHODS: readonly ["DELETE", "GET", "PATCH", "POST", "PUT"];
5
+ export type HttpMethod = (typeof HTTP_METHODS)[number];
6
+ export declare const CONTENT_TYPES: readonly ["ANY", "LANDING_PAGE", "SITE_PAGE", "BLOG_POST", "BLOG_LISTING", "EMAIL", "KNOWLEDGE_BASE", "QUOTE_TEMPLATE", "CUSTOMER_PORTAL", "WEB_INTERACTIVE", "SUBSCRIPTION", "MEMBERSHIP"];
7
+ export type ContentType = (typeof CONTENT_TYPES)[number];
2
8
  export type CreateArgs = CommonArgs & ConfigArgs & {
3
9
  branch?: string;
4
10
  type: string;
5
11
  dest: string;
6
12
  name: string;
7
13
  internal?: boolean;
14
+ templateType?: TemplateType;
15
+ moduleLabel?: string;
16
+ reactType?: boolean;
17
+ contentTypes?: string;
18
+ global?: boolean;
19
+ availableForNewContent?: boolean;
20
+ functionsFolder?: string;
21
+ filename?: string;
22
+ endpointMethod?: HttpMethod;
23
+ endpointPath?: string;
8
24
  };
9
25
  export type CmsAssetOperationArgs = {
10
26
  assetType: string;
package/types/Cms.js CHANGED
@@ -1,2 +1,25 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export const TEMPLATE_TYPES = [
2
+ 'page-template',
3
+ 'email-template',
4
+ 'partial',
5
+ 'global-partial',
6
+ 'blog-listing-template',
7
+ 'blog-post-template',
8
+ 'search-template',
9
+ 'section',
10
+ ];
11
+ export const HTTP_METHODS = ['DELETE', 'GET', 'PATCH', 'POST', 'PUT'];
12
+ export const CONTENT_TYPES = [
13
+ 'ANY',
14
+ 'LANDING_PAGE',
15
+ 'SITE_PAGE',
16
+ 'BLOG_POST',
17
+ 'BLOG_LISTING',
18
+ 'EMAIL',
19
+ 'KNOWLEDGE_BASE',
20
+ 'QUOTE_TEMPLATE',
21
+ 'CUSTOMER_PORTAL',
22
+ 'WEB_INTERACTIVE',
23
+ 'SUBSCRIPTION',
24
+ 'MEMBERSHIP',
25
+ ];
@@ -1,24 +1,50 @@
1
- import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types';
2
- import { Build } from '@hubspot/local-dev-lib/types/Build';
1
+ import { HSProfileVariables, IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types.js';
3
2
  import { Environment } from '@hubspot/local-dev-lib/types/Config';
4
- import { ProjectConfig } from './Projects';
5
- import LocalDevState from '../lib/projects/localDev/LocalDevState';
3
+ import { ValueOf } from '@hubspot/local-dev-lib/types/Utils';
4
+ import { Project } from '@hubspot/local-dev-lib/types/Project';
5
+ import { ProjectConfig } from './Projects.js';
6
+ import LocalDevState from '../lib/projects/localDev/LocalDevState.js';
7
+ import { APP_INSTALLATION_STATES, LOCAL_DEV_UI_MESSAGE_RECEIVE_TYPES, LOCAL_DEV_SERVER_MESSAGE_TYPES } from '../lib/constants.js';
6
8
  export type LocalDevStateConstructorOptions = {
7
9
  targetProjectAccountId: number;
8
10
  targetTestingAccountId: number;
11
+ profile?: string;
9
12
  projectConfig: ProjectConfig;
10
13
  projectDir: string;
11
- projectId: number;
14
+ projectData: Project;
12
15
  debug?: boolean;
13
- deployedBuild?: Build;
14
- isGithubLinked: boolean;
15
16
  initialProjectNodes: {
16
17
  [key: string]: IntermediateRepresentationNodeLocalDev;
17
18
  };
19
+ initialProjectProfileData: HSProfileVariables;
18
20
  env: Environment;
19
21
  };
20
22
  export type LocalDevWebsocketMessage = {
21
23
  type: string;
22
- data: unknown;
24
+ data?: unknown;
25
+ };
26
+ export type LocalDevDeployWebsocketMessage = {
27
+ type: typeof LOCAL_DEV_UI_MESSAGE_RECEIVE_TYPES.DEPLOY;
28
+ data: {
29
+ force: boolean;
30
+ };
23
31
  };
24
32
  export type LocalDevStateListener<K extends keyof LocalDevState> = (value: LocalDevState[K]) => void;
33
+ export type AppLocalDevData = {
34
+ id: number;
35
+ clientId: string;
36
+ name: string;
37
+ installationState: ValueOf<typeof APP_INSTALLATION_STATES>;
38
+ scopeGroupIds: number[];
39
+ };
40
+ export type LocalDevServerMessage = ValueOf<typeof LOCAL_DEV_SERVER_MESSAGE_TYPES>;
41
+ export type LocalDevProjectUploadResult = {
42
+ uploadSuccess: boolean;
43
+ buildSuccess: boolean;
44
+ deploySuccess?: boolean;
45
+ deployId?: number;
46
+ };
47
+ export type LocalDevProjectDeployResult = {
48
+ success: boolean;
49
+ deployId?: number;
50
+ };
package/types/LocalDev.js CHANGED
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,5 +1,5 @@
1
- import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types';
2
- import { IR_COMPONENT_TYPES, APP_DISTRIBUTION_TYPES, APP_AUTH_TYPES } from '../lib/constants';
1
+ import { IntermediateRepresentationNodeLocalDev } from '@hubspot/project-parsing-lib/src/lib/types.js';
2
+ import { IR_COMPONENT_TYPES, APP_DISTRIBUTION_TYPES, APP_AUTH_TYPES } from '../lib/constants.js';
3
3
  import { ValueOf } from '@hubspot/local-dev-lib/types/Utils';
4
4
  type AppDistributionType = ValueOf<typeof APP_DISTRIBUTION_TYPES>;
5
5
  type AppAuthType = ValueOf<typeof APP_AUTH_TYPES>;
@@ -1,3 +1,2 @@
1
- "use strict";
2
1
  // These types are for Unified Apps and projects on platform version 2025.1 and above
3
- Object.defineProperty(exports, "__esModule", { value: true });
2
+ export {};
@@ -1,15 +1,24 @@
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.js';
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
+ cliSelector?: string;
14
+ parentComponent?: string;
15
+ supportedAuthTypes?: string[];
16
+ supportedDistributions?: string[];
17
+ };
18
+ export type ComponentTemplateChoice = {
19
+ name: string;
20
+ value: ComponentTemplate;
21
+ disabled?: string | boolean;
13
22
  };
14
23
  export type ProjectConfig = {
15
24
  name: string;
@@ -32,9 +41,18 @@ export type ProjectPollStatusFunctionText = {
32
41
  TYPE_KEY: string;
33
42
  SUBTASK_NAME_KEY: string;
34
43
  };
44
+ export type ParentComponent = {
45
+ label: string;
46
+ type: typeof appComponent;
47
+ authType: typeof staticAuth | typeof oAuth;
48
+ distribution: typeof privateDistribution | typeof marketplaceDistribution;
49
+ path: string;
50
+ };
35
51
  export type ProjectTemplateRepoConfig = {
36
52
  projects?: ProjectTemplate[];
37
53
  components?: ComponentTemplate[];
54
+ defaultFiles?: string;
55
+ parentComponents?: ParentComponent[];
38
56
  };
39
57
  export type ProjectPollResult = {
40
58
  succeeded: boolean;
package/types/Projects.js CHANGED
@@ -1,9 +1,6 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ComponentTypes = void 0;
4
- var ComponentTypes;
1
+ export var ComponentTypes;
5
2
  (function (ComponentTypes) {
6
3
  ComponentTypes["PrivateApp"] = "private-app";
7
4
  ComponentTypes["PublicApp"] = "public-app";
8
5
  ComponentTypes["HublTheme"] = "hubl-theme";
9
- })(ComponentTypes || (exports.ComponentTypes = ComponentTypes = {}));
6
+ })(ComponentTypes || (ComponentTypes = {}));
@@ -1,3 +1,4 @@
1
+ import { Separator } from '@inquirer/prompts';
1
2
  export type GenericPromptResponse = {
2
3
  [key: string]: any;
3
4
  };
@@ -6,9 +7,10 @@ export type PromptChoices<T = any> = Array<string | {
6
7
  name: string;
7
8
  value?: T;
8
9
  disabled?: string | boolean;
9
- }>;
10
+ checked?: boolean;
11
+ } | Separator>;
10
12
  export type PromptWhen = boolean | (() => boolean);
11
- type PromptOperand = string | number | boolean | string[] | boolean[] | null;
13
+ export type PromptOperand = string | number | boolean | string[] | boolean[] | null;
12
14
  export type PromptConfig<T extends GenericPromptResponse> = {
13
15
  name: keyof T;
14
16
  type?: PromptType;
@@ -21,5 +23,6 @@ export type PromptConfig<T extends GenericPromptResponse> = {
21
23
  validate?: (answer?: any) => PromptOperand | Promise<PromptOperand>;
22
24
  mask?: string;
23
25
  filter?: (input: string) => string;
26
+ loop?: boolean;
24
27
  };
25
28
  export {};
package/types/Prompts.js CHANGED
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
package/types/Yargs.d.ts CHANGED
@@ -2,7 +2,7 @@ import { Options, CommandModule, Argv } from 'yargs';
2
2
  import { CmsPublishMode } from '@hubspot/local-dev-lib/types/Files';
3
3
  export type CommonArgs = {
4
4
  derivedAccountId: number;
5
- providedAccountId?: number;
5
+ userProvidedAccount?: string;
6
6
  d: boolean;
7
7
  debug: boolean;
8
8
  };
@@ -24,8 +24,14 @@ export type OverwriteArgs = Options & {
24
24
  export type StringArgType = Options & {
25
25
  type: 'string';
26
26
  };
27
+ export type JSONOutputArgs = Options & {
28
+ json?: boolean;
29
+ formatOutputAsJson?: boolean;
30
+ };
27
31
  export type ProjectDevArgs = CommonArgs & ConfigArgs & EnvironmentArgs & {
28
32
  profile?: string;
33
+ testingAccount?: string | number;
34
+ projectAccount?: string | number;
29
35
  };
30
36
  export type TestingArgs = {
31
37
  qa?: boolean;
package/types/Yargs.js CHANGED
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -0,0 +1,8 @@
1
+ export interface BoxWithTitleProps {
2
+ title: string;
3
+ message: string;
4
+ titleBackgroundColor?: string;
5
+ borderColor?: string;
6
+ }
7
+ export declare function getBoxWithTitle(props: BoxWithTitleProps): React.ReactNode;
8
+ export declare function BoxWithTitle({ title, message, titleBackgroundColor, borderColor, }: BoxWithTitleProps): React.ReactNode;
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Text } from 'ink';
3
+ import { CONTAINER_STYLES } from '../styles.js';
4
+ export function getBoxWithTitle(props) {
5
+ return _jsx(BoxWithTitle, { ...props });
6
+ }
7
+ export function BoxWithTitle({ title, message, titleBackgroundColor, borderColor, }) {
8
+ return (_jsxs(Box, { ...CONTAINER_STYLES, borderStyle: "round", borderColor: borderColor, children: [_jsx(Box, { position: "absolute", marginTop: -2, paddingX: 0, alignSelf: "flex-start", justifyContent: "center", alignItems: "center", children: _jsx(Text, { backgroundColor: titleBackgroundColor, bold: true, children: ` ${title} ` }) }), _jsx(Box, { justifyContent: "center", alignItems: "center", children: _jsx(Text, { children: message }) })] }));
9
+ }
@@ -0,0 +1,8 @@
1
+ export interface HorizontalSelectPromptProps {
2
+ defaultOption?: string;
3
+ options: string[];
4
+ onSelect: (value: string) => void;
5
+ prompt?: string;
6
+ }
7
+ export declare function getHorizontalSelectPrompt(props: HorizontalSelectPromptProps): React.ReactNode;
8
+ export declare function HorizontalSelectPrompt({ defaultOption, options, onSelect, prompt, }: HorizontalSelectPromptProps): React.ReactNode;
@@ -0,0 +1,30 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { Box, Text, useInput } from 'ink';
3
+ import { useState } from 'react';
4
+ import { CONTAINER_STYLES, INK_COLORS } from '../styles.js';
5
+ export function getHorizontalSelectPrompt(props) {
6
+ return _jsx(HorizontalSelectPrompt, { ...props });
7
+ }
8
+ export function HorizontalSelectPrompt({ defaultOption, options, onSelect, prompt, }) {
9
+ const [selectedIndex, setSelectedIndex] = useState(defaultOption && options.indexOf(defaultOption) !== -1
10
+ ? options.indexOf(defaultOption)
11
+ : 0);
12
+ const moveRight = () => {
13
+ setSelectedIndex(prev => (prev < options.length - 1 ? prev + 1 : 0));
14
+ };
15
+ const moveLeft = () => {
16
+ setSelectedIndex(prev => (prev > 0 ? prev - 1 : options.length - 1));
17
+ };
18
+ useInput((_, key) => {
19
+ if (key.leftArrow) {
20
+ moveLeft();
21
+ }
22
+ else if (key.rightArrow) {
23
+ moveRight();
24
+ }
25
+ else if (key.return) {
26
+ onSelect(options[selectedIndex]);
27
+ }
28
+ });
29
+ return (_jsxs(Box, { ...CONTAINER_STYLES, flexDirection: "column", marginTop: 1, width: "100%", alignSelf: "center", justifyContent: "center", children: [prompt && (_jsx(Box, { marginBottom: 1, children: _jsx(Text, { children: prompt }) })), _jsx(Box, { flexDirection: "row", justifyContent: "center", flexWrap: "wrap", width: "100%", gap: 1, children: options.map((option, index) => (_jsx(Box, { children: _jsx(Text, { backgroundColor: index === selectedIndex ? INK_COLORS.INFO_BLUE : undefined, bold: index === selectedIndex, children: ` ${option} ` }) }, index))) }), _jsx(Box, { marginTop: 1, alignSelf: "center", justifyContent: "center", children: _jsx(Text, { dimColor: true, children: "Use arrow keys to navigate, Enter to select" }) })] }));
30
+ }
@@ -0,0 +1,12 @@
1
+ export interface StatusMessageBoxProps {
2
+ title: string;
3
+ message: string;
4
+ }
5
+ export declare function getWarningBox(props: StatusMessageBoxProps): React.ReactNode;
6
+ export declare function WarningBox({ title, message, }: StatusMessageBoxProps): React.ReactNode;
7
+ export declare function getAlertBox(props: StatusMessageBoxProps): React.ReactNode;
8
+ export declare function AlertBox({ title, message, }: StatusMessageBoxProps): React.ReactNode;
9
+ export declare function getSuccessBox(props: StatusMessageBoxProps): React.ReactNode;
10
+ export declare function SuccessBox({ title, message, }: StatusMessageBoxProps): React.ReactNode;
11
+ export declare function getInfoBox(props: StatusMessageBoxProps): React.ReactNode;
12
+ export declare function InfoBox({ title, message, }: StatusMessageBoxProps): React.ReactNode;
@@ -0,0 +1,31 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { INK_COLORS } from '../styles.js';
3
+ import { BoxWithTitle } from './BoxWithTitle.js';
4
+ export function getWarningBox(props) {
5
+ return _jsx(WarningBox, { ...props });
6
+ }
7
+ export function WarningBox({ title, message, }) {
8
+ const color = INK_COLORS.WARNING_YELLOW;
9
+ return (_jsx(BoxWithTitle, { title: title, message: message, titleBackgroundColor: color, borderColor: color }));
10
+ }
11
+ export function getAlertBox(props) {
12
+ return _jsx(AlertBox, { ...props });
13
+ }
14
+ export function AlertBox({ title, message, }) {
15
+ const color = INK_COLORS.ALERT_RED;
16
+ return (_jsx(BoxWithTitle, { title: title, message: message, titleBackgroundColor: color, borderColor: color }));
17
+ }
18
+ export function getSuccessBox(props) {
19
+ return _jsx(SuccessBox, { ...props });
20
+ }
21
+ export function SuccessBox({ title, message, }) {
22
+ const color = INK_COLORS.SUCCESS_GREEN;
23
+ return (_jsx(BoxWithTitle, { title: title, message: message, titleBackgroundColor: color, borderColor: color }));
24
+ }
25
+ export function getInfoBox(props) {
26
+ return _jsx(InfoBox, { ...props });
27
+ }
28
+ export function InfoBox({ title, message, }) {
29
+ const color = INK_COLORS.INFO_BLUE;
30
+ return (_jsx(BoxWithTitle, { title: title, message: message, titleBackgroundColor: color, borderColor: color }));
31
+ }
package/ui/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare function renderInline(component: React.ReactNode): Promise<void>;
package/ui/index.js ADDED
@@ -0,0 +1,6 @@
1
+ import { render } from 'ink';
2
+ // Ink components will be enabled by setting the HUBSPOT_ENABLE_INK environment variable
3
+ export async function renderInline(component) {
4
+ const { unmount } = render(component, { patchConsole: false });
5
+ unmount();
6
+ }
@@ -0,0 +1,9 @@
1
+ export type ComponentPropPair = {
2
+ component: React.ReactNode;
3
+ signature: string;
4
+ };
5
+ /**
6
+ * These components will be used by the sandbox ui. Please add any new components here.
7
+ */
8
+ export declare const populatedComponents: Record<string, ComponentPropPair>;
9
+ export declare function getComponentOptions(): string[];
@@ -0,0 +1,47 @@
1
+ import { getSuccessBox, getInfoBox, getWarningBox, getAlertBox, } from '../components/StatusMessageBoxes.js';
2
+ import { getBoxWithTitle } from '../components/BoxWithTitle.js';
3
+ import { SuccessBox, InfoBox, WarningBox, AlertBox, } from '../components/StatusMessageBoxes.js';
4
+ import { BoxWithTitle } from '../components/BoxWithTitle.js';
5
+ /**
6
+ * These components will be used by the sandbox ui. Please add any new components here.
7
+ */
8
+ export const populatedComponents = {
9
+ SuccessBox: {
10
+ component: getSuccessBox({
11
+ title: 'Success',
12
+ message: 'This is a success message',
13
+ }),
14
+ signature: SuccessBox.toString(),
15
+ },
16
+ InfoBox: {
17
+ component: getInfoBox({
18
+ title: 'Info',
19
+ message: 'This is an info message',
20
+ }),
21
+ signature: InfoBox.toString(),
22
+ },
23
+ WarningBox: {
24
+ component: getWarningBox({
25
+ title: 'Warning',
26
+ message: 'This is a warning message',
27
+ }),
28
+ signature: WarningBox.toString(),
29
+ },
30
+ AlertBox: {
31
+ component: getAlertBox({
32
+ title: 'Alert',
33
+ message: 'This is an alert message',
34
+ }),
35
+ signature: AlertBox.toString(),
36
+ },
37
+ BoxWithTitle: {
38
+ component: getBoxWithTitle({
39
+ title: 'Title',
40
+ message: 'This is a box with a title',
41
+ }),
42
+ signature: BoxWithTitle.toString(),
43
+ },
44
+ };
45
+ export function getComponentOptions() {
46
+ return Object.keys(populatedComponents);
47
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ * This hook is used to get the current terminal size.
3
+ * It will return the current terminal size, and if a component is using this hook to set height/width,
4
+ * it will re-render when the terminal size changes.
5
+ * ONLY USE THIS HOOK WITH SCREENS. THIS HOOK WILL DESTROY ANY PRIOR LOG OUTPUT IF USED TO SET HEIGHT/WIDTH.
6
+ * @param minHeight - The minimum height of the terminal.
7
+ * @param minWidth - The minimum width of the terminal.
8
+ * @returns The current terminal size.
9
+ */
10
+ export declare function useTerminalSize(minHeight?: number, minWidth?: number): {
11
+ columns: number;
12
+ rows: number;
13
+ };
@@ -0,0 +1,31 @@
1
+ import { useStdout } from 'ink';
2
+ import { useEffect, useState } from 'react';
3
+ /**
4
+ * This hook is used to get the current terminal size.
5
+ * It will return the current terminal size, and if a component is using this hook to set height/width,
6
+ * it will re-render when the terminal size changes.
7
+ * ONLY USE THIS HOOK WITH SCREENS. THIS HOOK WILL DESTROY ANY PRIOR LOG OUTPUT IF USED TO SET HEIGHT/WIDTH.
8
+ * @param minHeight - The minimum height of the terminal.
9
+ * @param minWidth - The minimum width of the terminal.
10
+ * @returns The current terminal size.
11
+ */
12
+ export function useTerminalSize(minHeight, minWidth) {
13
+ const { stdout } = useStdout();
14
+ const [size, setSize] = useState({
15
+ columns: Math.max(stdout.columns, minWidth ?? 0),
16
+ rows: Math.max(stdout.rows, minHeight ?? 0),
17
+ });
18
+ useEffect(() => {
19
+ const handleResize = () => {
20
+ setSize({
21
+ columns: Math.max(stdout.columns, minWidth ?? 0),
22
+ rows: Math.max(stdout.rows, minHeight ?? 0),
23
+ });
24
+ };
25
+ stdout.on('resize', handleResize);
26
+ return () => {
27
+ stdout.off('resize', handleResize);
28
+ };
29
+ }, [stdout]);
30
+ return size;
31
+ }
package/ui/styles.d.ts ADDED
@@ -0,0 +1,18 @@
1
+ export declare const CONTAINER_STYLES: {
2
+ readonly padding: 1;
3
+ readonly marginY: 0.5;
4
+ readonly flexDirection: "column";
5
+ readonly flexWrap: "wrap";
6
+ };
7
+ /**
8
+ * Any color that can be used well in both WHITE and BLACK terminals.
9
+ * This is a best effort to ensure that the color is good looking in both
10
+ * light and dark modes.
11
+ */
12
+ export declare const INK_COLORS: {
13
+ ALERT_RED: string;
14
+ SUCCESS_GREEN: string;
15
+ INFO_BLUE: string;
16
+ WARNING_YELLOW: string;
17
+ WHITE: string;
18
+ };