@constructive-sdk/cli 0.2.1 → 0.6.2

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 (415) hide show
  1. package/admin/cli/commands/app-achievement.js +4 -0
  2. package/admin/cli/commands/app-admin-grant.js +6 -2
  3. package/admin/cli/commands/app-grant.js +8 -2
  4. package/admin/cli/commands/app-level-requirement.js +6 -0
  5. package/admin/cli/commands/app-level.js +6 -0
  6. package/admin/cli/commands/app-limit-default.js +2 -0
  7. package/admin/cli/commands/app-limit.js +6 -0
  8. package/admin/cli/commands/app-membership-default.js +12 -4
  9. package/admin/cli/commands/app-membership.js +38 -14
  10. package/admin/cli/commands/app-owner-grant.js +6 -2
  11. package/admin/cli/commands/app-permission-default.js +2 -0
  12. package/admin/cli/commands/app-permission.js +8 -0
  13. package/admin/cli/commands/app-step.js +4 -0
  14. package/admin/cli/commands/claimed-invite.js +8 -2
  15. package/admin/cli/commands/invite.js +24 -6
  16. package/admin/cli/commands/org-admin-grant.js +6 -2
  17. package/admin/cli/commands/org-chart-edge-grant.js +10 -2
  18. package/admin/cli/commands/org-chart-edge.js +6 -0
  19. package/admin/cli/commands/org-claimed-invite.js +8 -2
  20. package/admin/cli/commands/org-grant.js +8 -2
  21. package/admin/cli/commands/org-invite.js +26 -6
  22. package/admin/cli/commands/org-limit-default.js +2 -0
  23. package/admin/cli/commands/org-limit.js +6 -0
  24. package/admin/cli/commands/org-member.js +4 -2
  25. package/admin/cli/commands/org-membership-default.js +16 -6
  26. package/admin/cli/commands/org-membership.js +34 -12
  27. package/admin/cli/commands/org-owner-grant.js +6 -2
  28. package/admin/cli/commands/org-permission-default.js +2 -0
  29. package/admin/cli/commands/org-permission.js +8 -0
  30. package/admin/cli/commands/submit-invite-code.js +1 -1
  31. package/admin/cli/commands/submit-org-invite-code.js +1 -1
  32. package/admin/cli/index.js +2 -2
  33. package/admin/cli/utils.d.ts +13 -0
  34. package/admin/cli/utils.js +25 -0
  35. package/auth/cli/commands/audit-log.js +10 -2
  36. package/auth/cli/commands/check-password.js +1 -1
  37. package/auth/cli/commands/confirm-delete-account.js +1 -1
  38. package/auth/cli/commands/connected-account.js +8 -4
  39. package/auth/cli/commands/crypto-address.js +10 -4
  40. package/auth/cli/commands/email.js +10 -4
  41. package/auth/cli/commands/extend-token-expires.js +1 -1
  42. package/auth/cli/commands/forgot-password.js +1 -1
  43. package/auth/cli/commands/one-time-token.js +1 -1
  44. package/auth/cli/commands/phone-number.js +10 -4
  45. package/auth/cli/commands/reset-password.js +1 -1
  46. package/auth/cli/commands/send-account-deletion-email.js +1 -1
  47. package/auth/cli/commands/send-verification-email.js +1 -1
  48. package/auth/cli/commands/set-password.js +1 -1
  49. package/auth/cli/commands/sign-in-one-time-token.js +1 -1
  50. package/auth/cli/commands/sign-in.js +1 -1
  51. package/auth/cli/commands/sign-out.js +1 -1
  52. package/auth/cli/commands/sign-up.js +1 -1
  53. package/auth/cli/commands/user.js +10 -0
  54. package/auth/cli/commands/verify-email.js +1 -1
  55. package/auth/cli/commands/verify-password.js +1 -1
  56. package/auth/cli/commands/verify-totp.js +1 -1
  57. package/auth/cli/index.js +2 -2
  58. package/auth/cli/utils.d.ts +13 -0
  59. package/auth/cli/utils.js +25 -0
  60. package/esm/admin/cli/commands/app-achievement.js +4 -0
  61. package/esm/admin/cli/commands/app-admin-grant.js +6 -2
  62. package/esm/admin/cli/commands/app-grant.js +8 -2
  63. package/esm/admin/cli/commands/app-level-requirement.js +6 -0
  64. package/esm/admin/cli/commands/app-level.js +6 -0
  65. package/esm/admin/cli/commands/app-limit-default.js +2 -0
  66. package/esm/admin/cli/commands/app-limit.js +6 -0
  67. package/esm/admin/cli/commands/app-membership-default.js +12 -4
  68. package/esm/admin/cli/commands/app-membership.js +38 -14
  69. package/esm/admin/cli/commands/app-owner-grant.js +6 -2
  70. package/esm/admin/cli/commands/app-permission-default.js +2 -0
  71. package/esm/admin/cli/commands/app-permission.js +8 -0
  72. package/esm/admin/cli/commands/app-step.js +4 -0
  73. package/esm/admin/cli/commands/claimed-invite.js +8 -2
  74. package/esm/admin/cli/commands/invite.js +24 -6
  75. package/esm/admin/cli/commands/org-admin-grant.js +6 -2
  76. package/esm/admin/cli/commands/org-chart-edge-grant.js +10 -2
  77. package/esm/admin/cli/commands/org-chart-edge.js +6 -0
  78. package/esm/admin/cli/commands/org-claimed-invite.js +8 -2
  79. package/esm/admin/cli/commands/org-grant.js +8 -2
  80. package/esm/admin/cli/commands/org-invite.js +26 -6
  81. package/esm/admin/cli/commands/org-limit-default.js +2 -0
  82. package/esm/admin/cli/commands/org-limit.js +6 -0
  83. package/esm/admin/cli/commands/org-member.js +4 -2
  84. package/esm/admin/cli/commands/org-membership-default.js +16 -6
  85. package/esm/admin/cli/commands/org-membership.js +34 -12
  86. package/esm/admin/cli/commands/org-owner-grant.js +6 -2
  87. package/esm/admin/cli/commands/org-permission-default.js +2 -0
  88. package/esm/admin/cli/commands/org-permission.js +8 -0
  89. package/esm/admin/cli/commands/submit-invite-code.js +2 -2
  90. package/esm/admin/cli/commands/submit-org-invite-code.js +2 -2
  91. package/esm/admin/cli/index.js +2 -2
  92. package/esm/admin/cli/utils.d.ts +13 -0
  93. package/esm/admin/cli/utils.js +24 -0
  94. package/esm/auth/cli/commands/audit-log.js +10 -2
  95. package/esm/auth/cli/commands/check-password.js +2 -2
  96. package/esm/auth/cli/commands/confirm-delete-account.js +2 -2
  97. package/esm/auth/cli/commands/connected-account.js +8 -4
  98. package/esm/auth/cli/commands/crypto-address.js +10 -4
  99. package/esm/auth/cli/commands/email.js +10 -4
  100. package/esm/auth/cli/commands/extend-token-expires.js +2 -2
  101. package/esm/auth/cli/commands/forgot-password.js +2 -2
  102. package/esm/auth/cli/commands/one-time-token.js +2 -2
  103. package/esm/auth/cli/commands/phone-number.js +10 -4
  104. package/esm/auth/cli/commands/reset-password.js +2 -2
  105. package/esm/auth/cli/commands/send-account-deletion-email.js +2 -2
  106. package/esm/auth/cli/commands/send-verification-email.js +2 -2
  107. package/esm/auth/cli/commands/set-password.js +2 -2
  108. package/esm/auth/cli/commands/sign-in-one-time-token.js +2 -2
  109. package/esm/auth/cli/commands/sign-in.js +2 -2
  110. package/esm/auth/cli/commands/sign-out.js +2 -2
  111. package/esm/auth/cli/commands/sign-up.js +2 -2
  112. package/esm/auth/cli/commands/user.js +10 -0
  113. package/esm/auth/cli/commands/verify-email.js +2 -2
  114. package/esm/auth/cli/commands/verify-password.js +2 -2
  115. package/esm/auth/cli/commands/verify-totp.js +2 -2
  116. package/esm/auth/cli/index.js +2 -2
  117. package/esm/auth/cli/utils.d.ts +13 -0
  118. package/esm/auth/cli/utils.js +24 -0
  119. package/esm/objects/cli/commands/commit.js +12 -0
  120. package/esm/objects/cli/commands/freeze-objects.js +2 -2
  121. package/esm/objects/cli/commands/get-all-record.js +1 -1
  122. package/esm/objects/cli/commands/init-empty-repo.js +2 -2
  123. package/esm/objects/cli/commands/insert-node-at-path.js +2 -2
  124. package/esm/objects/cli/commands/object.js +12 -4
  125. package/esm/objects/cli/commands/ref.js +2 -0
  126. package/esm/objects/cli/commands/remove-node-at-path.js +2 -2
  127. package/esm/objects/cli/commands/set-and-commit.js +2 -2
  128. package/esm/objects/cli/commands/set-data-at-path.js +2 -2
  129. package/esm/objects/cli/commands/set-props-and-commit.js +2 -2
  130. package/esm/objects/cli/commands/store.js +2 -0
  131. package/esm/objects/cli/commands/update-node-at-path.js +2 -2
  132. package/esm/objects/cli/index.js +2 -2
  133. package/esm/objects/cli/utils.d.ts +13 -0
  134. package/esm/objects/cli/utils.js +24 -0
  135. package/esm/public/cli/commands/api-module.js +2 -2
  136. package/esm/public/cli/commands/api.js +10 -2
  137. package/esm/public/cli/commands/app-achievement.js +4 -0
  138. package/esm/public/cli/commands/app-admin-grant.js +6 -2
  139. package/esm/public/cli/commands/app-grant.js +8 -2
  140. package/esm/public/cli/commands/app-level-requirement.js +6 -0
  141. package/esm/public/cli/commands/app-level.js +6 -0
  142. package/esm/public/cli/commands/app-limit-default.js +2 -0
  143. package/esm/public/cli/commands/app-limit.js +6 -0
  144. package/esm/public/cli/commands/app-membership-default.js +12 -4
  145. package/esm/public/cli/commands/app-membership.js +38 -14
  146. package/esm/public/cli/commands/app-owner-grant.js +6 -2
  147. package/esm/public/cli/commands/app-permission-default.js +2 -0
  148. package/esm/public/cli/commands/app-permission.js +8 -0
  149. package/esm/public/cli/commands/app-step.js +4 -0
  150. package/esm/public/cli/commands/app.js +12 -0
  151. package/esm/public/cli/commands/apply-rls.js +2 -2
  152. package/esm/public/cli/commands/ast-migration.js +15 -4
  153. package/esm/public/cli/commands/audit-log.js +10 -2
  154. package/esm/public/cli/commands/bootstrap-user.js +2 -2
  155. package/esm/public/cli/commands/check-constraint.js +22 -4
  156. package/esm/public/cli/commands/check-password.js +2 -2
  157. package/esm/public/cli/commands/claimed-invite.js +8 -2
  158. package/esm/public/cli/commands/commit.js +12 -0
  159. package/esm/public/cli/commands/confirm-delete-account.js +2 -2
  160. package/esm/public/cli/commands/connected-account.js +8 -4
  161. package/esm/public/cli/commands/connected-accounts-module.js +8 -0
  162. package/esm/public/cli/commands/create-user-database.js +2 -2
  163. package/esm/public/cli/commands/crypto-address.js +10 -4
  164. package/esm/public/cli/commands/crypto-addresses-module.js +10 -0
  165. package/esm/public/cli/commands/crypto-auth-module.js +22 -0
  166. package/esm/public/cli/commands/database-provision-module.js +20 -4
  167. package/esm/public/cli/commands/database.js +10 -0
  168. package/esm/public/cli/commands/default-privilege.js +6 -2
  169. package/esm/public/cli/commands/denormalized-table-field.js +16 -4
  170. package/esm/public/cli/commands/domain.js +8 -0
  171. package/esm/public/cli/commands/email.js +10 -4
  172. package/esm/public/cli/commands/emails-module.js +8 -0
  173. package/esm/public/cli/commands/encrypted-secrets-module.js +6 -0
  174. package/esm/public/cli/commands/extend-token-expires.js +2 -2
  175. package/esm/public/cli/commands/field-module.js +14 -2
  176. package/esm/public/cli/commands/field.js +48 -12
  177. package/esm/public/cli/commands/foreign-key-constraint.js +24 -2
  178. package/esm/public/cli/commands/forgot-password.js +2 -2
  179. package/esm/public/cli/commands/freeze-objects.js +2 -2
  180. package/esm/public/cli/commands/full-text-search.js +2 -0
  181. package/esm/public/cli/commands/get-all-record.js +1 -1
  182. package/esm/public/cli/commands/hierarchy-module.js +30 -0
  183. package/esm/public/cli/commands/index.js +32 -8
  184. package/esm/public/cli/commands/init-empty-repo.js +2 -2
  185. package/esm/public/cli/commands/insert-node-at-path.js +2 -2
  186. package/esm/public/cli/commands/invite.js +24 -6
  187. package/esm/public/cli/commands/invites-module.js +22 -0
  188. package/esm/public/cli/commands/levels-module.js +46 -0
  189. package/esm/public/cli/commands/limits-module.js +30 -0
  190. package/esm/public/cli/commands/membership-types-module.js +6 -0
  191. package/esm/public/cli/commands/memberships-module.js +56 -0
  192. package/esm/public/cli/commands/node-type-registry.js +10 -2
  193. package/esm/public/cli/commands/object.js +12 -4
  194. package/esm/public/cli/commands/one-time-token.js +2 -2
  195. package/esm/public/cli/commands/org-admin-grant.js +6 -2
  196. package/esm/public/cli/commands/org-chart-edge-grant.js +10 -2
  197. package/esm/public/cli/commands/org-chart-edge.js +6 -0
  198. package/esm/public/cli/commands/org-claimed-invite.js +8 -2
  199. package/esm/public/cli/commands/org-grant.js +8 -2
  200. package/esm/public/cli/commands/org-invite.js +26 -6
  201. package/esm/public/cli/commands/org-limit-default.js +2 -0
  202. package/esm/public/cli/commands/org-limit.js +6 -0
  203. package/esm/public/cli/commands/org-member.js +4 -2
  204. package/esm/public/cli/commands/org-membership-default.js +16 -6
  205. package/esm/public/cli/commands/org-membership.js +34 -12
  206. package/esm/public/cli/commands/org-owner-grant.js +6 -2
  207. package/esm/public/cli/commands/org-permission-default.js +2 -0
  208. package/esm/public/cli/commands/org-permission.js +8 -0
  209. package/esm/public/cli/commands/permissions-module.js +28 -0
  210. package/esm/public/cli/commands/phone-number.js +10 -4
  211. package/esm/public/cli/commands/phone-numbers-module.js +8 -0
  212. package/esm/public/cli/commands/policy.js +34 -8
  213. package/esm/public/cli/commands/primary-key-constraint.js +18 -2
  214. package/esm/public/cli/commands/profiles-module.js +30 -0
  215. package/esm/public/cli/commands/provision-database-with-user.js +2 -2
  216. package/esm/public/cli/commands/ref.js +2 -0
  217. package/esm/public/cli/commands/relation-provision.js +58 -12
  218. package/esm/public/cli/commands/remove-node-at-path.js +2 -2
  219. package/esm/public/cli/commands/reset-password.js +2 -2
  220. package/esm/public/cli/commands/rls-module.js +20 -0
  221. package/esm/public/cli/commands/schema-grant.js +2 -0
  222. package/esm/public/cli/commands/schema.js +20 -4
  223. package/esm/public/cli/commands/secrets-module.js +6 -0
  224. package/esm/public/cli/commands/secure-table-provision.js +40 -10
  225. package/esm/public/cli/commands/send-account-deletion-email.js +2 -2
  226. package/esm/public/cli/commands/send-verification-email.js +2 -2
  227. package/esm/public/cli/commands/sessions-module.js +18 -0
  228. package/esm/public/cli/commands/set-and-commit.js +2 -2
  229. package/esm/public/cli/commands/set-data-at-path.js +2 -2
  230. package/esm/public/cli/commands/set-field-order.js +2 -2
  231. package/esm/public/cli/commands/set-password.js +2 -2
  232. package/esm/public/cli/commands/set-props-and-commit.js +2 -2
  233. package/esm/public/cli/commands/sign-in-one-time-token.js +2 -2
  234. package/esm/public/cli/commands/sign-in.js +2 -2
  235. package/esm/public/cli/commands/sign-out.js +2 -2
  236. package/esm/public/cli/commands/sign-up.js +2 -2
  237. package/esm/public/cli/commands/site-metadatum.js +6 -0
  238. package/esm/public/cli/commands/site-module.js +2 -2
  239. package/esm/public/cli/commands/site-theme.js +2 -2
  240. package/esm/public/cli/commands/site.js +14 -0
  241. package/esm/public/cli/commands/sql-migration.js +12 -1
  242. package/esm/public/cli/commands/store.js +2 -0
  243. package/esm/public/cli/commands/submit-invite-code.js +2 -2
  244. package/esm/public/cli/commands/submit-org-invite-code.js +2 -2
  245. package/esm/public/cli/commands/table-grant.js +8 -2
  246. package/esm/public/cli/commands/table-module.js +16 -4
  247. package/esm/public/cli/commands/table-template-module.js +12 -2
  248. package/esm/public/cli/commands/table.js +36 -8
  249. package/esm/public/cli/commands/trigger-function.js +2 -0
  250. package/esm/public/cli/commands/trigger.js +18 -2
  251. package/esm/public/cli/commands/unique-constraint.js +20 -2
  252. package/esm/public/cli/commands/update-node-at-path.js +2 -2
  253. package/esm/public/cli/commands/user-auth-module.js +48 -0
  254. package/esm/public/cli/commands/user.js +10 -0
  255. package/esm/public/cli/commands/users-module.js +10 -0
  256. package/esm/public/cli/commands/uuid-module.js +4 -0
  257. package/esm/public/cli/commands/verify-email.js +2 -2
  258. package/esm/public/cli/commands/verify-password.js +2 -2
  259. package/esm/public/cli/commands/verify-totp.js +2 -2
  260. package/esm/public/cli/commands/view-grant.js +10 -4
  261. package/esm/public/cli/commands/view-rule.js +4 -0
  262. package/esm/public/cli/commands/view-table.js +2 -0
  263. package/esm/public/cli/commands/view.js +34 -10
  264. package/esm/public/cli/index.js +2 -2
  265. package/esm/public/cli/utils.d.ts +13 -0
  266. package/esm/public/cli/utils.js +24 -0
  267. package/objects/cli/commands/commit.js +12 -0
  268. package/objects/cli/commands/freeze-objects.js +1 -1
  269. package/objects/cli/commands/get-all-record.js +1 -1
  270. package/objects/cli/commands/init-empty-repo.js +1 -1
  271. package/objects/cli/commands/insert-node-at-path.js +1 -1
  272. package/objects/cli/commands/object.js +12 -4
  273. package/objects/cli/commands/ref.js +2 -0
  274. package/objects/cli/commands/remove-node-at-path.js +1 -1
  275. package/objects/cli/commands/set-and-commit.js +1 -1
  276. package/objects/cli/commands/set-data-at-path.js +1 -1
  277. package/objects/cli/commands/set-props-and-commit.js +1 -1
  278. package/objects/cli/commands/store.js +2 -0
  279. package/objects/cli/commands/update-node-at-path.js +1 -1
  280. package/objects/cli/index.js +2 -2
  281. package/objects/cli/utils.d.ts +13 -0
  282. package/objects/cli/utils.js +25 -0
  283. package/package.json +6 -6
  284. package/public/cli/commands/api-module.js +2 -2
  285. package/public/cli/commands/api.js +10 -2
  286. package/public/cli/commands/app-achievement.js +4 -0
  287. package/public/cli/commands/app-admin-grant.js +6 -2
  288. package/public/cli/commands/app-grant.js +8 -2
  289. package/public/cli/commands/app-level-requirement.js +6 -0
  290. package/public/cli/commands/app-level.js +6 -0
  291. package/public/cli/commands/app-limit-default.js +2 -0
  292. package/public/cli/commands/app-limit.js +6 -0
  293. package/public/cli/commands/app-membership-default.js +12 -4
  294. package/public/cli/commands/app-membership.js +38 -14
  295. package/public/cli/commands/app-owner-grant.js +6 -2
  296. package/public/cli/commands/app-permission-default.js +2 -0
  297. package/public/cli/commands/app-permission.js +8 -0
  298. package/public/cli/commands/app-step.js +4 -0
  299. package/public/cli/commands/app.js +12 -0
  300. package/public/cli/commands/apply-rls.js +1 -1
  301. package/public/cli/commands/ast-migration.js +15 -4
  302. package/public/cli/commands/audit-log.js +10 -2
  303. package/public/cli/commands/bootstrap-user.js +1 -1
  304. package/public/cli/commands/check-constraint.js +22 -4
  305. package/public/cli/commands/check-password.js +1 -1
  306. package/public/cli/commands/claimed-invite.js +8 -2
  307. package/public/cli/commands/commit.js +12 -0
  308. package/public/cli/commands/confirm-delete-account.js +1 -1
  309. package/public/cli/commands/connected-account.js +8 -4
  310. package/public/cli/commands/connected-accounts-module.js +8 -0
  311. package/public/cli/commands/create-user-database.js +1 -1
  312. package/public/cli/commands/crypto-address.js +10 -4
  313. package/public/cli/commands/crypto-addresses-module.js +10 -0
  314. package/public/cli/commands/crypto-auth-module.js +22 -0
  315. package/public/cli/commands/database-provision-module.js +20 -4
  316. package/public/cli/commands/database.js +10 -0
  317. package/public/cli/commands/default-privilege.js +6 -2
  318. package/public/cli/commands/denormalized-table-field.js +16 -4
  319. package/public/cli/commands/domain.js +8 -0
  320. package/public/cli/commands/email.js +10 -4
  321. package/public/cli/commands/emails-module.js +8 -0
  322. package/public/cli/commands/encrypted-secrets-module.js +6 -0
  323. package/public/cli/commands/extend-token-expires.js +1 -1
  324. package/public/cli/commands/field-module.js +14 -2
  325. package/public/cli/commands/field.js +48 -12
  326. package/public/cli/commands/foreign-key-constraint.js +24 -2
  327. package/public/cli/commands/forgot-password.js +1 -1
  328. package/public/cli/commands/freeze-objects.js +1 -1
  329. package/public/cli/commands/full-text-search.js +2 -0
  330. package/public/cli/commands/get-all-record.js +1 -1
  331. package/public/cli/commands/hierarchy-module.js +30 -0
  332. package/public/cli/commands/index.js +32 -8
  333. package/public/cli/commands/init-empty-repo.js +1 -1
  334. package/public/cli/commands/insert-node-at-path.js +1 -1
  335. package/public/cli/commands/invite.js +24 -6
  336. package/public/cli/commands/invites-module.js +22 -0
  337. package/public/cli/commands/levels-module.js +46 -0
  338. package/public/cli/commands/limits-module.js +30 -0
  339. package/public/cli/commands/membership-types-module.js +6 -0
  340. package/public/cli/commands/memberships-module.js +56 -0
  341. package/public/cli/commands/node-type-registry.js +10 -2
  342. package/public/cli/commands/object.js +12 -4
  343. package/public/cli/commands/one-time-token.js +1 -1
  344. package/public/cli/commands/org-admin-grant.js +6 -2
  345. package/public/cli/commands/org-chart-edge-grant.js +10 -2
  346. package/public/cli/commands/org-chart-edge.js +6 -0
  347. package/public/cli/commands/org-claimed-invite.js +8 -2
  348. package/public/cli/commands/org-grant.js +8 -2
  349. package/public/cli/commands/org-invite.js +26 -6
  350. package/public/cli/commands/org-limit-default.js +2 -0
  351. package/public/cli/commands/org-limit.js +6 -0
  352. package/public/cli/commands/org-member.js +4 -2
  353. package/public/cli/commands/org-membership-default.js +16 -6
  354. package/public/cli/commands/org-membership.js +34 -12
  355. package/public/cli/commands/org-owner-grant.js +6 -2
  356. package/public/cli/commands/org-permission-default.js +2 -0
  357. package/public/cli/commands/org-permission.js +8 -0
  358. package/public/cli/commands/permissions-module.js +28 -0
  359. package/public/cli/commands/phone-number.js +10 -4
  360. package/public/cli/commands/phone-numbers-module.js +8 -0
  361. package/public/cli/commands/policy.js +34 -8
  362. package/public/cli/commands/primary-key-constraint.js +18 -2
  363. package/public/cli/commands/profiles-module.js +30 -0
  364. package/public/cli/commands/provision-database-with-user.js +1 -1
  365. package/public/cli/commands/ref.js +2 -0
  366. package/public/cli/commands/relation-provision.js +58 -12
  367. package/public/cli/commands/remove-node-at-path.js +1 -1
  368. package/public/cli/commands/reset-password.js +1 -1
  369. package/public/cli/commands/rls-module.js +20 -0
  370. package/public/cli/commands/schema-grant.js +2 -0
  371. package/public/cli/commands/schema.js +20 -4
  372. package/public/cli/commands/secrets-module.js +6 -0
  373. package/public/cli/commands/secure-table-provision.js +40 -10
  374. package/public/cli/commands/send-account-deletion-email.js +1 -1
  375. package/public/cli/commands/send-verification-email.js +1 -1
  376. package/public/cli/commands/sessions-module.js +18 -0
  377. package/public/cli/commands/set-and-commit.js +1 -1
  378. package/public/cli/commands/set-data-at-path.js +1 -1
  379. package/public/cli/commands/set-field-order.js +1 -1
  380. package/public/cli/commands/set-password.js +1 -1
  381. package/public/cli/commands/set-props-and-commit.js +1 -1
  382. package/public/cli/commands/sign-in-one-time-token.js +1 -1
  383. package/public/cli/commands/sign-in.js +1 -1
  384. package/public/cli/commands/sign-out.js +1 -1
  385. package/public/cli/commands/sign-up.js +1 -1
  386. package/public/cli/commands/site-metadatum.js +6 -0
  387. package/public/cli/commands/site-module.js +2 -2
  388. package/public/cli/commands/site-theme.js +2 -2
  389. package/public/cli/commands/site.js +14 -0
  390. package/public/cli/commands/sql-migration.js +12 -1
  391. package/public/cli/commands/store.js +2 -0
  392. package/public/cli/commands/submit-invite-code.js +1 -1
  393. package/public/cli/commands/submit-org-invite-code.js +1 -1
  394. package/public/cli/commands/table-grant.js +8 -2
  395. package/public/cli/commands/table-module.js +16 -4
  396. package/public/cli/commands/table-template-module.js +12 -2
  397. package/public/cli/commands/table.js +36 -8
  398. package/public/cli/commands/trigger-function.js +2 -0
  399. package/public/cli/commands/trigger.js +18 -2
  400. package/public/cli/commands/unique-constraint.js +20 -2
  401. package/public/cli/commands/update-node-at-path.js +1 -1
  402. package/public/cli/commands/user-auth-module.js +48 -0
  403. package/public/cli/commands/user.js +10 -0
  404. package/public/cli/commands/users-module.js +10 -0
  405. package/public/cli/commands/uuid-module.js +4 -0
  406. package/public/cli/commands/verify-email.js +1 -1
  407. package/public/cli/commands/verify-password.js +1 -1
  408. package/public/cli/commands/verify-totp.js +1 -1
  409. package/public/cli/commands/view-grant.js +10 -4
  410. package/public/cli/commands/view-rule.js +4 -0
  411. package/public/cli/commands/view-table.js +2 -0
  412. package/public/cli/commands/view.js +34 -10
  413. package/public/cli/index.js +2 -2
  414. package/public/cli/utils.d.ts +13 -0
  415. package/public/cli/utils.js +25 -0
@@ -159,90 +159,105 @@ async function handleCreate(argv, prompter) {
159
159
  name: 'schemaId',
160
160
  message: 'schemaId',
161
161
  required: false,
162
+ skipPrompt: true,
162
163
  },
163
164
  {
164
165
  type: 'text',
165
166
  name: 'tableId',
166
167
  message: 'tableId',
167
168
  required: false,
169
+ skipPrompt: true,
168
170
  },
169
171
  {
170
172
  type: 'text',
171
173
  name: 'tableName',
172
174
  message: 'tableName',
173
175
  required: false,
176
+ skipPrompt: true,
174
177
  },
175
178
  {
176
179
  type: 'text',
177
180
  name: 'nodeType',
178
181
  message: 'nodeType',
179
182
  required: false,
183
+ skipPrompt: true,
180
184
  },
181
185
  {
182
- type: 'text',
186
+ type: 'boolean',
183
187
  name: 'useRls',
184
188
  message: 'useRls',
185
189
  required: false,
190
+ skipPrompt: true,
186
191
  },
187
192
  {
188
- type: 'text',
193
+ type: 'json',
189
194
  name: 'nodeData',
190
195
  message: 'nodeData',
191
196
  required: false,
197
+ skipPrompt: true,
192
198
  },
193
199
  {
194
200
  type: 'text',
195
201
  name: 'grantRoles',
196
202
  message: 'grantRoles',
197
203
  required: false,
204
+ skipPrompt: true,
198
205
  },
199
206
  {
200
- type: 'text',
207
+ type: 'json',
201
208
  name: 'grantPrivileges',
202
209
  message: 'grantPrivileges',
203
210
  required: false,
211
+ skipPrompt: true,
204
212
  },
205
213
  {
206
214
  type: 'text',
207
215
  name: 'policyType',
208
216
  message: 'policyType',
209
217
  required: false,
218
+ skipPrompt: true,
210
219
  },
211
220
  {
212
221
  type: 'text',
213
222
  name: 'policyPrivileges',
214
223
  message: 'policyPrivileges',
215
224
  required: false,
225
+ skipPrompt: true,
216
226
  },
217
227
  {
218
228
  type: 'text',
219
229
  name: 'policyRole',
220
230
  message: 'policyRole',
221
231
  required: false,
232
+ skipPrompt: true,
222
233
  },
223
234
  {
224
- type: 'text',
235
+ type: 'boolean',
225
236
  name: 'policyPermissive',
226
237
  message: 'policyPermissive',
227
238
  required: false,
239
+ skipPrompt: true,
228
240
  },
229
241
  {
230
242
  type: 'text',
231
243
  name: 'policyName',
232
244
  message: 'policyName',
233
245
  required: false,
246
+ skipPrompt: true,
234
247
  },
235
248
  {
236
- type: 'text',
249
+ type: 'json',
237
250
  name: 'policyData',
238
251
  message: 'policyData',
239
252
  required: false,
253
+ skipPrompt: true,
240
254
  },
241
255
  {
242
256
  type: 'text',
243
257
  name: 'outFields',
244
258
  message: 'outFields',
245
259
  required: false,
260
+ skipPrompt: true,
246
261
  },
247
262
  ]);
248
263
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -319,90 +334,105 @@ async function handleUpdate(argv, prompter) {
319
334
  name: 'schemaId',
320
335
  message: 'schemaId',
321
336
  required: false,
337
+ skipPrompt: true,
322
338
  },
323
339
  {
324
340
  type: 'text',
325
341
  name: 'tableId',
326
342
  message: 'tableId',
327
343
  required: false,
344
+ skipPrompt: true,
328
345
  },
329
346
  {
330
347
  type: 'text',
331
348
  name: 'tableName',
332
349
  message: 'tableName',
333
350
  required: false,
351
+ skipPrompt: true,
334
352
  },
335
353
  {
336
354
  type: 'text',
337
355
  name: 'nodeType',
338
356
  message: 'nodeType',
339
357
  required: false,
358
+ skipPrompt: true,
340
359
  },
341
360
  {
342
- type: 'text',
361
+ type: 'boolean',
343
362
  name: 'useRls',
344
363
  message: 'useRls',
345
364
  required: false,
365
+ skipPrompt: true,
346
366
  },
347
367
  {
348
- type: 'text',
368
+ type: 'json',
349
369
  name: 'nodeData',
350
370
  message: 'nodeData',
351
371
  required: false,
372
+ skipPrompt: true,
352
373
  },
353
374
  {
354
375
  type: 'text',
355
376
  name: 'grantRoles',
356
377
  message: 'grantRoles',
357
378
  required: false,
379
+ skipPrompt: true,
358
380
  },
359
381
  {
360
- type: 'text',
382
+ type: 'json',
361
383
  name: 'grantPrivileges',
362
384
  message: 'grantPrivileges',
363
385
  required: false,
386
+ skipPrompt: true,
364
387
  },
365
388
  {
366
389
  type: 'text',
367
390
  name: 'policyType',
368
391
  message: 'policyType',
369
392
  required: false,
393
+ skipPrompt: true,
370
394
  },
371
395
  {
372
396
  type: 'text',
373
397
  name: 'policyPrivileges',
374
398
  message: 'policyPrivileges',
375
399
  required: false,
400
+ skipPrompt: true,
376
401
  },
377
402
  {
378
403
  type: 'text',
379
404
  name: 'policyRole',
380
405
  message: 'policyRole',
381
406
  required: false,
407
+ skipPrompt: true,
382
408
  },
383
409
  {
384
- type: 'text',
410
+ type: 'boolean',
385
411
  name: 'policyPermissive',
386
412
  message: 'policyPermissive',
387
413
  required: false,
414
+ skipPrompt: true,
388
415
  },
389
416
  {
390
417
  type: 'text',
391
418
  name: 'policyName',
392
419
  message: 'policyName',
393
420
  required: false,
421
+ skipPrompt: true,
394
422
  },
395
423
  {
396
- type: 'text',
424
+ type: 'json',
397
425
  name: 'policyData',
398
426
  message: 'policyData',
399
427
  required: false,
428
+ skipPrompt: true,
400
429
  },
401
430
  {
402
431
  type: 'text',
403
432
  name: 'outFields',
404
433
  message: 'outFields',
405
434
  required: false,
435
+ skipPrompt: true,
406
436
  },
407
437
  ]);
408
438
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .sendAccountDeletionEmail(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .sendVerificationEmail(parsedAnswers, {
@@ -141,54 +141,63 @@ async function handleCreate(argv, prompter) {
141
141
  name: 'schemaId',
142
142
  message: 'schemaId',
143
143
  required: false,
144
+ skipPrompt: true,
144
145
  },
145
146
  {
146
147
  type: 'text',
147
148
  name: 'sessionsTableId',
148
149
  message: 'sessionsTableId',
149
150
  required: false,
151
+ skipPrompt: true,
150
152
  },
151
153
  {
152
154
  type: 'text',
153
155
  name: 'sessionCredentialsTableId',
154
156
  message: 'sessionCredentialsTableId',
155
157
  required: false,
158
+ skipPrompt: true,
156
159
  },
157
160
  {
158
161
  type: 'text',
159
162
  name: 'authSettingsTableId',
160
163
  message: 'authSettingsTableId',
161
164
  required: false,
165
+ skipPrompt: true,
162
166
  },
163
167
  {
164
168
  type: 'text',
165
169
  name: 'usersTableId',
166
170
  message: 'usersTableId',
167
171
  required: false,
172
+ skipPrompt: true,
168
173
  },
169
174
  {
170
175
  type: 'text',
171
176
  name: 'sessionsDefaultExpiration',
172
177
  message: 'sessionsDefaultExpiration',
173
178
  required: false,
179
+ skipPrompt: true,
174
180
  },
175
181
  {
176
182
  type: 'text',
177
183
  name: 'sessionsTable',
178
184
  message: 'sessionsTable',
179
185
  required: false,
186
+ skipPrompt: true,
180
187
  },
181
188
  {
182
189
  type: 'text',
183
190
  name: 'sessionCredentialsTable',
184
191
  message: 'sessionCredentialsTable',
185
192
  required: false,
193
+ skipPrompt: true,
186
194
  },
187
195
  {
188
196
  type: 'text',
189
197
  name: 'authSettingsTable',
190
198
  message: 'authSettingsTable',
191
199
  required: false,
200
+ skipPrompt: true,
192
201
  },
193
202
  ]);
194
203
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -253,54 +262,63 @@ async function handleUpdate(argv, prompter) {
253
262
  name: 'schemaId',
254
263
  message: 'schemaId',
255
264
  required: false,
265
+ skipPrompt: true,
256
266
  },
257
267
  {
258
268
  type: 'text',
259
269
  name: 'sessionsTableId',
260
270
  message: 'sessionsTableId',
261
271
  required: false,
272
+ skipPrompt: true,
262
273
  },
263
274
  {
264
275
  type: 'text',
265
276
  name: 'sessionCredentialsTableId',
266
277
  message: 'sessionCredentialsTableId',
267
278
  required: false,
279
+ skipPrompt: true,
268
280
  },
269
281
  {
270
282
  type: 'text',
271
283
  name: 'authSettingsTableId',
272
284
  message: 'authSettingsTableId',
273
285
  required: false,
286
+ skipPrompt: true,
274
287
  },
275
288
  {
276
289
  type: 'text',
277
290
  name: 'usersTableId',
278
291
  message: 'usersTableId',
279
292
  required: false,
293
+ skipPrompt: true,
280
294
  },
281
295
  {
282
296
  type: 'text',
283
297
  name: 'sessionsDefaultExpiration',
284
298
  message: 'sessionsDefaultExpiration',
285
299
  required: false,
300
+ skipPrompt: true,
286
301
  },
287
302
  {
288
303
  type: 'text',
289
304
  name: 'sessionsTable',
290
305
  message: 'sessionsTable',
291
306
  required: false,
307
+ skipPrompt: true,
292
308
  },
293
309
  {
294
310
  type: 'text',
295
311
  name: 'sessionCredentialsTable',
296
312
  message: 'sessionCredentialsTable',
297
313
  required: false,
314
+ skipPrompt: true,
298
315
  },
299
316
  {
300
317
  type: 'text',
301
318
  name: 'authSettingsTable',
302
319
  message: 'authSettingsTable',
303
320
  required: false,
321
+ skipPrompt: true,
304
322
  },
305
323
  ]);
306
324
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .setAndCommit(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .setDataAtPath(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .setFieldOrder(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .setPassword(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .setPropsAndCommit(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .signInOneTimeToken(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .signIn(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .signOut(parsedAnswers, {
@@ -17,7 +17,7 @@ exports.default = async (argv, prompter, _options) => {
17
17
  },
18
18
  ]);
19
19
  const client = (0, executor_1.getClient)();
20
- const parsedAnswers = (0, utils_1.parseMutationInput)(answers);
20
+ const parsedAnswers = (0, utils_1.unflattenDotNotation)(answers);
21
21
  const selectFields = (0, utils_1.buildSelectFromPaths)(argv.select ?? 'clientMutationId');
22
22
  const result = await client.mutation
23
23
  .signUp(parsedAnswers, {
@@ -132,18 +132,21 @@ async function handleCreate(argv, prompter) {
132
132
  name: 'title',
133
133
  message: 'title',
134
134
  required: false,
135
+ skipPrompt: true,
135
136
  },
136
137
  {
137
138
  type: 'text',
138
139
  name: 'description',
139
140
  message: 'description',
140
141
  required: false,
142
+ skipPrompt: true,
141
143
  },
142
144
  {
143
145
  type: 'text',
144
146
  name: 'ogImage',
145
147
  message: 'ogImage',
146
148
  required: false,
149
+ skipPrompt: true,
147
150
  },
148
151
  ]);
149
152
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -204,18 +207,21 @@ async function handleUpdate(argv, prompter) {
204
207
  name: 'title',
205
208
  message: 'title',
206
209
  required: false,
210
+ skipPrompt: true,
207
211
  },
208
212
  {
209
213
  type: 'text',
210
214
  name: 'description',
211
215
  message: 'description',
212
216
  required: false,
217
+ skipPrompt: true,
213
218
  },
214
219
  {
215
220
  type: 'text',
216
221
  name: 'ogImage',
217
222
  message: 'ogImage',
218
223
  required: false,
224
+ skipPrompt: true,
219
225
  },
220
226
  ]);
221
227
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -131,7 +131,7 @@ async function handleCreate(argv, prompter) {
131
131
  required: true,
132
132
  },
133
133
  {
134
- type: 'text',
134
+ type: 'json',
135
135
  name: 'data',
136
136
  message: 'data',
137
137
  required: true,
@@ -195,7 +195,7 @@ async function handleUpdate(argv, prompter) {
195
195
  required: false,
196
196
  },
197
197
  {
198
- type: 'text',
198
+ type: 'json',
199
199
  name: 'data',
200
200
  message: 'data',
201
201
  required: false,
@@ -122,7 +122,7 @@ async function handleCreate(argv, prompter) {
122
122
  required: true,
123
123
  },
124
124
  {
125
- type: 'text',
125
+ type: 'json',
126
126
  name: 'theme',
127
127
  message: 'theme',
128
128
  required: true,
@@ -178,7 +178,7 @@ async function handleUpdate(argv, prompter) {
178
178
  required: false,
179
179
  },
180
180
  {
181
- type: 'text',
181
+ type: 'json',
182
182
  name: 'theme',
183
183
  message: 'theme',
184
184
  required: false,
@@ -135,42 +135,49 @@ async function handleCreate(argv, prompter) {
135
135
  name: 'title',
136
136
  message: 'title',
137
137
  required: false,
138
+ skipPrompt: true,
138
139
  },
139
140
  {
140
141
  type: 'text',
141
142
  name: 'description',
142
143
  message: 'description',
143
144
  required: false,
145
+ skipPrompt: true,
144
146
  },
145
147
  {
146
148
  type: 'text',
147
149
  name: 'ogImage',
148
150
  message: 'ogImage',
149
151
  required: false,
152
+ skipPrompt: true,
150
153
  },
151
154
  {
152
155
  type: 'text',
153
156
  name: 'favicon',
154
157
  message: 'favicon',
155
158
  required: false,
159
+ skipPrompt: true,
156
160
  },
157
161
  {
158
162
  type: 'text',
159
163
  name: 'appleTouchIcon',
160
164
  message: 'appleTouchIcon',
161
165
  required: false,
166
+ skipPrompt: true,
162
167
  },
163
168
  {
164
169
  type: 'text',
165
170
  name: 'logo',
166
171
  message: 'logo',
167
172
  required: false,
173
+ skipPrompt: true,
168
174
  },
169
175
  {
170
176
  type: 'text',
171
177
  name: 'dbname',
172
178
  message: 'dbname',
173
179
  required: false,
180
+ skipPrompt: true,
174
181
  },
175
182
  ]);
176
183
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);
@@ -231,42 +238,49 @@ async function handleUpdate(argv, prompter) {
231
238
  name: 'title',
232
239
  message: 'title',
233
240
  required: false,
241
+ skipPrompt: true,
234
242
  },
235
243
  {
236
244
  type: 'text',
237
245
  name: 'description',
238
246
  message: 'description',
239
247
  required: false,
248
+ skipPrompt: true,
240
249
  },
241
250
  {
242
251
  type: 'text',
243
252
  name: 'ogImage',
244
253
  message: 'ogImage',
245
254
  required: false,
255
+ skipPrompt: true,
246
256
  },
247
257
  {
248
258
  type: 'text',
249
259
  name: 'favicon',
250
260
  message: 'favicon',
251
261
  required: false,
262
+ skipPrompt: true,
252
263
  },
253
264
  {
254
265
  type: 'text',
255
266
  name: 'appleTouchIcon',
256
267
  message: 'appleTouchIcon',
257
268
  required: false,
269
+ skipPrompt: true,
258
270
  },
259
271
  {
260
272
  type: 'text',
261
273
  name: 'logo',
262
274
  message: 'logo',
263
275
  required: false,
276
+ skipPrompt: true,
264
277
  },
265
278
  {
266
279
  type: 'text',
267
280
  name: 'dbname',
268
281
  message: 'dbname',
269
282
  required: false,
283
+ skipPrompt: true,
270
284
  },
271
285
  ]);
272
286
  const answers = (0, utils_1.coerceAnswers)(rawAnswers, fieldSchema);