@constructive-sdk/cli 0.21.6 → 0.21.7

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 (1317) hide show
  1. package/admin/cli/commands/app-achievement.js +1 -1
  2. package/admin/cli/commands/app-admin-grant.js +1 -1
  3. package/admin/cli/commands/app-claimed-invite.js +1 -1
  4. package/admin/cli/commands/app-grant.js +1 -1
  5. package/admin/cli/commands/app-invite.js +1 -1
  6. package/admin/cli/commands/app-level-requirement.js +1 -1
  7. package/admin/cli/commands/app-level.js +1 -1
  8. package/admin/cli/commands/app-limit-cap.js +1 -1
  9. package/admin/cli/commands/app-limit-caps-default.js +1 -1
  10. package/admin/cli/commands/app-limit-credit-code-item.js +1 -1
  11. package/admin/cli/commands/app-limit-credit-code.js +1 -1
  12. package/admin/cli/commands/app-limit-credit-redemption.js +1 -1
  13. package/admin/cli/commands/app-limit-credit.js +1 -1
  14. package/admin/cli/commands/app-limit-default.js +1 -1
  15. package/admin/cli/commands/app-limit-event.js +1 -1
  16. package/admin/cli/commands/app-limit.js +1 -1
  17. package/admin/cli/commands/app-membership-default.js +1 -1
  18. package/admin/cli/commands/app-membership.js +1 -1
  19. package/admin/cli/commands/app-owner-grant.js +1 -1
  20. package/admin/cli/commands/app-permission-default.js +1 -1
  21. package/admin/cli/commands/app-permission.js +1 -1
  22. package/admin/cli/commands/app-step.js +1 -1
  23. package/admin/cli/commands/membership-type.js +1 -1
  24. package/admin/cli/commands/org-admin-grant.js +1 -1
  25. package/admin/cli/commands/org-chart-edge-grant.js +1 -1
  26. package/admin/cli/commands/org-chart-edge.js +1 -1
  27. package/admin/cli/commands/org-claimed-invite.js +1 -1
  28. package/admin/cli/commands/org-get-managers-record.js +1 -1
  29. package/admin/cli/commands/org-get-subordinates-record.js +1 -1
  30. package/admin/cli/commands/org-grant.js +1 -1
  31. package/admin/cli/commands/org-invite.js +1 -1
  32. package/admin/cli/commands/org-limit-aggregate.js +1 -1
  33. package/admin/cli/commands/org-limit-cap.js +1 -1
  34. package/admin/cli/commands/org-limit-caps-default.js +1 -1
  35. package/admin/cli/commands/org-limit-credit.js +1 -1
  36. package/admin/cli/commands/org-limit-default.js +1 -1
  37. package/admin/cli/commands/org-limit-event.js +1 -1
  38. package/admin/cli/commands/org-limit.js +1 -1
  39. package/admin/cli/commands/org-member-profile.js +1 -1
  40. package/admin/cli/commands/org-member.js +1 -1
  41. package/admin/cli/commands/org-membership-default.js +1 -1
  42. package/admin/cli/commands/org-membership-setting.js +1 -1
  43. package/admin/cli/commands/org-membership.js +1 -1
  44. package/admin/cli/commands/org-owner-grant.js +1 -1
  45. package/admin/cli/commands/org-permission-default.js +1 -1
  46. package/admin/cli/commands/org-permission.js +1 -1
  47. package/admin/cli/commands/usage-snapshot.js +1 -1
  48. package/admin/cli/utils.d.ts +2 -2
  49. package/admin/cli/utils.js +4 -2
  50. package/admin/orm/index.d.ts +0 -1
  51. package/admin/orm/index.js +1 -3
  52. package/admin/orm/models/appAchievement.d.ts +2 -4
  53. package/admin/orm/models/appAchievement.js +6 -2
  54. package/admin/orm/models/appAdminGrant.d.ts +2 -4
  55. package/admin/orm/models/appAdminGrant.js +6 -2
  56. package/admin/orm/models/appClaimedInvite.d.ts +2 -4
  57. package/admin/orm/models/appClaimedInvite.js +6 -2
  58. package/admin/orm/models/appGrant.d.ts +2 -4
  59. package/admin/orm/models/appGrant.js +6 -2
  60. package/admin/orm/models/appInvite.d.ts +2 -4
  61. package/admin/orm/models/appInvite.js +6 -2
  62. package/admin/orm/models/appLevel.d.ts +2 -4
  63. package/admin/orm/models/appLevel.js +6 -2
  64. package/admin/orm/models/appLevelRequirement.d.ts +2 -4
  65. package/admin/orm/models/appLevelRequirement.js +6 -2
  66. package/admin/orm/models/appLimit.d.ts +2 -4
  67. package/admin/orm/models/appLimit.js +6 -2
  68. package/admin/orm/models/appLimitCap.d.ts +2 -4
  69. package/admin/orm/models/appLimitCap.js +6 -2
  70. package/admin/orm/models/appLimitCapsDefault.d.ts +2 -4
  71. package/admin/orm/models/appLimitCapsDefault.js +6 -2
  72. package/admin/orm/models/appLimitCredit.d.ts +2 -4
  73. package/admin/orm/models/appLimitCredit.js +6 -2
  74. package/admin/orm/models/appLimitCreditCode.d.ts +2 -4
  75. package/admin/orm/models/appLimitCreditCode.js +6 -2
  76. package/admin/orm/models/appLimitCreditCodeItem.d.ts +2 -4
  77. package/admin/orm/models/appLimitCreditCodeItem.js +6 -2
  78. package/admin/orm/models/appLimitCreditRedemption.d.ts +2 -4
  79. package/admin/orm/models/appLimitCreditRedemption.js +6 -2
  80. package/admin/orm/models/appLimitDefault.d.ts +2 -4
  81. package/admin/orm/models/appLimitDefault.js +6 -2
  82. package/admin/orm/models/appLimitEvent.d.ts +2 -4
  83. package/admin/orm/models/appLimitEvent.js +6 -2
  84. package/admin/orm/models/appMembership.d.ts +2 -4
  85. package/admin/orm/models/appMembership.js +6 -2
  86. package/admin/orm/models/appMembershipDefault.d.ts +2 -4
  87. package/admin/orm/models/appMembershipDefault.js +6 -2
  88. package/admin/orm/models/appOwnerGrant.d.ts +2 -4
  89. package/admin/orm/models/appOwnerGrant.js +6 -2
  90. package/admin/orm/models/appPermission.d.ts +2 -4
  91. package/admin/orm/models/appPermission.js +6 -2
  92. package/admin/orm/models/appPermissionDefault.d.ts +2 -4
  93. package/admin/orm/models/appPermissionDefault.js +6 -2
  94. package/admin/orm/models/appStep.d.ts +2 -4
  95. package/admin/orm/models/appStep.js +6 -2
  96. package/admin/orm/models/membershipType.d.ts +2 -4
  97. package/admin/orm/models/membershipType.js +6 -2
  98. package/admin/orm/models/orgAdminGrant.d.ts +2 -4
  99. package/admin/orm/models/orgAdminGrant.js +6 -2
  100. package/admin/orm/models/orgChartEdge.d.ts +2 -4
  101. package/admin/orm/models/orgChartEdge.js +6 -2
  102. package/admin/orm/models/orgChartEdgeGrant.d.ts +2 -4
  103. package/admin/orm/models/orgChartEdgeGrant.js +6 -2
  104. package/admin/orm/models/orgClaimedInvite.d.ts +2 -4
  105. package/admin/orm/models/orgClaimedInvite.js +6 -2
  106. package/admin/orm/models/orgGetManagersRecord.d.ts +2 -4
  107. package/admin/orm/models/orgGetManagersRecord.js +6 -2
  108. package/admin/orm/models/orgGetSubordinatesRecord.d.ts +2 -4
  109. package/admin/orm/models/orgGetSubordinatesRecord.js +6 -2
  110. package/admin/orm/models/orgGrant.d.ts +2 -4
  111. package/admin/orm/models/orgGrant.js +6 -2
  112. package/admin/orm/models/orgInvite.d.ts +2 -4
  113. package/admin/orm/models/orgInvite.js +6 -2
  114. package/admin/orm/models/orgLimit.d.ts +2 -4
  115. package/admin/orm/models/orgLimit.js +6 -2
  116. package/admin/orm/models/orgLimitAggregate.d.ts +2 -4
  117. package/admin/orm/models/orgLimitAggregate.js +6 -2
  118. package/admin/orm/models/orgLimitCap.d.ts +2 -4
  119. package/admin/orm/models/orgLimitCap.js +6 -2
  120. package/admin/orm/models/orgLimitCapsDefault.d.ts +2 -4
  121. package/admin/orm/models/orgLimitCapsDefault.js +6 -2
  122. package/admin/orm/models/orgLimitCredit.d.ts +2 -4
  123. package/admin/orm/models/orgLimitCredit.js +6 -2
  124. package/admin/orm/models/orgLimitDefault.d.ts +2 -4
  125. package/admin/orm/models/orgLimitDefault.js +6 -2
  126. package/admin/orm/models/orgLimitEvent.d.ts +2 -4
  127. package/admin/orm/models/orgLimitEvent.js +6 -2
  128. package/admin/orm/models/orgMember.d.ts +2 -4
  129. package/admin/orm/models/orgMember.js +6 -2
  130. package/admin/orm/models/orgMemberProfile.d.ts +2 -4
  131. package/admin/orm/models/orgMemberProfile.js +6 -2
  132. package/admin/orm/models/orgMembership.d.ts +2 -4
  133. package/admin/orm/models/orgMembership.js +6 -2
  134. package/admin/orm/models/orgMembershipDefault.d.ts +2 -4
  135. package/admin/orm/models/orgMembershipDefault.js +6 -2
  136. package/admin/orm/models/orgMembershipSetting.d.ts +2 -4
  137. package/admin/orm/models/orgMembershipSetting.js +6 -2
  138. package/admin/orm/models/orgOwnerGrant.d.ts +2 -4
  139. package/admin/orm/models/orgOwnerGrant.js +6 -2
  140. package/admin/orm/models/orgPermission.d.ts +2 -4
  141. package/admin/orm/models/orgPermission.js +6 -2
  142. package/admin/orm/models/orgPermissionDefault.d.ts +2 -4
  143. package/admin/orm/models/orgPermissionDefault.js +6 -2
  144. package/admin/orm/models/usageSnapshot.d.ts +2 -4
  145. package/admin/orm/models/usageSnapshot.js +6 -2
  146. package/admin/orm/query-builder.d.ts +18 -1
  147. package/admin/orm/query-builder.js +112 -1
  148. package/admin/orm/select-types.d.ts +25 -1
  149. package/auth/cli/commands/audit-log.js +1 -1
  150. package/auth/cli/commands/crypto-address.js +1 -1
  151. package/auth/cli/commands/email.js +1 -1
  152. package/auth/cli/commands/identity-provider.js +1 -1
  153. package/auth/cli/commands/phone-number.js +1 -1
  154. package/auth/cli/commands/role-type.js +1 -1
  155. package/auth/cli/commands/user-connected-account.js +1 -1
  156. package/auth/cli/commands/user.js +1 -1
  157. package/auth/cli/commands/webauthn-credential.js +1 -1
  158. package/auth/cli/utils.d.ts +2 -2
  159. package/auth/cli/utils.js +4 -2
  160. package/auth/orm/index.d.ts +0 -1
  161. package/auth/orm/index.js +1 -3
  162. package/auth/orm/models/auditLog.d.ts +2 -4
  163. package/auth/orm/models/auditLog.js +6 -2
  164. package/auth/orm/models/cryptoAddress.d.ts +2 -4
  165. package/auth/orm/models/cryptoAddress.js +6 -2
  166. package/auth/orm/models/email.d.ts +2 -4
  167. package/auth/orm/models/email.js +6 -2
  168. package/auth/orm/models/identityProvider.d.ts +2 -4
  169. package/auth/orm/models/identityProvider.js +6 -2
  170. package/auth/orm/models/phoneNumber.d.ts +2 -4
  171. package/auth/orm/models/phoneNumber.js +6 -2
  172. package/auth/orm/models/roleType.d.ts +2 -4
  173. package/auth/orm/models/roleType.js +6 -2
  174. package/auth/orm/models/user.d.ts +2 -4
  175. package/auth/orm/models/user.js +6 -2
  176. package/auth/orm/models/userConnectedAccount.d.ts +2 -4
  177. package/auth/orm/models/userConnectedAccount.js +6 -2
  178. package/auth/orm/models/webauthnCredential.d.ts +2 -4
  179. package/auth/orm/models/webauthnCredential.js +6 -2
  180. package/auth/orm/query-builder.d.ts +18 -1
  181. package/auth/orm/query-builder.js +112 -1
  182. package/auth/orm/select-types.d.ts +25 -1
  183. package/esm/admin/cli/commands/app-achievement.js +1 -1
  184. package/esm/admin/cli/commands/app-admin-grant.js +1 -1
  185. package/esm/admin/cli/commands/app-claimed-invite.js +1 -1
  186. package/esm/admin/cli/commands/app-grant.js +1 -1
  187. package/esm/admin/cli/commands/app-invite.js +1 -1
  188. package/esm/admin/cli/commands/app-level-requirement.js +1 -1
  189. package/esm/admin/cli/commands/app-level.js +1 -1
  190. package/esm/admin/cli/commands/app-limit-cap.js +1 -1
  191. package/esm/admin/cli/commands/app-limit-caps-default.js +1 -1
  192. package/esm/admin/cli/commands/app-limit-credit-code-item.js +1 -1
  193. package/esm/admin/cli/commands/app-limit-credit-code.js +1 -1
  194. package/esm/admin/cli/commands/app-limit-credit-redemption.js +1 -1
  195. package/esm/admin/cli/commands/app-limit-credit.js +1 -1
  196. package/esm/admin/cli/commands/app-limit-default.js +1 -1
  197. package/esm/admin/cli/commands/app-limit-event.js +1 -1
  198. package/esm/admin/cli/commands/app-limit.js +1 -1
  199. package/esm/admin/cli/commands/app-membership-default.js +1 -1
  200. package/esm/admin/cli/commands/app-membership.js +1 -1
  201. package/esm/admin/cli/commands/app-owner-grant.js +1 -1
  202. package/esm/admin/cli/commands/app-permission-default.js +1 -1
  203. package/esm/admin/cli/commands/app-permission.js +1 -1
  204. package/esm/admin/cli/commands/app-step.js +1 -1
  205. package/esm/admin/cli/commands/membership-type.js +1 -1
  206. package/esm/admin/cli/commands/org-admin-grant.js +1 -1
  207. package/esm/admin/cli/commands/org-chart-edge-grant.js +1 -1
  208. package/esm/admin/cli/commands/org-chart-edge.js +1 -1
  209. package/esm/admin/cli/commands/org-claimed-invite.js +1 -1
  210. package/esm/admin/cli/commands/org-get-managers-record.js +1 -1
  211. package/esm/admin/cli/commands/org-get-subordinates-record.js +1 -1
  212. package/esm/admin/cli/commands/org-grant.js +1 -1
  213. package/esm/admin/cli/commands/org-invite.js +1 -1
  214. package/esm/admin/cli/commands/org-limit-aggregate.js +1 -1
  215. package/esm/admin/cli/commands/org-limit-cap.js +1 -1
  216. package/esm/admin/cli/commands/org-limit-caps-default.js +1 -1
  217. package/esm/admin/cli/commands/org-limit-credit.js +1 -1
  218. package/esm/admin/cli/commands/org-limit-default.js +1 -1
  219. package/esm/admin/cli/commands/org-limit-event.js +1 -1
  220. package/esm/admin/cli/commands/org-limit.js +1 -1
  221. package/esm/admin/cli/commands/org-member-profile.js +1 -1
  222. package/esm/admin/cli/commands/org-member.js +1 -1
  223. package/esm/admin/cli/commands/org-membership-default.js +1 -1
  224. package/esm/admin/cli/commands/org-membership-setting.js +1 -1
  225. package/esm/admin/cli/commands/org-membership.js +1 -1
  226. package/esm/admin/cli/commands/org-owner-grant.js +1 -1
  227. package/esm/admin/cli/commands/org-permission-default.js +1 -1
  228. package/esm/admin/cli/commands/org-permission.js +1 -1
  229. package/esm/admin/cli/commands/usage-snapshot.js +1 -1
  230. package/esm/admin/cli/utils.d.ts +2 -2
  231. package/esm/admin/cli/utils.js +4 -2
  232. package/esm/admin/orm/index.d.ts +0 -1
  233. package/esm/admin/orm/index.js +0 -1
  234. package/esm/admin/orm/models/appAchievement.d.ts +2 -4
  235. package/esm/admin/orm/models/appAchievement.js +6 -2
  236. package/esm/admin/orm/models/appAdminGrant.d.ts +2 -4
  237. package/esm/admin/orm/models/appAdminGrant.js +6 -2
  238. package/esm/admin/orm/models/appClaimedInvite.d.ts +2 -4
  239. package/esm/admin/orm/models/appClaimedInvite.js +6 -2
  240. package/esm/admin/orm/models/appGrant.d.ts +2 -4
  241. package/esm/admin/orm/models/appGrant.js +6 -2
  242. package/esm/admin/orm/models/appInvite.d.ts +2 -4
  243. package/esm/admin/orm/models/appInvite.js +6 -2
  244. package/esm/admin/orm/models/appLevel.d.ts +2 -4
  245. package/esm/admin/orm/models/appLevel.js +6 -2
  246. package/esm/admin/orm/models/appLevelRequirement.d.ts +2 -4
  247. package/esm/admin/orm/models/appLevelRequirement.js +6 -2
  248. package/esm/admin/orm/models/appLimit.d.ts +2 -4
  249. package/esm/admin/orm/models/appLimit.js +6 -2
  250. package/esm/admin/orm/models/appLimitCap.d.ts +2 -4
  251. package/esm/admin/orm/models/appLimitCap.js +6 -2
  252. package/esm/admin/orm/models/appLimitCapsDefault.d.ts +2 -4
  253. package/esm/admin/orm/models/appLimitCapsDefault.js +6 -2
  254. package/esm/admin/orm/models/appLimitCredit.d.ts +2 -4
  255. package/esm/admin/orm/models/appLimitCredit.js +6 -2
  256. package/esm/admin/orm/models/appLimitCreditCode.d.ts +2 -4
  257. package/esm/admin/orm/models/appLimitCreditCode.js +6 -2
  258. package/esm/admin/orm/models/appLimitCreditCodeItem.d.ts +2 -4
  259. package/esm/admin/orm/models/appLimitCreditCodeItem.js +6 -2
  260. package/esm/admin/orm/models/appLimitCreditRedemption.d.ts +2 -4
  261. package/esm/admin/orm/models/appLimitCreditRedemption.js +6 -2
  262. package/esm/admin/orm/models/appLimitDefault.d.ts +2 -4
  263. package/esm/admin/orm/models/appLimitDefault.js +6 -2
  264. package/esm/admin/orm/models/appLimitEvent.d.ts +2 -4
  265. package/esm/admin/orm/models/appLimitEvent.js +6 -2
  266. package/esm/admin/orm/models/appMembership.d.ts +2 -4
  267. package/esm/admin/orm/models/appMembership.js +6 -2
  268. package/esm/admin/orm/models/appMembershipDefault.d.ts +2 -4
  269. package/esm/admin/orm/models/appMembershipDefault.js +6 -2
  270. package/esm/admin/orm/models/appOwnerGrant.d.ts +2 -4
  271. package/esm/admin/orm/models/appOwnerGrant.js +6 -2
  272. package/esm/admin/orm/models/appPermission.d.ts +2 -4
  273. package/esm/admin/orm/models/appPermission.js +6 -2
  274. package/esm/admin/orm/models/appPermissionDefault.d.ts +2 -4
  275. package/esm/admin/orm/models/appPermissionDefault.js +6 -2
  276. package/esm/admin/orm/models/appStep.d.ts +2 -4
  277. package/esm/admin/orm/models/appStep.js +6 -2
  278. package/esm/admin/orm/models/membershipType.d.ts +2 -4
  279. package/esm/admin/orm/models/membershipType.js +6 -2
  280. package/esm/admin/orm/models/orgAdminGrant.d.ts +2 -4
  281. package/esm/admin/orm/models/orgAdminGrant.js +6 -2
  282. package/esm/admin/orm/models/orgChartEdge.d.ts +2 -4
  283. package/esm/admin/orm/models/orgChartEdge.js +6 -2
  284. package/esm/admin/orm/models/orgChartEdgeGrant.d.ts +2 -4
  285. package/esm/admin/orm/models/orgChartEdgeGrant.js +6 -2
  286. package/esm/admin/orm/models/orgClaimedInvite.d.ts +2 -4
  287. package/esm/admin/orm/models/orgClaimedInvite.js +6 -2
  288. package/esm/admin/orm/models/orgGetManagersRecord.d.ts +2 -4
  289. package/esm/admin/orm/models/orgGetManagersRecord.js +6 -2
  290. package/esm/admin/orm/models/orgGetSubordinatesRecord.d.ts +2 -4
  291. package/esm/admin/orm/models/orgGetSubordinatesRecord.js +6 -2
  292. package/esm/admin/orm/models/orgGrant.d.ts +2 -4
  293. package/esm/admin/orm/models/orgGrant.js +6 -2
  294. package/esm/admin/orm/models/orgInvite.d.ts +2 -4
  295. package/esm/admin/orm/models/orgInvite.js +6 -2
  296. package/esm/admin/orm/models/orgLimit.d.ts +2 -4
  297. package/esm/admin/orm/models/orgLimit.js +6 -2
  298. package/esm/admin/orm/models/orgLimitAggregate.d.ts +2 -4
  299. package/esm/admin/orm/models/orgLimitAggregate.js +6 -2
  300. package/esm/admin/orm/models/orgLimitCap.d.ts +2 -4
  301. package/esm/admin/orm/models/orgLimitCap.js +6 -2
  302. package/esm/admin/orm/models/orgLimitCapsDefault.d.ts +2 -4
  303. package/esm/admin/orm/models/orgLimitCapsDefault.js +6 -2
  304. package/esm/admin/orm/models/orgLimitCredit.d.ts +2 -4
  305. package/esm/admin/orm/models/orgLimitCredit.js +6 -2
  306. package/esm/admin/orm/models/orgLimitDefault.d.ts +2 -4
  307. package/esm/admin/orm/models/orgLimitDefault.js +6 -2
  308. package/esm/admin/orm/models/orgLimitEvent.d.ts +2 -4
  309. package/esm/admin/orm/models/orgLimitEvent.js +6 -2
  310. package/esm/admin/orm/models/orgMember.d.ts +2 -4
  311. package/esm/admin/orm/models/orgMember.js +6 -2
  312. package/esm/admin/orm/models/orgMemberProfile.d.ts +2 -4
  313. package/esm/admin/orm/models/orgMemberProfile.js +6 -2
  314. package/esm/admin/orm/models/orgMembership.d.ts +2 -4
  315. package/esm/admin/orm/models/orgMembership.js +6 -2
  316. package/esm/admin/orm/models/orgMembershipDefault.d.ts +2 -4
  317. package/esm/admin/orm/models/orgMembershipDefault.js +6 -2
  318. package/esm/admin/orm/models/orgMembershipSetting.d.ts +2 -4
  319. package/esm/admin/orm/models/orgMembershipSetting.js +6 -2
  320. package/esm/admin/orm/models/orgOwnerGrant.d.ts +2 -4
  321. package/esm/admin/orm/models/orgOwnerGrant.js +6 -2
  322. package/esm/admin/orm/models/orgPermission.d.ts +2 -4
  323. package/esm/admin/orm/models/orgPermission.js +6 -2
  324. package/esm/admin/orm/models/orgPermissionDefault.d.ts +2 -4
  325. package/esm/admin/orm/models/orgPermissionDefault.js +6 -2
  326. package/esm/admin/orm/models/usageSnapshot.d.ts +2 -4
  327. package/esm/admin/orm/models/usageSnapshot.js +6 -2
  328. package/esm/admin/orm/query-builder.d.ts +18 -1
  329. package/esm/admin/orm/query-builder.js +108 -1
  330. package/esm/admin/orm/select-types.d.ts +25 -1
  331. package/esm/auth/cli/commands/audit-log.js +1 -1
  332. package/esm/auth/cli/commands/crypto-address.js +1 -1
  333. package/esm/auth/cli/commands/email.js +1 -1
  334. package/esm/auth/cli/commands/identity-provider.js +1 -1
  335. package/esm/auth/cli/commands/phone-number.js +1 -1
  336. package/esm/auth/cli/commands/role-type.js +1 -1
  337. package/esm/auth/cli/commands/user-connected-account.js +1 -1
  338. package/esm/auth/cli/commands/user.js +1 -1
  339. package/esm/auth/cli/commands/webauthn-credential.js +1 -1
  340. package/esm/auth/cli/utils.d.ts +2 -2
  341. package/esm/auth/cli/utils.js +4 -2
  342. package/esm/auth/orm/index.d.ts +0 -1
  343. package/esm/auth/orm/index.js +0 -1
  344. package/esm/auth/orm/models/auditLog.d.ts +2 -4
  345. package/esm/auth/orm/models/auditLog.js +6 -2
  346. package/esm/auth/orm/models/cryptoAddress.d.ts +2 -4
  347. package/esm/auth/orm/models/cryptoAddress.js +6 -2
  348. package/esm/auth/orm/models/email.d.ts +2 -4
  349. package/esm/auth/orm/models/email.js +6 -2
  350. package/esm/auth/orm/models/identityProvider.d.ts +2 -4
  351. package/esm/auth/orm/models/identityProvider.js +6 -2
  352. package/esm/auth/orm/models/phoneNumber.d.ts +2 -4
  353. package/esm/auth/orm/models/phoneNumber.js +6 -2
  354. package/esm/auth/orm/models/roleType.d.ts +2 -4
  355. package/esm/auth/orm/models/roleType.js +6 -2
  356. package/esm/auth/orm/models/user.d.ts +2 -4
  357. package/esm/auth/orm/models/user.js +6 -2
  358. package/esm/auth/orm/models/userConnectedAccount.d.ts +2 -4
  359. package/esm/auth/orm/models/userConnectedAccount.js +6 -2
  360. package/esm/auth/orm/models/webauthnCredential.d.ts +2 -4
  361. package/esm/auth/orm/models/webauthnCredential.js +6 -2
  362. package/esm/auth/orm/query-builder.d.ts +18 -1
  363. package/esm/auth/orm/query-builder.js +108 -1
  364. package/esm/auth/orm/select-types.d.ts +25 -1
  365. package/esm/objects/cli/commands/commit.js +1 -1
  366. package/esm/objects/cli/commands/get-all-record.js +1 -1
  367. package/esm/objects/cli/commands/object.js +1 -1
  368. package/esm/objects/cli/commands/ref.js +1 -1
  369. package/esm/objects/cli/commands/store.js +1 -1
  370. package/esm/objects/cli/utils.d.ts +2 -2
  371. package/esm/objects/cli/utils.js +4 -2
  372. package/esm/objects/orm/index.d.ts +0 -1
  373. package/esm/objects/orm/index.js +0 -1
  374. package/esm/objects/orm/models/commit.d.ts +2 -4
  375. package/esm/objects/orm/models/commit.js +6 -2
  376. package/esm/objects/orm/models/getAllRecord.d.ts +2 -4
  377. package/esm/objects/orm/models/getAllRecord.js +6 -2
  378. package/esm/objects/orm/models/object.d.ts +3 -5
  379. package/esm/objects/orm/models/object.js +7 -3
  380. package/esm/objects/orm/models/ref.d.ts +2 -4
  381. package/esm/objects/orm/models/ref.js +6 -2
  382. package/esm/objects/orm/models/store.d.ts +2 -4
  383. package/esm/objects/orm/models/store.js +6 -2
  384. package/esm/objects/orm/query-builder.d.ts +18 -1
  385. package/esm/objects/orm/query-builder.js +108 -1
  386. package/esm/objects/orm/select-types.d.ts +25 -1
  387. package/esm/public/cli/commands/agent-message.js +1 -1
  388. package/esm/public/cli/commands/agent-task.js +1 -1
  389. package/esm/public/cli/commands/agent-thread.js +1 -1
  390. package/esm/public/cli/commands/api-module.js +1 -1
  391. package/esm/public/cli/commands/api-schema.js +1 -1
  392. package/esm/public/cli/commands/api-setting.js +1 -1
  393. package/esm/public/cli/commands/api.js +1 -1
  394. package/esm/public/cli/commands/app-achievement.js +1 -1
  395. package/esm/public/cli/commands/app-admin-grant.js +1 -1
  396. package/esm/public/cli/commands/app-claimed-invite.js +1 -1
  397. package/esm/public/cli/commands/app-grant.js +1 -1
  398. package/esm/public/cli/commands/app-invite.js +1 -1
  399. package/esm/public/cli/commands/app-level-requirement.js +1 -1
  400. package/esm/public/cli/commands/app-level.js +1 -1
  401. package/esm/public/cli/commands/app-limit-cap.js +1 -1
  402. package/esm/public/cli/commands/app-limit-caps-default.js +1 -1
  403. package/esm/public/cli/commands/app-limit-credit-code-item.js +1 -1
  404. package/esm/public/cli/commands/app-limit-credit-code.js +1 -1
  405. package/esm/public/cli/commands/app-limit-credit-redemption.js +1 -1
  406. package/esm/public/cli/commands/app-limit-credit.js +1 -1
  407. package/esm/public/cli/commands/app-limit-default.js +1 -1
  408. package/esm/public/cli/commands/app-limit-event.js +1 -1
  409. package/esm/public/cli/commands/app-limit.js +1 -1
  410. package/esm/public/cli/commands/app-membership-default.js +1 -1
  411. package/esm/public/cli/commands/app-membership.js +1 -1
  412. package/esm/public/cli/commands/app-owner-grant.js +1 -1
  413. package/esm/public/cli/commands/app-permission-default.js +1 -1
  414. package/esm/public/cli/commands/app-permission.js +1 -1
  415. package/esm/public/cli/commands/app-step.js +1 -1
  416. package/esm/public/cli/commands/app.js +1 -1
  417. package/esm/public/cli/commands/ast-migration.js +1 -1
  418. package/esm/public/cli/commands/audit-log.js +1 -1
  419. package/esm/public/cli/commands/billing-module.js +1 -1
  420. package/esm/public/cli/commands/billing-provider-module.js +1 -1
  421. package/esm/public/cli/commands/blueprint-construction.js +1 -1
  422. package/esm/public/cli/commands/blueprint-template.js +1 -1
  423. package/esm/public/cli/commands/blueprint.js +1 -1
  424. package/esm/public/cli/commands/check-constraint.js +1 -1
  425. package/esm/public/cli/commands/commit.js +1 -1
  426. package/esm/public/cli/commands/connected-accounts-module.js +1 -1
  427. package/esm/public/cli/commands/cors-setting.js +1 -1
  428. package/esm/public/cli/commands/crypto-address.js +1 -1
  429. package/esm/public/cli/commands/crypto-addresses-module.js +1 -1
  430. package/esm/public/cli/commands/crypto-auth-module.js +1 -1
  431. package/esm/public/cli/commands/database-provision-module.js +1 -1
  432. package/esm/public/cli/commands/database-setting.js +1 -1
  433. package/esm/public/cli/commands/database-transfer.js +1 -1
  434. package/esm/public/cli/commands/database.js +1 -1
  435. package/esm/public/cli/commands/default-ids-module.js +1 -1
  436. package/esm/public/cli/commands/default-privilege.js +1 -1
  437. package/esm/public/cli/commands/denormalized-table-field.js +1 -1
  438. package/esm/public/cli/commands/devices-module.js +1 -1
  439. package/esm/public/cli/commands/domain.js +1 -1
  440. package/esm/public/cli/commands/email.js +1 -1
  441. package/esm/public/cli/commands/emails-module.js +1 -1
  442. package/esm/public/cli/commands/embedding-chunk.js +1 -1
  443. package/esm/public/cli/commands/encrypted-secrets-module.js +1 -1
  444. package/esm/public/cli/commands/entity-type-provision.js +1 -1
  445. package/esm/public/cli/commands/enum.js +1 -1
  446. package/esm/public/cli/commands/field.js +1 -1
  447. package/esm/public/cli/commands/foreign-key-constraint.js +1 -1
  448. package/esm/public/cli/commands/full-text-search.js +1 -1
  449. package/esm/public/cli/commands/function.js +1 -1
  450. package/esm/public/cli/commands/get-all-record.js +1 -1
  451. package/esm/public/cli/commands/hierarchy-module.js +1 -1
  452. package/esm/public/cli/commands/identity-provider.js +1 -1
  453. package/esm/public/cli/commands/identity-providers-module.js +1 -1
  454. package/esm/public/cli/commands/index.js +1 -1
  455. package/esm/public/cli/commands/invites-module.js +1 -1
  456. package/esm/public/cli/commands/levels-module.js +1 -1
  457. package/esm/public/cli/commands/limits-module.js +1 -1
  458. package/esm/public/cli/commands/membership-type.js +1 -1
  459. package/esm/public/cli/commands/membership-types-module.js +1 -1
  460. package/esm/public/cli/commands/memberships-module.js +1 -1
  461. package/esm/public/cli/commands/migrate-file.js +1 -1
  462. package/esm/public/cli/commands/node-type-registry.js +1 -1
  463. package/esm/public/cli/commands/notifications-module.js +1 -1
  464. package/esm/public/cli/commands/object.js +1 -1
  465. package/esm/public/cli/commands/org-admin-grant.js +1 -1
  466. package/esm/public/cli/commands/org-chart-edge-grant.js +1 -1
  467. package/esm/public/cli/commands/org-chart-edge.js +1 -1
  468. package/esm/public/cli/commands/org-claimed-invite.js +1 -1
  469. package/esm/public/cli/commands/org-get-managers-record.js +1 -1
  470. package/esm/public/cli/commands/org-get-subordinates-record.js +1 -1
  471. package/esm/public/cli/commands/org-grant.js +1 -1
  472. package/esm/public/cli/commands/org-invite.js +1 -1
  473. package/esm/public/cli/commands/org-limit-aggregate.js +1 -1
  474. package/esm/public/cli/commands/org-limit-cap.js +1 -1
  475. package/esm/public/cli/commands/org-limit-caps-default.js +1 -1
  476. package/esm/public/cli/commands/org-limit-credit.js +1 -1
  477. package/esm/public/cli/commands/org-limit-default.js +1 -1
  478. package/esm/public/cli/commands/org-limit-event.js +1 -1
  479. package/esm/public/cli/commands/org-limit.js +1 -1
  480. package/esm/public/cli/commands/org-member-profile.js +1 -1
  481. package/esm/public/cli/commands/org-member.js +1 -1
  482. package/esm/public/cli/commands/org-membership-default.js +1 -1
  483. package/esm/public/cli/commands/org-membership-setting.js +1 -1
  484. package/esm/public/cli/commands/org-membership.js +1 -1
  485. package/esm/public/cli/commands/org-owner-grant.js +1 -1
  486. package/esm/public/cli/commands/org-permission-default.js +1 -1
  487. package/esm/public/cli/commands/org-permission.js +1 -1
  488. package/esm/public/cli/commands/partition.js +1 -1
  489. package/esm/public/cli/commands/permissions-module.js +1 -1
  490. package/esm/public/cli/commands/phone-number.js +1 -1
  491. package/esm/public/cli/commands/phone-numbers-module.js +1 -1
  492. package/esm/public/cli/commands/plans-module.js +1 -1
  493. package/esm/public/cli/commands/policy.js +1 -1
  494. package/esm/public/cli/commands/primary-key-constraint.js +1 -1
  495. package/esm/public/cli/commands/profiles-module.js +1 -1
  496. package/esm/public/cli/commands/pubkey-setting.js +1 -1
  497. package/esm/public/cli/commands/rate-limits-module.js +1 -1
  498. package/esm/public/cli/commands/realtime-module.js +1 -1
  499. package/esm/public/cli/commands/ref.js +1 -1
  500. package/esm/public/cli/commands/relation-provision.js +1 -1
  501. package/esm/public/cli/commands/rls-module.js +1 -1
  502. package/esm/public/cli/commands/rls-setting.js +1 -1
  503. package/esm/public/cli/commands/role-type.js +1 -1
  504. package/esm/public/cli/commands/schema-grant.js +1 -1
  505. package/esm/public/cli/commands/schema.js +1 -1
  506. package/esm/public/cli/commands/secrets-module.js +1 -1
  507. package/esm/public/cli/commands/secure-table-provision.js +1 -1
  508. package/esm/public/cli/commands/session-secrets-module.js +1 -1
  509. package/esm/public/cli/commands/sessions-module.js +1 -1
  510. package/esm/public/cli/commands/site-metadatum.js +1 -1
  511. package/esm/public/cli/commands/site-module.js +1 -1
  512. package/esm/public/cli/commands/site-theme.js +1 -1
  513. package/esm/public/cli/commands/site.js +1 -1
  514. package/esm/public/cli/commands/spatial-relation.js +1 -1
  515. package/esm/public/cli/commands/sql-action.js +1 -1
  516. package/esm/public/cli/commands/storage-module.js +1 -1
  517. package/esm/public/cli/commands/store.js +1 -1
  518. package/esm/public/cli/commands/table-grant.js +1 -1
  519. package/esm/public/cli/commands/table.js +1 -1
  520. package/esm/public/cli/commands/trigger-function.js +1 -1
  521. package/esm/public/cli/commands/trigger.js +1 -1
  522. package/esm/public/cli/commands/unique-constraint.js +1 -1
  523. package/esm/public/cli/commands/usage-snapshot.js +1 -1
  524. package/esm/public/cli/commands/user-auth-module.js +1 -1
  525. package/esm/public/cli/commands/user-connected-account.js +1 -1
  526. package/esm/public/cli/commands/user.js +1 -1
  527. package/esm/public/cli/commands/users-module.js +1 -1
  528. package/esm/public/cli/commands/view-grant.js +1 -1
  529. package/esm/public/cli/commands/view-rule.js +1 -1
  530. package/esm/public/cli/commands/view-table.js +1 -1
  531. package/esm/public/cli/commands/view.js +1 -1
  532. package/esm/public/cli/commands/webauthn-auth-module.js +1 -1
  533. package/esm/public/cli/commands/webauthn-credential.js +1 -1
  534. package/esm/public/cli/commands/webauthn-credentials-module.js +1 -1
  535. package/esm/public/cli/commands/webauthn-setting.js +1 -1
  536. package/esm/public/cli/utils.d.ts +2 -2
  537. package/esm/public/cli/utils.js +4 -2
  538. package/esm/public/orm/index.d.ts +0 -1
  539. package/esm/public/orm/index.js +0 -1
  540. package/esm/public/orm/models/agentMessage.d.ts +2 -4
  541. package/esm/public/orm/models/agentMessage.js +6 -2
  542. package/esm/public/orm/models/agentTask.d.ts +2 -4
  543. package/esm/public/orm/models/agentTask.js +6 -2
  544. package/esm/public/orm/models/agentThread.d.ts +2 -4
  545. package/esm/public/orm/models/agentThread.js +6 -2
  546. package/esm/public/orm/models/api.d.ts +2 -4
  547. package/esm/public/orm/models/api.js +6 -2
  548. package/esm/public/orm/models/apiModule.d.ts +2 -4
  549. package/esm/public/orm/models/apiModule.js +6 -2
  550. package/esm/public/orm/models/apiSchema.d.ts +2 -4
  551. package/esm/public/orm/models/apiSchema.js +6 -2
  552. package/esm/public/orm/models/apiSetting.d.ts +2 -4
  553. package/esm/public/orm/models/apiSetting.js +6 -2
  554. package/esm/public/orm/models/app.d.ts +2 -4
  555. package/esm/public/orm/models/app.js +6 -2
  556. package/esm/public/orm/models/appAchievement.d.ts +2 -4
  557. package/esm/public/orm/models/appAchievement.js +6 -2
  558. package/esm/public/orm/models/appAdminGrant.d.ts +2 -4
  559. package/esm/public/orm/models/appAdminGrant.js +6 -2
  560. package/esm/public/orm/models/appClaimedInvite.d.ts +2 -4
  561. package/esm/public/orm/models/appClaimedInvite.js +6 -2
  562. package/esm/public/orm/models/appGrant.d.ts +2 -4
  563. package/esm/public/orm/models/appGrant.js +6 -2
  564. package/esm/public/orm/models/appInvite.d.ts +2 -4
  565. package/esm/public/orm/models/appInvite.js +6 -2
  566. package/esm/public/orm/models/appLevel.d.ts +2 -4
  567. package/esm/public/orm/models/appLevel.js +6 -2
  568. package/esm/public/orm/models/appLevelRequirement.d.ts +2 -4
  569. package/esm/public/orm/models/appLevelRequirement.js +6 -2
  570. package/esm/public/orm/models/appLimit.d.ts +2 -4
  571. package/esm/public/orm/models/appLimit.js +6 -2
  572. package/esm/public/orm/models/appLimitCap.d.ts +2 -4
  573. package/esm/public/orm/models/appLimitCap.js +6 -2
  574. package/esm/public/orm/models/appLimitCapsDefault.d.ts +2 -4
  575. package/esm/public/orm/models/appLimitCapsDefault.js +6 -2
  576. package/esm/public/orm/models/appLimitCredit.d.ts +2 -4
  577. package/esm/public/orm/models/appLimitCredit.js +6 -2
  578. package/esm/public/orm/models/appLimitCreditCode.d.ts +2 -4
  579. package/esm/public/orm/models/appLimitCreditCode.js +6 -2
  580. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +2 -4
  581. package/esm/public/orm/models/appLimitCreditCodeItem.js +6 -2
  582. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +2 -4
  583. package/esm/public/orm/models/appLimitCreditRedemption.js +6 -2
  584. package/esm/public/orm/models/appLimitDefault.d.ts +2 -4
  585. package/esm/public/orm/models/appLimitDefault.js +6 -2
  586. package/esm/public/orm/models/appLimitEvent.d.ts +2 -4
  587. package/esm/public/orm/models/appLimitEvent.js +6 -2
  588. package/esm/public/orm/models/appMembership.d.ts +2 -4
  589. package/esm/public/orm/models/appMembership.js +6 -2
  590. package/esm/public/orm/models/appMembershipDefault.d.ts +2 -4
  591. package/esm/public/orm/models/appMembershipDefault.js +6 -2
  592. package/esm/public/orm/models/appOwnerGrant.d.ts +2 -4
  593. package/esm/public/orm/models/appOwnerGrant.js +6 -2
  594. package/esm/public/orm/models/appPermission.d.ts +2 -4
  595. package/esm/public/orm/models/appPermission.js +6 -2
  596. package/esm/public/orm/models/appPermissionDefault.d.ts +2 -4
  597. package/esm/public/orm/models/appPermissionDefault.js +6 -2
  598. package/esm/public/orm/models/appStep.d.ts +2 -4
  599. package/esm/public/orm/models/appStep.js +6 -2
  600. package/esm/public/orm/models/astMigration.d.ts +2 -4
  601. package/esm/public/orm/models/astMigration.js +6 -2
  602. package/esm/public/orm/models/auditLog.d.ts +2 -4
  603. package/esm/public/orm/models/auditLog.js +6 -2
  604. package/esm/public/orm/models/billingModule.d.ts +2 -4
  605. package/esm/public/orm/models/billingModule.js +6 -2
  606. package/esm/public/orm/models/billingProviderModule.d.ts +2 -4
  607. package/esm/public/orm/models/billingProviderModule.js +6 -2
  608. package/esm/public/orm/models/blueprint.d.ts +2 -4
  609. package/esm/public/orm/models/blueprint.js +6 -2
  610. package/esm/public/orm/models/blueprintConstruction.d.ts +2 -4
  611. package/esm/public/orm/models/blueprintConstruction.js +6 -2
  612. package/esm/public/orm/models/blueprintTemplate.d.ts +2 -4
  613. package/esm/public/orm/models/blueprintTemplate.js +6 -2
  614. package/esm/public/orm/models/checkConstraint.d.ts +2 -4
  615. package/esm/public/orm/models/checkConstraint.js +6 -2
  616. package/esm/public/orm/models/commit.d.ts +2 -4
  617. package/esm/public/orm/models/commit.js +6 -2
  618. package/esm/public/orm/models/connectedAccountsModule.d.ts +2 -4
  619. package/esm/public/orm/models/connectedAccountsModule.js +6 -2
  620. package/esm/public/orm/models/corsSetting.d.ts +2 -4
  621. package/esm/public/orm/models/corsSetting.js +6 -2
  622. package/esm/public/orm/models/cryptoAddress.d.ts +2 -4
  623. package/esm/public/orm/models/cryptoAddress.js +6 -2
  624. package/esm/public/orm/models/cryptoAddressesModule.d.ts +2 -4
  625. package/esm/public/orm/models/cryptoAddressesModule.js +6 -2
  626. package/esm/public/orm/models/cryptoAuthModule.d.ts +2 -4
  627. package/esm/public/orm/models/cryptoAuthModule.js +6 -2
  628. package/esm/public/orm/models/database.d.ts +2 -4
  629. package/esm/public/orm/models/database.js +6 -2
  630. package/esm/public/orm/models/databaseProvisionModule.d.ts +2 -4
  631. package/esm/public/orm/models/databaseProvisionModule.js +6 -2
  632. package/esm/public/orm/models/databaseSetting.d.ts +2 -4
  633. package/esm/public/orm/models/databaseSetting.js +6 -2
  634. package/esm/public/orm/models/databaseTransfer.d.ts +2 -4
  635. package/esm/public/orm/models/databaseTransfer.js +6 -2
  636. package/esm/public/orm/models/defaultIdsModule.d.ts +2 -4
  637. package/esm/public/orm/models/defaultIdsModule.js +6 -2
  638. package/esm/public/orm/models/defaultPrivilege.d.ts +2 -4
  639. package/esm/public/orm/models/defaultPrivilege.js +6 -2
  640. package/esm/public/orm/models/denormalizedTableField.d.ts +2 -4
  641. package/esm/public/orm/models/denormalizedTableField.js +6 -2
  642. package/esm/public/orm/models/devicesModule.d.ts +2 -4
  643. package/esm/public/orm/models/devicesModule.js +6 -2
  644. package/esm/public/orm/models/domain.d.ts +2 -4
  645. package/esm/public/orm/models/domain.js +6 -2
  646. package/esm/public/orm/models/email.d.ts +2 -4
  647. package/esm/public/orm/models/email.js +6 -2
  648. package/esm/public/orm/models/emailsModule.d.ts +2 -4
  649. package/esm/public/orm/models/emailsModule.js +6 -2
  650. package/esm/public/orm/models/embeddingChunk.d.ts +2 -4
  651. package/esm/public/orm/models/embeddingChunk.js +6 -2
  652. package/esm/public/orm/models/encryptedSecretsModule.d.ts +2 -4
  653. package/esm/public/orm/models/encryptedSecretsModule.js +6 -2
  654. package/esm/public/orm/models/entityTypeProvision.d.ts +2 -4
  655. package/esm/public/orm/models/entityTypeProvision.js +6 -2
  656. package/esm/public/orm/models/enum.d.ts +2 -4
  657. package/esm/public/orm/models/enum.js +6 -2
  658. package/esm/public/orm/models/field.d.ts +2 -4
  659. package/esm/public/orm/models/field.js +6 -2
  660. package/esm/public/orm/models/foreignKeyConstraint.d.ts +2 -4
  661. package/esm/public/orm/models/foreignKeyConstraint.js +6 -2
  662. package/esm/public/orm/models/fullTextSearch.d.ts +2 -4
  663. package/esm/public/orm/models/fullTextSearch.js +6 -2
  664. package/esm/public/orm/models/function.d.ts +2 -4
  665. package/esm/public/orm/models/function.js +6 -2
  666. package/esm/public/orm/models/getAllRecord.d.ts +2 -4
  667. package/esm/public/orm/models/getAllRecord.js +6 -2
  668. package/esm/public/orm/models/hierarchyModule.d.ts +2 -4
  669. package/esm/public/orm/models/hierarchyModule.js +6 -2
  670. package/esm/public/orm/models/identityProvider.d.ts +2 -4
  671. package/esm/public/orm/models/identityProvider.js +6 -2
  672. package/esm/public/orm/models/identityProvidersModule.d.ts +2 -4
  673. package/esm/public/orm/models/identityProvidersModule.js +6 -2
  674. package/esm/public/orm/models/indexModel.d.ts +2 -4
  675. package/esm/public/orm/models/indexModel.js +6 -2
  676. package/esm/public/orm/models/invitesModule.d.ts +2 -4
  677. package/esm/public/orm/models/invitesModule.js +6 -2
  678. package/esm/public/orm/models/levelsModule.d.ts +2 -4
  679. package/esm/public/orm/models/levelsModule.js +6 -2
  680. package/esm/public/orm/models/limitsModule.d.ts +2 -4
  681. package/esm/public/orm/models/limitsModule.js +6 -2
  682. package/esm/public/orm/models/membershipType.d.ts +2 -4
  683. package/esm/public/orm/models/membershipType.js +6 -2
  684. package/esm/public/orm/models/membershipTypesModule.d.ts +2 -4
  685. package/esm/public/orm/models/membershipTypesModule.js +6 -2
  686. package/esm/public/orm/models/membershipsModule.d.ts +2 -4
  687. package/esm/public/orm/models/membershipsModule.js +6 -2
  688. package/esm/public/orm/models/migrateFile.d.ts +2 -4
  689. package/esm/public/orm/models/migrateFile.js +6 -2
  690. package/esm/public/orm/models/nodeTypeRegistry.d.ts +2 -4
  691. package/esm/public/orm/models/nodeTypeRegistry.js +6 -2
  692. package/esm/public/orm/models/notificationsModule.d.ts +2 -4
  693. package/esm/public/orm/models/notificationsModule.js +6 -2
  694. package/esm/public/orm/models/object.d.ts +3 -5
  695. package/esm/public/orm/models/object.js +7 -3
  696. package/esm/public/orm/models/orgAdminGrant.d.ts +2 -4
  697. package/esm/public/orm/models/orgAdminGrant.js +6 -2
  698. package/esm/public/orm/models/orgChartEdge.d.ts +2 -4
  699. package/esm/public/orm/models/orgChartEdge.js +6 -2
  700. package/esm/public/orm/models/orgChartEdgeGrant.d.ts +2 -4
  701. package/esm/public/orm/models/orgChartEdgeGrant.js +6 -2
  702. package/esm/public/orm/models/orgClaimedInvite.d.ts +2 -4
  703. package/esm/public/orm/models/orgClaimedInvite.js +6 -2
  704. package/esm/public/orm/models/orgGetManagersRecord.d.ts +2 -4
  705. package/esm/public/orm/models/orgGetManagersRecord.js +6 -2
  706. package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +2 -4
  707. package/esm/public/orm/models/orgGetSubordinatesRecord.js +6 -2
  708. package/esm/public/orm/models/orgGrant.d.ts +2 -4
  709. package/esm/public/orm/models/orgGrant.js +6 -2
  710. package/esm/public/orm/models/orgInvite.d.ts +2 -4
  711. package/esm/public/orm/models/orgInvite.js +6 -2
  712. package/esm/public/orm/models/orgLimit.d.ts +2 -4
  713. package/esm/public/orm/models/orgLimit.js +6 -2
  714. package/esm/public/orm/models/orgLimitAggregate.d.ts +2 -4
  715. package/esm/public/orm/models/orgLimitAggregate.js +6 -2
  716. package/esm/public/orm/models/orgLimitCap.d.ts +2 -4
  717. package/esm/public/orm/models/orgLimitCap.js +6 -2
  718. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +2 -4
  719. package/esm/public/orm/models/orgLimitCapsDefault.js +6 -2
  720. package/esm/public/orm/models/orgLimitCredit.d.ts +2 -4
  721. package/esm/public/orm/models/orgLimitCredit.js +6 -2
  722. package/esm/public/orm/models/orgLimitDefault.d.ts +2 -4
  723. package/esm/public/orm/models/orgLimitDefault.js +6 -2
  724. package/esm/public/orm/models/orgLimitEvent.d.ts +2 -4
  725. package/esm/public/orm/models/orgLimitEvent.js +6 -2
  726. package/esm/public/orm/models/orgMember.d.ts +2 -4
  727. package/esm/public/orm/models/orgMember.js +6 -2
  728. package/esm/public/orm/models/orgMemberProfile.d.ts +2 -4
  729. package/esm/public/orm/models/orgMemberProfile.js +6 -2
  730. package/esm/public/orm/models/orgMembership.d.ts +2 -4
  731. package/esm/public/orm/models/orgMembership.js +6 -2
  732. package/esm/public/orm/models/orgMembershipDefault.d.ts +2 -4
  733. package/esm/public/orm/models/orgMembershipDefault.js +6 -2
  734. package/esm/public/orm/models/orgMembershipSetting.d.ts +2 -4
  735. package/esm/public/orm/models/orgMembershipSetting.js +6 -2
  736. package/esm/public/orm/models/orgOwnerGrant.d.ts +2 -4
  737. package/esm/public/orm/models/orgOwnerGrant.js +6 -2
  738. package/esm/public/orm/models/orgPermission.d.ts +2 -4
  739. package/esm/public/orm/models/orgPermission.js +6 -2
  740. package/esm/public/orm/models/orgPermissionDefault.d.ts +2 -4
  741. package/esm/public/orm/models/orgPermissionDefault.js +6 -2
  742. package/esm/public/orm/models/partition.d.ts +2 -4
  743. package/esm/public/orm/models/partition.js +6 -2
  744. package/esm/public/orm/models/permissionsModule.d.ts +2 -4
  745. package/esm/public/orm/models/permissionsModule.js +6 -2
  746. package/esm/public/orm/models/phoneNumber.d.ts +2 -4
  747. package/esm/public/orm/models/phoneNumber.js +6 -2
  748. package/esm/public/orm/models/phoneNumbersModule.d.ts +2 -4
  749. package/esm/public/orm/models/phoneNumbersModule.js +6 -2
  750. package/esm/public/orm/models/plansModule.d.ts +2 -4
  751. package/esm/public/orm/models/plansModule.js +6 -2
  752. package/esm/public/orm/models/policy.d.ts +2 -4
  753. package/esm/public/orm/models/policy.js +6 -2
  754. package/esm/public/orm/models/primaryKeyConstraint.d.ts +2 -4
  755. package/esm/public/orm/models/primaryKeyConstraint.js +6 -2
  756. package/esm/public/orm/models/profilesModule.d.ts +2 -4
  757. package/esm/public/orm/models/profilesModule.js +6 -2
  758. package/esm/public/orm/models/pubkeySetting.d.ts +2 -4
  759. package/esm/public/orm/models/pubkeySetting.js +6 -2
  760. package/esm/public/orm/models/rateLimitsModule.d.ts +2 -4
  761. package/esm/public/orm/models/rateLimitsModule.js +6 -2
  762. package/esm/public/orm/models/realtimeModule.d.ts +2 -4
  763. package/esm/public/orm/models/realtimeModule.js +6 -2
  764. package/esm/public/orm/models/ref.d.ts +2 -4
  765. package/esm/public/orm/models/ref.js +6 -2
  766. package/esm/public/orm/models/relationProvision.d.ts +2 -4
  767. package/esm/public/orm/models/relationProvision.js +6 -2
  768. package/esm/public/orm/models/rlsModule.d.ts +2 -4
  769. package/esm/public/orm/models/rlsModule.js +6 -2
  770. package/esm/public/orm/models/rlsSetting.d.ts +2 -4
  771. package/esm/public/orm/models/rlsSetting.js +6 -2
  772. package/esm/public/orm/models/roleType.d.ts +2 -4
  773. package/esm/public/orm/models/roleType.js +6 -2
  774. package/esm/public/orm/models/schema.d.ts +2 -4
  775. package/esm/public/orm/models/schema.js +6 -2
  776. package/esm/public/orm/models/schemaGrant.d.ts +2 -4
  777. package/esm/public/orm/models/schemaGrant.js +6 -2
  778. package/esm/public/orm/models/secretsModule.d.ts +2 -4
  779. package/esm/public/orm/models/secretsModule.js +6 -2
  780. package/esm/public/orm/models/secureTableProvision.d.ts +2 -4
  781. package/esm/public/orm/models/secureTableProvision.js +6 -2
  782. package/esm/public/orm/models/sessionSecretsModule.d.ts +2 -4
  783. package/esm/public/orm/models/sessionSecretsModule.js +6 -2
  784. package/esm/public/orm/models/sessionsModule.d.ts +2 -4
  785. package/esm/public/orm/models/sessionsModule.js +6 -2
  786. package/esm/public/orm/models/site.d.ts +2 -4
  787. package/esm/public/orm/models/site.js +6 -2
  788. package/esm/public/orm/models/siteMetadatum.d.ts +2 -4
  789. package/esm/public/orm/models/siteMetadatum.js +6 -2
  790. package/esm/public/orm/models/siteModule.d.ts +2 -4
  791. package/esm/public/orm/models/siteModule.js +6 -2
  792. package/esm/public/orm/models/siteTheme.d.ts +2 -4
  793. package/esm/public/orm/models/siteTheme.js +6 -2
  794. package/esm/public/orm/models/spatialRelation.d.ts +2 -4
  795. package/esm/public/orm/models/spatialRelation.js +6 -2
  796. package/esm/public/orm/models/sqlAction.d.ts +2 -4
  797. package/esm/public/orm/models/sqlAction.js +6 -2
  798. package/esm/public/orm/models/storageModule.d.ts +2 -4
  799. package/esm/public/orm/models/storageModule.js +6 -2
  800. package/esm/public/orm/models/store.d.ts +2 -4
  801. package/esm/public/orm/models/store.js +6 -2
  802. package/esm/public/orm/models/table.d.ts +2 -4
  803. package/esm/public/orm/models/table.js +6 -2
  804. package/esm/public/orm/models/tableGrant.d.ts +2 -4
  805. package/esm/public/orm/models/tableGrant.js +6 -2
  806. package/esm/public/orm/models/trigger.d.ts +2 -4
  807. package/esm/public/orm/models/trigger.js +6 -2
  808. package/esm/public/orm/models/triggerFunction.d.ts +2 -4
  809. package/esm/public/orm/models/triggerFunction.js +6 -2
  810. package/esm/public/orm/models/uniqueConstraint.d.ts +2 -4
  811. package/esm/public/orm/models/uniqueConstraint.js +6 -2
  812. package/esm/public/orm/models/usageSnapshot.d.ts +2 -4
  813. package/esm/public/orm/models/usageSnapshot.js +6 -2
  814. package/esm/public/orm/models/user.d.ts +2 -4
  815. package/esm/public/orm/models/user.js +6 -2
  816. package/esm/public/orm/models/userAuthModule.d.ts +2 -4
  817. package/esm/public/orm/models/userAuthModule.js +6 -2
  818. package/esm/public/orm/models/userConnectedAccount.d.ts +2 -4
  819. package/esm/public/orm/models/userConnectedAccount.js +6 -2
  820. package/esm/public/orm/models/usersModule.d.ts +2 -4
  821. package/esm/public/orm/models/usersModule.js +6 -2
  822. package/esm/public/orm/models/view.d.ts +2 -4
  823. package/esm/public/orm/models/view.js +6 -2
  824. package/esm/public/orm/models/viewGrant.d.ts +2 -4
  825. package/esm/public/orm/models/viewGrant.js +6 -2
  826. package/esm/public/orm/models/viewRule.d.ts +2 -4
  827. package/esm/public/orm/models/viewRule.js +6 -2
  828. package/esm/public/orm/models/viewTable.d.ts +2 -4
  829. package/esm/public/orm/models/viewTable.js +6 -2
  830. package/esm/public/orm/models/webauthnAuthModule.d.ts +2 -4
  831. package/esm/public/orm/models/webauthnAuthModule.js +6 -2
  832. package/esm/public/orm/models/webauthnCredential.d.ts +2 -4
  833. package/esm/public/orm/models/webauthnCredential.js +6 -2
  834. package/esm/public/orm/models/webauthnCredentialsModule.d.ts +2 -4
  835. package/esm/public/orm/models/webauthnCredentialsModule.js +6 -2
  836. package/esm/public/orm/models/webauthnSetting.d.ts +2 -4
  837. package/esm/public/orm/models/webauthnSetting.js +6 -2
  838. package/esm/public/orm/query-builder.d.ts +18 -1
  839. package/esm/public/orm/query-builder.js +108 -1
  840. package/esm/public/orm/select-types.d.ts +25 -1
  841. package/objects/cli/commands/commit.js +1 -1
  842. package/objects/cli/commands/get-all-record.js +1 -1
  843. package/objects/cli/commands/object.js +1 -1
  844. package/objects/cli/commands/ref.js +1 -1
  845. package/objects/cli/commands/store.js +1 -1
  846. package/objects/cli/utils.d.ts +2 -2
  847. package/objects/cli/utils.js +4 -2
  848. package/objects/orm/index.d.ts +0 -1
  849. package/objects/orm/index.js +1 -3
  850. package/objects/orm/models/commit.d.ts +2 -4
  851. package/objects/orm/models/commit.js +6 -2
  852. package/objects/orm/models/getAllRecord.d.ts +2 -4
  853. package/objects/orm/models/getAllRecord.js +6 -2
  854. package/objects/orm/models/object.d.ts +3 -5
  855. package/objects/orm/models/object.js +7 -3
  856. package/objects/orm/models/ref.d.ts +2 -4
  857. package/objects/orm/models/ref.js +6 -2
  858. package/objects/orm/models/store.d.ts +2 -4
  859. package/objects/orm/models/store.js +6 -2
  860. package/objects/orm/query-builder.d.ts +18 -1
  861. package/objects/orm/query-builder.js +112 -1
  862. package/objects/orm/select-types.d.ts +25 -1
  863. package/package.json +4 -4
  864. package/public/cli/commands/agent-message.js +1 -1
  865. package/public/cli/commands/agent-task.js +1 -1
  866. package/public/cli/commands/agent-thread.js +1 -1
  867. package/public/cli/commands/api-module.js +1 -1
  868. package/public/cli/commands/api-schema.js +1 -1
  869. package/public/cli/commands/api-setting.js +1 -1
  870. package/public/cli/commands/api.js +1 -1
  871. package/public/cli/commands/app-achievement.js +1 -1
  872. package/public/cli/commands/app-admin-grant.js +1 -1
  873. package/public/cli/commands/app-claimed-invite.js +1 -1
  874. package/public/cli/commands/app-grant.js +1 -1
  875. package/public/cli/commands/app-invite.js +1 -1
  876. package/public/cli/commands/app-level-requirement.js +1 -1
  877. package/public/cli/commands/app-level.js +1 -1
  878. package/public/cli/commands/app-limit-cap.js +1 -1
  879. package/public/cli/commands/app-limit-caps-default.js +1 -1
  880. package/public/cli/commands/app-limit-credit-code-item.js +1 -1
  881. package/public/cli/commands/app-limit-credit-code.js +1 -1
  882. package/public/cli/commands/app-limit-credit-redemption.js +1 -1
  883. package/public/cli/commands/app-limit-credit.js +1 -1
  884. package/public/cli/commands/app-limit-default.js +1 -1
  885. package/public/cli/commands/app-limit-event.js +1 -1
  886. package/public/cli/commands/app-limit.js +1 -1
  887. package/public/cli/commands/app-membership-default.js +1 -1
  888. package/public/cli/commands/app-membership.js +1 -1
  889. package/public/cli/commands/app-owner-grant.js +1 -1
  890. package/public/cli/commands/app-permission-default.js +1 -1
  891. package/public/cli/commands/app-permission.js +1 -1
  892. package/public/cli/commands/app-step.js +1 -1
  893. package/public/cli/commands/app.js +1 -1
  894. package/public/cli/commands/ast-migration.js +1 -1
  895. package/public/cli/commands/audit-log.js +1 -1
  896. package/public/cli/commands/billing-module.js +1 -1
  897. package/public/cli/commands/billing-provider-module.js +1 -1
  898. package/public/cli/commands/blueprint-construction.js +1 -1
  899. package/public/cli/commands/blueprint-template.js +1 -1
  900. package/public/cli/commands/blueprint.js +1 -1
  901. package/public/cli/commands/check-constraint.js +1 -1
  902. package/public/cli/commands/commit.js +1 -1
  903. package/public/cli/commands/connected-accounts-module.js +1 -1
  904. package/public/cli/commands/cors-setting.js +1 -1
  905. package/public/cli/commands/crypto-address.js +1 -1
  906. package/public/cli/commands/crypto-addresses-module.js +1 -1
  907. package/public/cli/commands/crypto-auth-module.js +1 -1
  908. package/public/cli/commands/database-provision-module.js +1 -1
  909. package/public/cli/commands/database-setting.js +1 -1
  910. package/public/cli/commands/database-transfer.js +1 -1
  911. package/public/cli/commands/database.js +1 -1
  912. package/public/cli/commands/default-ids-module.js +1 -1
  913. package/public/cli/commands/default-privilege.js +1 -1
  914. package/public/cli/commands/denormalized-table-field.js +1 -1
  915. package/public/cli/commands/devices-module.js +1 -1
  916. package/public/cli/commands/domain.js +1 -1
  917. package/public/cli/commands/email.js +1 -1
  918. package/public/cli/commands/emails-module.js +1 -1
  919. package/public/cli/commands/embedding-chunk.js +1 -1
  920. package/public/cli/commands/encrypted-secrets-module.js +1 -1
  921. package/public/cli/commands/entity-type-provision.js +1 -1
  922. package/public/cli/commands/enum.js +1 -1
  923. package/public/cli/commands/field.js +1 -1
  924. package/public/cli/commands/foreign-key-constraint.js +1 -1
  925. package/public/cli/commands/full-text-search.js +1 -1
  926. package/public/cli/commands/function.js +1 -1
  927. package/public/cli/commands/get-all-record.js +1 -1
  928. package/public/cli/commands/hierarchy-module.js +1 -1
  929. package/public/cli/commands/identity-provider.js +1 -1
  930. package/public/cli/commands/identity-providers-module.js +1 -1
  931. package/public/cli/commands/index.js +1 -1
  932. package/public/cli/commands/invites-module.js +1 -1
  933. package/public/cli/commands/levels-module.js +1 -1
  934. package/public/cli/commands/limits-module.js +1 -1
  935. package/public/cli/commands/membership-type.js +1 -1
  936. package/public/cli/commands/membership-types-module.js +1 -1
  937. package/public/cli/commands/memberships-module.js +1 -1
  938. package/public/cli/commands/migrate-file.js +1 -1
  939. package/public/cli/commands/node-type-registry.js +1 -1
  940. package/public/cli/commands/notifications-module.js +1 -1
  941. package/public/cli/commands/object.js +1 -1
  942. package/public/cli/commands/org-admin-grant.js +1 -1
  943. package/public/cli/commands/org-chart-edge-grant.js +1 -1
  944. package/public/cli/commands/org-chart-edge.js +1 -1
  945. package/public/cli/commands/org-claimed-invite.js +1 -1
  946. package/public/cli/commands/org-get-managers-record.js +1 -1
  947. package/public/cli/commands/org-get-subordinates-record.js +1 -1
  948. package/public/cli/commands/org-grant.js +1 -1
  949. package/public/cli/commands/org-invite.js +1 -1
  950. package/public/cli/commands/org-limit-aggregate.js +1 -1
  951. package/public/cli/commands/org-limit-cap.js +1 -1
  952. package/public/cli/commands/org-limit-caps-default.js +1 -1
  953. package/public/cli/commands/org-limit-credit.js +1 -1
  954. package/public/cli/commands/org-limit-default.js +1 -1
  955. package/public/cli/commands/org-limit-event.js +1 -1
  956. package/public/cli/commands/org-limit.js +1 -1
  957. package/public/cli/commands/org-member-profile.js +1 -1
  958. package/public/cli/commands/org-member.js +1 -1
  959. package/public/cli/commands/org-membership-default.js +1 -1
  960. package/public/cli/commands/org-membership-setting.js +1 -1
  961. package/public/cli/commands/org-membership.js +1 -1
  962. package/public/cli/commands/org-owner-grant.js +1 -1
  963. package/public/cli/commands/org-permission-default.js +1 -1
  964. package/public/cli/commands/org-permission.js +1 -1
  965. package/public/cli/commands/partition.js +1 -1
  966. package/public/cli/commands/permissions-module.js +1 -1
  967. package/public/cli/commands/phone-number.js +1 -1
  968. package/public/cli/commands/phone-numbers-module.js +1 -1
  969. package/public/cli/commands/plans-module.js +1 -1
  970. package/public/cli/commands/policy.js +1 -1
  971. package/public/cli/commands/primary-key-constraint.js +1 -1
  972. package/public/cli/commands/profiles-module.js +1 -1
  973. package/public/cli/commands/pubkey-setting.js +1 -1
  974. package/public/cli/commands/rate-limits-module.js +1 -1
  975. package/public/cli/commands/realtime-module.js +1 -1
  976. package/public/cli/commands/ref.js +1 -1
  977. package/public/cli/commands/relation-provision.js +1 -1
  978. package/public/cli/commands/rls-module.js +1 -1
  979. package/public/cli/commands/rls-setting.js +1 -1
  980. package/public/cli/commands/role-type.js +1 -1
  981. package/public/cli/commands/schema-grant.js +1 -1
  982. package/public/cli/commands/schema.js +1 -1
  983. package/public/cli/commands/secrets-module.js +1 -1
  984. package/public/cli/commands/secure-table-provision.js +1 -1
  985. package/public/cli/commands/session-secrets-module.js +1 -1
  986. package/public/cli/commands/sessions-module.js +1 -1
  987. package/public/cli/commands/site-metadatum.js +1 -1
  988. package/public/cli/commands/site-module.js +1 -1
  989. package/public/cli/commands/site-theme.js +1 -1
  990. package/public/cli/commands/site.js +1 -1
  991. package/public/cli/commands/spatial-relation.js +1 -1
  992. package/public/cli/commands/sql-action.js +1 -1
  993. package/public/cli/commands/storage-module.js +1 -1
  994. package/public/cli/commands/store.js +1 -1
  995. package/public/cli/commands/table-grant.js +1 -1
  996. package/public/cli/commands/table.js +1 -1
  997. package/public/cli/commands/trigger-function.js +1 -1
  998. package/public/cli/commands/trigger.js +1 -1
  999. package/public/cli/commands/unique-constraint.js +1 -1
  1000. package/public/cli/commands/usage-snapshot.js +1 -1
  1001. package/public/cli/commands/user-auth-module.js +1 -1
  1002. package/public/cli/commands/user-connected-account.js +1 -1
  1003. package/public/cli/commands/user.js +1 -1
  1004. package/public/cli/commands/users-module.js +1 -1
  1005. package/public/cli/commands/view-grant.js +1 -1
  1006. package/public/cli/commands/view-rule.js +1 -1
  1007. package/public/cli/commands/view-table.js +1 -1
  1008. package/public/cli/commands/view.js +1 -1
  1009. package/public/cli/commands/webauthn-auth-module.js +1 -1
  1010. package/public/cli/commands/webauthn-credential.js +1 -1
  1011. package/public/cli/commands/webauthn-credentials-module.js +1 -1
  1012. package/public/cli/commands/webauthn-setting.js +1 -1
  1013. package/public/cli/utils.d.ts +2 -2
  1014. package/public/cli/utils.js +4 -2
  1015. package/public/orm/index.d.ts +0 -1
  1016. package/public/orm/index.js +1 -3
  1017. package/public/orm/models/agentMessage.d.ts +2 -4
  1018. package/public/orm/models/agentMessage.js +6 -2
  1019. package/public/orm/models/agentTask.d.ts +2 -4
  1020. package/public/orm/models/agentTask.js +6 -2
  1021. package/public/orm/models/agentThread.d.ts +2 -4
  1022. package/public/orm/models/agentThread.js +6 -2
  1023. package/public/orm/models/api.d.ts +2 -4
  1024. package/public/orm/models/api.js +6 -2
  1025. package/public/orm/models/apiModule.d.ts +2 -4
  1026. package/public/orm/models/apiModule.js +6 -2
  1027. package/public/orm/models/apiSchema.d.ts +2 -4
  1028. package/public/orm/models/apiSchema.js +6 -2
  1029. package/public/orm/models/apiSetting.d.ts +2 -4
  1030. package/public/orm/models/apiSetting.js +6 -2
  1031. package/public/orm/models/app.d.ts +2 -4
  1032. package/public/orm/models/app.js +6 -2
  1033. package/public/orm/models/appAchievement.d.ts +2 -4
  1034. package/public/orm/models/appAchievement.js +6 -2
  1035. package/public/orm/models/appAdminGrant.d.ts +2 -4
  1036. package/public/orm/models/appAdminGrant.js +6 -2
  1037. package/public/orm/models/appClaimedInvite.d.ts +2 -4
  1038. package/public/orm/models/appClaimedInvite.js +6 -2
  1039. package/public/orm/models/appGrant.d.ts +2 -4
  1040. package/public/orm/models/appGrant.js +6 -2
  1041. package/public/orm/models/appInvite.d.ts +2 -4
  1042. package/public/orm/models/appInvite.js +6 -2
  1043. package/public/orm/models/appLevel.d.ts +2 -4
  1044. package/public/orm/models/appLevel.js +6 -2
  1045. package/public/orm/models/appLevelRequirement.d.ts +2 -4
  1046. package/public/orm/models/appLevelRequirement.js +6 -2
  1047. package/public/orm/models/appLimit.d.ts +2 -4
  1048. package/public/orm/models/appLimit.js +6 -2
  1049. package/public/orm/models/appLimitCap.d.ts +2 -4
  1050. package/public/orm/models/appLimitCap.js +6 -2
  1051. package/public/orm/models/appLimitCapsDefault.d.ts +2 -4
  1052. package/public/orm/models/appLimitCapsDefault.js +6 -2
  1053. package/public/orm/models/appLimitCredit.d.ts +2 -4
  1054. package/public/orm/models/appLimitCredit.js +6 -2
  1055. package/public/orm/models/appLimitCreditCode.d.ts +2 -4
  1056. package/public/orm/models/appLimitCreditCode.js +6 -2
  1057. package/public/orm/models/appLimitCreditCodeItem.d.ts +2 -4
  1058. package/public/orm/models/appLimitCreditCodeItem.js +6 -2
  1059. package/public/orm/models/appLimitCreditRedemption.d.ts +2 -4
  1060. package/public/orm/models/appLimitCreditRedemption.js +6 -2
  1061. package/public/orm/models/appLimitDefault.d.ts +2 -4
  1062. package/public/orm/models/appLimitDefault.js +6 -2
  1063. package/public/orm/models/appLimitEvent.d.ts +2 -4
  1064. package/public/orm/models/appLimitEvent.js +6 -2
  1065. package/public/orm/models/appMembership.d.ts +2 -4
  1066. package/public/orm/models/appMembership.js +6 -2
  1067. package/public/orm/models/appMembershipDefault.d.ts +2 -4
  1068. package/public/orm/models/appMembershipDefault.js +6 -2
  1069. package/public/orm/models/appOwnerGrant.d.ts +2 -4
  1070. package/public/orm/models/appOwnerGrant.js +6 -2
  1071. package/public/orm/models/appPermission.d.ts +2 -4
  1072. package/public/orm/models/appPermission.js +6 -2
  1073. package/public/orm/models/appPermissionDefault.d.ts +2 -4
  1074. package/public/orm/models/appPermissionDefault.js +6 -2
  1075. package/public/orm/models/appStep.d.ts +2 -4
  1076. package/public/orm/models/appStep.js +6 -2
  1077. package/public/orm/models/astMigration.d.ts +2 -4
  1078. package/public/orm/models/astMigration.js +6 -2
  1079. package/public/orm/models/auditLog.d.ts +2 -4
  1080. package/public/orm/models/auditLog.js +6 -2
  1081. package/public/orm/models/billingModule.d.ts +2 -4
  1082. package/public/orm/models/billingModule.js +6 -2
  1083. package/public/orm/models/billingProviderModule.d.ts +2 -4
  1084. package/public/orm/models/billingProviderModule.js +6 -2
  1085. package/public/orm/models/blueprint.d.ts +2 -4
  1086. package/public/orm/models/blueprint.js +6 -2
  1087. package/public/orm/models/blueprintConstruction.d.ts +2 -4
  1088. package/public/orm/models/blueprintConstruction.js +6 -2
  1089. package/public/orm/models/blueprintTemplate.d.ts +2 -4
  1090. package/public/orm/models/blueprintTemplate.js +6 -2
  1091. package/public/orm/models/checkConstraint.d.ts +2 -4
  1092. package/public/orm/models/checkConstraint.js +6 -2
  1093. package/public/orm/models/commit.d.ts +2 -4
  1094. package/public/orm/models/commit.js +6 -2
  1095. package/public/orm/models/connectedAccountsModule.d.ts +2 -4
  1096. package/public/orm/models/connectedAccountsModule.js +6 -2
  1097. package/public/orm/models/corsSetting.d.ts +2 -4
  1098. package/public/orm/models/corsSetting.js +6 -2
  1099. package/public/orm/models/cryptoAddress.d.ts +2 -4
  1100. package/public/orm/models/cryptoAddress.js +6 -2
  1101. package/public/orm/models/cryptoAddressesModule.d.ts +2 -4
  1102. package/public/orm/models/cryptoAddressesModule.js +6 -2
  1103. package/public/orm/models/cryptoAuthModule.d.ts +2 -4
  1104. package/public/orm/models/cryptoAuthModule.js +6 -2
  1105. package/public/orm/models/database.d.ts +2 -4
  1106. package/public/orm/models/database.js +6 -2
  1107. package/public/orm/models/databaseProvisionModule.d.ts +2 -4
  1108. package/public/orm/models/databaseProvisionModule.js +6 -2
  1109. package/public/orm/models/databaseSetting.d.ts +2 -4
  1110. package/public/orm/models/databaseSetting.js +6 -2
  1111. package/public/orm/models/databaseTransfer.d.ts +2 -4
  1112. package/public/orm/models/databaseTransfer.js +6 -2
  1113. package/public/orm/models/defaultIdsModule.d.ts +2 -4
  1114. package/public/orm/models/defaultIdsModule.js +6 -2
  1115. package/public/orm/models/defaultPrivilege.d.ts +2 -4
  1116. package/public/orm/models/defaultPrivilege.js +6 -2
  1117. package/public/orm/models/denormalizedTableField.d.ts +2 -4
  1118. package/public/orm/models/denormalizedTableField.js +6 -2
  1119. package/public/orm/models/devicesModule.d.ts +2 -4
  1120. package/public/orm/models/devicesModule.js +6 -2
  1121. package/public/orm/models/domain.d.ts +2 -4
  1122. package/public/orm/models/domain.js +6 -2
  1123. package/public/orm/models/email.d.ts +2 -4
  1124. package/public/orm/models/email.js +6 -2
  1125. package/public/orm/models/emailsModule.d.ts +2 -4
  1126. package/public/orm/models/emailsModule.js +6 -2
  1127. package/public/orm/models/embeddingChunk.d.ts +2 -4
  1128. package/public/orm/models/embeddingChunk.js +6 -2
  1129. package/public/orm/models/encryptedSecretsModule.d.ts +2 -4
  1130. package/public/orm/models/encryptedSecretsModule.js +6 -2
  1131. package/public/orm/models/entityTypeProvision.d.ts +2 -4
  1132. package/public/orm/models/entityTypeProvision.js +6 -2
  1133. package/public/orm/models/enum.d.ts +2 -4
  1134. package/public/orm/models/enum.js +6 -2
  1135. package/public/orm/models/field.d.ts +2 -4
  1136. package/public/orm/models/field.js +6 -2
  1137. package/public/orm/models/foreignKeyConstraint.d.ts +2 -4
  1138. package/public/orm/models/foreignKeyConstraint.js +6 -2
  1139. package/public/orm/models/fullTextSearch.d.ts +2 -4
  1140. package/public/orm/models/fullTextSearch.js +6 -2
  1141. package/public/orm/models/function.d.ts +2 -4
  1142. package/public/orm/models/function.js +6 -2
  1143. package/public/orm/models/getAllRecord.d.ts +2 -4
  1144. package/public/orm/models/getAllRecord.js +6 -2
  1145. package/public/orm/models/hierarchyModule.d.ts +2 -4
  1146. package/public/orm/models/hierarchyModule.js +6 -2
  1147. package/public/orm/models/identityProvider.d.ts +2 -4
  1148. package/public/orm/models/identityProvider.js +6 -2
  1149. package/public/orm/models/identityProvidersModule.d.ts +2 -4
  1150. package/public/orm/models/identityProvidersModule.js +6 -2
  1151. package/public/orm/models/indexModel.d.ts +2 -4
  1152. package/public/orm/models/indexModel.js +6 -2
  1153. package/public/orm/models/invitesModule.d.ts +2 -4
  1154. package/public/orm/models/invitesModule.js +6 -2
  1155. package/public/orm/models/levelsModule.d.ts +2 -4
  1156. package/public/orm/models/levelsModule.js +6 -2
  1157. package/public/orm/models/limitsModule.d.ts +2 -4
  1158. package/public/orm/models/limitsModule.js +6 -2
  1159. package/public/orm/models/membershipType.d.ts +2 -4
  1160. package/public/orm/models/membershipType.js +6 -2
  1161. package/public/orm/models/membershipTypesModule.d.ts +2 -4
  1162. package/public/orm/models/membershipTypesModule.js +6 -2
  1163. package/public/orm/models/membershipsModule.d.ts +2 -4
  1164. package/public/orm/models/membershipsModule.js +6 -2
  1165. package/public/orm/models/migrateFile.d.ts +2 -4
  1166. package/public/orm/models/migrateFile.js +6 -2
  1167. package/public/orm/models/nodeTypeRegistry.d.ts +2 -4
  1168. package/public/orm/models/nodeTypeRegistry.js +6 -2
  1169. package/public/orm/models/notificationsModule.d.ts +2 -4
  1170. package/public/orm/models/notificationsModule.js +6 -2
  1171. package/public/orm/models/object.d.ts +3 -5
  1172. package/public/orm/models/object.js +7 -3
  1173. package/public/orm/models/orgAdminGrant.d.ts +2 -4
  1174. package/public/orm/models/orgAdminGrant.js +6 -2
  1175. package/public/orm/models/orgChartEdge.d.ts +2 -4
  1176. package/public/orm/models/orgChartEdge.js +6 -2
  1177. package/public/orm/models/orgChartEdgeGrant.d.ts +2 -4
  1178. package/public/orm/models/orgChartEdgeGrant.js +6 -2
  1179. package/public/orm/models/orgClaimedInvite.d.ts +2 -4
  1180. package/public/orm/models/orgClaimedInvite.js +6 -2
  1181. package/public/orm/models/orgGetManagersRecord.d.ts +2 -4
  1182. package/public/orm/models/orgGetManagersRecord.js +6 -2
  1183. package/public/orm/models/orgGetSubordinatesRecord.d.ts +2 -4
  1184. package/public/orm/models/orgGetSubordinatesRecord.js +6 -2
  1185. package/public/orm/models/orgGrant.d.ts +2 -4
  1186. package/public/orm/models/orgGrant.js +6 -2
  1187. package/public/orm/models/orgInvite.d.ts +2 -4
  1188. package/public/orm/models/orgInvite.js +6 -2
  1189. package/public/orm/models/orgLimit.d.ts +2 -4
  1190. package/public/orm/models/orgLimit.js +6 -2
  1191. package/public/orm/models/orgLimitAggregate.d.ts +2 -4
  1192. package/public/orm/models/orgLimitAggregate.js +6 -2
  1193. package/public/orm/models/orgLimitCap.d.ts +2 -4
  1194. package/public/orm/models/orgLimitCap.js +6 -2
  1195. package/public/orm/models/orgLimitCapsDefault.d.ts +2 -4
  1196. package/public/orm/models/orgLimitCapsDefault.js +6 -2
  1197. package/public/orm/models/orgLimitCredit.d.ts +2 -4
  1198. package/public/orm/models/orgLimitCredit.js +6 -2
  1199. package/public/orm/models/orgLimitDefault.d.ts +2 -4
  1200. package/public/orm/models/orgLimitDefault.js +6 -2
  1201. package/public/orm/models/orgLimitEvent.d.ts +2 -4
  1202. package/public/orm/models/orgLimitEvent.js +6 -2
  1203. package/public/orm/models/orgMember.d.ts +2 -4
  1204. package/public/orm/models/orgMember.js +6 -2
  1205. package/public/orm/models/orgMemberProfile.d.ts +2 -4
  1206. package/public/orm/models/orgMemberProfile.js +6 -2
  1207. package/public/orm/models/orgMembership.d.ts +2 -4
  1208. package/public/orm/models/orgMembership.js +6 -2
  1209. package/public/orm/models/orgMembershipDefault.d.ts +2 -4
  1210. package/public/orm/models/orgMembershipDefault.js +6 -2
  1211. package/public/orm/models/orgMembershipSetting.d.ts +2 -4
  1212. package/public/orm/models/orgMembershipSetting.js +6 -2
  1213. package/public/orm/models/orgOwnerGrant.d.ts +2 -4
  1214. package/public/orm/models/orgOwnerGrant.js +6 -2
  1215. package/public/orm/models/orgPermission.d.ts +2 -4
  1216. package/public/orm/models/orgPermission.js +6 -2
  1217. package/public/orm/models/orgPermissionDefault.d.ts +2 -4
  1218. package/public/orm/models/orgPermissionDefault.js +6 -2
  1219. package/public/orm/models/partition.d.ts +2 -4
  1220. package/public/orm/models/partition.js +6 -2
  1221. package/public/orm/models/permissionsModule.d.ts +2 -4
  1222. package/public/orm/models/permissionsModule.js +6 -2
  1223. package/public/orm/models/phoneNumber.d.ts +2 -4
  1224. package/public/orm/models/phoneNumber.js +6 -2
  1225. package/public/orm/models/phoneNumbersModule.d.ts +2 -4
  1226. package/public/orm/models/phoneNumbersModule.js +6 -2
  1227. package/public/orm/models/plansModule.d.ts +2 -4
  1228. package/public/orm/models/plansModule.js +6 -2
  1229. package/public/orm/models/policy.d.ts +2 -4
  1230. package/public/orm/models/policy.js +6 -2
  1231. package/public/orm/models/primaryKeyConstraint.d.ts +2 -4
  1232. package/public/orm/models/primaryKeyConstraint.js +6 -2
  1233. package/public/orm/models/profilesModule.d.ts +2 -4
  1234. package/public/orm/models/profilesModule.js +6 -2
  1235. package/public/orm/models/pubkeySetting.d.ts +2 -4
  1236. package/public/orm/models/pubkeySetting.js +6 -2
  1237. package/public/orm/models/rateLimitsModule.d.ts +2 -4
  1238. package/public/orm/models/rateLimitsModule.js +6 -2
  1239. package/public/orm/models/realtimeModule.d.ts +2 -4
  1240. package/public/orm/models/realtimeModule.js +6 -2
  1241. package/public/orm/models/ref.d.ts +2 -4
  1242. package/public/orm/models/ref.js +6 -2
  1243. package/public/orm/models/relationProvision.d.ts +2 -4
  1244. package/public/orm/models/relationProvision.js +6 -2
  1245. package/public/orm/models/rlsModule.d.ts +2 -4
  1246. package/public/orm/models/rlsModule.js +6 -2
  1247. package/public/orm/models/rlsSetting.d.ts +2 -4
  1248. package/public/orm/models/rlsSetting.js +6 -2
  1249. package/public/orm/models/roleType.d.ts +2 -4
  1250. package/public/orm/models/roleType.js +6 -2
  1251. package/public/orm/models/schema.d.ts +2 -4
  1252. package/public/orm/models/schema.js +6 -2
  1253. package/public/orm/models/schemaGrant.d.ts +2 -4
  1254. package/public/orm/models/schemaGrant.js +6 -2
  1255. package/public/orm/models/secretsModule.d.ts +2 -4
  1256. package/public/orm/models/secretsModule.js +6 -2
  1257. package/public/orm/models/secureTableProvision.d.ts +2 -4
  1258. package/public/orm/models/secureTableProvision.js +6 -2
  1259. package/public/orm/models/sessionSecretsModule.d.ts +2 -4
  1260. package/public/orm/models/sessionSecretsModule.js +6 -2
  1261. package/public/orm/models/sessionsModule.d.ts +2 -4
  1262. package/public/orm/models/sessionsModule.js +6 -2
  1263. package/public/orm/models/site.d.ts +2 -4
  1264. package/public/orm/models/site.js +6 -2
  1265. package/public/orm/models/siteMetadatum.d.ts +2 -4
  1266. package/public/orm/models/siteMetadatum.js +6 -2
  1267. package/public/orm/models/siteModule.d.ts +2 -4
  1268. package/public/orm/models/siteModule.js +6 -2
  1269. package/public/orm/models/siteTheme.d.ts +2 -4
  1270. package/public/orm/models/siteTheme.js +6 -2
  1271. package/public/orm/models/spatialRelation.d.ts +2 -4
  1272. package/public/orm/models/spatialRelation.js +6 -2
  1273. package/public/orm/models/sqlAction.d.ts +2 -4
  1274. package/public/orm/models/sqlAction.js +6 -2
  1275. package/public/orm/models/storageModule.d.ts +2 -4
  1276. package/public/orm/models/storageModule.js +6 -2
  1277. package/public/orm/models/store.d.ts +2 -4
  1278. package/public/orm/models/store.js +6 -2
  1279. package/public/orm/models/table.d.ts +2 -4
  1280. package/public/orm/models/table.js +6 -2
  1281. package/public/orm/models/tableGrant.d.ts +2 -4
  1282. package/public/orm/models/tableGrant.js +6 -2
  1283. package/public/orm/models/trigger.d.ts +2 -4
  1284. package/public/orm/models/trigger.js +6 -2
  1285. package/public/orm/models/triggerFunction.d.ts +2 -4
  1286. package/public/orm/models/triggerFunction.js +6 -2
  1287. package/public/orm/models/uniqueConstraint.d.ts +2 -4
  1288. package/public/orm/models/uniqueConstraint.js +6 -2
  1289. package/public/orm/models/usageSnapshot.d.ts +2 -4
  1290. package/public/orm/models/usageSnapshot.js +6 -2
  1291. package/public/orm/models/user.d.ts +2 -4
  1292. package/public/orm/models/user.js +6 -2
  1293. package/public/orm/models/userAuthModule.d.ts +2 -4
  1294. package/public/orm/models/userAuthModule.js +6 -2
  1295. package/public/orm/models/userConnectedAccount.d.ts +2 -4
  1296. package/public/orm/models/userConnectedAccount.js +6 -2
  1297. package/public/orm/models/usersModule.d.ts +2 -4
  1298. package/public/orm/models/usersModule.js +6 -2
  1299. package/public/orm/models/view.d.ts +2 -4
  1300. package/public/orm/models/view.js +6 -2
  1301. package/public/orm/models/viewGrant.d.ts +2 -4
  1302. package/public/orm/models/viewGrant.js +6 -2
  1303. package/public/orm/models/viewRule.d.ts +2 -4
  1304. package/public/orm/models/viewRule.js +6 -2
  1305. package/public/orm/models/viewTable.d.ts +2 -4
  1306. package/public/orm/models/viewTable.js +6 -2
  1307. package/public/orm/models/webauthnAuthModule.d.ts +2 -4
  1308. package/public/orm/models/webauthnAuthModule.js +6 -2
  1309. package/public/orm/models/webauthnCredential.d.ts +2 -4
  1310. package/public/orm/models/webauthnCredential.js +6 -2
  1311. package/public/orm/models/webauthnCredentialsModule.d.ts +2 -4
  1312. package/public/orm/models/webauthnCredentialsModule.js +6 -2
  1313. package/public/orm/models/webauthnSetting.d.ts +2 -4
  1314. package/public/orm/models/webauthnSetting.js +6 -2
  1315. package/public/orm/query-builder.d.ts +18 -1
  1316. package/public/orm/query-builder.js +112 -1
  1317. package/public/orm/select-types.d.ts +25 -1
@@ -14,7 +14,7 @@ const fieldSchema = {
14
14
  createdAt: 'string',
15
15
  updatedAt: 'string',
16
16
  };
17
- const usage = '\napp-step <command>\n\nCommands:\n list List appStep records\n find-first Find first matching appStep record\n get Get a appStep by ID\n create Create a new appStep\n update Update an existing appStep\n delete Delete a appStep\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';
17
+ const usage = '\napp-step <command>\n\nCommands:\n list List appStep records\n find-first Find first matching appStep record\n get Get a appStep by ID\n create Create a new appStep\n update Update an existing appStep\n delete Delete a appStep\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
18
18
  export default async (argv, prompter, _options) => {
19
19
  if (argv.help || argv.h) {
20
20
  console.log(usage);
@@ -17,7 +17,7 @@ const fieldSchema = {
17
17
  appIdPrefix: 'string',
18
18
  playStoreLink: 'string',
19
19
  };
20
- const usage = '\napp <command>\n\nCommands:\n list List app records\n find-first Find first matching app record\n get Get a app by ID\n create Create a new app\n update Update an existing app\n delete Delete a app\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';
20
+ const usage = '\napp <command>\n\nCommands:\n list List app records\n find-first Find first matching app record\n get Get a app by ID\n create Create a new app\n update Update an existing app\n delete Delete a app\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
21
21
  export default async (argv, prompter, _options) => {
22
22
  if (argv.help || argv.h) {
23
23
  console.log(usage);
@@ -21,7 +21,7 @@ const fieldSchema = {
21
21
  actionId: 'uuid',
22
22
  actorId: 'uuid',
23
23
  };
24
- const usage = '\nast-migration <command>\n\nCommands:\n list List astMigration records\n find-first Find first matching astMigration record\n create Create a new astMigration\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';
24
+ const usage = '\nast-migration <command>\n\nCommands:\n list List astMigration records\n find-first Find first matching astMigration record\n create Create a new astMigration\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
25
25
  export default async (argv, prompter, _options) => {
26
26
  if (argv.help || argv.h) {
27
27
  console.log(usage);
@@ -16,7 +16,7 @@ const fieldSchema = {
16
16
  success: 'boolean',
17
17
  createdAt: 'string',
18
18
  };
19
- const usage = '\naudit-log <command>\n\nCommands:\n list List auditLog records\n find-first Find first matching auditLog record\n get Get a auditLog by ID\n create Create a new auditLog\n update Update an existing auditLog\n delete Delete a auditLog\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';
19
+ const usage = '\naudit-log <command>\n\nCommands:\n list List auditLog records\n find-first Find first matching auditLog record\n get Get a auditLog by ID\n create Create a new auditLog\n update Update an existing auditLog\n delete Delete a auditLog\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
20
20
  export default async (argv, prompter, _options) => {
21
21
  if (argv.help || argv.h) {
22
22
  console.log(usage);
@@ -22,7 +22,7 @@ const fieldSchema = {
22
22
  recordUsageFunction: 'string',
23
23
  prefix: 'string',
24
24
  };
25
- const usage = '\nbilling-module <command>\n\nCommands:\n list List billingModule records\n find-first Find first matching billingModule record\n get Get a billingModule by ID\n create Create a new billingModule\n update Update an existing billingModule\n delete Delete a billingModule\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';
25
+ const usage = '\nbilling-module <command>\n\nCommands:\n list List billingModule records\n find-first Find first matching billingModule record\n get Get a billingModule by ID\n create Create a new billingModule\n update Update an existing billingModule\n delete Delete a billingModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
26
26
  export default async (argv, prompter, _options) => {
27
27
  if (argv.help || argv.h) {
28
28
  console.log(usage);
@@ -28,7 +28,7 @@ const fieldSchema = {
28
28
  processBillingEventFunction: 'string',
29
29
  prefix: 'string',
30
30
  };
31
- const usage = '\nbilling-provider-module <command>\n\nCommands:\n list List billingProviderModule records\n find-first Find first matching billingProviderModule record\n get Get a billingProviderModule by ID\n create Create a new billingProviderModule\n update Update an existing billingProviderModule\n delete Delete a billingProviderModule\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';
31
+ const usage = '\nbilling-provider-module <command>\n\nCommands:\n list List billingProviderModule records\n find-first Find first matching billingProviderModule record\n get Get a billingProviderModule by ID\n create Create a new billingProviderModule\n update Update an existing billingProviderModule\n delete Delete a billingProviderModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
32
32
  export default async (argv, prompter, _options) => {
33
33
  if (argv.help || argv.h) {
34
34
  console.log(usage);
@@ -19,7 +19,7 @@ const fieldSchema = {
19
19
  createdAt: 'string',
20
20
  updatedAt: 'string',
21
21
  };
22
- const usage = '\nblueprint-construction <command>\n\nCommands:\n list List blueprintConstruction records\n find-first Find first matching blueprintConstruction record\n get Get a blueprintConstruction by ID\n create Create a new blueprintConstruction\n update Update an existing blueprintConstruction\n delete Delete a blueprintConstruction\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';
22
+ const usage = '\nblueprint-construction <command>\n\nCommands:\n list List blueprintConstruction records\n find-first Find first matching blueprintConstruction record\n get Get a blueprintConstruction by ID\n create Create a new blueprintConstruction\n update Update an existing blueprintConstruction\n delete Delete a blueprintConstruction\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
23
23
  export default async (argv, prompter, _options) => {
24
24
  if (argv.help || argv.h) {
25
25
  console.log(usage);
@@ -28,7 +28,7 @@ const fieldSchema = {
28
28
  createdAt: 'string',
29
29
  updatedAt: 'string',
30
30
  };
31
- const usage = '\nblueprint-template <command>\n\nCommands:\n list List blueprintTemplate records\n find-first Find first matching blueprintTemplate record\n get Get a blueprintTemplate by ID\n create Create a new blueprintTemplate\n update Update an existing blueprintTemplate\n delete Delete a blueprintTemplate\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';
31
+ const usage = '\nblueprint-template <command>\n\nCommands:\n list List blueprintTemplate records\n find-first Find first matching blueprintTemplate record\n get Get a blueprintTemplate by ID\n create Create a new blueprintTemplate\n update Update an existing blueprintTemplate\n delete Delete a blueprintTemplate\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
32
32
  export default async (argv, prompter, _options) => {
33
33
  if (argv.help || argv.h) {
34
34
  console.log(usage);
@@ -20,7 +20,7 @@ const fieldSchema = {
20
20
  createdAt: 'string',
21
21
  updatedAt: 'string',
22
22
  };
23
- const usage = '\nblueprint <command>\n\nCommands:\n list List blueprint records\n find-first Find first matching blueprint record\n get Get a blueprint by ID\n create Create a new blueprint\n update Update an existing blueprint\n delete Delete a blueprint\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
+ const usage = '\nblueprint <command>\n\nCommands:\n list List blueprint records\n find-first Find first matching blueprint record\n get Get a blueprint by ID\n create Create a new blueprint\n update Update an existing blueprint\n delete Delete a blueprint\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
24
24
  export default async (argv, prompter, _options) => {
25
25
  if (argv.help || argv.h) {
26
26
  console.log(usage);
@@ -22,7 +22,7 @@ const fieldSchema = {
22
22
  createdAt: 'string',
23
23
  updatedAt: 'string',
24
24
  };
25
- const usage = '\ncheck-constraint <command>\n\nCommands:\n list List checkConstraint records\n find-first Find first matching checkConstraint record\n get Get a checkConstraint by ID\n create Create a new checkConstraint\n update Update an existing checkConstraint\n delete Delete a checkConstraint\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';
25
+ const usage = '\ncheck-constraint <command>\n\nCommands:\n list List checkConstraint records\n find-first Find first matching checkConstraint record\n get Get a checkConstraint by ID\n create Create a new checkConstraint\n update Update an existing checkConstraint\n delete Delete a checkConstraint\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
26
26
  export default async (argv, prompter, _options) => {
27
27
  if (argv.help || argv.h) {
28
28
  console.log(usage);
@@ -17,7 +17,7 @@ const fieldSchema = {
17
17
  treeId: 'uuid',
18
18
  date: 'string',
19
19
  };
20
- 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';
20
+ 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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
21
21
  export default async (argv, prompter, _options) => {
22
22
  if (argv.help || argv.h) {
23
23
  console.log(usage);
@@ -15,7 +15,7 @@ const fieldSchema = {
15
15
  ownerTableId: 'uuid',
16
16
  tableName: 'string',
17
17
  };
18
- const usage = '\nconnected-accounts-module <command>\n\nCommands:\n list List connectedAccountsModule records\n find-first Find first matching connectedAccountsModule record\n get Get a connectedAccountsModule by ID\n create Create a new connectedAccountsModule\n update Update an existing connectedAccountsModule\n delete Delete a connectedAccountsModule\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';
18
+ const usage = '\nconnected-accounts-module <command>\n\nCommands:\n list List connectedAccountsModule records\n find-first Find first matching connectedAccountsModule record\n get Get a connectedAccountsModule by ID\n create Create a new connectedAccountsModule\n update Update an existing connectedAccountsModule\n delete Delete a connectedAccountsModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
19
19
  export default async (argv, prompter, _options) => {
20
20
  if (argv.help || argv.h) {
21
21
  console.log(usage);
@@ -12,7 +12,7 @@ const fieldSchema = {
12
12
  apiId: 'uuid',
13
13
  allowedOrigins: 'string',
14
14
  };
15
- const usage = '\ncors-setting <command>\n\nCommands:\n list List corsSetting records\n find-first Find first matching corsSetting record\n get Get a corsSetting by ID\n create Create a new corsSetting\n update Update an existing corsSetting\n delete Delete a corsSetting\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';
15
+ const usage = '\ncors-setting <command>\n\nCommands:\n list List corsSetting records\n find-first Find first matching corsSetting record\n get Get a corsSetting by ID\n create Create a new corsSetting\n update Update an existing corsSetting\n delete Delete a corsSetting\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
16
16
  export default async (argv, prompter, _options) => {
17
17
  if (argv.help || argv.h) {
18
18
  console.log(usage);
@@ -16,7 +16,7 @@ const fieldSchema = {
16
16
  createdAt: 'string',
17
17
  updatedAt: 'string',
18
18
  };
19
- const usage = '\ncrypto-address <command>\n\nCommands:\n list List cryptoAddress records\n find-first Find first matching cryptoAddress record\n get Get a cryptoAddress by ID\n create Create a new cryptoAddress\n update Update an existing cryptoAddress\n delete Delete a cryptoAddress\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';
19
+ const usage = '\ncrypto-address <command>\n\nCommands:\n list List cryptoAddress records\n find-first Find first matching cryptoAddress record\n get Get a cryptoAddress by ID\n create Create a new cryptoAddress\n update Update an existing cryptoAddress\n delete Delete a cryptoAddress\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
20
20
  export default async (argv, prompter, _options) => {
21
21
  if (argv.help || argv.h) {
22
22
  console.log(usage);
@@ -16,7 +16,7 @@ const fieldSchema = {
16
16
  tableName: 'string',
17
17
  cryptoNetwork: 'string',
18
18
  };
19
- const usage = '\ncrypto-addresses-module <command>\n\nCommands:\n list List cryptoAddressesModule records\n find-first Find first matching cryptoAddressesModule record\n get Get a cryptoAddressesModule by ID\n create Create a new cryptoAddressesModule\n update Update an existing cryptoAddressesModule\n delete Delete a cryptoAddressesModule\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';
19
+ const usage = '\ncrypto-addresses-module <command>\n\nCommands:\n list List cryptoAddressesModule records\n find-first Find first matching cryptoAddressesModule record\n get Get a cryptoAddressesModule by ID\n create Create a new cryptoAddressesModule\n update Update an existing cryptoAddressesModule\n delete Delete a cryptoAddressesModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
20
20
  export default async (argv, prompter, _options) => {
21
21
  if (argv.help || argv.h) {
22
22
  console.log(usage);
@@ -22,7 +22,7 @@ const fieldSchema = {
22
22
  signUpWithKey: 'string',
23
23
  signInWithChallenge: 'string',
24
24
  };
25
- const usage = '\ncrypto-auth-module <command>\n\nCommands:\n list List cryptoAuthModule records\n find-first Find first matching cryptoAuthModule record\n get Get a cryptoAuthModule by ID\n create Create a new cryptoAuthModule\n update Update an existing cryptoAuthModule\n delete Delete a cryptoAuthModule\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';
25
+ const usage = '\ncrypto-auth-module <command>\n\nCommands:\n list List cryptoAuthModule records\n find-first Find first matching cryptoAuthModule record\n get Get a cryptoAuthModule by ID\n create Create a new cryptoAuthModule\n update Update an existing cryptoAuthModule\n delete Delete a cryptoAuthModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
26
26
  export default async (argv, prompter, _options) => {
27
27
  if (argv.help || argv.h) {
28
28
  console.log(usage);
@@ -22,7 +22,7 @@ const fieldSchema = {
22
22
  updatedAt: 'string',
23
23
  completedAt: 'string',
24
24
  };
25
- const usage = '\ndatabase-provision-module <command>\n\nCommands:\n list List databaseProvisionModule records\n find-first Find first matching databaseProvisionModule record\n get Get a databaseProvisionModule by ID\n create Create a new databaseProvisionModule\n update Update an existing databaseProvisionModule\n delete Delete a databaseProvisionModule\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';
25
+ const usage = '\ndatabase-provision-module <command>\n\nCommands:\n list List databaseProvisionModule records\n find-first Find first matching databaseProvisionModule record\n get Get a databaseProvisionModule by ID\n create Create a new databaseProvisionModule\n update Update an existing databaseProvisionModule\n delete Delete a databaseProvisionModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
26
26
  export default async (argv, prompter, _options) => {
27
27
  if (argv.help || argv.h) {
28
28
  console.log(usage);
@@ -21,7 +21,7 @@ const fieldSchema = {
21
21
  enableRealtime: 'boolean',
22
22
  options: 'json',
23
23
  };
24
- const usage = '\ndatabase-setting <command>\n\nCommands:\n list List databaseSetting records\n find-first Find first matching databaseSetting record\n get Get a databaseSetting by ID\n create Create a new databaseSetting\n update Update an existing databaseSetting\n delete Delete a databaseSetting\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';
24
+ const usage = '\ndatabase-setting <command>\n\nCommands:\n list List databaseSetting records\n find-first Find first matching databaseSetting record\n get Get a databaseSetting by ID\n create Create a new databaseSetting\n update Update an existing databaseSetting\n delete Delete a databaseSetting\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
25
25
  export default async (argv, prompter, _options) => {
26
26
  if (argv.help || argv.h) {
27
27
  console.log(usage);
@@ -22,7 +22,7 @@ const fieldSchema = {
22
22
  updatedAt: 'string',
23
23
  completedAt: 'string',
24
24
  };
25
- const usage = '\ndatabase-transfer <command>\n\nCommands:\n list List databaseTransfer records\n find-first Find first matching databaseTransfer record\n get Get a databaseTransfer by ID\n create Create a new databaseTransfer\n update Update an existing databaseTransfer\n delete Delete a databaseTransfer\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';
25
+ const usage = '\ndatabase-transfer <command>\n\nCommands:\n list List databaseTransfer records\n find-first Find first matching databaseTransfer record\n get Get a databaseTransfer by ID\n create Create a new databaseTransfer\n update Update an existing databaseTransfer\n delete Delete a databaseTransfer\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
26
26
  export default async (argv, prompter, _options) => {
27
27
  if (argv.help || argv.h) {
28
28
  console.log(usage);
@@ -16,7 +16,7 @@ const fieldSchema = {
16
16
  createdAt: 'string',
17
17
  updatedAt: 'string',
18
18
  };
19
- const usage = '\ndatabase <command>\n\nCommands:\n list List database records\n find-first Find first matching database record\n get Get a database by ID\n create Create a new database\n update Update an existing database\n delete Delete a database\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';
19
+ const usage = '\ndatabase <command>\n\nCommands:\n list List database records\n find-first Find first matching database record\n get Get a database by ID\n create Create a new database\n update Update an existing database\n delete Delete a database\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
20
20
  export default async (argv, prompter, _options) => {
21
21
  if (argv.help || argv.h) {
22
22
  console.log(usage);
@@ -10,7 +10,7 @@ const fieldSchema = {
10
10
  id: 'uuid',
11
11
  databaseId: 'uuid',
12
12
  };
13
- const usage = '\ndefault-ids-module <command>\n\nCommands:\n list List defaultIdsModule records\n find-first Find first matching defaultIdsModule record\n get Get a defaultIdsModule by ID\n create Create a new defaultIdsModule\n update Update an existing defaultIdsModule\n delete Delete a defaultIdsModule\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';
13
+ const usage = '\ndefault-ids-module <command>\n\nCommands:\n list List defaultIdsModule records\n find-first Find first matching defaultIdsModule record\n get Get a defaultIdsModule by ID\n create Create a new defaultIdsModule\n update Update an existing defaultIdsModule\n delete Delete a defaultIdsModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
14
14
  export default async (argv, prompter, _options) => {
15
15
  if (argv.help || argv.h) {
16
16
  console.log(usage);
@@ -15,7 +15,7 @@ const fieldSchema = {
15
15
  granteeName: 'string',
16
16
  isGrant: 'boolean',
17
17
  };
18
- const usage = '\ndefault-privilege <command>\n\nCommands:\n list List defaultPrivilege records\n find-first Find first matching defaultPrivilege record\n get Get a defaultPrivilege by ID\n create Create a new defaultPrivilege\n update Update an existing defaultPrivilege\n delete Delete a defaultPrivilege\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';
18
+ const usage = '\ndefault-privilege <command>\n\nCommands:\n list List defaultPrivilege records\n find-first Find first matching defaultPrivilege record\n get Get a defaultPrivilege by ID\n create Create a new defaultPrivilege\n update Update an existing defaultPrivilege\n delete Delete a defaultPrivilege\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
19
19
  export default async (argv, prompter, _options) => {
20
20
  if (argv.help || argv.h) {
21
21
  console.log(usage);
@@ -20,7 +20,7 @@ const fieldSchema = {
20
20
  funcName: 'string',
21
21
  funcOrder: 'int',
22
22
  };
23
- const usage = '\ndenormalized-table-field <command>\n\nCommands:\n list List denormalizedTableField records\n find-first Find first matching denormalizedTableField record\n get Get a denormalizedTableField by ID\n create Create a new denormalizedTableField\n update Update an existing denormalizedTableField\n delete Delete a denormalizedTableField\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
+ const usage = '\ndenormalized-table-field <command>\n\nCommands:\n list List denormalizedTableField records\n find-first Find first matching denormalizedTableField record\n get Get a denormalizedTableField by ID\n create Create a new denormalizedTableField\n update Update an existing denormalizedTableField\n delete Delete a denormalizedTableField\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
24
24
  export default async (argv, prompter, _options) => {
25
25
  if (argv.help || argv.h) {
26
26
  console.log(usage);
@@ -15,7 +15,7 @@ const fieldSchema = {
15
15
  userDevicesTable: 'string',
16
16
  deviceSettingsTable: 'string',
17
17
  };
18
- const usage = '\ndevices-module <command>\n\nCommands:\n list List devicesModule records\n find-first Find first matching devicesModule record\n get Get a devicesModule by ID\n create Create a new devicesModule\n update Update an existing devicesModule\n delete Delete a devicesModule\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';
18
+ const usage = '\ndevices-module <command>\n\nCommands:\n list List devicesModule records\n find-first Find first matching devicesModule record\n get Get a devicesModule by ID\n create Create a new devicesModule\n update Update an existing devicesModule\n delete Delete a devicesModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
19
19
  export default async (argv, prompter, _options) => {
20
20
  if (argv.help || argv.h) {
21
21
  console.log(usage);
@@ -14,7 +14,7 @@ const fieldSchema = {
14
14
  subdomain: 'string',
15
15
  domain: 'string',
16
16
  };
17
- const usage = '\ndomain <command>\n\nCommands:\n list List domain records\n find-first Find first matching domain record\n get Get a domain by ID\n create Create a new domain\n update Update an existing domain\n delete Delete a domain\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';
17
+ const usage = '\ndomain <command>\n\nCommands:\n list List domain records\n find-first Find first matching domain record\n get Get a domain by ID\n create Create a new domain\n update Update an existing domain\n delete Delete a domain\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
18
18
  export default async (argv, prompter, _options) => {
19
19
  if (argv.help || argv.h) {
20
20
  console.log(usage);
@@ -16,7 +16,7 @@ const fieldSchema = {
16
16
  createdAt: 'string',
17
17
  updatedAt: 'string',
18
18
  };
19
- const usage = '\nemail <command>\n\nCommands:\n list List email records\n find-first Find first matching email record\n get Get a email by ID\n create Create a new email\n update Update an existing email\n delete Delete a email\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';
19
+ const usage = '\nemail <command>\n\nCommands:\n list List email records\n find-first Find first matching email record\n get Get a email by ID\n create Create a new email\n update Update an existing email\n delete Delete a email\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
20
20
  export default async (argv, prompter, _options) => {
21
21
  if (argv.help || argv.h) {
22
22
  console.log(usage);
@@ -15,7 +15,7 @@ const fieldSchema = {
15
15
  ownerTableId: 'uuid',
16
16
  tableName: 'string',
17
17
  };
18
- const usage = '\nemails-module <command>\n\nCommands:\n list List emailsModule records\n find-first Find first matching emailsModule record\n get Get a emailsModule by ID\n create Create a new emailsModule\n update Update an existing emailsModule\n delete Delete a emailsModule\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';
18
+ const usage = '\nemails-module <command>\n\nCommands:\n list List emailsModule records\n find-first Find first matching emailsModule record\n get Get a emailsModule by ID\n create Create a new emailsModule\n update Update an existing emailsModule\n delete Delete a emailsModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
19
19
  export default async (argv, prompter, _options) => {
20
20
  if (argv.help || argv.h) {
21
21
  console.log(usage);
@@ -26,7 +26,7 @@ const fieldSchema = {
26
26
  createdAt: 'string',
27
27
  updatedAt: 'string',
28
28
  };
29
- const usage = '\nembedding-chunk <command>\n\nCommands:\n list List embeddingChunk records\n find-first Find first matching embeddingChunk record\n get Get a embeddingChunk by ID\n create Create a new embeddingChunk\n update Update an existing embeddingChunk\n delete Delete a embeddingChunk\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';
29
+ const usage = '\nembedding-chunk <command>\n\nCommands:\n list List embeddingChunk records\n find-first Find first matching embeddingChunk record\n get Get a embeddingChunk by ID\n create Create a new embeddingChunk\n update Update an existing embeddingChunk\n delete Delete a embeddingChunk\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
30
30
  export default async (argv, prompter, _options) => {
31
31
  if (argv.help || argv.h) {
32
32
  console.log(usage);
@@ -13,7 +13,7 @@ const fieldSchema = {
13
13
  tableId: 'uuid',
14
14
  tableName: 'string',
15
15
  };
16
- const usage = '\nencrypted-secrets-module <command>\n\nCommands:\n list List encryptedSecretsModule records\n find-first Find first matching encryptedSecretsModule record\n get Get a encryptedSecretsModule by ID\n create Create a new encryptedSecretsModule\n update Update an existing encryptedSecretsModule\n delete Delete a encryptedSecretsModule\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
+ const usage = '\nencrypted-secrets-module <command>\n\nCommands:\n list List encryptedSecretsModule records\n find-first Find first matching encryptedSecretsModule record\n get Get a encryptedSecretsModule by ID\n create Create a new encryptedSecretsModule\n update Update an existing encryptedSecretsModule\n delete Delete a encryptedSecretsModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
17
17
  export default async (argv, prompter, _options) => {
18
18
  if (argv.help || argv.h) {
19
19
  console.log(usage);
@@ -33,7 +33,7 @@ const fieldSchema = {
33
33
  outPathSharesTableId: 'uuid',
34
34
  outInvitesModuleId: 'uuid',
35
35
  };
36
- const usage = '\nentity-type-provision <command>\n\nCommands:\n list List entityTypeProvision records\n find-first Find first matching entityTypeProvision record\n get Get a entityTypeProvision by ID\n create Create a new entityTypeProvision\n update Update an existing entityTypeProvision\n delete Delete a entityTypeProvision\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';
36
+ const usage = '\nentity-type-provision <command>\n\nCommands:\n list List entityTypeProvision records\n find-first Find first matching entityTypeProvision record\n get Get a entityTypeProvision by ID\n create Create a new entityTypeProvision\n update Update an existing entityTypeProvision\n delete Delete a entityTypeProvision\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
37
37
  export default async (argv, prompter, _options) => {
38
38
  if (argv.help || argv.h) {
39
39
  console.log(usage);
@@ -20,7 +20,7 @@ const fieldSchema = {
20
20
  scope: 'int',
21
21
  tags: 'string',
22
22
  };
23
- const usage = '\nenum <command>\n\nCommands:\n list List enum records\n find-first Find first matching enum record\n get Get a enum by ID\n create Create a new enum\n update Update an existing enum\n delete Delete a enum\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
+ const usage = '\nenum <command>\n\nCommands:\n list List enum records\n find-first Find first matching enum record\n get Get a enum by ID\n create Create a new enum\n update Update an existing enum\n delete Delete a enum\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
24
24
  export default async (argv, prompter, _options) => {
25
25
  if (argv.help || argv.h) {
26
26
  console.log(usage);
@@ -32,7 +32,7 @@ const fieldSchema = {
32
32
  createdAt: 'string',
33
33
  updatedAt: 'string',
34
34
  };
35
- const usage = '\nfield <command>\n\nCommands:\n list List field records\n find-first Find first matching field record\n get Get a field by ID\n create Create a new field\n update Update an existing field\n delete Delete a field\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';
35
+ const usage = '\nfield <command>\n\nCommands:\n list List field records\n find-first Find first matching field record\n get Get a field by ID\n create Create a new field\n update Update an existing field\n delete Delete a field\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
36
36
  export default async (argv, prompter, _options) => {
37
37
  if (argv.help || argv.h) {
38
38
  console.log(usage);
@@ -26,7 +26,7 @@ const fieldSchema = {
26
26
  createdAt: 'string',
27
27
  updatedAt: 'string',
28
28
  };
29
- const usage = '\nforeign-key-constraint <command>\n\nCommands:\n list List foreignKeyConstraint records\n find-first Find first matching foreignKeyConstraint record\n get Get a foreignKeyConstraint by ID\n create Create a new foreignKeyConstraint\n update Update an existing foreignKeyConstraint\n delete Delete a foreignKeyConstraint\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';
29
+ const usage = '\nforeign-key-constraint <command>\n\nCommands:\n list List foreignKeyConstraint records\n find-first Find first matching foreignKeyConstraint record\n get Get a foreignKeyConstraint by ID\n create Create a new foreignKeyConstraint\n update Update an existing foreignKeyConstraint\n delete Delete a foreignKeyConstraint\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
30
30
  export default async (argv, prompter, _options) => {
31
31
  if (argv.help || argv.h) {
32
32
  console.log(usage);
@@ -17,7 +17,7 @@ const fieldSchema = {
17
17
  createdAt: 'string',
18
18
  updatedAt: 'string',
19
19
  };
20
- const usage = '\nfull-text-search <command>\n\nCommands:\n list List fullTextSearch records\n find-first Find first matching fullTextSearch record\n get Get a fullTextSearch by ID\n create Create a new fullTextSearch\n update Update an existing fullTextSearch\n delete Delete a fullTextSearch\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';
20
+ const usage = '\nfull-text-search <command>\n\nCommands:\n list List fullTextSearch records\n find-first Find first matching fullTextSearch record\n get Get a fullTextSearch by ID\n create Create a new fullTextSearch\n update Update an existing fullTextSearch\n delete Delete a fullTextSearch\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
21
21
  export default async (argv, prompter, _options) => {
22
22
  if (argv.help || argv.h) {
23
23
  console.log(usage);
@@ -12,7 +12,7 @@ const fieldSchema = {
12
12
  schemaId: 'uuid',
13
13
  name: 'string',
14
14
  };
15
- const usage = '\nfunction <command>\n\nCommands:\n list List function records\n find-first Find first matching function record\n get Get a function by ID\n create Create a new function\n update Update an existing function\n delete Delete a function\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';
15
+ const usage = '\nfunction <command>\n\nCommands:\n list List function records\n find-first Find first matching function record\n get Get a function by ID\n create Create a new function\n update Update an existing function\n delete Delete a function\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
16
16
  export default async (argv, prompter, _options) => {
17
17
  if (argv.help || argv.h) {
18
18
  console.log(usage);
@@ -10,7 +10,7 @@ const fieldSchema = {
10
10
  path: 'string',
11
11
  data: 'json',
12
12
  };
13
- 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';
13
+ 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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
14
14
  export default async (argv, prompter, _options) => {
15
15
  if (argv.help || argv.h) {
16
16
  console.log(usage);
@@ -28,7 +28,7 @@ const fieldSchema = {
28
28
  isManagerOfFunction: 'string',
29
29
  createdAt: 'string',
30
30
  };
31
- const usage = '\nhierarchy-module <command>\n\nCommands:\n list List hierarchyModule records\n find-first Find first matching hierarchyModule record\n get Get a hierarchyModule by ID\n create Create a new hierarchyModule\n update Update an existing hierarchyModule\n delete Delete a hierarchyModule\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';
31
+ const usage = '\nhierarchy-module <command>\n\nCommands:\n list List hierarchyModule records\n find-first Find first matching hierarchyModule record\n get Get a hierarchyModule by ID\n create Create a new hierarchyModule\n update Update an existing hierarchyModule\n delete Delete a hierarchyModule\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 --orderBy <values> Comma-separated ordering values (e.g. NAME_ASC,CREATED_AT_DESC)\n\n --help, -h Show this help message\n';
32
32
  export default async (argv, prompter, _options) => {
33
33
  if (argv.help || argv.h) {
34
34
  console.log(usage);