@constructive-io/react 0.21.2 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (804) hide show
  1. package/admin/hooks/index.d.ts +1 -1
  2. package/admin/hooks/index.js +1 -1
  3. package/admin/hooks/invalidation.d.ts +85 -91
  4. package/admin/hooks/invalidation.js +194 -210
  5. package/admin/hooks/mutation-keys.d.ts +170 -182
  6. package/admin/hooks/mutation-keys.js +101 -108
  7. package/admin/hooks/mutations/index.d.ts +48 -47
  8. package/admin/hooks/mutations/index.js +48 -47
  9. package/admin/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
  10. package/admin/hooks/mutations/useDeleteAppLimitEventMutation.js +39 -0
  11. package/admin/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
  12. package/admin/hooks/mutations/useDeleteOrgLimitEventMutation.js +39 -0
  13. package/admin/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
  14. package/{public/hooks/mutations/useUpdateObjectMutation.js → admin/hooks/mutations/useUpdateAppLimitEventMutation.js} +9 -9
  15. package/admin/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
  16. package/admin/hooks/mutations/useUpdateOrgLimitEventMutation.js +40 -0
  17. package/admin/hooks/queries/index.d.ts +32 -32
  18. package/admin/hooks/queries/index.js +32 -32
  19. package/admin/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
  20. package/admin/hooks/queries/useAppLimitEventQuery.js +53 -0
  21. package/admin/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
  22. package/admin/hooks/queries/useOrgLimitEventQuery.js +53 -0
  23. package/admin/hooks/query-keys.d.ts +200 -214
  24. package/admin/hooks/query-keys.js +116 -124
  25. package/admin/orm/index.d.ts +31 -33
  26. package/admin/orm/index.js +32 -33
  27. package/admin/orm/input-types.d.ts +2090 -2039
  28. package/admin/orm/input-types.js +4 -4
  29. package/admin/orm/models/appLimitEvent.d.ts +26 -2
  30. package/admin/orm/models/appLimitEvent.js +45 -0
  31. package/admin/orm/models/index.d.ts +15 -16
  32. package/admin/orm/models/index.js +31 -33
  33. package/admin/orm/models/orgLimitEvent.d.ts +26 -2
  34. package/admin/orm/models/orgLimitEvent.js +45 -0
  35. package/admin/schema-types.d.ts +1917 -1838
  36. package/admin/types.d.ts +149 -143
  37. package/auth/hooks/index.d.ts +1 -1
  38. package/auth/hooks/index.js +1 -1
  39. package/auth/hooks/invalidation.d.ts +5 -5
  40. package/auth/hooks/invalidation.js +9 -9
  41. package/auth/hooks/mutation-keys.d.ts +12 -12
  42. package/auth/hooks/mutation-keys.js +10 -10
  43. package/auth/hooks/mutations/index.d.ts +4 -4
  44. package/auth/hooks/mutations/index.js +4 -4
  45. package/auth/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
  46. package/auth/hooks/mutations/useCreateAuditLogAuthMutation.js +34 -0
  47. package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
  48. package/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +39 -0
  49. package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
  50. package/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +40 -0
  51. package/auth/hooks/queries/index.d.ts +2 -2
  52. package/auth/hooks/queries/index.js +2 -2
  53. package/auth/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
  54. package/auth/hooks/queries/useAuditLogAuthQuery.js +53 -0
  55. package/auth/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
  56. package/{public/hooks/queries/useGetAllQuery.js → auth/hooks/queries/useAuditLogAuthsQuery.js} +14 -14
  57. package/auth/hooks/query-keys.d.ts +12 -12
  58. package/auth/hooks/query-keys.js +8 -8
  59. package/auth/orm/index.d.ts +8 -8
  60. package/auth/orm/index.js +4 -3
  61. package/auth/orm/input-types.d.ts +94 -94
  62. package/auth/orm/input-types.js +1 -1
  63. package/auth/orm/models/auditLogAuth.d.ts +54 -0
  64. package/{public/orm/models/agentMessage.js → auth/orm/models/auditLogAuth.js} +27 -27
  65. package/auth/orm/models/index.d.ts +1 -1
  66. package/auth/orm/models/index.js +3 -3
  67. package/auth/orm/mutation/index.d.ts +9 -9
  68. package/auth/orm/mutation/index.js +12 -12
  69. package/auth/schema-types.d.ts +90 -86
  70. package/auth/types.d.ts +2 -2
  71. package/esm/admin/hooks/index.d.ts +1 -1
  72. package/esm/admin/hooks/index.js +1 -1
  73. package/esm/admin/hooks/invalidation.d.ts +85 -91
  74. package/esm/admin/hooks/invalidation.js +195 -211
  75. package/esm/admin/hooks/mutation-keys.d.ts +170 -182
  76. package/esm/admin/hooks/mutation-keys.js +100 -107
  77. package/esm/admin/hooks/mutations/index.d.ts +48 -47
  78. package/esm/admin/hooks/mutations/index.js +48 -47
  79. package/esm/admin/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
  80. package/esm/admin/hooks/mutations/useDeleteAppLimitEventMutation.js +36 -0
  81. package/esm/admin/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
  82. package/esm/admin/hooks/mutations/useDeleteOrgLimitEventMutation.js +36 -0
  83. package/esm/admin/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
  84. package/esm/admin/hooks/mutations/useUpdateAppLimitEventMutation.js +37 -0
  85. package/esm/admin/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
  86. package/esm/admin/hooks/mutations/useUpdateOrgLimitEventMutation.js +37 -0
  87. package/esm/admin/hooks/queries/index.d.ts +32 -32
  88. package/esm/admin/hooks/queries/index.js +32 -32
  89. package/esm/admin/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
  90. package/esm/admin/hooks/queries/useAppLimitEventQuery.js +47 -0
  91. package/esm/admin/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
  92. package/esm/admin/hooks/queries/useOrgLimitEventQuery.js +47 -0
  93. package/esm/admin/hooks/query-keys.d.ts +200 -214
  94. package/esm/admin/hooks/query-keys.js +115 -123
  95. package/esm/admin/orm/index.d.ts +31 -33
  96. package/esm/admin/orm/index.js +31 -33
  97. package/esm/admin/orm/input-types.d.ts +2090 -2039
  98. package/esm/admin/orm/input-types.js +4 -4
  99. package/esm/admin/orm/models/appLimitEvent.d.ts +26 -2
  100. package/esm/admin/orm/models/appLimitEvent.js +46 -1
  101. package/esm/admin/orm/models/index.d.ts +15 -16
  102. package/esm/admin/orm/models/index.js +15 -16
  103. package/esm/admin/orm/models/orgLimitEvent.d.ts +26 -2
  104. package/esm/admin/orm/models/orgLimitEvent.js +46 -1
  105. package/esm/admin/schema-types.d.ts +1917 -1838
  106. package/esm/admin/types.d.ts +149 -143
  107. package/esm/auth/hooks/index.d.ts +1 -1
  108. package/esm/auth/hooks/index.js +1 -1
  109. package/esm/auth/hooks/invalidation.d.ts +5 -5
  110. package/esm/auth/hooks/invalidation.js +10 -10
  111. package/esm/auth/hooks/mutation-keys.d.ts +12 -12
  112. package/esm/auth/hooks/mutation-keys.js +9 -9
  113. package/esm/auth/hooks/mutations/index.d.ts +4 -4
  114. package/esm/auth/hooks/mutations/index.js +4 -4
  115. package/esm/auth/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
  116. package/esm/auth/hooks/mutations/useCreateAuditLogAuthMutation.js +31 -0
  117. package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
  118. package/esm/auth/hooks/mutations/useDeleteAuditLogAuthMutation.js +36 -0
  119. package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
  120. package/esm/auth/hooks/mutations/useUpdateAuditLogAuthMutation.js +37 -0
  121. package/esm/auth/hooks/queries/index.d.ts +2 -2
  122. package/esm/auth/hooks/queries/index.js +2 -2
  123. package/esm/auth/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
  124. package/esm/auth/hooks/queries/useAuditLogAuthQuery.js +47 -0
  125. package/esm/auth/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
  126. package/esm/auth/hooks/queries/useAuditLogAuthsQuery.js +32 -0
  127. package/esm/auth/hooks/query-keys.d.ts +12 -12
  128. package/esm/auth/hooks/query-keys.js +7 -7
  129. package/esm/auth/orm/index.d.ts +8 -8
  130. package/esm/auth/orm/index.js +3 -3
  131. package/esm/auth/orm/input-types.d.ts +94 -94
  132. package/esm/auth/orm/input-types.js +1 -1
  133. package/esm/auth/orm/models/auditLogAuth.d.ts +54 -0
  134. package/esm/{public/orm/models/auditLog.js → auth/orm/models/auditLogAuth.js} +25 -25
  135. package/esm/auth/orm/models/index.d.ts +1 -1
  136. package/esm/auth/orm/models/index.js +1 -1
  137. package/esm/auth/orm/mutation/index.d.ts +9 -9
  138. package/esm/auth/orm/mutation/index.js +12 -12
  139. package/esm/auth/schema-types.d.ts +90 -86
  140. package/esm/auth/types.d.ts +2 -2
  141. package/esm/objects/orm/index.d.ts +1 -1
  142. package/esm/objects/orm/index.js +1 -1
  143. package/esm/public/hooks/index.d.ts +1 -1
  144. package/esm/public/hooks/index.js +1 -1
  145. package/esm/public/hooks/invalidation.d.ts +164 -152
  146. package/esm/public/hooks/invalidation.js +374 -342
  147. package/esm/public/hooks/mutation-keys.d.ts +350 -342
  148. package/esm/public/hooks/mutation-keys.js +224 -231
  149. package/esm/public/hooks/mutations/index.d.ts +91 -87
  150. package/esm/public/hooks/mutations/index.js +91 -87
  151. package/esm/public/hooks/mutations/useCreateAgentModuleMutation.d.ts +34 -0
  152. package/esm/public/hooks/mutations/{useCreateObjectMutation.js → useCreateAgentModuleMutation.js} +7 -7
  153. package/esm/public/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
  154. package/esm/public/hooks/mutations/useCreateAuditLogAuthMutation.js +31 -0
  155. package/esm/public/hooks/mutations/useCreateComputeLogModuleMutation.d.ts +34 -0
  156. package/esm/public/hooks/mutations/{useCreateAuditLogMutation.js → useCreateComputeLogModuleMutation.js} +7 -7
  157. package/esm/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.d.ts +34 -0
  158. package/esm/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.js +31 -0
  159. package/esm/public/hooks/mutations/useCreateConfigSecretsUserModuleMutation.d.ts +34 -0
  160. package/esm/public/hooks/mutations/{useCreateEncryptedSecretsModuleMutation.js → useCreateConfigSecretsUserModuleMutation.js} +7 -7
  161. package/esm/public/hooks/mutations/useCreateDbUsageModuleMutation.d.ts +34 -0
  162. package/esm/public/hooks/mutations/{useCreateRefMutation.js → useCreateDbUsageModuleMutation.js} +7 -7
  163. package/esm/public/hooks/mutations/useCreateFunctionModuleMutation.d.ts +34 -0
  164. package/esm/public/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateFunctionModuleMutation.js} +7 -7
  165. package/esm/public/hooks/mutations/useCreateGraphModuleMutation.d.ts +34 -0
  166. package/esm/public/hooks/mutations/{useCreateCommitMutation.js → useCreateGraphModuleMutation.js} +7 -7
  167. package/esm/public/hooks/mutations/useCreateInferenceLogModuleMutation.d.ts +34 -0
  168. package/esm/public/hooks/mutations/useCreateInferenceLogModuleMutation.js +31 -0
  169. package/esm/public/hooks/mutations/useCreateMerkleStoreModuleMutation.d.ts +34 -0
  170. package/esm/public/hooks/mutations/useCreateMerkleStoreModuleMutation.js +31 -0
  171. package/esm/public/hooks/mutations/useCreateNamespaceModuleMutation.d.ts +34 -0
  172. package/esm/public/hooks/mutations/useCreateNamespaceModuleMutation.js +31 -0
  173. package/esm/public/hooks/mutations/useCreateStorageLogModuleMutation.d.ts +34 -0
  174. package/esm/{auth/hooks/mutations/useCreateAuditLogMutation.js → public/hooks/mutations/useCreateStorageLogModuleMutation.js} +7 -7
  175. package/esm/public/hooks/mutations/useCreateTransferLogModuleMutation.d.ts +34 -0
  176. package/esm/public/hooks/mutations/useCreateTransferLogModuleMutation.js +31 -0
  177. package/esm/public/hooks/mutations/useDeleteAgentModuleMutation.d.ts +38 -0
  178. package/esm/public/hooks/mutations/{useDeleteRefMutation.js → useDeleteAgentModuleMutation.js} +8 -8
  179. package/esm/public/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
  180. package/esm/public/hooks/mutations/useDeleteAppLimitEventMutation.js +36 -0
  181. package/esm/public/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
  182. package/esm/public/hooks/mutations/useDeleteAuditLogAuthMutation.js +36 -0
  183. package/esm/public/hooks/mutations/useDeleteComputeLogModuleMutation.d.ts +38 -0
  184. package/esm/public/hooks/mutations/{useDeleteAuditLogMutation.js → useDeleteComputeLogModuleMutation.js} +8 -8
  185. package/esm/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.d.ts +38 -0
  186. package/esm/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.js +36 -0
  187. package/esm/public/hooks/mutations/useDeleteConfigSecretsUserModuleMutation.d.ts +38 -0
  188. package/esm/public/hooks/mutations/{useDeleteEncryptedSecretsModuleMutation.js → useDeleteConfigSecretsUserModuleMutation.js} +8 -8
  189. package/esm/public/hooks/mutations/useDeleteDbUsageModuleMutation.d.ts +38 -0
  190. package/esm/public/hooks/mutations/{useDeleteStoreMutation.js → useDeleteDbUsageModuleMutation.js} +8 -8
  191. package/esm/public/hooks/mutations/useDeleteFunctionModuleMutation.d.ts +38 -0
  192. package/esm/public/hooks/mutations/{useDeleteObjectMutation.js → useDeleteFunctionModuleMutation.js} +8 -8
  193. package/esm/public/hooks/mutations/useDeleteGraphModuleMutation.d.ts +38 -0
  194. package/esm/public/hooks/mutations/{useDeleteCommitMutation.js → useDeleteGraphModuleMutation.js} +8 -8
  195. package/esm/public/hooks/mutations/useDeleteInferenceLogModuleMutation.d.ts +38 -0
  196. package/esm/public/hooks/mutations/useDeleteInferenceLogModuleMutation.js +36 -0
  197. package/esm/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.d.ts +38 -0
  198. package/esm/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.js +36 -0
  199. package/esm/public/hooks/mutations/useDeleteNamespaceModuleMutation.d.ts +38 -0
  200. package/esm/{auth/hooks/mutations/useDeleteAuditLogMutation.js → public/hooks/mutations/useDeleteNamespaceModuleMutation.js} +8 -8
  201. package/esm/public/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
  202. package/esm/public/hooks/mutations/useDeleteOrgLimitEventMutation.js +36 -0
  203. package/esm/public/hooks/mutations/useDeleteStorageLogModuleMutation.d.ts +38 -0
  204. package/esm/public/hooks/mutations/useDeleteStorageLogModuleMutation.js +36 -0
  205. package/esm/public/hooks/mutations/useDeleteTransferLogModuleMutation.d.ts +38 -0
  206. package/esm/public/hooks/mutations/useDeleteTransferLogModuleMutation.js +36 -0
  207. package/esm/public/hooks/mutations/useUpdateAgentModuleMutation.d.ts +40 -0
  208. package/esm/public/hooks/mutations/{useUpdateRefMutation.js → useUpdateAgentModuleMutation.js} +10 -10
  209. package/esm/public/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
  210. package/esm/public/hooks/mutations/useUpdateAppLimitEventMutation.js +37 -0
  211. package/esm/public/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
  212. package/esm/public/hooks/mutations/useUpdateAuditLogAuthMutation.js +37 -0
  213. package/esm/public/hooks/mutations/useUpdateComputeLogModuleMutation.d.ts +40 -0
  214. package/esm/public/hooks/mutations/useUpdateComputeLogModuleMutation.js +37 -0
  215. package/esm/public/hooks/mutations/useUpdateConfigSecretsOrgModuleMutation.d.ts +40 -0
  216. package/esm/public/hooks/mutations/{useUpdateAgentTaskMutation.js → useUpdateConfigSecretsOrgModuleMutation.js} +10 -10
  217. package/esm/public/hooks/mutations/useUpdateConfigSecretsUserModuleMutation.d.ts +40 -0
  218. package/esm/public/hooks/mutations/{useUpdateEncryptedSecretsModuleMutation.js → useUpdateConfigSecretsUserModuleMutation.js} +10 -10
  219. package/esm/public/hooks/mutations/useUpdateDbUsageModuleMutation.d.ts +40 -0
  220. package/esm/public/hooks/mutations/{useUpdateObjectMutation.js → useUpdateDbUsageModuleMutation.js} +10 -10
  221. package/esm/public/hooks/mutations/useUpdateFunctionModuleMutation.d.ts +40 -0
  222. package/esm/public/hooks/mutations/{useUpdateAuditLogMutation.js → useUpdateFunctionModuleMutation.js} +10 -10
  223. package/esm/public/hooks/mutations/useUpdateGraphModuleMutation.d.ts +40 -0
  224. package/esm/public/hooks/mutations/{useUpdateCommitMutation.js → useUpdateGraphModuleMutation.js} +10 -10
  225. package/esm/public/hooks/mutations/useUpdateInferenceLogModuleMutation.d.ts +40 -0
  226. package/esm/public/hooks/mutations/useUpdateInferenceLogModuleMutation.js +37 -0
  227. package/esm/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.d.ts +40 -0
  228. package/esm/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.js +37 -0
  229. package/esm/public/hooks/mutations/useUpdateNamespaceModuleMutation.d.ts +40 -0
  230. package/esm/{auth/hooks/mutations/useUpdateAuditLogMutation.js → public/hooks/mutations/useUpdateNamespaceModuleMutation.js} +10 -10
  231. package/esm/public/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
  232. package/esm/public/hooks/mutations/useUpdateOrgLimitEventMutation.js +37 -0
  233. package/esm/public/hooks/mutations/useUpdateStorageLogModuleMutation.d.ts +40 -0
  234. package/esm/public/hooks/mutations/useUpdateStorageLogModuleMutation.js +37 -0
  235. package/esm/public/hooks/mutations/useUpdateTransferLogModuleMutation.d.ts +40 -0
  236. package/esm/public/hooks/mutations/useUpdateTransferLogModuleMutation.js +37 -0
  237. package/esm/public/hooks/queries/index.d.ts +60 -56
  238. package/esm/public/hooks/queries/index.js +60 -56
  239. package/esm/public/hooks/queries/useAgentModuleQuery.d.ts +65 -0
  240. package/esm/public/hooks/queries/{useCommitQuery.js → useAgentModuleQuery.js} +11 -11
  241. package/esm/public/hooks/queries/useAgentModulesQuery.d.ts +69 -0
  242. package/esm/public/hooks/queries/{useCommitsQuery.js → useAgentModulesQuery.js} +11 -11
  243. package/esm/public/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
  244. package/esm/public/hooks/queries/useAppLimitEventQuery.js +47 -0
  245. package/esm/public/hooks/queries/useApplyRegistryDefaultsQuery.d.ts +53 -0
  246. package/esm/public/hooks/queries/useApplyRegistryDefaultsQuery.js +47 -0
  247. package/esm/public/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
  248. package/esm/public/hooks/queries/useAuditLogAuthQuery.js +47 -0
  249. package/esm/public/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
  250. package/esm/public/hooks/queries/useAuditLogAuthsQuery.js +32 -0
  251. package/esm/public/hooks/queries/useComputeLogModuleQuery.d.ts +65 -0
  252. package/esm/public/hooks/queries/useComputeLogModuleQuery.js +47 -0
  253. package/esm/public/hooks/queries/useComputeLogModulesQuery.d.ts +69 -0
  254. package/esm/public/hooks/queries/{useStoresQuery.js → useComputeLogModulesQuery.js} +11 -11
  255. package/esm/public/hooks/queries/useConfigSecretsOrgModuleQuery.d.ts +65 -0
  256. package/esm/{admin/hooks/queries/useUsageSnapshotQuery.js → public/hooks/queries/useConfigSecretsOrgModuleQuery.js} +11 -11
  257. package/esm/public/hooks/queries/useConfigSecretsOrgModulesQuery.d.ts +69 -0
  258. package/esm/public/hooks/queries/useConfigSecretsOrgModulesQuery.js +32 -0
  259. package/esm/public/hooks/queries/useConfigSecretsUserModuleQuery.d.ts +65 -0
  260. package/esm/public/hooks/queries/{useEncryptedSecretsModuleQuery.js → useConfigSecretsUserModuleQuery.js} +11 -11
  261. package/esm/public/hooks/queries/useConfigSecretsUserModulesQuery.d.ts +69 -0
  262. package/esm/public/hooks/queries/useConfigSecretsUserModulesQuery.js +32 -0
  263. package/esm/public/hooks/queries/useDbUsageModuleQuery.d.ts +65 -0
  264. package/esm/{auth/hooks/queries/useAuditLogQuery.js → public/hooks/queries/useDbUsageModuleQuery.js} +11 -11
  265. package/esm/public/hooks/queries/useDbUsageModulesQuery.d.ts +69 -0
  266. package/esm/public/hooks/queries/{useObjectsQuery.js → useDbUsageModulesQuery.js} +11 -11
  267. package/esm/public/hooks/queries/useFunctionModuleQuery.d.ts +65 -0
  268. package/esm/public/hooks/queries/{useAuditLogQuery.js → useFunctionModuleQuery.js} +11 -11
  269. package/esm/public/hooks/queries/useFunctionModulesQuery.d.ts +69 -0
  270. package/esm/public/hooks/queries/{useAuditLogsQuery.js → useFunctionModulesQuery.js} +11 -11
  271. package/esm/public/hooks/queries/useGraphModuleQuery.d.ts +65 -0
  272. package/esm/public/hooks/queries/{useRefQuery.js → useGraphModuleQuery.js} +11 -11
  273. package/esm/public/hooks/queries/useGraphModulesQuery.d.ts +69 -0
  274. package/esm/public/hooks/queries/{useGetAllQuery.js → useGraphModulesQuery.js} +11 -11
  275. package/esm/public/hooks/queries/useInferenceLogModuleQuery.d.ts +65 -0
  276. package/esm/public/hooks/queries/useInferenceLogModuleQuery.js +47 -0
  277. package/esm/public/hooks/queries/useInferenceLogModulesQuery.d.ts +69 -0
  278. package/esm/public/hooks/queries/useInferenceLogModulesQuery.js +32 -0
  279. package/esm/public/hooks/queries/useMerkleStoreModuleQuery.d.ts +65 -0
  280. package/esm/public/hooks/queries/useMerkleStoreModuleQuery.js +47 -0
  281. package/esm/public/hooks/queries/useMerkleStoreModulesQuery.d.ts +69 -0
  282. package/esm/public/hooks/queries/useMerkleStoreModulesQuery.js +32 -0
  283. package/esm/public/hooks/queries/useNamespaceModuleQuery.d.ts +65 -0
  284. package/esm/public/hooks/queries/useNamespaceModuleQuery.js +47 -0
  285. package/esm/public/hooks/queries/useNamespaceModulesQuery.d.ts +69 -0
  286. package/esm/{auth/hooks/queries/useAuditLogsQuery.js → public/hooks/queries/useNamespaceModulesQuery.js} +11 -11
  287. package/esm/public/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
  288. package/esm/public/hooks/queries/useOrgLimitEventQuery.js +47 -0
  289. package/esm/public/hooks/queries/useStorageLogModuleQuery.d.ts +65 -0
  290. package/esm/public/hooks/queries/{useObjectQuery.js → useStorageLogModuleQuery.js} +11 -11
  291. package/esm/public/hooks/queries/useStorageLogModulesQuery.d.ts +69 -0
  292. package/esm/public/hooks/queries/useStorageLogModulesQuery.js +32 -0
  293. package/esm/public/hooks/queries/useTransferLogModuleQuery.d.ts +65 -0
  294. package/esm/public/hooks/queries/useTransferLogModuleQuery.js +47 -0
  295. package/esm/public/hooks/queries/useTransferLogModulesQuery.d.ts +69 -0
  296. package/esm/public/hooks/queries/useTransferLogModulesQuery.js +32 -0
  297. package/esm/public/hooks/query-keys.d.ts +392 -370
  298. package/esm/public/hooks/query-keys.js +225 -212
  299. package/esm/public/orm/index.d.ts +102 -153
  300. package/esm/public/orm/index.js +59 -55
  301. package/esm/public/orm/input-types.d.ts +6255 -3877
  302. package/esm/public/orm/input-types.js +24 -15
  303. package/esm/public/orm/models/agentModule.d.ts +54 -0
  304. package/esm/public/orm/models/{agentThread.js → agentModule.js} +25 -25
  305. package/esm/public/orm/models/appLimitEvent.d.ts +26 -2
  306. package/esm/public/orm/models/appLimitEvent.js +46 -1
  307. package/esm/public/orm/models/auditLogAuth.d.ts +54 -0
  308. package/esm/{auth/orm/models/auditLog.js → public/orm/models/auditLogAuth.js} +25 -25
  309. package/esm/public/orm/models/computeLogModule.d.ts +54 -0
  310. package/esm/public/orm/models/{commit.js → computeLogModule.js} +25 -25
  311. package/esm/public/orm/models/configSecretsOrgModule.d.ts +54 -0
  312. package/esm/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +25 -25
  313. package/esm/public/orm/models/configSecretsUserModule.d.ts +54 -0
  314. package/esm/public/orm/models/configSecretsUserModule.js +100 -0
  315. package/esm/public/orm/models/dbUsageModule.d.ts +54 -0
  316. package/esm/public/orm/models/{usageSnapshot.js → dbUsageModule.js} +25 -25
  317. package/esm/public/orm/models/functionModule.d.ts +54 -0
  318. package/esm/{admin/orm/models/usageSnapshot.js → public/orm/models/functionModule.js} +25 -25
  319. package/esm/public/orm/models/graphModule.d.ts +54 -0
  320. package/esm/public/orm/models/{agentTask.js → graphModule.js} +25 -25
  321. package/esm/public/orm/models/index.d.ts +29 -27
  322. package/esm/public/orm/models/index.js +29 -27
  323. package/esm/public/orm/models/inferenceLogModule.d.ts +54 -0
  324. package/esm/public/orm/models/inferenceLogModule.js +100 -0
  325. package/esm/public/orm/models/merkleStoreModule.d.ts +54 -0
  326. package/esm/public/orm/models/merkleStoreModule.js +100 -0
  327. package/esm/public/orm/models/namespaceModule.d.ts +54 -0
  328. package/esm/public/orm/models/{agentMessage.js → namespaceModule.js} +25 -25
  329. package/esm/public/orm/models/orgLimitEvent.d.ts +26 -2
  330. package/esm/public/orm/models/orgLimitEvent.js +46 -1
  331. package/esm/public/orm/models/storageLogModule.d.ts +54 -0
  332. package/esm/public/orm/models/{store.js → storageLogModule.js} +25 -25
  333. package/esm/public/orm/models/transferLogModule.d.ts +54 -0
  334. package/esm/public/orm/models/transferLogModule.js +100 -0
  335. package/esm/public/orm/mutation/index.d.ts +69 -133
  336. package/esm/public/orm/mutation/index.js +78 -174
  337. package/esm/public/orm/query/index.d.ts +22 -71
  338. package/esm/public/orm/query/index.js +36 -124
  339. package/esm/public/schema-types.d.ts +5424 -4317
  340. package/esm/public/types.d.ts +402 -240
  341. package/objects/orm/index.d.ts +1 -1
  342. package/objects/orm/index.js +2 -1
  343. package/package.json +6 -6
  344. package/public/hooks/index.d.ts +1 -1
  345. package/public/hooks/index.js +1 -1
  346. package/public/hooks/invalidation.d.ts +164 -152
  347. package/public/hooks/invalidation.js +373 -341
  348. package/public/hooks/mutation-keys.d.ts +350 -342
  349. package/public/hooks/mutation-keys.js +228 -234
  350. package/public/hooks/mutations/index.d.ts +91 -87
  351. package/public/hooks/mutations/index.js +91 -87
  352. package/public/hooks/mutations/useCreateAgentModuleMutation.d.ts +34 -0
  353. package/public/hooks/mutations/{useCreateCommitMutation.js → useCreateAgentModuleMutation.js} +6 -6
  354. package/public/hooks/mutations/useCreateAuditLogAuthMutation.d.ts +34 -0
  355. package/public/hooks/mutations/useCreateAuditLogAuthMutation.js +34 -0
  356. package/public/hooks/mutations/useCreateComputeLogModuleMutation.d.ts +34 -0
  357. package/{auth/hooks/mutations/useCreateAuditLogMutation.js → public/hooks/mutations/useCreateComputeLogModuleMutation.js} +6 -6
  358. package/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.d.ts +34 -0
  359. package/public/hooks/mutations/useCreateConfigSecretsOrgModuleMutation.js +34 -0
  360. package/public/hooks/mutations/useCreateConfigSecretsUserModuleMutation.d.ts +34 -0
  361. package/public/hooks/mutations/{useCreateEncryptedSecretsModuleMutation.js → useCreateConfigSecretsUserModuleMutation.js} +6 -6
  362. package/public/hooks/mutations/useCreateDbUsageModuleMutation.d.ts +34 -0
  363. package/public/hooks/mutations/{useCreateObjectMutation.js → useCreateDbUsageModuleMutation.js} +6 -6
  364. package/public/hooks/mutations/useCreateFunctionModuleMutation.d.ts +34 -0
  365. package/public/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateFunctionModuleMutation.js} +6 -6
  366. package/public/hooks/mutations/useCreateGraphModuleMutation.d.ts +34 -0
  367. package/public/hooks/mutations/{useCreateStoreMutation.js → useCreateGraphModuleMutation.js} +6 -6
  368. package/public/hooks/mutations/useCreateInferenceLogModuleMutation.d.ts +34 -0
  369. package/public/hooks/mutations/useCreateInferenceLogModuleMutation.js +34 -0
  370. package/public/hooks/mutations/useCreateMerkleStoreModuleMutation.d.ts +34 -0
  371. package/public/hooks/mutations/useCreateMerkleStoreModuleMutation.js +34 -0
  372. package/public/hooks/mutations/useCreateNamespaceModuleMutation.d.ts +34 -0
  373. package/public/hooks/mutations/{useCreateRefMutation.js → useCreateNamespaceModuleMutation.js} +6 -6
  374. package/public/hooks/mutations/useCreateStorageLogModuleMutation.d.ts +34 -0
  375. package/public/hooks/mutations/{useCreateAuditLogMutation.js → useCreateStorageLogModuleMutation.js} +6 -6
  376. package/public/hooks/mutations/useCreateTransferLogModuleMutation.d.ts +34 -0
  377. package/public/hooks/mutations/useCreateTransferLogModuleMutation.js +34 -0
  378. package/public/hooks/mutations/useDeleteAgentModuleMutation.d.ts +38 -0
  379. package/public/hooks/mutations/{useDeleteRefMutation.js → useDeleteAgentModuleMutation.js} +7 -7
  380. package/public/hooks/mutations/useDeleteAppLimitEventMutation.d.ts +38 -0
  381. package/public/hooks/mutations/useDeleteAppLimitEventMutation.js +39 -0
  382. package/public/hooks/mutations/useDeleteAuditLogAuthMutation.d.ts +38 -0
  383. package/public/hooks/mutations/useDeleteAuditLogAuthMutation.js +39 -0
  384. package/public/hooks/mutations/useDeleteComputeLogModuleMutation.d.ts +38 -0
  385. package/public/hooks/mutations/{useDeleteAuditLogMutation.js → useDeleteComputeLogModuleMutation.js} +7 -7
  386. package/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.d.ts +38 -0
  387. package/public/hooks/mutations/useDeleteConfigSecretsOrgModuleMutation.js +39 -0
  388. package/public/hooks/mutations/useDeleteConfigSecretsUserModuleMutation.d.ts +38 -0
  389. package/public/hooks/mutations/{useDeleteEncryptedSecretsModuleMutation.js → useDeleteConfigSecretsUserModuleMutation.js} +7 -7
  390. package/public/hooks/mutations/useDeleteDbUsageModuleMutation.d.ts +38 -0
  391. package/public/hooks/mutations/{useDeleteCommitMutation.js → useDeleteDbUsageModuleMutation.js} +7 -7
  392. package/public/hooks/mutations/useDeleteFunctionModuleMutation.d.ts +38 -0
  393. package/public/hooks/mutations/{useDeleteStoreMutation.js → useDeleteFunctionModuleMutation.js} +7 -7
  394. package/public/hooks/mutations/useDeleteGraphModuleMutation.d.ts +38 -0
  395. package/public/hooks/mutations/{useDeleteObjectMutation.js → useDeleteGraphModuleMutation.js} +7 -7
  396. package/public/hooks/mutations/useDeleteInferenceLogModuleMutation.d.ts +38 -0
  397. package/public/hooks/mutations/useDeleteInferenceLogModuleMutation.js +39 -0
  398. package/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.d.ts +38 -0
  399. package/public/hooks/mutations/useDeleteMerkleStoreModuleMutation.js +39 -0
  400. package/public/hooks/mutations/useDeleteNamespaceModuleMutation.d.ts +38 -0
  401. package/{auth/hooks/mutations/useDeleteAuditLogMutation.js → public/hooks/mutations/useDeleteNamespaceModuleMutation.js} +7 -7
  402. package/public/hooks/mutations/useDeleteOrgLimitEventMutation.d.ts +38 -0
  403. package/public/hooks/mutations/useDeleteOrgLimitEventMutation.js +39 -0
  404. package/public/hooks/mutations/useDeleteStorageLogModuleMutation.d.ts +38 -0
  405. package/public/hooks/mutations/useDeleteStorageLogModuleMutation.js +39 -0
  406. package/public/hooks/mutations/useDeleteTransferLogModuleMutation.d.ts +38 -0
  407. package/public/hooks/mutations/useDeleteTransferLogModuleMutation.js +39 -0
  408. package/public/hooks/mutations/useUpdateAgentModuleMutation.d.ts +40 -0
  409. package/public/hooks/mutations/{useUpdateRefMutation.js → useUpdateAgentModuleMutation.js} +9 -9
  410. package/public/hooks/mutations/useUpdateAppLimitEventMutation.d.ts +40 -0
  411. package/public/hooks/mutations/useUpdateAppLimitEventMutation.js +40 -0
  412. package/public/hooks/mutations/useUpdateAuditLogAuthMutation.d.ts +40 -0
  413. package/public/hooks/mutations/useUpdateAuditLogAuthMutation.js +40 -0
  414. package/public/hooks/mutations/useUpdateComputeLogModuleMutation.d.ts +40 -0
  415. package/public/hooks/mutations/useUpdateComputeLogModuleMutation.js +40 -0
  416. package/public/hooks/mutations/useUpdateConfigSecretsOrgModuleMutation.d.ts +40 -0
  417. package/public/hooks/mutations/{useUpdateAgentTaskMutation.js → useUpdateConfigSecretsOrgModuleMutation.js} +9 -9
  418. package/public/hooks/mutations/useUpdateConfigSecretsUserModuleMutation.d.ts +40 -0
  419. package/public/hooks/mutations/{useUpdateEncryptedSecretsModuleMutation.js → useUpdateConfigSecretsUserModuleMutation.js} +9 -9
  420. package/public/hooks/mutations/useUpdateDbUsageModuleMutation.d.ts +40 -0
  421. package/public/hooks/mutations/{useUpdateStoreMutation.js → useUpdateDbUsageModuleMutation.js} +9 -9
  422. package/public/hooks/mutations/useUpdateFunctionModuleMutation.d.ts +40 -0
  423. package/public/hooks/mutations/{useUpdateAuditLogMutation.js → useUpdateFunctionModuleMutation.js} +9 -9
  424. package/public/hooks/mutations/useUpdateGraphModuleMutation.d.ts +40 -0
  425. package/public/hooks/mutations/{useUpdateCommitMutation.js → useUpdateGraphModuleMutation.js} +9 -9
  426. package/public/hooks/mutations/useUpdateInferenceLogModuleMutation.d.ts +40 -0
  427. package/public/hooks/mutations/useUpdateInferenceLogModuleMutation.js +40 -0
  428. package/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.d.ts +40 -0
  429. package/public/hooks/mutations/useUpdateMerkleStoreModuleMutation.js +40 -0
  430. package/public/hooks/mutations/useUpdateNamespaceModuleMutation.d.ts +40 -0
  431. package/{auth/hooks/mutations/useUpdateAuditLogMutation.js → public/hooks/mutations/useUpdateNamespaceModuleMutation.js} +9 -9
  432. package/public/hooks/mutations/useUpdateOrgLimitEventMutation.d.ts +40 -0
  433. package/public/hooks/mutations/useUpdateOrgLimitEventMutation.js +40 -0
  434. package/public/hooks/mutations/useUpdateStorageLogModuleMutation.d.ts +40 -0
  435. package/public/hooks/mutations/useUpdateStorageLogModuleMutation.js +40 -0
  436. package/public/hooks/mutations/useUpdateTransferLogModuleMutation.d.ts +40 -0
  437. package/public/hooks/mutations/useUpdateTransferLogModuleMutation.js +40 -0
  438. package/public/hooks/queries/index.d.ts +60 -56
  439. package/public/hooks/queries/index.js +60 -56
  440. package/public/hooks/queries/useAgentModuleQuery.d.ts +65 -0
  441. package/public/hooks/queries/{useAuditLogQuery.js → useAgentModuleQuery.js} +14 -14
  442. package/public/hooks/queries/useAgentModulesQuery.d.ts +69 -0
  443. package/public/hooks/queries/{useRefsQuery.js → useAgentModulesQuery.js} +14 -14
  444. package/public/hooks/queries/useAppLimitEventQuery.d.ts +65 -0
  445. package/public/hooks/queries/useAppLimitEventQuery.js +53 -0
  446. package/public/hooks/queries/useApplyRegistryDefaultsQuery.d.ts +53 -0
  447. package/public/hooks/queries/useApplyRegistryDefaultsQuery.js +53 -0
  448. package/public/hooks/queries/useAuditLogAuthQuery.d.ts +65 -0
  449. package/public/hooks/queries/useAuditLogAuthQuery.js +53 -0
  450. package/public/hooks/queries/useAuditLogAuthsQuery.d.ts +69 -0
  451. package/public/hooks/queries/useAuditLogAuthsQuery.js +38 -0
  452. package/public/hooks/queries/useComputeLogModuleQuery.d.ts +65 -0
  453. package/public/hooks/queries/useComputeLogModuleQuery.js +53 -0
  454. package/public/hooks/queries/useComputeLogModulesQuery.d.ts +69 -0
  455. package/public/hooks/queries/useComputeLogModulesQuery.js +38 -0
  456. package/public/hooks/queries/useConfigSecretsOrgModuleQuery.d.ts +65 -0
  457. package/{admin/hooks/queries/useUsageSnapshotQuery.js → public/hooks/queries/useConfigSecretsOrgModuleQuery.js} +14 -14
  458. package/public/hooks/queries/useConfigSecretsOrgModulesQuery.d.ts +69 -0
  459. package/public/hooks/queries/useConfigSecretsOrgModulesQuery.js +38 -0
  460. package/public/hooks/queries/useConfigSecretsUserModuleQuery.d.ts +65 -0
  461. package/public/hooks/queries/{useEncryptedSecretsModuleQuery.js → useConfigSecretsUserModuleQuery.js} +14 -14
  462. package/public/hooks/queries/useConfigSecretsUserModulesQuery.d.ts +69 -0
  463. package/public/hooks/queries/useConfigSecretsUserModulesQuery.js +38 -0
  464. package/public/hooks/queries/useDbUsageModuleQuery.d.ts +65 -0
  465. package/public/hooks/queries/{useCommitQuery.js → useDbUsageModuleQuery.js} +14 -14
  466. package/public/hooks/queries/useDbUsageModulesQuery.d.ts +69 -0
  467. package/public/hooks/queries/{useCommitsQuery.js → useDbUsageModulesQuery.js} +14 -14
  468. package/public/hooks/queries/useFunctionModuleQuery.d.ts +65 -0
  469. package/public/hooks/queries/{useObjectQuery.js → useFunctionModuleQuery.js} +14 -14
  470. package/public/hooks/queries/useFunctionModulesQuery.d.ts +69 -0
  471. package/public/hooks/queries/useFunctionModulesQuery.js +38 -0
  472. package/public/hooks/queries/useGraphModuleQuery.d.ts +65 -0
  473. package/{auth/hooks/queries/useAuditLogQuery.js → public/hooks/queries/useGraphModuleQuery.js} +14 -14
  474. package/public/hooks/queries/useGraphModulesQuery.d.ts +69 -0
  475. package/public/hooks/queries/{useObjectsQuery.js → useGraphModulesQuery.js} +14 -14
  476. package/public/hooks/queries/useInferenceLogModuleQuery.d.ts +65 -0
  477. package/public/hooks/queries/useInferenceLogModuleQuery.js +53 -0
  478. package/public/hooks/queries/useInferenceLogModulesQuery.d.ts +69 -0
  479. package/public/hooks/queries/useInferenceLogModulesQuery.js +38 -0
  480. package/public/hooks/queries/useMerkleStoreModuleQuery.d.ts +65 -0
  481. package/public/hooks/queries/useMerkleStoreModuleQuery.js +53 -0
  482. package/public/hooks/queries/useMerkleStoreModulesQuery.d.ts +69 -0
  483. package/public/hooks/queries/useMerkleStoreModulesQuery.js +38 -0
  484. package/public/hooks/queries/useNamespaceModuleQuery.d.ts +65 -0
  485. package/public/hooks/queries/useNamespaceModuleQuery.js +53 -0
  486. package/public/hooks/queries/useNamespaceModulesQuery.d.ts +69 -0
  487. package/public/hooks/queries/useNamespaceModulesQuery.js +38 -0
  488. package/public/hooks/queries/useOrgLimitEventQuery.d.ts +65 -0
  489. package/public/hooks/queries/useOrgLimitEventQuery.js +53 -0
  490. package/public/hooks/queries/useStorageLogModuleQuery.d.ts +65 -0
  491. package/public/hooks/queries/useStorageLogModuleQuery.js +53 -0
  492. package/public/hooks/queries/useStorageLogModulesQuery.d.ts +69 -0
  493. package/public/hooks/queries/useStorageLogModulesQuery.js +38 -0
  494. package/public/hooks/queries/useTransferLogModuleQuery.d.ts +65 -0
  495. package/public/hooks/queries/useTransferLogModuleQuery.js +53 -0
  496. package/public/hooks/queries/useTransferLogModulesQuery.d.ts +69 -0
  497. package/public/hooks/queries/useTransferLogModulesQuery.js +38 -0
  498. package/public/hooks/query-keys.d.ts +392 -370
  499. package/public/hooks/query-keys.js +229 -215
  500. package/public/orm/index.d.ts +102 -153
  501. package/public/orm/index.js +60 -55
  502. package/public/orm/input-types.d.ts +6255 -3877
  503. package/public/orm/input-types.js +24 -15
  504. package/public/orm/models/agentModule.d.ts +54 -0
  505. package/public/orm/models/{agentThread.js → agentModule.js} +27 -27
  506. package/public/orm/models/appLimitEvent.d.ts +26 -2
  507. package/public/orm/models/appLimitEvent.js +45 -0
  508. package/public/orm/models/auditLogAuth.d.ts +54 -0
  509. package/{admin/orm/models/usageSnapshot.js → public/orm/models/auditLogAuth.js} +27 -27
  510. package/public/orm/models/computeLogModule.d.ts +54 -0
  511. package/public/orm/models/computeLogModule.js +104 -0
  512. package/public/orm/models/configSecretsOrgModule.d.ts +54 -0
  513. package/public/orm/models/{encryptedSecretsModule.js → configSecretsOrgModule.js} +27 -27
  514. package/public/orm/models/configSecretsUserModule.d.ts +54 -0
  515. package/public/orm/models/{ref.js → configSecretsUserModule.js} +27 -27
  516. package/public/orm/models/dbUsageModule.d.ts +54 -0
  517. package/public/orm/models/{usageSnapshot.js → dbUsageModule.js} +27 -27
  518. package/public/orm/models/functionModule.d.ts +54 -0
  519. package/public/orm/models/functionModule.js +104 -0
  520. package/public/orm/models/graphModule.d.ts +54 -0
  521. package/public/orm/models/{agentTask.js → graphModule.js} +27 -27
  522. package/public/orm/models/index.d.ts +29 -27
  523. package/public/orm/models/index.js +61 -57
  524. package/public/orm/models/inferenceLogModule.d.ts +54 -0
  525. package/public/orm/models/inferenceLogModule.js +104 -0
  526. package/public/orm/models/merkleStoreModule.d.ts +54 -0
  527. package/public/orm/models/merkleStoreModule.js +104 -0
  528. package/public/orm/models/namespaceModule.d.ts +54 -0
  529. package/{auth/orm/models/auditLog.js → public/orm/models/namespaceModule.js} +27 -27
  530. package/public/orm/models/orgLimitEvent.d.ts +26 -2
  531. package/public/orm/models/orgLimitEvent.js +45 -0
  532. package/public/orm/models/storageLogModule.d.ts +54 -0
  533. package/public/orm/models/storageLogModule.js +104 -0
  534. package/public/orm/models/transferLogModule.d.ts +54 -0
  535. package/public/orm/models/transferLogModule.js +104 -0
  536. package/public/orm/mutation/index.d.ts +69 -133
  537. package/public/orm/mutation/index.js +78 -174
  538. package/public/orm/query/index.d.ts +22 -71
  539. package/public/orm/query/index.js +36 -124
  540. package/public/schema-types.d.ts +5424 -4317
  541. package/public/types.d.ts +402 -240
  542. package/admin/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
  543. package/admin/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -34
  544. package/admin/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
  545. package/admin/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -39
  546. package/admin/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
  547. package/admin/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -40
  548. package/admin/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
  549. package/admin/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
  550. package/admin/hooks/queries/useUsageSnapshotsQuery.js +0 -38
  551. package/admin/orm/models/usageSnapshot.d.ts +0 -54
  552. package/auth/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
  553. package/auth/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
  554. package/auth/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
  555. package/auth/hooks/queries/useAuditLogQuery.d.ts +0 -65
  556. package/auth/hooks/queries/useAuditLogsQuery.d.ts +0 -69
  557. package/auth/hooks/queries/useAuditLogsQuery.js +0 -38
  558. package/auth/orm/models/auditLog.d.ts +0 -54
  559. package/esm/admin/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
  560. package/esm/admin/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -31
  561. package/esm/admin/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
  562. package/esm/admin/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -36
  563. package/esm/admin/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
  564. package/esm/admin/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -37
  565. package/esm/admin/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
  566. package/esm/admin/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
  567. package/esm/admin/hooks/queries/useUsageSnapshotsQuery.js +0 -32
  568. package/esm/admin/orm/models/usageSnapshot.d.ts +0 -54
  569. package/esm/auth/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
  570. package/esm/auth/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
  571. package/esm/auth/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
  572. package/esm/auth/hooks/queries/useAuditLogQuery.d.ts +0 -65
  573. package/esm/auth/hooks/queries/useAuditLogsQuery.d.ts +0 -69
  574. package/esm/auth/orm/models/auditLog.d.ts +0 -54
  575. package/esm/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +0 -34
  576. package/esm/public/hooks/mutations/useCreateAgentMessageMutation.js +0 -31
  577. package/esm/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +0 -34
  578. package/esm/public/hooks/mutations/useCreateAgentTaskMutation.js +0 -31
  579. package/esm/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +0 -34
  580. package/esm/public/hooks/mutations/useCreateAgentThreadMutation.js +0 -31
  581. package/esm/public/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
  582. package/esm/public/hooks/mutations/useCreateCommitMutation.d.ts +0 -34
  583. package/esm/public/hooks/mutations/useCreateEncryptedSecretsModuleMutation.d.ts +0 -34
  584. package/esm/public/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  585. package/esm/public/hooks/mutations/useCreateObjectMutation.d.ts +0 -34
  586. package/esm/public/hooks/mutations/useCreateRefMutation.d.ts +0 -34
  587. package/esm/public/hooks/mutations/useCreateStoreMutation.d.ts +0 -34
  588. package/esm/public/hooks/mutations/useCreateStoreMutation.js +0 -31
  589. package/esm/public/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
  590. package/esm/public/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -31
  591. package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +0 -38
  592. package/esm/public/hooks/mutations/useDeleteAgentMessageMutation.js +0 -36
  593. package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +0 -38
  594. package/esm/public/hooks/mutations/useDeleteAgentTaskMutation.js +0 -36
  595. package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +0 -38
  596. package/esm/public/hooks/mutations/useDeleteAgentThreadMutation.js +0 -36
  597. package/esm/public/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
  598. package/esm/public/hooks/mutations/useDeleteCommitMutation.d.ts +0 -38
  599. package/esm/public/hooks/mutations/useDeleteEncryptedSecretsModuleMutation.d.ts +0 -38
  600. package/esm/public/hooks/mutations/useDeleteObjectMutation.d.ts +0 -38
  601. package/esm/public/hooks/mutations/useDeleteRefMutation.d.ts +0 -38
  602. package/esm/public/hooks/mutations/useDeleteStoreMutation.d.ts +0 -38
  603. package/esm/public/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
  604. package/esm/public/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -36
  605. package/esm/public/hooks/mutations/useFreezeObjectsMutation.d.ts +0 -20
  606. package/esm/public/hooks/mutations/useFreezeObjectsMutation.js +0 -23
  607. package/esm/public/hooks/mutations/useInitEmptyRepoMutation.d.ts +0 -20
  608. package/esm/public/hooks/mutations/useInitEmptyRepoMutation.js +0 -23
  609. package/esm/public/hooks/mutations/useInsertNodeAtPathMutation.d.ts +0 -20
  610. package/esm/public/hooks/mutations/useInsertNodeAtPathMutation.js +0 -23
  611. package/esm/public/hooks/mutations/useRemoveNodeAtPathMutation.d.ts +0 -20
  612. package/esm/public/hooks/mutations/useRemoveNodeAtPathMutation.js +0 -23
  613. package/esm/public/hooks/mutations/useSetAndCommitMutation.d.ts +0 -20
  614. package/esm/public/hooks/mutations/useSetAndCommitMutation.js +0 -23
  615. package/esm/public/hooks/mutations/useSetDataAtPathMutation.d.ts +0 -20
  616. package/esm/public/hooks/mutations/useSetDataAtPathMutation.js +0 -23
  617. package/esm/public/hooks/mutations/useSetPropsAndCommitMutation.d.ts +0 -20
  618. package/esm/public/hooks/mutations/useSetPropsAndCommitMutation.js +0 -23
  619. package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +0 -40
  620. package/esm/public/hooks/mutations/useUpdateAgentMessageMutation.js +0 -37
  621. package/esm/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +0 -40
  622. package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +0 -40
  623. package/esm/public/hooks/mutations/useUpdateAgentThreadMutation.js +0 -37
  624. package/esm/public/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
  625. package/esm/public/hooks/mutations/useUpdateCommitMutation.d.ts +0 -40
  626. package/esm/public/hooks/mutations/useUpdateEncryptedSecretsModuleMutation.d.ts +0 -40
  627. package/esm/public/hooks/mutations/useUpdateNodeAtPathMutation.d.ts +0 -20
  628. package/esm/public/hooks/mutations/useUpdateNodeAtPathMutation.js +0 -23
  629. package/esm/public/hooks/mutations/useUpdateObjectMutation.d.ts +0 -40
  630. package/esm/public/hooks/mutations/useUpdateRefMutation.d.ts +0 -40
  631. package/esm/public/hooks/mutations/useUpdateStoreMutation.d.ts +0 -40
  632. package/esm/public/hooks/mutations/useUpdateStoreMutation.js +0 -37
  633. package/esm/public/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
  634. package/esm/public/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -37
  635. package/esm/public/hooks/queries/useAgentMessageQuery.d.ts +0 -65
  636. package/esm/public/hooks/queries/useAgentMessageQuery.js +0 -47
  637. package/esm/public/hooks/queries/useAgentMessagesQuery.d.ts +0 -69
  638. package/esm/public/hooks/queries/useAgentMessagesQuery.js +0 -32
  639. package/esm/public/hooks/queries/useAgentTaskQuery.d.ts +0 -65
  640. package/esm/public/hooks/queries/useAgentTaskQuery.js +0 -47
  641. package/esm/public/hooks/queries/useAgentTasksQuery.d.ts +0 -69
  642. package/esm/public/hooks/queries/useAgentTasksQuery.js +0 -32
  643. package/esm/public/hooks/queries/useAgentThreadQuery.d.ts +0 -65
  644. package/esm/public/hooks/queries/useAgentThreadQuery.js +0 -47
  645. package/esm/public/hooks/queries/useAgentThreadsQuery.d.ts +0 -69
  646. package/esm/public/hooks/queries/useAgentThreadsQuery.js +0 -32
  647. package/esm/public/hooks/queries/useAuditLogQuery.d.ts +0 -65
  648. package/esm/public/hooks/queries/useAuditLogsQuery.d.ts +0 -69
  649. package/esm/public/hooks/queries/useCommitQuery.d.ts +0 -65
  650. package/esm/public/hooks/queries/useCommitsQuery.d.ts +0 -69
  651. package/esm/public/hooks/queries/useEncryptedSecretsModuleQuery.d.ts +0 -65
  652. package/esm/public/hooks/queries/useEncryptedSecretsModulesQuery.d.ts +0 -69
  653. package/esm/public/hooks/queries/useEncryptedSecretsModulesQuery.js +0 -32
  654. package/esm/public/hooks/queries/useGetAllObjectsFromRootQuery.d.ts +0 -54
  655. package/esm/public/hooks/queries/useGetAllObjectsFromRootQuery.js +0 -47
  656. package/esm/public/hooks/queries/useGetAllQuery.d.ts +0 -69
  657. package/esm/public/hooks/queries/useGetObjectAtPathQuery.d.ts +0 -65
  658. package/esm/public/hooks/queries/useGetObjectAtPathQuery.js +0 -48
  659. package/esm/public/hooks/queries/useGetPathObjectsFromRootQuery.d.ts +0 -54
  660. package/esm/public/hooks/queries/useGetPathObjectsFromRootQuery.js +0 -47
  661. package/esm/public/hooks/queries/useObjectQuery.d.ts +0 -65
  662. package/esm/public/hooks/queries/useObjectsQuery.d.ts +0 -69
  663. package/esm/public/hooks/queries/useRefQuery.d.ts +0 -65
  664. package/esm/public/hooks/queries/useRefsQuery.d.ts +0 -69
  665. package/esm/public/hooks/queries/useRefsQuery.js +0 -32
  666. package/esm/public/hooks/queries/useRevParseQuery.d.ts +0 -53
  667. package/esm/public/hooks/queries/useRevParseQuery.js +0 -47
  668. package/esm/public/hooks/queries/useStoreQuery.d.ts +0 -65
  669. package/esm/public/hooks/queries/useStoreQuery.js +0 -47
  670. package/esm/public/hooks/queries/useStoresQuery.d.ts +0 -69
  671. package/esm/public/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
  672. package/esm/public/hooks/queries/useUsageSnapshotQuery.js +0 -47
  673. package/esm/public/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
  674. package/esm/public/hooks/queries/useUsageSnapshotsQuery.js +0 -32
  675. package/esm/public/orm/models/agentMessage.d.ts +0 -54
  676. package/esm/public/orm/models/agentTask.d.ts +0 -54
  677. package/esm/public/orm/models/agentThread.d.ts +0 -54
  678. package/esm/public/orm/models/auditLog.d.ts +0 -54
  679. package/esm/public/orm/models/commit.d.ts +0 -54
  680. package/esm/public/orm/models/encryptedSecretsModule.d.ts +0 -54
  681. package/esm/public/orm/models/getAllRecord.d.ts +0 -30
  682. package/esm/public/orm/models/getAllRecord.js +0 -55
  683. package/esm/public/orm/models/object.d.ts +0 -54
  684. package/esm/public/orm/models/object.js +0 -90
  685. package/esm/public/orm/models/ref.d.ts +0 -54
  686. package/esm/public/orm/models/ref.js +0 -100
  687. package/esm/public/orm/models/store.d.ts +0 -54
  688. package/esm/public/orm/models/usageSnapshot.d.ts +0 -54
  689. package/public/hooks/mutations/useCreateAgentMessageMutation.d.ts +0 -34
  690. package/public/hooks/mutations/useCreateAgentMessageMutation.js +0 -34
  691. package/public/hooks/mutations/useCreateAgentTaskMutation.d.ts +0 -34
  692. package/public/hooks/mutations/useCreateAgentTaskMutation.js +0 -34
  693. package/public/hooks/mutations/useCreateAgentThreadMutation.d.ts +0 -34
  694. package/public/hooks/mutations/useCreateAgentThreadMutation.js +0 -34
  695. package/public/hooks/mutations/useCreateAuditLogMutation.d.ts +0 -34
  696. package/public/hooks/mutations/useCreateCommitMutation.d.ts +0 -34
  697. package/public/hooks/mutations/useCreateEncryptedSecretsModuleMutation.d.ts +0 -34
  698. package/public/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  699. package/public/hooks/mutations/useCreateObjectMutation.d.ts +0 -34
  700. package/public/hooks/mutations/useCreateRefMutation.d.ts +0 -34
  701. package/public/hooks/mutations/useCreateStoreMutation.d.ts +0 -34
  702. package/public/hooks/mutations/useCreateUsageSnapshotMutation.d.ts +0 -34
  703. package/public/hooks/mutations/useCreateUsageSnapshotMutation.js +0 -34
  704. package/public/hooks/mutations/useDeleteAgentMessageMutation.d.ts +0 -38
  705. package/public/hooks/mutations/useDeleteAgentMessageMutation.js +0 -39
  706. package/public/hooks/mutations/useDeleteAgentTaskMutation.d.ts +0 -38
  707. package/public/hooks/mutations/useDeleteAgentTaskMutation.js +0 -39
  708. package/public/hooks/mutations/useDeleteAgentThreadMutation.d.ts +0 -38
  709. package/public/hooks/mutations/useDeleteAgentThreadMutation.js +0 -39
  710. package/public/hooks/mutations/useDeleteAuditLogMutation.d.ts +0 -38
  711. package/public/hooks/mutations/useDeleteCommitMutation.d.ts +0 -38
  712. package/public/hooks/mutations/useDeleteEncryptedSecretsModuleMutation.d.ts +0 -38
  713. package/public/hooks/mutations/useDeleteObjectMutation.d.ts +0 -38
  714. package/public/hooks/mutations/useDeleteRefMutation.d.ts +0 -38
  715. package/public/hooks/mutations/useDeleteStoreMutation.d.ts +0 -38
  716. package/public/hooks/mutations/useDeleteUsageSnapshotMutation.d.ts +0 -38
  717. package/public/hooks/mutations/useDeleteUsageSnapshotMutation.js +0 -39
  718. package/public/hooks/mutations/useFreezeObjectsMutation.d.ts +0 -20
  719. package/public/hooks/mutations/useFreezeObjectsMutation.js +0 -26
  720. package/public/hooks/mutations/useInitEmptyRepoMutation.d.ts +0 -20
  721. package/public/hooks/mutations/useInitEmptyRepoMutation.js +0 -26
  722. package/public/hooks/mutations/useInsertNodeAtPathMutation.d.ts +0 -20
  723. package/public/hooks/mutations/useInsertNodeAtPathMutation.js +0 -26
  724. package/public/hooks/mutations/useRemoveNodeAtPathMutation.d.ts +0 -20
  725. package/public/hooks/mutations/useRemoveNodeAtPathMutation.js +0 -26
  726. package/public/hooks/mutations/useSetAndCommitMutation.d.ts +0 -20
  727. package/public/hooks/mutations/useSetAndCommitMutation.js +0 -26
  728. package/public/hooks/mutations/useSetDataAtPathMutation.d.ts +0 -20
  729. package/public/hooks/mutations/useSetDataAtPathMutation.js +0 -26
  730. package/public/hooks/mutations/useSetPropsAndCommitMutation.d.ts +0 -20
  731. package/public/hooks/mutations/useSetPropsAndCommitMutation.js +0 -26
  732. package/public/hooks/mutations/useUpdateAgentMessageMutation.d.ts +0 -40
  733. package/public/hooks/mutations/useUpdateAgentMessageMutation.js +0 -40
  734. package/public/hooks/mutations/useUpdateAgentTaskMutation.d.ts +0 -40
  735. package/public/hooks/mutations/useUpdateAgentThreadMutation.d.ts +0 -40
  736. package/public/hooks/mutations/useUpdateAgentThreadMutation.js +0 -40
  737. package/public/hooks/mutations/useUpdateAuditLogMutation.d.ts +0 -40
  738. package/public/hooks/mutations/useUpdateCommitMutation.d.ts +0 -40
  739. package/public/hooks/mutations/useUpdateEncryptedSecretsModuleMutation.d.ts +0 -40
  740. package/public/hooks/mutations/useUpdateNodeAtPathMutation.d.ts +0 -20
  741. package/public/hooks/mutations/useUpdateNodeAtPathMutation.js +0 -26
  742. package/public/hooks/mutations/useUpdateObjectMutation.d.ts +0 -40
  743. package/public/hooks/mutations/useUpdateRefMutation.d.ts +0 -40
  744. package/public/hooks/mutations/useUpdateStoreMutation.d.ts +0 -40
  745. package/public/hooks/mutations/useUpdateUsageSnapshotMutation.d.ts +0 -40
  746. package/public/hooks/mutations/useUpdateUsageSnapshotMutation.js +0 -40
  747. package/public/hooks/queries/useAgentMessageQuery.d.ts +0 -65
  748. package/public/hooks/queries/useAgentMessageQuery.js +0 -53
  749. package/public/hooks/queries/useAgentMessagesQuery.d.ts +0 -69
  750. package/public/hooks/queries/useAgentMessagesQuery.js +0 -38
  751. package/public/hooks/queries/useAgentTaskQuery.d.ts +0 -65
  752. package/public/hooks/queries/useAgentTaskQuery.js +0 -53
  753. package/public/hooks/queries/useAgentTasksQuery.d.ts +0 -69
  754. package/public/hooks/queries/useAgentTasksQuery.js +0 -38
  755. package/public/hooks/queries/useAgentThreadQuery.d.ts +0 -65
  756. package/public/hooks/queries/useAgentThreadQuery.js +0 -53
  757. package/public/hooks/queries/useAgentThreadsQuery.d.ts +0 -69
  758. package/public/hooks/queries/useAgentThreadsQuery.js +0 -38
  759. package/public/hooks/queries/useAuditLogQuery.d.ts +0 -65
  760. package/public/hooks/queries/useAuditLogsQuery.d.ts +0 -69
  761. package/public/hooks/queries/useAuditLogsQuery.js +0 -38
  762. package/public/hooks/queries/useCommitQuery.d.ts +0 -65
  763. package/public/hooks/queries/useCommitsQuery.d.ts +0 -69
  764. package/public/hooks/queries/useEncryptedSecretsModuleQuery.d.ts +0 -65
  765. package/public/hooks/queries/useEncryptedSecretsModulesQuery.d.ts +0 -69
  766. package/public/hooks/queries/useEncryptedSecretsModulesQuery.js +0 -38
  767. package/public/hooks/queries/useGetAllObjectsFromRootQuery.d.ts +0 -54
  768. package/public/hooks/queries/useGetAllObjectsFromRootQuery.js +0 -53
  769. package/public/hooks/queries/useGetAllQuery.d.ts +0 -69
  770. package/public/hooks/queries/useGetObjectAtPathQuery.d.ts +0 -65
  771. package/public/hooks/queries/useGetObjectAtPathQuery.js +0 -54
  772. package/public/hooks/queries/useGetPathObjectsFromRootQuery.d.ts +0 -54
  773. package/public/hooks/queries/useGetPathObjectsFromRootQuery.js +0 -53
  774. package/public/hooks/queries/useObjectQuery.d.ts +0 -65
  775. package/public/hooks/queries/useObjectsQuery.d.ts +0 -69
  776. package/public/hooks/queries/useRefQuery.d.ts +0 -65
  777. package/public/hooks/queries/useRefQuery.js +0 -53
  778. package/public/hooks/queries/useRefsQuery.d.ts +0 -69
  779. package/public/hooks/queries/useRevParseQuery.d.ts +0 -53
  780. package/public/hooks/queries/useRevParseQuery.js +0 -53
  781. package/public/hooks/queries/useStoreQuery.d.ts +0 -65
  782. package/public/hooks/queries/useStoreQuery.js +0 -53
  783. package/public/hooks/queries/useStoresQuery.d.ts +0 -69
  784. package/public/hooks/queries/useStoresQuery.js +0 -38
  785. package/public/hooks/queries/useUsageSnapshotQuery.d.ts +0 -65
  786. package/public/hooks/queries/useUsageSnapshotQuery.js +0 -53
  787. package/public/hooks/queries/useUsageSnapshotsQuery.d.ts +0 -69
  788. package/public/hooks/queries/useUsageSnapshotsQuery.js +0 -38
  789. package/public/orm/models/agentMessage.d.ts +0 -54
  790. package/public/orm/models/agentTask.d.ts +0 -54
  791. package/public/orm/models/agentThread.d.ts +0 -54
  792. package/public/orm/models/auditLog.d.ts +0 -54
  793. package/public/orm/models/auditLog.js +0 -104
  794. package/public/orm/models/commit.d.ts +0 -54
  795. package/public/orm/models/commit.js +0 -104
  796. package/public/orm/models/encryptedSecretsModule.d.ts +0 -54
  797. package/public/orm/models/getAllRecord.d.ts +0 -30
  798. package/public/orm/models/getAllRecord.js +0 -59
  799. package/public/orm/models/object.d.ts +0 -54
  800. package/public/orm/models/object.js +0 -94
  801. package/public/orm/models/ref.d.ts +0 -54
  802. package/public/orm/models/store.d.ts +0 -54
  803. package/public/orm/models/store.js +0 -104
  804. package/public/orm/models/usageSnapshot.d.ts +0 -54
@@ -23,8 +23,8 @@ export const connectionFieldsMap = {
23
23
  embeddingChunks: 'EmbeddingChunk',
24
24
  spatialRelations: 'SpatialRelation',
25
25
  functions: 'Function',
26
- databaseTransfers: 'DatabaseTransfer',
27
26
  partitions: 'Partition',
27
+ databaseTransfers: 'DatabaseTransfer',
28
28
  apis: 'Api',
29
29
  apiModules: 'ApiModule',
30
30
  apiSchemas: 'ApiSchema',
@@ -42,7 +42,7 @@ export const connectionFieldsMap = {
42
42
  defaultIdsModules: 'DefaultIdsModule',
43
43
  denormalizedTableFields: 'DenormalizedTableField',
44
44
  emailsModules: 'EmailsModule',
45
- encryptedSecretsModules: 'EncryptedSecretsModule',
45
+ configSecretsUserModules: 'ConfigSecretsUserModule',
46
46
  invitesModules: 'InvitesModule',
47
47
  eventsModules: 'EventsModule',
48
48
  limitsModules: 'LimitsModule',
@@ -67,6 +67,17 @@ export const connectionFieldsMap = {
67
67
  identityProvidersModules: 'IdentityProvidersModule',
68
68
  notificationsModules: 'NotificationsModule',
69
69
  realtimeModules: 'RealtimeModule',
70
+ configSecretsOrgModules: 'ConfigSecretsOrgModule',
71
+ inferenceLogModules: 'InferenceLogModule',
72
+ computeLogModules: 'ComputeLogModule',
73
+ transferLogModules: 'TransferLogModule',
74
+ storageLogModules: 'StorageLogModule',
75
+ dbUsageModules: 'DbUsageModule',
76
+ agentModules: 'AgentModule',
77
+ merkleStoreModules: 'MerkleStoreModule',
78
+ graphModules: 'GraphModule',
79
+ namespaceModules: 'NamespaceModule',
80
+ functionModules: 'FunctionModule',
70
81
  databaseProvisionModules: 'DatabaseProvisionModule',
71
82
  },
72
83
  Schema: {
@@ -83,6 +94,8 @@ export const connectionFieldsMap = {
83
94
  realtimeModulesByPrivateSchemaId: 'RealtimeModule',
84
95
  realtimeModules: 'RealtimeModule',
85
96
  realtimeModulesBySubscriptionsSchemaId: 'RealtimeModule',
97
+ configSecretsOrgModules: 'ConfigSecretsOrgModule',
98
+ merkleStoreModulesByPrivateSchemaId: 'MerkleStoreModule',
86
99
  },
87
100
  Table: {
88
101
  checkConstraints: 'CheckConstraint',
@@ -110,6 +123,7 @@ export const connectionFieldsMap = {
110
123
  realtimeModulesByChangeLogTableId: 'RealtimeModule',
111
124
  realtimeModulesByListenerNodeTableId: 'RealtimeModule',
112
125
  realtimeModulesBySourceRegistryTableId: 'RealtimeModule',
126
+ configSecretsOrgModules: 'ConfigSecretsOrgModule',
113
127
  },
114
128
  Field: {
115
129
  spatialRelations: 'SpatialRelation',
@@ -120,6 +134,9 @@ export const connectionFieldsMap = {
120
134
  viewGrants: 'ViewGrant',
121
135
  viewRules: 'ViewRule',
122
136
  },
137
+ MerkleStoreModule: {
138
+ graphModules: 'GraphModule',
139
+ },
123
140
  Api: {
124
141
  apiModules: 'ApiModule',
125
142
  apiSchemas: 'ApiSchema',
@@ -139,14 +156,6 @@ export const connectionFieldsMap = {
139
156
  blueprintTemplatesByForkedFromId: 'BlueprintTemplate',
140
157
  blueprintsByTemplateId: 'Blueprint',
141
158
  },
142
- AgentThread: {
143
- agentMessagesByThreadId: 'AgentMessage',
144
- agentTasksByThreadId: 'AgentTask',
145
- },
146
- AppLimitCreditCode: {
147
- appLimitCreditCodeItemsByCreditCodeId: 'AppLimitCreditCodeItem',
148
- appLimitCreditRedemptionsByCreditCodeId: 'AppLimitCreditRedemption',
149
- },
150
159
  AppLimitDefault: {
151
160
  appLimitCreditsByDefaultLimitId: 'AppLimitCredit',
152
161
  appLimitCreditCodeItemsByDefaultLimitId: 'AppLimitCreditCodeItem',
@@ -154,6 +163,10 @@ export const connectionFieldsMap = {
154
163
  OrgLimitDefault: {
155
164
  orgLimitCreditsByDefaultLimitId: 'OrgLimitCredit',
156
165
  },
166
+ AppLimitCreditCode: {
167
+ appLimitCreditCodeItemsByCreditCodeId: 'AppLimitCreditCodeItem',
168
+ appLimitCreditRedemptionsByCreditCodeId: 'AppLimitCreditRedemption',
169
+ },
157
170
  User: {
158
171
  ownedDatabases: 'Database',
159
172
  appAdminGrantsByActorId: 'AppAdminGrant',
@@ -206,10 +219,6 @@ export const connectionFieldsMap = {
206
219
  orgClaimedInvitesByEntityId: 'OrgClaimedInvite',
207
220
  orgClaimedInvitesByReceiverId: 'OrgClaimedInvite',
208
221
  orgClaimedInvitesBySenderId: 'OrgClaimedInvite',
209
- auditLogsByActorId: 'AuditLog',
210
- agentThreadsByEntityId: 'AgentThread',
211
- ownedAgentThreads: 'AgentThread',
212
- ownedAgentMessages: 'AgentMessage',
213
- ownedAgentTasks: 'AgentTask',
222
+ auditLogAuthsByActorId: 'AuditLogAuth',
214
223
  },
215
224
  };
@@ -0,0 +1,54 @@
1
+ /**
2
+ * AgentModule 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 { AgentModuleWithRelations, AgentModuleSelect, AgentModuleFilter, AgentModuleOrderBy, CreateAgentModuleInput, AgentModulePatch } from '../input-types';
10
+ export declare class AgentModuleModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends AgentModuleSelect>(args: FindManyArgs<S, AgentModuleFilter, AgentModuleOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
16
+ agentModules: ConnectionResult<InferSelectResult<AgentModuleWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends AgentModuleSelect>(args: FindFirstArgs<S, AgentModuleFilter, AgentModuleOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
21
+ agentModule: InferSelectResult<AgentModuleWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends AgentModuleSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
27
+ agentModule: InferSelectResult<AgentModuleWithRelations, S> | null;
28
+ }>;
29
+ create<S extends AgentModuleSelect>(args: CreateArgs<S, CreateAgentModuleInput['agentModule']> & {
30
+ select: S;
31
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
32
+ createAgentModule: {
33
+ agentModule: InferSelectResult<AgentModuleWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends AgentModuleSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, AgentModulePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
41
+ updateAgentModule: {
42
+ agentModule: InferSelectResult<AgentModuleWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends AgentModuleSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, AgentModuleSelect>): QueryBuilder<{
50
+ deleteAgentModule: {
51
+ agentModule: InferSelectResult<AgentModuleWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -1,12 +1,12 @@
1
1
  import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
2
  import { connectionFieldsMap } from '../input-types';
3
- export class AgentThreadModel {
3
+ export class AgentModuleModel {
4
4
  client;
5
5
  constructor(client) {
6
6
  this.client = client;
7
7
  }
8
8
  findMany(args) {
9
- const { document, variables } = buildFindManyDocument('AgentThread', 'agentThreads', args.select, {
9
+ const { document, variables } = buildFindManyDocument('AgentModule', 'agentModules', args.select, {
10
10
  where: args?.where,
11
11
  orderBy: args?.orderBy,
12
12
  first: args?.first,
@@ -14,85 +14,85 @@ export class AgentThreadModel {
14
14
  after: args?.after,
15
15
  before: args?.before,
16
16
  offset: args?.offset,
17
- }, 'AgentThreadFilter', 'AgentThreadOrderBy', connectionFieldsMap);
17
+ }, 'AgentModuleFilter', 'AgentModuleOrderBy', connectionFieldsMap);
18
18
  return new QueryBuilder({
19
19
  client: this.client,
20
20
  operation: 'query',
21
- operationName: 'AgentThread',
22
- fieldName: 'agentThreads',
21
+ operationName: 'AgentModule',
22
+ fieldName: 'agentModules',
23
23
  document,
24
24
  variables,
25
25
  });
26
26
  }
27
27
  findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('AgentThread', 'agentThreads', args.select, {
28
+ const { document, variables } = buildFindFirstDocument('AgentModule', 'agentModules', args.select, {
29
29
  where: args?.where,
30
30
  orderBy: args?.orderBy,
31
- }, 'AgentThreadFilter', 'AgentThreadOrderBy', connectionFieldsMap);
31
+ }, 'AgentModuleFilter', 'AgentModuleOrderBy', connectionFieldsMap);
32
32
  return new QueryBuilder({
33
33
  client: this.client,
34
34
  operation: 'query',
35
- operationName: 'AgentThread',
36
- fieldName: 'agentThread',
35
+ operationName: 'AgentModule',
36
+ fieldName: 'agentModule',
37
37
  document,
38
38
  variables,
39
39
  transform: (data) => ({
40
- agentThread: data.agentThreads?.nodes?.[0] ?? null,
40
+ agentModule: data.agentModules?.nodes?.[0] ?? null,
41
41
  }),
42
42
  });
43
43
  }
44
44
  findOne(args) {
45
- const { document, variables } = buildFindManyDocument('AgentThread', 'agentThreads', args.select, {
45
+ const { document, variables } = buildFindManyDocument('AgentModule', 'agentModules', args.select, {
46
46
  where: {
47
47
  id: {
48
48
  equalTo: args.id,
49
49
  },
50
50
  },
51
51
  first: 1,
52
- }, 'AgentThreadFilter', 'AgentThreadOrderBy', connectionFieldsMap);
52
+ }, 'AgentModuleFilter', 'AgentModuleOrderBy', connectionFieldsMap);
53
53
  return new QueryBuilder({
54
54
  client: this.client,
55
55
  operation: 'query',
56
- operationName: 'AgentThread',
57
- fieldName: 'agentThread',
56
+ operationName: 'AgentModule',
57
+ fieldName: 'agentModule',
58
58
  document,
59
59
  variables,
60
60
  transform: (data) => ({
61
- agentThread: data.agentThreads?.nodes?.[0] ?? null,
61
+ agentModule: data.agentModules?.nodes?.[0] ?? null,
62
62
  }),
63
63
  });
64
64
  }
65
65
  create(args) {
66
- const { document, variables } = buildCreateDocument('AgentThread', 'createAgentThread', 'agentThread', args.select, args.data, 'CreateAgentThreadInput', connectionFieldsMap);
66
+ const { document, variables } = buildCreateDocument('AgentModule', 'createAgentModule', 'agentModule', args.select, args.data, 'CreateAgentModuleInput', connectionFieldsMap);
67
67
  return new QueryBuilder({
68
68
  client: this.client,
69
69
  operation: 'mutation',
70
- operationName: 'AgentThread',
71
- fieldName: 'createAgentThread',
70
+ operationName: 'AgentModule',
71
+ fieldName: 'createAgentModule',
72
72
  document,
73
73
  variables,
74
74
  });
75
75
  }
76
76
  update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('AgentThread', 'updateAgentThread', 'agentThread', args.select, args.where.id, args.data, 'UpdateAgentThreadInput', 'id', 'agentThreadPatch', connectionFieldsMap);
77
+ const { document, variables } = buildUpdateByPkDocument('AgentModule', 'updateAgentModule', 'agentModule', args.select, args.where.id, args.data, 'UpdateAgentModuleInput', 'id', 'agentModulePatch', connectionFieldsMap);
78
78
  return new QueryBuilder({
79
79
  client: this.client,
80
80
  operation: 'mutation',
81
- operationName: 'AgentThread',
82
- fieldName: 'updateAgentThread',
81
+ operationName: 'AgentModule',
82
+ fieldName: 'updateAgentModule',
83
83
  document,
84
84
  variables,
85
85
  });
86
86
  }
87
87
  delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('AgentThread', 'deleteAgentThread', 'agentThread', {
88
+ const { document, variables } = buildDeleteByPkDocument('AgentModule', 'deleteAgentModule', 'agentModule', {
89
89
  id: args.where.id,
90
- }, 'DeleteAgentThreadInput', args.select, connectionFieldsMap);
90
+ }, 'DeleteAgentModuleInput', args.select, connectionFieldsMap);
91
91
  return new QueryBuilder({
92
92
  client: this.client,
93
93
  operation: 'mutation',
94
- operationName: 'AgentThread',
95
- fieldName: 'deleteAgentThread',
94
+ operationName: 'AgentModule',
95
+ fieldName: 'deleteAgentModule',
96
96
  document,
97
97
  variables,
98
98
  });
@@ -5,8 +5,8 @@
5
5
  */
6
6
  import { OrmClient } from '../client';
7
7
  import { QueryBuilder } from '../query-builder';
8
- import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
9
- import type { AppLimitEventWithRelations, AppLimitEventSelect, AppLimitEventFilter, AppLimitEventOrderBy, CreateAppLimitEventInput } from '../input-types';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { AppLimitEventWithRelations, AppLimitEventSelect, AppLimitEventFilter, AppLimitEventOrderBy, CreateAppLimitEventInput, AppLimitEventPatch } from '../input-types';
10
10
  export declare class AppLimitEventModel {
11
11
  private client;
12
12
  constructor(client: OrmClient);
@@ -20,6 +20,12 @@ export declare class AppLimitEventModel {
20
20
  } & StrictSelect<S, AppLimitEventSelect>): QueryBuilder<{
21
21
  appLimitEvent: InferSelectResult<AppLimitEventWithRelations, S> | null;
22
22
  }>;
23
+ findOne<S extends AppLimitEventSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, AppLimitEventSelect>): QueryBuilder<{
27
+ appLimitEvent: InferSelectResult<AppLimitEventWithRelations, S> | null;
28
+ }>;
23
29
  create<S extends AppLimitEventSelect>(args: CreateArgs<S, CreateAppLimitEventInput['appLimitEvent']> & {
24
30
  select: S;
25
31
  } & StrictSelect<S, AppLimitEventSelect>): QueryBuilder<{
@@ -27,4 +33,22 @@ export declare class AppLimitEventModel {
27
33
  appLimitEvent: InferSelectResult<AppLimitEventWithRelations, S>;
28
34
  };
29
35
  }>;
36
+ update<S extends AppLimitEventSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, AppLimitEventPatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, AppLimitEventSelect>): QueryBuilder<{
41
+ updateAppLimitEvent: {
42
+ appLimitEvent: InferSelectResult<AppLimitEventWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends AppLimitEventSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, AppLimitEventSelect>): QueryBuilder<{
50
+ deleteAppLimitEvent: {
51
+ appLimitEvent: InferSelectResult<AppLimitEventWithRelations, S>;
52
+ };
53
+ }>;
30
54
  }
@@ -1,4 +1,4 @@
1
- import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, } from '../query-builder';
1
+ import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
2
  import { connectionFieldsMap } from '../input-types';
3
3
  export class AppLimitEventModel {
4
4
  client;
@@ -41,6 +41,27 @@ export class AppLimitEventModel {
41
41
  }),
42
42
  });
43
43
  }
44
+ findOne(args) {
45
+ const { document, variables } = buildFindManyDocument('AppLimitEvent', 'appLimitEvents', args.select, {
46
+ where: {
47
+ id: {
48
+ equalTo: args.id,
49
+ },
50
+ },
51
+ first: 1,
52
+ }, 'AppLimitEventFilter', 'AppLimitEventOrderBy', connectionFieldsMap);
53
+ return new QueryBuilder({
54
+ client: this.client,
55
+ operation: 'query',
56
+ operationName: 'AppLimitEvent',
57
+ fieldName: 'appLimitEvent',
58
+ document,
59
+ variables,
60
+ transform: (data) => ({
61
+ appLimitEvent: data.appLimitEvents?.nodes?.[0] ?? null,
62
+ }),
63
+ });
64
+ }
44
65
  create(args) {
45
66
  const { document, variables } = buildCreateDocument('AppLimitEvent', 'createAppLimitEvent', 'appLimitEvent', args.select, args.data, 'CreateAppLimitEventInput', connectionFieldsMap);
46
67
  return new QueryBuilder({
@@ -52,4 +73,28 @@ export class AppLimitEventModel {
52
73
  variables,
53
74
  });
54
75
  }
76
+ update(args) {
77
+ const { document, variables } = buildUpdateByPkDocument('AppLimitEvent', 'updateAppLimitEvent', 'appLimitEvent', args.select, args.where.id, args.data, 'UpdateAppLimitEventInput', 'id', 'appLimitEventPatch', connectionFieldsMap);
78
+ return new QueryBuilder({
79
+ client: this.client,
80
+ operation: 'mutation',
81
+ operationName: 'AppLimitEvent',
82
+ fieldName: 'updateAppLimitEvent',
83
+ document,
84
+ variables,
85
+ });
86
+ }
87
+ delete(args) {
88
+ const { document, variables } = buildDeleteByPkDocument('AppLimitEvent', 'deleteAppLimitEvent', 'appLimitEvent', {
89
+ id: args.where.id,
90
+ }, 'DeleteAppLimitEventInput', args.select, connectionFieldsMap);
91
+ return new QueryBuilder({
92
+ client: this.client,
93
+ operation: 'mutation',
94
+ operationName: 'AppLimitEvent',
95
+ fieldName: 'deleteAppLimitEvent',
96
+ document,
97
+ variables,
98
+ });
99
+ }
55
100
  }
@@ -0,0 +1,54 @@
1
+ /**
2
+ * AuditLogAuth 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 { AuditLogAuthWithRelations, AuditLogAuthSelect, AuditLogAuthFilter, AuditLogAuthOrderBy, CreateAuditLogAuthInput, AuditLogAuthPatch } from '../input-types';
10
+ export declare class AuditLogAuthModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends AuditLogAuthSelect>(args: FindManyArgs<S, AuditLogAuthFilter, AuditLogAuthOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
16
+ auditLogAuths: ConnectionResult<InferSelectResult<AuditLogAuthWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends AuditLogAuthSelect>(args: FindFirstArgs<S, AuditLogAuthFilter, AuditLogAuthOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
21
+ auditLogAuth: InferSelectResult<AuditLogAuthWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends AuditLogAuthSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
27
+ auditLogAuth: InferSelectResult<AuditLogAuthWithRelations, S> | null;
28
+ }>;
29
+ create<S extends AuditLogAuthSelect>(args: CreateArgs<S, CreateAuditLogAuthInput['auditLogAuth']> & {
30
+ select: S;
31
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
32
+ createAuditLogAuth: {
33
+ auditLogAuth: InferSelectResult<AuditLogAuthWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends AuditLogAuthSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, AuditLogAuthPatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
41
+ updateAuditLogAuth: {
42
+ auditLogAuth: InferSelectResult<AuditLogAuthWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends AuditLogAuthSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, AuditLogAuthSelect>): QueryBuilder<{
50
+ deleteAuditLogAuth: {
51
+ auditLogAuth: InferSelectResult<AuditLogAuthWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -1,12 +1,12 @@
1
1
  import { QueryBuilder, buildFindManyDocument, buildFindFirstDocument, buildCreateDocument, buildUpdateByPkDocument, buildDeleteByPkDocument, } from '../query-builder';
2
2
  import { connectionFieldsMap } from '../input-types';
3
- export class AuditLogModel {
3
+ export class AuditLogAuthModel {
4
4
  client;
5
5
  constructor(client) {
6
6
  this.client = client;
7
7
  }
8
8
  findMany(args) {
9
- const { document, variables } = buildFindManyDocument('AuditLog', 'auditLogs', args.select, {
9
+ const { document, variables } = buildFindManyDocument('AuditLogAuth', 'auditLogAuths', args.select, {
10
10
  where: args?.where,
11
11
  orderBy: args?.orderBy,
12
12
  first: args?.first,
@@ -14,85 +14,85 @@ export class AuditLogModel {
14
14
  after: args?.after,
15
15
  before: args?.before,
16
16
  offset: args?.offset,
17
- }, 'AuditLogFilter', 'AuditLogOrderBy', connectionFieldsMap);
17
+ }, 'AuditLogAuthFilter', 'AuditLogAuthOrderBy', connectionFieldsMap);
18
18
  return new QueryBuilder({
19
19
  client: this.client,
20
20
  operation: 'query',
21
- operationName: 'AuditLog',
22
- fieldName: 'auditLogs',
21
+ operationName: 'AuditLogAuth',
22
+ fieldName: 'auditLogAuths',
23
23
  document,
24
24
  variables,
25
25
  });
26
26
  }
27
27
  findFirst(args) {
28
- const { document, variables } = buildFindFirstDocument('AuditLog', 'auditLogs', args.select, {
28
+ const { document, variables } = buildFindFirstDocument('AuditLogAuth', 'auditLogAuths', args.select, {
29
29
  where: args?.where,
30
30
  orderBy: args?.orderBy,
31
- }, 'AuditLogFilter', 'AuditLogOrderBy', connectionFieldsMap);
31
+ }, 'AuditLogAuthFilter', 'AuditLogAuthOrderBy', connectionFieldsMap);
32
32
  return new QueryBuilder({
33
33
  client: this.client,
34
34
  operation: 'query',
35
- operationName: 'AuditLog',
36
- fieldName: 'auditLog',
35
+ operationName: 'AuditLogAuth',
36
+ fieldName: 'auditLogAuth',
37
37
  document,
38
38
  variables,
39
39
  transform: (data) => ({
40
- auditLog: data.auditLogs?.nodes?.[0] ?? null,
40
+ auditLogAuth: data.auditLogAuths?.nodes?.[0] ?? null,
41
41
  }),
42
42
  });
43
43
  }
44
44
  findOne(args) {
45
- const { document, variables } = buildFindManyDocument('AuditLog', 'auditLogs', args.select, {
45
+ const { document, variables } = buildFindManyDocument('AuditLogAuth', 'auditLogAuths', args.select, {
46
46
  where: {
47
47
  id: {
48
48
  equalTo: args.id,
49
49
  },
50
50
  },
51
51
  first: 1,
52
- }, 'AuditLogFilter', 'AuditLogOrderBy', connectionFieldsMap);
52
+ }, 'AuditLogAuthFilter', 'AuditLogAuthOrderBy', connectionFieldsMap);
53
53
  return new QueryBuilder({
54
54
  client: this.client,
55
55
  operation: 'query',
56
- operationName: 'AuditLog',
57
- fieldName: 'auditLog',
56
+ operationName: 'AuditLogAuth',
57
+ fieldName: 'auditLogAuth',
58
58
  document,
59
59
  variables,
60
60
  transform: (data) => ({
61
- auditLog: data.auditLogs?.nodes?.[0] ?? null,
61
+ auditLogAuth: data.auditLogAuths?.nodes?.[0] ?? null,
62
62
  }),
63
63
  });
64
64
  }
65
65
  create(args) {
66
- const { document, variables } = buildCreateDocument('AuditLog', 'createAuditLog', 'auditLog', args.select, args.data, 'CreateAuditLogInput', connectionFieldsMap);
66
+ const { document, variables } = buildCreateDocument('AuditLogAuth', 'createAuditLogAuth', 'auditLogAuth', args.select, args.data, 'CreateAuditLogAuthInput', connectionFieldsMap);
67
67
  return new QueryBuilder({
68
68
  client: this.client,
69
69
  operation: 'mutation',
70
- operationName: 'AuditLog',
71
- fieldName: 'createAuditLog',
70
+ operationName: 'AuditLogAuth',
71
+ fieldName: 'createAuditLogAuth',
72
72
  document,
73
73
  variables,
74
74
  });
75
75
  }
76
76
  update(args) {
77
- const { document, variables } = buildUpdateByPkDocument('AuditLog', 'updateAuditLog', 'auditLog', args.select, args.where.id, args.data, 'UpdateAuditLogInput', 'id', 'auditLogPatch', connectionFieldsMap);
77
+ const { document, variables } = buildUpdateByPkDocument('AuditLogAuth', 'updateAuditLogAuth', 'auditLogAuth', args.select, args.where.id, args.data, 'UpdateAuditLogAuthInput', 'id', 'auditLogAuthPatch', connectionFieldsMap);
78
78
  return new QueryBuilder({
79
79
  client: this.client,
80
80
  operation: 'mutation',
81
- operationName: 'AuditLog',
82
- fieldName: 'updateAuditLog',
81
+ operationName: 'AuditLogAuth',
82
+ fieldName: 'updateAuditLogAuth',
83
83
  document,
84
84
  variables,
85
85
  });
86
86
  }
87
87
  delete(args) {
88
- const { document, variables } = buildDeleteByPkDocument('AuditLog', 'deleteAuditLog', 'auditLog', {
88
+ const { document, variables } = buildDeleteByPkDocument('AuditLogAuth', 'deleteAuditLogAuth', 'auditLogAuth', {
89
89
  id: args.where.id,
90
- }, 'DeleteAuditLogInput', args.select, connectionFieldsMap);
90
+ }, 'DeleteAuditLogAuthInput', args.select, connectionFieldsMap);
91
91
  return new QueryBuilder({
92
92
  client: this.client,
93
93
  operation: 'mutation',
94
- operationName: 'AuditLog',
95
- fieldName: 'deleteAuditLog',
94
+ operationName: 'AuditLogAuth',
95
+ fieldName: 'deleteAuditLogAuth',
96
96
  document,
97
97
  variables,
98
98
  });
@@ -0,0 +1,54 @@
1
+ /**
2
+ * ComputeLogModule 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 { ComputeLogModuleWithRelations, ComputeLogModuleSelect, ComputeLogModuleFilter, ComputeLogModuleOrderBy, CreateComputeLogModuleInput, ComputeLogModulePatch } from '../input-types';
10
+ export declare class ComputeLogModuleModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ComputeLogModuleSelect>(args: FindManyArgs<S, ComputeLogModuleFilter, ComputeLogModuleOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
16
+ computeLogModules: ConnectionResult<InferSelectResult<ComputeLogModuleWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ComputeLogModuleSelect>(args: FindFirstArgs<S, ComputeLogModuleFilter, ComputeLogModuleOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
21
+ computeLogModule: InferSelectResult<ComputeLogModuleWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends ComputeLogModuleSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
27
+ computeLogModule: InferSelectResult<ComputeLogModuleWithRelations, S> | null;
28
+ }>;
29
+ create<S extends ComputeLogModuleSelect>(args: CreateArgs<S, CreateComputeLogModuleInput['computeLogModule']> & {
30
+ select: S;
31
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
32
+ createComputeLogModule: {
33
+ computeLogModule: InferSelectResult<ComputeLogModuleWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends ComputeLogModuleSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, ComputeLogModulePatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
41
+ updateComputeLogModule: {
42
+ computeLogModule: InferSelectResult<ComputeLogModuleWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends ComputeLogModuleSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, ComputeLogModuleSelect>): QueryBuilder<{
50
+ deleteComputeLogModule: {
51
+ computeLogModule: InferSelectResult<ComputeLogModuleWithRelations, S>;
52
+ };
53
+ }>;
54
+ }