@hubspot/cli 8.0.10-experimental.6 → 8.0.11-experimental.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1025) hide show
  1. package/api/__tests__/migrate.test.d.ts +1 -0
  2. package/api/__tests__/migrate.test.js +199 -0
  3. package/api/migrate.d.ts +77 -0
  4. package/api/migrate.js +55 -0
  5. package/bin/cli.d.ts +2 -0
  6. package/bin/cli.js +136 -0
  7. package/bin/hs.d.ts +2 -0
  8. package/bin/hscms.d.ts +2 -0
  9. package/bin/silenceErrors.d.ts +2 -0
  10. package/bin/silenceErrors.js +11 -0
  11. package/commands/__tests__/account.test.d.ts +1 -0
  12. package/commands/__tests__/account.test.js +69 -0
  13. package/commands/__tests__/auth.test.d.ts +1 -0
  14. package/commands/__tests__/auth.test.js +43 -0
  15. package/commands/__tests__/cms.test.d.ts +1 -0
  16. package/commands/__tests__/cms.test.js +87 -0
  17. package/commands/__tests__/config.test.d.ts +1 -0
  18. package/commands/__tests__/config.test.js +44 -0
  19. package/commands/__tests__/customObject.test.d.ts +1 -0
  20. package/commands/__tests__/customObject.test.js +68 -0
  21. package/commands/__tests__/doctor.test.d.ts +1 -0
  22. package/commands/__tests__/doctor.test.js +132 -0
  23. package/commands/__tests__/feedback.test.d.ts +1 -0
  24. package/commands/__tests__/feedback.test.js +24 -0
  25. package/commands/__tests__/filemanager.test.d.ts +1 -0
  26. package/commands/__tests__/filemanager.test.js +45 -0
  27. package/commands/__tests__/getStarted.test.d.ts +1 -0
  28. package/commands/__tests__/getStarted.test.js +173 -0
  29. package/commands/__tests__/hubdb.test.d.ts +1 -0
  30. package/commands/__tests__/hubdb.test.js +50 -0
  31. package/commands/__tests__/init.test.d.ts +1 -0
  32. package/commands/__tests__/init.test.js +42 -0
  33. package/commands/__tests__/mcp.test.d.ts +1 -0
  34. package/commands/__tests__/mcp.test.js +46 -0
  35. package/commands/__tests__/open.test.d.ts +1 -0
  36. package/commands/__tests__/open.test.js +58 -0
  37. package/commands/__tests__/project.test.d.ts +1 -0
  38. package/commands/__tests__/project.test.js +125 -0
  39. package/commands/__tests__/sandbox.test.d.ts +1 -0
  40. package/commands/__tests__/sandbox.test.js +44 -0
  41. package/commands/__tests__/secret.test.d.ts +1 -0
  42. package/commands/__tests__/secret.test.js +49 -0
  43. package/commands/__tests__/testAccount.test.d.ts +1 -0
  44. package/commands/__tests__/testAccount.test.js +57 -0
  45. package/commands/__tests__/upgrade.test.d.ts +1 -0
  46. package/commands/__tests__/upgrade.test.js +309 -0
  47. package/commands/account/__tests__/auth.test.d.ts +1 -0
  48. package/commands/account/__tests__/auth.test.js +206 -0
  49. package/commands/account/__tests__/clean.test.d.ts +1 -0
  50. package/commands/account/__tests__/clean.test.js +28 -0
  51. package/commands/account/__tests__/createOverride.test.d.ts +1 -0
  52. package/commands/account/__tests__/createOverride.test.js +32 -0
  53. package/commands/account/__tests__/info.test.d.ts +1 -0
  54. package/commands/account/__tests__/info.test.js +28 -0
  55. package/commands/account/__tests__/list.test.d.ts +1 -0
  56. package/commands/account/__tests__/list.test.js +153 -0
  57. package/commands/account/__tests__/remove.test.d.ts +1 -0
  58. package/commands/account/__tests__/remove.test.js +36 -0
  59. package/commands/account/__tests__/removeOverride.d.ts +1 -0
  60. package/commands/account/__tests__/removeOverride.js +25 -0
  61. package/commands/account/__tests__/rename.test.d.ts +1 -0
  62. package/commands/account/__tests__/rename.test.js +82 -0
  63. package/commands/account/__tests__/use.test.d.ts +1 -0
  64. package/commands/account/__tests__/use.test.js +170 -0
  65. package/commands/account/auth.d.ts +8 -0
  66. package/commands/account/auth.js +102 -0
  67. package/commands/account/clean.d.ts +6 -0
  68. package/commands/account/clean.js +125 -0
  69. package/commands/account/createOverride.d.ts +6 -0
  70. package/commands/account/createOverride.js +93 -0
  71. package/commands/account/info.d.ts +4 -0
  72. package/commands/account/info.js +75 -0
  73. package/commands/account/list.d.ts +4 -0
  74. package/commands/account/list.js +107 -0
  75. package/commands/account/remove.d.ts +6 -0
  76. package/commands/account/remove.js +87 -0
  77. package/commands/account/removeOverride.d.ts +6 -0
  78. package/commands/account/removeOverride.js +71 -0
  79. package/commands/account/rename.d.ts +7 -0
  80. package/commands/account/rename.js +51 -0
  81. package/commands/account/use.d.ts +6 -0
  82. package/commands/account/use.js +93 -0
  83. package/commands/account.d.ts +3 -0
  84. package/commands/account.js +35 -0
  85. package/commands/app/__tests__/migrate.test.d.ts +1 -0
  86. package/commands/app/__tests__/migrate.test.js +111 -0
  87. package/commands/app/migrate.d.ts +6 -0
  88. package/commands/app/migrate.js +96 -0
  89. package/commands/app/secret/__tests__/add.test.d.ts +1 -0
  90. package/commands/app/secret/__tests__/add.test.js +140 -0
  91. package/commands/app/secret/__tests__/delete.test.d.ts +1 -0
  92. package/commands/app/secret/__tests__/delete.test.js +28 -0
  93. package/commands/app/secret/__tests__/list.test.d.ts +1 -0
  94. package/commands/app/secret/__tests__/list.test.js +25 -0
  95. package/commands/app/secret/__tests__/update.test.d.ts +1 -0
  96. package/commands/app/secret/__tests__/update.test.js +28 -0
  97. package/commands/app/secret/add.d.ts +7 -0
  98. package/commands/app/secret/add.js +63 -0
  99. package/commands/app/secret/delete.d.ts +8 -0
  100. package/commands/app/secret/delete.js +86 -0
  101. package/commands/app/secret/list.d.ts +6 -0
  102. package/commands/app/secret/list.js +63 -0
  103. package/commands/app/secret/update.d.ts +7 -0
  104. package/commands/app/secret/update.js +76 -0
  105. package/commands/app/secret.d.ts +3 -0
  106. package/commands/app/secret.js +26 -0
  107. package/commands/app.d.ts +3 -0
  108. package/commands/app.js +18 -0
  109. package/commands/auth.d.ts +9 -0
  110. package/commands/auth.js +190 -0
  111. package/commands/cms/__tests__/delete.test.d.ts +1 -0
  112. package/commands/cms/__tests__/delete.test.js +39 -0
  113. package/commands/cms/__tests__/fetch.test.d.ts +1 -0
  114. package/commands/cms/__tests__/fetch.test.js +156 -0
  115. package/commands/cms/__tests__/function.test.d.ts +1 -0
  116. package/commands/cms/__tests__/function.test.js +50 -0
  117. package/commands/cms/__tests__/lint.test.d.ts +1 -0
  118. package/commands/cms/__tests__/lint.test.js +33 -0
  119. package/commands/cms/__tests__/list.test.d.ts +1 -0
  120. package/commands/cms/__tests__/list.test.js +42 -0
  121. package/commands/cms/__tests__/module.test.d.ts +1 -0
  122. package/commands/cms/__tests__/module.test.js +45 -0
  123. package/commands/cms/__tests__/mv.test.d.ts +1 -0
  124. package/commands/cms/__tests__/mv.test.js +46 -0
  125. package/commands/cms/__tests__/theme.test.d.ts +1 -0
  126. package/commands/cms/__tests__/theme.test.js +54 -0
  127. package/commands/cms/__tests__/upload.test.d.ts +1 -0
  128. package/commands/cms/__tests__/upload.test.js +312 -0
  129. package/commands/cms/__tests__/watch.test.d.ts +1 -0
  130. package/commands/cms/__tests__/watch.test.js +204 -0
  131. package/commands/cms/app/create.d.ts +9 -0
  132. package/commands/cms/app/create.js +81 -0
  133. package/commands/cms/app.d.ts +3 -0
  134. package/commands/cms/app.js +17 -0
  135. package/commands/cms/convertFields.d.ts +7 -0
  136. package/commands/cms/convertFields.js +97 -0
  137. package/commands/cms/delete.d.ts +6 -0
  138. package/commands/cms/delete.js +43 -0
  139. package/commands/cms/fetch.d.ts +12 -0
  140. package/commands/cms/fetch.js +80 -0
  141. package/commands/cms/function/__tests__/logs.test.d.ts +1 -0
  142. package/commands/cms/function/__tests__/logs.test.js +70 -0
  143. package/commands/cms/function/create.d.ts +12 -0
  144. package/commands/cms/function/create.js +84 -0
  145. package/commands/cms/function/deploy.d.ts +6 -0
  146. package/commands/cms/function/deploy.js +89 -0
  147. package/commands/cms/function/list.d.ts +6 -0
  148. package/commands/cms/function/list.js +59 -0
  149. package/commands/cms/function/logs.d.ts +10 -0
  150. package/commands/cms/function/logs.js +136 -0
  151. package/commands/cms/function/server.d.ts +10 -0
  152. package/commands/cms/function/server.js +69 -0
  153. package/commands/cms/function.d.ts +3 -0
  154. package/commands/cms/function.js +27 -0
  155. package/commands/cms/getReactModule.d.ts +7 -0
  156. package/commands/cms/getReactModule.js +77 -0
  157. package/commands/cms/lighthouseScore.d.ts +8 -0
  158. package/commands/cms/lighthouseScore.js +281 -0
  159. package/commands/cms/lint.d.ts +6 -0
  160. package/commands/cms/lint.js +83 -0
  161. package/commands/cms/list.d.ts +6 -0
  162. package/commands/cms/list.js +96 -0
  163. package/commands/cms/module/create.d.ts +11 -0
  164. package/commands/cms/module/create.js +84 -0
  165. package/commands/cms/module/marketplace-validate.d.ts +6 -0
  166. package/commands/cms/module/marketplace-validate.js +62 -0
  167. package/commands/cms/module.d.ts +3 -0
  168. package/commands/cms/module.js +21 -0
  169. package/commands/cms/mv.d.ts +7 -0
  170. package/commands/cms/mv.js +60 -0
  171. package/commands/cms/template/create.d.ts +9 -0
  172. package/commands/cms/template/create.js +72 -0
  173. package/commands/cms/template.d.ts +3 -0
  174. package/commands/cms/template.js +17 -0
  175. package/commands/cms/theme/__tests__/generate-selectors.test.d.ts +1 -0
  176. package/commands/cms/theme/__tests__/generate-selectors.test.js +28 -0
  177. package/commands/cms/theme/__tests__/marketplace-validate.test.d.ts +1 -0
  178. package/commands/cms/theme/__tests__/marketplace-validate.test.js +36 -0
  179. package/commands/cms/theme/__tests__/preview.test.d.ts +1 -0
  180. package/commands/cms/theme/__tests__/preview.test.js +54 -0
  181. package/commands/cms/theme/create.d.ts +6 -0
  182. package/commands/cms/theme/create.js +58 -0
  183. package/commands/cms/theme/generate-selectors.d.ts +6 -0
  184. package/commands/cms/theme/generate-selectors.js +171 -0
  185. package/commands/cms/theme/marketplace-validate.d.ts +6 -0
  186. package/commands/cms/theme/marketplace-validate.js +64 -0
  187. package/commands/cms/theme/preview.d.ts +11 -0
  188. package/commands/cms/theme/preview.js +126 -0
  189. package/commands/cms/theme.d.ts +3 -0
  190. package/commands/cms/theme.js +25 -0
  191. package/commands/cms/upload.d.ts +12 -0
  192. package/commands/cms/upload.js +212 -0
  193. package/commands/cms/watch.d.ts +13 -0
  194. package/commands/cms/watch.js +132 -0
  195. package/commands/cms/webpack/create.d.ts +6 -0
  196. package/commands/cms/webpack/create.js +58 -0
  197. package/commands/cms/webpack.d.ts +3 -0
  198. package/commands/cms/webpack.js +17 -0
  199. package/commands/cms.d.ts +3 -0
  200. package/commands/cms.js +49 -0
  201. package/commands/completion.d.ts +3 -0
  202. package/commands/completion.js +27 -0
  203. package/commands/config/migrate.d.ts +6 -0
  204. package/commands/config/migrate.js +70 -0
  205. package/commands/config/set.d.ts +11 -0
  206. package/commands/config/set.js +141 -0
  207. package/commands/config.d.ts +3 -0
  208. package/commands/config.js +18 -0
  209. package/commands/customObject/__tests__/create.test.d.ts +1 -0
  210. package/commands/customObject/__tests__/create.test.js +40 -0
  211. package/commands/customObject/__tests__/createSchema.test.d.ts +1 -0
  212. package/commands/customObject/__tests__/createSchema.test.js +28 -0
  213. package/commands/customObject/__tests__/deleteSchema.test.d.ts +1 -0
  214. package/commands/customObject/__tests__/deleteSchema.test.js +42 -0
  215. package/commands/customObject/__tests__/fetch-all-schemas.test.d.ts +1 -0
  216. package/commands/customObject/__tests__/fetch-all-schemas.test.js +41 -0
  217. package/commands/customObject/__tests__/fetchSchema.test.d.ts +1 -0
  218. package/commands/customObject/__tests__/fetchSchema.test.js +45 -0
  219. package/commands/customObject/__tests__/listSchemas.test.d.ts +1 -0
  220. package/commands/customObject/__tests__/listSchemas.test.js +29 -0
  221. package/commands/customObject/__tests__/updateSchema.test.d.ts +1 -0
  222. package/commands/customObject/__tests__/updateSchema.test.js +40 -0
  223. package/commands/customObject/create.d.ts +7 -0
  224. package/commands/customObject/create.js +64 -0
  225. package/commands/customObject/createSchema.d.ts +6 -0
  226. package/commands/customObject/createSchema.js +55 -0
  227. package/commands/customObject/deleteSchema.d.ts +7 -0
  228. package/commands/customObject/deleteSchema.js +69 -0
  229. package/commands/customObject/fetchAllSchemas.d.ts +6 -0
  230. package/commands/customObject/fetchAllSchemas.js +57 -0
  231. package/commands/customObject/fetchSchema.d.ts +7 -0
  232. package/commands/customObject/fetchSchema.js +67 -0
  233. package/commands/customObject/listSchemas.d.ts +4 -0
  234. package/commands/customObject/listSchemas.js +35 -0
  235. package/commands/customObject/updateSchema.d.ts +7 -0
  236. package/commands/customObject/updateSchema.js +70 -0
  237. package/commands/customObject.d.ts +3 -0
  238. package/commands/customObject.js +38 -0
  239. package/commands/doctor.d.ts +6 -0
  240. package/commands/doctor.js +70 -0
  241. package/commands/feedback.d.ts +4 -0
  242. package/commands/feedback.js +32 -0
  243. package/commands/filemanager/__tests__/fetch.test.d.ts +1 -0
  244. package/commands/filemanager/__tests__/fetch.test.js +32 -0
  245. package/commands/filemanager/__tests__/upload.test.d.ts +1 -0
  246. package/commands/filemanager/__tests__/upload.test.js +191 -0
  247. package/commands/filemanager/fetch.d.ts +8 -0
  248. package/commands/filemanager/fetch.js +58 -0
  249. package/commands/filemanager/upload.d.ts +7 -0
  250. package/commands/filemanager/upload.js +97 -0
  251. package/commands/filemanager.d.ts +3 -0
  252. package/commands/filemanager.js +18 -0
  253. package/commands/getStarted.d.ts +8 -0
  254. package/commands/getStarted.js +322 -0
  255. package/commands/hubdb/__tests__/clear.test.d.ts +1 -0
  256. package/commands/hubdb/__tests__/clear.test.js +28 -0
  257. package/commands/hubdb/__tests__/create.test.d.ts +1 -0
  258. package/commands/hubdb/__tests__/create.test.js +28 -0
  259. package/commands/hubdb/__tests__/delete.test.d.ts +1 -0
  260. package/commands/hubdb/__tests__/delete.test.js +28 -0
  261. package/commands/hubdb/__tests__/fetch.test.d.ts +1 -0
  262. package/commands/hubdb/__tests__/fetch.test.js +28 -0
  263. package/commands/hubdb/__tests__/list.test.d.ts +1 -0
  264. package/commands/hubdb/__tests__/list.test.js +88 -0
  265. package/commands/hubdb/clear.d.ts +7 -0
  266. package/commands/hubdb/clear.js +58 -0
  267. package/commands/hubdb/create.d.ts +6 -0
  268. package/commands/hubdb/create.js +74 -0
  269. package/commands/hubdb/delete.d.ts +6 -0
  270. package/commands/hubdb/delete.js +68 -0
  271. package/commands/hubdb/fetch.d.ts +7 -0
  272. package/commands/hubdb/fetch.js +55 -0
  273. package/commands/hubdb/list.d.ts +4 -0
  274. package/commands/hubdb/list.js +79 -0
  275. package/commands/hubdb.d.ts +5 -0
  276. package/commands/hubdb.js +27 -0
  277. package/commands/init.d.ts +8 -0
  278. package/commands/init.js +200 -0
  279. package/commands/mcp/__tests__/setup.test.d.ts +1 -0
  280. package/commands/mcp/__tests__/setup.test.js +26 -0
  281. package/commands/mcp/__tests__/start.test.d.ts +1 -0
  282. package/commands/mcp/__tests__/start.test.js +144 -0
  283. package/commands/mcp/setup.d.ts +6 -0
  284. package/commands/mcp/setup.js +36 -0
  285. package/commands/mcp/start.d.ts +6 -0
  286. package/commands/mcp/start.js +72 -0
  287. package/commands/mcp.d.ts +3 -0
  288. package/commands/mcp.js +20 -0
  289. package/commands/open.d.ts +7 -0
  290. package/commands/open.js +70 -0
  291. package/commands/project/__tests__/add.test.d.ts +1 -0
  292. package/commands/project/__tests__/add.test.js +107 -0
  293. package/commands/project/__tests__/create.test.d.ts +1 -0
  294. package/commands/project/__tests__/create.test.js +97 -0
  295. package/commands/project/__tests__/deploy.test.d.ts +1 -0
  296. package/commands/project/__tests__/deploy.test.js +307 -0
  297. package/commands/project/__tests__/dev.test.d.ts +1 -0
  298. package/commands/project/__tests__/dev.test.js +273 -0
  299. package/commands/project/__tests__/devUnifiedFlow.test.d.ts +1 -0
  300. package/commands/project/__tests__/devUnifiedFlow.test.js +434 -0
  301. package/commands/project/__tests__/download.test.d.ts +1 -0
  302. package/commands/project/__tests__/download.test.js +39 -0
  303. package/commands/project/__tests__/info.test.d.ts +1 -0
  304. package/commands/project/__tests__/info.test.js +145 -0
  305. package/commands/project/__tests__/installDeps.test.d.ts +1 -0
  306. package/commands/project/__tests__/installDeps.test.js +140 -0
  307. package/commands/project/__tests__/lint.test.d.ts +1 -0
  308. package/commands/project/__tests__/lint.test.js +704 -0
  309. package/commands/project/__tests__/list.test.d.ts +1 -0
  310. package/commands/project/__tests__/list.test.js +31 -0
  311. package/commands/project/__tests__/listBuilds.test.d.ts +1 -0
  312. package/commands/project/__tests__/listBuilds.test.js +38 -0
  313. package/commands/project/__tests__/logs.test.d.ts +1 -0
  314. package/commands/project/__tests__/logs.test.js +202 -0
  315. package/commands/project/__tests__/migrate.test.d.ts +1 -0
  316. package/commands/project/__tests__/migrate.test.js +106 -0
  317. package/commands/project/__tests__/open.test.d.ts +1 -0
  318. package/commands/project/__tests__/open.test.js +39 -0
  319. package/commands/project/__tests__/profile.test.d.ts +1 -0
  320. package/commands/project/__tests__/profile.test.js +42 -0
  321. package/commands/project/__tests__/updateDeps.test.d.ts +1 -0
  322. package/commands/project/__tests__/updateDeps.test.js +140 -0
  323. package/commands/project/__tests__/upload.test.d.ts +1 -0
  324. package/commands/project/__tests__/upload.test.js +234 -0
  325. package/commands/project/__tests__/validate.test.d.ts +1 -0
  326. package/commands/project/__tests__/validate.test.js +381 -0
  327. package/commands/project/__tests__/watch.test.d.ts +1 -0
  328. package/commands/project/__tests__/watch.test.js +35 -0
  329. package/commands/project/add.d.ts +10 -0
  330. package/commands/project/add.js +79 -0
  331. package/commands/project/cloneApp.d.ts +1 -0
  332. package/commands/project/cloneApp.js +1 -0
  333. package/commands/project/create.d.ts +4 -0
  334. package/commands/project/create.js +175 -0
  335. package/commands/project/deploy.d.ts +11 -0
  336. package/commands/project/deploy.js +196 -0
  337. package/commands/project/dev/deprecatedFlow.d.ts +11 -0
  338. package/commands/project/dev/deprecatedFlow.js +135 -0
  339. package/commands/project/dev/index.d.ts +5 -0
  340. package/commands/project/dev/index.js +174 -0
  341. package/commands/project/dev/unifiedFlow.d.ts +14 -0
  342. package/commands/project/dev/unifiedFlow.js +162 -0
  343. package/commands/project/download.d.ts +8 -0
  344. package/commands/project/download.js +95 -0
  345. package/commands/project/info.d.ts +4 -0
  346. package/commands/project/info.js +67 -0
  347. package/commands/project/installDeps.d.ts +6 -0
  348. package/commands/project/installDeps.js +80 -0
  349. package/commands/project/lint.d.ts +6 -0
  350. package/commands/project/lint.js +178 -0
  351. package/commands/project/list.d.ts +4 -0
  352. package/commands/project/list.js +62 -0
  353. package/commands/project/listBuilds.d.ts +7 -0
  354. package/commands/project/listBuilds.js +120 -0
  355. package/commands/project/logs.d.ts +10 -0
  356. package/commands/project/logs.js +119 -0
  357. package/commands/project/migrate.d.ts +7 -0
  358. package/commands/project/migrate.js +91 -0
  359. package/commands/project/open.d.ts +6 -0
  360. package/commands/project/open.js +61 -0
  361. package/commands/project/profile/add.d.ts +7 -0
  362. package/commands/project/profile/add.js +203 -0
  363. package/commands/project/profile/delete.d.ts +6 -0
  364. package/commands/project/profile/delete.js +129 -0
  365. package/commands/project/profile.d.ts +3 -0
  366. package/commands/project/profile.js +19 -0
  367. package/commands/project/updateDeps.d.ts +6 -0
  368. package/commands/project/updateDeps.js +80 -0
  369. package/commands/project/upload.d.ts +10 -0
  370. package/commands/project/upload.js +145 -0
  371. package/commands/project/validate.d.ts +6 -0
  372. package/commands/project/validate.js +156 -0
  373. package/commands/project/watch.d.ts +6 -0
  374. package/commands/project/watch.js +152 -0
  375. package/commands/project.d.ts +3 -0
  376. package/commands/project.js +74 -0
  377. package/commands/sandbox/__tests__/create.test.d.ts +1 -0
  378. package/commands/sandbox/__tests__/create.test.js +198 -0
  379. package/commands/sandbox/__tests__/delete.test.d.ts +1 -0
  380. package/commands/sandbox/__tests__/delete.test.js +31 -0
  381. package/commands/sandbox/create.d.ts +8 -0
  382. package/commands/sandbox/create.js +156 -0
  383. package/commands/sandbox/delete.d.ts +7 -0
  384. package/commands/sandbox/delete.js +189 -0
  385. package/commands/sandbox.d.ts +3 -0
  386. package/commands/sandbox.js +19 -0
  387. package/commands/secret/__tests__/addSecret.test.d.ts +1 -0
  388. package/commands/secret/__tests__/addSecret.test.js +162 -0
  389. package/commands/secret/__tests__/deleteSecret.test.d.ts +1 -0
  390. package/commands/secret/__tests__/deleteSecret.test.js +41 -0
  391. package/commands/secret/__tests__/listSecret.test.d.ts +1 -0
  392. package/commands/secret/__tests__/listSecret.test.js +29 -0
  393. package/commands/secret/__tests__/updateSecret.test.d.ts +1 -0
  394. package/commands/secret/__tests__/updateSecret.test.js +29 -0
  395. package/commands/secret/addSecret.d.ts +6 -0
  396. package/commands/secret/addSecret.js +58 -0
  397. package/commands/secret/deleteSecret.d.ts +7 -0
  398. package/commands/secret/deleteSecret.js +71 -0
  399. package/commands/secret/listSecret.d.ts +4 -0
  400. package/commands/secret/listSecret.js +43 -0
  401. package/commands/secret/updateSecret.d.ts +6 -0
  402. package/commands/secret/updateSecret.js +57 -0
  403. package/commands/secret.d.ts +3 -0
  404. package/commands/secret.js +25 -0
  405. package/commands/testAccount/__tests__/create.test.d.ts +1 -0
  406. package/commands/testAccount/__tests__/create.test.js +106 -0
  407. package/commands/testAccount/__tests__/createConfig.test.d.ts +1 -0
  408. package/commands/testAccount/__tests__/createConfig.test.js +32 -0
  409. package/commands/testAccount/__tests__/delete.test.d.ts +1 -0
  410. package/commands/testAccount/__tests__/delete.test.js +29 -0
  411. package/commands/testAccount/__tests__/importData.test.d.ts +1 -0
  412. package/commands/testAccount/__tests__/importData.test.js +92 -0
  413. package/commands/testAccount/create.d.ts +15 -0
  414. package/commands/testAccount/create.js +232 -0
  415. package/commands/testAccount/createConfig.d.ts +8 -0
  416. package/commands/testAccount/createConfig.js +92 -0
  417. package/commands/testAccount/delete.d.ts +7 -0
  418. package/commands/testAccount/delete.js +188 -0
  419. package/commands/testAccount/importData.d.ts +9 -0
  420. package/commands/testAccount/importData.js +61 -0
  421. package/commands/testAccount.d.ts +3 -0
  422. package/commands/testAccount.js +25 -0
  423. package/commands/upgrade.d.ts +8 -0
  424. package/commands/upgrade.js +119 -0
  425. package/lang/en.d.ts +4021 -0
  426. package/lang/en.js +4044 -0
  427. package/lib/CLIWebSocketServer.d.ts +28 -0
  428. package/lib/CLIWebSocketServer.js +91 -0
  429. package/lib/__tests__/CLIWebSocketServer.test.d.ts +1 -0
  430. package/lib/__tests__/CLIWebSocketServer.test.js +252 -0
  431. package/lib/__tests__/accountAuth.test.d.ts +1 -0
  432. package/lib/__tests__/accountAuth.test.js +258 -0
  433. package/lib/__tests__/accountTypes.test.d.ts +1 -0
  434. package/lib/__tests__/accountTypes.test.js +98 -0
  435. package/lib/__tests__/buildAccount.test.d.ts +1 -0
  436. package/lib/__tests__/buildAccount.test.js +211 -0
  437. package/lib/__tests__/cliUpgradeUtils.test.d.ts +1 -0
  438. package/lib/__tests__/cliUpgradeUtils.test.js +131 -0
  439. package/lib/__tests__/commandSuggestion.test.d.ts +1 -0
  440. package/lib/__tests__/commandSuggestion.test.js +121 -0
  441. package/lib/__tests__/commonOpts.test.d.ts +1 -0
  442. package/lib/__tests__/commonOpts.test.js +80 -0
  443. package/lib/__tests__/dependencyManagement.test.d.ts +1 -0
  444. package/lib/__tests__/dependencyManagement.test.js +1067 -0
  445. package/lib/__tests__/developerTestAccounts.test.d.ts +1 -0
  446. package/lib/__tests__/developerTestAccounts.test.js +156 -0
  447. package/lib/__tests__/hasFeature.test.d.ts +1 -0
  448. package/lib/__tests__/hasFeature.test.js +167 -0
  449. package/lib/__tests__/http.test.d.ts +1 -0
  450. package/lib/__tests__/http.test.js +40 -0
  451. package/lib/__tests__/importData.test.d.ts +1 -0
  452. package/lib/__tests__/importData.test.js +98 -0
  453. package/lib/__tests__/npmCli.test.d.ts +1 -0
  454. package/lib/__tests__/npmCli.test.js +84 -0
  455. package/lib/__tests__/oauth.test.d.ts +1 -0
  456. package/lib/__tests__/oauth.test.js +109 -0
  457. package/lib/__tests__/parsing.test.d.ts +1 -0
  458. package/lib/__tests__/parsing.test.js +34 -0
  459. package/lib/__tests__/polling.test.d.ts +1 -0
  460. package/lib/__tests__/polling.test.js +76 -0
  461. package/lib/__tests__/process.test.d.ts +1 -0
  462. package/lib/__tests__/process.test.js +89 -0
  463. package/lib/__tests__/sandboxes.test.d.ts +1 -0
  464. package/lib/__tests__/sandboxes.test.js +128 -0
  465. package/lib/__tests__/serverlessLogs.test.d.ts +1 -0
  466. package/lib/__tests__/serverlessLogs.test.js +163 -0
  467. package/lib/__tests__/usageTracking.test.d.ts +1 -0
  468. package/lib/__tests__/usageTracking.test.js +197 -0
  469. package/lib/__tests__/validation.test.d.ts +1 -0
  470. package/lib/__tests__/validation.test.js +143 -0
  471. package/lib/__tests__/yargsUtils.test.d.ts +1 -0
  472. package/lib/__tests__/yargsUtils.test.js +124 -0
  473. package/lib/accountAuth.d.ts +10 -0
  474. package/lib/accountAuth.js +109 -0
  475. package/lib/accountTypes.d.ts +9 -0
  476. package/lib/accountTypes.js +41 -0
  477. package/lib/app/__tests__/migrate.test.d.ts +1 -0
  478. package/lib/app/__tests__/migrate.test.js +638 -0
  479. package/lib/app/migrate.d.ts +44 -0
  480. package/lib/app/migrate.js +389 -0
  481. package/lib/app/urls.d.ts +17 -0
  482. package/lib/app/urls.js +16 -0
  483. package/lib/buildAccount.d.ts +15 -0
  484. package/lib/buildAccount.js +184 -0
  485. package/lib/cliUpgradeUtils.d.ts +22 -0
  486. package/lib/cliUpgradeUtils.js +62 -0
  487. package/lib/cmsAssets/api-sample.d.ts +3 -0
  488. package/lib/cmsAssets/api-sample.js +60 -0
  489. package/lib/cmsAssets/app.d.ts +3 -0
  490. package/lib/cmsAssets/app.js +12 -0
  491. package/lib/cmsAssets/function.d.ts +3 -0
  492. package/lib/cmsAssets/function.js +11 -0
  493. package/lib/cmsAssets/index.d.ts +5 -0
  494. package/lib/cmsAssets/index.js +21 -0
  495. package/lib/cmsAssets/module.d.ts +3 -0
  496. package/lib/cmsAssets/module.js +20 -0
  497. package/lib/cmsAssets/react-app.d.ts +3 -0
  498. package/lib/cmsAssets/react-app.js +12 -0
  499. package/lib/cmsAssets/template.d.ts +3 -0
  500. package/lib/cmsAssets/template.js +20 -0
  501. package/lib/cmsAssets/vue-app.d.ts +3 -0
  502. package/lib/cmsAssets/vue-app.js +12 -0
  503. package/lib/cmsAssets/webpack-serverless.d.ts +3 -0
  504. package/lib/cmsAssets/webpack-serverless.js +12 -0
  505. package/lib/cmsAssets/website-theme.d.ts +3 -0
  506. package/lib/cmsAssets/website-theme.js +19 -0
  507. package/lib/commandSuggestion.d.ts +3 -0
  508. package/lib/commandSuggestion.js +39 -0
  509. package/lib/commonOpts.d.ts +25 -0
  510. package/lib/commonOpts.js +181 -0
  511. package/lib/configMigrate.d.ts +2 -0
  512. package/lib/configMigrate.js +182 -0
  513. package/lib/configOptions.d.ts +21 -0
  514. package/lib/configOptions.js +111 -0
  515. package/lib/constants.d.ts +145 -0
  516. package/lib/constants.js +146 -0
  517. package/lib/customObject.d.ts +3 -0
  518. package/lib/customObject.js +11 -0
  519. package/lib/dependencyManagement.d.ts +21 -0
  520. package/lib/dependencyManagement.js +243 -0
  521. package/lib/developerTestAccounts.d.ts +6 -0
  522. package/lib/developerTestAccounts.js +66 -0
  523. package/lib/doctor/Diagnosis.d.ts +27 -0
  524. package/lib/doctor/Diagnosis.js +113 -0
  525. package/lib/doctor/DiagnosticInfoBuilder.d.ts +69 -0
  526. package/lib/doctor/DiagnosticInfoBuilder.js +169 -0
  527. package/lib/doctor/Doctor.d.ts +35 -0
  528. package/lib/doctor/Doctor.js +566 -0
  529. package/lib/doctor/__tests__/Diagnosis.test.d.ts +1 -0
  530. package/lib/doctor/__tests__/Diagnosis.test.js +84 -0
  531. package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.d.ts +1 -0
  532. package/lib/doctor/__tests__/DiagnosticInfoBuilder.test.js +177 -0
  533. package/lib/doctor/__tests__/Doctor.test.d.ts +1 -0
  534. package/lib/doctor/__tests__/Doctor.test.js +560 -0
  535. package/lib/enums/exitCodes.d.ts +5 -0
  536. package/lib/enums/exitCodes.js +10 -0
  537. package/lib/errorHandlers/__tests__/index.test.d.ts +1 -0
  538. package/lib/errorHandlers/__tests__/index.test.js +278 -0
  539. package/lib/errorHandlers/index.d.ts +19 -0
  540. package/lib/errorHandlers/index.js +99 -0
  541. package/lib/errorHandlers/suppressError.d.ts +2 -0
  542. package/lib/errorHandlers/suppressError.js +53 -0
  543. package/lib/errors/ProjectErrors.d.ts +15 -0
  544. package/lib/errors/ProjectErrors.js +30 -0
  545. package/lib/errors/ProjectValidationError.d.ts +4 -0
  546. package/lib/errors/ProjectValidationError.js +9 -0
  547. package/lib/errors/PromptExitError.d.ts +4 -0
  548. package/lib/errors/PromptExitError.js +8 -0
  549. package/lib/filesystem.d.ts +2 -0
  550. package/lib/filesystem.js +19 -0
  551. package/lib/generateSelectors.d.ts +20 -0
  552. package/lib/generateSelectors.js +110 -0
  553. package/lib/getStarted/getStartedV2.d.ts +7 -0
  554. package/lib/getStarted/getStartedV2.js +18 -0
  555. package/lib/getStartedV2Actions.d.ts +50 -0
  556. package/lib/getStartedV2Actions.js +199 -0
  557. package/lib/hasFeature.d.ts +4 -0
  558. package/lib/hasFeature.js +18 -0
  559. package/lib/http.d.ts +1 -0
  560. package/lib/http.js +28 -0
  561. package/lib/importData.d.ts +3 -0
  562. package/lib/importData.js +51 -0
  563. package/lib/interpolation.d.ts +7 -0
  564. package/lib/interpolation.js +84 -0
  565. package/lib/jsonLoader.d.ts +14 -0
  566. package/lib/jsonLoader.js +60 -0
  567. package/lib/links.d.ts +11 -0
  568. package/lib/links.js +107 -0
  569. package/lib/marketplaceValidate.d.ts +16 -0
  570. package/lib/marketplaceValidate.js +88 -0
  571. package/lib/mcp/__tests__/setup.test.d.ts +1 -0
  572. package/lib/mcp/__tests__/setup.test.js +523 -0
  573. package/lib/mcp/setup.d.ts +17 -0
  574. package/lib/mcp/setup.js +345 -0
  575. package/lib/middleware/__tests__/commandTargetingUtils.test.d.ts +1 -0
  576. package/lib/middleware/__tests__/commandTargetingUtils.test.js +99 -0
  577. package/lib/middleware/__tests__/configMiddleware.test.d.ts +1 -0
  578. package/lib/middleware/__tests__/configMiddleware.test.js +118 -0
  579. package/lib/middleware/__tests__/gitMiddleware.test.d.ts +1 -0
  580. package/lib/middleware/__tests__/gitMiddleware.test.js +43 -0
  581. package/lib/middleware/__tests__/requestMiddleware.test.d.ts +1 -0
  582. package/lib/middleware/__tests__/requestMiddleware.test.js +15 -0
  583. package/lib/middleware/__tests__/usageTrackingMiddleware.test.d.ts +1 -0
  584. package/lib/middleware/__tests__/usageTrackingMiddleware.test.js +44 -0
  585. package/lib/middleware/__tests__/yargsChecksMiddleware.test.d.ts +1 -0
  586. package/lib/middleware/__tests__/yargsChecksMiddleware.test.js +39 -0
  587. package/lib/middleware/autoUpdateMiddleware.d.ts +4 -0
  588. package/lib/middleware/autoUpdateMiddleware.js +105 -0
  589. package/lib/middleware/commandTargetingUtils.d.ts +8 -0
  590. package/lib/middleware/commandTargetingUtils.js +76 -0
  591. package/lib/middleware/configMiddleware.d.ts +15 -0
  592. package/lib/middleware/configMiddleware.js +93 -0
  593. package/lib/middleware/fireAlarmMiddleware.d.ts +4 -0
  594. package/lib/middleware/fireAlarmMiddleware.js +118 -0
  595. package/lib/middleware/gitMiddleware.d.ts +2 -0
  596. package/lib/middleware/gitMiddleware.js +21 -0
  597. package/lib/middleware/requestMiddleware.d.ts +1 -0
  598. package/lib/middleware/requestMiddleware.js +5 -0
  599. package/lib/middleware/spinniesMiddleware.d.ts +1 -0
  600. package/lib/middleware/spinniesMiddleware.js +4 -0
  601. package/lib/middleware/usageTrackingMiddleware.d.ts +13 -0
  602. package/lib/middleware/usageTrackingMiddleware.js +16 -0
  603. package/lib/middleware/yargsChecksMiddleware.d.ts +4 -0
  604. package/lib/middleware/yargsChecksMiddleware.js +18 -0
  605. package/lib/npm/npmCli.d.ts +17 -0
  606. package/lib/npm/npmCli.js +59 -0
  607. package/lib/npm/packageJson.d.ts +24 -0
  608. package/lib/npm/packageJson.js +102 -0
  609. package/lib/npm/workspaces.d.ts +12 -0
  610. package/lib/npm/workspaces.js +48 -0
  611. package/lib/oauth.d.ts +2 -0
  612. package/lib/oauth.js +93 -0
  613. package/lib/parsing.d.ts +1 -0
  614. package/lib/parsing.js +8 -0
  615. package/lib/polling.d.ts +21 -0
  616. package/lib/polling.js +48 -0
  617. package/lib/process.d.ts +13 -0
  618. package/lib/process.js +56 -0
  619. package/lib/projects/ProjectLogsManager.d.ts +29 -0
  620. package/lib/projects/ProjectLogsManager.js +155 -0
  621. package/lib/projects/__tests__/AppDevModeInterface.test.d.ts +1 -0
  622. package/lib/projects/__tests__/AppDevModeInterface.test.js +541 -0
  623. package/lib/projects/__tests__/DevServerManager.test.d.ts +1 -0
  624. package/lib/projects/__tests__/DevServerManager.test.js +185 -0
  625. package/lib/projects/__tests__/DevSessionManager.test.d.ts +1 -0
  626. package/lib/projects/__tests__/DevSessionManager.test.js +250 -0
  627. package/lib/projects/__tests__/LocalDevProcess.test.d.ts +1 -0
  628. package/lib/projects/__tests__/LocalDevProcess.test.js +481 -0
  629. package/lib/projects/__tests__/LocalDevWebsocketServer.test.d.ts +1 -0
  630. package/lib/projects/__tests__/LocalDevWebsocketServer.test.js +231 -0
  631. package/lib/projects/__tests__/ProjectLogsManager.test.d.ts +1 -0
  632. package/lib/projects/__tests__/ProjectLogsManager.test.js +302 -0
  633. package/lib/projects/__tests__/UIExtensionsDevModeInterface.test.d.ts +1 -0
  634. package/lib/projects/__tests__/UIExtensionsDevModeInterface.test.js +160 -0
  635. package/lib/projects/__tests__/components.test.d.ts +1 -0
  636. package/lib/projects/__tests__/components.test.js +440 -0
  637. package/lib/projects/__tests__/deploy.test.d.ts +1 -0
  638. package/lib/projects/__tests__/deploy.test.js +231 -0
  639. package/lib/projects/__tests__/localDevProjectHelpers.test.d.ts +1 -0
  640. package/lib/projects/__tests__/localDevProjectHelpers.test.js +120 -0
  641. package/lib/projects/__tests__/platformVersion.test.d.ts +1 -0
  642. package/lib/projects/__tests__/platformVersion.test.js +63 -0
  643. package/lib/projects/__tests__/pollProjectBuildAndDeploy.test.d.ts +1 -0
  644. package/lib/projects/__tests__/pollProjectBuildAndDeploy.test.js +328 -0
  645. package/lib/projects/__tests__/projectInfo.test.d.ts +1 -0
  646. package/lib/projects/__tests__/projectInfo.test.js +114 -0
  647. package/lib/projects/__tests__/projectProfiles.test.d.ts +1 -0
  648. package/lib/projects/__tests__/projectProfiles.test.js +441 -0
  649. package/lib/projects/__tests__/projects.test.d.ts +1 -0
  650. package/lib/projects/__tests__/projects.test.js +58 -0
  651. package/lib/projects/__tests__/structure.test.d.ts +1 -0
  652. package/lib/projects/__tests__/structure.test.js +210 -0
  653. package/lib/projects/__tests__/uieLinting.test.d.ts +1 -0
  654. package/lib/projects/__tests__/uieLinting.test.js +631 -0
  655. package/lib/projects/__tests__/upload.test.d.ts +1 -0
  656. package/lib/projects/__tests__/upload.test.js +183 -0
  657. package/lib/projects/add/__tests__/legacyAddComponent.test.d.ts +1 -0
  658. package/lib/projects/add/__tests__/legacyAddComponent.test.js +245 -0
  659. package/lib/projects/add/__tests__/v2AddComponent.test.d.ts +1 -0
  660. package/lib/projects/add/__tests__/v2AddComponent.test.js +343 -0
  661. package/lib/projects/add/legacyAddComponent.d.ts +5 -0
  662. package/lib/projects/add/legacyAddComponent.js +46 -0
  663. package/lib/projects/add/v2AddComponent.d.ts +9 -0
  664. package/lib/projects/add/v2AddComponent.js +111 -0
  665. package/lib/projects/components.d.ts +16 -0
  666. package/lib/projects/components.js +252 -0
  667. package/lib/projects/config.d.ts +9 -0
  668. package/lib/projects/config.js +73 -0
  669. package/lib/projects/create/__tests__/legacy.test.d.ts +1 -0
  670. package/lib/projects/create/__tests__/legacy.test.js +72 -0
  671. package/lib/projects/create/__tests__/v2.test.d.ts +1 -0
  672. package/lib/projects/create/__tests__/v2.test.js +257 -0
  673. package/lib/projects/create/index.d.ts +24 -0
  674. package/lib/projects/create/index.js +33 -0
  675. package/lib/projects/create/legacy.d.ts +6 -0
  676. package/lib/projects/create/legacy.js +48 -0
  677. package/lib/projects/create/v2.d.ts +26 -0
  678. package/lib/projects/create/v2.js +158 -0
  679. package/lib/projects/deploy.d.ts +13 -0
  680. package/lib/projects/deploy.js +76 -0
  681. package/lib/projects/ensureProjectExists.d.ts +11 -0
  682. package/lib/projects/ensureProjectExists.js +89 -0
  683. package/lib/projects/localDev/AppDevModeInterface.d.ts +41 -0
  684. package/lib/projects/localDev/AppDevModeInterface.js +337 -0
  685. package/lib/projects/localDev/DevServerManager.d.ts +21 -0
  686. package/lib/projects/localDev/DevServerManager.js +64 -0
  687. package/lib/projects/localDev/DevServerManager_DEPRECATED.d.ts +40 -0
  688. package/lib/projects/localDev/DevServerManager_DEPRECATED.js +128 -0
  689. package/lib/projects/localDev/DevSessionManager.d.ts +18 -0
  690. package/lib/projects/localDev/DevSessionManager.js +95 -0
  691. package/lib/projects/localDev/LocalDevLogger.d.ts +34 -0
  692. package/lib/projects/localDev/LocalDevLogger.js +178 -0
  693. package/lib/projects/localDev/LocalDevManager_DEPRECATED.d.ts +59 -0
  694. package/lib/projects/localDev/LocalDevManager_DEPRECATED.js +387 -0
  695. package/lib/projects/localDev/LocalDevProcess.d.ts +39 -0
  696. package/lib/projects/localDev/LocalDevProcess.js +277 -0
  697. package/lib/projects/localDev/LocalDevState.d.ts +63 -0
  698. package/lib/projects/localDev/LocalDevState.js +139 -0
  699. package/lib/projects/localDev/LocalDevWatcher.d.ts +10 -0
  700. package/lib/projects/localDev/LocalDevWatcher.js +48 -0
  701. package/lib/projects/localDev/LocalDevWebsocketServer.d.ts +21 -0
  702. package/lib/projects/localDev/LocalDevWebsocketServer.js +169 -0
  703. package/lib/projects/localDev/UIExtensionsDevModeInterface.d.ts +13 -0
  704. package/lib/projects/localDev/UIExtensionsDevModeInterface.js +37 -0
  705. package/lib/projects/localDev/helpers/account.d.ts +14 -0
  706. package/lib/projects/localDev/helpers/account.js +222 -0
  707. package/lib/projects/localDev/helpers/devSessionsApi.d.ts +9 -0
  708. package/lib/projects/localDev/helpers/devSessionsApi.js +19 -0
  709. package/lib/projects/localDev/helpers/process.d.ts +1 -0
  710. package/lib/projects/localDev/helpers/process.js +17 -0
  711. package/lib/projects/localDev/helpers/project.d.ts +16 -0
  712. package/lib/projects/localDev/helpers/project.js +216 -0
  713. package/lib/projects/localDev/localDevWebsocketServerUtils.d.ts +8 -0
  714. package/lib/projects/localDev/localDevWebsocketServerUtils.js +19 -0
  715. package/lib/projects/platformVersion.d.ts +9 -0
  716. package/lib/projects/platformVersion.js +39 -0
  717. package/lib/projects/pollProjectBuildAndDeploy.d.ts +10 -0
  718. package/lib/projects/pollProjectBuildAndDeploy.js +344 -0
  719. package/lib/projects/projectInfo.d.ts +22 -0
  720. package/lib/projects/projectInfo.js +104 -0
  721. package/lib/projects/projectProfiles.d.ts +17 -0
  722. package/lib/projects/projectProfiles.js +140 -0
  723. package/lib/projects/structure.d.ts +18 -0
  724. package/lib/projects/structure.js +130 -0
  725. package/lib/projects/ui.d.ts +1 -0
  726. package/lib/projects/ui.js +12 -0
  727. package/lib/projects/uieLinting.d.ts +33 -0
  728. package/lib/projects/uieLinting.js +220 -0
  729. package/lib/projects/upload.d.ts +33 -0
  730. package/lib/projects/upload.js +147 -0
  731. package/lib/projects/urls.d.ts +10 -0
  732. package/lib/projects/urls.js +42 -0
  733. package/lib/projects/watch.d.ts +5 -0
  734. package/lib/projects/watch.js +168 -0
  735. package/lib/prompts/__tests__/createDeveloperTestAccountConfigPrompt.test.d.ts +1 -0
  736. package/lib/prompts/__tests__/createDeveloperTestAccountConfigPrompt.test.js +157 -0
  737. package/lib/prompts/__tests__/createFunctionPrompt.test.d.ts +1 -0
  738. package/lib/prompts/__tests__/createFunctionPrompt.test.js +129 -0
  739. package/lib/prompts/__tests__/createModulePrompt.test.d.ts +1 -0
  740. package/lib/prompts/__tests__/createModulePrompt.test.js +187 -0
  741. package/lib/prompts/__tests__/createTemplatePrompt.test.d.ts +1 -0
  742. package/lib/prompts/__tests__/createTemplatePrompt.test.js +102 -0
  743. package/lib/prompts/__tests__/downloadProjectPrompt.test.d.ts +1 -0
  744. package/lib/prompts/__tests__/downloadProjectPrompt.test.js +31 -0
  745. package/lib/prompts/__tests__/projectAddPrompt.test.d.ts +1 -0
  746. package/lib/prompts/__tests__/projectAddPrompt.test.js +143 -0
  747. package/lib/prompts/__tests__/projectsLogsPrompt.test.d.ts +1 -0
  748. package/lib/prompts/__tests__/projectsLogsPrompt.test.js +37 -0
  749. package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.d.ts +1 -0
  750. package/lib/prompts/__tests__/selectProjectTemplatePrompt.test.js +160 -0
  751. package/lib/prompts/accountNamePrompt.d.ts +11 -0
  752. package/lib/prompts/accountNamePrompt.js +64 -0
  753. package/lib/prompts/accountsPrompt.d.ts +2 -0
  754. package/lib/prompts/accountsPrompt.js +33 -0
  755. package/lib/prompts/cmsFieldPrompt.d.ts +1 -0
  756. package/lib/prompts/cmsFieldPrompt.js +40 -0
  757. package/lib/prompts/confirmImportDataPrompt.d.ts +1 -0
  758. package/lib/prompts/confirmImportDataPrompt.js +12 -0
  759. package/lib/prompts/createApiSamplePrompt.d.ts +10 -0
  760. package/lib/prompts/createApiSamplePrompt.js +58 -0
  761. package/lib/prompts/createDeveloperTestAccountConfigPrompt.d.ts +25 -0
  762. package/lib/prompts/createDeveloperTestAccountConfigPrompt.js +162 -0
  763. package/lib/prompts/createFunctionPrompt.d.ts +9 -0
  764. package/lib/prompts/createFunctionPrompt.js +94 -0
  765. package/lib/prompts/createModulePrompt.d.ts +10 -0
  766. package/lib/prompts/createModulePrompt.js +116 -0
  767. package/lib/prompts/createTemplatePrompt.d.ts +6 -0
  768. package/lib/prompts/createTemplatePrompt.js +29 -0
  769. package/lib/prompts/downloadProjectPrompt.d.ts +10 -0
  770. package/lib/prompts/downloadProjectPrompt.js +53 -0
  771. package/lib/prompts/importDataFilePathPrompt.d.ts +1 -0
  772. package/lib/prompts/importDataFilePathPrompt.js +26 -0
  773. package/lib/prompts/importDataTestAccountSelectPrompt.d.ts +3 -0
  774. package/lib/prompts/importDataTestAccountSelectPrompt.js +28 -0
  775. package/lib/prompts/installAppPrompt.d.ts +2 -0
  776. package/lib/prompts/installAppPrompt.js +39 -0
  777. package/lib/prompts/personalAccessKeyPrompt.d.ts +29 -0
  778. package/lib/prompts/personalAccessKeyPrompt.js +135 -0
  779. package/lib/prompts/previewPrompt.d.ts +15 -0
  780. package/lib/prompts/previewPrompt.js +48 -0
  781. package/lib/prompts/projectAddPrompt.d.ts +15 -0
  782. package/lib/prompts/projectAddPrompt.js +82 -0
  783. package/lib/prompts/projectDevTargetAccountPrompt.d.ts +12 -0
  784. package/lib/prompts/projectDevTargetAccountPrompt.js +166 -0
  785. package/lib/prompts/projectNameAndDestPrompt.d.ts +3 -0
  786. package/lib/prompts/projectNameAndDestPrompt.js +53 -0
  787. package/lib/prompts/projectNamePrompt.d.ts +6 -0
  788. package/lib/prompts/projectNamePrompt.js +27 -0
  789. package/lib/prompts/projectsLogsPrompt.d.ts +12 -0
  790. package/lib/prompts/projectsLogsPrompt.js +20 -0
  791. package/lib/prompts/promptUtils.d.ts +32 -0
  792. package/lib/prompts/promptUtils.js +222 -0
  793. package/lib/prompts/sandboxesPrompt.d.ts +10 -0
  794. package/lib/prompts/sandboxesPrompt.js +63 -0
  795. package/lib/prompts/secretPrompt.d.ts +13 -0
  796. package/lib/prompts/secretPrompt.js +31 -0
  797. package/lib/prompts/selectAppPrompt.d.ts +2 -0
  798. package/lib/prompts/selectAppPrompt.js +37 -0
  799. package/lib/prompts/selectHubDBTablePrompt.d.ts +12 -0
  800. package/lib/prompts/selectHubDBTablePrompt.js +66 -0
  801. package/lib/prompts/selectProjectTemplatePrompt.d.ts +27 -0
  802. package/lib/prompts/selectProjectTemplatePrompt.js +75 -0
  803. package/lib/prompts/selectPublicAppForMigrationPrompt.d.ts +9 -0
  804. package/lib/prompts/selectPublicAppForMigrationPrompt.js +68 -0
  805. package/lib/prompts/setAsDefaultAccountPrompt.d.ts +1 -0
  806. package/lib/prompts/setAsDefaultAccountPrompt.js +26 -0
  807. package/lib/prompts/uploadPrompt.d.ts +9 -0
  808. package/lib/prompts/uploadPrompt.js +32 -0
  809. package/lib/sandboxes.d.ts +14 -0
  810. package/lib/sandboxes.js +105 -0
  811. package/lib/schema.d.ts +3 -0
  812. package/lib/schema.js +27 -0
  813. package/lib/serverlessLogs.d.ts +4 -0
  814. package/lib/serverlessLogs.js +154 -0
  815. package/lib/testUtils.d.ts +14 -0
  816. package/lib/testUtils.js +18 -0
  817. package/lib/theme/__tests__/migrate.test.d.ts +1 -0
  818. package/lib/theme/__tests__/migrate.test.js +247 -0
  819. package/lib/theme/cmsDevServerProcess.d.ts +12 -0
  820. package/lib/theme/cmsDevServerProcess.js +148 -0
  821. package/lib/theme/cmsDevServerRunner.d.ts +14 -0
  822. package/lib/theme/cmsDevServerRunner.js +90 -0
  823. package/lib/theme/migrate.d.ts +13 -0
  824. package/lib/theme/migrate.js +85 -0
  825. package/lib/ui/SpinniesManager.d.ts +39 -0
  826. package/lib/ui/SpinniesManager.js +259 -0
  827. package/lib/ui/__tests__/SpinniesManager.test.d.ts +1 -0
  828. package/lib/ui/__tests__/SpinniesManager.test.js +488 -0
  829. package/lib/ui/__tests__/removeAnsiCodes.test.d.ts +1 -0
  830. package/lib/ui/__tests__/removeAnsiCodes.test.js +84 -0
  831. package/lib/ui/git.d.ts +1 -0
  832. package/lib/ui/git.js +25 -0
  833. package/lib/ui/index.d.ts +31 -0
  834. package/lib/ui/index.js +150 -0
  835. package/lib/ui/logger.d.ts +11 -0
  836. package/lib/ui/logger.js +13 -0
  837. package/lib/ui/removeAnsiCodes.d.ts +1 -0
  838. package/lib/ui/removeAnsiCodes.js +4 -0
  839. package/lib/ui/serverlessFunctionLogs.d.ts +9 -0
  840. package/lib/ui/serverlessFunctionLogs.js +88 -0
  841. package/lib/ui/spinniesUtils.d.ts +32 -0
  842. package/lib/ui/spinniesUtils.js +151 -0
  843. package/lib/ui/supportHyperlinks.d.ts +7 -0
  844. package/lib/ui/supportHyperlinks.js +59 -0
  845. package/lib/ui/supportsColor.d.ts +17 -0
  846. package/lib/ui/supportsColor.js +97 -0
  847. package/lib/ui/uiMessages.d.ts +73 -0
  848. package/lib/ui/uiMessages.js +76 -0
  849. package/lib/upload.d.ts +1 -0
  850. package/lib/upload.js +49 -0
  851. package/lib/usageTracking.d.ts +32 -0
  852. package/lib/usageTracking.js +174 -0
  853. package/lib/utils/hasFlag.d.ts +1 -0
  854. package/lib/utils/hasFlag.js +9 -0
  855. package/lib/validation.d.ts +13 -0
  856. package/lib/validation.js +142 -0
  857. package/lib/yargsUtils.d.ts +16 -0
  858. package/lib/yargsUtils.js +49 -0
  859. package/mcp-server/server.d.ts +1 -0
  860. package/mcp-server/server.js +13 -0
  861. package/mcp-server/tools/cms/HsCreateFunctionTool.d.ts +24 -0
  862. package/mcp-server/tools/cms/HsCreateFunctionTool.js +105 -0
  863. package/mcp-server/tools/cms/HsCreateModuleTool.d.ts +20 -0
  864. package/mcp-server/tools/cms/HsCreateModuleTool.js +127 -0
  865. package/mcp-server/tools/cms/HsCreateTemplateTool.d.ts +25 -0
  866. package/mcp-server/tools/cms/HsCreateTemplateTool.js +84 -0
  867. package/mcp-server/tools/cms/HsFunctionLogsTool.d.ts +18 -0
  868. package/mcp-server/tools/cms/HsFunctionLogsTool.js +75 -0
  869. package/mcp-server/tools/cms/HsListFunctionsTool.d.ts +15 -0
  870. package/mcp-server/tools/cms/HsListFunctionsTool.js +64 -0
  871. package/mcp-server/tools/cms/HsListTool.d.ts +15 -0
  872. package/mcp-server/tools/cms/HsListTool.js +64 -0
  873. package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.d.ts +1 -0
  874. package/mcp-server/tools/cms/__tests__/HsCreateFunctionTool.test.js +254 -0
  875. package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.d.ts +1 -0
  876. package/mcp-server/tools/cms/__tests__/HsCreateModuleTool.test.js +227 -0
  877. package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.d.ts +1 -0
  878. package/mcp-server/tools/cms/__tests__/HsCreateTemplateTool.test.js +208 -0
  879. package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.d.ts +1 -0
  880. package/mcp-server/tools/cms/__tests__/HsFunctionLogsTool.test.js +186 -0
  881. package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.d.ts +1 -0
  882. package/mcp-server/tools/cms/__tests__/HsListFunctionsTool.test.js +124 -0
  883. package/mcp-server/tools/cms/__tests__/HsListTool.test.d.ts +1 -0
  884. package/mcp-server/tools/cms/__tests__/HsListTool.test.js +124 -0
  885. package/mcp-server/tools/index.d.ts +3 -0
  886. package/mcp-server/tools/index.js +48 -0
  887. package/mcp-server/tools/project/AddFeatureToProjectTool.d.ts +36 -0
  888. package/mcp-server/tools/project/AddFeatureToProjectTool.js +82 -0
  889. package/mcp-server/tools/project/CreateProjectTool.d.ts +40 -0
  890. package/mcp-server/tools/project/CreateProjectTool.js +98 -0
  891. package/mcp-server/tools/project/CreateTestAccountTool.d.ts +51 -0
  892. package/mcp-server/tools/project/CreateTestAccountTool.js +170 -0
  893. package/mcp-server/tools/project/DeployProjectTool.d.ts +15 -0
  894. package/mcp-server/tools/project/DeployProjectTool.js +58 -0
  895. package/mcp-server/tools/project/DocFetchTool.d.ts +14 -0
  896. package/mcp-server/tools/project/DocFetchTool.js +57 -0
  897. package/mcp-server/tools/project/DocsSearchTool.d.ts +23 -0
  898. package/mcp-server/tools/project/DocsSearchTool.js +69 -0
  899. package/mcp-server/tools/project/GetApiUsagePatternsByAppIdTool.d.ts +16 -0
  900. package/mcp-server/tools/project/GetApiUsagePatternsByAppIdTool.js +73 -0
  901. package/mcp-server/tools/project/GetApplicationInfoTool.d.ts +13 -0
  902. package/mcp-server/tools/project/GetApplicationInfoTool.js +56 -0
  903. package/mcp-server/tools/project/GetBuildLogsTool.d.ts +21 -0
  904. package/mcp-server/tools/project/GetBuildLogsTool.js +124 -0
  905. package/mcp-server/tools/project/GetBuildStatusTool.d.ts +16 -0
  906. package/mcp-server/tools/project/GetBuildStatusTool.js +165 -0
  907. package/mcp-server/tools/project/GetConfigValuesTool.d.ts +15 -0
  908. package/mcp-server/tools/project/GetConfigValuesTool.js +65 -0
  909. package/mcp-server/tools/project/GuidedWalkthroughTool.d.ts +19 -0
  910. package/mcp-server/tools/project/GuidedWalkthroughTool.js +50 -0
  911. package/mcp-server/tools/project/UploadProjectTools.d.ts +16 -0
  912. package/mcp-server/tools/project/UploadProjectTools.js +83 -0
  913. package/mcp-server/tools/project/ValidateProjectTool.d.ts +14 -0
  914. package/mcp-server/tools/project/ValidateProjectTool.js +42 -0
  915. package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.d.ts +1 -0
  916. package/mcp-server/tools/project/__tests__/AddFeatureToProjectTool.test.js +157 -0
  917. package/mcp-server/tools/project/__tests__/CreateProjectTool.test.d.ts +1 -0
  918. package/mcp-server/tools/project/__tests__/CreateProjectTool.test.js +131 -0
  919. package/mcp-server/tools/project/__tests__/CreateTestAccountTool.test.d.ts +1 -0
  920. package/mcp-server/tools/project/__tests__/CreateTestAccountTool.test.js +461 -0
  921. package/mcp-server/tools/project/__tests__/DeployProjectTool.test.d.ts +1 -0
  922. package/mcp-server/tools/project/__tests__/DeployProjectTool.test.js +125 -0
  923. package/mcp-server/tools/project/__tests__/DocFetchTool.test.d.ts +1 -0
  924. package/mcp-server/tools/project/__tests__/DocFetchTool.test.js +125 -0
  925. package/mcp-server/tools/project/__tests__/DocsSearchTool.test.d.ts +1 -0
  926. package/mcp-server/tools/project/__tests__/DocsSearchTool.test.js +210 -0
  927. package/mcp-server/tools/project/__tests__/GetApiUsagePatternsByAppIdTool.test.d.ts +1 -0
  928. package/mcp-server/tools/project/__tests__/GetApiUsagePatternsByAppIdTool.test.js +146 -0
  929. package/mcp-server/tools/project/__tests__/GetApplicationInfoTool.test.d.ts +1 -0
  930. package/mcp-server/tools/project/__tests__/GetApplicationInfoTool.test.js +124 -0
  931. package/mcp-server/tools/project/__tests__/GetBuildLogsTool.test.d.ts +1 -0
  932. package/mcp-server/tools/project/__tests__/GetBuildLogsTool.test.js +307 -0
  933. package/mcp-server/tools/project/__tests__/GetBuildStatusTool.test.d.ts +1 -0
  934. package/mcp-server/tools/project/__tests__/GetBuildStatusTool.test.js +242 -0
  935. package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.d.ts +1 -0
  936. package/mcp-server/tools/project/__tests__/GetConfigValuesTool.test.js +209 -0
  937. package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.d.ts +1 -0
  938. package/mcp-server/tools/project/__tests__/GuidedWalkthroughTool.test.js +158 -0
  939. package/mcp-server/tools/project/__tests__/UploadProjectTools.test.d.ts +1 -0
  940. package/mcp-server/tools/project/__tests__/UploadProjectTools.test.js +187 -0
  941. package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.d.ts +1 -0
  942. package/mcp-server/tools/project/__tests__/ValidateProjectTool.test.js +118 -0
  943. package/mcp-server/tools/project/constants.d.ts +18 -0
  944. package/mcp-server/tools/project/constants.js +29 -0
  945. package/mcp-server/types.d.ts +14 -0
  946. package/mcp-server/types.js +13 -0
  947. package/mcp-server/utils/__tests__/command.test.d.ts +1 -0
  948. package/mcp-server/utils/__tests__/command.test.js +275 -0
  949. package/mcp-server/utils/__tests__/content.test.d.ts +1 -0
  950. package/mcp-server/utils/__tests__/content.test.js +164 -0
  951. package/mcp-server/utils/__tests__/feedbackTracking.test.d.ts +1 -0
  952. package/mcp-server/utils/__tests__/feedbackTracking.test.js +69 -0
  953. package/mcp-server/utils/command.d.ts +8 -0
  954. package/mcp-server/utils/command.js +33 -0
  955. package/mcp-server/utils/config.d.ts +1 -0
  956. package/mcp-server/utils/config.js +10 -0
  957. package/mcp-server/utils/content.d.ts +3 -0
  958. package/mcp-server/utils/content.js +24 -0
  959. package/mcp-server/utils/feedbackTracking.d.ts +1 -0
  960. package/mcp-server/utils/feedbackTracking.js +26 -0
  961. package/mcp-server/utils/toolUsageTracking.d.ts +3 -0
  962. package/mcp-server/utils/toolUsageTracking.js +24 -0
  963. package/package.json +2 -5
  964. package/types/Cms.d.ts +46 -0
  965. package/types/Cms.js +27 -0
  966. package/types/LocalDev.d.ts +47 -0
  967. package/types/LocalDev.js +1 -0
  968. package/types/PackageJson.d.ts +10 -0
  969. package/types/PackageJson.js +1 -0
  970. package/types/ProjectComponents.d.ts +23 -0
  971. package/types/ProjectComponents.js +2 -0
  972. package/types/Projects.d.ts +130 -0
  973. package/types/Projects.js +6 -0
  974. package/types/Prompts.d.ts +28 -0
  975. package/types/Prompts.js +1 -0
  976. package/types/Sandboxes.d.ts +5 -0
  977. package/types/Sandboxes.js +1 -0
  978. package/types/Yargs.d.ts +46 -0
  979. package/types/Yargs.js +1 -0
  980. package/ui/components/ActionSection.d.ts +12 -0
  981. package/ui/components/ActionSection.js +25 -0
  982. package/ui/components/BoxWithTitle.d.ts +11 -0
  983. package/ui/components/BoxWithTitle.js +9 -0
  984. package/ui/components/FullScreen.d.ts +6 -0
  985. package/ui/components/FullScreen.js +13 -0
  986. package/ui/components/HorizontalSelectPrompt.d.ts +8 -0
  987. package/ui/components/HorizontalSelectPrompt.js +30 -0
  988. package/ui/components/InputField.d.ts +10 -0
  989. package/ui/components/InputField.js +10 -0
  990. package/ui/components/SelectInput.d.ts +11 -0
  991. package/ui/components/SelectInput.js +59 -0
  992. package/ui/components/StatusIcon.d.ts +9 -0
  993. package/ui/components/StatusIcon.js +17 -0
  994. package/ui/components/StatusMessageBoxes.d.ts +13 -0
  995. package/ui/components/StatusMessageBoxes.js +31 -0
  996. package/ui/components/Table.d.ts +89 -0
  997. package/ui/components/Table.js +246 -0
  998. package/ui/components/getStarted/GetStartedFlow.d.ts +8 -0
  999. package/ui/components/getStarted/GetStartedFlow.js +213 -0
  1000. package/ui/components/getStarted/reducer.d.ts +79 -0
  1001. package/ui/components/getStarted/reducer.js +108 -0
  1002. package/ui/components/getStarted/screens/InstallationScreen.d.ts +7 -0
  1003. package/ui/components/getStarted/screens/InstallationScreen.js +16 -0
  1004. package/ui/components/getStarted/screens/ProjectSetupScreen.d.ts +16 -0
  1005. package/ui/components/getStarted/screens/ProjectSetupScreen.js +40 -0
  1006. package/ui/components/getStarted/screens/UploadScreen.d.ts +7 -0
  1007. package/ui/components/getStarted/screens/UploadScreen.js +43 -0
  1008. package/ui/components/getStarted/selectors.d.ts +2 -0
  1009. package/ui/components/getStarted/selectors.js +1 -0
  1010. package/ui/constants.d.ts +6 -0
  1011. package/ui/constants.js +6 -0
  1012. package/ui/lib/constants.d.ts +17 -0
  1013. package/ui/lib/constants.js +17 -0
  1014. package/ui/lib/table.d.ts +2 -0
  1015. package/ui/lib/table.js +11 -0
  1016. package/ui/lib/useTerminalSize.d.ts +13 -0
  1017. package/ui/lib/useTerminalSize.js +31 -0
  1018. package/ui/playground/Playground.d.ts +5 -0
  1019. package/ui/playground/Playground.js +25 -0
  1020. package/ui/playground/fixtures.d.ts +9 -0
  1021. package/ui/playground/fixtures.js +126 -0
  1022. package/ui/render.d.ts +23 -0
  1023. package/ui/render.js +75 -0
  1024. package/ui/styles.d.ts +21 -0
  1025. package/ui/styles.js +21 -0
@@ -0,0 +1,93 @@
1
+ import { getConfigFilePath, setConfigAccountAsDefault, getConfigAccountIfExists, getConfigAccountByName, getConfigAccountById, globalConfigFileExists, getAllConfigAccounts, } from '@hubspot/local-dev-lib/config';
2
+ import { getDefaultAccountOverrideAccountId, getDefaultAccountOverrideFilePath, } from '@hubspot/local-dev-lib/config/defaultAccountOverride';
3
+ import { ENVIRONMENTS } from '@hubspot/local-dev-lib/constants/environments';
4
+ import { trackCommandUsage } from '../../lib/usageTracking.js';
5
+ import { commands } from '../../lang/en.js';
6
+ import { uiLogger } from '../../lib/ui/logger.js';
7
+ import { selectAccountFromConfig, AUTHENTICATE_NEW_ACCOUNT_VALUE, } from '../../lib/prompts/accountsPrompt.js';
8
+ import { makeYargsBuilder } from '../../lib/yargsUtils.js';
9
+ import { authenticateNewAccount } from '../../lib/accountAuth.js';
10
+ import { PromptExitError } from '../../lib/errors/PromptExitError.js';
11
+ import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
12
+ const command = 'use [account]';
13
+ const describe = commands.account.subcommands.use.describe;
14
+ async function handler(args) {
15
+ let newDefaultAccount = args.account;
16
+ const usingGlobalConfig = globalConfigFileExists();
17
+ if (!newDefaultAccount) {
18
+ newDefaultAccount = await selectAccountFromConfig('', usingGlobalConfig);
19
+ }
20
+ else {
21
+ const account = getConfigAccountIfExists(newDefaultAccount);
22
+ if (!account) {
23
+ uiLogger.error(commands.account.subcommands.use.errors.accountNotFound(newDefaultAccount, getConfigFilePath()));
24
+ newDefaultAccount = await selectAccountFromConfig('', usingGlobalConfig);
25
+ }
26
+ }
27
+ if (newDefaultAccount === AUTHENTICATE_NEW_ACCOUNT_VALUE) {
28
+ let updatedConfig;
29
+ try {
30
+ updatedConfig = await authenticateNewAccount({
31
+ env: args.qa ? ENVIRONMENTS.QA : ENVIRONMENTS.PROD,
32
+ setAsDefaultAccount: true,
33
+ });
34
+ }
35
+ catch (e) {
36
+ if (e instanceof PromptExitError) {
37
+ process.exit(e.exitCode);
38
+ }
39
+ throw e;
40
+ }
41
+ if (!updatedConfig) {
42
+ process.exit(EXIT_CODES.ERROR);
43
+ }
44
+ trackCommandUsage('accounts-use', undefined, updatedConfig.accountId);
45
+ return;
46
+ }
47
+ let account;
48
+ if (!isNaN(Number(newDefaultAccount))) {
49
+ account = getConfigAccountById(Number(newDefaultAccount));
50
+ }
51
+ else {
52
+ account = getConfigAccountByName(String(newDefaultAccount));
53
+ }
54
+ trackCommandUsage('accounts-use', undefined, account?.accountId);
55
+ const accounts = getAllConfigAccounts();
56
+ const accountOverride = getDefaultAccountOverrideAccountId(accounts);
57
+ const overrideFilePath = getDefaultAccountOverrideFilePath();
58
+ if (accountOverride && overrideFilePath) {
59
+ uiLogger.warn(commands.account.subcommands.use.accountOverride(accountOverride.toString()));
60
+ uiLogger.log(commands.account.subcommands.use.accountOverrideCommands);
61
+ uiLogger.log('');
62
+ }
63
+ setConfigAccountAsDefault(String(newDefaultAccount));
64
+ return uiLogger.success(commands.account.subcommands.use.success.defaultAccountUpdated(account.name));
65
+ }
66
+ function accountUseBuilder(yargs) {
67
+ yargs.positional('account', {
68
+ describe: commands.account.subcommands.use.options.account.describe,
69
+ type: 'string',
70
+ });
71
+ yargs.example([
72
+ ['$0 accounts use', commands.account.subcommands.use.examples.default],
73
+ [
74
+ '$0 accounts use MyAccount',
75
+ commands.account.subcommands.use.examples.nameBased,
76
+ ],
77
+ [
78
+ '$0 accounts use 1234567',
79
+ commands.account.subcommands.use.examples.idBased,
80
+ ],
81
+ ]);
82
+ return yargs;
83
+ }
84
+ const builder = makeYargsBuilder(accountUseBuilder, command, describe, {
85
+ useGlobalOptions: true,
86
+ });
87
+ const accountUseCommand = {
88
+ command,
89
+ describe,
90
+ handler,
91
+ builder,
92
+ };
93
+ export default accountUseCommand;
@@ -0,0 +1,3 @@
1
+ import { YargsCommandModuleBucket } from '../types/Yargs.js';
2
+ declare const accountCommand: YargsCommandModuleBucket;
3
+ export default accountCommand;
@@ -0,0 +1,35 @@
1
+ import { commands } from '../lang/en.js';
2
+ import auth from './account/auth.js';
3
+ import list from './account/list.js';
4
+ import rename from './account/rename.js';
5
+ import use from './account/use.js';
6
+ import info from './account/info.js';
7
+ import remove from './account/remove.js';
8
+ import clean from './account/clean.js';
9
+ import createOverride from './account/createOverride.js';
10
+ import removeOverride from './account/removeOverride.js';
11
+ import { makeYargsBuilder } from '../lib/yargsUtils.js';
12
+ const command = ['account', 'accounts'];
13
+ const describe = commands.account.describe;
14
+ function accountBuilder(yargs) {
15
+ yargs
16
+ .command(auth)
17
+ .command(list)
18
+ .command(rename)
19
+ .command(use)
20
+ .command(info)
21
+ .command(remove)
22
+ .command(clean)
23
+ .command(createOverride)
24
+ .command(removeOverride)
25
+ .demandCommand(1, '');
26
+ return yargs;
27
+ }
28
+ const builder = makeYargsBuilder(accountBuilder, command, describe);
29
+ const accountCommand = {
30
+ command,
31
+ describe,
32
+ builder,
33
+ handler: () => { },
34
+ };
35
+ export default accountCommand;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,111 @@
1
+ import yargs from 'yargs';
2
+ import { PLATFORM_VERSIONS } from '@hubspot/local-dev-lib/constants/projects';
3
+ import { uiLogger } from '../../../lib/ui/logger.js';
4
+ import { getConfigAccountById } from '@hubspot/local-dev-lib/config';
5
+ import { migrateApp } from '../../../lib/app/migrate.js';
6
+ import { EXIT_CODES } from '../../../lib/enums/exitCodes.js';
7
+ import migrateCommand from '../migrate.js';
8
+ vi.mock('@hubspot/local-dev-lib/config');
9
+ vi.mock('../../../lib/app/migrate');
10
+ vi.mock('../../../lib/projects/config.js');
11
+ const mockYargs = yargs;
12
+ const mockedGetConfigAccountById = getConfigAccountById;
13
+ const mockedmigrateApp = migrateApp;
14
+ const mockedUiLogger = uiLogger;
15
+ const optionsSpy = vi.spyOn(mockYargs, 'options');
16
+ const exampleSpy = vi.spyOn(mockYargs, 'example');
17
+ const exitSpy = vi
18
+ .spyOn(process, 'exit')
19
+ .mockImplementation(() => undefined);
20
+ describe('commands/app/migrate', () => {
21
+ const mockAccountId = 123;
22
+ const mockAccountConfig = {
23
+ accountId: mockAccountId,
24
+ name: 'Test Account',
25
+ env: 'prod',
26
+ authType: 'personalaccesskey',
27
+ personalAccessKey: 'test-key',
28
+ };
29
+ beforeEach(() => {
30
+ mockedGetConfigAccountById.mockReturnValue(mockAccountConfig);
31
+ exitSpy.mockClear();
32
+ });
33
+ afterEach(() => {
34
+ exitSpy.mockClear();
35
+ });
36
+ describe('handler', () => {
37
+ it('should exit with error when no account config is found', async () => {
38
+ mockedGetConfigAccountById.mockReturnValue(null);
39
+ await migrateCommand.handler({
40
+ derivedAccountId: mockAccountId,
41
+ });
42
+ expect(mockedUiLogger.error).toHaveBeenCalled();
43
+ expect(exitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
44
+ });
45
+ it('should call migrateApp for platform version 2025.2', async () => {
46
+ const options = {
47
+ derivedAccountId: mockAccountId,
48
+ platformVersion: PLATFORM_VERSIONS.v2025_2,
49
+ };
50
+ await migrateCommand.handler(options);
51
+ expect(mockedmigrateApp).toHaveBeenCalledWith(mockAccountId, options);
52
+ expect(exitSpy).toHaveBeenCalledWith(EXIT_CODES.SUCCESS);
53
+ });
54
+ it('should call migrateApp when unstable is true', async () => {
55
+ const options = {
56
+ derivedAccountId: mockAccountId,
57
+ unstable: true,
58
+ };
59
+ await migrateCommand.handler(options);
60
+ expect(mockedmigrateApp).toHaveBeenCalledWith(mockAccountId, options);
61
+ expect(exitSpy).toHaveBeenCalledWith(EXIT_CODES.SUCCESS);
62
+ });
63
+ it('should handle errors during migration', async () => {
64
+ const mockError = new Error('Migration failed');
65
+ mockedmigrateApp.mockRejectedValue(mockError);
66
+ await migrateCommand.handler({
67
+ derivedAccountId: mockAccountId,
68
+ platformVersion: PLATFORM_VERSIONS.v2025_2,
69
+ });
70
+ expect(mockedUiLogger.error).toHaveBeenCalled();
71
+ expect(exitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
72
+ });
73
+ });
74
+ describe('builder', () => {
75
+ it('should add required options', async () => {
76
+ await migrateCommand.builder(mockYargs);
77
+ expect(optionsSpy).toHaveBeenCalledWith(expect.objectContaining({
78
+ name: expect.objectContaining({
79
+ type: 'string',
80
+ describe: expect.any(String),
81
+ }),
82
+ dest: expect.objectContaining({
83
+ type: 'string',
84
+ describe: expect.any(String),
85
+ }),
86
+ 'app-id': expect.objectContaining({
87
+ type: 'number',
88
+ describe: expect.any(String),
89
+ }),
90
+ 'platform-version': expect.objectContaining({
91
+ type: 'string',
92
+ default: '2026.03',
93
+ }),
94
+ }));
95
+ });
96
+ it('should set default platform version to 2025.2', async () => {
97
+ await migrateCommand.builder(mockYargs);
98
+ expect(optionsSpy).toHaveBeenCalledWith(expect.objectContaining({
99
+ 'platform-version': expect.objectContaining({
100
+ default: '2026.03',
101
+ }),
102
+ }));
103
+ });
104
+ it('should add example command', async () => {
105
+ await migrateCommand.builder(mockYargs);
106
+ expect(exampleSpy).toHaveBeenCalledWith([
107
+ ['$0 app migrate', expect.any(String)],
108
+ ]);
109
+ });
110
+ });
111
+ });
@@ -0,0 +1,6 @@
1
+ import { ArgumentsCamelCase } from 'yargs';
2
+ import { YargsCommandModule } from '../../types/Yargs.js';
3
+ import { MigrateAppArgs } from '../../lib/app/migrate.js';
4
+ export declare function handlerGenerator(commandTrackingName: string): (args: ArgumentsCamelCase<MigrateAppArgs>) => Promise<void>;
5
+ declare const migrateCommand: YargsCommandModule<unknown, MigrateAppArgs>;
6
+ export default migrateCommand;
@@ -0,0 +1,96 @@
1
+ import { getConfigAccountById } from '@hubspot/local-dev-lib/config';
2
+ import { PLATFORM_VERSIONS } from '@hubspot/local-dev-lib/constants/projects';
3
+ import { trackCommandMetadataUsage, trackCommandUsage, } from '../../lib/usageTracking.js';
4
+ import { commands } from '../../lang/en.js';
5
+ import { uiLogger } from '../../lib/ui/logger.js';
6
+ import { ApiErrorContext, logError } from '../../lib/errorHandlers/index.js';
7
+ import { EXIT_CODES } from '../../lib/enums/exitCodes.js';
8
+ import { migrateApp } from '../../lib/app/migrate.js';
9
+ import { getIsInProject } from '../../lib/projects/config.js';
10
+ import { makeYargsBuilder } from '../../lib/yargsUtils.js';
11
+ const { v2025_2, v2026_03_beta, v2026_03 } = PLATFORM_VERSIONS;
12
+ const command = 'migrate';
13
+ const describe = commands.project.migrateApp.describe;
14
+ export function handlerGenerator(commandTrackingName) {
15
+ return async function handler(args) {
16
+ const { derivedAccountId, platformVersion, unstable } = args;
17
+ await trackCommandUsage(commandTrackingName, {}, derivedAccountId);
18
+ const accountConfig = getConfigAccountById(derivedAccountId);
19
+ if (!accountConfig) {
20
+ uiLogger.error(commands.project.migrateApp.errors.noAccountConfig);
21
+ return process.exit(EXIT_CODES.ERROR);
22
+ }
23
+ uiLogger.log('');
24
+ uiLogger.log(commands.project.migrateApp.header);
25
+ uiLogger.log('');
26
+ try {
27
+ if (getIsInProject()) {
28
+ uiLogger.error(commands.project.migrateApp.errors.notAllowedWithinProject);
29
+ return process.exit(EXIT_CODES.ERROR);
30
+ }
31
+ args.platformVersion = unstable
32
+ ? PLATFORM_VERSIONS.unstable
33
+ : platformVersion;
34
+ await migrateApp(derivedAccountId, args);
35
+ }
36
+ catch (error) {
37
+ if (error &&
38
+ typeof error === 'object' &&
39
+ 'errors' in error &&
40
+ Array.isArray(error.errors)) {
41
+ error.errors.forEach(err => logError(err));
42
+ }
43
+ else {
44
+ logError(error, new ApiErrorContext({ accountId: derivedAccountId }));
45
+ }
46
+ await trackCommandMetadataUsage(commandTrackingName, { successful: false }, derivedAccountId);
47
+ return process.exit(EXIT_CODES.ERROR);
48
+ }
49
+ await trackCommandMetadataUsage(commandTrackingName, { successful: true }, derivedAccountId);
50
+ return process.exit(EXIT_CODES.SUCCESS);
51
+ };
52
+ }
53
+ const handler = handlerGenerator('app-migrate');
54
+ function appMigrateBuilder(yargs) {
55
+ yargs.options({
56
+ name: {
57
+ describe: commands.project.migrateApp.options.name.describe,
58
+ type: 'string',
59
+ },
60
+ dest: {
61
+ describe: commands.project.migrateApp.options.dest.describe,
62
+ type: 'string',
63
+ },
64
+ 'app-id': {
65
+ describe: commands.project.migrateApp.options.appId.describe,
66
+ type: 'number',
67
+ },
68
+ 'platform-version': {
69
+ type: 'string',
70
+ choices: [v2025_2, v2026_03_beta, v2026_03],
71
+ default: v2026_03,
72
+ },
73
+ unstable: {
74
+ type: 'boolean',
75
+ default: false,
76
+ hidden: true,
77
+ },
78
+ });
79
+ yargs.example([
80
+ [`$0 app migrate`, commands.project.migrateApp.examples.default],
81
+ ]);
82
+ return yargs;
83
+ }
84
+ const builder = makeYargsBuilder(appMigrateBuilder, command, commands.project.migrateApp.describe, {
85
+ useGlobalOptions: true,
86
+ useConfigOptions: true,
87
+ useAccountOptions: true,
88
+ useEnvironmentOptions: true,
89
+ });
90
+ const migrateCommand = {
91
+ command,
92
+ describe,
93
+ handler,
94
+ builder,
95
+ };
96
+ export default migrateCommand;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,140 @@
1
+ import yargs from 'yargs';
2
+ import { addAppSecret } from '@hubspot/local-dev-lib/api/devSecrets';
3
+ import { secretNamePrompt, secretValuePrompt, } from '../../../../lib/prompts/secretPrompt.js';
4
+ import { selectAppPrompt } from '../../../../lib/prompts/selectAppPrompt.js';
5
+ import { trackCommandUsage } from '../../../../lib/usageTracking.js';
6
+ import { logError } from '../../../../lib/errorHandlers/index.js';
7
+ import { uiLogger } from '../../../../lib/ui/logger.js';
8
+ import { EXIT_CODES } from '../../../../lib/enums/exitCodes.js';
9
+ import addAppSecretCommand from '../add.js';
10
+ vi.mock('../../../../lib/commonOpts');
11
+ vi.mock('@hubspot/local-dev-lib/api/devSecrets');
12
+ vi.mock('../../../../lib/prompts/secretPrompt.js');
13
+ vi.mock('../../../../lib/prompts/selectAppPrompt.js');
14
+ vi.mock('../../../../lib/errorHandlers/index.js');
15
+ const addAppSecretMock = vi.mocked(addAppSecret);
16
+ const secretNamePromptMock = vi.mocked(secretNamePrompt);
17
+ const secretValuePromptMock = vi.mocked(secretValuePrompt);
18
+ const selectAppPromptMock = vi.mocked(selectAppPrompt);
19
+ const trackCommandUsageMock = vi.mocked(trackCommandUsage);
20
+ const logErrorMock = vi.mocked(logError);
21
+ const processExitSpy = vi.spyOn(process, 'exit');
22
+ describe('commands/app/secret/add', () => {
23
+ const yargsMock = yargs;
24
+ const mockApp = { id: 12345, name: 'Test App' };
25
+ beforeEach(() => {
26
+ vi.clearAllMocks();
27
+ // @ts-expect-error Mock implementation
28
+ processExitSpy.mockImplementation(() => { });
29
+ selectAppPromptMock.mockResolvedValue(mockApp);
30
+ secretValuePromptMock.mockResolvedValue({ secretValue: 'test-value' });
31
+ // @ts-expect-error
32
+ addAppSecretMock.mockResolvedValue(undefined);
33
+ });
34
+ describe('command', () => {
35
+ it('should have the correct command structure', () => {
36
+ expect(addAppSecretCommand.command).toEqual('add [name]');
37
+ });
38
+ });
39
+ describe('describe', () => {
40
+ it('should provide a description', () => {
41
+ expect(addAppSecretCommand.describe).toBeDefined();
42
+ });
43
+ });
44
+ describe('builder', () => {
45
+ it('should support the correct options', () => {
46
+ addAppSecretCommand.builder(yargsMock);
47
+ expect(yargsMock.example).toHaveBeenCalledTimes(1);
48
+ expect(yargsMock.positional).toHaveBeenCalledWith('name', expect.objectContaining({
49
+ type: 'string',
50
+ }));
51
+ expect(yargsMock.option).toHaveBeenCalledWith('app', expect.objectContaining({
52
+ type: 'number',
53
+ }));
54
+ });
55
+ });
56
+ describe('handler', () => {
57
+ let args;
58
+ beforeEach(() => {
59
+ args = {
60
+ name: 'test-secret',
61
+ derivedAccountId: 123456,
62
+ d: false,
63
+ debug: false,
64
+ };
65
+ });
66
+ it('should track command usage', async () => {
67
+ await addAppSecretCommand.handler(args);
68
+ expect(trackCommandUsageMock).toHaveBeenCalledWith('app-secret-add', {}, 123456);
69
+ });
70
+ it('should prompt for app selection', async () => {
71
+ await addAppSecretCommand.handler(args);
72
+ expect(selectAppPromptMock).toHaveBeenCalledWith(123456, undefined);
73
+ });
74
+ it('should use provided app ID when specified', async () => {
75
+ args.app = 99999;
76
+ await addAppSecretCommand.handler(args);
77
+ expect(selectAppPromptMock).toHaveBeenCalledWith(123456, 99999);
78
+ });
79
+ it('should error if no app is selected', async () => {
80
+ selectAppPromptMock.mockResolvedValue(null);
81
+ await addAppSecretCommand.handler(args);
82
+ expect(uiLogger.log).toHaveBeenCalledWith('');
83
+ expect(uiLogger.log).toHaveBeenCalledWith(expect.stringContaining('create a new app'));
84
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
85
+ expect(addAppSecretMock).not.toHaveBeenCalled();
86
+ });
87
+ it('should prompt for secret name when not provided', async () => {
88
+ delete args.name;
89
+ secretNamePromptMock.mockResolvedValue({ secretName: 'prompted-name' });
90
+ await addAppSecretCommand.handler(args);
91
+ expect(secretNamePromptMock).toHaveBeenCalledTimes(1);
92
+ expect(addAppSecretMock).toHaveBeenCalledWith(123456, 12345, 'prompted-name', 'test-value');
93
+ });
94
+ it('should use provided secret name', async () => {
95
+ await addAppSecretCommand.handler(args);
96
+ expect(secretNamePromptMock).not.toHaveBeenCalled();
97
+ expect(addAppSecretMock).toHaveBeenCalledWith(123456, 12345, 'test-secret', 'test-value');
98
+ });
99
+ it('should prompt for secret value', async () => {
100
+ await addAppSecretCommand.handler(args);
101
+ expect(secretValuePromptMock).toHaveBeenCalledTimes(1);
102
+ });
103
+ it('should add app secret successfully', async () => {
104
+ await addAppSecretCommand.handler(args);
105
+ expect(addAppSecretMock).toHaveBeenCalledWith(123456, 12345, 'test-secret', 'test-value');
106
+ expect(uiLogger.success).toHaveBeenCalledWith(expect.stringContaining('Test App'));
107
+ expect(uiLogger.success).toHaveBeenCalledWith(expect.stringContaining('test-secret'));
108
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.SUCCESS);
109
+ });
110
+ it('should handle errors when adding app secret', async () => {
111
+ const error = new Error('API error');
112
+ addAppSecretMock.mockRejectedValue(error);
113
+ await addAppSecretCommand.handler(args);
114
+ expect(logErrorMock).toHaveBeenCalledWith(error);
115
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
116
+ });
117
+ it('should handle errors when selecting app', async () => {
118
+ const error = new Error('App selection error');
119
+ selectAppPromptMock.mockRejectedValue(error);
120
+ await addAppSecretCommand.handler(args);
121
+ expect(logErrorMock).toHaveBeenCalledWith(error);
122
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
123
+ });
124
+ it('should handle errors when prompting for name', async () => {
125
+ delete args.name;
126
+ const error = new Error('Name prompt error');
127
+ secretNamePromptMock.mockRejectedValue(error);
128
+ await addAppSecretCommand.handler(args);
129
+ expect(logErrorMock).toHaveBeenCalledWith(error);
130
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
131
+ });
132
+ it('should handle errors when prompting for value', async () => {
133
+ const error = new Error('Value prompt error');
134
+ secretValuePromptMock.mockRejectedValue(error);
135
+ await addAppSecretCommand.handler(args);
136
+ expect(logErrorMock).toHaveBeenCalledWith(error);
137
+ expect(processExitSpy).toHaveBeenCalledWith(EXIT_CODES.ERROR);
138
+ });
139
+ });
140
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,28 @@
1
+ import yargs from 'yargs';
2
+ import deleteAppSecretCommand from '../delete.js';
3
+ vi.mock('../../../../lib/commonOpts');
4
+ describe('commands/app/secret/delete', () => {
5
+ const yargsMock = yargs;
6
+ describe('command', () => {
7
+ it('should have the correct command structure', () => {
8
+ expect(deleteAppSecretCommand.command).toEqual('delete [name]');
9
+ });
10
+ });
11
+ describe('describe', () => {
12
+ it('should provide a description', () => {
13
+ expect(deleteAppSecretCommand.describe).toBeDefined();
14
+ });
15
+ });
16
+ describe('builder', () => {
17
+ it('should support the correct options', () => {
18
+ deleteAppSecretCommand.builder(yargsMock);
19
+ expect(yargsMock.example).toHaveBeenCalledTimes(1);
20
+ expect(yargsMock.positional).toHaveBeenCalledWith('name', expect.objectContaining({
21
+ type: 'string',
22
+ }));
23
+ expect(yargsMock.option).toHaveBeenCalledWith('app', expect.objectContaining({
24
+ type: 'number',
25
+ }));
26
+ });
27
+ });
28
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,25 @@
1
+ import yargs from 'yargs';
2
+ import listAppSecretsCommand from '../list.js';
3
+ vi.mock('../../../../lib/commonOpts');
4
+ describe('commands/app/secret/list', () => {
5
+ const yargsMock = yargs;
6
+ describe('command', () => {
7
+ it('should have the correct command structure', () => {
8
+ expect(listAppSecretsCommand.command).toEqual('list');
9
+ });
10
+ });
11
+ describe('describe', () => {
12
+ it('should provide a description', () => {
13
+ expect(listAppSecretsCommand.describe).toBeDefined();
14
+ });
15
+ });
16
+ describe('builder', () => {
17
+ it('should support the correct options', () => {
18
+ listAppSecretsCommand.builder(yargsMock);
19
+ expect(yargsMock.example).toHaveBeenCalledTimes(1);
20
+ expect(yargsMock.option).toHaveBeenCalledWith('app', expect.objectContaining({
21
+ type: 'number',
22
+ }));
23
+ });
24
+ });
25
+ });
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,28 @@
1
+ import yargs from 'yargs';
2
+ import updateAppSecretCommand from '../update.js';
3
+ vi.mock('../../../../lib/commonOpts');
4
+ describe('commands/app/secret/update', () => {
5
+ const yargsMock = yargs;
6
+ describe('command', () => {
7
+ it('should have the correct command structure', () => {
8
+ expect(updateAppSecretCommand.command).toEqual('update [name]');
9
+ });
10
+ });
11
+ describe('describe', () => {
12
+ it('should provide a description', () => {
13
+ expect(updateAppSecretCommand.describe).toBeDefined();
14
+ });
15
+ });
16
+ describe('builder', () => {
17
+ it('should support the correct options', () => {
18
+ updateAppSecretCommand.builder(yargsMock);
19
+ expect(yargsMock.example).toHaveBeenCalledTimes(1);
20
+ expect(yargsMock.positional).toHaveBeenCalledWith('name', expect.objectContaining({
21
+ type: 'string',
22
+ }));
23
+ expect(yargsMock.option).toHaveBeenCalledWith('app', expect.objectContaining({
24
+ type: 'number',
25
+ }));
26
+ });
27
+ });
28
+ });
@@ -0,0 +1,7 @@
1
+ import { CommonArgs, ConfigArgs, AccountArgs, EnvironmentArgs, YargsCommandModule } from '../../../types/Yargs.js';
2
+ type AddAppSecretArgs = CommonArgs & ConfigArgs & AccountArgs & EnvironmentArgs & {
3
+ name?: string;
4
+ app?: number;
5
+ };
6
+ declare const addAppSecretCommand: YargsCommandModule<unknown, AddAppSecretArgs>;
7
+ export default addAppSecretCommand;
@@ -0,0 +1,63 @@
1
+ import { addAppSecret } from '@hubspot/local-dev-lib/api/devSecrets';
2
+ import { logError } from '../../../lib/errorHandlers/index.js';
3
+ import { trackCommandUsage } from '../../../lib/usageTracking.js';
4
+ import { secretValuePrompt, secretNamePrompt, } from '../../../lib/prompts/secretPrompt.js';
5
+ import { selectAppPrompt } from '../../../lib/prompts/selectAppPrompt.js';
6
+ import { commands } from '../../../lang/en.js';
7
+ import { EXIT_CODES } from '../../../lib/enums/exitCodes.js';
8
+ import { makeYargsBuilder } from '../../../lib/yargsUtils.js';
9
+ import { uiLogger } from '../../../lib/ui/logger.js';
10
+ import { uiBetaTag } from '../../../lib/ui/index.js';
11
+ const command = 'add [name]';
12
+ const describe = uiBetaTag(commands.app.subcommands.secret.subcommands.add.describe, false);
13
+ async function handler(args) {
14
+ const { derivedAccountId } = args;
15
+ trackCommandUsage('app-secret-add', {}, derivedAccountId);
16
+ try {
17
+ const appSecretApp = await selectAppPrompt(derivedAccountId, args.app);
18
+ if (!appSecretApp) {
19
+ uiLogger.log('');
20
+ uiLogger.log(commands.app.subcommands.secret.subcommands.add.errors.noApps);
21
+ return process.exit(EXIT_CODES.ERROR);
22
+ }
23
+ let appSecretName = args.name;
24
+ if (!appSecretName) {
25
+ const { secretName: name } = await secretNamePrompt();
26
+ appSecretName = name;
27
+ }
28
+ const { secretValue } = await secretValuePrompt();
29
+ await addAppSecret(derivedAccountId, appSecretApp.id, appSecretName, secretValue);
30
+ uiLogger.log('');
31
+ uiLogger.success(commands.app.subcommands.secret.subcommands.add.success(appSecretApp.name, appSecretName));
32
+ }
33
+ catch (err) {
34
+ logError(err);
35
+ return process.exit(EXIT_CODES.ERROR);
36
+ }
37
+ process.exit(EXIT_CODES.SUCCESS);
38
+ }
39
+ function addAppSecretBuilder(yargs) {
40
+ yargs.positional('name', {
41
+ describe: commands.app.subcommands.secret.subcommands.add.positionals.name,
42
+ type: 'string',
43
+ });
44
+ yargs.option('app', {
45
+ describe: commands.app.subcommands.secret.subcommands.add.options.app,
46
+ type: 'number',
47
+ });
48
+ yargs.example('add my-secret --app=1234567890', commands.app.subcommands.secret.subcommands.add.example);
49
+ return yargs;
50
+ }
51
+ const builder = makeYargsBuilder(addAppSecretBuilder, command, describe, {
52
+ useGlobalOptions: true,
53
+ useAccountOptions: true,
54
+ useConfigOptions: true,
55
+ useEnvironmentOptions: true,
56
+ });
57
+ const addAppSecretCommand = {
58
+ command,
59
+ describe,
60
+ handler,
61
+ builder,
62
+ };
63
+ export default addAppSecretCommand;