@constructive-io/sdk 0.30.0 → 0.30.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. package/README.md +1 -0
  2. package/agent/orm/input-types.d.ts +96 -8
  3. package/api/orm/index.d.ts +5 -15
  4. package/api/orm/index.js +2 -2
  5. package/api/orm/input-types.d.ts +250 -231
  6. package/api/orm/models/index.d.ts +1 -1
  7. package/api/orm/models/index.js +3 -3
  8. package/api/orm/mutation/index.d.ts +11 -36
  9. package/api/orm/mutation/index.js +6 -30
  10. package/auth/orm/index.d.ts +10 -5
  11. package/auth/orm/input-types.d.ts +54 -45
  12. package/auth/orm/models/principal.d.ts +1 -10
  13. package/auth/orm/models/principal.js +0 -13
  14. package/auth/orm/mutation/index.d.ts +17 -9
  15. package/auth/orm/mutation/index.js +24 -12
  16. package/compute/orm/index.d.ts +76 -17
  17. package/compute/orm/index.js +56 -12
  18. package/compute/orm/input-types.d.ts +5893 -1343
  19. package/compute/orm/input-types.js +17 -3
  20. package/compute/orm/models/dbPreset.d.ts +54 -0
  21. package/compute/orm/models/dbPreset.js +104 -0
  22. package/compute/orm/models/functionGraphCommit.d.ts +2 -2
  23. package/compute/orm/models/functionGraphCommit.js +2 -2
  24. package/compute/orm/models/functionGraphObject.d.ts +2 -2
  25. package/compute/orm/models/functionGraphObject.js +2 -2
  26. package/compute/orm/models/functionGraphRef.d.ts +2 -2
  27. package/compute/orm/models/functionGraphRef.js +2 -2
  28. package/compute/orm/models/index.d.ts +28 -6
  29. package/compute/orm/models/index.js +57 -13
  30. package/compute/orm/models/infraCommit.d.ts +56 -0
  31. package/compute/orm/models/infraCommit.js +107 -0
  32. package/compute/orm/models/infraGetAllRecord.d.ts +30 -0
  33. package/compute/orm/models/infraGetAllRecord.js +59 -0
  34. package/compute/orm/models/infraObject.d.ts +56 -0
  35. package/compute/orm/models/infraObject.js +97 -0
  36. package/compute/orm/models/infraRef.d.ts +56 -0
  37. package/compute/orm/models/infraRef.js +107 -0
  38. package/compute/orm/models/infraStore.d.ts +54 -0
  39. package/compute/orm/models/infraStore.js +104 -0
  40. package/compute/orm/models/integrationProvider.d.ts +54 -0
  41. package/{modules/orm/models/configSecretsModule.js → compute/orm/models/integrationProvider.js} +27 -27
  42. package/compute/orm/models/namespace.d.ts +54 -0
  43. package/compute/orm/models/namespace.js +104 -0
  44. package/compute/orm/models/namespaceEvent.d.ts +56 -0
  45. package/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +27 -27
  46. package/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
  47. package/compute/orm/models/platformFunctionApiBinding.js +104 -0
  48. package/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
  49. package/compute/orm/models/platformFunctionDefinition.js +104 -0
  50. package/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
  51. package/compute/orm/models/platformFunctionDeployment.js +104 -0
  52. package/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
  53. package/compute/orm/models/platformFunctionDeploymentEvent.js +107 -0
  54. package/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
  55. package/compute/orm/models/platformFunctionExecutionLog.js +107 -0
  56. package/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
  57. package/compute/orm/models/platformFunctionInvocation.js +107 -0
  58. package/compute/orm/models/platformResource.d.ts +54 -0
  59. package/compute/orm/models/{secretDefinition.js → platformResource.js} +27 -27
  60. package/compute/orm/models/platformResourceDefinition.d.ts +54 -0
  61. package/compute/orm/models/platformResourceDefinition.js +104 -0
  62. package/compute/orm/models/platformResourceEvent.d.ts +56 -0
  63. package/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +27 -27
  64. package/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
  65. package/compute/orm/models/platformResourceStatusCheck.js +104 -0
  66. package/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
  67. package/compute/orm/models/platformResourcesRequirementsState.js +59 -0
  68. package/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
  69. package/compute/orm/models/platformResourcesResolvedRequirement.js +59 -0
  70. package/compute/orm/models/resourceDefinition.d.ts +54 -0
  71. package/compute/orm/models/resourceDefinition.js +104 -0
  72. package/compute/orm/models/resourceStatusCheck.d.ts +54 -0
  73. package/compute/orm/models/resourceStatusCheck.js +104 -0
  74. package/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
  75. package/compute/orm/models/resourcesRequirementsState.js +59 -0
  76. package/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
  77. package/compute/orm/models/resourcesResolvedRequirement.js +59 -0
  78. package/compute/orm/mutation/index.d.ts +33 -9
  79. package/compute/orm/mutation/index.js +48 -12
  80. package/config/orm/index.d.ts +42 -16
  81. package/config/orm/index.js +8 -2
  82. package/config/orm/input-types.d.ts +595 -154
  83. package/config/orm/models/config.d.ts +54 -0
  84. package/{modules/orm/models/configSecretsOrgModule.js → config/orm/models/config.js} +27 -27
  85. package/config/orm/models/index.d.ts +4 -1
  86. package/config/orm/models/index.js +9 -3
  87. package/config/orm/models/platformInternalSecret.d.ts +36 -0
  88. package/config/orm/models/platformInternalSecret.js +80 -0
  89. package/config/orm/models/platformSecret.d.ts +36 -0
  90. package/config/orm/models/platformSecret.js +80 -0
  91. package/config/orm/models/secret.d.ts +36 -0
  92. package/config/orm/models/secret.js +80 -0
  93. package/config/orm/mutation/index.d.ts +56 -24
  94. package/config/orm/mutation/index.js +78 -30
  95. package/esm/agent/orm/input-types.d.ts +96 -8
  96. package/esm/api/orm/index.d.ts +5 -15
  97. package/esm/api/orm/index.js +2 -2
  98. package/esm/api/orm/input-types.d.ts +250 -231
  99. package/esm/api/orm/models/index.d.ts +1 -1
  100. package/esm/api/orm/models/index.js +1 -1
  101. package/esm/api/orm/mutation/index.d.ts +11 -36
  102. package/esm/api/orm/mutation/index.js +6 -30
  103. package/esm/auth/orm/index.d.ts +10 -5
  104. package/esm/auth/orm/input-types.d.ts +54 -45
  105. package/esm/auth/orm/models/principal.d.ts +1 -10
  106. package/esm/auth/orm/models/principal.js +1 -14
  107. package/esm/auth/orm/mutation/index.d.ts +17 -9
  108. package/esm/auth/orm/mutation/index.js +24 -12
  109. package/esm/compute/orm/index.d.ts +76 -17
  110. package/esm/compute/orm/index.js +56 -12
  111. package/esm/compute/orm/input-types.d.ts +5893 -1343
  112. package/esm/compute/orm/input-types.js +17 -3
  113. package/esm/compute/orm/models/dbPreset.d.ts +54 -0
  114. package/esm/compute/orm/models/dbPreset.js +100 -0
  115. package/esm/compute/orm/models/functionGraphCommit.d.ts +2 -2
  116. package/esm/compute/orm/models/functionGraphCommit.js +2 -2
  117. package/esm/compute/orm/models/functionGraphObject.d.ts +2 -2
  118. package/esm/compute/orm/models/functionGraphObject.js +2 -2
  119. package/esm/compute/orm/models/functionGraphRef.d.ts +2 -2
  120. package/esm/compute/orm/models/functionGraphRef.js +2 -2
  121. package/esm/compute/orm/models/index.d.ts +28 -6
  122. package/esm/compute/orm/models/index.js +28 -6
  123. package/esm/compute/orm/models/infraCommit.d.ts +56 -0
  124. package/esm/compute/orm/models/infraCommit.js +103 -0
  125. package/esm/compute/orm/models/infraGetAllRecord.d.ts +30 -0
  126. package/esm/compute/orm/models/infraGetAllRecord.js +55 -0
  127. package/esm/compute/orm/models/infraObject.d.ts +56 -0
  128. package/esm/compute/orm/models/infraObject.js +93 -0
  129. package/esm/compute/orm/models/infraRef.d.ts +56 -0
  130. package/esm/compute/orm/models/infraRef.js +103 -0
  131. package/esm/compute/orm/models/infraStore.d.ts +54 -0
  132. package/esm/compute/orm/models/infraStore.js +100 -0
  133. package/esm/compute/orm/models/integrationProvider.d.ts +54 -0
  134. package/esm/compute/orm/models/integrationProvider.js +100 -0
  135. package/esm/compute/orm/models/namespace.d.ts +54 -0
  136. package/esm/compute/orm/models/namespace.js +100 -0
  137. package/esm/compute/orm/models/namespaceEvent.d.ts +56 -0
  138. package/esm/compute/orm/models/{orgFunctionExecutionLog.js → namespaceEvent.js} +25 -25
  139. package/esm/compute/orm/models/platformFunctionApiBinding.d.ts +54 -0
  140. package/esm/compute/orm/models/platformFunctionApiBinding.js +100 -0
  141. package/esm/compute/orm/models/platformFunctionDefinition.d.ts +54 -0
  142. package/esm/compute/orm/models/platformFunctionDefinition.js +100 -0
  143. package/esm/compute/orm/models/platformFunctionDeployment.d.ts +54 -0
  144. package/esm/compute/orm/models/platformFunctionDeployment.js +100 -0
  145. package/esm/compute/orm/models/platformFunctionDeploymentEvent.d.ts +56 -0
  146. package/esm/compute/orm/models/platformFunctionDeploymentEvent.js +103 -0
  147. package/esm/compute/orm/models/platformFunctionExecutionLog.d.ts +56 -0
  148. package/esm/compute/orm/models/platformFunctionExecutionLog.js +103 -0
  149. package/esm/compute/orm/models/platformFunctionInvocation.d.ts +56 -0
  150. package/esm/compute/orm/models/platformFunctionInvocation.js +103 -0
  151. package/esm/compute/orm/models/platformResource.d.ts +54 -0
  152. package/esm/compute/orm/models/{secretDefinition.js → platformResource.js} +25 -25
  153. package/esm/compute/orm/models/platformResourceDefinition.d.ts +54 -0
  154. package/esm/compute/orm/models/platformResourceDefinition.js +100 -0
  155. package/esm/compute/orm/models/platformResourceEvent.d.ts +56 -0
  156. package/esm/compute/orm/models/{orgFunctionInvocation.js → platformResourceEvent.js} +25 -25
  157. package/esm/compute/orm/models/platformResourceStatusCheck.d.ts +54 -0
  158. package/esm/compute/orm/models/platformResourceStatusCheck.js +100 -0
  159. package/esm/compute/orm/models/platformResourcesRequirementsState.d.ts +30 -0
  160. package/esm/compute/orm/models/platformResourcesRequirementsState.js +55 -0
  161. package/esm/compute/orm/models/platformResourcesResolvedRequirement.d.ts +30 -0
  162. package/esm/compute/orm/models/platformResourcesResolvedRequirement.js +55 -0
  163. package/esm/compute/orm/models/resourceDefinition.d.ts +54 -0
  164. package/esm/{modules/orm/models/configSecretsOrgModule.js → compute/orm/models/resourceDefinition.js} +25 -25
  165. package/esm/compute/orm/models/resourceStatusCheck.d.ts +54 -0
  166. package/esm/compute/orm/models/resourceStatusCheck.js +100 -0
  167. package/esm/compute/orm/models/resourcesRequirementsState.d.ts +30 -0
  168. package/esm/compute/orm/models/resourcesRequirementsState.js +55 -0
  169. package/esm/compute/orm/models/resourcesResolvedRequirement.d.ts +30 -0
  170. package/esm/compute/orm/models/resourcesResolvedRequirement.js +55 -0
  171. package/esm/compute/orm/mutation/index.d.ts +33 -9
  172. package/esm/compute/orm/mutation/index.js +48 -12
  173. package/esm/config/orm/index.d.ts +42 -16
  174. package/esm/config/orm/index.js +8 -2
  175. package/esm/config/orm/input-types.d.ts +595 -154
  176. package/esm/config/orm/models/config.d.ts +54 -0
  177. package/esm/{modules/orm/models/configSecretsModule.js → config/orm/models/config.js} +25 -25
  178. package/esm/config/orm/models/index.d.ts +4 -1
  179. package/esm/config/orm/models/index.js +4 -1
  180. package/esm/config/orm/models/platformInternalSecret.d.ts +36 -0
  181. package/esm/config/orm/models/platformInternalSecret.js +76 -0
  182. package/esm/config/orm/models/platformSecret.d.ts +36 -0
  183. package/esm/config/orm/models/platformSecret.js +76 -0
  184. package/esm/config/orm/models/secret.d.ts +36 -0
  185. package/esm/config/orm/models/secret.js +76 -0
  186. package/esm/config/orm/mutation/index.d.ts +56 -24
  187. package/esm/config/orm/mutation/index.js +78 -30
  188. package/esm/index.d.ts +1 -0
  189. package/esm/index.js +1 -0
  190. package/esm/infra/index.d.ts +5 -0
  191. package/esm/infra/index.js +5 -0
  192. package/esm/infra/orm/client.d.ts +97 -0
  193. package/esm/infra/orm/client.js +145 -0
  194. package/esm/infra/orm/index.d.ts +74 -0
  195. package/esm/infra/orm/index.js +61 -0
  196. package/esm/infra/orm/input-types.d.ts +1953 -0
  197. package/esm/infra/orm/input-types.js +2 -0
  198. package/esm/infra/orm/models/dbPreset.d.ts +54 -0
  199. package/esm/infra/orm/models/dbPreset.js +100 -0
  200. package/esm/infra/orm/models/index.d.ts +15 -0
  201. package/esm/infra/orm/models/index.js +15 -0
  202. package/esm/infra/orm/models/infraCommit.d.ts +56 -0
  203. package/esm/infra/orm/models/infraCommit.js +103 -0
  204. package/esm/infra/orm/models/infraGetAllRecord.d.ts +30 -0
  205. package/esm/infra/orm/models/infraGetAllRecord.js +55 -0
  206. package/esm/infra/orm/models/infraObject.d.ts +56 -0
  207. package/esm/infra/orm/models/infraObject.js +93 -0
  208. package/esm/infra/orm/models/infraRef.d.ts +56 -0
  209. package/esm/infra/orm/models/infraRef.js +103 -0
  210. package/esm/infra/orm/models/infraStore.d.ts +54 -0
  211. package/esm/infra/orm/models/infraStore.js +100 -0
  212. package/esm/infra/orm/models/namespace.d.ts +54 -0
  213. package/esm/infra/orm/models/namespace.js +100 -0
  214. package/esm/infra/orm/models/namespaceEvent.d.ts +56 -0
  215. package/esm/infra/orm/models/namespaceEvent.js +103 -0
  216. package/esm/infra/orm/models/platformNamespace.d.ts +54 -0
  217. package/esm/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespace.js} +25 -25
  218. package/esm/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
  219. package/esm/infra/orm/models/platformNamespaceEvent.js +103 -0
  220. package/esm/infra/orm/mutation/index.d.ts +50 -0
  221. package/esm/infra/orm/mutation/index.js +54 -0
  222. package/esm/infra/orm/query-builder.d.ts +110 -0
  223. package/esm/infra/orm/query-builder.js +705 -0
  224. package/esm/infra/orm/realtime.d.ts +142 -0
  225. package/esm/infra/orm/realtime.js +100 -0
  226. package/esm/infra/orm/select-types.d.ts +125 -0
  227. package/esm/infra/orm/select-types.js +1 -0
  228. package/esm/infra/orm/types.d.ts +6 -0
  229. package/esm/infra/orm/types.js +7 -0
  230. package/esm/modules/orm/index.d.ts +48 -38
  231. package/esm/modules/orm/index.js +48 -38
  232. package/esm/modules/orm/input-types.d.ts +5378 -4022
  233. package/esm/modules/orm/input-types.js +1 -0
  234. package/esm/modules/orm/models/dbPool.d.ts +54 -0
  235. package/esm/modules/orm/models/dbPool.js +100 -0
  236. package/esm/modules/orm/models/dbPoolConfig.d.ts +54 -0
  237. package/esm/modules/orm/models/dbPoolConfig.js +100 -0
  238. package/esm/modules/orm/models/dbPresetModule.d.ts +54 -0
  239. package/esm/modules/orm/models/dbPresetModule.js +100 -0
  240. package/esm/modules/orm/models/index.d.ts +24 -19
  241. package/esm/modules/orm/models/index.js +24 -19
  242. package/esm/modules/orm/models/infraConfigModule.d.ts +54 -0
  243. package/esm/modules/orm/models/infraConfigModule.js +100 -0
  244. package/esm/modules/orm/models/infraSecretsModule.d.ts +54 -0
  245. package/esm/modules/orm/models/infraSecretsModule.js +100 -0
  246. package/esm/modules/orm/models/integrationProvidersModule.d.ts +54 -0
  247. package/esm/modules/orm/models/integrationProvidersModule.js +100 -0
  248. package/esm/modules/orm/models/internalSecretsModule.d.ts +54 -0
  249. package/esm/modules/orm/models/internalSecretsModule.js +100 -0
  250. package/index.d.ts +1 -0
  251. package/index.js +2 -1
  252. package/infra/index.d.ts +5 -0
  253. package/infra/index.js +21 -0
  254. package/infra/orm/client.d.ts +97 -0
  255. package/infra/orm/client.js +152 -0
  256. package/infra/orm/index.d.ts +74 -0
  257. package/infra/orm/index.js +83 -0
  258. package/infra/orm/input-types.d.ts +1953 -0
  259. package/infra/orm/input-types.js +5 -0
  260. package/infra/orm/models/dbPreset.d.ts +54 -0
  261. package/infra/orm/models/dbPreset.js +104 -0
  262. package/infra/orm/models/index.d.ts +15 -0
  263. package/infra/orm/models/index.js +28 -0
  264. package/infra/orm/models/infraCommit.d.ts +56 -0
  265. package/infra/orm/models/infraCommit.js +107 -0
  266. package/infra/orm/models/infraGetAllRecord.d.ts +30 -0
  267. package/infra/orm/models/infraGetAllRecord.js +59 -0
  268. package/infra/orm/models/infraObject.d.ts +56 -0
  269. package/infra/orm/models/infraObject.js +97 -0
  270. package/infra/orm/models/infraRef.d.ts +56 -0
  271. package/infra/orm/models/infraRef.js +107 -0
  272. package/infra/orm/models/infraStore.d.ts +54 -0
  273. package/infra/orm/models/infraStore.js +104 -0
  274. package/infra/orm/models/namespace.d.ts +54 -0
  275. package/infra/orm/models/namespace.js +104 -0
  276. package/infra/orm/models/namespaceEvent.d.ts +56 -0
  277. package/infra/orm/models/namespaceEvent.js +107 -0
  278. package/infra/orm/models/platformNamespace.d.ts +54 -0
  279. package/infra/orm/models/platformNamespace.js +104 -0
  280. package/infra/orm/models/platformNamespaceEvent.d.ts +56 -0
  281. package/{config/orm/models/platformConfigDefinition.js → infra/orm/models/platformNamespaceEvent.js} +30 -27
  282. package/infra/orm/mutation/index.d.ts +50 -0
  283. package/infra/orm/mutation/index.js +57 -0
  284. package/infra/orm/query-builder.d.ts +110 -0
  285. package/infra/orm/query-builder.js +757 -0
  286. package/infra/orm/realtime.d.ts +142 -0
  287. package/infra/orm/realtime.js +104 -0
  288. package/infra/orm/select-types.d.ts +125 -0
  289. package/infra/orm/select-types.js +2 -0
  290. package/infra/orm/types.d.ts +6 -0
  291. package/infra/orm/types.js +23 -0
  292. package/modules/orm/index.d.ts +48 -38
  293. package/modules/orm/index.js +48 -38
  294. package/modules/orm/input-types.d.ts +5378 -4022
  295. package/modules/orm/input-types.js +1 -0
  296. package/modules/orm/models/dbPool.d.ts +54 -0
  297. package/modules/orm/models/dbPool.js +104 -0
  298. package/modules/orm/models/dbPoolConfig.d.ts +54 -0
  299. package/modules/orm/models/dbPoolConfig.js +104 -0
  300. package/modules/orm/models/dbPresetModule.d.ts +54 -0
  301. package/modules/orm/models/dbPresetModule.js +104 -0
  302. package/modules/orm/models/index.d.ts +24 -19
  303. package/modules/orm/models/index.js +50 -40
  304. package/modules/orm/models/infraConfigModule.d.ts +54 -0
  305. package/modules/orm/models/infraConfigModule.js +104 -0
  306. package/modules/orm/models/infraSecretsModule.d.ts +54 -0
  307. package/modules/orm/models/infraSecretsModule.js +104 -0
  308. package/modules/orm/models/integrationProvidersModule.d.ts +54 -0
  309. package/modules/orm/models/integrationProvidersModule.js +104 -0
  310. package/modules/orm/models/internalSecretsModule.d.ts +54 -0
  311. package/modules/orm/models/internalSecretsModule.js +104 -0
  312. package/package.json +4 -4
  313. package/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
  314. package/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
  315. package/compute/orm/models/secretDefinition.d.ts +0 -54
  316. package/config/orm/models/platformConfigDefinition.d.ts +0 -54
  317. package/esm/compute/orm/models/orgFunctionExecutionLog.d.ts +0 -56
  318. package/esm/compute/orm/models/orgFunctionInvocation.d.ts +0 -56
  319. package/esm/compute/orm/models/secretDefinition.d.ts +0 -54
  320. package/esm/config/orm/models/platformConfigDefinition.d.ts +0 -54
  321. package/esm/modules/orm/models/configSecretsModule.d.ts +0 -54
  322. package/esm/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
  323. package/modules/orm/models/configSecretsModule.d.ts +0 -54
  324. package/modules/orm/models/configSecretsOrgModule.d.ts +0 -54
@@ -0,0 +1,54 @@
1
+ /**
2
+ * ResourceStatusCheck model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, UpdateArgs, DeleteArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { ResourceStatusCheckWithRelations, ResourceStatusCheckSelect, ResourceStatusCheckFilter, ResourceStatusCheckOrderBy, CreateResourceStatusCheckInput, ResourceStatusCheckPatch } from '../input-types';
10
+ export declare class ResourceStatusCheckModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ResourceStatusCheckSelect>(args: FindManyArgs<S, ResourceStatusCheckFilter, ResourceStatusCheckOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
16
+ resourceStatusChecks: ConnectionResult<InferSelectResult<ResourceStatusCheckWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ResourceStatusCheckSelect>(args: FindFirstArgs<S, ResourceStatusCheckFilter, ResourceStatusCheckOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
21
+ resourceStatusCheck: InferSelectResult<ResourceStatusCheckWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends ResourceStatusCheckSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
27
+ resourceStatusCheck: InferSelectResult<ResourceStatusCheckWithRelations, S> | null;
28
+ }>;
29
+ create<S extends ResourceStatusCheckSelect>(args: CreateArgs<S, CreateResourceStatusCheckInput['resourceStatusCheck']> & {
30
+ select: S;
31
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
32
+ createResourceStatusCheck: {
33
+ resourceStatusCheck: InferSelectResult<ResourceStatusCheckWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends ResourceStatusCheckSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, ResourceStatusCheckPatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
41
+ updateResourceStatusCheck: {
42
+ resourceStatusCheck: InferSelectResult<ResourceStatusCheckWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends ResourceStatusCheckSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, ResourceStatusCheckSelect>): QueryBuilder<{
50
+ deleteResourceStatusCheck: {
51
+ resourceStatusCheck: InferSelectResult<ResourceStatusCheckWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -0,0 +1,104 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResourceStatusCheckModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class ResourceStatusCheckModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ResourceStatusCheck', 'resourceStatusChecks', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'ResourceStatusCheckFilter', 'ResourceStatusCheckOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'ResourceStatusCheck',
25
+ fieldName: 'resourceStatusChecks',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('ResourceStatusCheck', 'resourceStatusChecks', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'ResourceStatusCheckFilter', 'ResourceStatusCheckOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'ResourceStatusCheck',
39
+ fieldName: 'resourceStatusCheck',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ resourceStatusCheck: data.resourceStatusChecks?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ findOne(args) {
48
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ResourceStatusCheck', 'resourceStatusChecks', args.select, {
49
+ where: {
50
+ id: {
51
+ equalTo: args.id,
52
+ },
53
+ },
54
+ first: 1,
55
+ }, 'ResourceStatusCheckFilter', 'ResourceStatusCheckOrderBy', input_types_1.connectionFieldsMap);
56
+ return new query_builder_1.QueryBuilder({
57
+ client: this.client,
58
+ operation: 'query',
59
+ operationName: 'ResourceStatusCheck',
60
+ fieldName: 'resourceStatusCheck',
61
+ document,
62
+ variables,
63
+ transform: (data) => ({
64
+ resourceStatusCheck: data.resourceStatusChecks?.nodes?.[0] ?? null,
65
+ }),
66
+ });
67
+ }
68
+ create(args) {
69
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('ResourceStatusCheck', 'createResourceStatusCheck', 'resourceStatusCheck', args.select, args.data, 'CreateResourceStatusCheckInput', input_types_1.connectionFieldsMap);
70
+ return new query_builder_1.QueryBuilder({
71
+ client: this.client,
72
+ operation: 'mutation',
73
+ operationName: 'ResourceStatusCheck',
74
+ fieldName: 'createResourceStatusCheck',
75
+ document,
76
+ variables,
77
+ });
78
+ }
79
+ update(args) {
80
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('ResourceStatusCheck', 'updateResourceStatusCheck', 'resourceStatusCheck', args.select, args.where.id, args.data, 'UpdateResourceStatusCheckInput', 'id', 'resourceStatusCheckPatch', input_types_1.connectionFieldsMap, undefined);
81
+ return new query_builder_1.QueryBuilder({
82
+ client: this.client,
83
+ operation: 'mutation',
84
+ operationName: 'ResourceStatusCheck',
85
+ fieldName: 'updateResourceStatusCheck',
86
+ document,
87
+ variables,
88
+ });
89
+ }
90
+ delete(args) {
91
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('ResourceStatusCheck', 'deleteResourceStatusCheck', 'resourceStatusCheck', {
92
+ id: args.where.id,
93
+ }, 'DeleteResourceStatusCheckInput', args.select, input_types_1.connectionFieldsMap);
94
+ return new query_builder_1.QueryBuilder({
95
+ client: this.client,
96
+ operation: 'mutation',
97
+ operationName: 'ResourceStatusCheck',
98
+ fieldName: 'deleteResourceStatusCheck',
99
+ document,
100
+ variables,
101
+ });
102
+ }
103
+ }
104
+ exports.ResourceStatusCheckModel = ResourceStatusCheckModel;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * ResourcesRequirementsState model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { ResourcesRequirementsStateWithRelations, ResourcesRequirementsStateSelect, ResourcesRequirementsStateFilter, ResourcesRequirementsStateOrderBy, CreateResourcesRequirementsStateInput } from '../input-types';
10
+ export declare class ResourcesRequirementsStateModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ResourcesRequirementsStateSelect>(args: FindManyArgs<S, ResourcesRequirementsStateFilter, ResourcesRequirementsStateOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ResourcesRequirementsStateSelect>): QueryBuilder<{
16
+ resourcesRequirementsStates: ConnectionResult<InferSelectResult<ResourcesRequirementsStateWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ResourcesRequirementsStateSelect>(args: FindFirstArgs<S, ResourcesRequirementsStateFilter, ResourcesRequirementsStateOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ResourcesRequirementsStateSelect>): QueryBuilder<{
21
+ resourcesRequirementsState: InferSelectResult<ResourcesRequirementsStateWithRelations, S> | null;
22
+ }>;
23
+ create<S extends ResourcesRequirementsStateSelect>(args: CreateArgs<S, CreateResourcesRequirementsStateInput['resourcesRequirementsState']> & {
24
+ select: S;
25
+ } & StrictSelect<S, ResourcesRequirementsStateSelect>): QueryBuilder<{
26
+ createResourcesRequirementsState: {
27
+ resourcesRequirementsState: InferSelectResult<ResourcesRequirementsStateWithRelations, S>;
28
+ };
29
+ }>;
30
+ }
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResourcesRequirementsStateModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class ResourcesRequirementsStateModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ResourcesRequirementsState', 'resourcesRequirementsStates', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'ResourcesRequirementsStateFilter', 'ResourcesRequirementsStateOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'ResourcesRequirementsState',
25
+ fieldName: 'resourcesRequirementsStates',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('ResourcesRequirementsState', 'resourcesRequirementsStates', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'ResourcesRequirementsStateFilter', 'ResourcesRequirementsStateOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'ResourcesRequirementsState',
39
+ fieldName: 'resourcesRequirementsState',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ resourcesRequirementsState: data.resourcesRequirementsStates?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ create(args) {
48
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('ResourcesRequirementsState', 'createResourcesRequirementsState', 'resourcesRequirementsState', args.select, args.data, 'CreateResourcesRequirementsStateInput', input_types_1.connectionFieldsMap);
49
+ return new query_builder_1.QueryBuilder({
50
+ client: this.client,
51
+ operation: 'mutation',
52
+ operationName: 'ResourcesRequirementsState',
53
+ fieldName: 'createResourcesRequirementsState',
54
+ document,
55
+ variables,
56
+ });
57
+ }
58
+ }
59
+ exports.ResourcesRequirementsStateModel = ResourcesRequirementsStateModel;
@@ -0,0 +1,30 @@
1
+ /**
2
+ * ResourcesResolvedRequirement model for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ import { OrmClient } from '../client';
7
+ import { QueryBuilder } from '../query-builder';
8
+ import type { ConnectionResult, FindManyArgs, FindFirstArgs, CreateArgs, InferSelectResult, StrictSelect } from '../select-types';
9
+ import type { ResourcesResolvedRequirementWithRelations, ResourcesResolvedRequirementSelect, ResourcesResolvedRequirementFilter, ResourcesResolvedRequirementOrderBy, CreateResourcesResolvedRequirementInput } from '../input-types';
10
+ export declare class ResourcesResolvedRequirementModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ResourcesResolvedRequirementSelect>(args: FindManyArgs<S, ResourcesResolvedRequirementFilter, ResourcesResolvedRequirementOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ResourcesResolvedRequirementSelect>): QueryBuilder<{
16
+ resourcesResolvedRequirements: ConnectionResult<InferSelectResult<ResourcesResolvedRequirementWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ResourcesResolvedRequirementSelect>(args: FindFirstArgs<S, ResourcesResolvedRequirementFilter, ResourcesResolvedRequirementOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ResourcesResolvedRequirementSelect>): QueryBuilder<{
21
+ resourcesResolvedRequirement: InferSelectResult<ResourcesResolvedRequirementWithRelations, S> | null;
22
+ }>;
23
+ create<S extends ResourcesResolvedRequirementSelect>(args: CreateArgs<S, CreateResourcesResolvedRequirementInput['resourcesResolvedRequirement']> & {
24
+ select: S;
25
+ } & StrictSelect<S, ResourcesResolvedRequirementSelect>): QueryBuilder<{
26
+ createResourcesResolvedRequirement: {
27
+ resourcesResolvedRequirement: InferSelectResult<ResourcesResolvedRequirementWithRelations, S>;
28
+ };
29
+ }>;
30
+ }
@@ -0,0 +1,59 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResourcesResolvedRequirementModel = void 0;
4
+ const query_builder_1 = require("../query-builder");
5
+ const input_types_1 = require("../input-types");
6
+ class ResourcesResolvedRequirementModel {
7
+ client;
8
+ constructor(client) {
9
+ this.client = client;
10
+ }
11
+ findMany(args) {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ResourcesResolvedRequirement', 'resourcesResolvedRequirements', args.select, {
13
+ where: args?.where,
14
+ orderBy: args?.orderBy,
15
+ first: args?.first,
16
+ last: args?.last,
17
+ after: args?.after,
18
+ before: args?.before,
19
+ offset: args?.offset,
20
+ }, 'ResourcesResolvedRequirementFilter', 'ResourcesResolvedRequirementOrderBy', input_types_1.connectionFieldsMap);
21
+ return new query_builder_1.QueryBuilder({
22
+ client: this.client,
23
+ operation: 'query',
24
+ operationName: 'ResourcesResolvedRequirement',
25
+ fieldName: 'resourcesResolvedRequirements',
26
+ document,
27
+ variables,
28
+ });
29
+ }
30
+ findFirst(args) {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('ResourcesResolvedRequirement', 'resourcesResolvedRequirements', args.select, {
32
+ where: args?.where,
33
+ orderBy: args?.orderBy,
34
+ }, 'ResourcesResolvedRequirementFilter', 'ResourcesResolvedRequirementOrderBy', input_types_1.connectionFieldsMap);
35
+ return new query_builder_1.QueryBuilder({
36
+ client: this.client,
37
+ operation: 'query',
38
+ operationName: 'ResourcesResolvedRequirement',
39
+ fieldName: 'resourcesResolvedRequirement',
40
+ document,
41
+ variables,
42
+ transform: (data) => ({
43
+ resourcesResolvedRequirement: data.resourcesResolvedRequirements?.nodes?.[0] ?? null,
44
+ }),
45
+ });
46
+ }
47
+ create(args) {
48
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('ResourcesResolvedRequirement', 'createResourcesResolvedRequirement', 'resourcesResolvedRequirement', args.select, args.data, 'CreateResourcesResolvedRequirementInput', input_types_1.connectionFieldsMap);
49
+ return new query_builder_1.QueryBuilder({
50
+ client: this.client,
51
+ operation: 'mutation',
52
+ operationName: 'ResourcesResolvedRequirement',
53
+ fieldName: 'createResourcesResolvedRequirement',
54
+ document,
55
+ variables,
56
+ });
57
+ }
58
+ }
59
+ exports.ResourcesResolvedRequirementModel = ResourcesResolvedRequirementModel;
@@ -6,19 +6,25 @@
6
6
  import { OrmClient } from '../client';
7
7
  import { QueryBuilder } from '../query-builder';
8
8
  import type { InferSelectResult, StrictSelect } from '../select-types';
9
- import type { ValidateFunctionGraphInput, InitEmptyRepoInput, SetDataAtPathInput, ImportDefinitionsInput, CopyGraphInput, SaveGraphInput, AddEdgeAndSaveInput, AddNodeAndSaveInput, ImportGraphJsonInput, AddEdgeInput, AddNodeInput, InsertNodeAtPathInput, StartExecutionInput, ProvisionBucketInput, ValidateFunctionGraphPayload, InitEmptyRepoPayload, SetDataAtPathPayload, ImportDefinitionsPayload, CopyGraphPayload, SaveGraphPayload, AddEdgeAndSavePayload, AddNodeAndSavePayload, ImportGraphJsonPayload, AddEdgePayload, AddNodePayload, InsertNodeAtPathPayload, StartExecutionPayload, ProvisionBucketPayload, ValidateFunctionGraphPayloadSelect, InitEmptyRepoPayloadSelect, SetDataAtPathPayloadSelect, ImportDefinitionsPayloadSelect, CopyGraphPayloadSelect, SaveGraphPayloadSelect, AddEdgeAndSavePayloadSelect, AddNodeAndSavePayloadSelect, ImportGraphJsonPayloadSelect, AddEdgePayloadSelect, AddNodePayloadSelect, InsertNodeAtPathPayloadSelect, StartExecutionPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
9
+ import type { ValidateFunctionGraphInput, InfraInitEmptyRepoInput, InitEmptyRepoInput, ImportDefinitionsInput, InfraSetDataAtPathInput, SetDataAtPathInput, CopyGraphInput, SaveGraphInput, AddEdgeAndSaveInput, AddNodeAndSaveInput, ImportGraphJsonInput, AddEdgeInput, AddNodeInput, InfraInsertNodeAtPathInput, InsertNodeAtPathInput, StartExecutionInput, ProvisionBucketInput, ValidateFunctionGraphPayload, InfraInitEmptyRepoPayload, InitEmptyRepoPayload, ImportDefinitionsPayload, InfraSetDataAtPathPayload, SetDataAtPathPayload, CopyGraphPayload, SaveGraphPayload, AddEdgeAndSavePayload, AddNodeAndSavePayload, ImportGraphJsonPayload, AddEdgePayload, AddNodePayload, InfraInsertNodeAtPathPayload, InsertNodeAtPathPayload, StartExecutionPayload, ProvisionBucketPayload, ValidateFunctionGraphPayloadSelect, InfraInitEmptyRepoPayloadSelect, InitEmptyRepoPayloadSelect, ImportDefinitionsPayloadSelect, InfraSetDataAtPathPayloadSelect, SetDataAtPathPayloadSelect, CopyGraphPayloadSelect, SaveGraphPayloadSelect, AddEdgeAndSavePayloadSelect, AddNodeAndSavePayloadSelect, ImportGraphJsonPayloadSelect, AddEdgePayloadSelect, AddNodePayloadSelect, InfraInsertNodeAtPathPayloadSelect, InsertNodeAtPathPayloadSelect, StartExecutionPayloadSelect, ProvisionBucketPayloadSelect } from '../input-types';
10
10
  export interface ValidateFunctionGraphVariables {
11
11
  input: ValidateFunctionGraphInput;
12
12
  }
13
+ export interface InfraInitEmptyRepoVariables {
14
+ input: InfraInitEmptyRepoInput;
15
+ }
13
16
  export interface InitEmptyRepoVariables {
14
17
  input: InitEmptyRepoInput;
15
18
  }
16
- export interface SetDataAtPathVariables {
17
- input: SetDataAtPathInput;
18
- }
19
19
  export interface ImportDefinitionsVariables {
20
20
  input: ImportDefinitionsInput;
21
21
  }
22
+ export interface InfraSetDataAtPathVariables {
23
+ input: InfraSetDataAtPathInput;
24
+ }
25
+ export interface SetDataAtPathVariables {
26
+ input: SetDataAtPathInput;
27
+ }
22
28
  export interface CopyGraphVariables {
23
29
  input: CopyGraphInput;
24
30
  }
@@ -40,6 +46,9 @@ export interface AddEdgeVariables {
40
46
  export interface AddNodeVariables {
41
47
  input: AddNodeInput;
42
48
  }
49
+ export interface InfraInsertNodeAtPathVariables {
50
+ input: InfraInsertNodeAtPathInput;
51
+ }
43
52
  export interface InsertNodeAtPathVariables {
44
53
  input: InsertNodeAtPathInput;
45
54
  }
@@ -62,21 +71,31 @@ export declare function createMutationOperations(client: OrmClient): {
62
71
  } & StrictSelect<S, ValidateFunctionGraphPayloadSelect>) => QueryBuilder<{
63
72
  validateFunctionGraph: InferSelectResult<ValidateFunctionGraphPayload, S> | null;
64
73
  }>;
74
+ infraInitEmptyRepo: <S extends InfraInitEmptyRepoPayloadSelect>(args: InfraInitEmptyRepoVariables, options: {
75
+ select: S;
76
+ } & StrictSelect<S, InfraInitEmptyRepoPayloadSelect>) => QueryBuilder<{
77
+ infraInitEmptyRepo: InferSelectResult<InfraInitEmptyRepoPayload, S> | null;
78
+ }>;
65
79
  initEmptyRepo: <S extends InitEmptyRepoPayloadSelect>(args: InitEmptyRepoVariables, options: {
66
80
  select: S;
67
81
  } & StrictSelect<S, InitEmptyRepoPayloadSelect>) => QueryBuilder<{
68
82
  initEmptyRepo: InferSelectResult<InitEmptyRepoPayload, S> | null;
69
83
  }>;
70
- setDataAtPath: <S extends SetDataAtPathPayloadSelect>(args: SetDataAtPathVariables, options: {
71
- select: S;
72
- } & StrictSelect<S, SetDataAtPathPayloadSelect>) => QueryBuilder<{
73
- setDataAtPath: InferSelectResult<SetDataAtPathPayload, S> | null;
74
- }>;
75
84
  importDefinitions: <S extends ImportDefinitionsPayloadSelect>(args: ImportDefinitionsVariables, options: {
76
85
  select: S;
77
86
  } & StrictSelect<S, ImportDefinitionsPayloadSelect>) => QueryBuilder<{
78
87
  importDefinitions: InferSelectResult<ImportDefinitionsPayload, S> | null;
79
88
  }>;
89
+ infraSetDataAtPath: <S extends InfraSetDataAtPathPayloadSelect>(args: InfraSetDataAtPathVariables, options: {
90
+ select: S;
91
+ } & StrictSelect<S, InfraSetDataAtPathPayloadSelect>) => QueryBuilder<{
92
+ infraSetDataAtPath: InferSelectResult<InfraSetDataAtPathPayload, S> | null;
93
+ }>;
94
+ setDataAtPath: <S extends SetDataAtPathPayloadSelect>(args: SetDataAtPathVariables, options: {
95
+ select: S;
96
+ } & StrictSelect<S, SetDataAtPathPayloadSelect>) => QueryBuilder<{
97
+ setDataAtPath: InferSelectResult<SetDataAtPathPayload, S> | null;
98
+ }>;
80
99
  copyGraph: <S extends CopyGraphPayloadSelect>(args: CopyGraphVariables, options: {
81
100
  select: S;
82
101
  } & StrictSelect<S, CopyGraphPayloadSelect>) => QueryBuilder<{
@@ -112,6 +131,11 @@ export declare function createMutationOperations(client: OrmClient): {
112
131
  } & StrictSelect<S, AddNodePayloadSelect>) => QueryBuilder<{
113
132
  addNode: InferSelectResult<AddNodePayload, S> | null;
114
133
  }>;
134
+ infraInsertNodeAtPath: <S extends InfraInsertNodeAtPathPayloadSelect>(args: InfraInsertNodeAtPathVariables, options: {
135
+ select: S;
136
+ } & StrictSelect<S, InfraInsertNodeAtPathPayloadSelect>) => QueryBuilder<{
137
+ infraInsertNodeAtPath: InferSelectResult<InfraInsertNodeAtPathPayload, S> | null;
138
+ }>;
115
139
  insertNodeAtPath: <S extends InsertNodeAtPathPayloadSelect>(args: InsertNodeAtPathVariables, options: {
116
140
  select: S;
117
141
  } & StrictSelect<S, InsertNodeAtPathPayloadSelect>) => QueryBuilder<{
@@ -17,29 +17,29 @@ function createMutationOperations(client) {
17
17
  },
18
18
  ], input_types_1.connectionFieldsMap, 'ValidateFunctionGraphPayload'),
19
19
  }),
20
- initEmptyRepo: (args, options) => new query_builder_1.QueryBuilder({
20
+ infraInitEmptyRepo: (args, options) => new query_builder_1.QueryBuilder({
21
21
  client,
22
22
  operation: 'mutation',
23
- operationName: 'InitEmptyRepo',
24
- fieldName: 'initEmptyRepo',
25
- ...(0, query_builder_1.buildCustomDocument)('mutation', 'InitEmptyRepo', 'initEmptyRepo', options.select, args, [
23
+ operationName: 'InfraInitEmptyRepo',
24
+ fieldName: 'infraInitEmptyRepo',
25
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraInitEmptyRepo', 'infraInitEmptyRepo', options.select, args, [
26
26
  {
27
27
  name: 'input',
28
- type: 'InitEmptyRepoInput!',
28
+ type: 'InfraInitEmptyRepoInput!',
29
29
  },
30
- ], input_types_1.connectionFieldsMap, 'InitEmptyRepoPayload'),
30
+ ], input_types_1.connectionFieldsMap, 'InfraInitEmptyRepoPayload'),
31
31
  }),
32
- setDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
32
+ initEmptyRepo: (args, options) => new query_builder_1.QueryBuilder({
33
33
  client,
34
34
  operation: 'mutation',
35
- operationName: 'SetDataAtPath',
36
- fieldName: 'setDataAtPath',
37
- ...(0, query_builder_1.buildCustomDocument)('mutation', 'SetDataAtPath', 'setDataAtPath', options.select, args, [
35
+ operationName: 'InitEmptyRepo',
36
+ fieldName: 'initEmptyRepo',
37
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InitEmptyRepo', 'initEmptyRepo', options.select, args, [
38
38
  {
39
39
  name: 'input',
40
- type: 'SetDataAtPathInput!',
40
+ type: 'InitEmptyRepoInput!',
41
41
  },
42
- ], input_types_1.connectionFieldsMap, 'SetDataAtPathPayload'),
42
+ ], input_types_1.connectionFieldsMap, 'InitEmptyRepoPayload'),
43
43
  }),
44
44
  importDefinitions: (args, options) => new query_builder_1.QueryBuilder({
45
45
  client,
@@ -53,6 +53,30 @@ function createMutationOperations(client) {
53
53
  },
54
54
  ], input_types_1.connectionFieldsMap, 'ImportDefinitionsPayload'),
55
55
  }),
56
+ infraSetDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
57
+ client,
58
+ operation: 'mutation',
59
+ operationName: 'InfraSetDataAtPath',
60
+ fieldName: 'infraSetDataAtPath',
61
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraSetDataAtPath', 'infraSetDataAtPath', options.select, args, [
62
+ {
63
+ name: 'input',
64
+ type: 'InfraSetDataAtPathInput!',
65
+ },
66
+ ], input_types_1.connectionFieldsMap, 'InfraSetDataAtPathPayload'),
67
+ }),
68
+ setDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
69
+ client,
70
+ operation: 'mutation',
71
+ operationName: 'SetDataAtPath',
72
+ fieldName: 'setDataAtPath',
73
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'SetDataAtPath', 'setDataAtPath', options.select, args, [
74
+ {
75
+ name: 'input',
76
+ type: 'SetDataAtPathInput!',
77
+ },
78
+ ], input_types_1.connectionFieldsMap, 'SetDataAtPathPayload'),
79
+ }),
56
80
  copyGraph: (args, options) => new query_builder_1.QueryBuilder({
57
81
  client,
58
82
  operation: 'mutation',
@@ -137,6 +161,18 @@ function createMutationOperations(client) {
137
161
  },
138
162
  ], input_types_1.connectionFieldsMap, 'AddNodePayload'),
139
163
  }),
164
+ infraInsertNodeAtPath: (args, options) => new query_builder_1.QueryBuilder({
165
+ client,
166
+ operation: 'mutation',
167
+ operationName: 'InfraInsertNodeAtPath',
168
+ fieldName: 'infraInsertNodeAtPath',
169
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraInsertNodeAtPath', 'infraInsertNodeAtPath', options.select, args, [
170
+ {
171
+ name: 'input',
172
+ type: 'InfraInsertNodeAtPathInput!',
173
+ },
174
+ ], input_types_1.connectionFieldsMap, 'InfraInsertNodeAtPathPayload'),
175
+ }),
140
176
  insertNodeAtPath: (args, options) => new query_builder_1.QueryBuilder({
141
177
  client,
142
178
  operation: 'mutation',
@@ -1,6 +1,9 @@
1
1
  import type { OrmClientConfig } from './client';
2
- import { PlatformConfigDefinitionModel } from './models/platformConfigDefinition';
3
2
  import { PlatformConfigModel } from './models/platformConfig';
3
+ import { ConfigModel } from './models/config';
4
+ import { PlatformInternalSecretModel } from './models/platformInternalSecret';
5
+ import { PlatformSecretModel } from './models/platformSecret';
6
+ import { SecretModel } from './models/secret';
4
7
  export type { OrmClientConfig, QueryResult, GraphQLError, GraphQLAdapter } from './client';
5
8
  export { GraphQLRequestError, FetchAdapter } from './client';
6
9
  export { QueryBuilder } from './query-builder';
@@ -31,48 +34,71 @@ export { createMutationOperations } from './mutation';
31
34
  * ```
32
35
  */
33
36
  export declare function createClient(config: OrmClientConfig): {
34
- platformConfigDefinition: PlatformConfigDefinitionModel;
35
37
  platformConfig: PlatformConfigModel;
38
+ config: ConfigModel;
39
+ platformInternalSecret: PlatformInternalSecretModel;
40
+ platformSecret: PlatformSecretModel;
41
+ secret: SecretModel;
36
42
  mutation: {
43
+ platformInternalSecretsDel: <S extends import("./input-types").PlatformInternalSecretsDelPayloadSelect>(args: import("./mutation").PlatformInternalSecretsDelVariables, options: {
44
+ select: S;
45
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInternalSecretsDelPayloadSelect>) => import("./query-builder").QueryBuilder<{
46
+ platformInternalSecretsDel: import("./select-types").InferSelectResult<import("./input-types").PlatformInternalSecretsDelPayload, S> | null;
47
+ }>;
37
48
  platformSecretsDel: <S extends import("./input-types").PlatformSecretsDelPayloadSelect>(args: import("./mutation").PlatformSecretsDelVariables, options: {
38
49
  select: S;
39
50
  } & import("./select-types").StrictSelect<S, import("./input-types").PlatformSecretsDelPayloadSelect>) => import("./query-builder").QueryBuilder<{
40
51
  platformSecretsDel: import("./select-types").InferSelectResult<import("./input-types").PlatformSecretsDelPayload, S> | null;
41
52
  }>;
42
- orgSecretsDel: <S extends import("./input-types").OrgSecretsDelPayloadSelect>(args: import("./mutation").OrgSecretsDelVariables, options: {
53
+ _secretsDel: <S extends import("./input-types")._SecretsDelPayloadSelect>(args: import("./mutation")._secretsDelVariables, options: {
54
+ select: S;
55
+ } & import("./select-types").StrictSelect<S, import("./input-types")._SecretsDelPayloadSelect>) => import("./query-builder").QueryBuilder<{
56
+ _secretsDel: import("./select-types").InferSelectResult<import("./input-types")._SecretsDelPayload, S> | null;
57
+ }>;
58
+ platformInternalSecretsRemoveArray: <S extends import("./input-types").PlatformInternalSecretsRemoveArrayPayloadSelect>(args: import("./mutation").PlatformInternalSecretsRemoveArrayVariables, options: {
43
59
  select: S;
44
- } & import("./select-types").StrictSelect<S, import("./input-types").OrgSecretsDelPayloadSelect>) => import("./query-builder").QueryBuilder<{
45
- orgSecretsDel: import("./select-types").InferSelectResult<import("./input-types").OrgSecretsDelPayload, S> | null;
60
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInternalSecretsRemoveArrayPayloadSelect>) => import("./query-builder").QueryBuilder<{
61
+ platformInternalSecretsRemoveArray: import("./select-types").InferSelectResult<import("./input-types").PlatformInternalSecretsRemoveArrayPayload, S> | null;
46
62
  }>;
47
63
  platformSecretsRemoveArray: <S extends import("./input-types").PlatformSecretsRemoveArrayPayloadSelect>(args: import("./mutation").PlatformSecretsRemoveArrayVariables, options: {
48
64
  select: S;
49
65
  } & import("./select-types").StrictSelect<S, import("./input-types").PlatformSecretsRemoveArrayPayloadSelect>) => import("./query-builder").QueryBuilder<{
50
66
  platformSecretsRemoveArray: import("./select-types").InferSelectResult<import("./input-types").PlatformSecretsRemoveArrayPayload, S> | null;
51
67
  }>;
52
- orgSecretsRemoveArray: <S extends import("./input-types").OrgSecretsRemoveArrayPayloadSelect>(args: import("./mutation").OrgSecretsRemoveArrayVariables, options: {
68
+ _secretsRemoveArray: <S extends import("./input-types")._SecretsRemoveArrayPayloadSelect>(args: import("./mutation")._secretsRemoveArrayVariables, options: {
69
+ select: S;
70
+ } & import("./select-types").StrictSelect<S, import("./input-types")._SecretsRemoveArrayPayloadSelect>) => import("./query-builder").QueryBuilder<{
71
+ _secretsRemoveArray: import("./select-types").InferSelectResult<import("./input-types")._SecretsRemoveArrayPayload, S> | null;
72
+ }>;
73
+ platformInternalSecretsRotate: <S extends import("./input-types").PlatformInternalSecretsRotatePayloadSelect>(args: import("./mutation").PlatformInternalSecretsRotateVariables, options: {
53
74
  select: S;
54
- } & import("./select-types").StrictSelect<S, import("./input-types").OrgSecretsRemoveArrayPayloadSelect>) => import("./query-builder").QueryBuilder<{
55
- orgSecretsRemoveArray: import("./select-types").InferSelectResult<import("./input-types").OrgSecretsRemoveArrayPayload, S> | null;
75
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInternalSecretsRotatePayloadSelect>) => import("./query-builder").QueryBuilder<{
76
+ platformInternalSecretsRotate: import("./select-types").InferSelectResult<import("./input-types").PlatformInternalSecretsRotatePayload, S> | null;
77
+ }>;
78
+ platformInternalSecretsSet: <S extends import("./input-types").PlatformInternalSecretsSetPayloadSelect>(args: import("./mutation").PlatformInternalSecretsSetVariables, options: {
79
+ select: S;
80
+ } & import("./select-types").StrictSelect<S, import("./input-types").PlatformInternalSecretsSetPayloadSelect>) => import("./query-builder").QueryBuilder<{
81
+ platformInternalSecretsSet: import("./select-types").InferSelectResult<import("./input-types").PlatformInternalSecretsSetPayload, S> | null;
56
82
  }>;
57
83
  platformSecretsRotate: <S extends import("./input-types").PlatformSecretsRotatePayloadSelect>(args: import("./mutation").PlatformSecretsRotateVariables, options: {
58
84
  select: S;
59
85
  } & import("./select-types").StrictSelect<S, import("./input-types").PlatformSecretsRotatePayloadSelect>) => import("./query-builder").QueryBuilder<{
60
86
  platformSecretsRotate: import("./select-types").InferSelectResult<import("./input-types").PlatformSecretsRotatePayload, S> | null;
61
87
  }>;
88
+ _secretsRotate: <S extends import("./input-types")._SecretsRotatePayloadSelect>(args: import("./mutation")._secretsRotateVariables, options: {
89
+ select: S;
90
+ } & import("./select-types").StrictSelect<S, import("./input-types")._SecretsRotatePayloadSelect>) => import("./query-builder").QueryBuilder<{
91
+ _secretsRotate: import("./select-types").InferSelectResult<import("./input-types")._SecretsRotatePayload, S> | null;
92
+ }>;
62
93
  platformSecretsSet: <S extends import("./input-types").PlatformSecretsSetPayloadSelect>(args: import("./mutation").PlatformSecretsSetVariables, options: {
63
94
  select: S;
64
95
  } & import("./select-types").StrictSelect<S, import("./input-types").PlatformSecretsSetPayloadSelect>) => import("./query-builder").QueryBuilder<{
65
96
  platformSecretsSet: import("./select-types").InferSelectResult<import("./input-types").PlatformSecretsSetPayload, S> | null;
66
97
  }>;
67
- orgSecretsRotate: <S extends import("./input-types").OrgSecretsRotatePayloadSelect>(args: import("./mutation").OrgSecretsRotateVariables, options: {
68
- select: S;
69
- } & import("./select-types").StrictSelect<S, import("./input-types").OrgSecretsRotatePayloadSelect>) => import("./query-builder").QueryBuilder<{
70
- orgSecretsRotate: import("./select-types").InferSelectResult<import("./input-types").OrgSecretsRotatePayload, S> | null;
71
- }>;
72
- orgSecretsSet: <S extends import("./input-types").OrgSecretsSetPayloadSelect>(args: import("./mutation").OrgSecretsSetVariables, options: {
98
+ _secretsSet: <S extends import("./input-types")._SecretsSetPayloadSelect>(args: import("./mutation")._secretsSetVariables, options: {
73
99
  select: S;
74
- } & import("./select-types").StrictSelect<S, import("./input-types").OrgSecretsSetPayloadSelect>) => import("./query-builder").QueryBuilder<{
75
- orgSecretsSet: import("./select-types").InferSelectResult<import("./input-types").OrgSecretsSetPayload, S> | null;
100
+ } & import("./select-types").StrictSelect<S, import("./input-types")._SecretsSetPayloadSelect>) => import("./query-builder").QueryBuilder<{
101
+ _secretsSet: import("./select-types").InferSelectResult<import("./input-types")._SecretsSetPayload, S> | null;
76
102
  }>;
77
103
  provisionBucket: <S extends import("./input-types").ProvisionBucketPayloadSelect>(args: import("./mutation").ProvisionBucketVariables, options: {
78
104
  select: S;