@constructive-sdk/cli 0.12.7 → 0.12.8

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 (333) hide show
  1. package/admin/cli/commands/app-achievement.js +38 -15
  2. package/admin/cli/commands/app-admin-grant.js +38 -15
  3. package/admin/cli/commands/app-grant.js +40 -16
  4. package/admin/cli/commands/app-level-requirement.js +42 -17
  5. package/admin/cli/commands/app-level.js +40 -16
  6. package/admin/cli/commands/app-limit-default.js +32 -12
  7. package/admin/cli/commands/app-limit.js +36 -14
  8. package/admin/cli/commands/app-membership-default.js +40 -16
  9. package/admin/cli/commands/app-membership.js +58 -25
  10. package/admin/cli/commands/app-owner-grant.js +38 -15
  11. package/admin/cli/commands/app-permission-default.js +30 -11
  12. package/admin/cli/commands/app-permission.js +36 -14
  13. package/admin/cli/commands/app-step.js +38 -15
  14. package/admin/cli/commands/claimed-invite.js +38 -15
  15. package/admin/cli/commands/invite.js +50 -21
  16. package/admin/cli/commands/membership-type.js +34 -13
  17. package/admin/cli/commands/org-admin-grant.js +40 -16
  18. package/admin/cli/commands/org-chart-edge-grant.js +44 -18
  19. package/admin/cli/commands/org-chart-edge.js +42 -17
  20. package/admin/cli/commands/org-claimed-invite.js +40 -16
  21. package/admin/cli/commands/org-get-managers-record.js +30 -11
  22. package/admin/cli/commands/org-get-subordinates-record.js +30 -11
  23. package/admin/cli/commands/org-grant.js +42 -17
  24. package/admin/cli/commands/org-invite.js +54 -23
  25. package/admin/cli/commands/org-limit-default.js +32 -12
  26. package/admin/cli/commands/org-limit.js +38 -15
  27. package/admin/cli/commands/org-member.js +34 -13
  28. package/admin/cli/commands/org-membership-default.js +44 -18
  29. package/admin/cli/commands/org-membership.js +58 -25
  30. package/admin/cli/commands/org-owner-grant.js +40 -16
  31. package/admin/cli/commands/org-permission-default.js +32 -12
  32. package/admin/cli/commands/org-permission.js +36 -14
  33. package/admin/cli/utils.d.ts +38 -0
  34. package/admin/cli/utils.js +96 -0
  35. package/auth/cli/commands/audit-log.js +42 -17
  36. package/auth/cli/commands/connected-account.js +42 -17
  37. package/auth/cli/commands/crypto-address.js +40 -16
  38. package/auth/cli/commands/email.js +40 -16
  39. package/auth/cli/commands/phone-number.js +42 -17
  40. package/auth/cli/commands/role-type.js +30 -11
  41. package/auth/cli/commands/user.js +80 -16
  42. package/auth/cli/utils.d.ts +38 -0
  43. package/auth/cli/utils.js +96 -0
  44. package/esm/admin/cli/commands/app-achievement.js +39 -16
  45. package/esm/admin/cli/commands/app-admin-grant.js +39 -16
  46. package/esm/admin/cli/commands/app-grant.js +41 -17
  47. package/esm/admin/cli/commands/app-level-requirement.js +43 -18
  48. package/esm/admin/cli/commands/app-level.js +41 -17
  49. package/esm/admin/cli/commands/app-limit-default.js +33 -13
  50. package/esm/admin/cli/commands/app-limit.js +37 -15
  51. package/esm/admin/cli/commands/app-membership-default.js +41 -17
  52. package/esm/admin/cli/commands/app-membership.js +59 -26
  53. package/esm/admin/cli/commands/app-owner-grant.js +39 -16
  54. package/esm/admin/cli/commands/app-permission-default.js +31 -12
  55. package/esm/admin/cli/commands/app-permission.js +37 -15
  56. package/esm/admin/cli/commands/app-step.js +39 -16
  57. package/esm/admin/cli/commands/claimed-invite.js +39 -16
  58. package/esm/admin/cli/commands/invite.js +51 -22
  59. package/esm/admin/cli/commands/membership-type.js +35 -14
  60. package/esm/admin/cli/commands/org-admin-grant.js +41 -17
  61. package/esm/admin/cli/commands/org-chart-edge-grant.js +45 -19
  62. package/esm/admin/cli/commands/org-chart-edge.js +43 -18
  63. package/esm/admin/cli/commands/org-claimed-invite.js +41 -17
  64. package/esm/admin/cli/commands/org-get-managers-record.js +31 -12
  65. package/esm/admin/cli/commands/org-get-subordinates-record.js +31 -12
  66. package/esm/admin/cli/commands/org-grant.js +43 -18
  67. package/esm/admin/cli/commands/org-invite.js +55 -24
  68. package/esm/admin/cli/commands/org-limit-default.js +33 -13
  69. package/esm/admin/cli/commands/org-limit.js +39 -16
  70. package/esm/admin/cli/commands/org-member.js +35 -14
  71. package/esm/admin/cli/commands/org-membership-default.js +45 -19
  72. package/esm/admin/cli/commands/org-membership.js +59 -26
  73. package/esm/admin/cli/commands/org-owner-grant.js +41 -17
  74. package/esm/admin/cli/commands/org-permission-default.js +33 -13
  75. package/esm/admin/cli/commands/org-permission.js +37 -15
  76. package/esm/admin/cli/utils.d.ts +38 -0
  77. package/esm/admin/cli/utils.js +90 -0
  78. package/esm/auth/cli/commands/audit-log.js +43 -18
  79. package/esm/auth/cli/commands/connected-account.js +43 -18
  80. package/esm/auth/cli/commands/crypto-address.js +41 -17
  81. package/esm/auth/cli/commands/email.js +41 -17
  82. package/esm/auth/cli/commands/phone-number.js +43 -18
  83. package/esm/auth/cli/commands/role-type.js +31 -12
  84. package/esm/auth/cli/commands/user.js +81 -17
  85. package/esm/auth/cli/utils.d.ts +38 -0
  86. package/esm/auth/cli/utils.js +90 -0
  87. package/esm/objects/cli/commands/commit.js +45 -19
  88. package/esm/objects/cli/commands/get-all-record.js +31 -12
  89. package/esm/objects/cli/commands/object.js +41 -17
  90. package/esm/objects/cli/commands/ref.js +37 -15
  91. package/esm/objects/cli/commands/store.js +37 -15
  92. package/esm/objects/cli/utils.d.ts +38 -0
  93. package/esm/objects/cli/utils.js +90 -0
  94. package/esm/public/cli/commands/api-module.js +37 -15
  95. package/esm/public/cli/commands/api-schema.js +35 -14
  96. package/esm/public/cli/commands/api.js +41 -17
  97. package/esm/public/cli/commands/app-achievement.js +39 -16
  98. package/esm/public/cli/commands/app-admin-grant.js +39 -16
  99. package/esm/public/cli/commands/app-grant.js +41 -17
  100. package/esm/public/cli/commands/app-level-requirement.js +43 -18
  101. package/esm/public/cli/commands/app-level.js +41 -17
  102. package/esm/public/cli/commands/app-limit-default.js +33 -13
  103. package/esm/public/cli/commands/app-limit.js +37 -15
  104. package/esm/public/cli/commands/app-membership-default.js +41 -17
  105. package/esm/public/cli/commands/app-membership.js +59 -26
  106. package/esm/public/cli/commands/app-owner-grant.js +39 -16
  107. package/esm/public/cli/commands/app-permission-default.js +31 -12
  108. package/esm/public/cli/commands/app-permission.js +37 -15
  109. package/esm/public/cli/commands/app-step.js +39 -16
  110. package/esm/public/cli/commands/app.js +45 -19
  111. package/esm/public/cli/commands/ast-migration.js +53 -23
  112. package/esm/public/cli/commands/audit-log.js +43 -18
  113. package/esm/public/cli/commands/blueprint-template.js +67 -30
  114. package/esm/public/cli/commands/blueprint.js +61 -27
  115. package/esm/public/cli/commands/check-constraint.js +55 -24
  116. package/esm/public/cli/commands/claimed-invite.js +39 -16
  117. package/esm/public/cli/commands/commit.js +45 -19
  118. package/esm/public/cli/commands/connected-account.js +43 -18
  119. package/esm/public/cli/commands/connected-accounts-module.js +41 -17
  120. package/esm/public/cli/commands/crypto-address.js +41 -17
  121. package/esm/public/cli/commands/crypto-addresses-module.js +43 -18
  122. package/esm/public/cli/commands/crypto-auth-module.js +55 -24
  123. package/esm/public/cli/commands/database-provision-module.js +55 -24
  124. package/esm/public/cli/commands/database-transfer.js +55 -24
  125. package/esm/public/cli/commands/database.js +43 -18
  126. package/esm/public/cli/commands/default-ids-module.js +31 -12
  127. package/esm/public/cli/commands/default-privilege.js +41 -17
  128. package/esm/public/cli/commands/denormalized-table-field.js +51 -22
  129. package/esm/public/cli/commands/domain.js +39 -16
  130. package/esm/public/cli/commands/email.js +41 -17
  131. package/esm/public/cli/commands/emails-module.js +41 -17
  132. package/esm/public/cli/commands/embedding-chunk.js +63 -28
  133. package/esm/public/cli/commands/encrypted-secrets-module.js +37 -15
  134. package/esm/public/cli/commands/enum.js +51 -22
  135. package/esm/public/cli/commands/field.js +75 -34
  136. package/esm/public/cli/commands/foreign-key-constraint.js +63 -28
  137. package/esm/public/cli/commands/full-text-search.js +45 -19
  138. package/esm/public/cli/commands/get-all-record.js +31 -12
  139. package/esm/public/cli/commands/hierarchy-module.js +67 -30
  140. package/esm/public/cli/commands/index.js +65 -29
  141. package/esm/public/cli/commands/invite.js +51 -22
  142. package/esm/public/cli/commands/invites-module.js +55 -24
  143. package/esm/public/cli/commands/levels-module.js +79 -36
  144. package/esm/public/cli/commands/limits-module.js +63 -28
  145. package/esm/public/cli/commands/membership-type.js +35 -14
  146. package/esm/public/cli/commands/membership-types-module.js +37 -15
  147. package/esm/public/cli/commands/memberships-module.js +89 -41
  148. package/esm/public/cli/commands/migrate-file.js +33 -13
  149. package/esm/public/cli/commands/node-type-registry.js +89 -19
  150. package/esm/public/cli/commands/object.js +41 -17
  151. package/esm/public/cli/commands/org-admin-grant.js +41 -17
  152. package/esm/public/cli/commands/org-chart-edge-grant.js +45 -19
  153. package/esm/public/cli/commands/org-chart-edge.js +43 -18
  154. package/esm/public/cli/commands/org-claimed-invite.js +41 -17
  155. package/esm/public/cli/commands/org-get-managers-record.js +31 -12
  156. package/esm/public/cli/commands/org-get-subordinates-record.js +31 -12
  157. package/esm/public/cli/commands/org-grant.js +43 -18
  158. package/esm/public/cli/commands/org-invite.js +55 -24
  159. package/esm/public/cli/commands/org-limit-default.js +33 -13
  160. package/esm/public/cli/commands/org-limit.js +39 -16
  161. package/esm/public/cli/commands/org-member.js +35 -14
  162. package/esm/public/cli/commands/org-membership-default.js +45 -19
  163. package/esm/public/cli/commands/org-membership.js +59 -26
  164. package/esm/public/cli/commands/org-owner-grant.js +41 -17
  165. package/esm/public/cli/commands/org-permission-default.js +33 -13
  166. package/esm/public/cli/commands/org-permission.js +37 -15
  167. package/esm/public/cli/commands/permissions-module.js +61 -27
  168. package/esm/public/cli/commands/phone-number.js +43 -18
  169. package/esm/public/cli/commands/phone-numbers-module.js +41 -17
  170. package/esm/public/cli/commands/policy.js +61 -27
  171. package/esm/public/cli/commands/primary-key-constraint.js +53 -23
  172. package/esm/public/cli/commands/profiles-module.js +63 -28
  173. package/esm/public/cli/commands/ref.js +37 -15
  174. package/esm/public/cli/commands/relation-provision.js +89 -41
  175. package/esm/public/cli/commands/rls-module.js +49 -21
  176. package/esm/public/cli/commands/role-type.js +31 -12
  177. package/esm/public/cli/commands/schema-grant.js +39 -16
  178. package/esm/public/cli/commands/schema.js +55 -24
  179. package/esm/public/cli/commands/secrets-module.js +37 -15
  180. package/esm/public/cli/commands/secure-table-provision.js +63 -28
  181. package/esm/public/cli/commands/sessions-module.js +49 -21
  182. package/esm/public/cli/commands/site-metadatum.js +39 -16
  183. package/esm/public/cli/commands/site-module.js +37 -15
  184. package/esm/public/cli/commands/site-theme.js +35 -14
  185. package/esm/public/cli/commands/site.js +45 -19
  186. package/esm/public/cli/commands/sql-action.js +53 -23
  187. package/esm/public/cli/commands/store.js +37 -15
  188. package/esm/public/cli/commands/table-grant.js +45 -19
  189. package/esm/public/cli/commands/table-template-module.js +45 -19
  190. package/esm/public/cli/commands/table.js +65 -29
  191. package/esm/public/cli/commands/trigger-function.js +39 -16
  192. package/esm/public/cli/commands/trigger.js +53 -23
  193. package/esm/public/cli/commands/unique-constraint.js +55 -24
  194. package/esm/public/cli/commands/user-auth-module.js +79 -36
  195. package/esm/public/cli/commands/user.js +81 -17
  196. package/esm/public/cli/commands/users-module.js +41 -17
  197. package/esm/public/cli/commands/view-grant.js +41 -17
  198. package/esm/public/cli/commands/view-rule.js +39 -16
  199. package/esm/public/cli/commands/view-table.js +35 -14
  200. package/esm/public/cli/commands/view.js +59 -26
  201. package/esm/public/cli/commands.js +3 -3
  202. package/esm/public/cli/executor.d.ts +1 -1
  203. package/esm/public/cli/utils.d.ts +38 -0
  204. package/esm/public/cli/utils.js +90 -0
  205. package/esm/public/orm/index.d.ts +2 -2
  206. package/esm/public/orm/index.js +2 -2
  207. package/esm/public/orm/input-types.d.ts +161 -147
  208. package/esm/public/orm/models/index.d.ts +1 -1
  209. package/esm/public/orm/models/index.js +1 -1
  210. package/objects/cli/commands/commit.js +44 -18
  211. package/objects/cli/commands/get-all-record.js +30 -11
  212. package/objects/cli/commands/object.js +40 -16
  213. package/objects/cli/commands/ref.js +36 -14
  214. package/objects/cli/commands/store.js +36 -14
  215. package/objects/cli/utils.d.ts +38 -0
  216. package/objects/cli/utils.js +96 -0
  217. package/package.json +3 -3
  218. package/public/cli/commands/api-module.js +36 -14
  219. package/public/cli/commands/api-schema.js +34 -13
  220. package/public/cli/commands/api.js +40 -16
  221. package/public/cli/commands/app-achievement.js +38 -15
  222. package/public/cli/commands/app-admin-grant.js +38 -15
  223. package/public/cli/commands/app-grant.js +40 -16
  224. package/public/cli/commands/app-level-requirement.js +42 -17
  225. package/public/cli/commands/app-level.js +40 -16
  226. package/public/cli/commands/app-limit-default.js +32 -12
  227. package/public/cli/commands/app-limit.js +36 -14
  228. package/public/cli/commands/app-membership-default.js +40 -16
  229. package/public/cli/commands/app-membership.js +58 -25
  230. package/public/cli/commands/app-owner-grant.js +38 -15
  231. package/public/cli/commands/app-permission-default.js +30 -11
  232. package/public/cli/commands/app-permission.js +36 -14
  233. package/public/cli/commands/app-step.js +38 -15
  234. package/public/cli/commands/app.js +44 -18
  235. package/public/cli/commands/ast-migration.js +52 -22
  236. package/public/cli/commands/audit-log.js +42 -17
  237. package/public/cli/commands/blueprint-template.js +66 -29
  238. package/public/cli/commands/blueprint.js +60 -26
  239. package/public/cli/commands/check-constraint.js +54 -23
  240. package/public/cli/commands/claimed-invite.js +38 -15
  241. package/public/cli/commands/commit.js +44 -18
  242. package/public/cli/commands/connected-account.js +42 -17
  243. package/public/cli/commands/connected-accounts-module.js +40 -16
  244. package/public/cli/commands/crypto-address.js +40 -16
  245. package/public/cli/commands/crypto-addresses-module.js +42 -17
  246. package/public/cli/commands/crypto-auth-module.js +54 -23
  247. package/public/cli/commands/database-provision-module.js +54 -23
  248. package/public/cli/commands/database-transfer.js +54 -23
  249. package/public/cli/commands/database.js +42 -17
  250. package/public/cli/commands/default-ids-module.js +30 -11
  251. package/public/cli/commands/default-privilege.js +40 -16
  252. package/public/cli/commands/denormalized-table-field.js +50 -21
  253. package/public/cli/commands/domain.js +38 -15
  254. package/public/cli/commands/email.js +40 -16
  255. package/public/cli/commands/emails-module.js +40 -16
  256. package/public/cli/commands/embedding-chunk.js +62 -27
  257. package/public/cli/commands/encrypted-secrets-module.js +36 -14
  258. package/public/cli/commands/enum.js +50 -21
  259. package/public/cli/commands/field.js +74 -33
  260. package/public/cli/commands/foreign-key-constraint.js +62 -27
  261. package/public/cli/commands/full-text-search.js +44 -18
  262. package/public/cli/commands/get-all-record.js +30 -11
  263. package/public/cli/commands/hierarchy-module.js +66 -29
  264. package/public/cli/commands/index.js +64 -28
  265. package/public/cli/commands/invite.js +50 -21
  266. package/public/cli/commands/invites-module.js +54 -23
  267. package/public/cli/commands/levels-module.js +78 -35
  268. package/public/cli/commands/limits-module.js +62 -27
  269. package/public/cli/commands/membership-type.js +34 -13
  270. package/public/cli/commands/membership-types-module.js +36 -14
  271. package/public/cli/commands/memberships-module.js +88 -40
  272. package/public/cli/commands/migrate-file.js +32 -12
  273. package/public/cli/commands/node-type-registry.js +88 -18
  274. package/public/cli/commands/object.js +40 -16
  275. package/public/cli/commands/org-admin-grant.js +40 -16
  276. package/public/cli/commands/org-chart-edge-grant.js +44 -18
  277. package/public/cli/commands/org-chart-edge.js +42 -17
  278. package/public/cli/commands/org-claimed-invite.js +40 -16
  279. package/public/cli/commands/org-get-managers-record.js +30 -11
  280. package/public/cli/commands/org-get-subordinates-record.js +30 -11
  281. package/public/cli/commands/org-grant.js +42 -17
  282. package/public/cli/commands/org-invite.js +54 -23
  283. package/public/cli/commands/org-limit-default.js +32 -12
  284. package/public/cli/commands/org-limit.js +38 -15
  285. package/public/cli/commands/org-member.js +34 -13
  286. package/public/cli/commands/org-membership-default.js +44 -18
  287. package/public/cli/commands/org-membership.js +58 -25
  288. package/public/cli/commands/org-owner-grant.js +40 -16
  289. package/public/cli/commands/org-permission-default.js +32 -12
  290. package/public/cli/commands/org-permission.js +36 -14
  291. package/public/cli/commands/permissions-module.js +60 -26
  292. package/public/cli/commands/phone-number.js +42 -17
  293. package/public/cli/commands/phone-numbers-module.js +40 -16
  294. package/public/cli/commands/policy.js +60 -26
  295. package/public/cli/commands/primary-key-constraint.js +52 -22
  296. package/public/cli/commands/profiles-module.js +62 -27
  297. package/public/cli/commands/ref.js +36 -14
  298. package/public/cli/commands/relation-provision.js +88 -40
  299. package/public/cli/commands/rls-module.js +48 -20
  300. package/public/cli/commands/role-type.js +30 -11
  301. package/public/cli/commands/schema-grant.js +38 -15
  302. package/public/cli/commands/schema.js +54 -23
  303. package/public/cli/commands/secrets-module.js +36 -14
  304. package/public/cli/commands/secure-table-provision.js +62 -27
  305. package/public/cli/commands/sessions-module.js +48 -20
  306. package/public/cli/commands/site-metadatum.js +38 -15
  307. package/public/cli/commands/site-module.js +36 -14
  308. package/public/cli/commands/site-theme.js +34 -13
  309. package/public/cli/commands/site.js +44 -18
  310. package/public/cli/commands/sql-action.js +52 -22
  311. package/public/cli/commands/store.js +36 -14
  312. package/public/cli/commands/table-grant.js +44 -18
  313. package/public/cli/commands/table-template-module.js +44 -18
  314. package/public/cli/commands/table.js +64 -28
  315. package/public/cli/commands/trigger-function.js +38 -15
  316. package/public/cli/commands/trigger.js +52 -22
  317. package/public/cli/commands/unique-constraint.js +54 -23
  318. package/public/cli/commands/user-auth-module.js +78 -35
  319. package/public/cli/commands/user.js +80 -16
  320. package/public/cli/commands/users-module.js +40 -16
  321. package/public/cli/commands/view-grant.js +40 -16
  322. package/public/cli/commands/view-rule.js +38 -15
  323. package/public/cli/commands/view-table.js +34 -13
  324. package/public/cli/commands/view.js +58 -25
  325. package/public/cli/commands.js +3 -3
  326. package/public/cli/executor.d.ts +1 -1
  327. package/public/cli/utils.d.ts +38 -0
  328. package/public/cli/utils.js +96 -0
  329. package/public/orm/index.d.ts +2 -2
  330. package/public/orm/index.js +2 -2
  331. package/public/orm/input-types.d.ts +161 -147
  332. package/public/orm/models/index.d.ts +1 -1
  333. package/public/orm/models/index.js +4 -4
@@ -1792,25 +1792,6 @@ export interface OrgLimitDefault {
1792
1792
  /** Default maximum usage allowed for this limit */
1793
1793
  max?: number | null;
1794
1794
  }
1795
- /** Registry of high-level semantic AST node types using domain-prefixed naming. These IR nodes compile to multiple targets (Postgres RLS, egress, ingress, etc.). */
1796
- export interface NodeTypeRegistry {
1797
- /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
1798
- name?: string | null;
1799
- /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
1800
- slug?: string | null;
1801
- /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
1802
- category?: string | null;
1803
- /** Human-readable display name for UI */
1804
- displayName?: string | null;
1805
- /** Description of what this node type does */
1806
- description?: string | null;
1807
- /** JSON Schema defining valid parameters for this node type */
1808
- parameterSchema?: Record<string, unknown> | null;
1809
- /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
1810
- tags?: string[] | null;
1811
- createdAt?: string | null;
1812
- updatedAt?: string | null;
1813
- }
1814
1795
  /** Defines the different scopes of membership (e.g. App Member, Organization Member, Group Member) */
1815
1796
  export interface MembershipType {
1816
1797
  /** Integer identifier for the membership type (1=App, 2=Organization, 3=Group) */
@@ -1866,6 +1847,29 @@ export interface RlsModule {
1866
1847
  currentRole?: string | null;
1867
1848
  currentRoleId?: string | null;
1868
1849
  }
1850
+ /** Registry of high-level semantic AST node types using domain-prefixed naming. These IR nodes compile to multiple targets (Postgres RLS, egress, ingress, etc.). */
1851
+ export interface NodeTypeRegistry {
1852
+ /** PascalCase domain-prefixed node type name (e.g., AuthzDirectOwner, DataTimestamps, DataImmutableFields) */
1853
+ name?: string | null;
1854
+ /** snake_case slug for use in code and configuration (e.g., authz_direct_owner, data_timestamps) */
1855
+ slug?: string | null;
1856
+ /** Node type category: authz (authorization semantics), data (table-level behaviors), view (view query types), relation (relational structure between tables) */
1857
+ category?: string | null;
1858
+ /** Human-readable display name for UI */
1859
+ displayName?: string | null;
1860
+ /** Description of what this node type does */
1861
+ description?: string | null;
1862
+ /** Casual, approachable marketing description for onboarding UIs. Explains what the node type does and when you would use it in plain language. */
1863
+ summary?: string | null;
1864
+ /** JSON Schema defining valid parameters for this node type */
1865
+ parameterSchema?: Record<string, unknown> | null;
1866
+ /** Machine-readable usage guidance: privilege recommendations, combination patterns, warnings, anti-patterns. All fields optional. Keys: recommended_privileges, privilege_note, standalone_ok, suggested_companions, combination_note, typical_pattern, status, status_note, alternatives, warnings, anti_patterns, performance_note, requires, decision_semantics, related_nodes, examples */
1867
+ guidance?: Record<string, unknown> | null;
1868
+ /** Tags for categorization and filtering (e.g., ownership, membership, temporal, rls) */
1869
+ tags?: string[] | null;
1870
+ createdAt?: string | null;
1871
+ updatedAt?: string | null;
1872
+ }
1869
1873
  /** Default membership settings per entity, controlling initial approval and verification state for new members */
1870
1874
  export interface OrgMembershipDefault {
1871
1875
  id: string;
@@ -2522,8 +2526,6 @@ export interface AppLimitDefaultRelations {
2522
2526
  }
2523
2527
  export interface OrgLimitDefaultRelations {
2524
2528
  }
2525
- export interface NodeTypeRegistryRelations {
2526
- }
2527
2529
  export interface MembershipTypeRelations {
2528
2530
  }
2529
2531
  export interface CommitRelations {
@@ -2538,6 +2540,8 @@ export interface RlsModuleRelations {
2538
2540
  sessionsTable?: Table | null;
2539
2541
  usersTable?: Table | null;
2540
2542
  }
2543
+ export interface NodeTypeRegistryRelations {
2544
+ }
2541
2545
  export interface OrgMembershipDefaultRelations {
2542
2546
  entity?: User | null;
2543
2547
  }
@@ -2707,11 +2711,11 @@ export type RoleTypeWithRelations = RoleType & RoleTypeRelations;
2707
2711
  export type MigrateFileWithRelations = MigrateFile & MigrateFileRelations;
2708
2712
  export type AppLimitDefaultWithRelations = AppLimitDefault & AppLimitDefaultRelations;
2709
2713
  export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRelations;
2710
- export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
2711
2714
  export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
2712
2715
  export type CommitWithRelations = Commit & CommitRelations;
2713
2716
  export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
2714
2717
  export type RlsModuleWithRelations = RlsModule & RlsModuleRelations;
2718
+ export type NodeTypeRegistryWithRelations = NodeTypeRegistry & NodeTypeRegistryRelations;
2715
2719
  export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
2716
2720
  export type SqlActionWithRelations = SqlAction & SqlActionRelations;
2717
2721
  export type UserWithRelations = User & UserRelations;
@@ -5143,17 +5147,6 @@ export type OrgLimitDefaultSelect = {
5143
5147
  name?: boolean;
5144
5148
  max?: boolean;
5145
5149
  };
5146
- export type NodeTypeRegistrySelect = {
5147
- name?: boolean;
5148
- slug?: boolean;
5149
- category?: boolean;
5150
- displayName?: boolean;
5151
- description?: boolean;
5152
- parameterSchema?: boolean;
5153
- tags?: boolean;
5154
- createdAt?: boolean;
5155
- updatedAt?: boolean;
5156
- };
5157
5150
  export type MembershipTypeSelect = {
5158
5151
  id?: boolean;
5159
5152
  name?: boolean;
@@ -5211,6 +5204,19 @@ export type RlsModuleSelect = {
5211
5204
  select: TableSelect;
5212
5205
  };
5213
5206
  };
5207
+ export type NodeTypeRegistrySelect = {
5208
+ name?: boolean;
5209
+ slug?: boolean;
5210
+ category?: boolean;
5211
+ displayName?: boolean;
5212
+ description?: boolean;
5213
+ summary?: boolean;
5214
+ parameterSchema?: boolean;
5215
+ guidance?: boolean;
5216
+ tags?: boolean;
5217
+ createdAt?: boolean;
5218
+ updatedAt?: boolean;
5219
+ };
5214
5220
  export type OrgMembershipDefaultSelect = {
5215
5221
  id?: boolean;
5216
5222
  createdAt?: boolean;
@@ -9179,32 +9185,6 @@ export interface OrgLimitDefaultFilter {
9179
9185
  /** Negates the expression. */
9180
9186
  not?: OrgLimitDefaultFilter;
9181
9187
  }
9182
- export interface NodeTypeRegistryFilter {
9183
- /** Filter by the object’s `name` field. */
9184
- name?: StringFilter;
9185
- /** Filter by the object’s `slug` field. */
9186
- slug?: StringFilter;
9187
- /** Filter by the object’s `category` field. */
9188
- category?: StringFilter;
9189
- /** Filter by the object’s `displayName` field. */
9190
- displayName?: StringFilter;
9191
- /** Filter by the object’s `description` field. */
9192
- description?: StringFilter;
9193
- /** Filter by the object’s `parameterSchema` field. */
9194
- parameterSchema?: JSONFilter;
9195
- /** Filter by the object’s `tags` field. */
9196
- tags?: StringListFilter;
9197
- /** Filter by the object’s `createdAt` field. */
9198
- createdAt?: DatetimeFilter;
9199
- /** Filter by the object’s `updatedAt` field. */
9200
- updatedAt?: DatetimeFilter;
9201
- /** Checks for all expressions in this list. */
9202
- and?: NodeTypeRegistryFilter[];
9203
- /** Checks for any expressions in this list. */
9204
- or?: NodeTypeRegistryFilter[];
9205
- /** Negates the expression. */
9206
- not?: NodeTypeRegistryFilter;
9207
- }
9208
9188
  export interface MembershipTypeFilter {
9209
9189
  /** Filter by the object’s `id` field. */
9210
9190
  id?: IntFilter;
@@ -9311,6 +9291,36 @@ export interface RlsModuleFilter {
9311
9291
  /** Filter by the object’s `usersTable` relation. */
9312
9292
  usersTable?: TableFilter;
9313
9293
  }
9294
+ export interface NodeTypeRegistryFilter {
9295
+ /** Filter by the object’s `name` field. */
9296
+ name?: StringFilter;
9297
+ /** Filter by the object’s `slug` field. */
9298
+ slug?: StringFilter;
9299
+ /** Filter by the object’s `category` field. */
9300
+ category?: StringFilter;
9301
+ /** Filter by the object’s `displayName` field. */
9302
+ displayName?: StringFilter;
9303
+ /** Filter by the object’s `description` field. */
9304
+ description?: StringFilter;
9305
+ /** Filter by the object’s `summary` field. */
9306
+ summary?: StringFilter;
9307
+ /** Filter by the object’s `parameterSchema` field. */
9308
+ parameterSchema?: JSONFilter;
9309
+ /** Filter by the object’s `guidance` field. */
9310
+ guidance?: JSONFilter;
9311
+ /** Filter by the object’s `tags` field. */
9312
+ tags?: StringListFilter;
9313
+ /** Filter by the object’s `createdAt` field. */
9314
+ createdAt?: DatetimeFilter;
9315
+ /** Filter by the object’s `updatedAt` field. */
9316
+ updatedAt?: DatetimeFilter;
9317
+ /** Checks for all expressions in this list. */
9318
+ and?: NodeTypeRegistryFilter[];
9319
+ /** Checks for any expressions in this list. */
9320
+ or?: NodeTypeRegistryFilter[];
9321
+ /** Negates the expression. */
9322
+ not?: NodeTypeRegistryFilter;
9323
+ }
9314
9324
  export interface OrgMembershipDefaultFilter {
9315
9325
  /** Filter by the object’s `id` field. */
9316
9326
  id?: UUIDFilter;
@@ -9844,11 +9854,11 @@ export type RoleTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC'
9844
9854
  export type MigrateFileOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
9845
9855
  export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
9846
9856
  export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
9847
- export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
9848
9857
  export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC';
9849
9858
  export type CommitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
9850
9859
  export type AppMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC';
9851
9860
  export type RlsModuleOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC';
9861
+ export type NodeTypeRegistryOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'SLUG_ASC' | 'SLUG_DESC' | 'CATEGORY_ASC' | 'CATEGORY_DESC';
9852
9862
  export type OrgMembershipDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
9853
9863
  export type SqlActionOrderBy = 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DATABASE_ID_ASC' | 'DATABASE_ID_DESC' | 'DEPLOY_ASC' | 'DEPLOY_DESC' | 'CONTENT_ASC' | 'CONTENT_DESC' | 'REVERT_ASC' | 'REVERT_DESC' | 'VERIFY_ASC' | 'VERIFY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'ACTION_ASC' | 'ACTION_DESC' | 'ACTION_ID_ASC' | 'ACTION_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
9854
9864
  export type UserOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'USERNAME_ASC' | 'USERNAME_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'SEARCH_TSV_RANK_ASC' | 'SEARCH_TSV_RANK_DESC' | 'DISPLAY_NAME_TRGM_SIMILARITY_ASC' | 'DISPLAY_NAME_TRGM_SIMILARITY_DESC' | 'SEARCH_SCORE_ASC' | 'SEARCH_SCORE_DESC';
@@ -12910,36 +12920,6 @@ export interface DeleteOrgLimitDefaultInput {
12910
12920
  clientMutationId?: string;
12911
12921
  id: string;
12912
12922
  }
12913
- export interface CreateNodeTypeRegistryInput {
12914
- clientMutationId?: string;
12915
- nodeTypeRegistry: {
12916
- name: string;
12917
- slug: string;
12918
- category: string;
12919
- displayName?: string;
12920
- description?: string;
12921
- parameterSchema?: Record<string, unknown>;
12922
- tags?: string[];
12923
- };
12924
- }
12925
- export interface NodeTypeRegistryPatch {
12926
- name?: string | null;
12927
- slug?: string | null;
12928
- category?: string | null;
12929
- displayName?: string | null;
12930
- description?: string | null;
12931
- parameterSchema?: Record<string, unknown> | null;
12932
- tags?: string[] | null;
12933
- }
12934
- export interface UpdateNodeTypeRegistryInput {
12935
- clientMutationId?: string;
12936
- name: string;
12937
- nodeTypeRegistryPatch: NodeTypeRegistryPatch;
12938
- }
12939
- export interface DeleteNodeTypeRegistryInput {
12940
- clientMutationId?: string;
12941
- name: string;
12942
- }
12943
12923
  export interface CreateMembershipTypeInput {
12944
12924
  clientMutationId?: string;
12945
12925
  membershipType: {
@@ -13054,6 +13034,40 @@ export interface DeleteRlsModuleInput {
13054
13034
  clientMutationId?: string;
13055
13035
  id: string;
13056
13036
  }
13037
+ export interface CreateNodeTypeRegistryInput {
13038
+ clientMutationId?: string;
13039
+ nodeTypeRegistry: {
13040
+ name: string;
13041
+ slug: string;
13042
+ category: string;
13043
+ displayName?: string;
13044
+ description?: string;
13045
+ summary?: string;
13046
+ parameterSchema?: Record<string, unknown>;
13047
+ guidance?: Record<string, unknown>;
13048
+ tags?: string[];
13049
+ };
13050
+ }
13051
+ export interface NodeTypeRegistryPatch {
13052
+ name?: string | null;
13053
+ slug?: string | null;
13054
+ category?: string | null;
13055
+ displayName?: string | null;
13056
+ description?: string | null;
13057
+ summary?: string | null;
13058
+ parameterSchema?: Record<string, unknown> | null;
13059
+ guidance?: Record<string, unknown> | null;
13060
+ tags?: string[] | null;
13061
+ }
13062
+ export interface UpdateNodeTypeRegistryInput {
13063
+ clientMutationId?: string;
13064
+ name: string;
13065
+ nodeTypeRegistryPatch: NodeTypeRegistryPatch;
13066
+ }
13067
+ export interface DeleteNodeTypeRegistryInput {
13068
+ clientMutationId?: string;
13069
+ name: string;
13070
+ }
13057
13071
  export interface CreateOrgMembershipDefaultInput {
13058
13072
  clientMutationId?: string;
13059
13073
  orgMembershipDefault: {
@@ -23943,51 +23957,6 @@ export type DeleteOrgLimitDefaultPayloadSelect = {
23943
23957
  select: OrgLimitDefaultEdgeSelect;
23944
23958
  };
23945
23959
  };
23946
- export interface CreateNodeTypeRegistryPayload {
23947
- clientMutationId?: string | null;
23948
- /** The `NodeTypeRegistry` that was created by this mutation. */
23949
- nodeTypeRegistry?: NodeTypeRegistry | null;
23950
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
23951
- }
23952
- export type CreateNodeTypeRegistryPayloadSelect = {
23953
- clientMutationId?: boolean;
23954
- nodeTypeRegistry?: {
23955
- select: NodeTypeRegistrySelect;
23956
- };
23957
- nodeTypeRegistryEdge?: {
23958
- select: NodeTypeRegistryEdgeSelect;
23959
- };
23960
- };
23961
- export interface UpdateNodeTypeRegistryPayload {
23962
- clientMutationId?: string | null;
23963
- /** The `NodeTypeRegistry` that was updated by this mutation. */
23964
- nodeTypeRegistry?: NodeTypeRegistry | null;
23965
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
23966
- }
23967
- export type UpdateNodeTypeRegistryPayloadSelect = {
23968
- clientMutationId?: boolean;
23969
- nodeTypeRegistry?: {
23970
- select: NodeTypeRegistrySelect;
23971
- };
23972
- nodeTypeRegistryEdge?: {
23973
- select: NodeTypeRegistryEdgeSelect;
23974
- };
23975
- };
23976
- export interface DeleteNodeTypeRegistryPayload {
23977
- clientMutationId?: string | null;
23978
- /** The `NodeTypeRegistry` that was deleted by this mutation. */
23979
- nodeTypeRegistry?: NodeTypeRegistry | null;
23980
- nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
23981
- }
23982
- export type DeleteNodeTypeRegistryPayloadSelect = {
23983
- clientMutationId?: boolean;
23984
- nodeTypeRegistry?: {
23985
- select: NodeTypeRegistrySelect;
23986
- };
23987
- nodeTypeRegistryEdge?: {
23988
- select: NodeTypeRegistryEdgeSelect;
23989
- };
23990
- };
23991
23960
  export interface CreateMembershipTypePayload {
23992
23961
  clientMutationId?: string | null;
23993
23962
  /** The `MembershipType` that was created by this mutation. */
@@ -24168,6 +24137,51 @@ export type DeleteRlsModulePayloadSelect = {
24168
24137
  select: RlsModuleEdgeSelect;
24169
24138
  };
24170
24139
  };
24140
+ export interface CreateNodeTypeRegistryPayload {
24141
+ clientMutationId?: string | null;
24142
+ /** The `NodeTypeRegistry` that was created by this mutation. */
24143
+ nodeTypeRegistry?: NodeTypeRegistry | null;
24144
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24145
+ }
24146
+ export type CreateNodeTypeRegistryPayloadSelect = {
24147
+ clientMutationId?: boolean;
24148
+ nodeTypeRegistry?: {
24149
+ select: NodeTypeRegistrySelect;
24150
+ };
24151
+ nodeTypeRegistryEdge?: {
24152
+ select: NodeTypeRegistryEdgeSelect;
24153
+ };
24154
+ };
24155
+ export interface UpdateNodeTypeRegistryPayload {
24156
+ clientMutationId?: string | null;
24157
+ /** The `NodeTypeRegistry` that was updated by this mutation. */
24158
+ nodeTypeRegistry?: NodeTypeRegistry | null;
24159
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24160
+ }
24161
+ export type UpdateNodeTypeRegistryPayloadSelect = {
24162
+ clientMutationId?: boolean;
24163
+ nodeTypeRegistry?: {
24164
+ select: NodeTypeRegistrySelect;
24165
+ };
24166
+ nodeTypeRegistryEdge?: {
24167
+ select: NodeTypeRegistryEdgeSelect;
24168
+ };
24169
+ };
24170
+ export interface DeleteNodeTypeRegistryPayload {
24171
+ clientMutationId?: string | null;
24172
+ /** The `NodeTypeRegistry` that was deleted by this mutation. */
24173
+ nodeTypeRegistry?: NodeTypeRegistry | null;
24174
+ nodeTypeRegistryEdge?: NodeTypeRegistryEdge | null;
24175
+ }
24176
+ export type DeleteNodeTypeRegistryPayloadSelect = {
24177
+ clientMutationId?: boolean;
24178
+ nodeTypeRegistry?: {
24179
+ select: NodeTypeRegistrySelect;
24180
+ };
24181
+ nodeTypeRegistryEdge?: {
24182
+ select: NodeTypeRegistryEdgeSelect;
24183
+ };
24184
+ };
24171
24185
  export interface CreateOrgMembershipDefaultPayload {
24172
24186
  clientMutationId?: string | null;
24173
24187
  /** The `OrgMembershipDefault` that was created by this mutation. */
@@ -25621,18 +25635,6 @@ export type OrgLimitDefaultEdgeSelect = {
25621
25635
  select: OrgLimitDefaultSelect;
25622
25636
  };
25623
25637
  };
25624
- /** A `NodeTypeRegistry` edge in the connection. */
25625
- export interface NodeTypeRegistryEdge {
25626
- cursor?: string | null;
25627
- /** The `NodeTypeRegistry` at the end of the edge. */
25628
- node?: NodeTypeRegistry | null;
25629
- }
25630
- export type NodeTypeRegistryEdgeSelect = {
25631
- cursor?: boolean;
25632
- node?: {
25633
- select: NodeTypeRegistrySelect;
25634
- };
25635
- };
25636
25638
  /** A `MembershipType` edge in the connection. */
25637
25639
  export interface MembershipTypeEdge {
25638
25640
  cursor?: string | null;
@@ -25681,6 +25683,18 @@ export type RlsModuleEdgeSelect = {
25681
25683
  select: RlsModuleSelect;
25682
25684
  };
25683
25685
  };
25686
+ /** A `NodeTypeRegistry` edge in the connection. */
25687
+ export interface NodeTypeRegistryEdge {
25688
+ cursor?: string | null;
25689
+ /** The `NodeTypeRegistry` at the end of the edge. */
25690
+ node?: NodeTypeRegistry | null;
25691
+ }
25692
+ export type NodeTypeRegistryEdgeSelect = {
25693
+ cursor?: boolean;
25694
+ node?: {
25695
+ select: NodeTypeRegistrySelect;
25696
+ };
25697
+ };
25684
25698
  /** A `OrgMembershipDefault` edge in the connection. */
25685
25699
  export interface OrgMembershipDefaultEdge {
25686
25700
  cursor?: string | null;
@@ -99,11 +99,11 @@ export { RoleTypeModel } from './roleType';
99
99
  export { MigrateFileModel } from './migrateFile';
100
100
  export { AppLimitDefaultModel } from './appLimitDefault';
101
101
  export { OrgLimitDefaultModel } from './orgLimitDefault';
102
- export { NodeTypeRegistryModel } from './nodeTypeRegistry';
103
102
  export { MembershipTypeModel } from './membershipType';
104
103
  export { CommitModel } from './commit';
105
104
  export { AppMembershipDefaultModel } from './appMembershipDefault';
106
105
  export { RlsModuleModel } from './rlsModule';
106
+ export { NodeTypeRegistryModel } from './nodeTypeRegistry';
107
107
  export { OrgMembershipDefaultModel } from './orgMembershipDefault';
108
108
  export { SqlActionModel } from './sqlAction';
109
109
  export { UserModel } from './user';
@@ -99,11 +99,11 @@ export { RoleTypeModel } from './roleType';
99
99
  export { MigrateFileModel } from './migrateFile';
100
100
  export { AppLimitDefaultModel } from './appLimitDefault';
101
101
  export { OrgLimitDefaultModel } from './orgLimitDefault';
102
- export { NodeTypeRegistryModel } from './nodeTypeRegistry';
103
102
  export { MembershipTypeModel } from './membershipType';
104
103
  export { CommitModel } from './commit';
105
104
  export { AppMembershipDefaultModel } from './appMembershipDefault';
106
105
  export { RlsModuleModel } from './rlsModule';
106
+ export { NodeTypeRegistryModel } from './nodeTypeRegistry';
107
107
  export { OrgMembershipDefaultModel } from './orgMembershipDefault';
108
108
  export { SqlActionModel } from './sqlAction';
109
109
  export { UserModel } from './user';
@@ -19,7 +19,7 @@ const fieldSchema = {
19
19
  treeId: 'uuid',
20
20
  date: 'string',
21
21
  };
22
- const usage = '\ncommit <command>\n\nCommands:\n list List all commit records\n get Get a commit by ID\n create Create a new commit\n update Update an existing commit\n delete Delete a commit\n\n --help, -h Show this help message\n';
22
+ const usage = '\ncommit <command>\n\nCommands:\n list List commit records\n find-first Find first matching commit record\n get Get a commit by ID\n create Create a new commit\n update Update an existing commit\n delete Delete a commit\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n\n --help, -h Show this help message\n';
23
23
  exports.default = async (argv, prompter, _options) => {
24
24
  if (argv.help || argv.h) {
25
25
  console.log(usage);
@@ -32,7 +32,7 @@ exports.default = async (argv, prompter, _options) => {
32
32
  type: 'autocomplete',
33
33
  name: 'subcommand',
34
34
  message: 'What do you want to do?',
35
- options: ['list', 'get', 'create', 'update', 'delete'],
35
+ options: ['list', 'find-first', 'get', 'create', 'update', 'delete'],
36
36
  },
37
37
  ]);
38
38
  return handleTableSubcommand(answer.subcommand, newArgv, prompter);
@@ -43,6 +43,8 @@ async function handleTableSubcommand(subcommand, argv, prompter) {
43
43
  switch (subcommand) {
44
44
  case 'list':
45
45
  return handleList(argv, prompter);
46
+ case 'find-first':
47
+ return handleFindFirst(argv, prompter);
46
48
  case 'get':
47
49
  return handleGet(argv, prompter);
48
50
  case 'create':
@@ -56,24 +58,22 @@ async function handleTableSubcommand(subcommand, argv, prompter) {
56
58
  process.exit(1);
57
59
  }
58
60
  }
59
- async function handleList(_argv, _prompter) {
61
+ async function handleList(argv, _prompter) {
60
62
  try {
63
+ const defaultSelect = {
64
+ id: true,
65
+ message: true,
66
+ databaseId: true,
67
+ storeId: true,
68
+ parentIds: true,
69
+ authorId: true,
70
+ committerId: true,
71
+ treeId: true,
72
+ date: true,
73
+ };
74
+ const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
61
75
  const client = (0, executor_1.getClient)();
62
- const result = await client.commit
63
- .findMany({
64
- select: {
65
- id: true,
66
- message: true,
67
- databaseId: true,
68
- storeId: true,
69
- parentIds: true,
70
- authorId: true,
71
- committerId: true,
72
- treeId: true,
73
- date: true,
74
- },
75
- })
76
- .execute();
76
+ const result = await client.commit.findMany(findManyArgs).execute();
77
77
  console.log(JSON.stringify(result, null, 2));
78
78
  }
79
79
  catch (error) {
@@ -84,6 +84,32 @@ async function handleList(_argv, _prompter) {
84
84
  process.exit(1);
85
85
  }
86
86
  }
87
+ async function handleFindFirst(argv, _prompter) {
88
+ try {
89
+ const defaultSelect = {
90
+ id: true,
91
+ message: true,
92
+ databaseId: true,
93
+ storeId: true,
94
+ parentIds: true,
95
+ authorId: true,
96
+ committerId: true,
97
+ treeId: true,
98
+ date: true,
99
+ };
100
+ const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
101
+ const client = (0, executor_1.getClient)();
102
+ const result = await client.commit.findFirst(findFirstArgs).execute();
103
+ console.log(JSON.stringify(result, null, 2));
104
+ }
105
+ catch (error) {
106
+ console.error('Failed to find record.');
107
+ if (error instanceof Error) {
108
+ console.error(error.message);
109
+ }
110
+ process.exit(1);
111
+ }
112
+ }
87
113
  async function handleGet(argv, prompter) {
88
114
  try {
89
115
  const answers = await prompter.prompt(argv, [
@@ -12,7 +12,7 @@ const fieldSchema = {
12
12
  path: 'string',
13
13
  data: 'json',
14
14
  };
15
- const usage = '\nget-all-record <command>\n\nCommands:\n list List all getAllRecord records\n create Create a new getAllRecord\n\n --help, -h Show this help message\n';
15
+ const usage = '\nget-all-record <command>\n\nCommands:\n list List getAllRecord records\n find-first Find first matching getAllRecord record\n create Create a new getAllRecord\n\nList Options:\n --limit <n> Max number of records to return (forward pagination)\n --last <n> Number of records from the end (backward pagination)\n --after <cursor> Cursor for forward pagination\n --before <cursor> Cursor for backward pagination\n --offset <n> Number of records to skip\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.name.equalTo foo)\n --condition.<f>.<op> Condition filter (dot-notation)\n --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\nFind-First Options:\n --select <fields> Comma-separated list of fields to return\n --where.<field>.<op> Filter (dot-notation, e.g. --where.status.equalTo active)\n --condition.<f>.<op> Condition filter (dot-notation)\n\n --help, -h Show this help message\n';
16
16
  exports.default = async (argv, prompter, _options) => {
17
17
  if (argv.help || argv.h) {
18
18
  console.log(usage);
@@ -25,7 +25,7 @@ exports.default = async (argv, prompter, _options) => {
25
25
  type: 'autocomplete',
26
26
  name: 'subcommand',
27
27
  message: 'What do you want to do?',
28
- options: ['list', 'create'],
28
+ options: ['list', 'find-first', 'create'],
29
29
  },
30
30
  ]);
31
31
  return handleTableSubcommand(answer.subcommand, newArgv, prompter);
@@ -36,6 +36,8 @@ async function handleTableSubcommand(subcommand, argv, prompter) {
36
36
  switch (subcommand) {
37
37
  case 'list':
38
38
  return handleList(argv, prompter);
39
+ case 'find-first':
40
+ return handleFindFirst(argv, prompter);
39
41
  case 'create':
40
42
  return handleCreate(argv, prompter);
41
43
  default:
@@ -43,17 +45,15 @@ async function handleTableSubcommand(subcommand, argv, prompter) {
43
45
  process.exit(1);
44
46
  }
45
47
  }
46
- async function handleList(_argv, _prompter) {
48
+ async function handleList(argv, _prompter) {
47
49
  try {
50
+ const defaultSelect = {
51
+ path: true,
52
+ data: true,
53
+ };
54
+ const findManyArgs = (0, utils_1.parseFindManyArgs)(argv, defaultSelect);
48
55
  const client = (0, executor_1.getClient)();
49
- const result = await client.getAllRecord
50
- .findMany({
51
- select: {
52
- path: true,
53
- data: true,
54
- },
55
- })
56
- .execute();
56
+ const result = await client.getAllRecord.findMany(findManyArgs).execute();
57
57
  console.log(JSON.stringify(result, null, 2));
58
58
  }
59
59
  catch (error) {
@@ -64,6 +64,25 @@ async function handleList(_argv, _prompter) {
64
64
  process.exit(1);
65
65
  }
66
66
  }
67
+ async function handleFindFirst(argv, _prompter) {
68
+ try {
69
+ const defaultSelect = {
70
+ path: true,
71
+ data: true,
72
+ };
73
+ const findFirstArgs = (0, utils_1.parseFindFirstArgs)(argv, defaultSelect);
74
+ const client = (0, executor_1.getClient)();
75
+ const result = await client.getAllRecord.findFirst(findFirstArgs).execute();
76
+ console.log(JSON.stringify(result, null, 2));
77
+ }
78
+ catch (error) {
79
+ console.error('Failed to find record.');
80
+ if (error instanceof Error) {
81
+ console.error(error.message);
82
+ }
83
+ process.exit(1);
84
+ }
85
+ }
67
86
  async function handleCreate(argv, prompter) {
68
87
  try {
69
88
  const rawAnswers = await prompter.prompt(argv, [