@constructive-io/sdk 1.11.10 → 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 +2 -2
  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
@@ -2,12 +2,12 @@ import { QueryBuilder, buildCustomDocument } from '../query-builder';
2
2
  import { connectionFieldsMap } from '../input-types';
3
3
  export function createQueryOperations(client) {
4
4
  return {
5
- appPermissionsGetByMask: (args, options) => new QueryBuilder({
5
+ appCapabilitiesGetByMask: (args, options) => new QueryBuilder({
6
6
  client,
7
7
  operation: 'query',
8
- operationName: 'AppPermissionsGetByMask',
9
- fieldName: 'appPermissionsGetByMask',
10
- ...buildCustomDocument('query', 'AppPermissionsGetByMask', 'appPermissionsGetByMask', options?.select, args, [
8
+ operationName: 'AppCapabilitiesGetByMask',
9
+ fieldName: 'appCapabilitiesGetByMask',
10
+ ...buildCustomDocument('query', 'AppCapabilitiesGetByMask', 'appCapabilitiesGetByMask', options?.select, args, [
11
11
  {
12
12
  name: 'after',
13
13
  type: 'Cursor',
@@ -26,72 +26,48 @@ export function createQueryOperations(client) {
26
26
  },
27
27
  ], connectionFieldsMap, undefined),
28
28
  }),
29
- appPermissionsGetMask: (args, options) => new QueryBuilder({
29
+ appCapabilitiesGetMask: (args, options) => new QueryBuilder({
30
30
  client,
31
31
  operation: 'query',
32
- operationName: 'AppPermissionsGetMask',
33
- fieldName: 'appPermissionsGetMask',
34
- ...buildCustomDocument('query', 'AppPermissionsGetMask', 'appPermissionsGetMask', options?.select, args, [
32
+ operationName: 'AppCapabilitiesGetMask',
33
+ fieldName: 'appCapabilitiesGetMask',
34
+ ...buildCustomDocument('query', 'AppCapabilitiesGetMask', 'appCapabilitiesGetMask', options?.select, args, [
35
35
  {
36
36
  name: 'ids',
37
37
  type: '[UUID]',
38
38
  },
39
39
  ], connectionFieldsMap, undefined),
40
40
  }),
41
- appPermissionsGetMaskByNames: (args, options) => new QueryBuilder({
41
+ appCapabilitiesGetMaskByNames: (args, options) => new QueryBuilder({
42
42
  client,
43
43
  operation: 'query',
44
- operationName: 'AppPermissionsGetMaskByNames',
45
- fieldName: 'appPermissionsGetMaskByNames',
46
- ...buildCustomDocument('query', 'AppPermissionsGetMaskByNames', 'appPermissionsGetMaskByNames', options?.select, args, [
44
+ operationName: 'AppCapabilitiesGetMaskByNames',
45
+ fieldName: 'appCapabilitiesGetMaskByNames',
46
+ ...buildCustomDocument('query', 'AppCapabilitiesGetMaskByNames', 'appCapabilitiesGetMaskByNames', options?.select, args, [
47
47
  {
48
48
  name: 'names',
49
49
  type: '[String]',
50
50
  },
51
51
  ], connectionFieldsMap, undefined),
52
52
  }),
53
- appPermissionsGetPaddedMask: (args, options) => new QueryBuilder({
53
+ appCapabilitiesGetPaddedMask: (args, options) => new QueryBuilder({
54
54
  client,
55
55
  operation: 'query',
56
- operationName: 'AppPermissionsGetPaddedMask',
57
- fieldName: 'appPermissionsGetPaddedMask',
58
- ...buildCustomDocument('query', 'AppPermissionsGetPaddedMask', 'appPermissionsGetPaddedMask', options?.select, args, [
56
+ operationName: 'AppCapabilitiesGetPaddedMask',
57
+ fieldName: 'appCapabilitiesGetPaddedMask',
58
+ ...buildCustomDocument('query', 'AppCapabilitiesGetPaddedMask', 'appCapabilitiesGetPaddedMask', options?.select, args, [
59
59
  {
60
60
  name: 'mask',
61
61
  type: 'BitString',
62
62
  },
63
63
  ], connectionFieldsMap, undefined),
64
64
  }),
65
- orgIsManagerOf: (args, options) => new QueryBuilder({
66
- client,
67
- operation: 'query',
68
- operationName: 'OrgIsManagerOf',
69
- fieldName: 'orgIsManagerOf',
70
- ...buildCustomDocument('query', 'OrgIsManagerOf', 'orgIsManagerOf', options?.select, args, [
71
- {
72
- name: 'managerId',
73
- type: 'UUID',
74
- },
75
- {
76
- name: 'maxDepth',
77
- type: 'Int',
78
- },
79
- {
80
- name: 'targetEntityId',
81
- type: 'UUID',
82
- },
83
- {
84
- name: 'userId',
85
- type: 'UUID',
86
- },
87
- ], connectionFieldsMap, undefined),
88
- }),
89
- orgPermissionsGetByMask: (args, options) => new QueryBuilder({
65
+ orgCapabilitiesGetByMask: (args, options) => new QueryBuilder({
90
66
  client,
91
67
  operation: 'query',
92
- operationName: 'OrgPermissionsGetByMask',
93
- fieldName: 'orgPermissionsGetByMask',
94
- ...buildCustomDocument('query', 'OrgPermissionsGetByMask', 'orgPermissionsGetByMask', options?.select, args, [
68
+ operationName: 'OrgCapabilitiesGetByMask',
69
+ fieldName: 'orgCapabilitiesGetByMask',
70
+ ...buildCustomDocument('query', 'OrgCapabilitiesGetByMask', 'orgCapabilitiesGetByMask', options?.select, args, [
95
71
  {
96
72
  name: 'after',
97
73
  type: 'Cursor',
@@ -110,41 +86,65 @@ export function createQueryOperations(client) {
110
86
  },
111
87
  ], connectionFieldsMap, undefined),
112
88
  }),
113
- orgPermissionsGetMask: (args, options) => new QueryBuilder({
89
+ orgCapabilitiesGetMask: (args, options) => new QueryBuilder({
114
90
  client,
115
91
  operation: 'query',
116
- operationName: 'OrgPermissionsGetMask',
117
- fieldName: 'orgPermissionsGetMask',
118
- ...buildCustomDocument('query', 'OrgPermissionsGetMask', 'orgPermissionsGetMask', options?.select, args, [
92
+ operationName: 'OrgCapabilitiesGetMask',
93
+ fieldName: 'orgCapabilitiesGetMask',
94
+ ...buildCustomDocument('query', 'OrgCapabilitiesGetMask', 'orgCapabilitiesGetMask', options?.select, args, [
119
95
  {
120
96
  name: 'ids',
121
97
  type: '[UUID]',
122
98
  },
123
99
  ], connectionFieldsMap, undefined),
124
100
  }),
125
- orgPermissionsGetMaskByNames: (args, options) => new QueryBuilder({
101
+ orgCapabilitiesGetMaskByNames: (args, options) => new QueryBuilder({
126
102
  client,
127
103
  operation: 'query',
128
- operationName: 'OrgPermissionsGetMaskByNames',
129
- fieldName: 'orgPermissionsGetMaskByNames',
130
- ...buildCustomDocument('query', 'OrgPermissionsGetMaskByNames', 'orgPermissionsGetMaskByNames', options?.select, args, [
104
+ operationName: 'OrgCapabilitiesGetMaskByNames',
105
+ fieldName: 'orgCapabilitiesGetMaskByNames',
106
+ ...buildCustomDocument('query', 'OrgCapabilitiesGetMaskByNames', 'orgCapabilitiesGetMaskByNames', options?.select, args, [
131
107
  {
132
108
  name: 'names',
133
109
  type: '[String]',
134
110
  },
135
111
  ], connectionFieldsMap, undefined),
136
112
  }),
137
- orgPermissionsGetPaddedMask: (args, options) => new QueryBuilder({
113
+ orgCapabilitiesGetPaddedMask: (args, options) => new QueryBuilder({
138
114
  client,
139
115
  operation: 'query',
140
- operationName: 'OrgPermissionsGetPaddedMask',
141
- fieldName: 'orgPermissionsGetPaddedMask',
142
- ...buildCustomDocument('query', 'OrgPermissionsGetPaddedMask', 'orgPermissionsGetPaddedMask', options?.select, args, [
116
+ operationName: 'OrgCapabilitiesGetPaddedMask',
117
+ fieldName: 'orgCapabilitiesGetPaddedMask',
118
+ ...buildCustomDocument('query', 'OrgCapabilitiesGetPaddedMask', 'orgCapabilitiesGetPaddedMask', options?.select, args, [
143
119
  {
144
120
  name: 'mask',
145
121
  type: 'BitString',
146
122
  },
147
123
  ], connectionFieldsMap, undefined),
148
124
  }),
125
+ orgIsManagerOf: (args, options) => new QueryBuilder({
126
+ client,
127
+ operation: 'query',
128
+ operationName: 'OrgIsManagerOf',
129
+ fieldName: 'orgIsManagerOf',
130
+ ...buildCustomDocument('query', 'OrgIsManagerOf', 'orgIsManagerOf', options?.select, args, [
131
+ {
132
+ name: 'managerId',
133
+ type: 'UUID',
134
+ },
135
+ {
136
+ name: 'maxDepth',
137
+ type: 'Int',
138
+ },
139
+ {
140
+ name: 'targetEntityId',
141
+ type: 'UUID',
142
+ },
143
+ {
144
+ name: 'userId',
145
+ type: 'UUID',
146
+ },
147
+ ], connectionFieldsMap, undefined),
148
+ }),
149
149
  };
150
150
  }
@@ -1,8 +1,9 @@
1
1
  import type { OrmClientConfig } from './client';
2
+ import { ApiModel } from './models/api';
2
3
  import { ApiSchemaModel } from './models/apiSchema';
3
4
  import { ApiSettingModel } from './models/apiSetting';
4
- import { ApisModel } from './models/apis';
5
- import { AstMigrationModel } from './models/astMigration';
5
+ import { AppComponentModel } from './models/appComponent';
6
+ import { AppModel } from './models/app';
6
7
  import { CheckConstraintModel } from './models/checkConstraint';
7
8
  import { CompositeTypeModel } from './models/compositeType';
8
9
  import { CorsSettingModel } from './models/corsSetting';
@@ -15,6 +16,9 @@ import { DomainModel } from './models/domain';
15
16
  import { DomainEventModel } from './models/domainEvent';
16
17
  import { DomainTypeModel } from './models/domainType';
17
18
  import { DomainVerificationModel } from './models/domainVerification';
19
+ import { EmailIdentityModel } from './models/emailIdentity';
20
+ import { EmailProviderAccountModel } from './models/emailProviderAccount';
21
+ import { EmailSiteIdentityModel } from './models/emailSiteIdentity';
18
22
  import { EmbeddingChunkModel } from './models/embeddingChunk';
19
23
  import { EnumModel } from './models/enum';
20
24
  import { ExclusionConstraintModel } from './models/exclusionConstraint';
@@ -31,13 +35,16 @@ import { ManagedDomainModel } from './models/managedDomain';
31
35
  import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
32
36
  import { PageModel } from './models/page';
33
37
  import { PartitionModel } from './models/partition';
38
+ import { PlatformApiModel } from './models/platformApi';
34
39
  import { PlatformApiSchemaModel } from './models/platformApiSchema';
35
40
  import { PlatformApiSettingModel } from './models/platformApiSetting';
36
- import { PlatformApisModel } from './models/platformApis';
37
41
  import { PlatformCorsSettingModel } from './models/platformCorsSetting';
38
42
  import { PlatformDomainModel } from './models/platformDomain';
39
43
  import { PlatformDomainEventModel } from './models/platformDomainEvent';
40
44
  import { PlatformDomainVerificationModel } from './models/platformDomainVerification';
45
+ import { PlatformEmailIdentityModel } from './models/platformEmailIdentity';
46
+ import { PlatformEmailProviderAccountModel } from './models/platformEmailProviderAccount';
47
+ import { PlatformEmailSiteIdentityModel } from './models/platformEmailSiteIdentity';
41
48
  import { PlatformManagedDomainModel } from './models/platformManagedDomain';
42
49
  import { PlatformPageModel } from './models/platformPage';
43
50
  import { PlatformSiteAppLinkModel } from './models/platformSiteAppLink';
@@ -65,7 +72,6 @@ import { SiteModuleModel } from './models/siteModule';
65
72
  import { SiteThemeModel } from './models/siteTheme';
66
73
  import { SiteWebConfigModel } from './models/siteWebConfig';
67
74
  import { SpatialRelationModel } from './models/spatialRelation';
68
- import { SqlActionModel } from './models/sqlAction';
69
75
  import { TableBehaviorModel } from './models/tableBehavior';
70
76
  import { TableModel } from './models/table';
71
77
  import { TableGrantModel } from './models/tableGrant';
@@ -110,10 +116,11 @@ export { createMutationOperations } from './mutation';
110
116
  * ```
111
117
  */
112
118
  export declare function createClient(config: OrmClientConfig): {
119
+ api: ApiModel;
113
120
  apiSchema: ApiSchemaModel;
114
121
  apiSetting: ApiSettingModel;
115
- apis: ApisModel;
116
- astMigration: AstMigrationModel;
122
+ appComponent: AppComponentModel;
123
+ app: AppModel;
117
124
  checkConstraint: CheckConstraintModel;
118
125
  compositeType: CompositeTypeModel;
119
126
  corsSetting: CorsSettingModel;
@@ -126,6 +133,9 @@ export declare function createClient(config: OrmClientConfig): {
126
133
  domainEvent: DomainEventModel;
127
134
  domainType: DomainTypeModel;
128
135
  domainVerification: DomainVerificationModel;
136
+ emailIdentity: EmailIdentityModel;
137
+ emailProviderAccount: EmailProviderAccountModel;
138
+ emailSiteIdentity: EmailSiteIdentityModel;
129
139
  embeddingChunk: EmbeddingChunkModel;
130
140
  enum: EnumModel;
131
141
  exclusionConstraint: ExclusionConstraintModel;
@@ -142,13 +152,16 @@ export declare function createClient(config: OrmClientConfig): {
142
152
  nodeTypeRegistry: NodeTypeRegistryModel;
143
153
  page: PageModel;
144
154
  partition: PartitionModel;
155
+ platformApi: PlatformApiModel;
145
156
  platformApiSchema: PlatformApiSchemaModel;
146
157
  platformApiSetting: PlatformApiSettingModel;
147
- platformApis: PlatformApisModel;
148
158
  platformCorsSetting: PlatformCorsSettingModel;
149
159
  platformDomain: PlatformDomainModel;
150
160
  platformDomainEvent: PlatformDomainEventModel;
151
161
  platformDomainVerification: PlatformDomainVerificationModel;
162
+ platformEmailIdentity: PlatformEmailIdentityModel;
163
+ platformEmailProviderAccount: PlatformEmailProviderAccountModel;
164
+ platformEmailSiteIdentity: PlatformEmailSiteIdentityModel;
152
165
  platformManagedDomain: PlatformManagedDomainModel;
153
166
  platformPage: PlatformPageModel;
154
167
  platformSiteAppLink: PlatformSiteAppLinkModel;
@@ -176,7 +189,6 @@ export declare function createClient(config: OrmClientConfig): {
176
189
  siteTheme: SiteThemeModel;
177
190
  siteWebConfig: SiteWebConfigModel;
178
191
  spatialRelation: SpatialRelationModel;
179
- sqlAction: SqlActionModel;
180
192
  tableBehavior: TableBehaviorModel;
181
193
  table: TableModel;
182
194
  tableGrant: TableGrantModel;
@@ -223,20 +235,25 @@ export declare function createClient(config: OrmClientConfig): {
223
235
  }>;
224
236
  };
225
237
  mutation: {
226
- acceptDatabaseTransfer: <S extends import("./input-types").AcceptDatabaseTransferPayloadSelect>(args: import("./mutation").AcceptDatabaseTransferVariables, options: {
227
- select: S;
228
- } & import("./select-types").StrictSelect<S, import("./input-types").AcceptDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
229
- acceptDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").AcceptDatabaseTransferPayload, S> | null;
230
- }>;
231
238
  applyRls: <S extends import("./input-types").ApplyRlsPayloadSelect>(args: import("./mutation").ApplyRlsVariables, options: {
232
239
  select: S;
233
240
  } & import("./select-types").StrictSelect<S, import("./input-types").ApplyRlsPayloadSelect>) => import("./query-builder").QueryBuilder<{
234
241
  applyRls: import("./select-types").InferSelectResult<import("./input-types").ApplyRlsPayload, S> | null;
235
242
  }>;
236
- cancelDatabaseTransfer: <S extends import("./input-types").CancelDatabaseTransferPayloadSelect>(args: import("./mutation").CancelDatabaseTransferVariables, options: {
243
+ appsInstallApp: <S extends import("./input-types").AppsInstallAppPayloadSelect>(args: import("./mutation").AppsInstallAppVariables, options: {
244
+ select: S;
245
+ } & import("./select-types").StrictSelect<S, import("./input-types").AppsInstallAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
246
+ appsInstallApp: import("./select-types").InferSelectResult<import("./input-types").AppsInstallAppPayload, S> | null;
247
+ }>;
248
+ appsUninstallApp: <S extends import("./input-types").AppsUninstallAppPayloadSelect>(args: import("./mutation").AppsUninstallAppVariables, options: {
237
249
  select: S;
238
- } & import("./select-types").StrictSelect<S, import("./input-types").CancelDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
239
- cancelDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").CancelDatabaseTransferPayload, S> | null;
250
+ } & import("./select-types").StrictSelect<S, import("./input-types").AppsUninstallAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
251
+ appsUninstallApp: import("./select-types").InferSelectResult<import("./input-types").AppsUninstallAppPayload, S> | null;
252
+ }>;
253
+ appsUpgradeApp: <S extends import("./input-types").AppsUpgradeAppPayloadSelect>(args: import("./mutation").AppsUpgradeAppVariables, options: {
254
+ select: S;
255
+ } & import("./select-types").StrictSelect<S, import("./input-types").AppsUpgradeAppPayloadSelect>) => import("./query-builder").QueryBuilder<{
256
+ appsUpgradeApp: import("./select-types").InferSelectResult<import("./input-types").AppsUpgradeAppPayload, S> | null;
240
257
  }>;
241
258
  domainsAssignSubdomain: <S extends import("./input-types").DomainsAssignSubdomainPayloadSelect>(args: import("./mutation").DomainsAssignSubdomainVariables, options: {
242
259
  select: S;
@@ -258,11 +275,6 @@ export declare function createClient(config: OrmClientConfig): {
258
275
  } & import("./select-types").StrictSelect<S, import("./input-types").ProvisionBucketPayloadSelect>) => import("./query-builder").QueryBuilder<{
259
276
  provisionBucket: import("./select-types").InferSelectResult<import("./input-types").ProvisionBucketPayload, S> | null;
260
277
  }>;
261
- rejectDatabaseTransfer: <S extends import("./input-types").RejectDatabaseTransferPayloadSelect>(args: import("./mutation").RejectDatabaseTransferVariables, options: {
262
- select: S;
263
- } & import("./select-types").StrictSelect<S, import("./input-types").RejectDatabaseTransferPayloadSelect>) => import("./query-builder").QueryBuilder<{
264
- rejectDatabaseTransfer: import("./select-types").InferSelectResult<import("./input-types").RejectDatabaseTransferPayload, S> | null;
265
- }>;
266
278
  requestDatabase: <S extends import("./input-types").RequestDatabasePayloadSelect>(args: import("./mutation").RequestDatabaseVariables, options: {
267
279
  select: S;
268
280
  } & import("./select-types").StrictSelect<S, import("./input-types").RequestDatabasePayloadSelect>) => import("./query-builder").QueryBuilder<{
@@ -4,10 +4,11 @@
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
6
  import { OrmClient } from './client';
7
+ import { ApiModel } from './models/api';
7
8
  import { ApiSchemaModel } from './models/apiSchema';
8
9
  import { ApiSettingModel } from './models/apiSetting';
9
- import { ApisModel } from './models/apis';
10
- import { AstMigrationModel } from './models/astMigration';
10
+ import { AppComponentModel } from './models/appComponent';
11
+ import { AppModel } from './models/app';
11
12
  import { CheckConstraintModel } from './models/checkConstraint';
12
13
  import { CompositeTypeModel } from './models/compositeType';
13
14
  import { CorsSettingModel } from './models/corsSetting';
@@ -20,6 +21,9 @@ import { DomainModel } from './models/domain';
20
21
  import { DomainEventModel } from './models/domainEvent';
21
22
  import { DomainTypeModel } from './models/domainType';
22
23
  import { DomainVerificationModel } from './models/domainVerification';
24
+ import { EmailIdentityModel } from './models/emailIdentity';
25
+ import { EmailProviderAccountModel } from './models/emailProviderAccount';
26
+ import { EmailSiteIdentityModel } from './models/emailSiteIdentity';
23
27
  import { EmbeddingChunkModel } from './models/embeddingChunk';
24
28
  import { EnumModel } from './models/enum';
25
29
  import { ExclusionConstraintModel } from './models/exclusionConstraint';
@@ -36,13 +40,16 @@ import { ManagedDomainModel } from './models/managedDomain';
36
40
  import { NodeTypeRegistryModel } from './models/nodeTypeRegistry';
37
41
  import { PageModel } from './models/page';
38
42
  import { PartitionModel } from './models/partition';
43
+ import { PlatformApiModel } from './models/platformApi';
39
44
  import { PlatformApiSchemaModel } from './models/platformApiSchema';
40
45
  import { PlatformApiSettingModel } from './models/platformApiSetting';
41
- import { PlatformApisModel } from './models/platformApis';
42
46
  import { PlatformCorsSettingModel } from './models/platformCorsSetting';
43
47
  import { PlatformDomainModel } from './models/platformDomain';
44
48
  import { PlatformDomainEventModel } from './models/platformDomainEvent';
45
49
  import { PlatformDomainVerificationModel } from './models/platformDomainVerification';
50
+ import { PlatformEmailIdentityModel } from './models/platformEmailIdentity';
51
+ import { PlatformEmailProviderAccountModel } from './models/platformEmailProviderAccount';
52
+ import { PlatformEmailSiteIdentityModel } from './models/platformEmailSiteIdentity';
46
53
  import { PlatformManagedDomainModel } from './models/platformManagedDomain';
47
54
  import { PlatformPageModel } from './models/platformPage';
48
55
  import { PlatformSiteAppLinkModel } from './models/platformSiteAppLink';
@@ -70,7 +77,6 @@ import { SiteModuleModel } from './models/siteModule';
70
77
  import { SiteThemeModel } from './models/siteTheme';
71
78
  import { SiteWebConfigModel } from './models/siteWebConfig';
72
79
  import { SpatialRelationModel } from './models/spatialRelation';
73
- import { SqlActionModel } from './models/sqlAction';
74
80
  import { TableBehaviorModel } from './models/tableBehavior';
75
81
  import { TableModel } from './models/table';
76
82
  import { TableGrantModel } from './models/tableGrant';
@@ -118,10 +124,11 @@ export { createMutationOperations } from './mutation';
118
124
  export function createClient(config) {
119
125
  const client = new OrmClient(config);
120
126
  return {
127
+ api: new ApiModel(client),
121
128
  apiSchema: new ApiSchemaModel(client),
122
129
  apiSetting: new ApiSettingModel(client),
123
- apis: new ApisModel(client),
124
- astMigration: new AstMigrationModel(client),
130
+ appComponent: new AppComponentModel(client),
131
+ app: new AppModel(client),
125
132
  checkConstraint: new CheckConstraintModel(client),
126
133
  compositeType: new CompositeTypeModel(client),
127
134
  corsSetting: new CorsSettingModel(client),
@@ -134,6 +141,9 @@ export function createClient(config) {
134
141
  domainEvent: new DomainEventModel(client),
135
142
  domainType: new DomainTypeModel(client),
136
143
  domainVerification: new DomainVerificationModel(client),
144
+ emailIdentity: new EmailIdentityModel(client),
145
+ emailProviderAccount: new EmailProviderAccountModel(client),
146
+ emailSiteIdentity: new EmailSiteIdentityModel(client),
137
147
  embeddingChunk: new EmbeddingChunkModel(client),
138
148
  enum: new EnumModel(client),
139
149
  exclusionConstraint: new ExclusionConstraintModel(client),
@@ -150,13 +160,16 @@ export function createClient(config) {
150
160
  nodeTypeRegistry: new NodeTypeRegistryModel(client),
151
161
  page: new PageModel(client),
152
162
  partition: new PartitionModel(client),
163
+ platformApi: new PlatformApiModel(client),
153
164
  platformApiSchema: new PlatformApiSchemaModel(client),
154
165
  platformApiSetting: new PlatformApiSettingModel(client),
155
- platformApis: new PlatformApisModel(client),
156
166
  platformCorsSetting: new PlatformCorsSettingModel(client),
157
167
  platformDomain: new PlatformDomainModel(client),
158
168
  platformDomainEvent: new PlatformDomainEventModel(client),
159
169
  platformDomainVerification: new PlatformDomainVerificationModel(client),
170
+ platformEmailIdentity: new PlatformEmailIdentityModel(client),
171
+ platformEmailProviderAccount: new PlatformEmailProviderAccountModel(client),
172
+ platformEmailSiteIdentity: new PlatformEmailSiteIdentityModel(client),
160
173
  platformManagedDomain: new PlatformManagedDomainModel(client),
161
174
  platformPage: new PlatformPageModel(client),
162
175
  platformSiteAppLink: new PlatformSiteAppLinkModel(client),
@@ -184,7 +197,6 @@ export function createClient(config) {
184
197
  siteTheme: new SiteThemeModel(client),
185
198
  siteWebConfig: new SiteWebConfigModel(client),
186
199
  spatialRelation: new SpatialRelationModel(client),
187
- sqlAction: new SqlActionModel(client),
188
200
  tableBehavior: new TableBehaviorModel(client),
189
201
  table: new TableModel(client),
190
202
  tableGrant: new TableGrantModel(client),