@constructive-io/sdk 0.25.0 → 0.25.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (933) hide show
  1. package/README.md +4 -1
  2. package/admin/orm/index.d.ts +10 -46
  3. package/admin/orm/index.js +10 -46
  4. package/admin/orm/input-types.d.ts +953 -3908
  5. package/admin/orm/input-types.js +1 -13
  6. package/admin/orm/models/index.d.ts +5 -23
  7. package/admin/orm/models/index.js +11 -47
  8. package/agent/orm/index.d.ts +57 -0
  9. package/agent/orm/index.js +81 -0
  10. package/agent/orm/input-types.d.ts +2753 -0
  11. package/agent/orm/input-types.js +24 -0
  12. package/agent/orm/models/agent.d.ts +54 -0
  13. package/{public/orm/models/email.js → agent/orm/models/agent.js} +27 -27
  14. package/agent/orm/models/agentMessage.d.ts +54 -0
  15. package/{public/orm/models/auditLogAuth.js → agent/orm/models/agentMessage.js} +27 -27
  16. package/agent/orm/models/agentPersona.d.ts +54 -0
  17. package/agent/orm/models/agentPersona.js +104 -0
  18. package/agent/orm/models/agentPlan.d.ts +54 -0
  19. package/{public/orm/models/appInvite.js → agent/orm/models/agentPlan.js} +27 -27
  20. package/agent/orm/models/agentPrompt.d.ts +54 -0
  21. package/{public/orm/models/appLimitCap.js → agent/orm/models/agentPrompt.js} +27 -27
  22. package/agent/orm/models/agentResource.d.ts +54 -0
  23. package/{public/orm/models/appLimitEvent.js → agent/orm/models/agentResource.js} +27 -27
  24. package/agent/orm/models/agentResourceChunk.d.ts +54 -0
  25. package/{public/orm/models/appLimitCreditCode.js → agent/orm/models/agentResourceChunk.js} +27 -27
  26. package/agent/orm/models/agentTask.d.ts +54 -0
  27. package/agent/orm/models/agentTask.js +104 -0
  28. package/agent/orm/models/agentThread.d.ts +54 -0
  29. package/agent/orm/models/agentThread.js +104 -0
  30. package/agent/orm/models/index.d.ts +14 -0
  31. package/agent/orm/models/index.js +26 -0
  32. package/agent/orm/mutation/index.d.ts +26 -0
  33. package/agent/orm/mutation/index.js +21 -0
  34. package/api/index.js +21 -0
  35. package/api/orm/client.js +152 -0
  36. package/api/orm/index.d.ts +177 -0
  37. package/api/orm/index.js +157 -0
  38. package/api/orm/input-types.d.ts +11882 -0
  39. package/api/orm/input-types.js +91 -0
  40. package/api/orm/models/index.d.ts +50 -0
  41. package/api/orm/models/index.js +98 -0
  42. package/api/orm/mutation/index.d.ts +109 -0
  43. package/api/orm/mutation/index.js +117 -0
  44. package/api/orm/query/index.d.ts +18 -0
  45. package/api/orm/query/index.js +25 -0
  46. package/api/orm/query-builder.js +756 -0
  47. package/api/orm/realtime.js +104 -0
  48. package/api/orm/select-types.js +2 -0
  49. package/api/orm/types.js +23 -0
  50. package/esm/admin/orm/index.d.ts +10 -46
  51. package/esm/admin/orm/index.js +10 -46
  52. package/esm/admin/orm/input-types.d.ts +953 -3908
  53. package/esm/admin/orm/input-types.js +1 -13
  54. package/esm/admin/orm/models/index.d.ts +5 -23
  55. package/esm/admin/orm/models/index.js +5 -23
  56. package/esm/agent/index.js +5 -0
  57. package/esm/agent/orm/client.d.ts +97 -0
  58. package/esm/agent/orm/index.d.ts +57 -0
  59. package/esm/agent/orm/index.js +59 -0
  60. package/esm/agent/orm/input-types.d.ts +2753 -0
  61. package/esm/agent/orm/input-types.js +21 -0
  62. package/esm/agent/orm/models/agent.d.ts +54 -0
  63. package/esm/{public/orm/models/appGrant.js → agent/orm/models/agent.js} +25 -25
  64. package/esm/agent/orm/models/agentMessage.d.ts +54 -0
  65. package/esm/{public/orm/models/auditLogAuth.js → agent/orm/models/agentMessage.js} +25 -25
  66. package/esm/agent/orm/models/agentPersona.d.ts +54 -0
  67. package/esm/agent/orm/models/agentPersona.js +100 -0
  68. package/esm/agent/orm/models/agentPlan.d.ts +54 -0
  69. package/esm/{public/orm/models/appInvite.js → agent/orm/models/agentPlan.js} +25 -25
  70. package/esm/agent/orm/models/agentPrompt.d.ts +54 -0
  71. package/esm/{public/orm/models/appLimitCap.js → agent/orm/models/agentPrompt.js} +25 -25
  72. package/esm/agent/orm/models/agentResource.d.ts +54 -0
  73. package/esm/{public/orm/models/appLimitEvent.js → agent/orm/models/agentResource.js} +25 -25
  74. package/esm/agent/orm/models/agentResourceChunk.d.ts +54 -0
  75. package/esm/{public/orm/models/appLimitCreditCode.js → agent/orm/models/agentResourceChunk.js} +25 -25
  76. package/esm/agent/orm/models/agentTask.d.ts +54 -0
  77. package/esm/agent/orm/models/agentTask.js +100 -0
  78. package/esm/agent/orm/models/agentThread.d.ts +54 -0
  79. package/esm/agent/orm/models/agentThread.js +100 -0
  80. package/esm/agent/orm/models/index.d.ts +14 -0
  81. package/esm/agent/orm/models/index.js +14 -0
  82. package/esm/agent/orm/mutation/index.d.ts +26 -0
  83. package/esm/agent/orm/mutation/index.js +18 -0
  84. package/esm/agent/orm/query-builder.d.ts +110 -0
  85. package/esm/agent/orm/realtime.d.ts +142 -0
  86. package/esm/agent/orm/select-types.d.ts +125 -0
  87. package/esm/agent/orm/types.d.ts +6 -0
  88. package/esm/api/index.d.ts +5 -0
  89. package/esm/api/index.js +5 -0
  90. package/esm/api/orm/client.d.ts +97 -0
  91. package/esm/api/orm/client.js +145 -0
  92. package/esm/api/orm/index.d.ts +177 -0
  93. package/esm/api/orm/index.js +134 -0
  94. package/esm/api/orm/input-types.d.ts +11882 -0
  95. package/esm/api/orm/input-types.js +88 -0
  96. package/esm/api/orm/models/index.d.ts +50 -0
  97. package/esm/api/orm/models/index.js +50 -0
  98. package/esm/api/orm/mutation/index.d.ts +109 -0
  99. package/esm/api/orm/mutation/index.js +114 -0
  100. package/esm/api/orm/query/index.d.ts +18 -0
  101. package/esm/api/orm/query/index.js +22 -0
  102. package/esm/api/orm/query-builder.d.ts +110 -0
  103. package/esm/api/orm/query-builder.js +704 -0
  104. package/esm/api/orm/realtime.d.ts +142 -0
  105. package/esm/api/orm/realtime.js +100 -0
  106. package/esm/api/orm/select-types.d.ts +125 -0
  107. package/esm/api/orm/select-types.js +1 -0
  108. package/esm/api/orm/types.d.ts +6 -0
  109. package/esm/api/orm/types.js +7 -0
  110. package/esm/index.d.ts +4 -1
  111. package/esm/index.js +4 -1
  112. package/esm/modules/index.d.ts +5 -0
  113. package/esm/modules/index.js +5 -0
  114. package/esm/modules/orm/client.d.ts +97 -0
  115. package/esm/modules/orm/client.js +145 -0
  116. package/esm/modules/orm/index.d.ts +209 -0
  117. package/esm/modules/orm/index.js +156 -0
  118. package/esm/modules/orm/input-types.d.ts +11821 -0
  119. package/esm/modules/orm/input-types.js +13 -0
  120. package/esm/modules/orm/models/configSecretsModule.d.ts +54 -0
  121. package/esm/{public/orm/models/appLimitCapsDefault.js → modules/orm/models/configSecretsModule.js} +25 -25
  122. package/esm/modules/orm/models/i18NModule.d.ts +54 -0
  123. package/esm/modules/orm/models/i18NModule.js +100 -0
  124. package/esm/modules/orm/models/index.d.ts +61 -0
  125. package/esm/modules/orm/models/index.js +61 -0
  126. package/esm/modules/orm/models/userCredentialsModule.d.ts +54 -0
  127. package/esm/modules/orm/models/userCredentialsModule.js +100 -0
  128. package/esm/modules/orm/models/userSettingsModule.d.ts +54 -0
  129. package/esm/{public/orm/models/user.js → modules/orm/models/userSettingsModule.js} +25 -25
  130. package/esm/modules/orm/mutation/index.d.ts +134 -0
  131. package/esm/modules/orm/mutation/index.js +126 -0
  132. package/esm/modules/orm/query/index.d.ts +39 -0
  133. package/esm/modules/orm/query/index.js +54 -0
  134. package/esm/modules/orm/query-builder.d.ts +110 -0
  135. package/esm/modules/orm/query-builder.js +704 -0
  136. package/esm/modules/orm/realtime.d.ts +142 -0
  137. package/esm/modules/orm/realtime.js +100 -0
  138. package/esm/modules/orm/select-types.d.ts +125 -0
  139. package/esm/modules/orm/select-types.js +1 -0
  140. package/esm/modules/orm/types.d.ts +6 -0
  141. package/esm/modules/orm/types.js +7 -0
  142. package/esm/objects/orm/index.d.ts +2 -50
  143. package/esm/objects/orm/index.js +2 -5
  144. package/esm/objects/orm/input-types.d.ts +153 -260
  145. package/esm/objects/orm/models/index.d.ts +1 -1
  146. package/esm/objects/orm/models/index.js +1 -1
  147. package/esm/objects/orm/mutation/index.d.ts +1 -41
  148. package/esm/objects/orm/mutation/index.js +0 -60
  149. package/esm/usage/index.d.ts +5 -0
  150. package/esm/usage/index.js +5 -0
  151. package/esm/usage/orm/client.d.ts +97 -0
  152. package/esm/usage/orm/client.js +145 -0
  153. package/esm/usage/orm/index.d.ts +95 -0
  154. package/esm/usage/orm/index.js +77 -0
  155. package/esm/usage/orm/input-types.d.ts +3313 -0
  156. package/esm/usage/orm/input-types.js +14 -0
  157. package/esm/usage/orm/models/index.d.ts +23 -0
  158. package/esm/usage/orm/models/index.js +23 -0
  159. package/esm/usage/orm/mutation/index.d.ts +58 -0
  160. package/esm/usage/orm/mutation/index.js +66 -0
  161. package/esm/usage/orm/query-builder.d.ts +110 -0
  162. package/esm/usage/orm/query-builder.js +704 -0
  163. package/esm/usage/orm/realtime.d.ts +142 -0
  164. package/esm/usage/orm/realtime.js +100 -0
  165. package/esm/usage/orm/select-types.d.ts +125 -0
  166. package/esm/usage/orm/select-types.js +1 -0
  167. package/esm/usage/orm/types.d.ts +6 -0
  168. package/esm/usage/orm/types.js +7 -0
  169. package/index.d.ts +4 -1
  170. package/index.js +5 -2
  171. package/modules/index.d.ts +5 -0
  172. package/modules/index.js +21 -0
  173. package/modules/orm/client.d.ts +97 -0
  174. package/modules/orm/client.js +152 -0
  175. package/modules/orm/index.d.ts +209 -0
  176. package/modules/orm/index.js +179 -0
  177. package/modules/orm/input-types.d.ts +11821 -0
  178. package/modules/orm/input-types.js +16 -0
  179. package/modules/orm/models/configSecretsModule.d.ts +54 -0
  180. package/{public/orm/models/appLimitCapsDefault.js → modules/orm/models/configSecretsModule.js} +27 -27
  181. package/modules/orm/models/i18NModule.d.ts +54 -0
  182. package/modules/orm/models/i18NModule.js +104 -0
  183. package/modules/orm/models/index.d.ts +61 -0
  184. package/modules/orm/models/index.js +121 -0
  185. package/modules/orm/models/userCredentialsModule.d.ts +54 -0
  186. package/modules/orm/models/userCredentialsModule.js +104 -0
  187. package/modules/orm/models/userSettingsModule.d.ts +54 -0
  188. package/modules/orm/models/userSettingsModule.js +104 -0
  189. package/modules/orm/mutation/index.d.ts +134 -0
  190. package/modules/orm/mutation/index.js +129 -0
  191. package/modules/orm/query/index.d.ts +39 -0
  192. package/modules/orm/query/index.js +57 -0
  193. package/modules/orm/query-builder.d.ts +110 -0
  194. package/modules/orm/query-builder.js +756 -0
  195. package/modules/orm/realtime.d.ts +142 -0
  196. package/modules/orm/realtime.js +104 -0
  197. package/modules/orm/select-types.d.ts +125 -0
  198. package/modules/orm/select-types.js +2 -0
  199. package/modules/orm/types.d.ts +6 -0
  200. package/modules/orm/types.js +23 -0
  201. package/objects/orm/index.d.ts +2 -50
  202. package/objects/orm/index.js +3 -7
  203. package/objects/orm/input-types.d.ts +153 -260
  204. package/objects/orm/models/index.d.ts +1 -1
  205. package/objects/orm/models/index.js +3 -3
  206. package/objects/orm/mutation/index.d.ts +1 -41
  207. package/objects/orm/mutation/index.js +0 -60
  208. package/package.json +3 -3
  209. package/usage/index.d.ts +5 -0
  210. package/usage/index.js +21 -0
  211. package/usage/orm/client.d.ts +97 -0
  212. package/usage/orm/client.js +152 -0
  213. package/usage/orm/index.d.ts +95 -0
  214. package/usage/orm/index.js +99 -0
  215. package/usage/orm/input-types.d.ts +3313 -0
  216. package/usage/orm/input-types.js +17 -0
  217. package/usage/orm/models/index.d.ts +23 -0
  218. package/usage/orm/models/index.js +44 -0
  219. package/usage/orm/mutation/index.d.ts +58 -0
  220. package/usage/orm/mutation/index.js +69 -0
  221. package/usage/orm/query-builder.d.ts +110 -0
  222. package/usage/orm/query-builder.js +756 -0
  223. package/usage/orm/realtime.d.ts +142 -0
  224. package/usage/orm/realtime.js +104 -0
  225. package/usage/orm/select-types.d.ts +125 -0
  226. package/usage/orm/select-types.js +2 -0
  227. package/usage/orm/types.d.ts +6 -0
  228. package/usage/orm/types.js +23 -0
  229. package/esm/objects/orm/query/index.d.ts +0 -69
  230. package/esm/objects/orm/query/index.js +0 -110
  231. package/esm/public/orm/index.d.ts +0 -627
  232. package/esm/public/orm/index.js +0 -344
  233. package/esm/public/orm/input-types.d.ts +0 -38680
  234. package/esm/public/orm/input-types.js +0 -224
  235. package/esm/public/orm/models/appAdminGrant.d.ts +0 -54
  236. package/esm/public/orm/models/appAdminGrant.js +0 -100
  237. package/esm/public/orm/models/appClaimedInvite.d.ts +0 -54
  238. package/esm/public/orm/models/appClaimedInvite.js +0 -100
  239. package/esm/public/orm/models/appGrant.d.ts +0 -54
  240. package/esm/public/orm/models/appInvite.d.ts +0 -54
  241. package/esm/public/orm/models/appLimit.d.ts +0 -54
  242. package/esm/public/orm/models/appLimit.js +0 -100
  243. package/esm/public/orm/models/appLimitCap.d.ts +0 -54
  244. package/esm/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  245. package/esm/public/orm/models/appLimitCredit.d.ts +0 -54
  246. package/esm/public/orm/models/appLimitCredit.js +0 -100
  247. package/esm/public/orm/models/appLimitCreditCode.d.ts +0 -54
  248. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  249. package/esm/public/orm/models/appLimitCreditCodeItem.js +0 -100
  250. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  251. package/esm/public/orm/models/appLimitCreditRedemption.js +0 -100
  252. package/esm/public/orm/models/appLimitDefault.d.ts +0 -54
  253. package/esm/public/orm/models/appLimitDefault.js +0 -100
  254. package/esm/public/orm/models/appLimitEvent.d.ts +0 -54
  255. package/esm/public/orm/models/appLimitWarning.d.ts +0 -54
  256. package/esm/public/orm/models/appLimitWarning.js +0 -100
  257. package/esm/public/orm/models/appMembership.d.ts +0 -54
  258. package/esm/public/orm/models/appMembership.js +0 -100
  259. package/esm/public/orm/models/appMembershipDefault.d.ts +0 -54
  260. package/esm/public/orm/models/appMembershipDefault.js +0 -100
  261. package/esm/public/orm/models/appOwnerGrant.d.ts +0 -54
  262. package/esm/public/orm/models/appOwnerGrant.js +0 -100
  263. package/esm/public/orm/models/appPermission.d.ts +0 -54
  264. package/esm/public/orm/models/appPermission.js +0 -100
  265. package/esm/public/orm/models/appPermissionDefault.d.ts +0 -54
  266. package/esm/public/orm/models/appPermissionDefault.js +0 -100
  267. package/esm/public/orm/models/auditLogAuth.d.ts +0 -54
  268. package/esm/public/orm/models/cryptoAddress.d.ts +0 -54
  269. package/esm/public/orm/models/cryptoAddress.js +0 -100
  270. package/esm/public/orm/models/email.d.ts +0 -54
  271. package/esm/public/orm/models/email.js +0 -100
  272. package/esm/public/orm/models/identityProvider.d.ts +0 -30
  273. package/esm/public/orm/models/identityProvider.js +0 -55
  274. package/esm/public/orm/models/index.d.ts +0 -155
  275. package/esm/public/orm/models/index.js +0 -155
  276. package/esm/public/orm/models/membershipType.d.ts +0 -54
  277. package/esm/public/orm/models/membershipType.js +0 -100
  278. package/esm/public/orm/models/orgAdminGrant.d.ts +0 -54
  279. package/esm/public/orm/models/orgAdminGrant.js +0 -100
  280. package/esm/public/orm/models/orgChartEdge.d.ts +0 -54
  281. package/esm/public/orm/models/orgChartEdge.js +0 -100
  282. package/esm/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  283. package/esm/public/orm/models/orgChartEdgeGrant.js +0 -100
  284. package/esm/public/orm/models/orgClaimedInvite.d.ts +0 -54
  285. package/esm/public/orm/models/orgClaimedInvite.js +0 -100
  286. package/esm/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  287. package/esm/public/orm/models/orgGetManagersRecord.js +0 -55
  288. package/esm/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  289. package/esm/public/orm/models/orgGetSubordinatesRecord.js +0 -55
  290. package/esm/public/orm/models/orgGrant.d.ts +0 -54
  291. package/esm/public/orm/models/orgGrant.js +0 -100
  292. package/esm/public/orm/models/orgInvite.d.ts +0 -54
  293. package/esm/public/orm/models/orgInvite.js +0 -100
  294. package/esm/public/orm/models/orgLimit.d.ts +0 -54
  295. package/esm/public/orm/models/orgLimit.js +0 -100
  296. package/esm/public/orm/models/orgLimitAggregate.d.ts +0 -54
  297. package/esm/public/orm/models/orgLimitAggregate.js +0 -100
  298. package/esm/public/orm/models/orgLimitCap.d.ts +0 -54
  299. package/esm/public/orm/models/orgLimitCap.js +0 -100
  300. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  301. package/esm/public/orm/models/orgLimitCapsDefault.js +0 -100
  302. package/esm/public/orm/models/orgLimitCredit.d.ts +0 -54
  303. package/esm/public/orm/models/orgLimitCredit.js +0 -100
  304. package/esm/public/orm/models/orgLimitDefault.d.ts +0 -54
  305. package/esm/public/orm/models/orgLimitDefault.js +0 -100
  306. package/esm/public/orm/models/orgLimitEvent.d.ts +0 -54
  307. package/esm/public/orm/models/orgLimitEvent.js +0 -100
  308. package/esm/public/orm/models/orgLimitWarning.d.ts +0 -54
  309. package/esm/public/orm/models/orgLimitWarning.js +0 -100
  310. package/esm/public/orm/models/orgMember.d.ts +0 -54
  311. package/esm/public/orm/models/orgMember.js +0 -100
  312. package/esm/public/orm/models/orgMemberProfile.d.ts +0 -54
  313. package/esm/public/orm/models/orgMemberProfile.js +0 -100
  314. package/esm/public/orm/models/orgMembership.d.ts +0 -54
  315. package/esm/public/orm/models/orgMembership.js +0 -100
  316. package/esm/public/orm/models/orgMembershipDefault.d.ts +0 -54
  317. package/esm/public/orm/models/orgMembershipDefault.js +0 -100
  318. package/esm/public/orm/models/orgMembershipSetting.d.ts +0 -54
  319. package/esm/public/orm/models/orgMembershipSetting.js +0 -100
  320. package/esm/public/orm/models/orgOwnerGrant.d.ts +0 -54
  321. package/esm/public/orm/models/orgOwnerGrant.js +0 -100
  322. package/esm/public/orm/models/orgPermission.d.ts +0 -54
  323. package/esm/public/orm/models/orgPermission.js +0 -100
  324. package/esm/public/orm/models/orgPermissionDefault.d.ts +0 -54
  325. package/esm/public/orm/models/orgPermissionDefault.js +0 -100
  326. package/esm/public/orm/models/phoneNumber.d.ts +0 -54
  327. package/esm/public/orm/models/phoneNumber.js +0 -100
  328. package/esm/public/orm/models/roleType.d.ts +0 -54
  329. package/esm/public/orm/models/roleType.js +0 -100
  330. package/esm/public/orm/models/user.d.ts +0 -54
  331. package/esm/public/orm/models/userConnectedAccount.d.ts +0 -36
  332. package/esm/public/orm/models/userConnectedAccount.js +0 -76
  333. package/esm/public/orm/models/webauthnCredential.d.ts +0 -54
  334. package/esm/public/orm/models/webauthnCredential.js +0 -100
  335. package/esm/public/orm/mutation/index.d.ts +0 -401
  336. package/esm/public/orm/mutation/index.js +0 -498
  337. package/esm/public/orm/query/index.d.ts +0 -171
  338. package/esm/public/orm/query/index.js +0 -254
  339. package/objects/orm/query/index.d.ts +0 -69
  340. package/objects/orm/query/index.js +0 -113
  341. package/public/orm/index.d.ts +0 -627
  342. package/public/orm/index.js +0 -367
  343. package/public/orm/input-types.d.ts +0 -38680
  344. package/public/orm/input-types.js +0 -227
  345. package/public/orm/models/appAdminGrant.d.ts +0 -54
  346. package/public/orm/models/appAdminGrant.js +0 -104
  347. package/public/orm/models/appClaimedInvite.d.ts +0 -54
  348. package/public/orm/models/appClaimedInvite.js +0 -104
  349. package/public/orm/models/appGrant.d.ts +0 -54
  350. package/public/orm/models/appGrant.js +0 -104
  351. package/public/orm/models/appInvite.d.ts +0 -54
  352. package/public/orm/models/appLimit.d.ts +0 -54
  353. package/public/orm/models/appLimit.js +0 -104
  354. package/public/orm/models/appLimitCap.d.ts +0 -54
  355. package/public/orm/models/appLimitCapsDefault.d.ts +0 -54
  356. package/public/orm/models/appLimitCredit.d.ts +0 -54
  357. package/public/orm/models/appLimitCredit.js +0 -104
  358. package/public/orm/models/appLimitCreditCode.d.ts +0 -54
  359. package/public/orm/models/appLimitCreditCodeItem.d.ts +0 -54
  360. package/public/orm/models/appLimitCreditCodeItem.js +0 -104
  361. package/public/orm/models/appLimitCreditRedemption.d.ts +0 -54
  362. package/public/orm/models/appLimitCreditRedemption.js +0 -104
  363. package/public/orm/models/appLimitDefault.d.ts +0 -54
  364. package/public/orm/models/appLimitDefault.js +0 -104
  365. package/public/orm/models/appLimitEvent.d.ts +0 -54
  366. package/public/orm/models/appLimitWarning.d.ts +0 -54
  367. package/public/orm/models/appLimitWarning.js +0 -104
  368. package/public/orm/models/appMembership.d.ts +0 -54
  369. package/public/orm/models/appMembership.js +0 -104
  370. package/public/orm/models/appMembershipDefault.d.ts +0 -54
  371. package/public/orm/models/appMembershipDefault.js +0 -104
  372. package/public/orm/models/appOwnerGrant.d.ts +0 -54
  373. package/public/orm/models/appOwnerGrant.js +0 -104
  374. package/public/orm/models/appPermission.d.ts +0 -54
  375. package/public/orm/models/appPermission.js +0 -104
  376. package/public/orm/models/appPermissionDefault.d.ts +0 -54
  377. package/public/orm/models/appPermissionDefault.js +0 -104
  378. package/public/orm/models/auditLogAuth.d.ts +0 -54
  379. package/public/orm/models/cryptoAddress.d.ts +0 -54
  380. package/public/orm/models/cryptoAddress.js +0 -104
  381. package/public/orm/models/email.d.ts +0 -54
  382. package/public/orm/models/identityProvider.d.ts +0 -30
  383. package/public/orm/models/identityProvider.js +0 -59
  384. package/public/orm/models/index.d.ts +0 -155
  385. package/public/orm/models/index.js +0 -310
  386. package/public/orm/models/membershipType.d.ts +0 -54
  387. package/public/orm/models/membershipType.js +0 -104
  388. package/public/orm/models/orgAdminGrant.d.ts +0 -54
  389. package/public/orm/models/orgAdminGrant.js +0 -104
  390. package/public/orm/models/orgChartEdge.d.ts +0 -54
  391. package/public/orm/models/orgChartEdge.js +0 -104
  392. package/public/orm/models/orgChartEdgeGrant.d.ts +0 -54
  393. package/public/orm/models/orgChartEdgeGrant.js +0 -104
  394. package/public/orm/models/orgClaimedInvite.d.ts +0 -54
  395. package/public/orm/models/orgClaimedInvite.js +0 -104
  396. package/public/orm/models/orgGetManagersRecord.d.ts +0 -30
  397. package/public/orm/models/orgGetManagersRecord.js +0 -59
  398. package/public/orm/models/orgGetSubordinatesRecord.d.ts +0 -30
  399. package/public/orm/models/orgGetSubordinatesRecord.js +0 -59
  400. package/public/orm/models/orgGrant.d.ts +0 -54
  401. package/public/orm/models/orgGrant.js +0 -104
  402. package/public/orm/models/orgInvite.d.ts +0 -54
  403. package/public/orm/models/orgInvite.js +0 -104
  404. package/public/orm/models/orgLimit.d.ts +0 -54
  405. package/public/orm/models/orgLimit.js +0 -104
  406. package/public/orm/models/orgLimitAggregate.d.ts +0 -54
  407. package/public/orm/models/orgLimitAggregate.js +0 -104
  408. package/public/orm/models/orgLimitCap.d.ts +0 -54
  409. package/public/orm/models/orgLimitCap.js +0 -104
  410. package/public/orm/models/orgLimitCapsDefault.d.ts +0 -54
  411. package/public/orm/models/orgLimitCapsDefault.js +0 -104
  412. package/public/orm/models/orgLimitCredit.d.ts +0 -54
  413. package/public/orm/models/orgLimitCredit.js +0 -104
  414. package/public/orm/models/orgLimitDefault.d.ts +0 -54
  415. package/public/orm/models/orgLimitDefault.js +0 -104
  416. package/public/orm/models/orgLimitEvent.d.ts +0 -54
  417. package/public/orm/models/orgLimitEvent.js +0 -104
  418. package/public/orm/models/orgLimitWarning.d.ts +0 -54
  419. package/public/orm/models/orgLimitWarning.js +0 -104
  420. package/public/orm/models/orgMember.d.ts +0 -54
  421. package/public/orm/models/orgMember.js +0 -104
  422. package/public/orm/models/orgMemberProfile.d.ts +0 -54
  423. package/public/orm/models/orgMemberProfile.js +0 -104
  424. package/public/orm/models/orgMembership.d.ts +0 -54
  425. package/public/orm/models/orgMembership.js +0 -104
  426. package/public/orm/models/orgMembershipDefault.d.ts +0 -54
  427. package/public/orm/models/orgMembershipDefault.js +0 -104
  428. package/public/orm/models/orgMembershipSetting.d.ts +0 -54
  429. package/public/orm/models/orgMembershipSetting.js +0 -104
  430. package/public/orm/models/orgOwnerGrant.d.ts +0 -54
  431. package/public/orm/models/orgOwnerGrant.js +0 -104
  432. package/public/orm/models/orgPermission.d.ts +0 -54
  433. package/public/orm/models/orgPermission.js +0 -104
  434. package/public/orm/models/orgPermissionDefault.d.ts +0 -54
  435. package/public/orm/models/orgPermissionDefault.js +0 -104
  436. package/public/orm/models/phoneNumber.d.ts +0 -54
  437. package/public/orm/models/phoneNumber.js +0 -104
  438. package/public/orm/models/roleType.d.ts +0 -54
  439. package/public/orm/models/roleType.js +0 -104
  440. package/public/orm/models/user.d.ts +0 -54
  441. package/public/orm/models/user.js +0 -104
  442. package/public/orm/models/userConnectedAccount.d.ts +0 -36
  443. package/public/orm/models/userConnectedAccount.js +0 -80
  444. package/public/orm/models/webauthnCredential.d.ts +0 -54
  445. package/public/orm/models/webauthnCredential.js +0 -104
  446. package/public/orm/mutation/index.d.ts +0 -401
  447. package/public/orm/mutation/index.js +0 -501
  448. package/public/orm/query/index.d.ts +0 -171
  449. package/public/orm/query/index.js +0 -257
  450. /package/{esm/public → agent}/index.d.ts +0 -0
  451. /package/{public → agent}/index.js +0 -0
  452. /package/{esm/public → agent}/orm/client.d.ts +0 -0
  453. /package/{public → agent}/orm/client.js +0 -0
  454. /package/{esm/public → agent}/orm/query-builder.d.ts +0 -0
  455. /package/{public → agent}/orm/query-builder.js +0 -0
  456. /package/{esm/public → agent}/orm/realtime.d.ts +0 -0
  457. /package/{public → agent}/orm/realtime.js +0 -0
  458. /package/{esm/public → agent}/orm/select-types.d.ts +0 -0
  459. /package/{public → agent}/orm/select-types.js +0 -0
  460. /package/{esm/public → agent}/orm/types.d.ts +0 -0
  461. /package/{public → agent}/orm/types.js +0 -0
  462. /package/{public → api}/index.d.ts +0 -0
  463. /package/{public → api}/orm/client.d.ts +0 -0
  464. /package/{esm/public → api}/orm/models/api.d.ts +0 -0
  465. /package/{public → api}/orm/models/api.js +0 -0
  466. /package/{esm/public → api}/orm/models/apiModule.d.ts +0 -0
  467. /package/{public → api}/orm/models/apiModule.js +0 -0
  468. /package/{esm/public → api}/orm/models/apiSchema.d.ts +0 -0
  469. /package/{public → api}/orm/models/apiSchema.js +0 -0
  470. /package/{esm/public → api}/orm/models/apiSetting.d.ts +0 -0
  471. /package/{public → api}/orm/models/apiSetting.js +0 -0
  472. /package/{esm/public → api}/orm/models/app.d.ts +0 -0
  473. /package/{public → api}/orm/models/app.js +0 -0
  474. /package/{esm/public → api}/orm/models/astMigration.d.ts +0 -0
  475. /package/{public → api}/orm/models/astMigration.js +0 -0
  476. /package/{esm/public → api}/orm/models/checkConstraint.d.ts +0 -0
  477. /package/{public → api}/orm/models/checkConstraint.js +0 -0
  478. /package/{esm/public → api}/orm/models/corsSetting.d.ts +0 -0
  479. /package/{public → api}/orm/models/corsSetting.js +0 -0
  480. /package/{esm/public → api}/orm/models/database.d.ts +0 -0
  481. /package/{public → api}/orm/models/database.js +0 -0
  482. /package/{esm/public → api}/orm/models/databaseSetting.d.ts +0 -0
  483. /package/{public → api}/orm/models/databaseSetting.js +0 -0
  484. /package/{esm/public → api}/orm/models/databaseTransfer.d.ts +0 -0
  485. /package/{public → api}/orm/models/databaseTransfer.js +0 -0
  486. /package/{esm/public → api}/orm/models/defaultPrivilege.d.ts +0 -0
  487. /package/{public → api}/orm/models/defaultPrivilege.js +0 -0
  488. /package/{esm/public → api}/orm/models/domain.d.ts +0 -0
  489. /package/{public → api}/orm/models/domain.js +0 -0
  490. /package/{esm/public → api}/orm/models/embeddingChunk.d.ts +0 -0
  491. /package/{public → api}/orm/models/embeddingChunk.js +0 -0
  492. /package/{esm/public → api}/orm/models/enum.d.ts +0 -0
  493. /package/{public → api}/orm/models/enum.js +0 -0
  494. /package/{esm/public → api}/orm/models/field.d.ts +0 -0
  495. /package/{public → api}/orm/models/field.js +0 -0
  496. /package/{esm/public → api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  497. /package/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  498. /package/{esm/public → api}/orm/models/fullTextSearch.d.ts +0 -0
  499. /package/{public → api}/orm/models/fullTextSearch.js +0 -0
  500. /package/{esm/public → api}/orm/models/function.d.ts +0 -0
  501. /package/{public → api}/orm/models/function.js +0 -0
  502. /package/{esm/public → api}/orm/models/indexModel.d.ts +0 -0
  503. /package/{public → api}/orm/models/indexModel.js +0 -0
  504. /package/{esm/public → api}/orm/models/migrateFile.d.ts +0 -0
  505. /package/{public → api}/orm/models/migrateFile.js +0 -0
  506. /package/{esm/public → api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  507. /package/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  508. /package/{esm/public → api}/orm/models/partition.d.ts +0 -0
  509. /package/{public → api}/orm/models/partition.js +0 -0
  510. /package/{esm/public → api}/orm/models/policy.d.ts +0 -0
  511. /package/{public → api}/orm/models/policy.js +0 -0
  512. /package/{esm/public → api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  513. /package/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  514. /package/{esm/public → api}/orm/models/pubkeySetting.d.ts +0 -0
  515. /package/{public → api}/orm/models/pubkeySetting.js +0 -0
  516. /package/{esm/public → api}/orm/models/rlsSetting.d.ts +0 -0
  517. /package/{public → api}/orm/models/rlsSetting.js +0 -0
  518. /package/{esm/public → api}/orm/models/schema.d.ts +0 -0
  519. /package/{public → api}/orm/models/schema.js +0 -0
  520. /package/{esm/public → api}/orm/models/schemaGrant.d.ts +0 -0
  521. /package/{public → api}/orm/models/schemaGrant.js +0 -0
  522. /package/{esm/public → api}/orm/models/site.d.ts +0 -0
  523. /package/{public → api}/orm/models/site.js +0 -0
  524. /package/{esm/public → api}/orm/models/siteMetadatum.d.ts +0 -0
  525. /package/{public → api}/orm/models/siteMetadatum.js +0 -0
  526. /package/{esm/public → api}/orm/models/siteModule.d.ts +0 -0
  527. /package/{public → api}/orm/models/siteModule.js +0 -0
  528. /package/{esm/public → api}/orm/models/siteTheme.d.ts +0 -0
  529. /package/{public → api}/orm/models/siteTheme.js +0 -0
  530. /package/{esm/public → api}/orm/models/spatialRelation.d.ts +0 -0
  531. /package/{public → api}/orm/models/spatialRelation.js +0 -0
  532. /package/{esm/public → api}/orm/models/sqlAction.d.ts +0 -0
  533. /package/{public → api}/orm/models/sqlAction.js +0 -0
  534. /package/{esm/public → api}/orm/models/table.d.ts +0 -0
  535. /package/{public → api}/orm/models/table.js +0 -0
  536. /package/{esm/public → api}/orm/models/tableGrant.d.ts +0 -0
  537. /package/{public → api}/orm/models/tableGrant.js +0 -0
  538. /package/{esm/public → api}/orm/models/trigger.d.ts +0 -0
  539. /package/{public → api}/orm/models/trigger.js +0 -0
  540. /package/{esm/public → api}/orm/models/triggerFunction.d.ts +0 -0
  541. /package/{public → api}/orm/models/triggerFunction.js +0 -0
  542. /package/{esm/public → api}/orm/models/uniqueConstraint.d.ts +0 -0
  543. /package/{public → api}/orm/models/uniqueConstraint.js +0 -0
  544. /package/{esm/public → api}/orm/models/view.d.ts +0 -0
  545. /package/{public → api}/orm/models/view.js +0 -0
  546. /package/{esm/public → api}/orm/models/viewGrant.d.ts +0 -0
  547. /package/{public → api}/orm/models/viewGrant.js +0 -0
  548. /package/{esm/public → api}/orm/models/viewRule.d.ts +0 -0
  549. /package/{public → api}/orm/models/viewRule.js +0 -0
  550. /package/{esm/public → api}/orm/models/viewTable.d.ts +0 -0
  551. /package/{public → api}/orm/models/viewTable.js +0 -0
  552. /package/{esm/public → api}/orm/models/webauthnSetting.d.ts +0 -0
  553. /package/{public → api}/orm/models/webauthnSetting.js +0 -0
  554. /package/{public → api}/orm/query-builder.d.ts +0 -0
  555. /package/{public → api}/orm/realtime.d.ts +0 -0
  556. /package/{public → api}/orm/select-types.d.ts +0 -0
  557. /package/{public → api}/orm/types.d.ts +0 -0
  558. /package/esm/{public/index.js → agent/index.d.ts} +0 -0
  559. /package/esm/{public → agent}/orm/client.js +0 -0
  560. /package/esm/{public → agent}/orm/query-builder.js +0 -0
  561. /package/esm/{public → agent}/orm/realtime.js +0 -0
  562. /package/esm/{public → agent}/orm/select-types.js +0 -0
  563. /package/esm/{public → agent}/orm/types.js +0 -0
  564. /package/{public → esm/api}/orm/models/api.d.ts +0 -0
  565. /package/esm/{public → api}/orm/models/api.js +0 -0
  566. /package/{public → esm/api}/orm/models/apiModule.d.ts +0 -0
  567. /package/esm/{public → api}/orm/models/apiModule.js +0 -0
  568. /package/{public → esm/api}/orm/models/apiSchema.d.ts +0 -0
  569. /package/esm/{public → api}/orm/models/apiSchema.js +0 -0
  570. /package/{public → esm/api}/orm/models/apiSetting.d.ts +0 -0
  571. /package/esm/{public → api}/orm/models/apiSetting.js +0 -0
  572. /package/{public → esm/api}/orm/models/app.d.ts +0 -0
  573. /package/esm/{public → api}/orm/models/app.js +0 -0
  574. /package/{public → esm/api}/orm/models/astMigration.d.ts +0 -0
  575. /package/esm/{public → api}/orm/models/astMigration.js +0 -0
  576. /package/{public → esm/api}/orm/models/checkConstraint.d.ts +0 -0
  577. /package/esm/{public → api}/orm/models/checkConstraint.js +0 -0
  578. /package/{public → esm/api}/orm/models/corsSetting.d.ts +0 -0
  579. /package/esm/{public → api}/orm/models/corsSetting.js +0 -0
  580. /package/{public → esm/api}/orm/models/database.d.ts +0 -0
  581. /package/esm/{public → api}/orm/models/database.js +0 -0
  582. /package/{public → esm/api}/orm/models/databaseSetting.d.ts +0 -0
  583. /package/esm/{public → api}/orm/models/databaseSetting.js +0 -0
  584. /package/{public → esm/api}/orm/models/databaseTransfer.d.ts +0 -0
  585. /package/esm/{public → api}/orm/models/databaseTransfer.js +0 -0
  586. /package/{public → esm/api}/orm/models/defaultPrivilege.d.ts +0 -0
  587. /package/esm/{public → api}/orm/models/defaultPrivilege.js +0 -0
  588. /package/{public → esm/api}/orm/models/domain.d.ts +0 -0
  589. /package/esm/{public → api}/orm/models/domain.js +0 -0
  590. /package/{public → esm/api}/orm/models/embeddingChunk.d.ts +0 -0
  591. /package/esm/{public → api}/orm/models/embeddingChunk.js +0 -0
  592. /package/{public → esm/api}/orm/models/enum.d.ts +0 -0
  593. /package/esm/{public → api}/orm/models/enum.js +0 -0
  594. /package/{public → esm/api}/orm/models/field.d.ts +0 -0
  595. /package/esm/{public → api}/orm/models/field.js +0 -0
  596. /package/{public → esm/api}/orm/models/foreignKeyConstraint.d.ts +0 -0
  597. /package/esm/{public → api}/orm/models/foreignKeyConstraint.js +0 -0
  598. /package/{public → esm/api}/orm/models/fullTextSearch.d.ts +0 -0
  599. /package/esm/{public → api}/orm/models/fullTextSearch.js +0 -0
  600. /package/{public → esm/api}/orm/models/function.d.ts +0 -0
  601. /package/esm/{public → api}/orm/models/function.js +0 -0
  602. /package/{public → esm/api}/orm/models/indexModel.d.ts +0 -0
  603. /package/esm/{public → api}/orm/models/indexModel.js +0 -0
  604. /package/{public → esm/api}/orm/models/migrateFile.d.ts +0 -0
  605. /package/esm/{public → api}/orm/models/migrateFile.js +0 -0
  606. /package/{public → esm/api}/orm/models/nodeTypeRegistry.d.ts +0 -0
  607. /package/esm/{public → api}/orm/models/nodeTypeRegistry.js +0 -0
  608. /package/{public → esm/api}/orm/models/partition.d.ts +0 -0
  609. /package/esm/{public → api}/orm/models/partition.js +0 -0
  610. /package/{public → esm/api}/orm/models/policy.d.ts +0 -0
  611. /package/esm/{public → api}/orm/models/policy.js +0 -0
  612. /package/{public → esm/api}/orm/models/primaryKeyConstraint.d.ts +0 -0
  613. /package/esm/{public → api}/orm/models/primaryKeyConstraint.js +0 -0
  614. /package/{public → esm/api}/orm/models/pubkeySetting.d.ts +0 -0
  615. /package/esm/{public → api}/orm/models/pubkeySetting.js +0 -0
  616. /package/{public → esm/api}/orm/models/rlsSetting.d.ts +0 -0
  617. /package/esm/{public → api}/orm/models/rlsSetting.js +0 -0
  618. /package/{public → esm/api}/orm/models/schema.d.ts +0 -0
  619. /package/esm/{public → api}/orm/models/schema.js +0 -0
  620. /package/{public → esm/api}/orm/models/schemaGrant.d.ts +0 -0
  621. /package/esm/{public → api}/orm/models/schemaGrant.js +0 -0
  622. /package/{public → esm/api}/orm/models/site.d.ts +0 -0
  623. /package/esm/{public → api}/orm/models/site.js +0 -0
  624. /package/{public → esm/api}/orm/models/siteMetadatum.d.ts +0 -0
  625. /package/esm/{public → api}/orm/models/siteMetadatum.js +0 -0
  626. /package/{public → esm/api}/orm/models/siteModule.d.ts +0 -0
  627. /package/esm/{public → api}/orm/models/siteModule.js +0 -0
  628. /package/{public → esm/api}/orm/models/siteTheme.d.ts +0 -0
  629. /package/esm/{public → api}/orm/models/siteTheme.js +0 -0
  630. /package/{public → esm/api}/orm/models/spatialRelation.d.ts +0 -0
  631. /package/esm/{public → api}/orm/models/spatialRelation.js +0 -0
  632. /package/{public → esm/api}/orm/models/sqlAction.d.ts +0 -0
  633. /package/esm/{public → api}/orm/models/sqlAction.js +0 -0
  634. /package/{public → esm/api}/orm/models/table.d.ts +0 -0
  635. /package/esm/{public → api}/orm/models/table.js +0 -0
  636. /package/{public → esm/api}/orm/models/tableGrant.d.ts +0 -0
  637. /package/esm/{public → api}/orm/models/tableGrant.js +0 -0
  638. /package/{public → esm/api}/orm/models/trigger.d.ts +0 -0
  639. /package/esm/{public → api}/orm/models/trigger.js +0 -0
  640. /package/{public → esm/api}/orm/models/triggerFunction.d.ts +0 -0
  641. /package/esm/{public → api}/orm/models/triggerFunction.js +0 -0
  642. /package/{public → esm/api}/orm/models/uniqueConstraint.d.ts +0 -0
  643. /package/esm/{public → api}/orm/models/uniqueConstraint.js +0 -0
  644. /package/{public → esm/api}/orm/models/view.d.ts +0 -0
  645. /package/esm/{public → api}/orm/models/view.js +0 -0
  646. /package/{public → esm/api}/orm/models/viewGrant.d.ts +0 -0
  647. /package/esm/{public → api}/orm/models/viewGrant.js +0 -0
  648. /package/{public → esm/api}/orm/models/viewRule.d.ts +0 -0
  649. /package/esm/{public → api}/orm/models/viewRule.js +0 -0
  650. /package/{public → esm/api}/orm/models/viewTable.d.ts +0 -0
  651. /package/esm/{public → api}/orm/models/viewTable.js +0 -0
  652. /package/{public → esm/api}/orm/models/webauthnSetting.d.ts +0 -0
  653. /package/esm/{public → api}/orm/models/webauthnSetting.js +0 -0
  654. /package/esm/{public → modules}/orm/models/agentModule.d.ts +0 -0
  655. /package/esm/{public → modules}/orm/models/agentModule.js +0 -0
  656. /package/esm/{public → modules}/orm/models/billingModule.d.ts +0 -0
  657. /package/esm/{public → modules}/orm/models/billingModule.js +0 -0
  658. /package/esm/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  659. /package/esm/{public → modules}/orm/models/billingProviderModule.js +0 -0
  660. /package/esm/{public → modules}/orm/models/blueprint.d.ts +0 -0
  661. /package/esm/{public → modules}/orm/models/blueprint.js +0 -0
  662. /package/esm/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  663. /package/esm/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  664. /package/esm/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  665. /package/esm/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  666. /package/esm/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  667. /package/esm/{public → modules}/orm/models/computeLogModule.js +0 -0
  668. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  669. /package/esm/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  670. /package/esm/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  671. /package/esm/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  672. /package/esm/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  673. /package/esm/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  674. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  675. /package/esm/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  676. /package/esm/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  677. /package/esm/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  678. /package/esm/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  679. /package/esm/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  680. /package/esm/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  681. /package/esm/{public → modules}/orm/models/dbUsageModule.js +0 -0
  682. /package/esm/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  683. /package/esm/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  684. /package/esm/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  685. /package/esm/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  686. /package/esm/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  687. /package/esm/{public → modules}/orm/models/devicesModule.js +0 -0
  688. /package/esm/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  689. /package/esm/{public → modules}/orm/models/emailsModule.js +0 -0
  690. /package/esm/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  691. /package/esm/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  692. /package/esm/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  693. /package/esm/{public → modules}/orm/models/eventsModule.js +0 -0
  694. /package/esm/{public → modules}/orm/models/functionModule.d.ts +0 -0
  695. /package/esm/{public → modules}/orm/models/functionModule.js +0 -0
  696. /package/esm/{public → modules}/orm/models/graphModule.d.ts +0 -0
  697. /package/esm/{public → modules}/orm/models/graphModule.js +0 -0
  698. /package/esm/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  699. /package/esm/{public → modules}/orm/models/hierarchyModule.js +0 -0
  700. /package/esm/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  701. /package/esm/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  702. /package/esm/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  703. /package/esm/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  704. /package/esm/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  705. /package/esm/{public → modules}/orm/models/invitesModule.js +0 -0
  706. /package/esm/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  707. /package/esm/{public → modules}/orm/models/limitsModule.js +0 -0
  708. /package/esm/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  709. /package/esm/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  710. /package/esm/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  711. /package/esm/{public → modules}/orm/models/membershipsModule.js +0 -0
  712. /package/esm/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  713. /package/esm/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  714. /package/esm/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  715. /package/esm/{public → modules}/orm/models/namespaceModule.js +0 -0
  716. /package/esm/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  717. /package/esm/{public → modules}/orm/models/notificationsModule.js +0 -0
  718. /package/esm/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  719. /package/esm/{public → modules}/orm/models/permissionsModule.js +0 -0
  720. /package/esm/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  721. /package/esm/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  722. /package/esm/{public → modules}/orm/models/plansModule.d.ts +0 -0
  723. /package/esm/{public → modules}/orm/models/plansModule.js +0 -0
  724. /package/esm/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  725. /package/esm/{public → modules}/orm/models/profilesModule.js +0 -0
  726. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  727. /package/esm/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  728. /package/esm/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  729. /package/esm/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  730. /package/esm/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  731. /package/esm/{public → modules}/orm/models/realtimeModule.js +0 -0
  732. /package/esm/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  733. /package/esm/{public → modules}/orm/models/relationProvision.js +0 -0
  734. /package/esm/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  735. /package/esm/{public → modules}/orm/models/rlsModule.js +0 -0
  736. /package/esm/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  737. /package/esm/{public → modules}/orm/models/secureTableProvision.js +0 -0
  738. /package/esm/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  739. /package/esm/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  740. /package/esm/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  741. /package/esm/{public → modules}/orm/models/sessionsModule.js +0 -0
  742. /package/esm/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  743. /package/esm/{public → modules}/orm/models/storageLogModule.js +0 -0
  744. /package/esm/{public → modules}/orm/models/storageModule.d.ts +0 -0
  745. /package/esm/{public → modules}/orm/models/storageModule.js +0 -0
  746. /package/esm/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  747. /package/esm/{public → modules}/orm/models/transferLogModule.js +0 -0
  748. /package/esm/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  749. /package/esm/{public → modules}/orm/models/userAuthModule.js +0 -0
  750. /package/esm/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  751. /package/esm/{public → modules}/orm/models/userStateModule.js +0 -0
  752. /package/esm/{public → modules}/orm/models/usersModule.d.ts +0 -0
  753. /package/esm/{public → modules}/orm/models/usersModule.js +0 -0
  754. /package/esm/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  755. /package/esm/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  756. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  757. /package/esm/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  758. /package/{admin → esm/usage}/orm/models/appLimit.d.ts +0 -0
  759. /package/esm/{admin → usage}/orm/models/appLimit.js +0 -0
  760. /package/{admin → esm/usage}/orm/models/appLimitCap.d.ts +0 -0
  761. /package/esm/{admin → usage}/orm/models/appLimitCap.js +0 -0
  762. /package/{admin → esm/usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  763. /package/esm/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  764. /package/{admin → esm/usage}/orm/models/appLimitCredit.d.ts +0 -0
  765. /package/esm/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  766. /package/{admin → esm/usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  767. /package/esm/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  768. /package/{admin → esm/usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  769. /package/esm/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  770. /package/{admin → esm/usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  771. /package/esm/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  772. /package/{admin → esm/usage}/orm/models/appLimitDefault.d.ts +0 -0
  773. /package/esm/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  774. /package/{admin → esm/usage}/orm/models/appLimitEvent.d.ts +0 -0
  775. /package/esm/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  776. /package/{admin → esm/usage}/orm/models/appLimitWarning.d.ts +0 -0
  777. /package/esm/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  778. /package/{admin → esm/usage}/orm/models/orgLimit.d.ts +0 -0
  779. /package/esm/{admin → usage}/orm/models/orgLimit.js +0 -0
  780. /package/{admin → esm/usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  781. /package/esm/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  782. /package/{admin → esm/usage}/orm/models/orgLimitCap.d.ts +0 -0
  783. /package/esm/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  784. /package/{admin → esm/usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  785. /package/esm/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  786. /package/{admin → esm/usage}/orm/models/orgLimitCredit.d.ts +0 -0
  787. /package/esm/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  788. /package/{admin → esm/usage}/orm/models/orgLimitDefault.d.ts +0 -0
  789. /package/esm/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  790. /package/{admin → esm/usage}/orm/models/orgLimitEvent.d.ts +0 -0
  791. /package/esm/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  792. /package/{admin → esm/usage}/orm/models/orgLimitWarning.d.ts +0 -0
  793. /package/esm/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
  794. /package/{public → modules}/orm/models/agentModule.d.ts +0 -0
  795. /package/{public → modules}/orm/models/agentModule.js +0 -0
  796. /package/{public → modules}/orm/models/billingModule.d.ts +0 -0
  797. /package/{public → modules}/orm/models/billingModule.js +0 -0
  798. /package/{public → modules}/orm/models/billingProviderModule.d.ts +0 -0
  799. /package/{public → modules}/orm/models/billingProviderModule.js +0 -0
  800. /package/{public → modules}/orm/models/blueprint.d.ts +0 -0
  801. /package/{public → modules}/orm/models/blueprint.js +0 -0
  802. /package/{public → modules}/orm/models/blueprintConstruction.d.ts +0 -0
  803. /package/{public → modules}/orm/models/blueprintConstruction.js +0 -0
  804. /package/{public → modules}/orm/models/blueprintTemplate.d.ts +0 -0
  805. /package/{public → modules}/orm/models/blueprintTemplate.js +0 -0
  806. /package/{public → modules}/orm/models/computeLogModule.d.ts +0 -0
  807. /package/{public → modules}/orm/models/computeLogModule.js +0 -0
  808. /package/{public → modules}/orm/models/configSecretsOrgModule.d.ts +0 -0
  809. /package/{public → modules}/orm/models/configSecretsOrgModule.js +0 -0
  810. /package/{public → modules}/orm/models/configSecretsUserModule.d.ts +0 -0
  811. /package/{public → modules}/orm/models/configSecretsUserModule.js +0 -0
  812. /package/{public → modules}/orm/models/connectedAccountsModule.d.ts +0 -0
  813. /package/{public → modules}/orm/models/connectedAccountsModule.js +0 -0
  814. /package/{public → modules}/orm/models/cryptoAddressesModule.d.ts +0 -0
  815. /package/{public → modules}/orm/models/cryptoAddressesModule.js +0 -0
  816. /package/{public → modules}/orm/models/cryptoAuthModule.d.ts +0 -0
  817. /package/{public → modules}/orm/models/cryptoAuthModule.js +0 -0
  818. /package/{public → modules}/orm/models/databaseProvisionModule.d.ts +0 -0
  819. /package/{public → modules}/orm/models/databaseProvisionModule.js +0 -0
  820. /package/{public → modules}/orm/models/dbUsageModule.d.ts +0 -0
  821. /package/{public → modules}/orm/models/dbUsageModule.js +0 -0
  822. /package/{public → modules}/orm/models/defaultIdsModule.d.ts +0 -0
  823. /package/{public → modules}/orm/models/defaultIdsModule.js +0 -0
  824. /package/{public → modules}/orm/models/denormalizedTableField.d.ts +0 -0
  825. /package/{public → modules}/orm/models/denormalizedTableField.js +0 -0
  826. /package/{public → modules}/orm/models/devicesModule.d.ts +0 -0
  827. /package/{public → modules}/orm/models/devicesModule.js +0 -0
  828. /package/{public → modules}/orm/models/emailsModule.d.ts +0 -0
  829. /package/{public → modules}/orm/models/emailsModule.js +0 -0
  830. /package/{public → modules}/orm/models/entityTypeProvision.d.ts +0 -0
  831. /package/{public → modules}/orm/models/entityTypeProvision.js +0 -0
  832. /package/{public → modules}/orm/models/eventsModule.d.ts +0 -0
  833. /package/{public → modules}/orm/models/eventsModule.js +0 -0
  834. /package/{public → modules}/orm/models/functionModule.d.ts +0 -0
  835. /package/{public → modules}/orm/models/functionModule.js +0 -0
  836. /package/{public → modules}/orm/models/graphModule.d.ts +0 -0
  837. /package/{public → modules}/orm/models/graphModule.js +0 -0
  838. /package/{public → modules}/orm/models/hierarchyModule.d.ts +0 -0
  839. /package/{public → modules}/orm/models/hierarchyModule.js +0 -0
  840. /package/{public → modules}/orm/models/identityProvidersModule.d.ts +0 -0
  841. /package/{public → modules}/orm/models/identityProvidersModule.js +0 -0
  842. /package/{public → modules}/orm/models/inferenceLogModule.d.ts +0 -0
  843. /package/{public → modules}/orm/models/inferenceLogModule.js +0 -0
  844. /package/{public → modules}/orm/models/invitesModule.d.ts +0 -0
  845. /package/{public → modules}/orm/models/invitesModule.js +0 -0
  846. /package/{public → modules}/orm/models/limitsModule.d.ts +0 -0
  847. /package/{public → modules}/orm/models/limitsModule.js +0 -0
  848. /package/{public → modules}/orm/models/membershipTypesModule.d.ts +0 -0
  849. /package/{public → modules}/orm/models/membershipTypesModule.js +0 -0
  850. /package/{public → modules}/orm/models/membershipsModule.d.ts +0 -0
  851. /package/{public → modules}/orm/models/membershipsModule.js +0 -0
  852. /package/{public → modules}/orm/models/merkleStoreModule.d.ts +0 -0
  853. /package/{public → modules}/orm/models/merkleStoreModule.js +0 -0
  854. /package/{public → modules}/orm/models/namespaceModule.d.ts +0 -0
  855. /package/{public → modules}/orm/models/namespaceModule.js +0 -0
  856. /package/{public → modules}/orm/models/notificationsModule.d.ts +0 -0
  857. /package/{public → modules}/orm/models/notificationsModule.js +0 -0
  858. /package/{public → modules}/orm/models/permissionsModule.d.ts +0 -0
  859. /package/{public → modules}/orm/models/permissionsModule.js +0 -0
  860. /package/{public → modules}/orm/models/phoneNumbersModule.d.ts +0 -0
  861. /package/{public → modules}/orm/models/phoneNumbersModule.js +0 -0
  862. /package/{public → modules}/orm/models/plansModule.d.ts +0 -0
  863. /package/{public → modules}/orm/models/plansModule.js +0 -0
  864. /package/{public → modules}/orm/models/profilesModule.d.ts +0 -0
  865. /package/{public → modules}/orm/models/profilesModule.js +0 -0
  866. /package/{public → modules}/orm/models/rateLimitMetersModule.d.ts +0 -0
  867. /package/{public → modules}/orm/models/rateLimitMetersModule.js +0 -0
  868. /package/{public → modules}/orm/models/rateLimitsModule.d.ts +0 -0
  869. /package/{public → modules}/orm/models/rateLimitsModule.js +0 -0
  870. /package/{public → modules}/orm/models/realtimeModule.d.ts +0 -0
  871. /package/{public → modules}/orm/models/realtimeModule.js +0 -0
  872. /package/{public → modules}/orm/models/relationProvision.d.ts +0 -0
  873. /package/{public → modules}/orm/models/relationProvision.js +0 -0
  874. /package/{public → modules}/orm/models/rlsModule.d.ts +0 -0
  875. /package/{public → modules}/orm/models/rlsModule.js +0 -0
  876. /package/{public → modules}/orm/models/secureTableProvision.d.ts +0 -0
  877. /package/{public → modules}/orm/models/secureTableProvision.js +0 -0
  878. /package/{public → modules}/orm/models/sessionSecretsModule.d.ts +0 -0
  879. /package/{public → modules}/orm/models/sessionSecretsModule.js +0 -0
  880. /package/{public → modules}/orm/models/sessionsModule.d.ts +0 -0
  881. /package/{public → modules}/orm/models/sessionsModule.js +0 -0
  882. /package/{public → modules}/orm/models/storageLogModule.d.ts +0 -0
  883. /package/{public → modules}/orm/models/storageLogModule.js +0 -0
  884. /package/{public → modules}/orm/models/storageModule.d.ts +0 -0
  885. /package/{public → modules}/orm/models/storageModule.js +0 -0
  886. /package/{public → modules}/orm/models/transferLogModule.d.ts +0 -0
  887. /package/{public → modules}/orm/models/transferLogModule.js +0 -0
  888. /package/{public → modules}/orm/models/userAuthModule.d.ts +0 -0
  889. /package/{public → modules}/orm/models/userAuthModule.js +0 -0
  890. /package/{public → modules}/orm/models/userStateModule.d.ts +0 -0
  891. /package/{public → modules}/orm/models/userStateModule.js +0 -0
  892. /package/{public → modules}/orm/models/usersModule.d.ts +0 -0
  893. /package/{public → modules}/orm/models/usersModule.js +0 -0
  894. /package/{public → modules}/orm/models/webauthnAuthModule.d.ts +0 -0
  895. /package/{public → modules}/orm/models/webauthnAuthModule.js +0 -0
  896. /package/{public → modules}/orm/models/webauthnCredentialsModule.d.ts +0 -0
  897. /package/{public → modules}/orm/models/webauthnCredentialsModule.js +0 -0
  898. /package/{esm/admin → usage}/orm/models/appLimit.d.ts +0 -0
  899. /package/{admin → usage}/orm/models/appLimit.js +0 -0
  900. /package/{esm/admin → usage}/orm/models/appLimitCap.d.ts +0 -0
  901. /package/{admin → usage}/orm/models/appLimitCap.js +0 -0
  902. /package/{esm/admin → usage}/orm/models/appLimitCapsDefault.d.ts +0 -0
  903. /package/{admin → usage}/orm/models/appLimitCapsDefault.js +0 -0
  904. /package/{esm/admin → usage}/orm/models/appLimitCredit.d.ts +0 -0
  905. /package/{admin → usage}/orm/models/appLimitCredit.js +0 -0
  906. /package/{esm/admin → usage}/orm/models/appLimitCreditCode.d.ts +0 -0
  907. /package/{admin → usage}/orm/models/appLimitCreditCode.js +0 -0
  908. /package/{esm/admin → usage}/orm/models/appLimitCreditCodeItem.d.ts +0 -0
  909. /package/{admin → usage}/orm/models/appLimitCreditCodeItem.js +0 -0
  910. /package/{esm/admin → usage}/orm/models/appLimitCreditRedemption.d.ts +0 -0
  911. /package/{admin → usage}/orm/models/appLimitCreditRedemption.js +0 -0
  912. /package/{esm/admin → usage}/orm/models/appLimitDefault.d.ts +0 -0
  913. /package/{admin → usage}/orm/models/appLimitDefault.js +0 -0
  914. /package/{esm/admin → usage}/orm/models/appLimitEvent.d.ts +0 -0
  915. /package/{admin → usage}/orm/models/appLimitEvent.js +0 -0
  916. /package/{esm/admin → usage}/orm/models/appLimitWarning.d.ts +0 -0
  917. /package/{admin → usage}/orm/models/appLimitWarning.js +0 -0
  918. /package/{esm/admin → usage}/orm/models/orgLimit.d.ts +0 -0
  919. /package/{admin → usage}/orm/models/orgLimit.js +0 -0
  920. /package/{esm/admin → usage}/orm/models/orgLimitAggregate.d.ts +0 -0
  921. /package/{admin → usage}/orm/models/orgLimitAggregate.js +0 -0
  922. /package/{esm/admin → usage}/orm/models/orgLimitCap.d.ts +0 -0
  923. /package/{admin → usage}/orm/models/orgLimitCap.js +0 -0
  924. /package/{esm/admin → usage}/orm/models/orgLimitCapsDefault.d.ts +0 -0
  925. /package/{admin → usage}/orm/models/orgLimitCapsDefault.js +0 -0
  926. /package/{esm/admin → usage}/orm/models/orgLimitCredit.d.ts +0 -0
  927. /package/{admin → usage}/orm/models/orgLimitCredit.js +0 -0
  928. /package/{esm/admin → usage}/orm/models/orgLimitDefault.d.ts +0 -0
  929. /package/{admin → usage}/orm/models/orgLimitDefault.js +0 -0
  930. /package/{esm/admin → usage}/orm/models/orgLimitEvent.d.ts +0 -0
  931. /package/{admin → usage}/orm/models/orgLimitEvent.js +0 -0
  932. /package/{esm/admin → usage}/orm/models/orgLimitWarning.d.ts +0 -0
  933. /package/{admin → usage}/orm/models/orgLimitWarning.js +0 -0
@@ -1,54 +0,0 @@
1
- /**
2
- * OrgInvite model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { OrgInviteWithRelations, OrgInviteSelect, OrgInviteFilter, OrgInviteOrderBy, CreateOrgInviteInput, OrgInvitePatch } from '../input-types';
10
- export declare class OrgInviteModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends OrgInviteSelect>(args: FindManyArgs<S, OrgInviteFilter, OrgInviteOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
16
- orgInvites: ConnectionResult<InferSelectResult<OrgInviteWithRelations, S>>;
17
- }>;
18
- findFirst<S extends OrgInviteSelect>(args: FindFirstArgs<S, OrgInviteFilter, OrgInviteOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
21
- orgInvite: InferSelectResult<OrgInviteWithRelations, S> | null;
22
- }>;
23
- findOne<S extends OrgInviteSelect>(args: {
24
- id: string;
25
- select: S;
26
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
27
- orgInvite: InferSelectResult<OrgInviteWithRelations, S> | null;
28
- }>;
29
- create<S extends OrgInviteSelect>(args: CreateArgs<S, CreateOrgInviteInput['orgInvite']> & {
30
- select: S;
31
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
32
- createOrgInvite: {
33
- orgInvite: InferSelectResult<OrgInviteWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends OrgInviteSelect>(args: UpdateArgs<S, {
37
- id: string;
38
- }, OrgInvitePatch> & {
39
- select: S;
40
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
41
- updateOrgInvite: {
42
- orgInvite: InferSelectResult<OrgInviteWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends OrgInviteSelect>(args: DeleteArgs<{
46
- id: string;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, OrgInviteSelect>): QueryBuilder<{
50
- deleteOrgInvite: {
51
- orgInvite: InferSelectResult<OrgInviteWithRelations, S>;
52
- };
53
- }>;
54
- }
@@ -1,100 +0,0 @@
1
- import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
- import { connectionFieldsMap } from '../input-types';
3
- export class OrgInviteModel {
4
- client;
5
- constructor(client) {
6
- this.client = client;
7
- }
8
- findMany(args) {
9
- const { document, variables } = buildFindManyDocument('OrgInvite', 'orgInvites', args.select, {
10
- where: args?.where,
11
- orderBy: args?.orderBy,
12
- first: args?.first,
13
- last: args?.last,
14
- after: args?.after,
15
- before: args?.before,
16
- offset: args?.offset,
17
- }, 'OrgInviteFilter', 'OrgInviteOrderBy', connectionFieldsMap);
18
- return new QueryBuilder({
19
- client: this.client,
20
- operation: 'query',
21
- operationName: 'OrgInvite',
22
- fieldName: 'orgInvites',
23
- document,
24
- variables,
25
- });
26
- }
27
- findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('OrgInvite', 'orgInvites', args.select, {
29
- where: args?.where,
30
- orderBy: args?.orderBy,
31
- }, 'OrgInviteFilter', 'OrgInviteOrderBy', connectionFieldsMap);
32
- return new QueryBuilder({
33
- client: this.client,
34
- operation: 'query',
35
- operationName: 'OrgInvite',
36
- fieldName: 'orgInvite',
37
- document,
38
- variables,
39
- transform: (data) => ({
40
- orgInvite: data.orgInvites?.nodes?.[0] ?? null,
41
- }),
42
- });
43
- }
44
- findOne(args) {
45
- const { document, variables } = buildFindManyDocument('OrgInvite', 'orgInvites', args.select, {
46
- where: {
47
- id: {
48
- equalTo: args.id,
49
- },
50
- },
51
- first: 1,
52
- }, 'OrgInviteFilter', 'OrgInviteOrderBy', connectionFieldsMap);
53
- return new QueryBuilder({
54
- client: this.client,
55
- operation: 'query',
56
- operationName: 'OrgInvite',
57
- fieldName: 'orgInvite',
58
- document,
59
- variables,
60
- transform: (data) => ({
61
- orgInvite: data.orgInvites?.nodes?.[0] ?? null,
62
- }),
63
- });
64
- }
65
- create(args) {
66
- const { document, variables } = buildCreateDocument('OrgInvite', 'createOrgInvite', 'orgInvite', args.select, args.data, 'CreateOrgInviteInput', connectionFieldsMap);
67
- return new QueryBuilder({
68
- client: this.client,
69
- operation: 'mutation',
70
- operationName: 'OrgInvite',
71
- fieldName: 'createOrgInvite',
72
- document,
73
- variables,
74
- });
75
- }
76
- update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('OrgInvite', 'updateOrgInvite', 'orgInvite', args.select, args.where.id, args.data, 'UpdateOrgInviteInput', 'id', 'orgInvitePatch', connectionFieldsMap);
78
- return new QueryBuilder({
79
- client: this.client,
80
- operation: 'mutation',
81
- operationName: 'OrgInvite',
82
- fieldName: 'updateOrgInvite',
83
- document,
84
- variables,
85
- });
86
- }
87
- delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('OrgInvite', 'deleteOrgInvite', 'orgInvite', {
89
- id: args.where.id,
90
- }, 'DeleteOrgInviteInput', args.select, connectionFieldsMap);
91
- return new QueryBuilder({
92
- client: this.client,
93
- operation: 'mutation',
94
- operationName: 'OrgInvite',
95
- fieldName: 'deleteOrgInvite',
96
- document,
97
- variables,
98
- });
99
- }
100
- }
@@ -1,54 +0,0 @@
1
- /**
2
- * OrgLimit model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { OrgLimitWithRelations, OrgLimitSelect, OrgLimitFilter, OrgLimitOrderBy, CreateOrgLimitInput, OrgLimitPatch } from '../input-types';
10
- export declare class OrgLimitModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends OrgLimitSelect>(args: FindManyArgs<S, OrgLimitFilter, OrgLimitOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
16
- orgLimits: ConnectionResult<InferSelectResult<OrgLimitWithRelations, S>>;
17
- }>;
18
- findFirst<S extends OrgLimitSelect>(args: FindFirstArgs<S, OrgLimitFilter, OrgLimitOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
21
- orgLimit: InferSelectResult<OrgLimitWithRelations, S> | null;
22
- }>;
23
- findOne<S extends OrgLimitSelect>(args: {
24
- id: string;
25
- select: S;
26
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
27
- orgLimit: InferSelectResult<OrgLimitWithRelations, S> | null;
28
- }>;
29
- create<S extends OrgLimitSelect>(args: CreateArgs<S, CreateOrgLimitInput['orgLimit']> & {
30
- select: S;
31
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
32
- createOrgLimit: {
33
- orgLimit: InferSelectResult<OrgLimitWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends OrgLimitSelect>(args: UpdateArgs<S, {
37
- id: string;
38
- }, OrgLimitPatch> & {
39
- select: S;
40
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
41
- updateOrgLimit: {
42
- orgLimit: InferSelectResult<OrgLimitWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends OrgLimitSelect>(args: DeleteArgs<{
46
- id: string;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, OrgLimitSelect>): QueryBuilder<{
50
- deleteOrgLimit: {
51
- orgLimit: InferSelectResult<OrgLimitWithRelations, S>;
52
- };
53
- }>;
54
- }
@@ -1,100 +0,0 @@
1
- import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
- import { connectionFieldsMap } from '../input-types';
3
- export class OrgLimitModel {
4
- client;
5
- constructor(client) {
6
- this.client = client;
7
- }
8
- findMany(args) {
9
- const { document, variables } = buildFindManyDocument('OrgLimit', 'orgLimits', args.select, {
10
- where: args?.where,
11
- orderBy: args?.orderBy,
12
- first: args?.first,
13
- last: args?.last,
14
- after: args?.after,
15
- before: args?.before,
16
- offset: args?.offset,
17
- }, 'OrgLimitFilter', 'OrgLimitOrderBy', connectionFieldsMap);
18
- return new QueryBuilder({
19
- client: this.client,
20
- operation: 'query',
21
- operationName: 'OrgLimit',
22
- fieldName: 'orgLimits',
23
- document,
24
- variables,
25
- });
26
- }
27
- findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('OrgLimit', 'orgLimits', args.select, {
29
- where: args?.where,
30
- orderBy: args?.orderBy,
31
- }, 'OrgLimitFilter', 'OrgLimitOrderBy', connectionFieldsMap);
32
- return new QueryBuilder({
33
- client: this.client,
34
- operation: 'query',
35
- operationName: 'OrgLimit',
36
- fieldName: 'orgLimit',
37
- document,
38
- variables,
39
- transform: (data) => ({
40
- orgLimit: data.orgLimits?.nodes?.[0] ?? null,
41
- }),
42
- });
43
- }
44
- findOne(args) {
45
- const { document, variables } = buildFindManyDocument('OrgLimit', 'orgLimits', args.select, {
46
- where: {
47
- id: {
48
- equalTo: args.id,
49
- },
50
- },
51
- first: 1,
52
- }, 'OrgLimitFilter', 'OrgLimitOrderBy', connectionFieldsMap);
53
- return new QueryBuilder({
54
- client: this.client,
55
- operation: 'query',
56
- operationName: 'OrgLimit',
57
- fieldName: 'orgLimit',
58
- document,
59
- variables,
60
- transform: (data) => ({
61
- orgLimit: data.orgLimits?.nodes?.[0] ?? null,
62
- }),
63
- });
64
- }
65
- create(args) {
66
- const { document, variables } = buildCreateDocument('OrgLimit', 'createOrgLimit', 'orgLimit', args.select, args.data, 'CreateOrgLimitInput', connectionFieldsMap);
67
- return new QueryBuilder({
68
- client: this.client,
69
- operation: 'mutation',
70
- operationName: 'OrgLimit',
71
- fieldName: 'createOrgLimit',
72
- document,
73
- variables,
74
- });
75
- }
76
- update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('OrgLimit', 'updateOrgLimit', 'orgLimit', args.select, args.where.id, args.data, 'UpdateOrgLimitInput', 'id', 'orgLimitPatch', connectionFieldsMap);
78
- return new QueryBuilder({
79
- client: this.client,
80
- operation: 'mutation',
81
- operationName: 'OrgLimit',
82
- fieldName: 'updateOrgLimit',
83
- document,
84
- variables,
85
- });
86
- }
87
- delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('OrgLimit', 'deleteOrgLimit', 'orgLimit', {
89
- id: args.where.id,
90
- }, 'DeleteOrgLimitInput', args.select, connectionFieldsMap);
91
- return new QueryBuilder({
92
- client: this.client,
93
- operation: 'mutation',
94
- operationName: 'OrgLimit',
95
- fieldName: 'deleteOrgLimit',
96
- document,
97
- variables,
98
- });
99
- }
100
- }
@@ -1,54 +0,0 @@
1
- /**
2
- * OrgLimitAggregate model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { OrgLimitAggregateWithRelations, OrgLimitAggregateSelect, OrgLimitAggregateFilter, OrgLimitAggregateOrderBy, CreateOrgLimitAggregateInput, OrgLimitAggregatePatch } from '../input-types';
10
- export declare class OrgLimitAggregateModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends OrgLimitAggregateSelect>(args: FindManyArgs<S, OrgLimitAggregateFilter, OrgLimitAggregateOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
16
- orgLimitAggregates: ConnectionResult<InferSelectResult<OrgLimitAggregateWithRelations, S>>;
17
- }>;
18
- findFirst<S extends OrgLimitAggregateSelect>(args: FindFirstArgs<S, OrgLimitAggregateFilter, OrgLimitAggregateOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
21
- orgLimitAggregate: InferSelectResult<OrgLimitAggregateWithRelations, S> | null;
22
- }>;
23
- findOne<S extends OrgLimitAggregateSelect>(args: {
24
- id: string;
25
- select: S;
26
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
27
- orgLimitAggregate: InferSelectResult<OrgLimitAggregateWithRelations, S> | null;
28
- }>;
29
- create<S extends OrgLimitAggregateSelect>(args: CreateArgs<S, CreateOrgLimitAggregateInput['orgLimitAggregate']> & {
30
- select: S;
31
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
32
- createOrgLimitAggregate: {
33
- orgLimitAggregate: InferSelectResult<OrgLimitAggregateWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends OrgLimitAggregateSelect>(args: UpdateArgs<S, {
37
- id: string;
38
- }, OrgLimitAggregatePatch> & {
39
- select: S;
40
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
41
- updateOrgLimitAggregate: {
42
- orgLimitAggregate: InferSelectResult<OrgLimitAggregateWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends OrgLimitAggregateSelect>(args: DeleteArgs<{
46
- id: string;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, OrgLimitAggregateSelect>): QueryBuilder<{
50
- deleteOrgLimitAggregate: {
51
- orgLimitAggregate: InferSelectResult<OrgLimitAggregateWithRelations, S>;
52
- };
53
- }>;
54
- }
@@ -1,100 +0,0 @@
1
- import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
- import { connectionFieldsMap } from '../input-types';
3
- export class OrgLimitAggregateModel {
4
- client;
5
- constructor(client) {
6
- this.client = client;
7
- }
8
- findMany(args) {
9
- const { document, variables } = buildFindManyDocument('OrgLimitAggregate', 'orgLimitAggregates', args.select, {
10
- where: args?.where,
11
- orderBy: args?.orderBy,
12
- first: args?.first,
13
- last: args?.last,
14
- after: args?.after,
15
- before: args?.before,
16
- offset: args?.offset,
17
- }, 'OrgLimitAggregateFilter', 'OrgLimitAggregateOrderBy', connectionFieldsMap);
18
- return new QueryBuilder({
19
- client: this.client,
20
- operation: 'query',
21
- operationName: 'OrgLimitAggregate',
22
- fieldName: 'orgLimitAggregates',
23
- document,
24
- variables,
25
- });
26
- }
27
- findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('OrgLimitAggregate', 'orgLimitAggregates', args.select, {
29
- where: args?.where,
30
- orderBy: args?.orderBy,
31
- }, 'OrgLimitAggregateFilter', 'OrgLimitAggregateOrderBy', connectionFieldsMap);
32
- return new QueryBuilder({
33
- client: this.client,
34
- operation: 'query',
35
- operationName: 'OrgLimitAggregate',
36
- fieldName: 'orgLimitAggregate',
37
- document,
38
- variables,
39
- transform: (data) => ({
40
- orgLimitAggregate: data.orgLimitAggregates?.nodes?.[0] ?? null,
41
- }),
42
- });
43
- }
44
- findOne(args) {
45
- const { document, variables } = buildFindManyDocument('OrgLimitAggregate', 'orgLimitAggregates', args.select, {
46
- where: {
47
- id: {
48
- equalTo: args.id,
49
- },
50
- },
51
- first: 1,
52
- }, 'OrgLimitAggregateFilter', 'OrgLimitAggregateOrderBy', connectionFieldsMap);
53
- return new QueryBuilder({
54
- client: this.client,
55
- operation: 'query',
56
- operationName: 'OrgLimitAggregate',
57
- fieldName: 'orgLimitAggregate',
58
- document,
59
- variables,
60
- transform: (data) => ({
61
- orgLimitAggregate: data.orgLimitAggregates?.nodes?.[0] ?? null,
62
- }),
63
- });
64
- }
65
- create(args) {
66
- const { document, variables } = buildCreateDocument('OrgLimitAggregate', 'createOrgLimitAggregate', 'orgLimitAggregate', args.select, args.data, 'CreateOrgLimitAggregateInput', connectionFieldsMap);
67
- return new QueryBuilder({
68
- client: this.client,
69
- operation: 'mutation',
70
- operationName: 'OrgLimitAggregate',
71
- fieldName: 'createOrgLimitAggregate',
72
- document,
73
- variables,
74
- });
75
- }
76
- update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('OrgLimitAggregate', 'updateOrgLimitAggregate', 'orgLimitAggregate', args.select, args.where.id, args.data, 'UpdateOrgLimitAggregateInput', 'id', 'orgLimitAggregatePatch', connectionFieldsMap);
78
- return new QueryBuilder({
79
- client: this.client,
80
- operation: 'mutation',
81
- operationName: 'OrgLimitAggregate',
82
- fieldName: 'updateOrgLimitAggregate',
83
- document,
84
- variables,
85
- });
86
- }
87
- delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('OrgLimitAggregate', 'deleteOrgLimitAggregate', 'orgLimitAggregate', {
89
- id: args.where.id,
90
- }, 'DeleteOrgLimitAggregateInput', args.select, connectionFieldsMap);
91
- return new QueryBuilder({
92
- client: this.client,
93
- operation: 'mutation',
94
- operationName: 'OrgLimitAggregate',
95
- fieldName: 'deleteOrgLimitAggregate',
96
- document,
97
- variables,
98
- });
99
- }
100
- }
@@ -1,54 +0,0 @@
1
- /**
2
- * OrgLimitCap model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { OrgLimitCapWithRelations, OrgLimitCapSelect, OrgLimitCapFilter, OrgLimitCapOrderBy, CreateOrgLimitCapInput, OrgLimitCapPatch } from '../input-types';
10
- export declare class OrgLimitCapModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends OrgLimitCapSelect>(args: FindManyArgs<S, OrgLimitCapFilter, OrgLimitCapOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
16
- orgLimitCaps: ConnectionResult<InferSelectResult<OrgLimitCapWithRelations, S>>;
17
- }>;
18
- findFirst<S extends OrgLimitCapSelect>(args: FindFirstArgs<S, OrgLimitCapFilter, OrgLimitCapOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
21
- orgLimitCap: InferSelectResult<OrgLimitCapWithRelations, S> | null;
22
- }>;
23
- findOne<S extends OrgLimitCapSelect>(args: {
24
- id: string;
25
- select: S;
26
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
27
- orgLimitCap: InferSelectResult<OrgLimitCapWithRelations, S> | null;
28
- }>;
29
- create<S extends OrgLimitCapSelect>(args: CreateArgs<S, CreateOrgLimitCapInput['orgLimitCap']> & {
30
- select: S;
31
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
32
- createOrgLimitCap: {
33
- orgLimitCap: InferSelectResult<OrgLimitCapWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends OrgLimitCapSelect>(args: UpdateArgs<S, {
37
- id: string;
38
- }, OrgLimitCapPatch> & {
39
- select: S;
40
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
41
- updateOrgLimitCap: {
42
- orgLimitCap: InferSelectResult<OrgLimitCapWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends OrgLimitCapSelect>(args: DeleteArgs<{
46
- id: string;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, OrgLimitCapSelect>): QueryBuilder<{
50
- deleteOrgLimitCap: {
51
- orgLimitCap: InferSelectResult<OrgLimitCapWithRelations, S>;
52
- };
53
- }>;
54
- }
@@ -1,100 +0,0 @@
1
- import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
- import { connectionFieldsMap } from '../input-types';
3
- export class OrgLimitCapModel {
4
- client;
5
- constructor(client) {
6
- this.client = client;
7
- }
8
- findMany(args) {
9
- const { document, variables } = buildFindManyDocument('OrgLimitCap', 'orgLimitCaps', args.select, {
10
- where: args?.where,
11
- orderBy: args?.orderBy,
12
- first: args?.first,
13
- last: args?.last,
14
- after: args?.after,
15
- before: args?.before,
16
- offset: args?.offset,
17
- }, 'OrgLimitCapFilter', 'OrgLimitCapOrderBy', connectionFieldsMap);
18
- return new QueryBuilder({
19
- client: this.client,
20
- operation: 'query',
21
- operationName: 'OrgLimitCap',
22
- fieldName: 'orgLimitCaps',
23
- document,
24
- variables,
25
- });
26
- }
27
- findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('OrgLimitCap', 'orgLimitCaps', args.select, {
29
- where: args?.where,
30
- orderBy: args?.orderBy,
31
- }, 'OrgLimitCapFilter', 'OrgLimitCapOrderBy', connectionFieldsMap);
32
- return new QueryBuilder({
33
- client: this.client,
34
- operation: 'query',
35
- operationName: 'OrgLimitCap',
36
- fieldName: 'orgLimitCap',
37
- document,
38
- variables,
39
- transform: (data) => ({
40
- orgLimitCap: data.orgLimitCaps?.nodes?.[0] ?? null,
41
- }),
42
- });
43
- }
44
- findOne(args) {
45
- const { document, variables } = buildFindManyDocument('OrgLimitCap', 'orgLimitCaps', args.select, {
46
- where: {
47
- id: {
48
- equalTo: args.id,
49
- },
50
- },
51
- first: 1,
52
- }, 'OrgLimitCapFilter', 'OrgLimitCapOrderBy', connectionFieldsMap);
53
- return new QueryBuilder({
54
- client: this.client,
55
- operation: 'query',
56
- operationName: 'OrgLimitCap',
57
- fieldName: 'orgLimitCap',
58
- document,
59
- variables,
60
- transform: (data) => ({
61
- orgLimitCap: data.orgLimitCaps?.nodes?.[0] ?? null,
62
- }),
63
- });
64
- }
65
- create(args) {
66
- const { document, variables } = buildCreateDocument('OrgLimitCap', 'createOrgLimitCap', 'orgLimitCap', args.select, args.data, 'CreateOrgLimitCapInput', connectionFieldsMap);
67
- return new QueryBuilder({
68
- client: this.client,
69
- operation: 'mutation',
70
- operationName: 'OrgLimitCap',
71
- fieldName: 'createOrgLimitCap',
72
- document,
73
- variables,
74
- });
75
- }
76
- update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('OrgLimitCap', 'updateOrgLimitCap', 'orgLimitCap', args.select, args.where.id, args.data, 'UpdateOrgLimitCapInput', 'id', 'orgLimitCapPatch', connectionFieldsMap);
78
- return new QueryBuilder({
79
- client: this.client,
80
- operation: 'mutation',
81
- operationName: 'OrgLimitCap',
82
- fieldName: 'updateOrgLimitCap',
83
- document,
84
- variables,
85
- });
86
- }
87
- delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('OrgLimitCap', 'deleteOrgLimitCap', 'orgLimitCap', {
89
- id: args.where.id,
90
- }, 'DeleteOrgLimitCapInput', args.select, connectionFieldsMap);
91
- return new QueryBuilder({
92
- client: this.client,
93
- operation: 'mutation',
94
- operationName: 'OrgLimitCap',
95
- fieldName: 'deleteOrgLimitCap',
96
- document,
97
- variables,
98
- });
99
- }
100
- }
@@ -1,54 +0,0 @@
1
- /**
2
- * OrgLimitCapsDefault model for ORM client
3
- * @generated by @constructive-io/graphql-codegen
4
- * DO NOT EDIT - changes will be overwritten
5
- */
6
- import { OrmClient } from '../client';
7
- import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { OrgLimitCapsDefaultWithRelations, OrgLimitCapsDefaultSelect, OrgLimitCapsDefaultFilter, OrgLimitCapsDefaultOrderBy, CreateOrgLimitCapsDefaultInput, OrgLimitCapsDefaultPatch } from '../input-types';
10
- export declare class OrgLimitCapsDefaultModel {
11
- private client;
12
- constructor(client: OrmClient);
13
- findMany<S extends OrgLimitCapsDefaultSelect>(args: FindManyArgs<S, OrgLimitCapsDefaultFilter, OrgLimitCapsDefaultOrderBy> & {
14
- select: S;
15
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
16
- orgLimitCapsDefaults: ConnectionResult<InferSelectResult<OrgLimitCapsDefaultWithRelations, S>>;
17
- }>;
18
- findFirst<S extends OrgLimitCapsDefaultSelect>(args: FindFirstArgs<S, OrgLimitCapsDefaultFilter, OrgLimitCapsDefaultOrderBy> & {
19
- select: S;
20
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
21
- orgLimitCapsDefault: InferSelectResult<OrgLimitCapsDefaultWithRelations, S> | null;
22
- }>;
23
- findOne<S extends OrgLimitCapsDefaultSelect>(args: {
24
- id: string;
25
- select: S;
26
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
27
- orgLimitCapsDefault: InferSelectResult<OrgLimitCapsDefaultWithRelations, S> | null;
28
- }>;
29
- create<S extends OrgLimitCapsDefaultSelect>(args: CreateArgs<S, CreateOrgLimitCapsDefaultInput['orgLimitCapsDefault']> & {
30
- select: S;
31
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
32
- createOrgLimitCapsDefault: {
33
- orgLimitCapsDefault: InferSelectResult<OrgLimitCapsDefaultWithRelations, S>;
34
- };
35
- }>;
36
- update<S extends OrgLimitCapsDefaultSelect>(args: UpdateArgs<S, {
37
- id: string;
38
- }, OrgLimitCapsDefaultPatch> & {
39
- select: S;
40
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
41
- updateOrgLimitCapsDefault: {
42
- orgLimitCapsDefault: InferSelectResult<OrgLimitCapsDefaultWithRelations, S>;
43
- };
44
- }>;
45
- delete<S extends OrgLimitCapsDefaultSelect>(args: DeleteArgs<{
46
- id: string;
47
- }, S> & {
48
- select: S;
49
- } & StrictSelect<S, OrgLimitCapsDefaultSelect>): QueryBuilder<{
50
- deleteOrgLimitCapsDefault: {
51
- orgLimitCapsDefault: InferSelectResult<OrgLimitCapsDefaultWithRelations, S>;
52
- };
53
- }>;
54
- }