@constructive-io/react 0.30.2 → 0.30.4

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 (1072) hide show
  1. package/agent/orm/input-types.d.ts +24 -0
  2. package/agent/orm/input-types.js +3 -0
  3. package/agent/schema-types.d.ts +13 -0
  4. package/api/hooks/index.d.ts +1 -1
  5. package/api/hooks/index.js +1 -1
  6. package/api/hooks/invalidation.d.ts +11 -5
  7. package/api/hooks/invalidation.js +25 -9
  8. package/api/hooks/mutation-keys.d.ts +22 -10
  9. package/api/hooks/mutation-keys.js +14 -7
  10. package/api/hooks/mutations/index.d.ts +6 -1
  11. package/api/hooks/mutations/index.js +6 -1
  12. package/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
  13. package/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +6 -6
  14. package/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
  15. package/api/hooks/mutations/useCreateManagedDomainMutation.js +34 -0
  16. package/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
  17. package/api/hooks/mutations/useDeleteHttpRouteMutation.js +39 -0
  18. package/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
  19. package/api/hooks/mutations/useDeleteManagedDomainMutation.js +39 -0
  20. package/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
  21. package/api/hooks/mutations/useUpdateHttpRouteMutation.js +40 -0
  22. package/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
  23. package/api/hooks/mutations/useUpdateManagedDomainMutation.js +40 -0
  24. package/api/hooks/queries/index.d.ts +5 -2
  25. package/api/hooks/queries/index.js +5 -2
  26. package/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
  27. package/api/hooks/queries/{useMigrateFileQuery.js → useHttpRouteQuery.js} +14 -14
  28. package/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
  29. package/api/hooks/queries/useHttpRoutesQuery.js +38 -0
  30. package/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
  31. package/api/hooks/queries/useManagedDomainQuery.js +53 -0
  32. package/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
  33. package/api/hooks/queries/useManagedDomainsQuery.js +38 -0
  34. package/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
  35. package/api/hooks/queries/useResolveHttpRouteQuery.js +54 -0
  36. package/api/hooks/query-keys.d.ts +28 -12
  37. package/api/hooks/query-keys.js +17 -8
  38. package/api/orm/index.d.ts +9 -2
  39. package/api/orm/index.js +4 -2
  40. package/api/orm/input-types.d.ts +498 -143
  41. package/api/orm/input-types.js +4 -0
  42. package/api/orm/models/httpRoute.d.ts +54 -0
  43. package/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +27 -30
  44. package/api/orm/models/index.d.ts +2 -1
  45. package/api/orm/models/index.js +5 -3
  46. package/api/orm/models/managedDomain.d.ts +54 -0
  47. package/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +27 -30
  48. package/api/orm/query/index.d.ts +12 -0
  49. package/api/orm/query/index.js +20 -0
  50. package/api/schema-types.d.ts +277 -122
  51. package/api/types.d.ts +25 -5
  52. package/auth/orm/input-types.d.ts +155 -182
  53. package/auth/orm/input-types.js +4 -0
  54. package/auth/schema-types.d.ts +17 -63
  55. package/compute/hooks/index.d.ts +1 -1
  56. package/compute/hooks/index.js +1 -1
  57. package/compute/hooks/invalidation.d.ts +136 -10
  58. package/compute/hooks/invalidation.js +354 -18
  59. package/compute/hooks/mutation-keys.d.ts +294 -20
  60. package/compute/hooks/mutation-keys.js +227 -13
  61. package/compute/hooks/mutations/index.d.ts +62 -2
  62. package/compute/hooks/mutations/index.js +62 -2
  63. package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
  64. package/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +34 -0
  65. package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  66. package/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
  67. package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  68. package/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +34 -0
  69. package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
  70. package/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +34 -0
  71. package/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  72. package/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +5 -5
  73. package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  74. package/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
  75. package/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  76. package/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +5 -5
  77. package/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  78. package/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +5 -5
  79. package/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  80. package/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +5 -5
  81. package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
  82. package/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js +34 -0
  83. package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
  84. package/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +34 -0
  85. package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
  86. package/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +34 -0
  87. package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
  88. package/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +34 -0
  89. package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
  90. package/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +34 -0
  91. package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
  92. package/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +34 -0
  93. package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
  94. package/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +34 -0
  95. package/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
  96. package/compute/hooks/mutations/useCreateResourceInstallationMutation.js +34 -0
  97. package/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
  98. package/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +34 -0
  99. package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
  100. package/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +34 -0
  101. package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
  102. package/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +34 -0
  103. package/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
  104. package/{api/hooks/mutations/useCreateMigrateFileMutation.js → compute/hooks/mutations/useCreateResourcesHealthMutation.js} +6 -6
  105. package/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
  106. package/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +34 -0
  107. package/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
  108. package/compute/hooks/mutations/useCreateWebhookEventMutation.js +34 -0
  109. package/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
  110. package/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
  111. package/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
  112. package/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
  113. package/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
  114. package/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
  115. package/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  116. package/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +6 -6
  117. package/{esm/infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
  118. package/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +6 -6
  119. package/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
  120. package/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +6 -6
  121. package/{esm/infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
  122. package/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +6 -6
  123. package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
  124. package/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +39 -0
  125. package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
  126. package/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +40 -0
  127. package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
  128. package/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +40 -0
  129. package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
  130. package/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +39 -0
  131. package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
  132. package/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +39 -0
  133. package/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
  134. package/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +39 -0
  135. package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
  136. package/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +40 -0
  137. package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
  138. package/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +40 -0
  139. package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
  140. package/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +39 -0
  141. package/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
  142. package/compute/hooks/mutations/useDeleteWebhookEventMutation.js +39 -0
  143. package/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  144. package/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +5 -5
  145. package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  146. package/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
  147. package/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  148. package/{infra/hooks/mutations/useInfraSetDataAtPathMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +5 -5
  149. package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
  150. package/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +26 -0
  151. package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
  152. package/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +26 -0
  153. package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
  154. package/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +26 -0
  155. package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
  156. package/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +26 -0
  157. package/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
  158. package/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +26 -0
  159. package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
  160. package/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +26 -0
  161. package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
  162. package/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +26 -0
  163. package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
  164. package/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +26 -0
  165. package/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
  166. package/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
  167. package/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
  168. package/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
  169. package/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
  170. package/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
  171. package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  172. package/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
  173. package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  174. package/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
  175. package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  176. package/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
  177. package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  178. package/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
  179. package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
  180. package/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +40 -0
  181. package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
  182. package/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +41 -0
  183. package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
  184. package/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +41 -0
  185. package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
  186. package/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +40 -0
  187. package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
  188. package/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +40 -0
  189. package/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
  190. package/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +40 -0
  191. package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
  192. package/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +41 -0
  193. package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
  194. package/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +41 -0
  195. package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
  196. package/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +40 -0
  197. package/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
  198. package/compute/hooks/mutations/useUpdateWebhookEventMutation.js +40 -0
  199. package/compute/hooks/queries/index.d.ts +39 -2
  200. package/compute/hooks/queries/index.js +39 -2
  201. package/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
  202. package/compute/hooks/queries/useDeclaredCapacitiesQuery.js +38 -0
  203. package/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  204. package/compute/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
  205. package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
  206. package/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +38 -0
  207. package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
  208. package/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +38 -0
  209. package/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  210. package/compute/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
  211. package/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  212. package/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +13 -13
  213. package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  214. package/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
  215. package/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  216. package/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +13 -13
  217. package/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  218. package/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +13 -13
  219. package/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  220. package/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +13 -13
  221. package/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  222. package/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +13 -13
  223. package/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  224. package/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +13 -13
  225. package/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  226. package/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +13 -13
  227. package/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
  228. package/compute/hooks/queries/usePlatformResourceInstallationQuery.js +53 -0
  229. package/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
  230. package/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +38 -0
  231. package/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
  232. package/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +53 -0
  233. package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
  234. package/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +38 -0
  235. package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
  236. package/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +38 -0
  237. package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
  238. package/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +53 -0
  239. package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
  240. package/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +38 -0
  241. package/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
  242. package/compute/hooks/queries/usePlatformResourcesHealthQuery.js +53 -0
  243. package/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
  244. package/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +38 -0
  245. package/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
  246. package/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +53 -0
  247. package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
  248. package/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +38 -0
  249. package/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
  250. package/compute/hooks/queries/usePlatformWebhookEventQuery.js +53 -0
  251. package/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
  252. package/compute/hooks/queries/usePlatformWebhookEventsQuery.js +38 -0
  253. package/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
  254. package/compute/hooks/queries/useResourceInstallationQuery.js +53 -0
  255. package/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
  256. package/compute/hooks/queries/useResourceInstallationsQuery.js +38 -0
  257. package/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
  258. package/compute/hooks/queries/useResourceUsageLogQuery.js +53 -0
  259. package/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
  260. package/compute/hooks/queries/useResourceUsageLogsQuery.js +38 -0
  261. package/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
  262. package/compute/hooks/queries/useResourceUsageSummariesQuery.js +38 -0
  263. package/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
  264. package/compute/hooks/queries/useResourceUsageSummaryQuery.js +53 -0
  265. package/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
  266. package/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +38 -0
  267. package/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
  268. package/compute/hooks/queries/useResourcesHealthQuery.js +53 -0
  269. package/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
  270. package/compute/hooks/queries/useResourcesHealthsQuery.js +38 -0
  271. package/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
  272. package/compute/hooks/queries/useWebhookEndpointQuery.js +53 -0
  273. package/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
  274. package/compute/hooks/queries/useWebhookEndpointsQuery.js +38 -0
  275. package/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
  276. package/compute/hooks/queries/useWebhookEventQuery.js +53 -0
  277. package/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
  278. package/compute/hooks/queries/useWebhookEventsQuery.js +38 -0
  279. package/compute/hooks/query-keys.d.ts +318 -24
  280. package/compute/hooks/query-keys.js +188 -15
  281. package/compute/orm/index.d.ts +101 -4
  282. package/compute/orm/index.js +46 -4
  283. package/compute/orm/input-types.d.ts +5356 -772
  284. package/compute/orm/input-types.js +34 -2
  285. package/compute/orm/models/declaredCapacity.d.ts +30 -0
  286. package/compute/orm/models/{getAllRecord.js → declaredCapacity.js} +15 -15
  287. package/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  288. package/{objects/orm/models/getAllRecord.js → compute/orm/models/getAllTreeNodesRecord.js} +15 -15
  289. package/compute/orm/models/index.d.ts +23 -2
  290. package/compute/orm/models/index.js +48 -5
  291. package/compute/orm/models/infraCommit.d.ts +2 -2
  292. package/compute/orm/models/infraCommit.js +2 -2
  293. package/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  294. package/compute/orm/models/infraGetAllTreeNodesRecord.js +59 -0
  295. package/compute/orm/models/infraObject.d.ts +2 -2
  296. package/compute/orm/models/infraObject.js +2 -2
  297. package/compute/orm/models/infraRef.d.ts +2 -2
  298. package/compute/orm/models/infraRef.js +2 -2
  299. package/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  300. package/compute/orm/models/{infraGetAllRecord.js → platformDeclaredCapacity.js} +15 -15
  301. package/compute/orm/models/platformInfraCommit.d.ts +56 -0
  302. package/compute/orm/models/platformInfraCommit.js +107 -0
  303. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  304. package/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  305. package/compute/orm/models/platformInfraObject.d.ts +56 -0
  306. package/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +25 -25
  307. package/compute/orm/models/platformInfraRef.d.ts +56 -0
  308. package/compute/orm/models/platformInfraRef.js +107 -0
  309. package/compute/orm/models/platformInfraStore.d.ts +54 -0
  310. package/compute/orm/models/platformInfraStore.js +104 -0
  311. package/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  312. package/compute/orm/models/platformResourceInstallation.js +104 -0
  313. package/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  314. package/compute/orm/models/platformResourceUsageLog.js +107 -0
  315. package/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  316. package/compute/orm/models/platformResourceUsageSummary.js +107 -0
  317. package/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  318. package/compute/orm/models/platformResourceUtilizationDaily.js +59 -0
  319. package/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  320. package/compute/orm/models/platformResourcesHealth.js +80 -0
  321. package/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  322. package/compute/orm/models/platformWebhookEndpoint.js +104 -0
  323. package/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  324. package/compute/orm/models/platformWebhookEvent.js +104 -0
  325. package/compute/orm/models/resourceInstallation.d.ts +54 -0
  326. package/compute/orm/models/resourceInstallation.js +104 -0
  327. package/compute/orm/models/resourceUsageLog.d.ts +56 -0
  328. package/compute/orm/models/resourceUsageLog.js +107 -0
  329. package/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  330. package/compute/orm/models/resourceUsageSummary.js +107 -0
  331. package/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  332. package/compute/orm/models/resourceUtilizationDaily.js +59 -0
  333. package/compute/orm/models/resourcesHealth.d.ts +36 -0
  334. package/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +20 -20
  335. package/compute/orm/models/webhookEndpoint.d.ts +54 -0
  336. package/compute/orm/models/webhookEndpoint.js +104 -0
  337. package/compute/orm/models/webhookEvent.d.ts +54 -0
  338. package/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +27 -27
  339. package/compute/orm/mutation/index.d.ts +89 -1
  340. package/compute/orm/mutation/index.js +132 -0
  341. package/compute/schema-types.d.ts +2775 -237
  342. package/compute/types.d.ts +364 -20
  343. package/config/orm/input-types.d.ts +4 -79
  344. package/config/schema-types.d.ts +0 -72
  345. package/esm/agent/orm/input-types.d.ts +24 -0
  346. package/esm/agent/orm/input-types.js +3 -0
  347. package/esm/agent/schema-types.d.ts +13 -0
  348. package/esm/api/hooks/index.d.ts +1 -1
  349. package/esm/api/hooks/index.js +1 -1
  350. package/esm/api/hooks/invalidation.d.ts +11 -5
  351. package/esm/api/hooks/invalidation.js +26 -10
  352. package/esm/api/hooks/mutation-keys.d.ts +22 -10
  353. package/esm/api/hooks/mutation-keys.js +13 -6
  354. package/esm/api/hooks/mutations/index.d.ts +6 -1
  355. package/esm/api/hooks/mutations/index.js +6 -1
  356. package/esm/api/hooks/mutations/useCreateHttpRouteMutation.d.ts +34 -0
  357. package/esm/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → api/hooks/mutations/useCreateHttpRouteMutation.js} +7 -7
  358. package/esm/api/hooks/mutations/useCreateManagedDomainMutation.d.ts +34 -0
  359. package/esm/api/hooks/mutations/useCreateManagedDomainMutation.js +31 -0
  360. package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.d.ts +38 -0
  361. package/esm/api/hooks/mutations/useDeleteHttpRouteMutation.js +36 -0
  362. package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.d.ts +38 -0
  363. package/esm/api/hooks/mutations/useDeleteManagedDomainMutation.js +36 -0
  364. package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.d.ts +40 -0
  365. package/esm/api/hooks/mutations/useUpdateHttpRouteMutation.js +37 -0
  366. package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.d.ts +40 -0
  367. package/esm/api/hooks/mutations/useUpdateManagedDomainMutation.js +37 -0
  368. package/esm/api/hooks/queries/index.d.ts +5 -2
  369. package/esm/api/hooks/queries/index.js +5 -2
  370. package/esm/api/hooks/queries/useHttpRouteQuery.d.ts +65 -0
  371. package/esm/api/hooks/queries/useHttpRouteQuery.js +47 -0
  372. package/esm/api/hooks/queries/useHttpRoutesQuery.d.ts +69 -0
  373. package/esm/{compute/hooks/queries/useGetAllQuery.js → api/hooks/queries/useHttpRoutesQuery.js} +11 -11
  374. package/esm/api/hooks/queries/useManagedDomainQuery.d.ts +65 -0
  375. package/esm/api/hooks/queries/useManagedDomainQuery.js +47 -0
  376. package/esm/api/hooks/queries/useManagedDomainsQuery.d.ts +69 -0
  377. package/esm/api/hooks/queries/useManagedDomainsQuery.js +32 -0
  378. package/esm/api/hooks/queries/useResolveHttpRouteQuery.d.ts +65 -0
  379. package/esm/api/hooks/queries/useResolveHttpRouteQuery.js +48 -0
  380. package/esm/api/hooks/query-keys.d.ts +28 -12
  381. package/esm/api/hooks/query-keys.js +16 -7
  382. package/esm/api/orm/index.d.ts +9 -2
  383. package/esm/api/orm/index.js +4 -2
  384. package/esm/api/orm/input-types.d.ts +498 -143
  385. package/esm/api/orm/input-types.js +4 -0
  386. package/esm/api/orm/models/httpRoute.d.ts +54 -0
  387. package/esm/{infra/orm/models/infraRef.js → api/orm/models/httpRoute.js} +25 -28
  388. package/esm/api/orm/models/index.d.ts +2 -1
  389. package/esm/api/orm/models/index.js +2 -1
  390. package/esm/api/orm/models/managedDomain.d.ts +54 -0
  391. package/esm/{infra/orm/models/infraCommit.js → api/orm/models/managedDomain.js} +25 -28
  392. package/esm/api/orm/query/index.d.ts +12 -0
  393. package/esm/api/orm/query/index.js +20 -0
  394. package/esm/api/schema-types.d.ts +277 -122
  395. package/esm/api/types.d.ts +25 -5
  396. package/esm/auth/orm/input-types.d.ts +155 -182
  397. package/esm/auth/orm/input-types.js +4 -0
  398. package/esm/auth/schema-types.d.ts +17 -63
  399. package/esm/compute/hooks/index.d.ts +1 -1
  400. package/esm/compute/hooks/index.js +1 -1
  401. package/esm/compute/hooks/invalidation.d.ts +136 -10
  402. package/esm/compute/hooks/invalidation.js +355 -19
  403. package/esm/compute/hooks/mutation-keys.d.ts +294 -20
  404. package/esm/compute/hooks/mutation-keys.js +225 -12
  405. package/esm/compute/hooks/mutations/index.d.ts +62 -2
  406. package/esm/compute/hooks/mutations/index.js +62 -2
  407. package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.d.ts +34 -0
  408. package/esm/compute/hooks/mutations/useCreateDeclaredCapacityMutation.js +31 -0
  409. package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  410. package/esm/compute/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
  411. package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  412. package/esm/compute/hooks/mutations/useCreateInfraGetAllTreeNodesRecordMutation.js +31 -0
  413. package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.d.ts +34 -0
  414. package/esm/compute/hooks/mutations/useCreatePlatformDeclaredCapacityMutation.js +31 -0
  415. package/esm/compute/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  416. package/esm/{infra/hooks/mutations/useCreateInfraCommitMutation.js → compute/hooks/mutations/useCreatePlatformInfraCommitMutation.js} +6 -6
  417. package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  418. package/esm/compute/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
  419. package/esm/compute/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  420. package/esm/{infra/hooks/mutations/useCreateInfraObjectMutation.js → compute/hooks/mutations/useCreatePlatformInfraObjectMutation.js} +6 -6
  421. package/esm/compute/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  422. package/esm/{infra/hooks/mutations/useCreateInfraRefMutation.js → compute/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
  423. package/esm/compute/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  424. package/esm/{infra/hooks/mutations/useCreateInfraStoreMutation.js → compute/hooks/mutations/useCreatePlatformInfraStoreMutation.js} +6 -6
  425. package/esm/compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.d.ts +34 -0
  426. package/esm/{infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js → compute/hooks/mutations/useCreatePlatformResourceInstallationMutation.js} +7 -7
  427. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.d.ts +34 -0
  428. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageLogMutation.js +31 -0
  429. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.d.ts +34 -0
  430. package/esm/compute/hooks/mutations/useCreatePlatformResourceUsageSummaryMutation.js +31 -0
  431. package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.d.ts +34 -0
  432. package/esm/compute/hooks/mutations/useCreatePlatformResourceUtilizationDailyMutation.js +31 -0
  433. package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.d.ts +34 -0
  434. package/esm/compute/hooks/mutations/useCreatePlatformResourcesHealthMutation.js +31 -0
  435. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.d.ts +34 -0
  436. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEndpointMutation.js +31 -0
  437. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.d.ts +34 -0
  438. package/esm/compute/hooks/mutations/useCreatePlatformWebhookEventMutation.js +31 -0
  439. package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.d.ts +34 -0
  440. package/esm/compute/hooks/mutations/useCreateResourceInstallationMutation.js +31 -0
  441. package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.d.ts +34 -0
  442. package/esm/compute/hooks/mutations/useCreateResourceUsageLogMutation.js +31 -0
  443. package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.d.ts +34 -0
  444. package/esm/compute/hooks/mutations/useCreateResourceUsageSummaryMutation.js +31 -0
  445. package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.d.ts +34 -0
  446. package/esm/compute/hooks/mutations/useCreateResourceUtilizationDailyMutation.js +31 -0
  447. package/esm/compute/hooks/mutations/useCreateResourcesHealthMutation.d.ts +34 -0
  448. package/esm/compute/hooks/mutations/{useCreateGetAllRecordMutation.js → useCreateResourcesHealthMutation.js} +7 -7
  449. package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.d.ts +34 -0
  450. package/esm/compute/hooks/mutations/useCreateWebhookEndpointMutation.js +31 -0
  451. package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.d.ts +34 -0
  452. package/esm/compute/hooks/mutations/useCreateWebhookEventMutation.js +31 -0
  453. package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.d.ts +2 -2
  454. package/esm/compute/hooks/mutations/useDeleteInfraCommitMutation.js +2 -2
  455. package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.d.ts +2 -2
  456. package/esm/compute/hooks/mutations/useDeleteInfraObjectMutation.js +2 -2
  457. package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.d.ts +2 -2
  458. package/esm/compute/hooks/mutations/useDeleteInfraRefMutation.js +2 -2
  459. package/esm/compute/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  460. package/esm/{infra/hooks/mutations/useDeleteInfraCommitMutation.js → compute/hooks/mutations/useDeletePlatformInfraCommitMutation.js} +7 -7
  461. package/{infra/hooks/mutations/useDeleteInfraObjectMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts} +10 -10
  462. package/esm/{infra/hooks/mutations/useDeleteInfraObjectMutation.js → compute/hooks/mutations/useDeletePlatformInfraObjectMutation.js} +7 -7
  463. package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.d.ts → compute/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts} +10 -10
  464. package/esm/{infra/hooks/mutations/useDeleteInfraRefMutation.js → compute/hooks/mutations/useDeletePlatformInfraRefMutation.js} +7 -7
  465. package/{infra/hooks/mutations/useDeleteInfraStoreMutation.d.ts → esm/compute/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts} +10 -10
  466. package/esm/{infra/hooks/mutations/useDeleteInfraStoreMutation.js → compute/hooks/mutations/useDeletePlatformInfraStoreMutation.js} +7 -7
  467. package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.d.ts +38 -0
  468. package/esm/compute/hooks/mutations/useDeletePlatformResourceInstallationMutation.js +36 -0
  469. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.d.ts +40 -0
  470. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageLogMutation.js +37 -0
  471. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.d.ts +40 -0
  472. package/esm/compute/hooks/mutations/useDeletePlatformResourceUsageSummaryMutation.js +37 -0
  473. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.d.ts +38 -0
  474. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEndpointMutation.js +36 -0
  475. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.d.ts +38 -0
  476. package/esm/compute/hooks/mutations/useDeletePlatformWebhookEventMutation.js +36 -0
  477. package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.d.ts +38 -0
  478. package/esm/compute/hooks/mutations/useDeleteResourceInstallationMutation.js +36 -0
  479. package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.d.ts +40 -0
  480. package/esm/compute/hooks/mutations/useDeleteResourceUsageLogMutation.js +37 -0
  481. package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.d.ts +40 -0
  482. package/esm/compute/hooks/mutations/useDeleteResourceUsageSummaryMutation.js +37 -0
  483. package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.d.ts +38 -0
  484. package/esm/compute/hooks/mutations/useDeleteWebhookEndpointMutation.js +36 -0
  485. package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.d.ts +38 -0
  486. package/esm/compute/hooks/mutations/useDeleteWebhookEventMutation.js +36 -0
  487. package/esm/compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  488. package/esm/{infra/hooks/mutations/useInfraInsertNodeAtPathMutation.js → compute/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.js} +4 -4
  489. package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  490. package/esm/compute/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
  491. package/esm/compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  492. package/esm/{infra/hooks/mutations/useInfraInitEmptyRepoMutation.js → compute/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js} +4 -4
  493. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.d.ts +20 -0
  494. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsInstallMutation.js +23 -0
  495. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.d.ts +20 -0
  496. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsRollbackMutation.js +23 -0
  497. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.d.ts +20 -0
  498. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUninstallMutation.js +23 -0
  499. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.d.ts +20 -0
  500. package/esm/compute/hooks/mutations/usePlatformResourceInstallationsUpgradeMutation.js +23 -0
  501. package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.d.ts +20 -0
  502. package/esm/compute/hooks/mutations/useResourceInstallationsInstallMutation.js +23 -0
  503. package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.d.ts +20 -0
  504. package/esm/compute/hooks/mutations/useResourceInstallationsRollbackMutation.js +23 -0
  505. package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.d.ts +20 -0
  506. package/esm/compute/hooks/mutations/useResourceInstallationsUninstallMutation.js +23 -0
  507. package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.d.ts +20 -0
  508. package/esm/compute/hooks/mutations/useResourceInstallationsUpgradeMutation.js +23 -0
  509. package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.d.ts +2 -2
  510. package/esm/compute/hooks/mutations/useUpdateInfraCommitMutation.js +2 -2
  511. package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.d.ts +2 -2
  512. package/esm/compute/hooks/mutations/useUpdateInfraObjectMutation.js +2 -2
  513. package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.d.ts +2 -2
  514. package/esm/compute/hooks/mutations/useUpdateInfraRefMutation.js +2 -2
  515. package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  516. package/esm/compute/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
  517. package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  518. package/esm/compute/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
  519. package/esm/compute/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  520. package/esm/{infra/hooks/mutations/useUpdateInfraRefMutation.js → compute/hooks/mutations/useUpdatePlatformInfraRefMutation.js} +9 -9
  521. package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  522. package/esm/compute/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
  523. package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.d.ts +40 -0
  524. package/esm/compute/hooks/mutations/useUpdatePlatformResourceInstallationMutation.js +37 -0
  525. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.d.ts +42 -0
  526. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageLogMutation.js +38 -0
  527. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.d.ts +42 -0
  528. package/esm/compute/hooks/mutations/useUpdatePlatformResourceUsageSummaryMutation.js +38 -0
  529. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.d.ts +40 -0
  530. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEndpointMutation.js +37 -0
  531. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.d.ts +40 -0
  532. package/esm/compute/hooks/mutations/useUpdatePlatformWebhookEventMutation.js +37 -0
  533. package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.d.ts +40 -0
  534. package/esm/compute/hooks/mutations/useUpdateResourceInstallationMutation.js +37 -0
  535. package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.d.ts +42 -0
  536. package/esm/compute/hooks/mutations/useUpdateResourceUsageLogMutation.js +38 -0
  537. package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.d.ts +42 -0
  538. package/esm/compute/hooks/mutations/useUpdateResourceUsageSummaryMutation.js +38 -0
  539. package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.d.ts +40 -0
  540. package/esm/compute/hooks/mutations/useUpdateWebhookEndpointMutation.js +37 -0
  541. package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.d.ts +40 -0
  542. package/esm/compute/hooks/mutations/useUpdateWebhookEventMutation.js +37 -0
  543. package/esm/compute/hooks/queries/index.d.ts +39 -2
  544. package/esm/compute/hooks/queries/index.js +39 -2
  545. package/esm/compute/hooks/queries/useDeclaredCapacitiesQuery.d.ts +69 -0
  546. package/esm/{objects/hooks/queries/useGetAllQuery.js → compute/hooks/queries/useDeclaredCapacitiesQuery.js} +11 -11
  547. package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  548. package/esm/compute/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
  549. package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.d.ts +69 -0
  550. package/esm/compute/hooks/queries/useInfraGetAllTreeNodesQuery.js +32 -0
  551. package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.d.ts +69 -0
  552. package/esm/compute/hooks/queries/usePlatformDeclaredCapacitiesQuery.js +32 -0
  553. package/esm/compute/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  554. package/esm/{infra/hooks/queries/useInfraCommitQuery.js → compute/hooks/queries/usePlatformInfraCommitQuery.js} +10 -10
  555. package/esm/compute/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  556. package/esm/{infra/hooks/queries/useInfraCommitsQuery.js → compute/hooks/queries/usePlatformInfraCommitsQuery.js} +10 -10
  557. package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  558. package/esm/compute/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
  559. package/esm/compute/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  560. package/esm/{infra/hooks/queries/useInfraObjectQuery.js → compute/hooks/queries/usePlatformInfraObjectQuery.js} +10 -10
  561. package/esm/compute/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  562. package/esm/{infra/hooks/queries/useInfraObjectsQuery.js → compute/hooks/queries/usePlatformInfraObjectsQuery.js} +10 -10
  563. package/esm/compute/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  564. package/esm/{infra/hooks/queries/useInfraRefQuery.js → compute/hooks/queries/usePlatformInfraRefQuery.js} +10 -10
  565. package/esm/compute/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  566. package/esm/{infra/hooks/queries/useInfraRefsQuery.js → compute/hooks/queries/usePlatformInfraRefsQuery.js} +10 -10
  567. package/esm/compute/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  568. package/esm/{infra/hooks/queries/useInfraStoreQuery.js → compute/hooks/queries/usePlatformInfraStoreQuery.js} +10 -10
  569. package/esm/compute/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  570. package/esm/{infra/hooks/queries/useInfraStoresQuery.js → compute/hooks/queries/usePlatformInfraStoresQuery.js} +10 -10
  571. package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.d.ts +65 -0
  572. package/esm/compute/hooks/queries/usePlatformResourceInstallationQuery.js +47 -0
  573. package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.d.ts +69 -0
  574. package/esm/compute/hooks/queries/usePlatformResourceInstallationsQuery.js +32 -0
  575. package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.d.ts +65 -0
  576. package/esm/compute/hooks/queries/usePlatformResourceUsageLogQuery.js +47 -0
  577. package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.d.ts +69 -0
  578. package/esm/compute/hooks/queries/usePlatformResourceUsageLogsQuery.js +32 -0
  579. package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.d.ts +69 -0
  580. package/esm/compute/hooks/queries/usePlatformResourceUsageSummariesQuery.js +32 -0
  581. package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.d.ts +65 -0
  582. package/esm/compute/hooks/queries/usePlatformResourceUsageSummaryQuery.js +47 -0
  583. package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.d.ts +69 -0
  584. package/esm/compute/hooks/queries/usePlatformResourceUtilizationDailiesQuery.js +32 -0
  585. package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.d.ts +65 -0
  586. package/esm/compute/hooks/queries/usePlatformResourcesHealthQuery.js +47 -0
  587. package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.d.ts +69 -0
  588. package/esm/compute/hooks/queries/usePlatformResourcesHealthsQuery.js +32 -0
  589. package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.d.ts +65 -0
  590. package/esm/compute/hooks/queries/usePlatformWebhookEndpointQuery.js +47 -0
  591. package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.d.ts +69 -0
  592. package/esm/compute/hooks/queries/usePlatformWebhookEndpointsQuery.js +32 -0
  593. package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.d.ts +65 -0
  594. package/esm/compute/hooks/queries/usePlatformWebhookEventQuery.js +47 -0
  595. package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.d.ts +69 -0
  596. package/esm/compute/hooks/queries/usePlatformWebhookEventsQuery.js +32 -0
  597. package/esm/compute/hooks/queries/useResourceInstallationQuery.d.ts +65 -0
  598. package/esm/compute/hooks/queries/useResourceInstallationQuery.js +47 -0
  599. package/esm/compute/hooks/queries/useResourceInstallationsQuery.d.ts +69 -0
  600. package/esm/compute/hooks/queries/useResourceInstallationsQuery.js +32 -0
  601. package/esm/compute/hooks/queries/useResourceUsageLogQuery.d.ts +65 -0
  602. package/esm/compute/hooks/queries/useResourceUsageLogQuery.js +47 -0
  603. package/esm/compute/hooks/queries/useResourceUsageLogsQuery.d.ts +69 -0
  604. package/esm/compute/hooks/queries/useResourceUsageLogsQuery.js +32 -0
  605. package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.d.ts +69 -0
  606. package/esm/compute/hooks/queries/useResourceUsageSummariesQuery.js +32 -0
  607. package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.d.ts +65 -0
  608. package/esm/compute/hooks/queries/useResourceUsageSummaryQuery.js +47 -0
  609. package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.d.ts +69 -0
  610. package/esm/compute/hooks/queries/useResourceUtilizationDailiesQuery.js +32 -0
  611. package/esm/compute/hooks/queries/useResourcesHealthQuery.d.ts +65 -0
  612. package/esm/compute/hooks/queries/useResourcesHealthQuery.js +47 -0
  613. package/esm/compute/hooks/queries/useResourcesHealthsQuery.d.ts +69 -0
  614. package/esm/compute/hooks/queries/{useInfraGetAllQuery.js → useResourcesHealthsQuery.js} +11 -11
  615. package/esm/compute/hooks/queries/useWebhookEndpointQuery.d.ts +65 -0
  616. package/esm/compute/hooks/queries/useWebhookEndpointQuery.js +47 -0
  617. package/esm/compute/hooks/queries/useWebhookEndpointsQuery.d.ts +69 -0
  618. package/esm/compute/hooks/queries/useWebhookEndpointsQuery.js +32 -0
  619. package/esm/compute/hooks/queries/useWebhookEventQuery.d.ts +65 -0
  620. package/esm/compute/hooks/queries/useWebhookEventQuery.js +47 -0
  621. package/esm/compute/hooks/queries/useWebhookEventsQuery.d.ts +69 -0
  622. package/esm/compute/hooks/queries/useWebhookEventsQuery.js +32 -0
  623. package/esm/compute/hooks/query-keys.d.ts +318 -24
  624. package/esm/compute/hooks/query-keys.js +186 -14
  625. package/esm/compute/orm/index.d.ts +101 -4
  626. package/esm/compute/orm/index.js +46 -4
  627. package/esm/compute/orm/input-types.d.ts +5356 -772
  628. package/esm/compute/orm/input-types.js +34 -2
  629. package/esm/compute/orm/models/declaredCapacity.d.ts +30 -0
  630. package/esm/compute/orm/models/{infraGetAllRecord.js → declaredCapacity.js} +13 -13
  631. package/esm/compute/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  632. package/esm/compute/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  633. package/esm/compute/orm/models/index.d.ts +23 -2
  634. package/esm/compute/orm/models/index.js +23 -2
  635. package/esm/compute/orm/models/infraCommit.d.ts +2 -2
  636. package/esm/compute/orm/models/infraCommit.js +2 -2
  637. package/esm/compute/orm/models/infraGetAllTreeNodesRecord.d.ts +30 -0
  638. package/esm/{infra/orm/models/infraGetAllRecord.js → compute/orm/models/infraGetAllTreeNodesRecord.js} +13 -13
  639. package/esm/compute/orm/models/infraObject.d.ts +2 -2
  640. package/esm/compute/orm/models/infraObject.js +2 -2
  641. package/esm/compute/orm/models/infraRef.d.ts +2 -2
  642. package/esm/compute/orm/models/infraRef.js +2 -2
  643. package/esm/compute/orm/models/platformDeclaredCapacity.d.ts +30 -0
  644. package/esm/compute/orm/models/platformDeclaredCapacity.js +55 -0
  645. package/esm/compute/orm/models/platformInfraCommit.d.ts +56 -0
  646. package/esm/compute/orm/models/platformInfraCommit.js +103 -0
  647. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  648. package/esm/compute/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  649. package/esm/compute/orm/models/platformInfraObject.d.ts +56 -0
  650. package/esm/{infra/orm/models/infraObject.js → compute/orm/models/platformInfraObject.js} +23 -23
  651. package/esm/compute/orm/models/platformInfraRef.d.ts +56 -0
  652. package/esm/compute/orm/models/platformInfraRef.js +103 -0
  653. package/esm/compute/orm/models/platformInfraStore.d.ts +54 -0
  654. package/esm/compute/orm/models/platformInfraStore.js +100 -0
  655. package/esm/compute/orm/models/platformResourceInstallation.d.ts +54 -0
  656. package/esm/compute/orm/models/platformResourceInstallation.js +100 -0
  657. package/esm/compute/orm/models/platformResourceUsageLog.d.ts +56 -0
  658. package/esm/compute/orm/models/platformResourceUsageLog.js +103 -0
  659. package/esm/compute/orm/models/platformResourceUsageSummary.d.ts +56 -0
  660. package/esm/compute/orm/models/platformResourceUsageSummary.js +103 -0
  661. package/esm/compute/orm/models/platformResourceUtilizationDaily.d.ts +30 -0
  662. package/esm/compute/orm/models/platformResourceUtilizationDaily.js +55 -0
  663. package/esm/compute/orm/models/platformResourcesHealth.d.ts +36 -0
  664. package/esm/compute/orm/models/platformResourcesHealth.js +76 -0
  665. package/esm/compute/orm/models/platformWebhookEndpoint.d.ts +54 -0
  666. package/esm/compute/orm/models/platformWebhookEndpoint.js +100 -0
  667. package/esm/compute/orm/models/platformWebhookEvent.d.ts +54 -0
  668. package/esm/compute/orm/models/platformWebhookEvent.js +100 -0
  669. package/esm/compute/orm/models/resourceInstallation.d.ts +54 -0
  670. package/esm/compute/orm/models/resourceInstallation.js +100 -0
  671. package/esm/compute/orm/models/resourceUsageLog.d.ts +56 -0
  672. package/esm/compute/orm/models/resourceUsageLog.js +103 -0
  673. package/esm/compute/orm/models/resourceUsageSummary.d.ts +56 -0
  674. package/esm/compute/orm/models/resourceUsageSummary.js +103 -0
  675. package/esm/compute/orm/models/resourceUtilizationDaily.d.ts +30 -0
  676. package/esm/compute/orm/models/resourceUtilizationDaily.js +55 -0
  677. package/esm/compute/orm/models/resourcesHealth.d.ts +36 -0
  678. package/esm/{api/orm/models/migrateFile.js → compute/orm/models/resourcesHealth.js} +18 -18
  679. package/esm/compute/orm/models/webhookEndpoint.d.ts +54 -0
  680. package/esm/compute/orm/models/webhookEndpoint.js +100 -0
  681. package/esm/compute/orm/models/webhookEvent.d.ts +54 -0
  682. package/esm/{infra/orm/models/infraStore.js → compute/orm/models/webhookEvent.js} +25 -25
  683. package/esm/compute/orm/mutation/index.d.ts +89 -1
  684. package/esm/compute/orm/mutation/index.js +132 -0
  685. package/esm/compute/schema-types.d.ts +2775 -237
  686. package/esm/compute/types.d.ts +364 -20
  687. package/esm/config/orm/input-types.d.ts +4 -79
  688. package/esm/config/schema-types.d.ts +0 -72
  689. package/esm/infra/hooks/index.d.ts +1 -1
  690. package/esm/infra/hooks/index.js +1 -1
  691. package/esm/infra/hooks/invalidation.d.ts +30 -30
  692. package/esm/infra/hooks/invalidation.js +64 -64
  693. package/esm/infra/hooks/mutation-keys.d.ts +66 -66
  694. package/esm/infra/hooks/mutation-keys.js +47 -44
  695. package/esm/infra/hooks/mutations/index.d.ts +16 -16
  696. package/esm/infra/hooks/mutations/index.js +16 -16
  697. package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  698. package/esm/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +31 -0
  699. package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  700. package/esm/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +31 -0
  701. package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  702. package/esm/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +31 -0
  703. package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  704. package/esm/infra/hooks/mutations/useCreatePlatformInfraRefMutation.js +31 -0
  705. package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  706. package/esm/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +31 -0
  707. package/esm/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  708. package/esm/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +9 -10
  709. package/esm/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
  710. package/esm/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +9 -10
  711. package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
  712. package/esm/infra/hooks/mutations/useDeletePlatformInfraRefMutation.js +37 -0
  713. package/esm/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
  714. package/esm/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +9 -10
  715. package/esm/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  716. package/esm/infra/hooks/mutations/{useInfraSetDataAtPathMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +4 -4
  717. package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  718. package/esm/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +23 -0
  719. package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  720. package/esm/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +23 -0
  721. package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  722. package/esm/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +38 -0
  723. package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  724. package/esm/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +38 -0
  725. package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  726. package/esm/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +38 -0
  727. package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  728. package/esm/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +37 -0
  729. package/esm/infra/hooks/queries/index.d.ts +9 -9
  730. package/esm/infra/hooks/queries/index.js +9 -9
  731. package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  732. package/esm/infra/hooks/queries/usePlatformInfraCommitQuery.js +47 -0
  733. package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  734. package/esm/infra/hooks/queries/usePlatformInfraCommitsQuery.js +32 -0
  735. package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  736. package/esm/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +32 -0
  737. package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  738. package/esm/infra/hooks/queries/usePlatformInfraObjectQuery.js +47 -0
  739. package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  740. package/esm/infra/hooks/queries/usePlatformInfraObjectsQuery.js +32 -0
  741. package/esm/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  742. package/esm/infra/hooks/queries/usePlatformInfraRefQuery.js +47 -0
  743. package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  744. package/esm/infra/hooks/queries/usePlatformInfraRefsQuery.js +32 -0
  745. package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  746. package/esm/infra/hooks/queries/usePlatformInfraStoreQuery.js +47 -0
  747. package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  748. package/esm/infra/hooks/queries/usePlatformInfraStoresQuery.js +32 -0
  749. package/esm/infra/hooks/query-keys.d.ts +70 -70
  750. package/esm/infra/hooks/query-keys.js +42 -40
  751. package/esm/infra/orm/index.d.ts +19 -19
  752. package/esm/infra/orm/index.js +10 -10
  753. package/esm/infra/orm/input-types.d.ts +542 -668
  754. package/esm/infra/orm/models/index.d.ts +5 -5
  755. package/esm/infra/orm/models/index.js +5 -5
  756. package/esm/infra/orm/models/platformInfraCommit.d.ts +56 -0
  757. package/esm/infra/orm/models/platformInfraCommit.js +103 -0
  758. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  759. package/esm/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +55 -0
  760. package/esm/infra/orm/models/platformInfraObject.d.ts +56 -0
  761. package/esm/infra/orm/models/platformInfraObject.js +93 -0
  762. package/esm/infra/orm/models/platformInfraRef.d.ts +56 -0
  763. package/esm/infra/orm/models/platformInfraRef.js +103 -0
  764. package/esm/infra/orm/models/platformInfraStore.d.ts +54 -0
  765. package/esm/infra/orm/models/platformInfraStore.js +100 -0
  766. package/esm/infra/orm/mutation/index.d.ts +16 -16
  767. package/esm/infra/orm/mutation/index.js +18 -18
  768. package/esm/infra/schema-types.d.ts +389 -473
  769. package/esm/infra/types.d.ts +30 -44
  770. package/esm/modules/hooks/index.d.ts +1 -1
  771. package/esm/modules/hooks/index.js +1 -1
  772. package/esm/modules/hooks/invalidation.d.ts +12 -0
  773. package/esm/modules/hooks/invalidation.js +33 -1
  774. package/esm/modules/hooks/mutation-keys.d.ts +24 -0
  775. package/esm/modules/hooks/mutation-keys.js +14 -0
  776. package/esm/modules/hooks/mutations/index.d.ts +6 -0
  777. package/esm/modules/hooks/mutations/index.js +6 -0
  778. package/esm/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
  779. package/esm/{api/hooks/mutations/useCreateMigrateFileMutation.js → modules/hooks/mutations/useCreateHttpRouteModuleMutation.js} +7 -7
  780. package/esm/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
  781. package/esm/{objects/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +7 -7
  782. package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
  783. package/esm/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +36 -0
  784. package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
  785. package/esm/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +36 -0
  786. package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
  787. package/esm/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +37 -0
  788. package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
  789. package/esm/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +37 -0
  790. package/esm/modules/hooks/queries/index.d.ts +4 -0
  791. package/esm/modules/hooks/queries/index.js +4 -0
  792. package/esm/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
  793. package/esm/modules/hooks/queries/useHttpRouteModuleQuery.js +47 -0
  794. package/esm/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
  795. package/esm/{infra/hooks/queries/useInfraGetAllQuery.js → modules/hooks/queries/useHttpRouteModulesQuery.js} +11 -11
  796. package/esm/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
  797. package/esm/{api/hooks/queries/useMigrateFileQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +11 -11
  798. package/esm/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
  799. package/esm/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +11 -11
  800. package/esm/modules/hooks/query-keys.d.ts +28 -0
  801. package/esm/modules/hooks/query-keys.js +16 -0
  802. package/esm/modules/orm/index.d.ts +4 -0
  803. package/esm/modules/orm/index.js +4 -0
  804. package/esm/modules/orm/input-types.d.ts +802 -166
  805. package/esm/modules/orm/models/httpRouteModule.d.ts +54 -0
  806. package/esm/modules/orm/models/httpRouteModule.js +100 -0
  807. package/esm/modules/orm/models/index.d.ts +2 -0
  808. package/esm/modules/orm/models/index.js +2 -0
  809. package/esm/modules/orm/models/webhookModule.d.ts +54 -0
  810. package/esm/modules/orm/models/webhookModule.js +100 -0
  811. package/esm/modules/schema-types.d.ts +483 -101
  812. package/esm/modules/types.d.ts +82 -22
  813. package/esm/objects/hooks/index.d.ts +1 -1
  814. package/esm/objects/hooks/index.js +1 -1
  815. package/esm/objects/hooks/invalidation.d.ts +5 -5
  816. package/esm/objects/hooks/invalidation.js +10 -10
  817. package/esm/objects/hooks/mutation-keys.d.ts +10 -10
  818. package/esm/objects/hooks/mutation-keys.js +9 -6
  819. package/esm/objects/hooks/mutations/index.d.ts +1 -1
  820. package/esm/objects/hooks/mutations/index.js +1 -1
  821. package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  822. package/esm/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +31 -0
  823. package/esm/objects/hooks/queries/index.d.ts +1 -1
  824. package/esm/objects/hooks/queries/index.js +1 -1
  825. package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  826. package/esm/objects/hooks/queries/useGetAllTreeNodesQuery.js +32 -0
  827. package/esm/objects/hooks/query-keys.d.ts +12 -12
  828. package/esm/objects/hooks/query-keys.js +7 -7
  829. package/esm/objects/orm/index.d.ts +2 -2
  830. package/esm/objects/orm/index.js +2 -2
  831. package/esm/objects/orm/input-types.d.ts +15 -15
  832. package/esm/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  833. package/esm/objects/orm/models/{getAllRecord.js → getAllTreeNodesRecord.js} +13 -13
  834. package/esm/objects/orm/models/index.d.ts +1 -1
  835. package/esm/objects/orm/models/index.js +1 -1
  836. package/esm/objects/schema-types.d.ts +9 -9
  837. package/esm/objects/types.d.ts +1 -1
  838. package/infra/hooks/index.d.ts +1 -1
  839. package/infra/hooks/index.js +1 -1
  840. package/infra/hooks/invalidation.d.ts +30 -30
  841. package/infra/hooks/invalidation.js +63 -63
  842. package/infra/hooks/mutation-keys.d.ts +66 -66
  843. package/infra/hooks/mutation-keys.js +48 -45
  844. package/infra/hooks/mutations/index.d.ts +16 -16
  845. package/infra/hooks/mutations/index.js +16 -16
  846. package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.d.ts +34 -0
  847. package/infra/hooks/mutations/useCreatePlatformInfraCommitMutation.js +34 -0
  848. package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.d.ts +34 -0
  849. package/infra/hooks/mutations/useCreatePlatformInfraGetAllTreeNodesRecordMutation.js +34 -0
  850. package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.d.ts +34 -0
  851. package/infra/hooks/mutations/useCreatePlatformInfraObjectMutation.js +34 -0
  852. package/infra/hooks/mutations/useCreatePlatformInfraRefMutation.d.ts +34 -0
  853. package/{compute/hooks/mutations/useCreateInfraGetAllRecordMutation.js → infra/hooks/mutations/useCreatePlatformInfraRefMutation.js} +6 -6
  854. package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.d.ts +34 -0
  855. package/infra/hooks/mutations/useCreatePlatformInfraStoreMutation.js +34 -0
  856. package/infra/hooks/mutations/useDeletePlatformInfraCommitMutation.d.ts +40 -0
  857. package/infra/hooks/mutations/{useUpdateInfraCommitMutation.js → useDeletePlatformInfraCommitMutation.js} +8 -9
  858. package/infra/hooks/mutations/useDeletePlatformInfraObjectMutation.d.ts +40 -0
  859. package/infra/hooks/mutations/{useUpdateInfraObjectMutation.js → useDeletePlatformInfraObjectMutation.js} +8 -9
  860. package/infra/hooks/mutations/useDeletePlatformInfraRefMutation.d.ts +40 -0
  861. package/infra/hooks/mutations/{useUpdateInfraRefMutation.js → useDeletePlatformInfraRefMutation.js} +8 -9
  862. package/infra/hooks/mutations/useDeletePlatformInfraStoreMutation.d.ts +38 -0
  863. package/infra/hooks/mutations/{useUpdateInfraStoreMutation.js → useDeletePlatformInfraStoreMutation.js} +8 -9
  864. package/infra/hooks/mutations/usePlatformInfraInitEmptyRepoMutation.d.ts +20 -0
  865. package/infra/hooks/mutations/{useInfraInitEmptyRepoMutation.js → usePlatformInfraInitEmptyRepoMutation.js} +5 -5
  866. package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.d.ts +20 -0
  867. package/infra/hooks/mutations/usePlatformInfraInsertNodeAtPathMutation.js +26 -0
  868. package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.d.ts +20 -0
  869. package/infra/hooks/mutations/usePlatformInfraSetDataAtPathMutation.js +26 -0
  870. package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.d.ts +42 -0
  871. package/infra/hooks/mutations/useUpdatePlatformInfraCommitMutation.js +41 -0
  872. package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.d.ts +42 -0
  873. package/infra/hooks/mutations/useUpdatePlatformInfraObjectMutation.js +41 -0
  874. package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.d.ts +42 -0
  875. package/infra/hooks/mutations/useUpdatePlatformInfraRefMutation.js +41 -0
  876. package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.d.ts +40 -0
  877. package/infra/hooks/mutations/useUpdatePlatformInfraStoreMutation.js +40 -0
  878. package/infra/hooks/queries/index.d.ts +9 -9
  879. package/infra/hooks/queries/index.js +9 -9
  880. package/infra/hooks/queries/usePlatformInfraCommitQuery.d.ts +65 -0
  881. package/infra/hooks/queries/usePlatformInfraCommitQuery.js +53 -0
  882. package/infra/hooks/queries/usePlatformInfraCommitsQuery.d.ts +69 -0
  883. package/infra/hooks/queries/usePlatformInfraCommitsQuery.js +38 -0
  884. package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.d.ts +69 -0
  885. package/infra/hooks/queries/usePlatformInfraGetAllTreeNodesQuery.js +38 -0
  886. package/infra/hooks/queries/usePlatformInfraObjectQuery.d.ts +65 -0
  887. package/infra/hooks/queries/usePlatformInfraObjectQuery.js +53 -0
  888. package/infra/hooks/queries/usePlatformInfraObjectsQuery.d.ts +69 -0
  889. package/infra/hooks/queries/usePlatformInfraObjectsQuery.js +38 -0
  890. package/infra/hooks/queries/usePlatformInfraRefQuery.d.ts +65 -0
  891. package/infra/hooks/queries/usePlatformInfraRefQuery.js +53 -0
  892. package/infra/hooks/queries/usePlatformInfraRefsQuery.d.ts +69 -0
  893. package/infra/hooks/queries/usePlatformInfraRefsQuery.js +38 -0
  894. package/infra/hooks/queries/usePlatformInfraStoreQuery.d.ts +65 -0
  895. package/infra/hooks/queries/usePlatformInfraStoreQuery.js +53 -0
  896. package/infra/hooks/queries/usePlatformInfraStoresQuery.d.ts +69 -0
  897. package/infra/hooks/queries/usePlatformInfraStoresQuery.js +38 -0
  898. package/infra/hooks/query-keys.d.ts +70 -70
  899. package/infra/hooks/query-keys.js +43 -41
  900. package/infra/orm/index.d.ts +19 -19
  901. package/infra/orm/index.js +10 -10
  902. package/infra/orm/input-types.d.ts +542 -668
  903. package/infra/orm/models/index.d.ts +5 -5
  904. package/infra/orm/models/index.js +11 -11
  905. package/infra/orm/models/platformInfraCommit.d.ts +56 -0
  906. package/infra/orm/models/platformInfraCommit.js +107 -0
  907. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.d.ts +30 -0
  908. package/infra/orm/models/platformInfraGetAllTreeNodesRecord.js +59 -0
  909. package/infra/orm/models/platformInfraObject.d.ts +56 -0
  910. package/infra/orm/models/platformInfraObject.js +97 -0
  911. package/infra/orm/models/platformInfraRef.d.ts +56 -0
  912. package/infra/orm/models/platformInfraRef.js +107 -0
  913. package/infra/orm/models/platformInfraStore.d.ts +54 -0
  914. package/infra/orm/models/platformInfraStore.js +104 -0
  915. package/infra/orm/mutation/index.d.ts +16 -16
  916. package/infra/orm/mutation/index.js +18 -18
  917. package/infra/schema-types.d.ts +389 -473
  918. package/infra/types.d.ts +30 -44
  919. package/modules/hooks/index.d.ts +1 -1
  920. package/modules/hooks/index.js +1 -1
  921. package/modules/hooks/invalidation.d.ts +12 -0
  922. package/modules/hooks/invalidation.js +32 -0
  923. package/modules/hooks/mutation-keys.d.ts +24 -0
  924. package/modules/hooks/mutation-keys.js +16 -2
  925. package/modules/hooks/mutations/index.d.ts +6 -0
  926. package/modules/hooks/mutations/index.js +6 -0
  927. package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.d.ts +34 -0
  928. package/modules/hooks/mutations/useCreateHttpRouteModuleMutation.js +34 -0
  929. package/modules/hooks/mutations/useCreateWebhookModuleMutation.d.ts +34 -0
  930. package/{compute/hooks/mutations/useCreateGetAllRecordMutation.js → modules/hooks/mutations/useCreateWebhookModuleMutation.js} +6 -6
  931. package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.d.ts +38 -0
  932. package/modules/hooks/mutations/useDeleteHttpRouteModuleMutation.js +39 -0
  933. package/modules/hooks/mutations/useDeleteWebhookModuleMutation.d.ts +38 -0
  934. package/modules/hooks/mutations/useDeleteWebhookModuleMutation.js +39 -0
  935. package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.d.ts +40 -0
  936. package/modules/hooks/mutations/useUpdateHttpRouteModuleMutation.js +40 -0
  937. package/modules/hooks/mutations/useUpdateWebhookModuleMutation.d.ts +40 -0
  938. package/modules/hooks/mutations/useUpdateWebhookModuleMutation.js +40 -0
  939. package/modules/hooks/queries/index.d.ts +4 -0
  940. package/modules/hooks/queries/index.js +4 -0
  941. package/modules/hooks/queries/useHttpRouteModuleQuery.d.ts +65 -0
  942. package/modules/hooks/queries/useHttpRouteModuleQuery.js +53 -0
  943. package/modules/hooks/queries/useHttpRouteModulesQuery.d.ts +69 -0
  944. package/modules/hooks/queries/useHttpRouteModulesQuery.js +38 -0
  945. package/modules/hooks/queries/useWebhookModuleQuery.d.ts +65 -0
  946. package/{infra/hooks/queries/useInfraCommitQuery.js → modules/hooks/queries/useWebhookModuleQuery.js} +14 -14
  947. package/modules/hooks/queries/useWebhookModulesQuery.d.ts +69 -0
  948. package/{api/hooks/queries/useMigrateFilesQuery.js → modules/hooks/queries/useWebhookModulesQuery.js} +14 -14
  949. package/modules/hooks/query-keys.d.ts +28 -0
  950. package/modules/hooks/query-keys.js +18 -2
  951. package/modules/orm/index.d.ts +4 -0
  952. package/modules/orm/index.js +4 -0
  953. package/modules/orm/input-types.d.ts +802 -166
  954. package/modules/orm/models/httpRouteModule.d.ts +54 -0
  955. package/modules/orm/models/httpRouteModule.js +104 -0
  956. package/modules/orm/models/index.d.ts +2 -0
  957. package/modules/orm/models/index.js +6 -2
  958. package/modules/orm/models/webhookModule.d.ts +54 -0
  959. package/modules/orm/models/webhookModule.js +104 -0
  960. package/modules/schema-types.d.ts +483 -101
  961. package/modules/types.d.ts +82 -22
  962. package/objects/hooks/index.d.ts +1 -1
  963. package/objects/hooks/index.js +1 -1
  964. package/objects/hooks/invalidation.d.ts +5 -5
  965. package/objects/hooks/invalidation.js +9 -9
  966. package/objects/hooks/mutation-keys.d.ts +10 -10
  967. package/objects/hooks/mutation-keys.js +10 -7
  968. package/objects/hooks/mutations/index.d.ts +1 -1
  969. package/objects/hooks/mutations/index.js +1 -1
  970. package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.d.ts +34 -0
  971. package/objects/hooks/mutations/useCreateGetAllTreeNodesRecordMutation.js +34 -0
  972. package/objects/hooks/queries/index.d.ts +1 -1
  973. package/objects/hooks/queries/index.js +1 -1
  974. package/objects/hooks/queries/useGetAllTreeNodesQuery.d.ts +69 -0
  975. package/objects/hooks/queries/useGetAllTreeNodesQuery.js +38 -0
  976. package/objects/hooks/query-keys.d.ts +12 -12
  977. package/objects/hooks/query-keys.js +8 -8
  978. package/objects/orm/index.d.ts +2 -2
  979. package/objects/orm/index.js +2 -2
  980. package/objects/orm/input-types.d.ts +15 -15
  981. package/objects/orm/models/getAllTreeNodesRecord.d.ts +30 -0
  982. package/{infra/orm/models/infraGetAllRecord.js → objects/orm/models/getAllTreeNodesRecord.js} +15 -15
  983. package/objects/orm/models/index.d.ts +1 -1
  984. package/objects/orm/models/index.js +3 -3
  985. package/objects/schema-types.d.ts +9 -9
  986. package/objects/types.d.ts +1 -1
  987. package/package.json +5 -5
  988. package/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
  989. package/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
  990. package/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
  991. package/api/orm/models/migrateFile.d.ts +0 -36
  992. package/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  993. package/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  994. package/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
  995. package/compute/hooks/queries/useGetAllQuery.js +0 -38
  996. package/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  997. package/compute/hooks/queries/useInfraGetAllQuery.js +0 -38
  998. package/compute/orm/models/getAllRecord.d.ts +0 -30
  999. package/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  1000. package/esm/api/hooks/mutations/useCreateMigrateFileMutation.d.ts +0 -34
  1001. package/esm/api/hooks/queries/useMigrateFileQuery.d.ts +0 -65
  1002. package/esm/api/hooks/queries/useMigrateFilesQuery.d.ts +0 -69
  1003. package/esm/api/orm/models/migrateFile.d.ts +0 -36
  1004. package/esm/compute/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1005. package/esm/compute/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1006. package/esm/compute/hooks/queries/useGetAllQuery.d.ts +0 -69
  1007. package/esm/compute/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1008. package/esm/compute/orm/models/getAllRecord.d.ts +0 -30
  1009. package/esm/compute/orm/models/infraGetAllRecord.d.ts +0 -30
  1010. package/esm/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
  1011. package/esm/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1012. package/esm/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
  1013. package/esm/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
  1014. package/esm/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
  1015. package/esm/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
  1016. package/esm/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
  1017. package/esm/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
  1018. package/esm/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
  1019. package/esm/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
  1020. package/esm/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
  1021. package/esm/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
  1022. package/esm/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
  1023. package/esm/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
  1024. package/esm/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
  1025. package/esm/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1026. package/esm/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
  1027. package/esm/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
  1028. package/esm/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
  1029. package/esm/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
  1030. package/esm/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
  1031. package/esm/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
  1032. package/esm/infra/orm/models/infraCommit.d.ts +0 -56
  1033. package/esm/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  1034. package/esm/infra/orm/models/infraObject.d.ts +0 -56
  1035. package/esm/infra/orm/models/infraRef.d.ts +0 -56
  1036. package/esm/infra/orm/models/infraStore.d.ts +0 -54
  1037. package/esm/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1038. package/esm/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
  1039. package/esm/objects/orm/models/getAllRecord.d.ts +0 -30
  1040. package/infra/hooks/mutations/useCreateInfraCommitMutation.d.ts +0 -34
  1041. package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.d.ts +0 -34
  1042. package/infra/hooks/mutations/useCreateInfraGetAllRecordMutation.js +0 -34
  1043. package/infra/hooks/mutations/useCreateInfraObjectMutation.d.ts +0 -34
  1044. package/infra/hooks/mutations/useCreateInfraRefMutation.d.ts +0 -34
  1045. package/infra/hooks/mutations/useCreateInfraStoreMutation.d.ts +0 -34
  1046. package/infra/hooks/mutations/useDeleteInfraCommitMutation.d.ts +0 -40
  1047. package/infra/hooks/mutations/useInfraInitEmptyRepoMutation.d.ts +0 -20
  1048. package/infra/hooks/mutations/useInfraInsertNodeAtPathMutation.d.ts +0 -20
  1049. package/infra/hooks/mutations/useInfraSetDataAtPathMutation.d.ts +0 -20
  1050. package/infra/hooks/mutations/useUpdateInfraCommitMutation.d.ts +0 -42
  1051. package/infra/hooks/mutations/useUpdateInfraObjectMutation.d.ts +0 -42
  1052. package/infra/hooks/mutations/useUpdateInfraRefMutation.d.ts +0 -42
  1053. package/infra/hooks/mutations/useUpdateInfraStoreMutation.d.ts +0 -40
  1054. package/infra/hooks/queries/useInfraCommitQuery.d.ts +0 -65
  1055. package/infra/hooks/queries/useInfraCommitsQuery.d.ts +0 -69
  1056. package/infra/hooks/queries/useInfraGetAllQuery.d.ts +0 -69
  1057. package/infra/hooks/queries/useInfraGetAllQuery.js +0 -38
  1058. package/infra/hooks/queries/useInfraObjectQuery.d.ts +0 -65
  1059. package/infra/hooks/queries/useInfraObjectsQuery.d.ts +0 -69
  1060. package/infra/hooks/queries/useInfraRefQuery.d.ts +0 -65
  1061. package/infra/hooks/queries/useInfraRefsQuery.d.ts +0 -69
  1062. package/infra/hooks/queries/useInfraStoreQuery.d.ts +0 -65
  1063. package/infra/hooks/queries/useInfraStoresQuery.d.ts +0 -69
  1064. package/infra/orm/models/infraCommit.d.ts +0 -56
  1065. package/infra/orm/models/infraGetAllRecord.d.ts +0 -30
  1066. package/infra/orm/models/infraObject.d.ts +0 -56
  1067. package/infra/orm/models/infraRef.d.ts +0 -56
  1068. package/infra/orm/models/infraStore.d.ts +0 -54
  1069. package/objects/hooks/mutations/useCreateGetAllRecordMutation.d.ts +0 -34
  1070. package/objects/hooks/queries/useGetAllQuery.d.ts +0 -69
  1071. package/objects/hooks/queries/useGetAllQuery.js +0 -38
  1072. package/objects/orm/models/getAllRecord.d.ts +0 -30
@@ -9,6 +9,12 @@ export declare const dbPresetMutationKeys: {
9
9
  /** Update dbPreset mutation key */ readonly update: (id: string | number) => readonly ["mutation", "dbpreset", "update", string | number];
10
10
  /** Delete dbPreset mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "dbpreset", "delete", string | number];
11
11
  };
12
+ export declare const declaredCapacityMutationKeys: {
13
+ /** All declaredCapacity mutation keys */ readonly all: readonly ["mutation", "declaredcapacity"];
14
+ /** Create declaredCapacity mutation key */ readonly create: () => readonly ["mutation", "declaredcapacity", "create"];
15
+ /** Update declaredCapacity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "declaredcapacity", "update", string | number];
16
+ /** Delete declaredCapacity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "declaredcapacity", "delete", string | number];
17
+ };
12
18
  export declare const functionApiBindingMutationKeys: {
13
19
  /** All functionApiBinding mutation keys */ readonly all: readonly ["mutation", "functionapibinding"];
14
20
  /** Create functionApiBinding mutation key */ readonly create: () => readonly ["mutation", "functionapibinding", "create"];
@@ -93,11 +99,11 @@ export declare const functionInvocationMutationKeys: {
93
99
  /** Update functionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functioninvocation", "update", string | number];
94
100
  /** Delete functionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functioninvocation", "delete", string | number];
95
101
  };
96
- export declare const getAllRecordMutationKeys: {
97
- /** All getAllRecord mutation keys */ readonly all: readonly ["mutation", "getallrecord"];
98
- /** Create getAllRecord mutation key */ readonly create: () => readonly ["mutation", "getallrecord", "create"];
99
- /** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
100
- /** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
102
+ export declare const getAllTreeNodesRecordMutationKeys: {
103
+ /** All getAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "getalltreenodesrecord"];
104
+ /** Create getAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "getalltreenodesrecord", "create"];
105
+ /** Update getAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getalltreenodesrecord", "update", string | number];
106
+ /** Delete getAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getalltreenodesrecord", "delete", string | number];
101
107
  };
102
108
  export declare const infraCommitMutationKeys: {
103
109
  /** All infraCommit mutation keys */ readonly all: readonly ["mutation", "infracommit"];
@@ -105,11 +111,11 @@ export declare const infraCommitMutationKeys: {
105
111
  /** Update infraCommit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infracommit", "update", string | number];
106
112
  /** Delete infraCommit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infracommit", "delete", string | number];
107
113
  };
108
- export declare const infraGetAllRecordMutationKeys: {
109
- /** All infraGetAllRecord mutation keys */ readonly all: readonly ["mutation", "infragetallrecord"];
110
- /** Create infraGetAllRecord mutation key */ readonly create: () => readonly ["mutation", "infragetallrecord", "create"];
111
- /** Update infraGetAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infragetallrecord", "update", string | number];
112
- /** Delete infraGetAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infragetallrecord", "delete", string | number];
114
+ export declare const infraGetAllTreeNodesRecordMutationKeys: {
115
+ /** All infraGetAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "infragetalltreenodesrecord"];
116
+ /** Create infraGetAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "infragetalltreenodesrecord", "create"];
117
+ /** Update infraGetAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infragetalltreenodesrecord", "update", string | number];
118
+ /** Delete infraGetAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infragetalltreenodesrecord", "delete", string | number];
113
119
  };
114
120
  export declare const infraObjectMutationKeys: {
115
121
  /** All infraObject mutation keys */ readonly all: readonly ["mutation", "infraobject"];
@@ -147,6 +153,12 @@ export declare const namespaceEventMutationKeys: {
147
153
  /** Update namespaceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "namespaceevent", "update", string | number];
148
154
  /** Delete namespaceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "namespaceevent", "delete", string | number];
149
155
  };
156
+ export declare const platformDeclaredCapacityMutationKeys: {
157
+ /** All platformDeclaredCapacity mutation keys */ readonly all: readonly ["mutation", "platformdeclaredcapacity"];
158
+ /** Create platformDeclaredCapacity mutation key */ readonly create: () => readonly ["mutation", "platformdeclaredcapacity", "create"];
159
+ /** Update platformDeclaredCapacity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformdeclaredcapacity", "update", string | number];
160
+ /** Delete platformDeclaredCapacity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformdeclaredcapacity", "delete", string | number];
161
+ };
150
162
  export declare const platformFunctionApiBindingMutationKeys: {
151
163
  /** All platformFunctionApiBinding mutation keys */ readonly all: readonly ["mutation", "platformfunctionapibinding"];
152
164
  /** Create platformFunctionApiBinding mutation key */ readonly create: () => readonly ["mutation", "platformfunctionapibinding", "create"];
@@ -183,6 +195,36 @@ export declare const platformFunctionInvocationMutationKeys: {
183
195
  /** Update platformFunctionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformfunctioninvocation", "update", string | number];
184
196
  /** Delete platformFunctionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformfunctioninvocation", "delete", string | number];
185
197
  };
198
+ export declare const platformInfraCommitMutationKeys: {
199
+ /** All platformInfraCommit mutation keys */ readonly all: readonly ["mutation", "platforminfracommit"];
200
+ /** Create platformInfraCommit mutation key */ readonly create: () => readonly ["mutation", "platforminfracommit", "create"];
201
+ /** Update platformInfraCommit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfracommit", "update", string | number];
202
+ /** Delete platformInfraCommit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfracommit", "delete", string | number];
203
+ };
204
+ export declare const platformInfraGetAllTreeNodesRecordMutationKeys: {
205
+ /** All platformInfraGetAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "platforminfragetalltreenodesrecord"];
206
+ /** Create platformInfraGetAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "platforminfragetalltreenodesrecord", "create"];
207
+ /** Update platformInfraGetAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfragetalltreenodesrecord", "update", string | number];
208
+ /** Delete platformInfraGetAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfragetalltreenodesrecord", "delete", string | number];
209
+ };
210
+ export declare const platformInfraObjectMutationKeys: {
211
+ /** All platformInfraObject mutation keys */ readonly all: readonly ["mutation", "platforminfraobject"];
212
+ /** Create platformInfraObject mutation key */ readonly create: () => readonly ["mutation", "platforminfraobject", "create"];
213
+ /** Update platformInfraObject mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfraobject", "update", string | number];
214
+ /** Delete platformInfraObject mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfraobject", "delete", string | number];
215
+ };
216
+ export declare const platformInfraRefMutationKeys: {
217
+ /** All platformInfraRef mutation keys */ readonly all: readonly ["mutation", "platforminfraref"];
218
+ /** Create platformInfraRef mutation key */ readonly create: () => readonly ["mutation", "platforminfraref", "create"];
219
+ /** Update platformInfraRef mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfraref", "update", string | number];
220
+ /** Delete platformInfraRef mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfraref", "delete", string | number];
221
+ };
222
+ export declare const platformInfraStoreMutationKeys: {
223
+ /** All platformInfraStore mutation keys */ readonly all: readonly ["mutation", "platforminfrastore"];
224
+ /** Create platformInfraStore mutation key */ readonly create: () => readonly ["mutation", "platforminfrastore", "create"];
225
+ /** Update platformInfraStore mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfrastore", "update", string | number];
226
+ /** Delete platformInfraStore mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfrastore", "delete", string | number];
227
+ };
186
228
  export declare const platformNamespaceMutationKeys: {
187
229
  /** All platformNamespace mutation keys */ readonly all: readonly ["mutation", "platformnamespace"];
188
230
  /** Create platformNamespace mutation key */ readonly create: () => readonly ["mutation", "platformnamespace", "create"];
@@ -213,12 +255,42 @@ export declare const platformResourceEventMutationKeys: {
213
255
  /** Update platformResourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceevent", "update", string | number];
214
256
  /** Delete platformResourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceevent", "delete", string | number];
215
257
  };
258
+ export declare const platformResourceInstallationMutationKeys: {
259
+ /** All platformResourceInstallation mutation keys */ readonly all: readonly ["mutation", "platformresourceinstallation"];
260
+ /** Create platformResourceInstallation mutation key */ readonly create: () => readonly ["mutation", "platformresourceinstallation", "create"];
261
+ /** Update platformResourceInstallation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceinstallation", "update", string | number];
262
+ /** Delete platformResourceInstallation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceinstallation", "delete", string | number];
263
+ };
216
264
  export declare const platformResourceStatusCheckMutationKeys: {
217
265
  /** All platformResourceStatusCheck mutation keys */ readonly all: readonly ["mutation", "platformresourcestatuscheck"];
218
266
  /** Create platformResourceStatusCheck mutation key */ readonly create: () => readonly ["mutation", "platformresourcestatuscheck", "create"];
219
267
  /** Update platformResourceStatusCheck mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourcestatuscheck", "update", string | number];
220
268
  /** Delete platformResourceStatusCheck mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourcestatuscheck", "delete", string | number];
221
269
  };
270
+ export declare const platformResourceUsageLogMutationKeys: {
271
+ /** All platformResourceUsageLog mutation keys */ readonly all: readonly ["mutation", "platformresourceusagelog"];
272
+ /** Create platformResourceUsageLog mutation key */ readonly create: () => readonly ["mutation", "platformresourceusagelog", "create"];
273
+ /** Update platformResourceUsageLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceusagelog", "update", string | number];
274
+ /** Delete platformResourceUsageLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceusagelog", "delete", string | number];
275
+ };
276
+ export declare const platformResourceUsageSummaryMutationKeys: {
277
+ /** All platformResourceUsageSummary mutation keys */ readonly all: readonly ["mutation", "platformresourceusagesummary"];
278
+ /** Create platformResourceUsageSummary mutation key */ readonly create: () => readonly ["mutation", "platformresourceusagesummary", "create"];
279
+ /** Update platformResourceUsageSummary mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceusagesummary", "update", string | number];
280
+ /** Delete platformResourceUsageSummary mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceusagesummary", "delete", string | number];
281
+ };
282
+ export declare const platformResourceUtilizationDailyMutationKeys: {
283
+ /** All platformResourceUtilizationDaily mutation keys */ readonly all: readonly ["mutation", "platformresourceutilizationdaily"];
284
+ /** Create platformResourceUtilizationDaily mutation key */ readonly create: () => readonly ["mutation", "platformresourceutilizationdaily", "create"];
285
+ /** Update platformResourceUtilizationDaily mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceutilizationdaily", "update", string | number];
286
+ /** Delete platformResourceUtilizationDaily mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceutilizationdaily", "delete", string | number];
287
+ };
288
+ export declare const platformResourcesHealthMutationKeys: {
289
+ /** All platformResourcesHealth mutation keys */ readonly all: readonly ["mutation", "platformresourceshealth"];
290
+ /** Create platformResourcesHealth mutation key */ readonly create: () => readonly ["mutation", "platformresourceshealth", "create"];
291
+ /** Update platformResourcesHealth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceshealth", "update", string | number];
292
+ /** Delete platformResourcesHealth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceshealth", "delete", string | number];
293
+ };
222
294
  export declare const platformResourcesRequirementsStateMutationKeys: {
223
295
  /** All platformResourcesRequirementsState mutation keys */ readonly all: readonly ["mutation", "platformresourcesrequirementsstate"];
224
296
  /** Create platformResourcesRequirementsState mutation key */ readonly create: () => readonly ["mutation", "platformresourcesrequirementsstate", "create"];
@@ -231,6 +303,18 @@ export declare const platformResourcesResolvedRequirementMutationKeys: {
231
303
  /** Update platformResourcesResolvedRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourcesresolvedrequirement", "update", string | number];
232
304
  /** Delete platformResourcesResolvedRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourcesresolvedrequirement", "delete", string | number];
233
305
  };
306
+ export declare const platformWebhookEndpointMutationKeys: {
307
+ /** All platformWebhookEndpoint mutation keys */ readonly all: readonly ["mutation", "platformwebhookendpoint"];
308
+ /** Create platformWebhookEndpoint mutation key */ readonly create: () => readonly ["mutation", "platformwebhookendpoint", "create"];
309
+ /** Update platformWebhookEndpoint mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformwebhookendpoint", "update", string | number];
310
+ /** Delete platformWebhookEndpoint mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformwebhookendpoint", "delete", string | number];
311
+ };
312
+ export declare const platformWebhookEventMutationKeys: {
313
+ /** All platformWebhookEvent mutation keys */ readonly all: readonly ["mutation", "platformwebhookevent"];
314
+ /** Create platformWebhookEvent mutation key */ readonly create: () => readonly ["mutation", "platformwebhookevent", "create"];
315
+ /** Update platformWebhookEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformwebhookevent", "update", string | number];
316
+ /** Delete platformWebhookEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformwebhookevent", "delete", string | number];
317
+ };
234
318
  export declare const resourceMutationKeys: {
235
319
  /** All resource mutation keys */ readonly all: readonly ["mutation", "resource"];
236
320
  /** Create resource mutation key */ readonly create: () => readonly ["mutation", "resource", "create"];
@@ -249,12 +333,42 @@ export declare const resourceEventMutationKeys: {
249
333
  /** Update resourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceevent", "update", string | number];
250
334
  /** Delete resourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceevent", "delete", string | number];
251
335
  };
336
+ export declare const resourceInstallationMutationKeys: {
337
+ /** All resourceInstallation mutation keys */ readonly all: readonly ["mutation", "resourceinstallation"];
338
+ /** Create resourceInstallation mutation key */ readonly create: () => readonly ["mutation", "resourceinstallation", "create"];
339
+ /** Update resourceInstallation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceinstallation", "update", string | number];
340
+ /** Delete resourceInstallation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceinstallation", "delete", string | number];
341
+ };
252
342
  export declare const resourceStatusCheckMutationKeys: {
253
343
  /** All resourceStatusCheck mutation keys */ readonly all: readonly ["mutation", "resourcestatuscheck"];
254
344
  /** Create resourceStatusCheck mutation key */ readonly create: () => readonly ["mutation", "resourcestatuscheck", "create"];
255
345
  /** Update resourceStatusCheck mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourcestatuscheck", "update", string | number];
256
346
  /** Delete resourceStatusCheck mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourcestatuscheck", "delete", string | number];
257
347
  };
348
+ export declare const resourceUsageLogMutationKeys: {
349
+ /** All resourceUsageLog mutation keys */ readonly all: readonly ["mutation", "resourceusagelog"];
350
+ /** Create resourceUsageLog mutation key */ readonly create: () => readonly ["mutation", "resourceusagelog", "create"];
351
+ /** Update resourceUsageLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceusagelog", "update", string | number];
352
+ /** Delete resourceUsageLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceusagelog", "delete", string | number];
353
+ };
354
+ export declare const resourceUsageSummaryMutationKeys: {
355
+ /** All resourceUsageSummary mutation keys */ readonly all: readonly ["mutation", "resourceusagesummary"];
356
+ /** Create resourceUsageSummary mutation key */ readonly create: () => readonly ["mutation", "resourceusagesummary", "create"];
357
+ /** Update resourceUsageSummary mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceusagesummary", "update", string | number];
358
+ /** Delete resourceUsageSummary mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceusagesummary", "delete", string | number];
359
+ };
360
+ export declare const resourceUtilizationDailyMutationKeys: {
361
+ /** All resourceUtilizationDaily mutation keys */ readonly all: readonly ["mutation", "resourceutilizationdaily"];
362
+ /** Create resourceUtilizationDaily mutation key */ readonly create: () => readonly ["mutation", "resourceutilizationdaily", "create"];
363
+ /** Update resourceUtilizationDaily mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceutilizationdaily", "update", string | number];
364
+ /** Delete resourceUtilizationDaily mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceutilizationdaily", "delete", string | number];
365
+ };
366
+ export declare const resourcesHealthMutationKeys: {
367
+ /** All resourcesHealth mutation keys */ readonly all: readonly ["mutation", "resourceshealth"];
368
+ /** Create resourcesHealth mutation key */ readonly create: () => readonly ["mutation", "resourceshealth", "create"];
369
+ /** Update resourcesHealth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceshealth", "update", string | number];
370
+ /** Delete resourcesHealth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceshealth", "delete", string | number];
371
+ };
258
372
  export declare const resourcesRequirementsStateMutationKeys: {
259
373
  /** All resourcesRequirementsState mutation keys */ readonly all: readonly ["mutation", "resourcesrequirementsstate"];
260
374
  /** Create resourcesRequirementsState mutation key */ readonly create: () => readonly ["mutation", "resourcesrequirementsstate", "create"];
@@ -267,6 +381,18 @@ export declare const resourcesResolvedRequirementMutationKeys: {
267
381
  /** Update resourcesResolvedRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourcesresolvedrequirement", "update", string | number];
268
382
  /** Delete resourcesResolvedRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourcesresolvedrequirement", "delete", string | number];
269
383
  };
384
+ export declare const webhookEndpointMutationKeys: {
385
+ /** All webhookEndpoint mutation keys */ readonly all: readonly ["mutation", "webhookendpoint"];
386
+ /** Create webhookEndpoint mutation key */ readonly create: () => readonly ["mutation", "webhookendpoint", "create"];
387
+ /** Update webhookEndpoint mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webhookendpoint", "update", string | number];
388
+ /** Delete webhookEndpoint mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webhookendpoint", "delete", string | number];
389
+ };
390
+ export declare const webhookEventMutationKeys: {
391
+ /** All webhookEvent mutation keys */ readonly all: readonly ["mutation", "webhookevent"];
392
+ /** Create webhookEvent mutation key */ readonly create: () => readonly ["mutation", "webhookevent", "create"];
393
+ /** Update webhookEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webhookevent", "update", string | number];
394
+ /** Delete webhookEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webhookevent", "delete", string | number];
395
+ };
270
396
  export declare const customMutationKeys: {
271
397
  /** Mutation key for addEdge */ readonly addEdge: (identifier?: string) => readonly ["mutation", "addEdge", string] | readonly ["mutation", "addEdge"];
272
398
  /** Mutation key for addEdgeAndSave */ readonly addEdgeAndSave: (identifier?: string) => readonly ["mutation", "addEdgeAndSave", string] | readonly ["mutation", "addEdgeAndSave"];
@@ -280,7 +406,18 @@ export declare const customMutationKeys: {
280
406
  /** Mutation key for infraSetDataAtPath */ readonly infraSetDataAtPath: (identifier?: string) => readonly ["mutation", "infraSetDataAtPath", string] | readonly ["mutation", "infraSetDataAtPath"];
281
407
  /** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
282
408
  /** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
409
+ /** Mutation key for platformInfraInitEmptyRepo */ readonly platformInfraInitEmptyRepo: (identifier?: string) => readonly ["mutation", "platformInfraInitEmptyRepo", string] | readonly ["mutation", "platformInfraInitEmptyRepo"];
410
+ /** Mutation key for platformInfraInsertNodeAtPath */ readonly platformInfraInsertNodeAtPath: (identifier?: string) => readonly ["mutation", "platformInfraInsertNodeAtPath", string] | readonly ["mutation", "platformInfraInsertNodeAtPath"];
411
+ /** Mutation key for platformInfraSetDataAtPath */ readonly platformInfraSetDataAtPath: (identifier?: string) => readonly ["mutation", "platformInfraSetDataAtPath", string] | readonly ["mutation", "platformInfraSetDataAtPath"];
412
+ /** Mutation key for platformResourceInstallationsInstall */ readonly platformResourceInstallationsInstall: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsInstall", string] | readonly ["mutation", "platformResourceInstallationsInstall"];
413
+ /** Mutation key for platformResourceInstallationsRollback */ readonly platformResourceInstallationsRollback: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsRollback", string] | readonly ["mutation", "platformResourceInstallationsRollback"];
414
+ /** Mutation key for platformResourceInstallationsUninstall */ readonly platformResourceInstallationsUninstall: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsUninstall", string] | readonly ["mutation", "platformResourceInstallationsUninstall"];
415
+ /** Mutation key for platformResourceInstallationsUpgrade */ readonly platformResourceInstallationsUpgrade: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsUpgrade", string] | readonly ["mutation", "platformResourceInstallationsUpgrade"];
283
416
  /** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
417
+ /** Mutation key for resourceInstallationsInstall */ readonly resourceInstallationsInstall: (identifier?: string) => readonly ["mutation", "resourceInstallationsInstall", string] | readonly ["mutation", "resourceInstallationsInstall"];
418
+ /** Mutation key for resourceInstallationsRollback */ readonly resourceInstallationsRollback: (identifier?: string) => readonly ["mutation", "resourceInstallationsRollback", string] | readonly ["mutation", "resourceInstallationsRollback"];
419
+ /** Mutation key for resourceInstallationsUninstall */ readonly resourceInstallationsUninstall: (identifier?: string) => readonly ["mutation", "resourceInstallationsUninstall", string] | readonly ["mutation", "resourceInstallationsUninstall"];
420
+ /** Mutation key for resourceInstallationsUpgrade */ readonly resourceInstallationsUpgrade: (identifier?: string) => readonly ["mutation", "resourceInstallationsUpgrade", string] | readonly ["mutation", "resourceInstallationsUpgrade"];
284
421
  /** Mutation key for saveGraph */ readonly saveGraph: (identifier?: string) => readonly ["mutation", "saveGraph", string] | readonly ["mutation", "saveGraph"];
285
422
  /** Mutation key for setDataAtPath */ readonly setDataAtPath: (identifier?: string) => readonly ["mutation", "setDataAtPath", string] | readonly ["mutation", "setDataAtPath"];
286
423
  /** Mutation key for startExecution */ readonly startExecution: (identifier?: string) => readonly ["mutation", "startExecution", string] | readonly ["mutation", "startExecution"];
@@ -315,6 +452,12 @@ export declare const mutationKeys: {
315
452
  /** Update dbPreset mutation key */ readonly update: (id: string | number) => readonly ["mutation", "dbpreset", "update", string | number];
316
453
  /** Delete dbPreset mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "dbpreset", "delete", string | number];
317
454
  };
455
+ readonly declaredCapacity: {
456
+ /** All declaredCapacity mutation keys */ readonly all: readonly ["mutation", "declaredcapacity"];
457
+ /** Create declaredCapacity mutation key */ readonly create: () => readonly ["mutation", "declaredcapacity", "create"];
458
+ /** Update declaredCapacity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "declaredcapacity", "update", string | number];
459
+ /** Delete declaredCapacity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "declaredcapacity", "delete", string | number];
460
+ };
318
461
  readonly functionApiBinding: {
319
462
  /** All functionApiBinding mutation keys */ readonly all: readonly ["mutation", "functionapibinding"];
320
463
  /** Create functionApiBinding mutation key */ readonly create: () => readonly ["mutation", "functionapibinding", "create"];
@@ -399,11 +542,11 @@ export declare const mutationKeys: {
399
542
  /** Update functionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "functioninvocation", "update", string | number];
400
543
  /** Delete functionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "functioninvocation", "delete", string | number];
401
544
  };
402
- readonly getAllRecord: {
403
- /** All getAllRecord mutation keys */ readonly all: readonly ["mutation", "getallrecord"];
404
- /** Create getAllRecord mutation key */ readonly create: () => readonly ["mutation", "getallrecord", "create"];
405
- /** Update getAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getallrecord", "update", string | number];
406
- /** Delete getAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getallrecord", "delete", string | number];
545
+ readonly getAllTreeNodesRecord: {
546
+ /** All getAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "getalltreenodesrecord"];
547
+ /** Create getAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "getalltreenodesrecord", "create"];
548
+ /** Update getAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "getalltreenodesrecord", "update", string | number];
549
+ /** Delete getAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "getalltreenodesrecord", "delete", string | number];
407
550
  };
408
551
  readonly infraCommit: {
409
552
  /** All infraCommit mutation keys */ readonly all: readonly ["mutation", "infracommit"];
@@ -411,11 +554,11 @@ export declare const mutationKeys: {
411
554
  /** Update infraCommit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infracommit", "update", string | number];
412
555
  /** Delete infraCommit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infracommit", "delete", string | number];
413
556
  };
414
- readonly infraGetAllRecord: {
415
- /** All infraGetAllRecord mutation keys */ readonly all: readonly ["mutation", "infragetallrecord"];
416
- /** Create infraGetAllRecord mutation key */ readonly create: () => readonly ["mutation", "infragetallrecord", "create"];
417
- /** Update infraGetAllRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infragetallrecord", "update", string | number];
418
- /** Delete infraGetAllRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infragetallrecord", "delete", string | number];
557
+ readonly infraGetAllTreeNodesRecord: {
558
+ /** All infraGetAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "infragetalltreenodesrecord"];
559
+ /** Create infraGetAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "infragetalltreenodesrecord", "create"];
560
+ /** Update infraGetAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "infragetalltreenodesrecord", "update", string | number];
561
+ /** Delete infraGetAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "infragetalltreenodesrecord", "delete", string | number];
419
562
  };
420
563
  readonly infraObject: {
421
564
  /** All infraObject mutation keys */ readonly all: readonly ["mutation", "infraobject"];
@@ -453,6 +596,12 @@ export declare const mutationKeys: {
453
596
  /** Update namespaceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "namespaceevent", "update", string | number];
454
597
  /** Delete namespaceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "namespaceevent", "delete", string | number];
455
598
  };
599
+ readonly platformDeclaredCapacity: {
600
+ /** All platformDeclaredCapacity mutation keys */ readonly all: readonly ["mutation", "platformdeclaredcapacity"];
601
+ /** Create platformDeclaredCapacity mutation key */ readonly create: () => readonly ["mutation", "platformdeclaredcapacity", "create"];
602
+ /** Update platformDeclaredCapacity mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformdeclaredcapacity", "update", string | number];
603
+ /** Delete platformDeclaredCapacity mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformdeclaredcapacity", "delete", string | number];
604
+ };
456
605
  readonly platformFunctionApiBinding: {
457
606
  /** All platformFunctionApiBinding mutation keys */ readonly all: readonly ["mutation", "platformfunctionapibinding"];
458
607
  /** Create platformFunctionApiBinding mutation key */ readonly create: () => readonly ["mutation", "platformfunctionapibinding", "create"];
@@ -489,6 +638,36 @@ export declare const mutationKeys: {
489
638
  /** Update platformFunctionInvocation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformfunctioninvocation", "update", string | number];
490
639
  /** Delete platformFunctionInvocation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformfunctioninvocation", "delete", string | number];
491
640
  };
641
+ readonly platformInfraCommit: {
642
+ /** All platformInfraCommit mutation keys */ readonly all: readonly ["mutation", "platforminfracommit"];
643
+ /** Create platformInfraCommit mutation key */ readonly create: () => readonly ["mutation", "platforminfracommit", "create"];
644
+ /** Update platformInfraCommit mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfracommit", "update", string | number];
645
+ /** Delete platformInfraCommit mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfracommit", "delete", string | number];
646
+ };
647
+ readonly platformInfraGetAllTreeNodesRecord: {
648
+ /** All platformInfraGetAllTreeNodesRecord mutation keys */ readonly all: readonly ["mutation", "platforminfragetalltreenodesrecord"];
649
+ /** Create platformInfraGetAllTreeNodesRecord mutation key */ readonly create: () => readonly ["mutation", "platforminfragetalltreenodesrecord", "create"];
650
+ /** Update platformInfraGetAllTreeNodesRecord mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfragetalltreenodesrecord", "update", string | number];
651
+ /** Delete platformInfraGetAllTreeNodesRecord mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfragetalltreenodesrecord", "delete", string | number];
652
+ };
653
+ readonly platformInfraObject: {
654
+ /** All platformInfraObject mutation keys */ readonly all: readonly ["mutation", "platforminfraobject"];
655
+ /** Create platformInfraObject mutation key */ readonly create: () => readonly ["mutation", "platforminfraobject", "create"];
656
+ /** Update platformInfraObject mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfraobject", "update", string | number];
657
+ /** Delete platformInfraObject mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfraobject", "delete", string | number];
658
+ };
659
+ readonly platformInfraRef: {
660
+ /** All platformInfraRef mutation keys */ readonly all: readonly ["mutation", "platforminfraref"];
661
+ /** Create platformInfraRef mutation key */ readonly create: () => readonly ["mutation", "platforminfraref", "create"];
662
+ /** Update platformInfraRef mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfraref", "update", string | number];
663
+ /** Delete platformInfraRef mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfraref", "delete", string | number];
664
+ };
665
+ readonly platformInfraStore: {
666
+ /** All platformInfraStore mutation keys */ readonly all: readonly ["mutation", "platforminfrastore"];
667
+ /** Create platformInfraStore mutation key */ readonly create: () => readonly ["mutation", "platforminfrastore", "create"];
668
+ /** Update platformInfraStore mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platforminfrastore", "update", string | number];
669
+ /** Delete platformInfraStore mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platforminfrastore", "delete", string | number];
670
+ };
492
671
  readonly platformNamespace: {
493
672
  /** All platformNamespace mutation keys */ readonly all: readonly ["mutation", "platformnamespace"];
494
673
  /** Create platformNamespace mutation key */ readonly create: () => readonly ["mutation", "platformnamespace", "create"];
@@ -519,12 +698,42 @@ export declare const mutationKeys: {
519
698
  /** Update platformResourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceevent", "update", string | number];
520
699
  /** Delete platformResourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceevent", "delete", string | number];
521
700
  };
701
+ readonly platformResourceInstallation: {
702
+ /** All platformResourceInstallation mutation keys */ readonly all: readonly ["mutation", "platformresourceinstallation"];
703
+ /** Create platformResourceInstallation mutation key */ readonly create: () => readonly ["mutation", "platformresourceinstallation", "create"];
704
+ /** Update platformResourceInstallation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceinstallation", "update", string | number];
705
+ /** Delete platformResourceInstallation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceinstallation", "delete", string | number];
706
+ };
522
707
  readonly platformResourceStatusCheck: {
523
708
  /** All platformResourceStatusCheck mutation keys */ readonly all: readonly ["mutation", "platformresourcestatuscheck"];
524
709
  /** Create platformResourceStatusCheck mutation key */ readonly create: () => readonly ["mutation", "platformresourcestatuscheck", "create"];
525
710
  /** Update platformResourceStatusCheck mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourcestatuscheck", "update", string | number];
526
711
  /** Delete platformResourceStatusCheck mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourcestatuscheck", "delete", string | number];
527
712
  };
713
+ readonly platformResourceUsageLog: {
714
+ /** All platformResourceUsageLog mutation keys */ readonly all: readonly ["mutation", "platformresourceusagelog"];
715
+ /** Create platformResourceUsageLog mutation key */ readonly create: () => readonly ["mutation", "platformresourceusagelog", "create"];
716
+ /** Update platformResourceUsageLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceusagelog", "update", string | number];
717
+ /** Delete platformResourceUsageLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceusagelog", "delete", string | number];
718
+ };
719
+ readonly platformResourceUsageSummary: {
720
+ /** All platformResourceUsageSummary mutation keys */ readonly all: readonly ["mutation", "platformresourceusagesummary"];
721
+ /** Create platformResourceUsageSummary mutation key */ readonly create: () => readonly ["mutation", "platformresourceusagesummary", "create"];
722
+ /** Update platformResourceUsageSummary mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceusagesummary", "update", string | number];
723
+ /** Delete platformResourceUsageSummary mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceusagesummary", "delete", string | number];
724
+ };
725
+ readonly platformResourceUtilizationDaily: {
726
+ /** All platformResourceUtilizationDaily mutation keys */ readonly all: readonly ["mutation", "platformresourceutilizationdaily"];
727
+ /** Create platformResourceUtilizationDaily mutation key */ readonly create: () => readonly ["mutation", "platformresourceutilizationdaily", "create"];
728
+ /** Update platformResourceUtilizationDaily mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceutilizationdaily", "update", string | number];
729
+ /** Delete platformResourceUtilizationDaily mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceutilizationdaily", "delete", string | number];
730
+ };
731
+ readonly platformResourcesHealth: {
732
+ /** All platformResourcesHealth mutation keys */ readonly all: readonly ["mutation", "platformresourceshealth"];
733
+ /** Create platformResourcesHealth mutation key */ readonly create: () => readonly ["mutation", "platformresourceshealth", "create"];
734
+ /** Update platformResourcesHealth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourceshealth", "update", string | number];
735
+ /** Delete platformResourcesHealth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourceshealth", "delete", string | number];
736
+ };
528
737
  readonly platformResourcesRequirementsState: {
529
738
  /** All platformResourcesRequirementsState mutation keys */ readonly all: readonly ["mutation", "platformresourcesrequirementsstate"];
530
739
  /** Create platformResourcesRequirementsState mutation key */ readonly create: () => readonly ["mutation", "platformresourcesrequirementsstate", "create"];
@@ -537,6 +746,18 @@ export declare const mutationKeys: {
537
746
  /** Update platformResourcesResolvedRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformresourcesresolvedrequirement", "update", string | number];
538
747
  /** Delete platformResourcesResolvedRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformresourcesresolvedrequirement", "delete", string | number];
539
748
  };
749
+ readonly platformWebhookEndpoint: {
750
+ /** All platformWebhookEndpoint mutation keys */ readonly all: readonly ["mutation", "platformwebhookendpoint"];
751
+ /** Create platformWebhookEndpoint mutation key */ readonly create: () => readonly ["mutation", "platformwebhookendpoint", "create"];
752
+ /** Update platformWebhookEndpoint mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformwebhookendpoint", "update", string | number];
753
+ /** Delete platformWebhookEndpoint mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformwebhookendpoint", "delete", string | number];
754
+ };
755
+ readonly platformWebhookEvent: {
756
+ /** All platformWebhookEvent mutation keys */ readonly all: readonly ["mutation", "platformwebhookevent"];
757
+ /** Create platformWebhookEvent mutation key */ readonly create: () => readonly ["mutation", "platformwebhookevent", "create"];
758
+ /** Update platformWebhookEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "platformwebhookevent", "update", string | number];
759
+ /** Delete platformWebhookEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "platformwebhookevent", "delete", string | number];
760
+ };
540
761
  readonly resource: {
541
762
  /** All resource mutation keys */ readonly all: readonly ["mutation", "resource"];
542
763
  /** Create resource mutation key */ readonly create: () => readonly ["mutation", "resource", "create"];
@@ -555,12 +776,42 @@ export declare const mutationKeys: {
555
776
  /** Update resourceEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceevent", "update", string | number];
556
777
  /** Delete resourceEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceevent", "delete", string | number];
557
778
  };
779
+ readonly resourceInstallation: {
780
+ /** All resourceInstallation mutation keys */ readonly all: readonly ["mutation", "resourceinstallation"];
781
+ /** Create resourceInstallation mutation key */ readonly create: () => readonly ["mutation", "resourceinstallation", "create"];
782
+ /** Update resourceInstallation mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceinstallation", "update", string | number];
783
+ /** Delete resourceInstallation mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceinstallation", "delete", string | number];
784
+ };
558
785
  readonly resourceStatusCheck: {
559
786
  /** All resourceStatusCheck mutation keys */ readonly all: readonly ["mutation", "resourcestatuscheck"];
560
787
  /** Create resourceStatusCheck mutation key */ readonly create: () => readonly ["mutation", "resourcestatuscheck", "create"];
561
788
  /** Update resourceStatusCheck mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourcestatuscheck", "update", string | number];
562
789
  /** Delete resourceStatusCheck mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourcestatuscheck", "delete", string | number];
563
790
  };
791
+ readonly resourceUsageLog: {
792
+ /** All resourceUsageLog mutation keys */ readonly all: readonly ["mutation", "resourceusagelog"];
793
+ /** Create resourceUsageLog mutation key */ readonly create: () => readonly ["mutation", "resourceusagelog", "create"];
794
+ /** Update resourceUsageLog mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceusagelog", "update", string | number];
795
+ /** Delete resourceUsageLog mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceusagelog", "delete", string | number];
796
+ };
797
+ readonly resourceUsageSummary: {
798
+ /** All resourceUsageSummary mutation keys */ readonly all: readonly ["mutation", "resourceusagesummary"];
799
+ /** Create resourceUsageSummary mutation key */ readonly create: () => readonly ["mutation", "resourceusagesummary", "create"];
800
+ /** Update resourceUsageSummary mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceusagesummary", "update", string | number];
801
+ /** Delete resourceUsageSummary mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceusagesummary", "delete", string | number];
802
+ };
803
+ readonly resourceUtilizationDaily: {
804
+ /** All resourceUtilizationDaily mutation keys */ readonly all: readonly ["mutation", "resourceutilizationdaily"];
805
+ /** Create resourceUtilizationDaily mutation key */ readonly create: () => readonly ["mutation", "resourceutilizationdaily", "create"];
806
+ /** Update resourceUtilizationDaily mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceutilizationdaily", "update", string | number];
807
+ /** Delete resourceUtilizationDaily mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceutilizationdaily", "delete", string | number];
808
+ };
809
+ readonly resourcesHealth: {
810
+ /** All resourcesHealth mutation keys */ readonly all: readonly ["mutation", "resourceshealth"];
811
+ /** Create resourcesHealth mutation key */ readonly create: () => readonly ["mutation", "resourceshealth", "create"];
812
+ /** Update resourcesHealth mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourceshealth", "update", string | number];
813
+ /** Delete resourcesHealth mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourceshealth", "delete", string | number];
814
+ };
564
815
  readonly resourcesRequirementsState: {
565
816
  /** All resourcesRequirementsState mutation keys */ readonly all: readonly ["mutation", "resourcesrequirementsstate"];
566
817
  /** Create resourcesRequirementsState mutation key */ readonly create: () => readonly ["mutation", "resourcesrequirementsstate", "create"];
@@ -573,6 +824,18 @@ export declare const mutationKeys: {
573
824
  /** Update resourcesResolvedRequirement mutation key */ readonly update: (id: string | number) => readonly ["mutation", "resourcesresolvedrequirement", "update", string | number];
574
825
  /** Delete resourcesResolvedRequirement mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "resourcesresolvedrequirement", "delete", string | number];
575
826
  };
827
+ readonly webhookEndpoint: {
828
+ /** All webhookEndpoint mutation keys */ readonly all: readonly ["mutation", "webhookendpoint"];
829
+ /** Create webhookEndpoint mutation key */ readonly create: () => readonly ["mutation", "webhookendpoint", "create"];
830
+ /** Update webhookEndpoint mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webhookendpoint", "update", string | number];
831
+ /** Delete webhookEndpoint mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webhookendpoint", "delete", string | number];
832
+ };
833
+ readonly webhookEvent: {
834
+ /** All webhookEvent mutation keys */ readonly all: readonly ["mutation", "webhookevent"];
835
+ /** Create webhookEvent mutation key */ readonly create: () => readonly ["mutation", "webhookevent", "create"];
836
+ /** Update webhookEvent mutation key */ readonly update: (id: string | number) => readonly ["mutation", "webhookevent", "update", string | number];
837
+ /** Delete webhookEvent mutation key */ readonly delete: (id: string | number) => readonly ["mutation", "webhookevent", "delete", string | number];
838
+ };
576
839
  readonly custom: {
577
840
  /** Mutation key for addEdge */ readonly addEdge: (identifier?: string) => readonly ["mutation", "addEdge", string] | readonly ["mutation", "addEdge"];
578
841
  /** Mutation key for addEdgeAndSave */ readonly addEdgeAndSave: (identifier?: string) => readonly ["mutation", "addEdgeAndSave", string] | readonly ["mutation", "addEdgeAndSave"];
@@ -586,7 +849,18 @@ export declare const mutationKeys: {
586
849
  /** Mutation key for infraSetDataAtPath */ readonly infraSetDataAtPath: (identifier?: string) => readonly ["mutation", "infraSetDataAtPath", string] | readonly ["mutation", "infraSetDataAtPath"];
587
850
  /** Mutation key for initEmptyRepo */ readonly initEmptyRepo: (identifier?: string) => readonly ["mutation", "initEmptyRepo", string] | readonly ["mutation", "initEmptyRepo"];
588
851
  /** Mutation key for insertNodeAtPath */ readonly insertNodeAtPath: (identifier?: string) => readonly ["mutation", "insertNodeAtPath", string] | readonly ["mutation", "insertNodeAtPath"];
852
+ /** Mutation key for platformInfraInitEmptyRepo */ readonly platformInfraInitEmptyRepo: (identifier?: string) => readonly ["mutation", "platformInfraInitEmptyRepo", string] | readonly ["mutation", "platformInfraInitEmptyRepo"];
853
+ /** Mutation key for platformInfraInsertNodeAtPath */ readonly platformInfraInsertNodeAtPath: (identifier?: string) => readonly ["mutation", "platformInfraInsertNodeAtPath", string] | readonly ["mutation", "platformInfraInsertNodeAtPath"];
854
+ /** Mutation key for platformInfraSetDataAtPath */ readonly platformInfraSetDataAtPath: (identifier?: string) => readonly ["mutation", "platformInfraSetDataAtPath", string] | readonly ["mutation", "platformInfraSetDataAtPath"];
855
+ /** Mutation key for platformResourceInstallationsInstall */ readonly platformResourceInstallationsInstall: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsInstall", string] | readonly ["mutation", "platformResourceInstallationsInstall"];
856
+ /** Mutation key for platformResourceInstallationsRollback */ readonly platformResourceInstallationsRollback: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsRollback", string] | readonly ["mutation", "platformResourceInstallationsRollback"];
857
+ /** Mutation key for platformResourceInstallationsUninstall */ readonly platformResourceInstallationsUninstall: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsUninstall", string] | readonly ["mutation", "platformResourceInstallationsUninstall"];
858
+ /** Mutation key for platformResourceInstallationsUpgrade */ readonly platformResourceInstallationsUpgrade: (identifier?: string) => readonly ["mutation", "platformResourceInstallationsUpgrade", string] | readonly ["mutation", "platformResourceInstallationsUpgrade"];
589
859
  /** Mutation key for provisionBucket */ readonly provisionBucket: (identifier?: string) => readonly ["mutation", "provisionBucket", string] | readonly ["mutation", "provisionBucket"];
860
+ /** Mutation key for resourceInstallationsInstall */ readonly resourceInstallationsInstall: (identifier?: string) => readonly ["mutation", "resourceInstallationsInstall", string] | readonly ["mutation", "resourceInstallationsInstall"];
861
+ /** Mutation key for resourceInstallationsRollback */ readonly resourceInstallationsRollback: (identifier?: string) => readonly ["mutation", "resourceInstallationsRollback", string] | readonly ["mutation", "resourceInstallationsRollback"];
862
+ /** Mutation key for resourceInstallationsUninstall */ readonly resourceInstallationsUninstall: (identifier?: string) => readonly ["mutation", "resourceInstallationsUninstall", string] | readonly ["mutation", "resourceInstallationsUninstall"];
863
+ /** Mutation key for resourceInstallationsUpgrade */ readonly resourceInstallationsUpgrade: (identifier?: string) => readonly ["mutation", "resourceInstallationsUpgrade", string] | readonly ["mutation", "resourceInstallationsUpgrade"];
590
864
  /** Mutation key for saveGraph */ readonly saveGraph: (identifier?: string) => readonly ["mutation", "saveGraph", string] | readonly ["mutation", "saveGraph"];
591
865
  /** Mutation key for setDataAtPath */ readonly setDataAtPath: (identifier?: string) => readonly ["mutation", "setDataAtPath", string] | readonly ["mutation", "setDataAtPath"];
592
866
  /** Mutation key for startExecution */ readonly startExecution: (identifier?: string) => readonly ["mutation", "startExecution", string] | readonly ["mutation", "startExecution"];