@constructive-io/sdk 1.11.9 → 1.11.11

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 (369) hide show
  1. package/admin/orm/index.d.ts +58 -34
  2. package/admin/orm/index.js +40 -16
  3. package/admin/orm/input-types.d.ts +3824 -943
  4. package/admin/orm/input-types.js +33 -5
  5. package/admin/orm/models/appCapability.d.ts +54 -0
  6. package/admin/orm/models/appCapability.js +104 -0
  7. package/admin/orm/models/appCapabilityDefault.d.ts +54 -0
  8. package/admin/orm/models/{orgPermissionDefault.js → appCapabilityDefault.js} +27 -27
  9. package/admin/orm/models/appCapabilityDefaultCapability.d.ts +54 -0
  10. package/admin/orm/models/{orgPermissionDefaultPermission.js → appCapabilityDefaultCapability.js} +27 -27
  11. package/admin/orm/models/appCapabilityDefaultGrant.d.ts +54 -0
  12. package/admin/orm/models/{appPermissionDefaultGrant.js → appCapabilityDefaultGrant.js} +27 -27
  13. package/admin/orm/models/appMembershipProfile.d.ts +54 -0
  14. package/admin/orm/models/appMembershipProfile.js +104 -0
  15. package/admin/orm/models/appProfile.d.ts +54 -0
  16. package/admin/orm/models/appProfile.js +104 -0
  17. package/admin/orm/models/appProfileCapability.d.ts +54 -0
  18. package/admin/orm/models/appProfileCapability.js +104 -0
  19. package/admin/orm/models/appProfileDefinitionGrant.d.ts +54 -0
  20. package/admin/orm/models/appProfileDefinitionGrant.js +104 -0
  21. package/admin/orm/models/appProfileGrant.d.ts +54 -0
  22. package/admin/orm/models/appProfileGrant.js +104 -0
  23. package/admin/orm/models/appProfileTemplate.d.ts +54 -0
  24. package/admin/orm/models/appProfileTemplate.js +104 -0
  25. package/admin/orm/models/index.d.ts +20 -8
  26. package/admin/orm/models/index.js +41 -17
  27. package/admin/orm/models/orgCapability.d.ts +54 -0
  28. package/admin/orm/models/orgCapability.js +104 -0
  29. package/admin/orm/models/orgCapabilityDefault.d.ts +54 -0
  30. package/admin/orm/models/{appPermissionDefault.js → orgCapabilityDefault.js} +27 -27
  31. package/admin/orm/models/orgCapabilityDefaultCapability.d.ts +54 -0
  32. package/admin/orm/models/{appPermissionDefaultPermission.js → orgCapabilityDefaultCapability.js} +27 -27
  33. package/admin/orm/models/orgCapabilityDefaultGrant.d.ts +54 -0
  34. package/admin/orm/models/{orgPermissionDefaultGrant.js → orgCapabilityDefaultGrant.js} +27 -27
  35. package/admin/orm/models/orgMembershipProfile.d.ts +54 -0
  36. package/admin/orm/models/orgMembershipProfile.js +104 -0
  37. package/admin/orm/models/orgProfile.d.ts +54 -0
  38. package/admin/orm/models/orgProfile.js +104 -0
  39. package/admin/orm/models/orgProfileCapability.d.ts +54 -0
  40. package/admin/orm/models/orgProfileCapability.js +104 -0
  41. package/admin/orm/models/orgProfileDefinitionGrant.d.ts +54 -0
  42. package/admin/orm/models/orgProfileDefinitionGrant.js +104 -0
  43. package/admin/orm/models/orgProfileGrant.d.ts +54 -0
  44. package/admin/orm/models/orgProfileGrant.js +104 -0
  45. package/admin/orm/models/orgProfileTemplate.d.ts +54 -0
  46. package/admin/orm/models/orgProfileTemplate.js +104 -0
  47. package/admin/orm/query/index.d.ts +33 -33
  48. package/admin/orm/query/index.js +56 -56
  49. package/api/orm/index.d.ts +33 -21
  50. package/api/orm/index.js +20 -8
  51. package/api/orm/input-types.d.ts +2594 -895
  52. package/api/orm/input-types.js +19 -4
  53. package/api/orm/models/api.d.ts +54 -0
  54. package/api/orm/models/api.js +104 -0
  55. package/api/orm/models/app.d.ts +54 -0
  56. package/api/orm/models/app.js +104 -0
  57. package/api/orm/models/appComponent.d.ts +54 -0
  58. package/api/orm/models/{platformApis.js → appComponent.js} +27 -27
  59. package/api/orm/models/emailIdentity.d.ts +54 -0
  60. package/api/orm/models/emailIdentity.js +104 -0
  61. package/api/orm/models/emailProviderAccount.d.ts +54 -0
  62. package/api/orm/models/emailProviderAccount.js +104 -0
  63. package/api/orm/models/emailSiteIdentity.d.ts +54 -0
  64. package/api/orm/models/emailSiteIdentity.js +104 -0
  65. package/api/orm/models/index.d.ts +10 -4
  66. package/api/orm/models/index.js +22 -10
  67. package/api/orm/models/platformApi.d.ts +54 -0
  68. package/api/orm/models/platformApi.js +104 -0
  69. package/api/orm/models/platformEmailIdentity.d.ts +54 -0
  70. package/api/orm/models/platformEmailIdentity.js +104 -0
  71. package/api/orm/models/platformEmailProviderAccount.d.ts +54 -0
  72. package/api/orm/models/platformEmailProviderAccount.js +104 -0
  73. package/api/orm/models/platformEmailSiteIdentity.d.ts +54 -0
  74. package/api/orm/models/platformEmailSiteIdentity.js +104 -0
  75. package/api/orm/mutation/index.d.ts +22 -22
  76. package/api/orm/mutation/index.js +30 -30
  77. package/auth/orm/index.d.ts +10 -0
  78. package/auth/orm/input-types.d.ts +60 -6
  79. package/auth/orm/mutation/index.d.ts +17 -1
  80. package/auth/orm/mutation/index.js +24 -0
  81. package/compute/orm/index.d.ts +47 -0
  82. package/compute/orm/index.js +2 -0
  83. package/compute/orm/input-types.d.ts +470 -48
  84. package/compute/orm/models/contentPreset.d.ts +54 -0
  85. package/{admin/orm/models/appPermission.js → compute/orm/models/contentPreset.js} +27 -27
  86. package/compute/orm/models/index.d.ts +1 -0
  87. package/compute/orm/models/index.js +4 -2
  88. package/compute/orm/mutation/index.d.ts +73 -1
  89. package/compute/orm/mutation/index.js +108 -0
  90. package/esm/admin/orm/index.d.ts +58 -34
  91. package/esm/admin/orm/index.js +40 -16
  92. package/esm/admin/orm/input-types.d.ts +3824 -943
  93. package/esm/admin/orm/input-types.js +33 -5
  94. package/esm/admin/orm/models/appCapability.d.ts +54 -0
  95. package/esm/admin/orm/models/appCapability.js +100 -0
  96. package/esm/admin/orm/models/appCapabilityDefault.d.ts +54 -0
  97. package/esm/admin/orm/models/{appPermissionDefault.js → appCapabilityDefault.js} +25 -25
  98. package/esm/admin/orm/models/appCapabilityDefaultCapability.d.ts +54 -0
  99. package/esm/admin/orm/models/{appPermissionDefaultPermission.js → appCapabilityDefaultCapability.js} +25 -25
  100. package/esm/admin/orm/models/appCapabilityDefaultGrant.d.ts +54 -0
  101. package/esm/admin/orm/models/{appPermissionDefaultGrant.js → appCapabilityDefaultGrant.js} +25 -25
  102. package/esm/admin/orm/models/appMembershipProfile.d.ts +54 -0
  103. package/esm/admin/orm/models/appMembershipProfile.js +100 -0
  104. package/esm/admin/orm/models/appProfile.d.ts +54 -0
  105. package/esm/admin/orm/models/appProfile.js +100 -0
  106. package/esm/admin/orm/models/appProfileCapability.d.ts +54 -0
  107. package/esm/admin/orm/models/appProfileCapability.js +100 -0
  108. package/esm/admin/orm/models/appProfileDefinitionGrant.d.ts +54 -0
  109. package/esm/admin/orm/models/appProfileDefinitionGrant.js +100 -0
  110. package/esm/admin/orm/models/appProfileGrant.d.ts +54 -0
  111. package/esm/admin/orm/models/appProfileGrant.js +100 -0
  112. package/esm/admin/orm/models/appProfileTemplate.d.ts +54 -0
  113. package/esm/admin/orm/models/appProfileTemplate.js +100 -0
  114. package/esm/admin/orm/models/index.d.ts +20 -8
  115. package/esm/admin/orm/models/index.js +20 -8
  116. package/esm/admin/orm/models/orgCapability.d.ts +54 -0
  117. package/esm/admin/orm/models/{orgPermission.js → orgCapability.js} +25 -25
  118. package/esm/admin/orm/models/orgCapabilityDefault.d.ts +54 -0
  119. package/esm/admin/orm/models/{orgPermissionDefault.js → orgCapabilityDefault.js} +25 -25
  120. package/esm/admin/orm/models/orgCapabilityDefaultCapability.d.ts +54 -0
  121. package/esm/admin/orm/models/{orgPermissionDefaultPermission.js → orgCapabilityDefaultCapability.js} +25 -25
  122. package/esm/admin/orm/models/orgCapabilityDefaultGrant.d.ts +54 -0
  123. package/esm/admin/orm/models/{orgPermissionDefaultGrant.js → orgCapabilityDefaultGrant.js} +25 -25
  124. package/esm/admin/orm/models/orgMembershipProfile.d.ts +54 -0
  125. package/esm/admin/orm/models/orgMembershipProfile.js +100 -0
  126. package/esm/admin/orm/models/orgProfile.d.ts +54 -0
  127. package/esm/admin/orm/models/orgProfile.js +100 -0
  128. package/esm/admin/orm/models/orgProfileCapability.d.ts +54 -0
  129. package/esm/admin/orm/models/orgProfileCapability.js +100 -0
  130. package/esm/admin/orm/models/orgProfileDefinitionGrant.d.ts +54 -0
  131. package/esm/admin/orm/models/orgProfileDefinitionGrant.js +100 -0
  132. package/esm/admin/orm/models/orgProfileGrant.d.ts +54 -0
  133. package/esm/admin/orm/models/orgProfileGrant.js +100 -0
  134. package/esm/admin/orm/models/orgProfileTemplate.d.ts +54 -0
  135. package/esm/admin/orm/models/orgProfileTemplate.js +100 -0
  136. package/esm/admin/orm/query/index.d.ts +33 -33
  137. package/esm/admin/orm/query/index.js +56 -56
  138. package/esm/api/orm/index.d.ts +33 -21
  139. package/esm/api/orm/index.js +20 -8
  140. package/esm/api/orm/input-types.d.ts +2594 -895
  141. package/esm/api/orm/input-types.js +19 -4
  142. package/esm/api/orm/models/api.d.ts +54 -0
  143. package/esm/api/orm/models/{apis.js → api.js} +25 -25
  144. package/esm/api/orm/models/app.d.ts +54 -0
  145. package/esm/api/orm/models/app.js +100 -0
  146. package/esm/api/orm/models/appComponent.d.ts +54 -0
  147. package/esm/api/orm/models/appComponent.js +100 -0
  148. package/esm/api/orm/models/emailIdentity.d.ts +54 -0
  149. package/esm/api/orm/models/emailIdentity.js +100 -0
  150. package/esm/api/orm/models/emailProviderAccount.d.ts +54 -0
  151. package/esm/api/orm/models/emailProviderAccount.js +100 -0
  152. package/esm/api/orm/models/emailSiteIdentity.d.ts +54 -0
  153. package/esm/api/orm/models/emailSiteIdentity.js +100 -0
  154. package/esm/api/orm/models/index.d.ts +10 -4
  155. package/esm/api/orm/models/index.js +10 -4
  156. package/esm/api/orm/models/platformApi.d.ts +54 -0
  157. package/esm/api/orm/models/platformApi.js +100 -0
  158. package/esm/api/orm/models/platformEmailIdentity.d.ts +54 -0
  159. package/esm/api/orm/models/platformEmailIdentity.js +100 -0
  160. package/esm/api/orm/models/platformEmailProviderAccount.d.ts +54 -0
  161. package/esm/api/orm/models/platformEmailProviderAccount.js +100 -0
  162. package/esm/api/orm/models/platformEmailSiteIdentity.d.ts +54 -0
  163. package/esm/api/orm/models/platformEmailSiteIdentity.js +100 -0
  164. package/esm/api/orm/mutation/index.d.ts +22 -22
  165. package/esm/api/orm/mutation/index.js +30 -30
  166. package/esm/auth/orm/index.d.ts +10 -0
  167. package/esm/auth/orm/input-types.d.ts +60 -6
  168. package/esm/auth/orm/mutation/index.d.ts +17 -1
  169. package/esm/auth/orm/mutation/index.js +24 -0
  170. package/esm/compute/orm/index.d.ts +47 -0
  171. package/esm/compute/orm/index.js +2 -0
  172. package/esm/compute/orm/input-types.d.ts +470 -48
  173. package/esm/compute/orm/models/contentPreset.d.ts +54 -0
  174. package/esm/compute/orm/models/contentPreset.js +100 -0
  175. package/esm/compute/orm/models/index.d.ts +1 -0
  176. package/esm/compute/orm/models/index.js +1 -0
  177. package/esm/compute/orm/mutation/index.d.ts +73 -1
  178. package/esm/compute/orm/mutation/index.js +108 -0
  179. package/esm/modules/orm/index.d.ts +16 -50
  180. package/esm/modules/orm/index.js +16 -5
  181. package/esm/modules/orm/input-types.d.ts +2317 -774
  182. package/esm/modules/orm/input-types.js +6 -0
  183. package/esm/modules/orm/models/capabilitiesModule.d.ts +54 -0
  184. package/esm/modules/orm/models/capabilitiesModule.js +100 -0
  185. package/esm/modules/orm/models/contentPresetModule.d.ts +54 -0
  186. package/esm/modules/orm/models/contentPresetModule.js +100 -0
  187. package/esm/modules/orm/models/dataCapabilitiesField.d.ts +54 -0
  188. package/esm/modules/orm/models/dataCapabilitiesField.js +100 -0
  189. package/esm/modules/orm/models/emailSenderModule.d.ts +54 -0
  190. package/esm/modules/orm/models/{permissionsModule.js → emailSenderModule.js} +25 -25
  191. package/esm/modules/orm/models/fileRefField.d.ts +54 -0
  192. package/esm/modules/orm/models/fileRefField.js +100 -0
  193. package/esm/modules/orm/models/index.d.ts +8 -1
  194. package/esm/modules/orm/models/index.js +8 -1
  195. package/esm/modules/orm/models/oauthRequestsModule.d.ts +54 -0
  196. package/esm/modules/orm/models/oauthRequestsModule.js +100 -0
  197. package/esm/modules/orm/models/scopeTypesModule.d.ts +54 -0
  198. package/esm/modules/orm/models/scopeTypesModule.js +100 -0
  199. package/esm/modules/orm/models/userSettingsSecurityModule.d.ts +54 -0
  200. package/esm/modules/orm/models/userSettingsSecurityModule.js +100 -0
  201. package/esm/modules/orm/mutation/index.d.ts +1 -85
  202. package/esm/modules/orm/mutation/index.js +0 -84
  203. package/esm/objects/orm/index.d.ts +15 -0
  204. package/esm/objects/orm/input-types.d.ts +64 -0
  205. package/esm/objects/orm/mutation/index.d.ts +25 -1
  206. package/esm/objects/orm/mutation/index.js +36 -0
  207. package/esm/usage/orm/index.d.ts +98 -0
  208. package/esm/usage/orm/index.js +43 -0
  209. package/esm/usage/orm/input-types.d.ts +3728 -98
  210. package/esm/usage/orm/input-types.js +10 -0
  211. package/esm/usage/orm/models/appAchievementReward.d.ts +54 -0
  212. package/esm/usage/orm/models/appAchievementReward.js +100 -0
  213. package/esm/usage/orm/models/appEvent.d.ts +56 -0
  214. package/esm/usage/orm/models/appEvent.js +103 -0
  215. package/esm/usage/orm/models/appEventAggregate.d.ts +54 -0
  216. package/esm/usage/orm/models/appEventAggregate.js +100 -0
  217. package/esm/usage/orm/models/appEventType.d.ts +54 -0
  218. package/esm/usage/orm/models/appEventType.js +100 -0
  219. package/esm/usage/orm/models/appLevel.d.ts +54 -0
  220. package/esm/usage/orm/models/appLevel.js +100 -0
  221. package/esm/usage/orm/models/appLevelGrant.d.ts +54 -0
  222. package/esm/{admin/orm/models/appPermission.js → usage/orm/models/appLevelGrant.js} +25 -25
  223. package/esm/usage/orm/models/appLevelRequirement.d.ts +54 -0
  224. package/esm/usage/orm/models/appLevelRequirement.js +100 -0
  225. package/esm/usage/orm/models/billingUsageSummary.d.ts +54 -0
  226. package/esm/usage/orm/models/billingUsageSummary.js +100 -0
  227. package/esm/usage/orm/models/index.d.ts +20 -0
  228. package/esm/usage/orm/models/index.js +20 -0
  229. package/esm/usage/orm/models/ledger.d.ts +56 -0
  230. package/esm/usage/orm/models/ledger.js +103 -0
  231. package/esm/usage/orm/models/meter.d.ts +54 -0
  232. package/esm/usage/orm/models/meter.js +100 -0
  233. package/esm/usage/orm/models/meterCredit.d.ts +54 -0
  234. package/esm/usage/orm/models/meterCredit.js +100 -0
  235. package/esm/usage/orm/models/meterDefault.d.ts +54 -0
  236. package/esm/usage/orm/models/meterDefault.js +100 -0
  237. package/esm/usage/orm/models/meterSource.d.ts +54 -0
  238. package/esm/usage/orm/models/meterSource.js +100 -0
  239. package/esm/usage/orm/models/plan.d.ts +54 -0
  240. package/esm/usage/orm/models/plan.js +100 -0
  241. package/esm/usage/orm/models/planCap.d.ts +54 -0
  242. package/esm/usage/orm/models/planCap.js +100 -0
  243. package/esm/usage/orm/models/planLimit.d.ts +54 -0
  244. package/esm/usage/orm/models/planLimit.js +100 -0
  245. package/esm/usage/orm/models/planMeterLimit.d.ts +54 -0
  246. package/esm/usage/orm/models/planMeterLimit.js +100 -0
  247. package/esm/usage/orm/models/planOverride.d.ts +54 -0
  248. package/esm/{api/orm/models/platformApis.js → usage/orm/models/planOverride.js} +25 -25
  249. package/esm/usage/orm/models/planPricing.d.ts +54 -0
  250. package/esm/usage/orm/models/planPricing.js +100 -0
  251. package/esm/usage/orm/models/planSubscription.d.ts +54 -0
  252. package/esm/usage/orm/models/planSubscription.js +100 -0
  253. package/esm/usage/orm/mutation/index.d.ts +49 -1
  254. package/esm/usage/orm/mutation/index.js +72 -0
  255. package/esm/usage/orm/query/index.d.ts +52 -0
  256. package/esm/usage/orm/query/index.js +71 -0
  257. package/modules/orm/index.d.ts +16 -50
  258. package/modules/orm/index.js +17 -7
  259. package/modules/orm/input-types.d.ts +2317 -774
  260. package/modules/orm/input-types.js +6 -0
  261. package/modules/orm/models/capabilitiesModule.d.ts +54 -0
  262. package/modules/orm/models/capabilitiesModule.js +104 -0
  263. package/modules/orm/models/contentPresetModule.d.ts +54 -0
  264. package/modules/orm/models/contentPresetModule.js +104 -0
  265. package/modules/orm/models/dataCapabilitiesField.d.ts +54 -0
  266. package/modules/orm/models/dataCapabilitiesField.js +104 -0
  267. package/modules/orm/models/emailSenderModule.d.ts +54 -0
  268. package/modules/orm/models/{permissionsModule.js → emailSenderModule.js} +27 -27
  269. package/modules/orm/models/fileRefField.d.ts +54 -0
  270. package/modules/orm/models/fileRefField.js +104 -0
  271. package/modules/orm/models/index.d.ts +8 -1
  272. package/modules/orm/models/index.js +18 -4
  273. package/modules/orm/models/oauthRequestsModule.d.ts +54 -0
  274. package/modules/orm/models/oauthRequestsModule.js +104 -0
  275. package/modules/orm/models/scopeTypesModule.d.ts +54 -0
  276. package/modules/orm/models/scopeTypesModule.js +104 -0
  277. package/modules/orm/models/userSettingsSecurityModule.d.ts +54 -0
  278. package/modules/orm/models/userSettingsSecurityModule.js +104 -0
  279. package/modules/orm/mutation/index.d.ts +1 -85
  280. package/modules/orm/mutation/index.js +0 -84
  281. package/objects/orm/index.d.ts +15 -0
  282. package/objects/orm/input-types.d.ts +64 -0
  283. package/objects/orm/mutation/index.d.ts +25 -1
  284. package/objects/orm/mutation/index.js +36 -0
  285. package/package.json +4 -4
  286. package/usage/orm/index.d.ts +98 -0
  287. package/usage/orm/index.js +45 -1
  288. package/usage/orm/input-types.d.ts +3728 -98
  289. package/usage/orm/input-types.js +10 -0
  290. package/usage/orm/models/appAchievementReward.d.ts +54 -0
  291. package/usage/orm/models/appAchievementReward.js +104 -0
  292. package/usage/orm/models/appEvent.d.ts +56 -0
  293. package/usage/orm/models/appEvent.js +107 -0
  294. package/usage/orm/models/appEventAggregate.d.ts +54 -0
  295. package/usage/orm/models/appEventAggregate.js +104 -0
  296. package/usage/orm/models/appEventType.d.ts +54 -0
  297. package/usage/orm/models/appEventType.js +104 -0
  298. package/usage/orm/models/appLevel.d.ts +54 -0
  299. package/usage/orm/models/appLevel.js +104 -0
  300. package/usage/orm/models/appLevelGrant.d.ts +54 -0
  301. package/{admin/orm/models/orgPermission.js → usage/orm/models/appLevelGrant.js} +27 -27
  302. package/usage/orm/models/appLevelRequirement.d.ts +54 -0
  303. package/usage/orm/models/appLevelRequirement.js +104 -0
  304. package/usage/orm/models/billingUsageSummary.d.ts +54 -0
  305. package/usage/orm/models/billingUsageSummary.js +104 -0
  306. package/usage/orm/models/index.d.ts +20 -0
  307. package/usage/orm/models/index.js +41 -1
  308. package/usage/orm/models/ledger.d.ts +56 -0
  309. package/usage/orm/models/ledger.js +107 -0
  310. package/usage/orm/models/meter.d.ts +54 -0
  311. package/usage/orm/models/meter.js +104 -0
  312. package/usage/orm/models/meterCredit.d.ts +54 -0
  313. package/usage/orm/models/meterCredit.js +104 -0
  314. package/usage/orm/models/meterDefault.d.ts +54 -0
  315. package/usage/orm/models/meterDefault.js +104 -0
  316. package/usage/orm/models/meterSource.d.ts +54 -0
  317. package/usage/orm/models/meterSource.js +104 -0
  318. package/usage/orm/models/plan.d.ts +54 -0
  319. package/{api/orm/models/apis.js → usage/orm/models/plan.js} +27 -27
  320. package/usage/orm/models/planCap.d.ts +54 -0
  321. package/usage/orm/models/planCap.js +104 -0
  322. package/usage/orm/models/planLimit.d.ts +54 -0
  323. package/usage/orm/models/planLimit.js +104 -0
  324. package/usage/orm/models/planMeterLimit.d.ts +54 -0
  325. package/usage/orm/models/planMeterLimit.js +104 -0
  326. package/usage/orm/models/planOverride.d.ts +54 -0
  327. package/usage/orm/models/planOverride.js +104 -0
  328. package/usage/orm/models/planPricing.d.ts +54 -0
  329. package/usage/orm/models/planPricing.js +104 -0
  330. package/usage/orm/models/planSubscription.d.ts +54 -0
  331. package/usage/orm/models/planSubscription.js +104 -0
  332. package/usage/orm/mutation/index.d.ts +49 -1
  333. package/usage/orm/mutation/index.js +72 -0
  334. package/usage/orm/query/index.d.ts +52 -0
  335. package/usage/orm/query/index.js +74 -0
  336. package/admin/orm/models/appPermission.d.ts +0 -54
  337. package/admin/orm/models/appPermissionDefault.d.ts +0 -54
  338. package/admin/orm/models/appPermissionDefaultGrant.d.ts +0 -54
  339. package/admin/orm/models/appPermissionDefaultPermission.d.ts +0 -54
  340. package/admin/orm/models/orgPermission.d.ts +0 -54
  341. package/admin/orm/models/orgPermissionDefault.d.ts +0 -54
  342. package/admin/orm/models/orgPermissionDefaultGrant.d.ts +0 -54
  343. package/admin/orm/models/orgPermissionDefaultPermission.d.ts +0 -54
  344. package/api/orm/models/apis.d.ts +0 -54
  345. package/api/orm/models/astMigration.d.ts +0 -36
  346. package/api/orm/models/astMigration.js +0 -80
  347. package/api/orm/models/platformApis.d.ts +0 -54
  348. package/api/orm/models/sqlAction.d.ts +0 -36
  349. package/api/orm/models/sqlAction.js +0 -80
  350. package/esm/admin/orm/models/appPermission.d.ts +0 -54
  351. package/esm/admin/orm/models/appPermissionDefault.d.ts +0 -54
  352. package/esm/admin/orm/models/appPermissionDefaultGrant.d.ts +0 -54
  353. package/esm/admin/orm/models/appPermissionDefaultPermission.d.ts +0 -54
  354. package/esm/admin/orm/models/orgPermission.d.ts +0 -54
  355. package/esm/admin/orm/models/orgPermissionDefault.d.ts +0 -54
  356. package/esm/admin/orm/models/orgPermissionDefaultGrant.d.ts +0 -54
  357. package/esm/admin/orm/models/orgPermissionDefaultPermission.d.ts +0 -54
  358. package/esm/api/orm/models/apis.d.ts +0 -54
  359. package/esm/api/orm/models/astMigration.d.ts +0 -36
  360. package/esm/api/orm/models/astMigration.js +0 -76
  361. package/esm/api/orm/models/platformApis.d.ts +0 -54
  362. package/esm/api/orm/models/sqlAction.d.ts +0 -36
  363. package/esm/api/orm/models/sqlAction.js +0 -76
  364. package/esm/modules/orm/models/permissionsModule.d.ts +0 -54
  365. package/esm/modules/orm/query/index.d.ts +0 -39
  366. package/esm/modules/orm/query/index.js +0 -54
  367. package/modules/orm/models/permissionsModule.d.ts +0 -54
  368. package/modules/orm/query/index.d.ts +0 -39
  369. package/modules/orm/query/index.js +0 -57
@@ -0,0 +1,54 @@
1
+ /**
2
+ * ContentPreset 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 { ContentPresetWithRelations, ContentPresetSelect, ContentPresetFilter, ContentPresetOrderBy, CreateContentPresetInput, ContentPresetPatch } from '../input-types';
10
+ export declare class ContentPresetModel {
11
+ private client;
12
+ constructor(client: OrmClient);
13
+ findMany<S extends ContentPresetSelect>(args: FindManyArgs<S, ContentPresetFilter, ContentPresetOrderBy> & {
14
+ select: S;
15
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
16
+ contentPresets: ConnectionResult<InferSelectResult<ContentPresetWithRelations, S>>;
17
+ }>;
18
+ findFirst<S extends ContentPresetSelect>(args: FindFirstArgs<S, ContentPresetFilter, ContentPresetOrderBy> & {
19
+ select: S;
20
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
21
+ contentPreset: InferSelectResult<ContentPresetWithRelations, S> | null;
22
+ }>;
23
+ findOne<S extends ContentPresetSelect>(args: {
24
+ id: string;
25
+ select: S;
26
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
27
+ contentPreset: InferSelectResult<ContentPresetWithRelations, S> | null;
28
+ }>;
29
+ create<S extends ContentPresetSelect>(args: CreateArgs<S, CreateContentPresetInput['contentPreset']> & {
30
+ select: S;
31
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
32
+ createContentPreset: {
33
+ contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
34
+ };
35
+ }>;
36
+ update<S extends ContentPresetSelect>(args: UpdateArgs<S, {
37
+ id: string;
38
+ }, ContentPresetPatch> & {
39
+ select: S;
40
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
41
+ updateContentPreset: {
42
+ contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
43
+ };
44
+ }>;
45
+ delete<S extends ContentPresetSelect>(args: DeleteArgs<{
46
+ id: string;
47
+ }, S> & {
48
+ select: S;
49
+ } & StrictSelect<S, ContentPresetSelect>): QueryBuilder<{
50
+ deleteContentPreset: {
51
+ contentPreset: InferSelectResult<ContentPresetWithRelations, S>;
52
+ };
53
+ }>;
54
+ }
@@ -1,15 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AppPermissionModel = void 0;
3
+ exports.ContentPresetModel = void 0;
4
4
  const query_builder_1 = require("../query-builder");
5
5
  const input_types_1 = require("../input-types");
6
- class AppPermissionModel {
6
+ class ContentPresetModel {
7
7
  client;
8
8
  constructor(client) {
9
9
  this.client = client;
10
10
  }
11
11
  findMany(args) {
12
- const { document, variables } = (0, query_builder_1.buildFindManyDocument)('AppPermission', 'appPermissions', args.select, {
12
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ContentPreset', 'contentPresets', args.select, {
13
13
  where: args?.where,
14
14
  orderBy: args?.orderBy,
15
15
  first: args?.first,
@@ -17,88 +17,88 @@ class AppPermissionModel {
17
17
  after: args?.after,
18
18
  before: args?.before,
19
19
  offset: args?.offset,
20
- }, 'AppPermissionFilter', 'AppPermissionOrderBy', input_types_1.connectionFieldsMap);
20
+ }, 'ContentPresetFilter', 'ContentPresetOrderBy', input_types_1.connectionFieldsMap);
21
21
  return new query_builder_1.QueryBuilder({
22
22
  client: this.client,
23
23
  operation: 'query',
24
- operationName: 'AppPermission',
25
- fieldName: 'appPermissions',
24
+ operationName: 'ContentPreset',
25
+ fieldName: 'contentPresets',
26
26
  document,
27
27
  variables,
28
28
  });
29
29
  }
30
30
  findFirst(args) {
31
- const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('AppPermission', 'appPermissions', args.select, {
31
+ const { document, variables } = (0, query_builder_1.buildFindFirstDocument)('ContentPreset', 'contentPresets', args.select, {
32
32
  where: args?.where,
33
33
  orderBy: args?.orderBy,
34
- }, 'AppPermissionFilter', 'AppPermissionOrderBy', input_types_1.connectionFieldsMap);
34
+ }, 'ContentPresetFilter', 'ContentPresetOrderBy', input_types_1.connectionFieldsMap);
35
35
  return new query_builder_1.QueryBuilder({
36
36
  client: this.client,
37
37
  operation: 'query',
38
- operationName: 'AppPermission',
39
- fieldName: 'appPermission',
38
+ operationName: 'ContentPreset',
39
+ fieldName: 'contentPreset',
40
40
  document,
41
41
  variables,
42
42
  transform: (data) => ({
43
- appPermission: data.appPermissions?.nodes?.[0] ?? null,
43
+ contentPreset: data.contentPresets?.nodes?.[0] ?? null,
44
44
  }),
45
45
  });
46
46
  }
47
47
  findOne(args) {
48
- const { document, variables } = (0, query_builder_1.buildFindManyDocument)('AppPermission', 'appPermissions', args.select, {
48
+ const { document, variables } = (0, query_builder_1.buildFindManyDocument)('ContentPreset', 'contentPresets', args.select, {
49
49
  where: {
50
50
  id: {
51
51
  equalTo: args.id,
52
52
  },
53
53
  },
54
54
  first: 1,
55
- }, 'AppPermissionFilter', 'AppPermissionOrderBy', input_types_1.connectionFieldsMap);
55
+ }, 'ContentPresetFilter', 'ContentPresetOrderBy', input_types_1.connectionFieldsMap);
56
56
  return new query_builder_1.QueryBuilder({
57
57
  client: this.client,
58
58
  operation: 'query',
59
- operationName: 'AppPermission',
60
- fieldName: 'appPermission',
59
+ operationName: 'ContentPreset',
60
+ fieldName: 'contentPreset',
61
61
  document,
62
62
  variables,
63
63
  transform: (data) => ({
64
- appPermission: data.appPermissions?.nodes?.[0] ?? null,
64
+ contentPreset: data.contentPresets?.nodes?.[0] ?? null,
65
65
  }),
66
66
  });
67
67
  }
68
68
  create(args) {
69
- const { document, variables } = (0, query_builder_1.buildCreateDocument)('AppPermission', 'createAppPermission', 'appPermission', args.select, args.data, 'CreateAppPermissionInput', input_types_1.connectionFieldsMap);
69
+ const { document, variables } = (0, query_builder_1.buildCreateDocument)('ContentPreset', 'createContentPreset', 'contentPreset', args.select, args.data, 'CreateContentPresetInput', input_types_1.connectionFieldsMap);
70
70
  return new query_builder_1.QueryBuilder({
71
71
  client: this.client,
72
72
  operation: 'mutation',
73
- operationName: 'AppPermission',
74
- fieldName: 'createAppPermission',
73
+ operationName: 'ContentPreset',
74
+ fieldName: 'createContentPreset',
75
75
  document,
76
76
  variables,
77
77
  });
78
78
  }
79
79
  update(args) {
80
- const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('AppPermission', 'updateAppPermission', 'appPermission', args.select, args.where.id, args.data, 'UpdateAppPermissionInput', 'id', 'appPermissionPatch', input_types_1.connectionFieldsMap, undefined);
80
+ const { document, variables } = (0, query_builder_1.buildUpdateByPkDocument)('ContentPreset', 'updateContentPreset', 'contentPreset', args.select, args.where.id, args.data, 'UpdateContentPresetInput', 'id', 'contentPresetPatch', input_types_1.connectionFieldsMap, undefined);
81
81
  return new query_builder_1.QueryBuilder({
82
82
  client: this.client,
83
83
  operation: 'mutation',
84
- operationName: 'AppPermission',
85
- fieldName: 'updateAppPermission',
84
+ operationName: 'ContentPreset',
85
+ fieldName: 'updateContentPreset',
86
86
  document,
87
87
  variables,
88
88
  });
89
89
  }
90
90
  delete(args) {
91
- const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('AppPermission', 'deleteAppPermission', 'appPermission', {
91
+ const { document, variables } = (0, query_builder_1.buildDeleteByPkDocument)('ContentPreset', 'deleteContentPreset', 'contentPreset', {
92
92
  id: args.where.id,
93
- }, 'DeleteAppPermissionInput', args.select, input_types_1.connectionFieldsMap);
93
+ }, 'DeleteContentPresetInput', args.select, input_types_1.connectionFieldsMap);
94
94
  return new query_builder_1.QueryBuilder({
95
95
  client: this.client,
96
96
  operation: 'mutation',
97
- operationName: 'AppPermission',
98
- fieldName: 'deleteAppPermission',
97
+ operationName: 'ContentPreset',
98
+ fieldName: 'deleteContentPreset',
99
99
  document,
100
100
  variables,
101
101
  });
102
102
  }
103
103
  }
104
- exports.AppPermissionModel = AppPermissionModel;
104
+ exports.ContentPresetModel = ContentPresetModel;
@@ -3,6 +3,7 @@
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
+ export { ContentPresetModel } from './contentPreset';
6
7
  export { DbPresetModel } from './dbPreset';
7
8
  export { FunctionApiBindingModel } from './functionApiBinding';
8
9
  export { FunctionCapabilityBindingModel } from './functionCapabilityBinding';
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PlatformResourceUtilizationModel = exports.PlatformResourceUsageSummaryModel = exports.PlatformResourceUsageLogModel = exports.PlatformResourceStatusCheckModel = exports.PlatformResourceInstallationModel = exports.PlatformResourceEventModel = exports.PlatformResourceDefinitionModel = exports.PlatformResourceDeclaredCapacityModel = exports.PlatformResourceModel = exports.PlatformNamespaceEventModel = exports.PlatformNamespaceModel = exports.PlatformInfraStoreModel = exports.PlatformInfraRefModel = exports.PlatformInfraObjectModel = exports.PlatformInfraGetAllTreeNodesRecordModel = exports.PlatformInfraCommitModel = exports.PlatformFunctionInvocationModel = exports.PlatformFunctionInvocationAttemptModel = exports.PlatformFunctionExecutionLogModel = exports.PlatformFunctionDeploymentEventModel = exports.PlatformFunctionDeploymentModel = exports.PlatformFunctionDefinitionModel = exports.PlatformFunctionCapabilityBindingModel = exports.PlatformFunctionApiBindingModel = exports.NamespaceEventModel = exports.NamespaceModel = exports.IntegrationProviderModel = exports.InfraStoreModel = exports.InfraRefModel = exports.InfraObjectModel = exports.InfraGetAllTreeNodesRecordModel = exports.InfraCommitModel = exports.GetAllTreeNodesRecordModel = exports.FunctionInvocationModel = exports.FunctionInvocationAttemptModel = exports.FunctionGraphStoreModel = exports.FunctionGraphRefModel = exports.FunctionGraphObjectModel = exports.FunctionGraphExecutionOutputModel = exports.FunctionGraphExecutionNodeStateModel = exports.FunctionGraphExecutionModel = exports.FunctionGraphModel = exports.FunctionGraphCommitModel = exports.FunctionExecutionLogModel = exports.FunctionDeploymentEventModel = exports.FunctionDeploymentModel = exports.FunctionDefinitionModel = exports.FunctionCapabilityBindingModel = exports.FunctionApiBindingModel = exports.DbPresetModel = void 0;
4
- exports.WebhookEventModel = exports.WebhookEndpointModel = exports.ResourcesResolvedRequirementModel = exports.ResourcesRequirementsStateModel = exports.ResourcesHealthModel = exports.ResourceUtilizationModel = exports.ResourceUsageSummaryModel = exports.ResourceUsageLogModel = exports.ResourceStatusCheckModel = exports.ResourceInstallationModel = exports.ResourceEventModel = exports.ResourceDefinitionModel = exports.ResourceDeclaredCapacityModel = exports.ResourceModel = exports.PlatformWebhookEventModel = exports.PlatformWebhookEndpointModel = exports.PlatformResourcesResolvedRequirementModel = exports.PlatformResourcesRequirementsStateModel = exports.PlatformResourcesHealthModel = void 0;
3
+ exports.PlatformResourceUsageSummaryModel = exports.PlatformResourceUsageLogModel = exports.PlatformResourceStatusCheckModel = exports.PlatformResourceInstallationModel = exports.PlatformResourceEventModel = exports.PlatformResourceDefinitionModel = exports.PlatformResourceDeclaredCapacityModel = exports.PlatformResourceModel = exports.PlatformNamespaceEventModel = exports.PlatformNamespaceModel = exports.PlatformInfraStoreModel = exports.PlatformInfraRefModel = exports.PlatformInfraObjectModel = exports.PlatformInfraGetAllTreeNodesRecordModel = exports.PlatformInfraCommitModel = exports.PlatformFunctionInvocationModel = exports.PlatformFunctionInvocationAttemptModel = exports.PlatformFunctionExecutionLogModel = exports.PlatformFunctionDeploymentEventModel = exports.PlatformFunctionDeploymentModel = exports.PlatformFunctionDefinitionModel = exports.PlatformFunctionCapabilityBindingModel = exports.PlatformFunctionApiBindingModel = exports.NamespaceEventModel = exports.NamespaceModel = exports.IntegrationProviderModel = exports.InfraStoreModel = exports.InfraRefModel = exports.InfraObjectModel = exports.InfraGetAllTreeNodesRecordModel = exports.InfraCommitModel = exports.GetAllTreeNodesRecordModel = exports.FunctionInvocationModel = exports.FunctionInvocationAttemptModel = exports.FunctionGraphStoreModel = exports.FunctionGraphRefModel = exports.FunctionGraphObjectModel = exports.FunctionGraphExecutionOutputModel = exports.FunctionGraphExecutionNodeStateModel = exports.FunctionGraphExecutionModel = exports.FunctionGraphModel = exports.FunctionGraphCommitModel = exports.FunctionExecutionLogModel = exports.FunctionDeploymentEventModel = exports.FunctionDeploymentModel = exports.FunctionDefinitionModel = exports.FunctionCapabilityBindingModel = exports.FunctionApiBindingModel = exports.DbPresetModel = exports.ContentPresetModel = void 0;
4
+ exports.WebhookEventModel = exports.WebhookEndpointModel = exports.ResourcesResolvedRequirementModel = exports.ResourcesRequirementsStateModel = exports.ResourcesHealthModel = exports.ResourceUtilizationModel = exports.ResourceUsageSummaryModel = exports.ResourceUsageLogModel = exports.ResourceStatusCheckModel = exports.ResourceInstallationModel = exports.ResourceEventModel = exports.ResourceDefinitionModel = exports.ResourceDeclaredCapacityModel = exports.ResourceModel = exports.PlatformWebhookEventModel = exports.PlatformWebhookEndpointModel = exports.PlatformResourcesResolvedRequirementModel = exports.PlatformResourcesRequirementsStateModel = exports.PlatformResourcesHealthModel = exports.PlatformResourceUtilizationModel = void 0;
5
5
  /**
6
6
  * Models barrel export
7
7
  * @generated by @constructive-io/graphql-codegen
8
8
  * DO NOT EDIT - changes will be overwritten
9
9
  */
10
+ var contentPreset_1 = require("./contentPreset");
11
+ Object.defineProperty(exports, "ContentPresetModel", { enumerable: true, get: function () { return contentPreset_1.ContentPresetModel; } });
10
12
  var dbPreset_1 = require("./dbPreset");
11
13
  Object.defineProperty(exports, "DbPresetModel", { enumerable: true, get: function () { return dbPreset_1.DbPresetModel; } });
12
14
  var functionApiBinding_1 = require("./functionApiBinding");
@@ -6,7 +6,7 @@
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 { AddEdgeInput, AddEdgeAndSaveInput, AddNodeInput, AddNodeAndSaveInput, CopyGraphInput, ImportDefinitionsInput, ImportGraphJsonInput, InfraInitEmptyRepoInput, InfraInsertNodeAtPathInput, InfraSetDataAtPathInput, InitEmptyRepoInput, InsertNodeAtPathInput, PlatformInfraInitEmptyRepoInput, PlatformInfraInsertNodeAtPathInput, PlatformInfraSetDataAtPathInput, PlatformResourceInstallationsInstallInput, PlatformResourceInstallationsRollbackInput, PlatformResourceInstallationsUninstallInput, PlatformResourceInstallationsUpgradeInput, ProvisionBucketInput, ResourceInstallationsInstallInput, ResourceInstallationsRollbackInput, ResourceInstallationsUninstallInput, ResourceInstallationsUpgradeInput, SaveGraphInput, SetDataAtPathInput, StartExecutionInput, ValidateFunctionGraphInput, AddEdgePayload, AddEdgeAndSavePayload, AddNodePayload, AddNodeAndSavePayload, CopyGraphPayload, ImportDefinitionsPayload, ImportGraphJsonPayload, InfraInitEmptyRepoPayload, InfraInsertNodeAtPathPayload, InfraSetDataAtPathPayload, InitEmptyRepoPayload, InsertNodeAtPathPayload, PlatformInfraInitEmptyRepoPayload, PlatformInfraInsertNodeAtPathPayload, PlatformInfraSetDataAtPathPayload, PlatformResourceInstallationsInstallPayload, PlatformResourceInstallationsRollbackPayload, PlatformResourceInstallationsUninstallPayload, PlatformResourceInstallationsUpgradePayload, ProvisionBucketPayload, ResourceInstallationsInstallPayload, ResourceInstallationsRollbackPayload, ResourceInstallationsUninstallPayload, ResourceInstallationsUpgradePayload, SaveGraphPayload, SetDataAtPathPayload, StartExecutionPayload, ValidateFunctionGraphPayload, AddEdgePayloadSelect, AddEdgeAndSavePayloadSelect, AddNodePayloadSelect, AddNodeAndSavePayloadSelect, CopyGraphPayloadSelect, ImportDefinitionsPayloadSelect, ImportGraphJsonPayloadSelect, InfraInitEmptyRepoPayloadSelect, InfraInsertNodeAtPathPayloadSelect, InfraSetDataAtPathPayloadSelect, InitEmptyRepoPayloadSelect, InsertNodeAtPathPayloadSelect, PlatformInfraInitEmptyRepoPayloadSelect, PlatformInfraInsertNodeAtPathPayloadSelect, PlatformInfraSetDataAtPathPayloadSelect, PlatformResourceInstallationsInstallPayloadSelect, PlatformResourceInstallationsRollbackPayloadSelect, PlatformResourceInstallationsUninstallPayloadSelect, PlatformResourceInstallationsUpgradePayloadSelect, ProvisionBucketPayloadSelect, ResourceInstallationsInstallPayloadSelect, ResourceInstallationsRollbackPayloadSelect, ResourceInstallationsUninstallPayloadSelect, ResourceInstallationsUpgradePayloadSelect, SaveGraphPayloadSelect, SetDataAtPathPayloadSelect, StartExecutionPayloadSelect, ValidateFunctionGraphPayloadSelect } from '../input-types';
9
+ import type { AddEdgeInput, AddEdgeAndSaveInput, AddNodeInput, AddNodeAndSaveInput, CopyGraphInput, ImportDefinitionsInput, ImportGraphJsonInput, InfraInitEmptyRepoInput, InfraInsertNodeAtPathInput, InfraInsertNodesAtPathsInput, InfraSetAndCommitInput, InfraSetDataAtPathInput, InfraSetManyAndCommitInput, InitEmptyRepoInput, InsertNodeAtPathInput, InsertNodesAtPathsInput, PlatformInfraInitEmptyRepoInput, PlatformInfraInsertNodeAtPathInput, PlatformInfraInsertNodesAtPathsInput, PlatformInfraSetAndCommitInput, PlatformInfraSetDataAtPathInput, PlatformInfraSetManyAndCommitInput, PlatformResourceInstallationsInstallInput, PlatformResourceInstallationsRollbackInput, PlatformResourceInstallationsUninstallInput, PlatformResourceInstallationsUpgradeInput, ProvisionBucketInput, ResourceInstallationsInstallInput, ResourceInstallationsRollbackInput, ResourceInstallationsUninstallInput, ResourceInstallationsUpgradeInput, SaveGraphInput, SetAndCommitInput, SetDataAtPathInput, SetManyAndCommitInput, StartExecutionInput, ValidateFunctionGraphInput, AddEdgePayload, AddEdgeAndSavePayload, AddNodePayload, AddNodeAndSavePayload, CopyGraphPayload, ImportDefinitionsPayload, ImportGraphJsonPayload, InfraInitEmptyRepoPayload, InfraInsertNodeAtPathPayload, InfraInsertNodesAtPathsPayload, InfraSetAndCommitPayload, InfraSetDataAtPathPayload, InfraSetManyAndCommitPayload, InitEmptyRepoPayload, InsertNodeAtPathPayload, InsertNodesAtPathsPayload, PlatformInfraInitEmptyRepoPayload, PlatformInfraInsertNodeAtPathPayload, PlatformInfraInsertNodesAtPathsPayload, PlatformInfraSetAndCommitPayload, PlatformInfraSetDataAtPathPayload, PlatformInfraSetManyAndCommitPayload, PlatformResourceInstallationsInstallPayload, PlatformResourceInstallationsRollbackPayload, PlatformResourceInstallationsUninstallPayload, PlatformResourceInstallationsUpgradePayload, ProvisionBucketPayload, ResourceInstallationsInstallPayload, ResourceInstallationsRollbackPayload, ResourceInstallationsUninstallPayload, ResourceInstallationsUpgradePayload, SaveGraphPayload, SetAndCommitPayload, SetDataAtPathPayload, SetManyAndCommitPayload, StartExecutionPayload, ValidateFunctionGraphPayload, AddEdgePayloadSelect, AddEdgeAndSavePayloadSelect, AddNodePayloadSelect, AddNodeAndSavePayloadSelect, CopyGraphPayloadSelect, ImportDefinitionsPayloadSelect, ImportGraphJsonPayloadSelect, InfraInitEmptyRepoPayloadSelect, InfraInsertNodeAtPathPayloadSelect, InfraInsertNodesAtPathsPayloadSelect, InfraSetAndCommitPayloadSelect, InfraSetDataAtPathPayloadSelect, InfraSetManyAndCommitPayloadSelect, InitEmptyRepoPayloadSelect, InsertNodeAtPathPayloadSelect, InsertNodesAtPathsPayloadSelect, PlatformInfraInitEmptyRepoPayloadSelect, PlatformInfraInsertNodeAtPathPayloadSelect, PlatformInfraInsertNodesAtPathsPayloadSelect, PlatformInfraSetAndCommitPayloadSelect, PlatformInfraSetDataAtPathPayloadSelect, PlatformInfraSetManyAndCommitPayloadSelect, PlatformResourceInstallationsInstallPayloadSelect, PlatformResourceInstallationsRollbackPayloadSelect, PlatformResourceInstallationsUninstallPayloadSelect, PlatformResourceInstallationsUpgradePayloadSelect, ProvisionBucketPayloadSelect, ResourceInstallationsInstallPayloadSelect, ResourceInstallationsRollbackPayloadSelect, ResourceInstallationsUninstallPayloadSelect, ResourceInstallationsUpgradePayloadSelect, SaveGraphPayloadSelect, SetAndCommitPayloadSelect, SetDataAtPathPayloadSelect, SetManyAndCommitPayloadSelect, StartExecutionPayloadSelect, ValidateFunctionGraphPayloadSelect } from '../input-types';
10
10
  export interface AddEdgeVariables {
11
11
  input: AddEdgeInput;
12
12
  }
@@ -34,24 +34,45 @@ export interface InfraInitEmptyRepoVariables {
34
34
  export interface InfraInsertNodeAtPathVariables {
35
35
  input: InfraInsertNodeAtPathInput;
36
36
  }
37
+ export interface InfraInsertNodesAtPathsVariables {
38
+ input: InfraInsertNodesAtPathsInput;
39
+ }
40
+ export interface InfraSetAndCommitVariables {
41
+ input: InfraSetAndCommitInput;
42
+ }
37
43
  export interface InfraSetDataAtPathVariables {
38
44
  input: InfraSetDataAtPathInput;
39
45
  }
46
+ export interface InfraSetManyAndCommitVariables {
47
+ input: InfraSetManyAndCommitInput;
48
+ }
40
49
  export interface InitEmptyRepoVariables {
41
50
  input: InitEmptyRepoInput;
42
51
  }
43
52
  export interface InsertNodeAtPathVariables {
44
53
  input: InsertNodeAtPathInput;
45
54
  }
55
+ export interface InsertNodesAtPathsVariables {
56
+ input: InsertNodesAtPathsInput;
57
+ }
46
58
  export interface PlatformInfraInitEmptyRepoVariables {
47
59
  input: PlatformInfraInitEmptyRepoInput;
48
60
  }
49
61
  export interface PlatformInfraInsertNodeAtPathVariables {
50
62
  input: PlatformInfraInsertNodeAtPathInput;
51
63
  }
64
+ export interface PlatformInfraInsertNodesAtPathsVariables {
65
+ input: PlatformInfraInsertNodesAtPathsInput;
66
+ }
67
+ export interface PlatformInfraSetAndCommitVariables {
68
+ input: PlatformInfraSetAndCommitInput;
69
+ }
52
70
  export interface PlatformInfraSetDataAtPathVariables {
53
71
  input: PlatformInfraSetDataAtPathInput;
54
72
  }
73
+ export interface PlatformInfraSetManyAndCommitVariables {
74
+ input: PlatformInfraSetManyAndCommitInput;
75
+ }
55
76
  export interface PlatformResourceInstallationsInstallVariables {
56
77
  input: PlatformResourceInstallationsInstallInput;
57
78
  }
@@ -89,9 +110,15 @@ export interface ResourceInstallationsUpgradeVariables {
89
110
  export interface SaveGraphVariables {
90
111
  input: SaveGraphInput;
91
112
  }
113
+ export interface SetAndCommitVariables {
114
+ input: SetAndCommitInput;
115
+ }
92
116
  export interface SetDataAtPathVariables {
93
117
  input: SetDataAtPathInput;
94
118
  }
119
+ export interface SetManyAndCommitVariables {
120
+ input: SetManyAndCommitInput;
121
+ }
95
122
  export interface StartExecutionVariables {
96
123
  input: StartExecutionInput;
97
124
  }
@@ -144,11 +171,26 @@ export declare function createMutationOperations(client: OrmClient): {
144
171
  } & StrictSelect<S, InfraInsertNodeAtPathPayloadSelect>) => QueryBuilder<{
145
172
  infraInsertNodeAtPath: InferSelectResult<InfraInsertNodeAtPathPayload, S> | null;
146
173
  }>;
174
+ infraInsertNodesAtPaths: <S extends InfraInsertNodesAtPathsPayloadSelect>(args: InfraInsertNodesAtPathsVariables, options: {
175
+ select: S;
176
+ } & StrictSelect<S, InfraInsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
177
+ infraInsertNodesAtPaths: InferSelectResult<InfraInsertNodesAtPathsPayload, S> | null;
178
+ }>;
179
+ infraSetAndCommit: <S extends InfraSetAndCommitPayloadSelect>(args: InfraSetAndCommitVariables, options: {
180
+ select: S;
181
+ } & StrictSelect<S, InfraSetAndCommitPayloadSelect>) => QueryBuilder<{
182
+ infraSetAndCommit: InferSelectResult<InfraSetAndCommitPayload, S> | null;
183
+ }>;
147
184
  infraSetDataAtPath: <S extends InfraSetDataAtPathPayloadSelect>(args: InfraSetDataAtPathVariables, options: {
148
185
  select: S;
149
186
  } & StrictSelect<S, InfraSetDataAtPathPayloadSelect>) => QueryBuilder<{
150
187
  infraSetDataAtPath: InferSelectResult<InfraSetDataAtPathPayload, S> | null;
151
188
  }>;
189
+ infraSetManyAndCommit: <S extends InfraSetManyAndCommitPayloadSelect>(args: InfraSetManyAndCommitVariables, options: {
190
+ select: S;
191
+ } & StrictSelect<S, InfraSetManyAndCommitPayloadSelect>) => QueryBuilder<{
192
+ infraSetManyAndCommit: InferSelectResult<InfraSetManyAndCommitPayload, S> | null;
193
+ }>;
152
194
  initEmptyRepo: <S extends InitEmptyRepoPayloadSelect>(args: InitEmptyRepoVariables, options: {
153
195
  select: S;
154
196
  } & StrictSelect<S, InitEmptyRepoPayloadSelect>) => QueryBuilder<{
@@ -159,6 +201,11 @@ export declare function createMutationOperations(client: OrmClient): {
159
201
  } & StrictSelect<S, InsertNodeAtPathPayloadSelect>) => QueryBuilder<{
160
202
  insertNodeAtPath: InferSelectResult<InsertNodeAtPathPayload, S> | null;
161
203
  }>;
204
+ insertNodesAtPaths: <S extends InsertNodesAtPathsPayloadSelect>(args: InsertNodesAtPathsVariables, options: {
205
+ select: S;
206
+ } & StrictSelect<S, InsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
207
+ insertNodesAtPaths: InferSelectResult<InsertNodesAtPathsPayload, S> | null;
208
+ }>;
162
209
  platformInfraInitEmptyRepo: <S extends PlatformInfraInitEmptyRepoPayloadSelect>(args: PlatformInfraInitEmptyRepoVariables, options: {
163
210
  select: S;
164
211
  } & StrictSelect<S, PlatformInfraInitEmptyRepoPayloadSelect>) => QueryBuilder<{
@@ -169,11 +216,26 @@ export declare function createMutationOperations(client: OrmClient): {
169
216
  } & StrictSelect<S, PlatformInfraInsertNodeAtPathPayloadSelect>) => QueryBuilder<{
170
217
  platformInfraInsertNodeAtPath: InferSelectResult<PlatformInfraInsertNodeAtPathPayload, S> | null;
171
218
  }>;
219
+ platformInfraInsertNodesAtPaths: <S extends PlatformInfraInsertNodesAtPathsPayloadSelect>(args: PlatformInfraInsertNodesAtPathsVariables, options: {
220
+ select: S;
221
+ } & StrictSelect<S, PlatformInfraInsertNodesAtPathsPayloadSelect>) => QueryBuilder<{
222
+ platformInfraInsertNodesAtPaths: InferSelectResult<PlatformInfraInsertNodesAtPathsPayload, S> | null;
223
+ }>;
224
+ platformInfraSetAndCommit: <S extends PlatformInfraSetAndCommitPayloadSelect>(args: PlatformInfraSetAndCommitVariables, options: {
225
+ select: S;
226
+ } & StrictSelect<S, PlatformInfraSetAndCommitPayloadSelect>) => QueryBuilder<{
227
+ platformInfraSetAndCommit: InferSelectResult<PlatformInfraSetAndCommitPayload, S> | null;
228
+ }>;
172
229
  platformInfraSetDataAtPath: <S extends PlatformInfraSetDataAtPathPayloadSelect>(args: PlatformInfraSetDataAtPathVariables, options: {
173
230
  select: S;
174
231
  } & StrictSelect<S, PlatformInfraSetDataAtPathPayloadSelect>) => QueryBuilder<{
175
232
  platformInfraSetDataAtPath: InferSelectResult<PlatformInfraSetDataAtPathPayload, S> | null;
176
233
  }>;
234
+ platformInfraSetManyAndCommit: <S extends PlatformInfraSetManyAndCommitPayloadSelect>(args: PlatformInfraSetManyAndCommitVariables, options: {
235
+ select: S;
236
+ } & StrictSelect<S, PlatformInfraSetManyAndCommitPayloadSelect>) => QueryBuilder<{
237
+ platformInfraSetManyAndCommit: InferSelectResult<PlatformInfraSetManyAndCommitPayload, S> | null;
238
+ }>;
177
239
  platformResourceInstallationsInstall: <S extends PlatformResourceInstallationsInstallPayloadSelect>(args: PlatformResourceInstallationsInstallVariables, options: {
178
240
  select: S;
179
241
  } & StrictSelect<S, PlatformResourceInstallationsInstallPayloadSelect>) => QueryBuilder<{
@@ -224,11 +286,21 @@ export declare function createMutationOperations(client: OrmClient): {
224
286
  } & StrictSelect<S, SaveGraphPayloadSelect>) => QueryBuilder<{
225
287
  saveGraph: InferSelectResult<SaveGraphPayload, S> | null;
226
288
  }>;
289
+ setAndCommit: <S extends SetAndCommitPayloadSelect>(args: SetAndCommitVariables, options: {
290
+ select: S;
291
+ } & StrictSelect<S, SetAndCommitPayloadSelect>) => QueryBuilder<{
292
+ setAndCommit: InferSelectResult<SetAndCommitPayload, S> | null;
293
+ }>;
227
294
  setDataAtPath: <S extends SetDataAtPathPayloadSelect>(args: SetDataAtPathVariables, options: {
228
295
  select: S;
229
296
  } & StrictSelect<S, SetDataAtPathPayloadSelect>) => QueryBuilder<{
230
297
  setDataAtPath: InferSelectResult<SetDataAtPathPayload, S> | null;
231
298
  }>;
299
+ setManyAndCommit: <S extends SetManyAndCommitPayloadSelect>(args: SetManyAndCommitVariables, options: {
300
+ select: S;
301
+ } & StrictSelect<S, SetManyAndCommitPayloadSelect>) => QueryBuilder<{
302
+ setManyAndCommit: InferSelectResult<SetManyAndCommitPayload, S> | null;
303
+ }>;
232
304
  startExecution: <S extends StartExecutionPayloadSelect>(args: StartExecutionVariables, options: {
233
305
  select: S;
234
306
  } & StrictSelect<S, StartExecutionPayloadSelect>) => QueryBuilder<{
@@ -113,6 +113,30 @@ function createMutationOperations(client) {
113
113
  },
114
114
  ], input_types_1.connectionFieldsMap, 'InfraInsertNodeAtPathPayload'),
115
115
  }),
116
+ infraInsertNodesAtPaths: (args, options) => new query_builder_1.QueryBuilder({
117
+ client,
118
+ operation: 'mutation',
119
+ operationName: 'InfraInsertNodesAtPaths',
120
+ fieldName: 'infraInsertNodesAtPaths',
121
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraInsertNodesAtPaths', 'infraInsertNodesAtPaths', options.select, args, [
122
+ {
123
+ name: 'input',
124
+ type: 'InfraInsertNodesAtPathsInput!',
125
+ },
126
+ ], input_types_1.connectionFieldsMap, 'InfraInsertNodesAtPathsPayload'),
127
+ }),
128
+ infraSetAndCommit: (args, options) => new query_builder_1.QueryBuilder({
129
+ client,
130
+ operation: 'mutation',
131
+ operationName: 'InfraSetAndCommit',
132
+ fieldName: 'infraSetAndCommit',
133
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraSetAndCommit', 'infraSetAndCommit', options.select, args, [
134
+ {
135
+ name: 'input',
136
+ type: 'InfraSetAndCommitInput!',
137
+ },
138
+ ], input_types_1.connectionFieldsMap, 'InfraSetAndCommitPayload'),
139
+ }),
116
140
  infraSetDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
117
141
  client,
118
142
  operation: 'mutation',
@@ -125,6 +149,18 @@ function createMutationOperations(client) {
125
149
  },
126
150
  ], input_types_1.connectionFieldsMap, 'InfraSetDataAtPathPayload'),
127
151
  }),
152
+ infraSetManyAndCommit: (args, options) => new query_builder_1.QueryBuilder({
153
+ client,
154
+ operation: 'mutation',
155
+ operationName: 'InfraSetManyAndCommit',
156
+ fieldName: 'infraSetManyAndCommit',
157
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InfraSetManyAndCommit', 'infraSetManyAndCommit', options.select, args, [
158
+ {
159
+ name: 'input',
160
+ type: 'InfraSetManyAndCommitInput!',
161
+ },
162
+ ], input_types_1.connectionFieldsMap, 'InfraSetManyAndCommitPayload'),
163
+ }),
128
164
  initEmptyRepo: (args, options) => new query_builder_1.QueryBuilder({
129
165
  client,
130
166
  operation: 'mutation',
@@ -149,6 +185,18 @@ function createMutationOperations(client) {
149
185
  },
150
186
  ], input_types_1.connectionFieldsMap, 'InsertNodeAtPathPayload'),
151
187
  }),
188
+ insertNodesAtPaths: (args, options) => new query_builder_1.QueryBuilder({
189
+ client,
190
+ operation: 'mutation',
191
+ operationName: 'InsertNodesAtPaths',
192
+ fieldName: 'insertNodesAtPaths',
193
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'InsertNodesAtPaths', 'insertNodesAtPaths', options.select, args, [
194
+ {
195
+ name: 'input',
196
+ type: 'InsertNodesAtPathsInput!',
197
+ },
198
+ ], input_types_1.connectionFieldsMap, 'InsertNodesAtPathsPayload'),
199
+ }),
152
200
  platformInfraInitEmptyRepo: (args, options) => new query_builder_1.QueryBuilder({
153
201
  client,
154
202
  operation: 'mutation',
@@ -173,6 +221,30 @@ function createMutationOperations(client) {
173
221
  },
174
222
  ], input_types_1.connectionFieldsMap, 'PlatformInfraInsertNodeAtPathPayload'),
175
223
  }),
224
+ platformInfraInsertNodesAtPaths: (args, options) => new query_builder_1.QueryBuilder({
225
+ client,
226
+ operation: 'mutation',
227
+ operationName: 'PlatformInfraInsertNodesAtPaths',
228
+ fieldName: 'platformInfraInsertNodesAtPaths',
229
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'PlatformInfraInsertNodesAtPaths', 'platformInfraInsertNodesAtPaths', options.select, args, [
230
+ {
231
+ name: 'input',
232
+ type: 'PlatformInfraInsertNodesAtPathsInput!',
233
+ },
234
+ ], input_types_1.connectionFieldsMap, 'PlatformInfraInsertNodesAtPathsPayload'),
235
+ }),
236
+ platformInfraSetAndCommit: (args, options) => new query_builder_1.QueryBuilder({
237
+ client,
238
+ operation: 'mutation',
239
+ operationName: 'PlatformInfraSetAndCommit',
240
+ fieldName: 'platformInfraSetAndCommit',
241
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'PlatformInfraSetAndCommit', 'platformInfraSetAndCommit', options.select, args, [
242
+ {
243
+ name: 'input',
244
+ type: 'PlatformInfraSetAndCommitInput!',
245
+ },
246
+ ], input_types_1.connectionFieldsMap, 'PlatformInfraSetAndCommitPayload'),
247
+ }),
176
248
  platformInfraSetDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
177
249
  client,
178
250
  operation: 'mutation',
@@ -185,6 +257,18 @@ function createMutationOperations(client) {
185
257
  },
186
258
  ], input_types_1.connectionFieldsMap, 'PlatformInfraSetDataAtPathPayload'),
187
259
  }),
260
+ platformInfraSetManyAndCommit: (args, options) => new query_builder_1.QueryBuilder({
261
+ client,
262
+ operation: 'mutation',
263
+ operationName: 'PlatformInfraSetManyAndCommit',
264
+ fieldName: 'platformInfraSetManyAndCommit',
265
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'PlatformInfraSetManyAndCommit', 'platformInfraSetManyAndCommit', options.select, args, [
266
+ {
267
+ name: 'input',
268
+ type: 'PlatformInfraSetManyAndCommitInput!',
269
+ },
270
+ ], input_types_1.connectionFieldsMap, 'PlatformInfraSetManyAndCommitPayload'),
271
+ }),
188
272
  platformResourceInstallationsInstall: (args, options) => new query_builder_1.QueryBuilder({
189
273
  client,
190
274
  operation: 'mutation',
@@ -305,6 +389,18 @@ function createMutationOperations(client) {
305
389
  },
306
390
  ], input_types_1.connectionFieldsMap, 'SaveGraphPayload'),
307
391
  }),
392
+ setAndCommit: (args, options) => new query_builder_1.QueryBuilder({
393
+ client,
394
+ operation: 'mutation',
395
+ operationName: 'SetAndCommit',
396
+ fieldName: 'setAndCommit',
397
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'SetAndCommit', 'setAndCommit', options.select, args, [
398
+ {
399
+ name: 'input',
400
+ type: 'SetAndCommitInput!',
401
+ },
402
+ ], input_types_1.connectionFieldsMap, 'SetAndCommitPayload'),
403
+ }),
308
404
  setDataAtPath: (args, options) => new query_builder_1.QueryBuilder({
309
405
  client,
310
406
  operation: 'mutation',
@@ -317,6 +413,18 @@ function createMutationOperations(client) {
317
413
  },
318
414
  ], input_types_1.connectionFieldsMap, 'SetDataAtPathPayload'),
319
415
  }),
416
+ setManyAndCommit: (args, options) => new query_builder_1.QueryBuilder({
417
+ client,
418
+ operation: 'mutation',
419
+ operationName: 'SetManyAndCommit',
420
+ fieldName: 'setManyAndCommit',
421
+ ...(0, query_builder_1.buildCustomDocument)('mutation', 'SetManyAndCommit', 'setManyAndCommit', options.select, args, [
422
+ {
423
+ name: 'input',
424
+ type: 'SetManyAndCommitInput!',
425
+ },
426
+ ], input_types_1.connectionFieldsMap, 'SetManyAndCommitPayload'),
427
+ }),
320
428
  startExecution: (args, options) => new query_builder_1.QueryBuilder({
321
429
  client,
322
430
  operation: 'mutation',