@constructive-io/sdk 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (723) hide show
  1. package/LICENSE +23 -0
  2. package/README.md +84 -0
  3. package/admin/index.d.ts +5 -0
  4. package/admin/index.js +21 -0
  5. package/admin/orm/client.d.ts +55 -0
  6. package/admin/orm/client.js +105 -0
  7. package/admin/orm/index.d.ts +153 -0
  8. package/admin/orm/index.js +122 -0
  9. package/admin/orm/input-types.d.ts +3682 -0
  10. package/admin/orm/input-types.js +5 -0
  11. package/admin/orm/models/appAchievement.d.ts +56 -0
  12. package/admin/orm/models/appAchievement.js +98 -0
  13. package/admin/orm/models/appAdminGrant.d.ts +56 -0
  14. package/admin/orm/models/appAdminGrant.js +98 -0
  15. package/admin/orm/models/appGrant.d.ts +56 -0
  16. package/admin/orm/models/appGrant.js +98 -0
  17. package/admin/orm/models/appLevel.d.ts +56 -0
  18. package/admin/orm/models/appLevel.js +98 -0
  19. package/admin/orm/models/appLevelRequirement.d.ts +56 -0
  20. package/admin/orm/models/appLevelRequirement.js +98 -0
  21. package/admin/orm/models/appLimit.d.ts +56 -0
  22. package/admin/orm/models/appLimit.js +98 -0
  23. package/admin/orm/models/appLimitDefault.d.ts +56 -0
  24. package/admin/orm/models/appLimitDefault.js +98 -0
  25. package/admin/orm/models/appMembership.d.ts +56 -0
  26. package/admin/orm/models/appMembership.js +98 -0
  27. package/admin/orm/models/appMembershipDefault.d.ts +56 -0
  28. package/admin/orm/models/appMembershipDefault.js +98 -0
  29. package/admin/orm/models/appOwnerGrant.d.ts +56 -0
  30. package/admin/orm/models/appOwnerGrant.js +98 -0
  31. package/admin/orm/models/appPermission.d.ts +56 -0
  32. package/admin/orm/models/appPermission.js +98 -0
  33. package/admin/orm/models/appPermissionDefault.d.ts +56 -0
  34. package/admin/orm/models/appPermissionDefault.js +98 -0
  35. package/admin/orm/models/appStep.d.ts +56 -0
  36. package/admin/orm/models/appStep.js +98 -0
  37. package/admin/orm/models/claimedInvite.d.ts +56 -0
  38. package/admin/orm/models/claimedInvite.js +98 -0
  39. package/admin/orm/models/index.d.ts +33 -0
  40. package/admin/orm/models/index.js +64 -0
  41. package/admin/orm/models/invite.d.ts +56 -0
  42. package/admin/orm/models/invite.js +98 -0
  43. package/admin/orm/models/membershipType.d.ts +56 -0
  44. package/admin/orm/models/membershipType.js +98 -0
  45. package/admin/orm/models/orgAdminGrant.d.ts +56 -0
  46. package/admin/orm/models/orgAdminGrant.js +98 -0
  47. package/admin/orm/models/orgClaimedInvite.d.ts +56 -0
  48. package/admin/orm/models/orgClaimedInvite.js +98 -0
  49. package/admin/orm/models/orgGrant.d.ts +56 -0
  50. package/admin/orm/models/orgGrant.js +98 -0
  51. package/admin/orm/models/orgInvite.d.ts +56 -0
  52. package/admin/orm/models/orgInvite.js +98 -0
  53. package/admin/orm/models/orgLimit.d.ts +56 -0
  54. package/admin/orm/models/orgLimit.js +98 -0
  55. package/admin/orm/models/orgLimitDefault.d.ts +56 -0
  56. package/admin/orm/models/orgLimitDefault.js +98 -0
  57. package/admin/orm/models/orgMember.d.ts +56 -0
  58. package/admin/orm/models/orgMember.js +98 -0
  59. package/admin/orm/models/orgMembership.d.ts +56 -0
  60. package/admin/orm/models/orgMembership.js +98 -0
  61. package/admin/orm/models/orgMembershipDefault.d.ts +56 -0
  62. package/admin/orm/models/orgMembershipDefault.js +98 -0
  63. package/admin/orm/models/orgOwnerGrant.d.ts +56 -0
  64. package/admin/orm/models/orgOwnerGrant.js +98 -0
  65. package/admin/orm/models/orgPermission.d.ts +56 -0
  66. package/admin/orm/models/orgPermission.js +98 -0
  67. package/admin/orm/models/orgPermissionDefault.d.ts +56 -0
  68. package/admin/orm/models/orgPermissionDefault.js +98 -0
  69. package/admin/orm/mutation/index.d.ts +27 -0
  70. package/admin/orm/mutation/index.js +33 -0
  71. package/admin/orm/query/index.d.ts +101 -0
  72. package/admin/orm/query/index.js +173 -0
  73. package/admin/orm/query-builder.d.ts +89 -0
  74. package/admin/orm/query-builder.js +611 -0
  75. package/admin/orm/select-types.d.ts +101 -0
  76. package/admin/orm/select-types.js +2 -0
  77. package/admin/orm/types.d.ts +6 -0
  78. package/admin/orm/types.js +23 -0
  79. package/auth/index.d.ts +5 -0
  80. package/auth/index.js +21 -0
  81. package/auth/orm/client.d.ts +55 -0
  82. package/auth/orm/client.js +105 -0
  83. package/auth/orm/index.d.ts +151 -0
  84. package/auth/orm/index.js +80 -0
  85. package/auth/orm/input-types.d.ts +1412 -0
  86. package/auth/orm/input-types.js +5 -0
  87. package/auth/orm/models/auditLog.d.ts +56 -0
  88. package/auth/orm/models/auditLog.js +98 -0
  89. package/auth/orm/models/connectedAccount.d.ts +56 -0
  90. package/auth/orm/models/connectedAccount.js +98 -0
  91. package/auth/orm/models/cryptoAddress.d.ts +56 -0
  92. package/auth/orm/models/cryptoAddress.js +98 -0
  93. package/auth/orm/models/email.d.ts +56 -0
  94. package/auth/orm/models/email.js +98 -0
  95. package/auth/orm/models/index.d.ts +12 -0
  96. package/auth/orm/models/index.js +22 -0
  97. package/auth/orm/models/phoneNumber.d.ts +56 -0
  98. package/auth/orm/models/phoneNumber.js +98 -0
  99. package/auth/orm/models/roleType.d.ts +56 -0
  100. package/auth/orm/models/roleType.js +98 -0
  101. package/auth/orm/models/user.d.ts +56 -0
  102. package/auth/orm/models/user.js +98 -0
  103. package/auth/orm/mutation/index.d.ts +139 -0
  104. package/auth/orm/mutation/index.js +201 -0
  105. package/auth/orm/query/index.d.ts +31 -0
  106. package/auth/orm/query/index.js +37 -0
  107. package/auth/orm/query-builder.d.ts +89 -0
  108. package/auth/orm/query-builder.js +611 -0
  109. package/auth/orm/select-types.d.ts +101 -0
  110. package/auth/orm/select-types.js +2 -0
  111. package/auth/orm/types.d.ts +6 -0
  112. package/auth/orm/types.js +23 -0
  113. package/esm/admin/index.d.ts +5 -0
  114. package/esm/admin/index.js +5 -0
  115. package/esm/admin/orm/client.d.ts +55 -0
  116. package/esm/admin/orm/client.js +99 -0
  117. package/esm/admin/orm/index.d.ts +153 -0
  118. package/esm/admin/orm/index.js +100 -0
  119. package/esm/admin/orm/input-types.d.ts +3682 -0
  120. package/esm/admin/orm/input-types.js +2 -0
  121. package/esm/admin/orm/models/appAchievement.d.ts +56 -0
  122. package/esm/admin/orm/models/appAchievement.js +94 -0
  123. package/esm/admin/orm/models/appAdminGrant.d.ts +56 -0
  124. package/esm/admin/orm/models/appAdminGrant.js +94 -0
  125. package/esm/admin/orm/models/appGrant.d.ts +56 -0
  126. package/esm/admin/orm/models/appGrant.js +94 -0
  127. package/esm/admin/orm/models/appLevel.d.ts +56 -0
  128. package/esm/admin/orm/models/appLevel.js +94 -0
  129. package/esm/admin/orm/models/appLevelRequirement.d.ts +56 -0
  130. package/esm/admin/orm/models/appLevelRequirement.js +94 -0
  131. package/esm/admin/orm/models/appLimit.d.ts +56 -0
  132. package/esm/admin/orm/models/appLimit.js +94 -0
  133. package/esm/admin/orm/models/appLimitDefault.d.ts +56 -0
  134. package/esm/admin/orm/models/appLimitDefault.js +94 -0
  135. package/esm/admin/orm/models/appMembership.d.ts +56 -0
  136. package/esm/admin/orm/models/appMembership.js +94 -0
  137. package/esm/admin/orm/models/appMembershipDefault.d.ts +56 -0
  138. package/esm/admin/orm/models/appMembershipDefault.js +94 -0
  139. package/esm/admin/orm/models/appOwnerGrant.d.ts +56 -0
  140. package/esm/admin/orm/models/appOwnerGrant.js +94 -0
  141. package/esm/admin/orm/models/appPermission.d.ts +56 -0
  142. package/esm/admin/orm/models/appPermission.js +94 -0
  143. package/esm/admin/orm/models/appPermissionDefault.d.ts +56 -0
  144. package/esm/admin/orm/models/appPermissionDefault.js +94 -0
  145. package/esm/admin/orm/models/appStep.d.ts +56 -0
  146. package/esm/admin/orm/models/appStep.js +94 -0
  147. package/esm/admin/orm/models/claimedInvite.d.ts +56 -0
  148. package/esm/admin/orm/models/claimedInvite.js +94 -0
  149. package/esm/admin/orm/models/index.d.ts +33 -0
  150. package/esm/admin/orm/models/index.js +33 -0
  151. package/esm/admin/orm/models/invite.d.ts +56 -0
  152. package/esm/admin/orm/models/invite.js +94 -0
  153. package/esm/admin/orm/models/membershipType.d.ts +56 -0
  154. package/esm/admin/orm/models/membershipType.js +94 -0
  155. package/esm/admin/orm/models/orgAdminGrant.d.ts +56 -0
  156. package/esm/admin/orm/models/orgAdminGrant.js +94 -0
  157. package/esm/admin/orm/models/orgClaimedInvite.d.ts +56 -0
  158. package/esm/admin/orm/models/orgClaimedInvite.js +94 -0
  159. package/esm/admin/orm/models/orgGrant.d.ts +56 -0
  160. package/esm/admin/orm/models/orgGrant.js +94 -0
  161. package/esm/admin/orm/models/orgInvite.d.ts +56 -0
  162. package/esm/admin/orm/models/orgInvite.js +94 -0
  163. package/esm/admin/orm/models/orgLimit.d.ts +56 -0
  164. package/esm/admin/orm/models/orgLimit.js +94 -0
  165. package/esm/admin/orm/models/orgLimitDefault.d.ts +56 -0
  166. package/esm/admin/orm/models/orgLimitDefault.js +94 -0
  167. package/esm/admin/orm/models/orgMember.d.ts +56 -0
  168. package/esm/admin/orm/models/orgMember.js +94 -0
  169. package/esm/admin/orm/models/orgMembership.d.ts +56 -0
  170. package/esm/admin/orm/models/orgMembership.js +94 -0
  171. package/esm/admin/orm/models/orgMembershipDefault.d.ts +56 -0
  172. package/esm/admin/orm/models/orgMembershipDefault.js +94 -0
  173. package/esm/admin/orm/models/orgOwnerGrant.d.ts +56 -0
  174. package/esm/admin/orm/models/orgOwnerGrant.js +94 -0
  175. package/esm/admin/orm/models/orgPermission.d.ts +56 -0
  176. package/esm/admin/orm/models/orgPermission.js +94 -0
  177. package/esm/admin/orm/models/orgPermissionDefault.d.ts +56 -0
  178. package/esm/admin/orm/models/orgPermissionDefault.js +94 -0
  179. package/esm/admin/orm/mutation/index.d.ts +27 -0
  180. package/esm/admin/orm/mutation/index.js +30 -0
  181. package/esm/admin/orm/query/index.d.ts +101 -0
  182. package/esm/admin/orm/query/index.js +170 -0
  183. package/esm/admin/orm/query-builder.d.ts +89 -0
  184. package/esm/admin/orm/query-builder.js +564 -0
  185. package/esm/admin/orm/select-types.d.ts +101 -0
  186. package/esm/admin/orm/select-types.js +1 -0
  187. package/esm/admin/orm/types.d.ts +6 -0
  188. package/esm/admin/orm/types.js +7 -0
  189. package/esm/auth/index.d.ts +5 -0
  190. package/esm/auth/index.js +5 -0
  191. package/esm/auth/orm/client.d.ts +55 -0
  192. package/esm/auth/orm/client.js +99 -0
  193. package/esm/auth/orm/index.d.ts +151 -0
  194. package/esm/auth/orm/index.js +58 -0
  195. package/esm/auth/orm/input-types.d.ts +1412 -0
  196. package/esm/auth/orm/input-types.js +2 -0
  197. package/esm/auth/orm/models/auditLog.d.ts +56 -0
  198. package/esm/auth/orm/models/auditLog.js +94 -0
  199. package/esm/auth/orm/models/connectedAccount.d.ts +56 -0
  200. package/esm/auth/orm/models/connectedAccount.js +94 -0
  201. package/esm/auth/orm/models/cryptoAddress.d.ts +56 -0
  202. package/esm/auth/orm/models/cryptoAddress.js +94 -0
  203. package/esm/auth/orm/models/email.d.ts +56 -0
  204. package/esm/auth/orm/models/email.js +94 -0
  205. package/esm/auth/orm/models/index.d.ts +12 -0
  206. package/esm/auth/orm/models/index.js +12 -0
  207. package/esm/auth/orm/models/phoneNumber.d.ts +56 -0
  208. package/esm/auth/orm/models/phoneNumber.js +94 -0
  209. package/esm/auth/orm/models/roleType.d.ts +56 -0
  210. package/esm/auth/orm/models/roleType.js +94 -0
  211. package/esm/auth/orm/models/user.d.ts +56 -0
  212. package/esm/auth/orm/models/user.js +94 -0
  213. package/esm/auth/orm/mutation/index.d.ts +139 -0
  214. package/esm/auth/orm/mutation/index.js +198 -0
  215. package/esm/auth/orm/query/index.d.ts +31 -0
  216. package/esm/auth/orm/query/index.js +34 -0
  217. package/esm/auth/orm/query-builder.d.ts +89 -0
  218. package/esm/auth/orm/query-builder.js +564 -0
  219. package/esm/auth/orm/select-types.d.ts +101 -0
  220. package/esm/auth/orm/select-types.js +1 -0
  221. package/esm/auth/orm/types.d.ts +6 -0
  222. package/esm/auth/orm/types.js +7 -0
  223. package/esm/index.d.ts +12 -0
  224. package/esm/index.js +12 -0
  225. package/esm/objects/index.d.ts +5 -0
  226. package/esm/objects/index.js +5 -0
  227. package/esm/objects/orm/client.d.ts +55 -0
  228. package/esm/objects/orm/client.js +99 -0
  229. package/esm/objects/orm/index.d.ts +107 -0
  230. package/esm/objects/orm/index.js +54 -0
  231. package/esm/objects/orm/input-types.d.ts +909 -0
  232. package/esm/objects/orm/input-types.js +2 -0
  233. package/esm/objects/orm/models/commit.d.ts +56 -0
  234. package/esm/objects/orm/models/commit.js +94 -0
  235. package/esm/objects/orm/models/getAllRecord.d.ts +32 -0
  236. package/esm/objects/orm/models/getAllRecord.js +51 -0
  237. package/esm/objects/orm/models/index.d.ts +10 -0
  238. package/esm/objects/orm/models/index.js +10 -0
  239. package/esm/objects/orm/models/object.d.ts +56 -0
  240. package/esm/objects/orm/models/object.js +84 -0
  241. package/esm/objects/orm/models/ref.d.ts +56 -0
  242. package/esm/objects/orm/models/ref.js +94 -0
  243. package/esm/objects/orm/models/store.d.ts +56 -0
  244. package/esm/objects/orm/models/store.js +94 -0
  245. package/esm/objects/orm/mutation/index.d.ts +75 -0
  246. package/esm/objects/orm/mutation/index.js +102 -0
  247. package/esm/objects/orm/query/index.d.ts +57 -0
  248. package/esm/objects/orm/query/index.js +110 -0
  249. package/esm/objects/orm/query-builder.d.ts +89 -0
  250. package/esm/objects/orm/query-builder.js +564 -0
  251. package/esm/objects/orm/select-types.d.ts +101 -0
  252. package/esm/objects/orm/select-types.js +1 -0
  253. package/esm/objects/orm/types.d.ts +6 -0
  254. package/esm/objects/orm/types.js +7 -0
  255. package/esm/public/index.d.ts +5 -0
  256. package/esm/public/index.js +5 -0
  257. package/esm/public/orm/client.d.ts +55 -0
  258. package/esm/public/orm/client.js +99 -0
  259. package/esm/public/orm/index.d.ts +480 -0
  260. package/esm/public/orm/index.js +242 -0
  261. package/esm/public/orm/input-types.d.ts +15987 -0
  262. package/esm/public/orm/input-types.js +128 -0
  263. package/esm/public/orm/models/api.d.ts +56 -0
  264. package/esm/public/orm/models/api.js +94 -0
  265. package/esm/public/orm/models/apiModule.d.ts +56 -0
  266. package/esm/public/orm/models/apiModule.js +94 -0
  267. package/esm/public/orm/models/apiSchema.d.ts +56 -0
  268. package/esm/public/orm/models/apiSchema.js +94 -0
  269. package/esm/public/orm/models/app.d.ts +56 -0
  270. package/esm/public/orm/models/app.js +94 -0
  271. package/esm/public/orm/models/appAchievement.d.ts +56 -0
  272. package/esm/public/orm/models/appAchievement.js +94 -0
  273. package/esm/public/orm/models/appAdminGrant.d.ts +56 -0
  274. package/esm/public/orm/models/appAdminGrant.js +94 -0
  275. package/esm/public/orm/models/appGrant.d.ts +56 -0
  276. package/esm/public/orm/models/appGrant.js +94 -0
  277. package/esm/public/orm/models/appLevel.d.ts +56 -0
  278. package/esm/public/orm/models/appLevel.js +94 -0
  279. package/esm/public/orm/models/appLevelRequirement.d.ts +56 -0
  280. package/esm/public/orm/models/appLevelRequirement.js +94 -0
  281. package/esm/public/orm/models/appLimit.d.ts +56 -0
  282. package/esm/public/orm/models/appLimit.js +94 -0
  283. package/esm/public/orm/models/appLimitDefault.d.ts +56 -0
  284. package/esm/public/orm/models/appLimitDefault.js +94 -0
  285. package/esm/public/orm/models/appMembership.d.ts +56 -0
  286. package/esm/public/orm/models/appMembership.js +94 -0
  287. package/esm/public/orm/models/appMembershipDefault.d.ts +56 -0
  288. package/esm/public/orm/models/appMembershipDefault.js +94 -0
  289. package/esm/public/orm/models/appOwnerGrant.d.ts +56 -0
  290. package/esm/public/orm/models/appOwnerGrant.js +94 -0
  291. package/esm/public/orm/models/appPermission.d.ts +56 -0
  292. package/esm/public/orm/models/appPermission.js +94 -0
  293. package/esm/public/orm/models/appPermissionDefault.d.ts +56 -0
  294. package/esm/public/orm/models/appPermissionDefault.js +94 -0
  295. package/esm/public/orm/models/appStep.d.ts +56 -0
  296. package/esm/public/orm/models/appStep.js +94 -0
  297. package/esm/public/orm/models/astMigration.d.ts +38 -0
  298. package/esm/public/orm/models/astMigration.js +72 -0
  299. package/esm/public/orm/models/auditLog.d.ts +56 -0
  300. package/esm/public/orm/models/auditLog.js +94 -0
  301. package/esm/public/orm/models/checkConstraint.d.ts +56 -0
  302. package/esm/public/orm/models/checkConstraint.js +94 -0
  303. package/esm/public/orm/models/claimedInvite.d.ts +56 -0
  304. package/esm/public/orm/models/claimedInvite.js +94 -0
  305. package/esm/public/orm/models/commit.d.ts +56 -0
  306. package/esm/public/orm/models/commit.js +94 -0
  307. package/esm/public/orm/models/connectedAccount.d.ts +56 -0
  308. package/esm/public/orm/models/connectedAccount.js +94 -0
  309. package/esm/public/orm/models/connectedAccountsModule.d.ts +56 -0
  310. package/esm/public/orm/models/connectedAccountsModule.js +94 -0
  311. package/esm/public/orm/models/cryptoAddress.d.ts +56 -0
  312. package/esm/public/orm/models/cryptoAddress.js +94 -0
  313. package/esm/public/orm/models/cryptoAddressesModule.d.ts +56 -0
  314. package/esm/public/orm/models/cryptoAddressesModule.js +94 -0
  315. package/esm/public/orm/models/cryptoAuthModule.d.ts +56 -0
  316. package/esm/public/orm/models/cryptoAuthModule.js +94 -0
  317. package/esm/public/orm/models/database.d.ts +56 -0
  318. package/esm/public/orm/models/database.js +94 -0
  319. package/esm/public/orm/models/databaseProvisionModule.d.ts +56 -0
  320. package/esm/public/orm/models/databaseProvisionModule.js +94 -0
  321. package/esm/public/orm/models/defaultIdsModule.d.ts +56 -0
  322. package/esm/public/orm/models/defaultIdsModule.js +94 -0
  323. package/esm/public/orm/models/denormalizedTableField.d.ts +56 -0
  324. package/esm/public/orm/models/denormalizedTableField.js +94 -0
  325. package/esm/public/orm/models/domain.d.ts +56 -0
  326. package/esm/public/orm/models/domain.js +94 -0
  327. package/esm/public/orm/models/email.d.ts +56 -0
  328. package/esm/public/orm/models/email.js +94 -0
  329. package/esm/public/orm/models/emailsModule.d.ts +56 -0
  330. package/esm/public/orm/models/emailsModule.js +94 -0
  331. package/esm/public/orm/models/encryptedSecretsModule.d.ts +56 -0
  332. package/esm/public/orm/models/encryptedSecretsModule.js +94 -0
  333. package/esm/public/orm/models/field.d.ts +56 -0
  334. package/esm/public/orm/models/field.js +94 -0
  335. package/esm/public/orm/models/fieldModule.d.ts +56 -0
  336. package/esm/public/orm/models/fieldModule.js +94 -0
  337. package/esm/public/orm/models/foreignKeyConstraint.d.ts +56 -0
  338. package/esm/public/orm/models/foreignKeyConstraint.js +94 -0
  339. package/esm/public/orm/models/fullTextSearch.d.ts +56 -0
  340. package/esm/public/orm/models/fullTextSearch.js +94 -0
  341. package/esm/public/orm/models/getAllRecord.d.ts +32 -0
  342. package/esm/public/orm/models/getAllRecord.js +51 -0
  343. package/esm/public/orm/models/hierarchyModule.d.ts +56 -0
  344. package/esm/public/orm/models/hierarchyModule.js +94 -0
  345. package/esm/public/orm/models/index.d.ts +104 -0
  346. package/esm/public/orm/models/index.js +104 -0
  347. package/esm/public/orm/models/indexModel.d.ts +56 -0
  348. package/esm/public/orm/models/indexModel.js +94 -0
  349. package/esm/public/orm/models/invite.d.ts +56 -0
  350. package/esm/public/orm/models/invite.js +94 -0
  351. package/esm/public/orm/models/invitesModule.d.ts +56 -0
  352. package/esm/public/orm/models/invitesModule.js +94 -0
  353. package/esm/public/orm/models/levelsModule.d.ts +56 -0
  354. package/esm/public/orm/models/levelsModule.js +94 -0
  355. package/esm/public/orm/models/limitFunction.d.ts +56 -0
  356. package/esm/public/orm/models/limitFunction.js +94 -0
  357. package/esm/public/orm/models/limitsModule.d.ts +56 -0
  358. package/esm/public/orm/models/limitsModule.js +94 -0
  359. package/esm/public/orm/models/membershipType.d.ts +56 -0
  360. package/esm/public/orm/models/membershipType.js +94 -0
  361. package/esm/public/orm/models/membershipTypesModule.d.ts +56 -0
  362. package/esm/public/orm/models/membershipTypesModule.js +94 -0
  363. package/esm/public/orm/models/membershipsModule.d.ts +56 -0
  364. package/esm/public/orm/models/membershipsModule.js +94 -0
  365. package/esm/public/orm/models/nodeTypeRegistry.d.ts +56 -0
  366. package/esm/public/orm/models/nodeTypeRegistry.js +94 -0
  367. package/esm/public/orm/models/object.d.ts +56 -0
  368. package/esm/public/orm/models/object.js +84 -0
  369. package/esm/public/orm/models/orgAdminGrant.d.ts +56 -0
  370. package/esm/public/orm/models/orgAdminGrant.js +94 -0
  371. package/esm/public/orm/models/orgClaimedInvite.d.ts +56 -0
  372. package/esm/public/orm/models/orgClaimedInvite.js +94 -0
  373. package/esm/public/orm/models/orgGrant.d.ts +56 -0
  374. package/esm/public/orm/models/orgGrant.js +94 -0
  375. package/esm/public/orm/models/orgInvite.d.ts +56 -0
  376. package/esm/public/orm/models/orgInvite.js +94 -0
  377. package/esm/public/orm/models/orgLimit.d.ts +56 -0
  378. package/esm/public/orm/models/orgLimit.js +94 -0
  379. package/esm/public/orm/models/orgLimitDefault.d.ts +56 -0
  380. package/esm/public/orm/models/orgLimitDefault.js +94 -0
  381. package/esm/public/orm/models/orgMember.d.ts +56 -0
  382. package/esm/public/orm/models/orgMember.js +94 -0
  383. package/esm/public/orm/models/orgMembership.d.ts +56 -0
  384. package/esm/public/orm/models/orgMembership.js +94 -0
  385. package/esm/public/orm/models/orgMembershipDefault.d.ts +56 -0
  386. package/esm/public/orm/models/orgMembershipDefault.js +94 -0
  387. package/esm/public/orm/models/orgOwnerGrant.d.ts +56 -0
  388. package/esm/public/orm/models/orgOwnerGrant.js +94 -0
  389. package/esm/public/orm/models/orgPermission.d.ts +56 -0
  390. package/esm/public/orm/models/orgPermission.js +94 -0
  391. package/esm/public/orm/models/orgPermissionDefault.d.ts +56 -0
  392. package/esm/public/orm/models/orgPermissionDefault.js +94 -0
  393. package/esm/public/orm/models/permissionsModule.d.ts +56 -0
  394. package/esm/public/orm/models/permissionsModule.js +94 -0
  395. package/esm/public/orm/models/phoneNumber.d.ts +56 -0
  396. package/esm/public/orm/models/phoneNumber.js +94 -0
  397. package/esm/public/orm/models/phoneNumbersModule.d.ts +56 -0
  398. package/esm/public/orm/models/phoneNumbersModule.js +94 -0
  399. package/esm/public/orm/models/policy.d.ts +56 -0
  400. package/esm/public/orm/models/policy.js +94 -0
  401. package/esm/public/orm/models/primaryKeyConstraint.d.ts +56 -0
  402. package/esm/public/orm/models/primaryKeyConstraint.js +94 -0
  403. package/esm/public/orm/models/procedure.d.ts +56 -0
  404. package/esm/public/orm/models/procedure.js +94 -0
  405. package/esm/public/orm/models/profilesModule.d.ts +56 -0
  406. package/esm/public/orm/models/profilesModule.js +94 -0
  407. package/esm/public/orm/models/ref.d.ts +56 -0
  408. package/esm/public/orm/models/ref.js +94 -0
  409. package/esm/public/orm/models/rlsModule.d.ts +56 -0
  410. package/esm/public/orm/models/rlsModule.js +94 -0
  411. package/esm/public/orm/models/roleType.d.ts +56 -0
  412. package/esm/public/orm/models/roleType.js +94 -0
  413. package/esm/public/orm/models/schema.d.ts +56 -0
  414. package/esm/public/orm/models/schema.js +94 -0
  415. package/esm/public/orm/models/schemaGrant.d.ts +56 -0
  416. package/esm/public/orm/models/schemaGrant.js +94 -0
  417. package/esm/public/orm/models/secretsModule.d.ts +56 -0
  418. package/esm/public/orm/models/secretsModule.js +94 -0
  419. package/esm/public/orm/models/sessionsModule.d.ts +56 -0
  420. package/esm/public/orm/models/sessionsModule.js +94 -0
  421. package/esm/public/orm/models/site.d.ts +56 -0
  422. package/esm/public/orm/models/site.js +94 -0
  423. package/esm/public/orm/models/siteMetadatum.d.ts +56 -0
  424. package/esm/public/orm/models/siteMetadatum.js +94 -0
  425. package/esm/public/orm/models/siteModule.d.ts +56 -0
  426. package/esm/public/orm/models/siteModule.js +94 -0
  427. package/esm/public/orm/models/siteTheme.d.ts +56 -0
  428. package/esm/public/orm/models/siteTheme.js +94 -0
  429. package/esm/public/orm/models/sqlMigration.d.ts +38 -0
  430. package/esm/public/orm/models/sqlMigration.js +72 -0
  431. package/esm/public/orm/models/store.d.ts +56 -0
  432. package/esm/public/orm/models/store.js +94 -0
  433. package/esm/public/orm/models/table.d.ts +56 -0
  434. package/esm/public/orm/models/table.js +94 -0
  435. package/esm/public/orm/models/tableGrant.d.ts +56 -0
  436. package/esm/public/orm/models/tableGrant.js +94 -0
  437. package/esm/public/orm/models/tableModule.d.ts +56 -0
  438. package/esm/public/orm/models/tableModule.js +94 -0
  439. package/esm/public/orm/models/tableTemplateModule.d.ts +56 -0
  440. package/esm/public/orm/models/tableTemplateModule.js +94 -0
  441. package/esm/public/orm/models/trigger.d.ts +56 -0
  442. package/esm/public/orm/models/trigger.js +94 -0
  443. package/esm/public/orm/models/triggerFunction.d.ts +56 -0
  444. package/esm/public/orm/models/triggerFunction.js +94 -0
  445. package/esm/public/orm/models/uniqueConstraint.d.ts +56 -0
  446. package/esm/public/orm/models/uniqueConstraint.js +94 -0
  447. package/esm/public/orm/models/user.d.ts +56 -0
  448. package/esm/public/orm/models/user.js +94 -0
  449. package/esm/public/orm/models/userAuthModule.d.ts +56 -0
  450. package/esm/public/orm/models/userAuthModule.js +94 -0
  451. package/esm/public/orm/models/usersModule.d.ts +56 -0
  452. package/esm/public/orm/models/usersModule.js +94 -0
  453. package/esm/public/orm/models/uuidModule.d.ts +56 -0
  454. package/esm/public/orm/models/uuidModule.js +94 -0
  455. package/esm/public/orm/models/view.d.ts +56 -0
  456. package/esm/public/orm/models/view.js +94 -0
  457. package/esm/public/orm/models/viewGrant.d.ts +56 -0
  458. package/esm/public/orm/models/viewGrant.js +94 -0
  459. package/esm/public/orm/models/viewRule.d.ts +56 -0
  460. package/esm/public/orm/models/viewRule.js +94 -0
  461. package/esm/public/orm/models/viewTable.d.ts +56 -0
  462. package/esm/public/orm/models/viewTable.js +94 -0
  463. package/esm/public/orm/mutation/index.d.ts +259 -0
  464. package/esm/public/orm/mutation/index.js +378 -0
  465. package/esm/public/orm/query/index.d.ts +168 -0
  466. package/esm/public/orm/query/index.js +302 -0
  467. package/esm/public/orm/query-builder.d.ts +89 -0
  468. package/esm/public/orm/query-builder.js +564 -0
  469. package/esm/public/orm/select-types.d.ts +101 -0
  470. package/esm/public/orm/select-types.js +1 -0
  471. package/esm/public/orm/types.d.ts +6 -0
  472. package/esm/public/orm/types.js +7 -0
  473. package/index.d.ts +12 -0
  474. package/index.js +48 -0
  475. package/objects/index.d.ts +5 -0
  476. package/objects/index.js +21 -0
  477. package/objects/orm/client.d.ts +55 -0
  478. package/objects/orm/client.js +105 -0
  479. package/objects/orm/index.d.ts +107 -0
  480. package/objects/orm/index.js +76 -0
  481. package/objects/orm/input-types.d.ts +909 -0
  482. package/objects/orm/input-types.js +5 -0
  483. package/objects/orm/models/commit.d.ts +56 -0
  484. package/objects/orm/models/commit.js +98 -0
  485. package/objects/orm/models/getAllRecord.d.ts +32 -0
  486. package/objects/orm/models/getAllRecord.js +55 -0
  487. package/objects/orm/models/index.d.ts +10 -0
  488. package/objects/orm/models/index.js +18 -0
  489. package/objects/orm/models/object.d.ts +56 -0
  490. package/objects/orm/models/object.js +88 -0
  491. package/objects/orm/models/ref.d.ts +56 -0
  492. package/objects/orm/models/ref.js +98 -0
  493. package/objects/orm/models/store.d.ts +56 -0
  494. package/objects/orm/models/store.js +98 -0
  495. package/objects/orm/mutation/index.d.ts +75 -0
  496. package/objects/orm/mutation/index.js +105 -0
  497. package/objects/orm/query/index.d.ts +57 -0
  498. package/objects/orm/query/index.js +113 -0
  499. package/objects/orm/query-builder.d.ts +89 -0
  500. package/objects/orm/query-builder.js +611 -0
  501. package/objects/orm/select-types.d.ts +101 -0
  502. package/objects/orm/select-types.js +2 -0
  503. package/objects/orm/types.d.ts +6 -0
  504. package/objects/orm/types.js +23 -0
  505. package/package.json +54 -0
  506. package/public/index.d.ts +5 -0
  507. package/public/index.js +21 -0
  508. package/public/orm/client.d.ts +55 -0
  509. package/public/orm/client.js +105 -0
  510. package/public/orm/index.d.ts +480 -0
  511. package/public/orm/index.js +264 -0
  512. package/public/orm/input-types.d.ts +15987 -0
  513. package/public/orm/input-types.js +131 -0
  514. package/public/orm/models/api.d.ts +56 -0
  515. package/public/orm/models/api.js +98 -0
  516. package/public/orm/models/apiModule.d.ts +56 -0
  517. package/public/orm/models/apiModule.js +98 -0
  518. package/public/orm/models/apiSchema.d.ts +56 -0
  519. package/public/orm/models/apiSchema.js +98 -0
  520. package/public/orm/models/app.d.ts +56 -0
  521. package/public/orm/models/app.js +98 -0
  522. package/public/orm/models/appAchievement.d.ts +56 -0
  523. package/public/orm/models/appAchievement.js +98 -0
  524. package/public/orm/models/appAdminGrant.d.ts +56 -0
  525. package/public/orm/models/appAdminGrant.js +98 -0
  526. package/public/orm/models/appGrant.d.ts +56 -0
  527. package/public/orm/models/appGrant.js +98 -0
  528. package/public/orm/models/appLevel.d.ts +56 -0
  529. package/public/orm/models/appLevel.js +98 -0
  530. package/public/orm/models/appLevelRequirement.d.ts +56 -0
  531. package/public/orm/models/appLevelRequirement.js +98 -0
  532. package/public/orm/models/appLimit.d.ts +56 -0
  533. package/public/orm/models/appLimit.js +98 -0
  534. package/public/orm/models/appLimitDefault.d.ts +56 -0
  535. package/public/orm/models/appLimitDefault.js +98 -0
  536. package/public/orm/models/appMembership.d.ts +56 -0
  537. package/public/orm/models/appMembership.js +98 -0
  538. package/public/orm/models/appMembershipDefault.d.ts +56 -0
  539. package/public/orm/models/appMembershipDefault.js +98 -0
  540. package/public/orm/models/appOwnerGrant.d.ts +56 -0
  541. package/public/orm/models/appOwnerGrant.js +98 -0
  542. package/public/orm/models/appPermission.d.ts +56 -0
  543. package/public/orm/models/appPermission.js +98 -0
  544. package/public/orm/models/appPermissionDefault.d.ts +56 -0
  545. package/public/orm/models/appPermissionDefault.js +98 -0
  546. package/public/orm/models/appStep.d.ts +56 -0
  547. package/public/orm/models/appStep.js +98 -0
  548. package/public/orm/models/astMigration.d.ts +38 -0
  549. package/public/orm/models/astMigration.js +76 -0
  550. package/public/orm/models/auditLog.d.ts +56 -0
  551. package/public/orm/models/auditLog.js +98 -0
  552. package/public/orm/models/checkConstraint.d.ts +56 -0
  553. package/public/orm/models/checkConstraint.js +98 -0
  554. package/public/orm/models/claimedInvite.d.ts +56 -0
  555. package/public/orm/models/claimedInvite.js +98 -0
  556. package/public/orm/models/commit.d.ts +56 -0
  557. package/public/orm/models/commit.js +98 -0
  558. package/public/orm/models/connectedAccount.d.ts +56 -0
  559. package/public/orm/models/connectedAccount.js +98 -0
  560. package/public/orm/models/connectedAccountsModule.d.ts +56 -0
  561. package/public/orm/models/connectedAccountsModule.js +98 -0
  562. package/public/orm/models/cryptoAddress.d.ts +56 -0
  563. package/public/orm/models/cryptoAddress.js +98 -0
  564. package/public/orm/models/cryptoAddressesModule.d.ts +56 -0
  565. package/public/orm/models/cryptoAddressesModule.js +98 -0
  566. package/public/orm/models/cryptoAuthModule.d.ts +56 -0
  567. package/public/orm/models/cryptoAuthModule.js +98 -0
  568. package/public/orm/models/database.d.ts +56 -0
  569. package/public/orm/models/database.js +98 -0
  570. package/public/orm/models/databaseProvisionModule.d.ts +56 -0
  571. package/public/orm/models/databaseProvisionModule.js +98 -0
  572. package/public/orm/models/defaultIdsModule.d.ts +56 -0
  573. package/public/orm/models/defaultIdsModule.js +98 -0
  574. package/public/orm/models/denormalizedTableField.d.ts +56 -0
  575. package/public/orm/models/denormalizedTableField.js +98 -0
  576. package/public/orm/models/domain.d.ts +56 -0
  577. package/public/orm/models/domain.js +98 -0
  578. package/public/orm/models/email.d.ts +56 -0
  579. package/public/orm/models/email.js +98 -0
  580. package/public/orm/models/emailsModule.d.ts +56 -0
  581. package/public/orm/models/emailsModule.js +98 -0
  582. package/public/orm/models/encryptedSecretsModule.d.ts +56 -0
  583. package/public/orm/models/encryptedSecretsModule.js +98 -0
  584. package/public/orm/models/field.d.ts +56 -0
  585. package/public/orm/models/field.js +98 -0
  586. package/public/orm/models/fieldModule.d.ts +56 -0
  587. package/public/orm/models/fieldModule.js +98 -0
  588. package/public/orm/models/foreignKeyConstraint.d.ts +56 -0
  589. package/public/orm/models/foreignKeyConstraint.js +98 -0
  590. package/public/orm/models/fullTextSearch.d.ts +56 -0
  591. package/public/orm/models/fullTextSearch.js +98 -0
  592. package/public/orm/models/getAllRecord.d.ts +32 -0
  593. package/public/orm/models/getAllRecord.js +55 -0
  594. package/public/orm/models/hierarchyModule.d.ts +56 -0
  595. package/public/orm/models/hierarchyModule.js +98 -0
  596. package/public/orm/models/index.d.ts +104 -0
  597. package/public/orm/models/index.js +207 -0
  598. package/public/orm/models/indexModel.d.ts +56 -0
  599. package/public/orm/models/indexModel.js +98 -0
  600. package/public/orm/models/invite.d.ts +56 -0
  601. package/public/orm/models/invite.js +98 -0
  602. package/public/orm/models/invitesModule.d.ts +56 -0
  603. package/public/orm/models/invitesModule.js +98 -0
  604. package/public/orm/models/levelsModule.d.ts +56 -0
  605. package/public/orm/models/levelsModule.js +98 -0
  606. package/public/orm/models/limitFunction.d.ts +56 -0
  607. package/public/orm/models/limitFunction.js +98 -0
  608. package/public/orm/models/limitsModule.d.ts +56 -0
  609. package/public/orm/models/limitsModule.js +98 -0
  610. package/public/orm/models/membershipType.d.ts +56 -0
  611. package/public/orm/models/membershipType.js +98 -0
  612. package/public/orm/models/membershipTypesModule.d.ts +56 -0
  613. package/public/orm/models/membershipTypesModule.js +98 -0
  614. package/public/orm/models/membershipsModule.d.ts +56 -0
  615. package/public/orm/models/membershipsModule.js +98 -0
  616. package/public/orm/models/nodeTypeRegistry.d.ts +56 -0
  617. package/public/orm/models/nodeTypeRegistry.js +98 -0
  618. package/public/orm/models/object.d.ts +56 -0
  619. package/public/orm/models/object.js +88 -0
  620. package/public/orm/models/orgAdminGrant.d.ts +56 -0
  621. package/public/orm/models/orgAdminGrant.js +98 -0
  622. package/public/orm/models/orgClaimedInvite.d.ts +56 -0
  623. package/public/orm/models/orgClaimedInvite.js +98 -0
  624. package/public/orm/models/orgGrant.d.ts +56 -0
  625. package/public/orm/models/orgGrant.js +98 -0
  626. package/public/orm/models/orgInvite.d.ts +56 -0
  627. package/public/orm/models/orgInvite.js +98 -0
  628. package/public/orm/models/orgLimit.d.ts +56 -0
  629. package/public/orm/models/orgLimit.js +98 -0
  630. package/public/orm/models/orgLimitDefault.d.ts +56 -0
  631. package/public/orm/models/orgLimitDefault.js +98 -0
  632. package/public/orm/models/orgMember.d.ts +56 -0
  633. package/public/orm/models/orgMember.js +98 -0
  634. package/public/orm/models/orgMembership.d.ts +56 -0
  635. package/public/orm/models/orgMembership.js +98 -0
  636. package/public/orm/models/orgMembershipDefault.d.ts +56 -0
  637. package/public/orm/models/orgMembershipDefault.js +98 -0
  638. package/public/orm/models/orgOwnerGrant.d.ts +56 -0
  639. package/public/orm/models/orgOwnerGrant.js +98 -0
  640. package/public/orm/models/orgPermission.d.ts +56 -0
  641. package/public/orm/models/orgPermission.js +98 -0
  642. package/public/orm/models/orgPermissionDefault.d.ts +56 -0
  643. package/public/orm/models/orgPermissionDefault.js +98 -0
  644. package/public/orm/models/permissionsModule.d.ts +56 -0
  645. package/public/orm/models/permissionsModule.js +98 -0
  646. package/public/orm/models/phoneNumber.d.ts +56 -0
  647. package/public/orm/models/phoneNumber.js +98 -0
  648. package/public/orm/models/phoneNumbersModule.d.ts +56 -0
  649. package/public/orm/models/phoneNumbersModule.js +98 -0
  650. package/public/orm/models/policy.d.ts +56 -0
  651. package/public/orm/models/policy.js +98 -0
  652. package/public/orm/models/primaryKeyConstraint.d.ts +56 -0
  653. package/public/orm/models/primaryKeyConstraint.js +98 -0
  654. package/public/orm/models/procedure.d.ts +56 -0
  655. package/public/orm/models/procedure.js +98 -0
  656. package/public/orm/models/profilesModule.d.ts +56 -0
  657. package/public/orm/models/profilesModule.js +98 -0
  658. package/public/orm/models/ref.d.ts +56 -0
  659. package/public/orm/models/ref.js +98 -0
  660. package/public/orm/models/rlsModule.d.ts +56 -0
  661. package/public/orm/models/rlsModule.js +98 -0
  662. package/public/orm/models/roleType.d.ts +56 -0
  663. package/public/orm/models/roleType.js +98 -0
  664. package/public/orm/models/schema.d.ts +56 -0
  665. package/public/orm/models/schema.js +98 -0
  666. package/public/orm/models/schemaGrant.d.ts +56 -0
  667. package/public/orm/models/schemaGrant.js +98 -0
  668. package/public/orm/models/secretsModule.d.ts +56 -0
  669. package/public/orm/models/secretsModule.js +98 -0
  670. package/public/orm/models/sessionsModule.d.ts +56 -0
  671. package/public/orm/models/sessionsModule.js +98 -0
  672. package/public/orm/models/site.d.ts +56 -0
  673. package/public/orm/models/site.js +98 -0
  674. package/public/orm/models/siteMetadatum.d.ts +56 -0
  675. package/public/orm/models/siteMetadatum.js +98 -0
  676. package/public/orm/models/siteModule.d.ts +56 -0
  677. package/public/orm/models/siteModule.js +98 -0
  678. package/public/orm/models/siteTheme.d.ts +56 -0
  679. package/public/orm/models/siteTheme.js +98 -0
  680. package/public/orm/models/sqlMigration.d.ts +38 -0
  681. package/public/orm/models/sqlMigration.js +76 -0
  682. package/public/orm/models/store.d.ts +56 -0
  683. package/public/orm/models/store.js +98 -0
  684. package/public/orm/models/table.d.ts +56 -0
  685. package/public/orm/models/table.js +98 -0
  686. package/public/orm/models/tableGrant.d.ts +56 -0
  687. package/public/orm/models/tableGrant.js +98 -0
  688. package/public/orm/models/tableModule.d.ts +56 -0
  689. package/public/orm/models/tableModule.js +98 -0
  690. package/public/orm/models/tableTemplateModule.d.ts +56 -0
  691. package/public/orm/models/tableTemplateModule.js +98 -0
  692. package/public/orm/models/trigger.d.ts +56 -0
  693. package/public/orm/models/trigger.js +98 -0
  694. package/public/orm/models/triggerFunction.d.ts +56 -0
  695. package/public/orm/models/triggerFunction.js +98 -0
  696. package/public/orm/models/uniqueConstraint.d.ts +56 -0
  697. package/public/orm/models/uniqueConstraint.js +98 -0
  698. package/public/orm/models/user.d.ts +56 -0
  699. package/public/orm/models/user.js +98 -0
  700. package/public/orm/models/userAuthModule.d.ts +56 -0
  701. package/public/orm/models/userAuthModule.js +98 -0
  702. package/public/orm/models/usersModule.d.ts +56 -0
  703. package/public/orm/models/usersModule.js +98 -0
  704. package/public/orm/models/uuidModule.d.ts +56 -0
  705. package/public/orm/models/uuidModule.js +98 -0
  706. package/public/orm/models/view.d.ts +56 -0
  707. package/public/orm/models/view.js +98 -0
  708. package/public/orm/models/viewGrant.d.ts +56 -0
  709. package/public/orm/models/viewGrant.js +98 -0
  710. package/public/orm/models/viewRule.d.ts +56 -0
  711. package/public/orm/models/viewRule.js +98 -0
  712. package/public/orm/models/viewTable.d.ts +56 -0
  713. package/public/orm/models/viewTable.js +98 -0
  714. package/public/orm/mutation/index.d.ts +259 -0
  715. package/public/orm/mutation/index.js +381 -0
  716. package/public/orm/query/index.d.ts +168 -0
  717. package/public/orm/query/index.js +305 -0
  718. package/public/orm/query-builder.d.ts +89 -0
  719. package/public/orm/query-builder.js +611 -0
  720. package/public/orm/select-types.d.ts +101 -0
  721. package/public/orm/select-types.js +2 -0
  722. package/public/orm/types.d.ts +6 -0
  723. package/public/orm/types.js +23 -0
@@ -0,0 +1,3682 @@
1
+ /**
2
+ * GraphQL types for ORM client
3
+ * @generated by @constructive-io/graphql-codegen
4
+ * DO NOT EDIT - changes will be overwritten
5
+ */
6
+ export interface StringFilter {
7
+ isNull?: boolean;
8
+ equalTo?: string;
9
+ notEqualTo?: string;
10
+ distinctFrom?: string;
11
+ notDistinctFrom?: string;
12
+ in?: string[];
13
+ notIn?: string[];
14
+ lessThan?: string;
15
+ lessThanOrEqualTo?: string;
16
+ greaterThan?: string;
17
+ greaterThanOrEqualTo?: string;
18
+ includes?: string;
19
+ notIncludes?: string;
20
+ includesInsensitive?: string;
21
+ notIncludesInsensitive?: string;
22
+ startsWith?: string;
23
+ notStartsWith?: string;
24
+ startsWithInsensitive?: string;
25
+ notStartsWithInsensitive?: string;
26
+ endsWith?: string;
27
+ notEndsWith?: string;
28
+ endsWithInsensitive?: string;
29
+ notEndsWithInsensitive?: string;
30
+ like?: string;
31
+ notLike?: string;
32
+ likeInsensitive?: string;
33
+ notLikeInsensitive?: string;
34
+ }
35
+ export interface IntFilter {
36
+ isNull?: boolean;
37
+ equalTo?: number;
38
+ notEqualTo?: number;
39
+ distinctFrom?: number;
40
+ notDistinctFrom?: number;
41
+ in?: number[];
42
+ notIn?: number[];
43
+ lessThan?: number;
44
+ lessThanOrEqualTo?: number;
45
+ greaterThan?: number;
46
+ greaterThanOrEqualTo?: number;
47
+ }
48
+ export interface FloatFilter {
49
+ isNull?: boolean;
50
+ equalTo?: number;
51
+ notEqualTo?: number;
52
+ distinctFrom?: number;
53
+ notDistinctFrom?: number;
54
+ in?: number[];
55
+ notIn?: number[];
56
+ lessThan?: number;
57
+ lessThanOrEqualTo?: number;
58
+ greaterThan?: number;
59
+ greaterThanOrEqualTo?: number;
60
+ }
61
+ export interface BooleanFilter {
62
+ isNull?: boolean;
63
+ equalTo?: boolean;
64
+ notEqualTo?: boolean;
65
+ }
66
+ export interface UUIDFilter {
67
+ isNull?: boolean;
68
+ equalTo?: string;
69
+ notEqualTo?: string;
70
+ distinctFrom?: string;
71
+ notDistinctFrom?: string;
72
+ in?: string[];
73
+ notIn?: string[];
74
+ }
75
+ export interface DatetimeFilter {
76
+ isNull?: boolean;
77
+ equalTo?: string;
78
+ notEqualTo?: string;
79
+ distinctFrom?: string;
80
+ notDistinctFrom?: string;
81
+ in?: string[];
82
+ notIn?: string[];
83
+ lessThan?: string;
84
+ lessThanOrEqualTo?: string;
85
+ greaterThan?: string;
86
+ greaterThanOrEqualTo?: string;
87
+ }
88
+ export interface DateFilter {
89
+ isNull?: boolean;
90
+ equalTo?: string;
91
+ notEqualTo?: string;
92
+ distinctFrom?: string;
93
+ notDistinctFrom?: string;
94
+ in?: string[];
95
+ notIn?: string[];
96
+ lessThan?: string;
97
+ lessThanOrEqualTo?: string;
98
+ greaterThan?: string;
99
+ greaterThanOrEqualTo?: string;
100
+ }
101
+ export interface JSONFilter {
102
+ isNull?: boolean;
103
+ equalTo?: Record<string, unknown>;
104
+ notEqualTo?: Record<string, unknown>;
105
+ distinctFrom?: Record<string, unknown>;
106
+ notDistinctFrom?: Record<string, unknown>;
107
+ contains?: Record<string, unknown>;
108
+ containedBy?: Record<string, unknown>;
109
+ containsKey?: string;
110
+ containsAllKeys?: string[];
111
+ containsAnyKeys?: string[];
112
+ }
113
+ export interface BigIntFilter {
114
+ isNull?: boolean;
115
+ equalTo?: string;
116
+ notEqualTo?: string;
117
+ distinctFrom?: string;
118
+ notDistinctFrom?: string;
119
+ in?: string[];
120
+ notIn?: string[];
121
+ lessThan?: string;
122
+ lessThanOrEqualTo?: string;
123
+ greaterThan?: string;
124
+ greaterThanOrEqualTo?: string;
125
+ }
126
+ export interface BigFloatFilter {
127
+ isNull?: boolean;
128
+ equalTo?: string;
129
+ notEqualTo?: string;
130
+ distinctFrom?: string;
131
+ notDistinctFrom?: string;
132
+ in?: string[];
133
+ notIn?: string[];
134
+ lessThan?: string;
135
+ lessThanOrEqualTo?: string;
136
+ greaterThan?: string;
137
+ greaterThanOrEqualTo?: string;
138
+ }
139
+ export interface BitStringFilter {
140
+ isNull?: boolean;
141
+ equalTo?: string;
142
+ notEqualTo?: string;
143
+ }
144
+ export interface InternetAddressFilter {
145
+ isNull?: boolean;
146
+ equalTo?: string;
147
+ notEqualTo?: string;
148
+ distinctFrom?: string;
149
+ notDistinctFrom?: string;
150
+ in?: string[];
151
+ notIn?: string[];
152
+ lessThan?: string;
153
+ lessThanOrEqualTo?: string;
154
+ greaterThan?: string;
155
+ greaterThanOrEqualTo?: string;
156
+ contains?: string;
157
+ containsOrEqualTo?: string;
158
+ containedBy?: string;
159
+ containedByOrEqualTo?: string;
160
+ containsOrContainedBy?: string;
161
+ }
162
+ export interface FullTextFilter {
163
+ matches?: string;
164
+ }
165
+ export interface StringListFilter {
166
+ isNull?: boolean;
167
+ equalTo?: string[];
168
+ notEqualTo?: string[];
169
+ distinctFrom?: string[];
170
+ notDistinctFrom?: string[];
171
+ lessThan?: string[];
172
+ lessThanOrEqualTo?: string[];
173
+ greaterThan?: string[];
174
+ greaterThanOrEqualTo?: string[];
175
+ contains?: string[];
176
+ containedBy?: string[];
177
+ overlaps?: string[];
178
+ anyEqualTo?: string;
179
+ anyNotEqualTo?: string;
180
+ anyLessThan?: string;
181
+ anyLessThanOrEqualTo?: string;
182
+ anyGreaterThan?: string;
183
+ anyGreaterThanOrEqualTo?: string;
184
+ }
185
+ export interface IntListFilter {
186
+ isNull?: boolean;
187
+ equalTo?: number[];
188
+ notEqualTo?: number[];
189
+ distinctFrom?: number[];
190
+ notDistinctFrom?: number[];
191
+ lessThan?: number[];
192
+ lessThanOrEqualTo?: number[];
193
+ greaterThan?: number[];
194
+ greaterThanOrEqualTo?: number[];
195
+ contains?: number[];
196
+ containedBy?: number[];
197
+ overlaps?: number[];
198
+ anyEqualTo?: number;
199
+ anyNotEqualTo?: number;
200
+ anyLessThan?: number;
201
+ anyLessThanOrEqualTo?: number;
202
+ anyGreaterThan?: number;
203
+ anyGreaterThanOrEqualTo?: number;
204
+ }
205
+ export interface UUIDListFilter {
206
+ isNull?: boolean;
207
+ equalTo?: string[];
208
+ notEqualTo?: string[];
209
+ distinctFrom?: string[];
210
+ notDistinctFrom?: string[];
211
+ lessThan?: string[];
212
+ lessThanOrEqualTo?: string[];
213
+ greaterThan?: string[];
214
+ greaterThanOrEqualTo?: string[];
215
+ contains?: string[];
216
+ containedBy?: string[];
217
+ overlaps?: string[];
218
+ anyEqualTo?: string;
219
+ anyNotEqualTo?: string;
220
+ anyLessThan?: string;
221
+ anyLessThanOrEqualTo?: string;
222
+ anyGreaterThan?: string;
223
+ anyGreaterThanOrEqualTo?: string;
224
+ }
225
+ export type ConstructiveInternalTypeEmail = unknown;
226
+ export type ConstructiveInternalTypeImage = unknown;
227
+ export interface AppPermission {
228
+ id: string;
229
+ name?: string | null;
230
+ bitnum?: number | null;
231
+ bitstr?: string | null;
232
+ description?: string | null;
233
+ }
234
+ export interface OrgPermission {
235
+ id: string;
236
+ name?: string | null;
237
+ bitnum?: number | null;
238
+ bitstr?: string | null;
239
+ description?: string | null;
240
+ }
241
+ export interface AppLevelRequirement {
242
+ id: string;
243
+ name?: string | null;
244
+ level?: string | null;
245
+ description?: string | null;
246
+ requiredCount?: number | null;
247
+ priority?: number | null;
248
+ createdAt?: string | null;
249
+ updatedAt?: string | null;
250
+ }
251
+ export interface OrgMember {
252
+ id: string;
253
+ isAdmin?: boolean | null;
254
+ actorId?: string | null;
255
+ entityId?: string | null;
256
+ }
257
+ export interface AppPermissionDefault {
258
+ id: string;
259
+ permissions?: string | null;
260
+ }
261
+ export interface OrgPermissionDefault {
262
+ id: string;
263
+ permissions?: string | null;
264
+ entityId?: string | null;
265
+ }
266
+ export interface AppAdminGrant {
267
+ id: string;
268
+ isGrant?: boolean | null;
269
+ actorId?: string | null;
270
+ grantorId?: string | null;
271
+ createdAt?: string | null;
272
+ updatedAt?: string | null;
273
+ }
274
+ export interface AppOwnerGrant {
275
+ id: string;
276
+ isGrant?: boolean | null;
277
+ actorId?: string | null;
278
+ grantorId?: string | null;
279
+ createdAt?: string | null;
280
+ updatedAt?: string | null;
281
+ }
282
+ export interface AppLimitDefault {
283
+ id: string;
284
+ name?: string | null;
285
+ max?: number | null;
286
+ }
287
+ export interface OrgLimitDefault {
288
+ id: string;
289
+ name?: string | null;
290
+ max?: number | null;
291
+ }
292
+ export interface OrgAdminGrant {
293
+ id: string;
294
+ isGrant?: boolean | null;
295
+ actorId?: string | null;
296
+ entityId?: string | null;
297
+ grantorId?: string | null;
298
+ createdAt?: string | null;
299
+ updatedAt?: string | null;
300
+ }
301
+ export interface OrgOwnerGrant {
302
+ id: string;
303
+ isGrant?: boolean | null;
304
+ actorId?: string | null;
305
+ entityId?: string | null;
306
+ grantorId?: string | null;
307
+ createdAt?: string | null;
308
+ updatedAt?: string | null;
309
+ }
310
+ export interface MembershipType {
311
+ id: number;
312
+ name?: string | null;
313
+ description?: string | null;
314
+ prefix?: string | null;
315
+ }
316
+ export interface AppLimit {
317
+ id: string;
318
+ name?: string | null;
319
+ actorId?: string | null;
320
+ num?: number | null;
321
+ max?: number | null;
322
+ }
323
+ export interface AppAchievement {
324
+ id: string;
325
+ actorId?: string | null;
326
+ name?: string | null;
327
+ count?: number | null;
328
+ createdAt?: string | null;
329
+ updatedAt?: string | null;
330
+ }
331
+ export interface AppStep {
332
+ id: string;
333
+ actorId?: string | null;
334
+ name?: string | null;
335
+ count?: number | null;
336
+ createdAt?: string | null;
337
+ updatedAt?: string | null;
338
+ }
339
+ export interface ClaimedInvite {
340
+ id: string;
341
+ data?: Record<string, unknown> | null;
342
+ senderId?: string | null;
343
+ receiverId?: string | null;
344
+ createdAt?: string | null;
345
+ updatedAt?: string | null;
346
+ }
347
+ export interface AppGrant {
348
+ id: string;
349
+ permissions?: string | null;
350
+ isGrant?: boolean | null;
351
+ actorId?: string | null;
352
+ grantorId?: string | null;
353
+ createdAt?: string | null;
354
+ updatedAt?: string | null;
355
+ }
356
+ export interface AppMembershipDefault {
357
+ id: string;
358
+ createdAt?: string | null;
359
+ updatedAt?: string | null;
360
+ createdBy?: string | null;
361
+ updatedBy?: string | null;
362
+ isApproved?: boolean | null;
363
+ isVerified?: boolean | null;
364
+ }
365
+ export interface OrgLimit {
366
+ id: string;
367
+ name?: string | null;
368
+ actorId?: string | null;
369
+ num?: number | null;
370
+ max?: number | null;
371
+ entityId?: string | null;
372
+ }
373
+ export interface OrgClaimedInvite {
374
+ id: string;
375
+ data?: Record<string, unknown> | null;
376
+ senderId?: string | null;
377
+ receiverId?: string | null;
378
+ createdAt?: string | null;
379
+ updatedAt?: string | null;
380
+ entityId?: string | null;
381
+ }
382
+ export interface OrgGrant {
383
+ id: string;
384
+ permissions?: string | null;
385
+ isGrant?: boolean | null;
386
+ actorId?: string | null;
387
+ entityId?: string | null;
388
+ grantorId?: string | null;
389
+ createdAt?: string | null;
390
+ updatedAt?: string | null;
391
+ }
392
+ export interface OrgMembershipDefault {
393
+ id: string;
394
+ createdAt?: string | null;
395
+ updatedAt?: string | null;
396
+ createdBy?: string | null;
397
+ updatedBy?: string | null;
398
+ isApproved?: boolean | null;
399
+ entityId?: string | null;
400
+ deleteMemberCascadeGroups?: boolean | null;
401
+ createGroupsCascadeMembers?: boolean | null;
402
+ }
403
+ export interface AppLevel {
404
+ id: string;
405
+ name?: string | null;
406
+ description?: string | null;
407
+ image?: ConstructiveInternalTypeImage | null;
408
+ ownerId?: string | null;
409
+ createdAt?: string | null;
410
+ updatedAt?: string | null;
411
+ }
412
+ export interface Invite {
413
+ id: string;
414
+ email?: ConstructiveInternalTypeEmail | null;
415
+ senderId?: string | null;
416
+ inviteToken?: string | null;
417
+ inviteValid?: boolean | null;
418
+ inviteLimit?: number | null;
419
+ inviteCount?: number | null;
420
+ multiple?: boolean | null;
421
+ data?: Record<string, unknown> | null;
422
+ expiresAt?: string | null;
423
+ createdAt?: string | null;
424
+ updatedAt?: string | null;
425
+ }
426
+ export interface AppMembership {
427
+ id: string;
428
+ createdAt?: string | null;
429
+ updatedAt?: string | null;
430
+ createdBy?: string | null;
431
+ updatedBy?: string | null;
432
+ isApproved?: boolean | null;
433
+ isBanned?: boolean | null;
434
+ isDisabled?: boolean | null;
435
+ isVerified?: boolean | null;
436
+ isActive?: boolean | null;
437
+ isOwner?: boolean | null;
438
+ isAdmin?: boolean | null;
439
+ permissions?: string | null;
440
+ granted?: string | null;
441
+ actorId?: string | null;
442
+ }
443
+ export interface OrgMembership {
444
+ id: string;
445
+ createdAt?: string | null;
446
+ updatedAt?: string | null;
447
+ createdBy?: string | null;
448
+ updatedBy?: string | null;
449
+ isApproved?: boolean | null;
450
+ isBanned?: boolean | null;
451
+ isDisabled?: boolean | null;
452
+ isActive?: boolean | null;
453
+ isOwner?: boolean | null;
454
+ isAdmin?: boolean | null;
455
+ permissions?: string | null;
456
+ granted?: string | null;
457
+ actorId?: string | null;
458
+ entityId?: string | null;
459
+ }
460
+ export interface OrgInvite {
461
+ id: string;
462
+ email?: ConstructiveInternalTypeEmail | null;
463
+ senderId?: string | null;
464
+ receiverId?: string | null;
465
+ inviteToken?: string | null;
466
+ inviteValid?: boolean | null;
467
+ inviteLimit?: number | null;
468
+ inviteCount?: number | null;
469
+ multiple?: boolean | null;
470
+ data?: Record<string, unknown> | null;
471
+ expiresAt?: string | null;
472
+ createdAt?: string | null;
473
+ updatedAt?: string | null;
474
+ entityId?: string | null;
475
+ }
476
+ export interface ConnectionResult<T> {
477
+ nodes: T[];
478
+ totalCount: number;
479
+ pageInfo: PageInfo;
480
+ }
481
+ export interface PageInfo {
482
+ hasNextPage: boolean;
483
+ hasPreviousPage: boolean;
484
+ startCursor?: string | null;
485
+ endCursor?: string | null;
486
+ }
487
+ export interface AppPermissionRelations {
488
+ }
489
+ export interface OrgPermissionRelations {
490
+ }
491
+ export interface AppLevelRequirementRelations {
492
+ }
493
+ export interface OrgMemberRelations {
494
+ }
495
+ export interface AppPermissionDefaultRelations {
496
+ }
497
+ export interface OrgPermissionDefaultRelations {
498
+ }
499
+ export interface AppAdminGrantRelations {
500
+ }
501
+ export interface AppOwnerGrantRelations {
502
+ }
503
+ export interface AppLimitDefaultRelations {
504
+ }
505
+ export interface OrgLimitDefaultRelations {
506
+ }
507
+ export interface OrgAdminGrantRelations {
508
+ }
509
+ export interface OrgOwnerGrantRelations {
510
+ }
511
+ export interface MembershipTypeRelations {
512
+ }
513
+ export interface AppLimitRelations {
514
+ }
515
+ export interface AppAchievementRelations {
516
+ }
517
+ export interface AppStepRelations {
518
+ }
519
+ export interface ClaimedInviteRelations {
520
+ }
521
+ export interface AppGrantRelations {
522
+ }
523
+ export interface AppMembershipDefaultRelations {
524
+ }
525
+ export interface OrgLimitRelations {
526
+ }
527
+ export interface OrgClaimedInviteRelations {
528
+ }
529
+ export interface OrgGrantRelations {
530
+ }
531
+ export interface OrgMembershipDefaultRelations {
532
+ }
533
+ export interface AppLevelRelations {
534
+ }
535
+ export interface InviteRelations {
536
+ }
537
+ export interface AppMembershipRelations {
538
+ }
539
+ export interface OrgMembershipRelations {
540
+ }
541
+ export interface OrgInviteRelations {
542
+ }
543
+ export type AppPermissionWithRelations = AppPermission & AppPermissionRelations;
544
+ export type OrgPermissionWithRelations = OrgPermission & OrgPermissionRelations;
545
+ export type AppLevelRequirementWithRelations = AppLevelRequirement & AppLevelRequirementRelations;
546
+ export type OrgMemberWithRelations = OrgMember & OrgMemberRelations;
547
+ export type AppPermissionDefaultWithRelations = AppPermissionDefault & AppPermissionDefaultRelations;
548
+ export type OrgPermissionDefaultWithRelations = OrgPermissionDefault & OrgPermissionDefaultRelations;
549
+ export type AppAdminGrantWithRelations = AppAdminGrant & AppAdminGrantRelations;
550
+ export type AppOwnerGrantWithRelations = AppOwnerGrant & AppOwnerGrantRelations;
551
+ export type AppLimitDefaultWithRelations = AppLimitDefault & AppLimitDefaultRelations;
552
+ export type OrgLimitDefaultWithRelations = OrgLimitDefault & OrgLimitDefaultRelations;
553
+ export type OrgAdminGrantWithRelations = OrgAdminGrant & OrgAdminGrantRelations;
554
+ export type OrgOwnerGrantWithRelations = OrgOwnerGrant & OrgOwnerGrantRelations;
555
+ export type MembershipTypeWithRelations = MembershipType & MembershipTypeRelations;
556
+ export type AppLimitWithRelations = AppLimit & AppLimitRelations;
557
+ export type AppAchievementWithRelations = AppAchievement & AppAchievementRelations;
558
+ export type AppStepWithRelations = AppStep & AppStepRelations;
559
+ export type ClaimedInviteWithRelations = ClaimedInvite & ClaimedInviteRelations;
560
+ export type AppGrantWithRelations = AppGrant & AppGrantRelations;
561
+ export type AppMembershipDefaultWithRelations = AppMembershipDefault & AppMembershipDefaultRelations;
562
+ export type OrgLimitWithRelations = OrgLimit & OrgLimitRelations;
563
+ export type OrgClaimedInviteWithRelations = OrgClaimedInvite & OrgClaimedInviteRelations;
564
+ export type OrgGrantWithRelations = OrgGrant & OrgGrantRelations;
565
+ export type OrgMembershipDefaultWithRelations = OrgMembershipDefault & OrgMembershipDefaultRelations;
566
+ export type AppLevelWithRelations = AppLevel & AppLevelRelations;
567
+ export type InviteWithRelations = Invite & InviteRelations;
568
+ export type AppMembershipWithRelations = AppMembership & AppMembershipRelations;
569
+ export type OrgMembershipWithRelations = OrgMembership & OrgMembershipRelations;
570
+ export type OrgInviteWithRelations = OrgInvite & OrgInviteRelations;
571
+ export type AppPermissionSelect = {
572
+ id?: boolean;
573
+ name?: boolean;
574
+ bitnum?: boolean;
575
+ bitstr?: boolean;
576
+ description?: boolean;
577
+ };
578
+ export type OrgPermissionSelect = {
579
+ id?: boolean;
580
+ name?: boolean;
581
+ bitnum?: boolean;
582
+ bitstr?: boolean;
583
+ description?: boolean;
584
+ };
585
+ export type AppLevelRequirementSelect = {
586
+ id?: boolean;
587
+ name?: boolean;
588
+ level?: boolean;
589
+ description?: boolean;
590
+ requiredCount?: boolean;
591
+ priority?: boolean;
592
+ createdAt?: boolean;
593
+ updatedAt?: boolean;
594
+ };
595
+ export type OrgMemberSelect = {
596
+ id?: boolean;
597
+ isAdmin?: boolean;
598
+ actorId?: boolean;
599
+ entityId?: boolean;
600
+ };
601
+ export type AppPermissionDefaultSelect = {
602
+ id?: boolean;
603
+ permissions?: boolean;
604
+ };
605
+ export type OrgPermissionDefaultSelect = {
606
+ id?: boolean;
607
+ permissions?: boolean;
608
+ entityId?: boolean;
609
+ };
610
+ export type AppAdminGrantSelect = {
611
+ id?: boolean;
612
+ isGrant?: boolean;
613
+ actorId?: boolean;
614
+ grantorId?: boolean;
615
+ createdAt?: boolean;
616
+ updatedAt?: boolean;
617
+ };
618
+ export type AppOwnerGrantSelect = {
619
+ id?: boolean;
620
+ isGrant?: boolean;
621
+ actorId?: boolean;
622
+ grantorId?: boolean;
623
+ createdAt?: boolean;
624
+ updatedAt?: boolean;
625
+ };
626
+ export type AppLimitDefaultSelect = {
627
+ id?: boolean;
628
+ name?: boolean;
629
+ max?: boolean;
630
+ };
631
+ export type OrgLimitDefaultSelect = {
632
+ id?: boolean;
633
+ name?: boolean;
634
+ max?: boolean;
635
+ };
636
+ export type OrgAdminGrantSelect = {
637
+ id?: boolean;
638
+ isGrant?: boolean;
639
+ actorId?: boolean;
640
+ entityId?: boolean;
641
+ grantorId?: boolean;
642
+ createdAt?: boolean;
643
+ updatedAt?: boolean;
644
+ };
645
+ export type OrgOwnerGrantSelect = {
646
+ id?: boolean;
647
+ isGrant?: boolean;
648
+ actorId?: boolean;
649
+ entityId?: boolean;
650
+ grantorId?: boolean;
651
+ createdAt?: boolean;
652
+ updatedAt?: boolean;
653
+ };
654
+ export type MembershipTypeSelect = {
655
+ id?: boolean;
656
+ name?: boolean;
657
+ description?: boolean;
658
+ prefix?: boolean;
659
+ };
660
+ export type AppLimitSelect = {
661
+ id?: boolean;
662
+ name?: boolean;
663
+ actorId?: boolean;
664
+ num?: boolean;
665
+ max?: boolean;
666
+ };
667
+ export type AppAchievementSelect = {
668
+ id?: boolean;
669
+ actorId?: boolean;
670
+ name?: boolean;
671
+ count?: boolean;
672
+ createdAt?: boolean;
673
+ updatedAt?: boolean;
674
+ };
675
+ export type AppStepSelect = {
676
+ id?: boolean;
677
+ actorId?: boolean;
678
+ name?: boolean;
679
+ count?: boolean;
680
+ createdAt?: boolean;
681
+ updatedAt?: boolean;
682
+ };
683
+ export type ClaimedInviteSelect = {
684
+ id?: boolean;
685
+ data?: boolean;
686
+ senderId?: boolean;
687
+ receiverId?: boolean;
688
+ createdAt?: boolean;
689
+ updatedAt?: boolean;
690
+ };
691
+ export type AppGrantSelect = {
692
+ id?: boolean;
693
+ permissions?: boolean;
694
+ isGrant?: boolean;
695
+ actorId?: boolean;
696
+ grantorId?: boolean;
697
+ createdAt?: boolean;
698
+ updatedAt?: boolean;
699
+ };
700
+ export type AppMembershipDefaultSelect = {
701
+ id?: boolean;
702
+ createdAt?: boolean;
703
+ updatedAt?: boolean;
704
+ createdBy?: boolean;
705
+ updatedBy?: boolean;
706
+ isApproved?: boolean;
707
+ isVerified?: boolean;
708
+ };
709
+ export type OrgLimitSelect = {
710
+ id?: boolean;
711
+ name?: boolean;
712
+ actorId?: boolean;
713
+ num?: boolean;
714
+ max?: boolean;
715
+ entityId?: boolean;
716
+ };
717
+ export type OrgClaimedInviteSelect = {
718
+ id?: boolean;
719
+ data?: boolean;
720
+ senderId?: boolean;
721
+ receiverId?: boolean;
722
+ createdAt?: boolean;
723
+ updatedAt?: boolean;
724
+ entityId?: boolean;
725
+ };
726
+ export type OrgGrantSelect = {
727
+ id?: boolean;
728
+ permissions?: boolean;
729
+ isGrant?: boolean;
730
+ actorId?: boolean;
731
+ entityId?: boolean;
732
+ grantorId?: boolean;
733
+ createdAt?: boolean;
734
+ updatedAt?: boolean;
735
+ };
736
+ export type OrgMembershipDefaultSelect = {
737
+ id?: boolean;
738
+ createdAt?: boolean;
739
+ updatedAt?: boolean;
740
+ createdBy?: boolean;
741
+ updatedBy?: boolean;
742
+ isApproved?: boolean;
743
+ entityId?: boolean;
744
+ deleteMemberCascadeGroups?: boolean;
745
+ createGroupsCascadeMembers?: boolean;
746
+ };
747
+ export type AppLevelSelect = {
748
+ id?: boolean;
749
+ name?: boolean;
750
+ description?: boolean;
751
+ image?: boolean;
752
+ ownerId?: boolean;
753
+ createdAt?: boolean;
754
+ updatedAt?: boolean;
755
+ };
756
+ export type InviteSelect = {
757
+ id?: boolean;
758
+ email?: boolean;
759
+ senderId?: boolean;
760
+ inviteToken?: boolean;
761
+ inviteValid?: boolean;
762
+ inviteLimit?: boolean;
763
+ inviteCount?: boolean;
764
+ multiple?: boolean;
765
+ data?: boolean;
766
+ expiresAt?: boolean;
767
+ createdAt?: boolean;
768
+ updatedAt?: boolean;
769
+ };
770
+ export type AppMembershipSelect = {
771
+ id?: boolean;
772
+ createdAt?: boolean;
773
+ updatedAt?: boolean;
774
+ createdBy?: boolean;
775
+ updatedBy?: boolean;
776
+ isApproved?: boolean;
777
+ isBanned?: boolean;
778
+ isDisabled?: boolean;
779
+ isVerified?: boolean;
780
+ isActive?: boolean;
781
+ isOwner?: boolean;
782
+ isAdmin?: boolean;
783
+ permissions?: boolean;
784
+ granted?: boolean;
785
+ actorId?: boolean;
786
+ };
787
+ export type OrgMembershipSelect = {
788
+ id?: boolean;
789
+ createdAt?: boolean;
790
+ updatedAt?: boolean;
791
+ createdBy?: boolean;
792
+ updatedBy?: boolean;
793
+ isApproved?: boolean;
794
+ isBanned?: boolean;
795
+ isDisabled?: boolean;
796
+ isActive?: boolean;
797
+ isOwner?: boolean;
798
+ isAdmin?: boolean;
799
+ permissions?: boolean;
800
+ granted?: boolean;
801
+ actorId?: boolean;
802
+ entityId?: boolean;
803
+ };
804
+ export type OrgInviteSelect = {
805
+ id?: boolean;
806
+ email?: boolean;
807
+ senderId?: boolean;
808
+ receiverId?: boolean;
809
+ inviteToken?: boolean;
810
+ inviteValid?: boolean;
811
+ inviteLimit?: boolean;
812
+ inviteCount?: boolean;
813
+ multiple?: boolean;
814
+ data?: boolean;
815
+ expiresAt?: boolean;
816
+ createdAt?: boolean;
817
+ updatedAt?: boolean;
818
+ entityId?: boolean;
819
+ };
820
+ export interface AppPermissionFilter {
821
+ id?: UUIDFilter;
822
+ name?: StringFilter;
823
+ bitnum?: IntFilter;
824
+ bitstr?: BitStringFilter;
825
+ description?: StringFilter;
826
+ and?: AppPermissionFilter[];
827
+ or?: AppPermissionFilter[];
828
+ not?: AppPermissionFilter;
829
+ }
830
+ export interface OrgPermissionFilter {
831
+ id?: UUIDFilter;
832
+ name?: StringFilter;
833
+ bitnum?: IntFilter;
834
+ bitstr?: BitStringFilter;
835
+ description?: StringFilter;
836
+ and?: OrgPermissionFilter[];
837
+ or?: OrgPermissionFilter[];
838
+ not?: OrgPermissionFilter;
839
+ }
840
+ export interface AppLevelRequirementFilter {
841
+ id?: UUIDFilter;
842
+ name?: StringFilter;
843
+ level?: StringFilter;
844
+ description?: StringFilter;
845
+ requiredCount?: IntFilter;
846
+ priority?: IntFilter;
847
+ createdAt?: DatetimeFilter;
848
+ updatedAt?: DatetimeFilter;
849
+ and?: AppLevelRequirementFilter[];
850
+ or?: AppLevelRequirementFilter[];
851
+ not?: AppLevelRequirementFilter;
852
+ }
853
+ export interface OrgMemberFilter {
854
+ id?: UUIDFilter;
855
+ isAdmin?: BooleanFilter;
856
+ actorId?: UUIDFilter;
857
+ entityId?: UUIDFilter;
858
+ and?: OrgMemberFilter[];
859
+ or?: OrgMemberFilter[];
860
+ not?: OrgMemberFilter;
861
+ }
862
+ export interface AppPermissionDefaultFilter {
863
+ id?: UUIDFilter;
864
+ permissions?: BitStringFilter;
865
+ and?: AppPermissionDefaultFilter[];
866
+ or?: AppPermissionDefaultFilter[];
867
+ not?: AppPermissionDefaultFilter;
868
+ }
869
+ export interface OrgPermissionDefaultFilter {
870
+ id?: UUIDFilter;
871
+ permissions?: BitStringFilter;
872
+ entityId?: UUIDFilter;
873
+ and?: OrgPermissionDefaultFilter[];
874
+ or?: OrgPermissionDefaultFilter[];
875
+ not?: OrgPermissionDefaultFilter;
876
+ }
877
+ export interface AppAdminGrantFilter {
878
+ id?: UUIDFilter;
879
+ isGrant?: BooleanFilter;
880
+ actorId?: UUIDFilter;
881
+ grantorId?: UUIDFilter;
882
+ createdAt?: DatetimeFilter;
883
+ updatedAt?: DatetimeFilter;
884
+ and?: AppAdminGrantFilter[];
885
+ or?: AppAdminGrantFilter[];
886
+ not?: AppAdminGrantFilter;
887
+ }
888
+ export interface AppOwnerGrantFilter {
889
+ id?: UUIDFilter;
890
+ isGrant?: BooleanFilter;
891
+ actorId?: UUIDFilter;
892
+ grantorId?: UUIDFilter;
893
+ createdAt?: DatetimeFilter;
894
+ updatedAt?: DatetimeFilter;
895
+ and?: AppOwnerGrantFilter[];
896
+ or?: AppOwnerGrantFilter[];
897
+ not?: AppOwnerGrantFilter;
898
+ }
899
+ export interface AppLimitDefaultFilter {
900
+ id?: UUIDFilter;
901
+ name?: StringFilter;
902
+ max?: IntFilter;
903
+ and?: AppLimitDefaultFilter[];
904
+ or?: AppLimitDefaultFilter[];
905
+ not?: AppLimitDefaultFilter;
906
+ }
907
+ export interface OrgLimitDefaultFilter {
908
+ id?: UUIDFilter;
909
+ name?: StringFilter;
910
+ max?: IntFilter;
911
+ and?: OrgLimitDefaultFilter[];
912
+ or?: OrgLimitDefaultFilter[];
913
+ not?: OrgLimitDefaultFilter;
914
+ }
915
+ export interface OrgAdminGrantFilter {
916
+ id?: UUIDFilter;
917
+ isGrant?: BooleanFilter;
918
+ actorId?: UUIDFilter;
919
+ entityId?: UUIDFilter;
920
+ grantorId?: UUIDFilter;
921
+ createdAt?: DatetimeFilter;
922
+ updatedAt?: DatetimeFilter;
923
+ and?: OrgAdminGrantFilter[];
924
+ or?: OrgAdminGrantFilter[];
925
+ not?: OrgAdminGrantFilter;
926
+ }
927
+ export interface OrgOwnerGrantFilter {
928
+ id?: UUIDFilter;
929
+ isGrant?: BooleanFilter;
930
+ actorId?: UUIDFilter;
931
+ entityId?: UUIDFilter;
932
+ grantorId?: UUIDFilter;
933
+ createdAt?: DatetimeFilter;
934
+ updatedAt?: DatetimeFilter;
935
+ and?: OrgOwnerGrantFilter[];
936
+ or?: OrgOwnerGrantFilter[];
937
+ not?: OrgOwnerGrantFilter;
938
+ }
939
+ export interface MembershipTypeFilter {
940
+ id?: IntFilter;
941
+ name?: StringFilter;
942
+ description?: StringFilter;
943
+ prefix?: StringFilter;
944
+ and?: MembershipTypeFilter[];
945
+ or?: MembershipTypeFilter[];
946
+ not?: MembershipTypeFilter;
947
+ }
948
+ export interface AppLimitFilter {
949
+ id?: UUIDFilter;
950
+ name?: StringFilter;
951
+ actorId?: UUIDFilter;
952
+ num?: IntFilter;
953
+ max?: IntFilter;
954
+ and?: AppLimitFilter[];
955
+ or?: AppLimitFilter[];
956
+ not?: AppLimitFilter;
957
+ }
958
+ export interface AppAchievementFilter {
959
+ id?: UUIDFilter;
960
+ actorId?: UUIDFilter;
961
+ name?: StringFilter;
962
+ count?: IntFilter;
963
+ createdAt?: DatetimeFilter;
964
+ updatedAt?: DatetimeFilter;
965
+ and?: AppAchievementFilter[];
966
+ or?: AppAchievementFilter[];
967
+ not?: AppAchievementFilter;
968
+ }
969
+ export interface AppStepFilter {
970
+ id?: UUIDFilter;
971
+ actorId?: UUIDFilter;
972
+ name?: StringFilter;
973
+ count?: IntFilter;
974
+ createdAt?: DatetimeFilter;
975
+ updatedAt?: DatetimeFilter;
976
+ and?: AppStepFilter[];
977
+ or?: AppStepFilter[];
978
+ not?: AppStepFilter;
979
+ }
980
+ export interface ClaimedInviteFilter {
981
+ id?: UUIDFilter;
982
+ data?: JSONFilter;
983
+ senderId?: UUIDFilter;
984
+ receiverId?: UUIDFilter;
985
+ createdAt?: DatetimeFilter;
986
+ updatedAt?: DatetimeFilter;
987
+ and?: ClaimedInviteFilter[];
988
+ or?: ClaimedInviteFilter[];
989
+ not?: ClaimedInviteFilter;
990
+ }
991
+ export interface AppGrantFilter {
992
+ id?: UUIDFilter;
993
+ permissions?: BitStringFilter;
994
+ isGrant?: BooleanFilter;
995
+ actorId?: UUIDFilter;
996
+ grantorId?: UUIDFilter;
997
+ createdAt?: DatetimeFilter;
998
+ updatedAt?: DatetimeFilter;
999
+ and?: AppGrantFilter[];
1000
+ or?: AppGrantFilter[];
1001
+ not?: AppGrantFilter;
1002
+ }
1003
+ export interface AppMembershipDefaultFilter {
1004
+ id?: UUIDFilter;
1005
+ createdAt?: DatetimeFilter;
1006
+ updatedAt?: DatetimeFilter;
1007
+ createdBy?: UUIDFilter;
1008
+ updatedBy?: UUIDFilter;
1009
+ isApproved?: BooleanFilter;
1010
+ isVerified?: BooleanFilter;
1011
+ and?: AppMembershipDefaultFilter[];
1012
+ or?: AppMembershipDefaultFilter[];
1013
+ not?: AppMembershipDefaultFilter;
1014
+ }
1015
+ export interface OrgLimitFilter {
1016
+ id?: UUIDFilter;
1017
+ name?: StringFilter;
1018
+ actorId?: UUIDFilter;
1019
+ num?: IntFilter;
1020
+ max?: IntFilter;
1021
+ entityId?: UUIDFilter;
1022
+ and?: OrgLimitFilter[];
1023
+ or?: OrgLimitFilter[];
1024
+ not?: OrgLimitFilter;
1025
+ }
1026
+ export interface OrgClaimedInviteFilter {
1027
+ id?: UUIDFilter;
1028
+ data?: JSONFilter;
1029
+ senderId?: UUIDFilter;
1030
+ receiverId?: UUIDFilter;
1031
+ createdAt?: DatetimeFilter;
1032
+ updatedAt?: DatetimeFilter;
1033
+ entityId?: UUIDFilter;
1034
+ and?: OrgClaimedInviteFilter[];
1035
+ or?: OrgClaimedInviteFilter[];
1036
+ not?: OrgClaimedInviteFilter;
1037
+ }
1038
+ export interface OrgGrantFilter {
1039
+ id?: UUIDFilter;
1040
+ permissions?: BitStringFilter;
1041
+ isGrant?: BooleanFilter;
1042
+ actorId?: UUIDFilter;
1043
+ entityId?: UUIDFilter;
1044
+ grantorId?: UUIDFilter;
1045
+ createdAt?: DatetimeFilter;
1046
+ updatedAt?: DatetimeFilter;
1047
+ and?: OrgGrantFilter[];
1048
+ or?: OrgGrantFilter[];
1049
+ not?: OrgGrantFilter;
1050
+ }
1051
+ export interface OrgMembershipDefaultFilter {
1052
+ id?: UUIDFilter;
1053
+ createdAt?: DatetimeFilter;
1054
+ updatedAt?: DatetimeFilter;
1055
+ createdBy?: UUIDFilter;
1056
+ updatedBy?: UUIDFilter;
1057
+ isApproved?: BooleanFilter;
1058
+ entityId?: UUIDFilter;
1059
+ deleteMemberCascadeGroups?: BooleanFilter;
1060
+ createGroupsCascadeMembers?: BooleanFilter;
1061
+ and?: OrgMembershipDefaultFilter[];
1062
+ or?: OrgMembershipDefaultFilter[];
1063
+ not?: OrgMembershipDefaultFilter;
1064
+ }
1065
+ export interface AppLevelFilter {
1066
+ id?: UUIDFilter;
1067
+ name?: StringFilter;
1068
+ description?: StringFilter;
1069
+ image?: StringFilter;
1070
+ ownerId?: UUIDFilter;
1071
+ createdAt?: DatetimeFilter;
1072
+ updatedAt?: DatetimeFilter;
1073
+ and?: AppLevelFilter[];
1074
+ or?: AppLevelFilter[];
1075
+ not?: AppLevelFilter;
1076
+ }
1077
+ export interface InviteFilter {
1078
+ id?: UUIDFilter;
1079
+ email?: StringFilter;
1080
+ senderId?: UUIDFilter;
1081
+ inviteToken?: StringFilter;
1082
+ inviteValid?: BooleanFilter;
1083
+ inviteLimit?: IntFilter;
1084
+ inviteCount?: IntFilter;
1085
+ multiple?: BooleanFilter;
1086
+ data?: JSONFilter;
1087
+ expiresAt?: DatetimeFilter;
1088
+ createdAt?: DatetimeFilter;
1089
+ updatedAt?: DatetimeFilter;
1090
+ and?: InviteFilter[];
1091
+ or?: InviteFilter[];
1092
+ not?: InviteFilter;
1093
+ }
1094
+ export interface AppMembershipFilter {
1095
+ id?: UUIDFilter;
1096
+ createdAt?: DatetimeFilter;
1097
+ updatedAt?: DatetimeFilter;
1098
+ createdBy?: UUIDFilter;
1099
+ updatedBy?: UUIDFilter;
1100
+ isApproved?: BooleanFilter;
1101
+ isBanned?: BooleanFilter;
1102
+ isDisabled?: BooleanFilter;
1103
+ isVerified?: BooleanFilter;
1104
+ isActive?: BooleanFilter;
1105
+ isOwner?: BooleanFilter;
1106
+ isAdmin?: BooleanFilter;
1107
+ permissions?: BitStringFilter;
1108
+ granted?: BitStringFilter;
1109
+ actorId?: UUIDFilter;
1110
+ and?: AppMembershipFilter[];
1111
+ or?: AppMembershipFilter[];
1112
+ not?: AppMembershipFilter;
1113
+ }
1114
+ export interface OrgMembershipFilter {
1115
+ id?: UUIDFilter;
1116
+ createdAt?: DatetimeFilter;
1117
+ updatedAt?: DatetimeFilter;
1118
+ createdBy?: UUIDFilter;
1119
+ updatedBy?: UUIDFilter;
1120
+ isApproved?: BooleanFilter;
1121
+ isBanned?: BooleanFilter;
1122
+ isDisabled?: BooleanFilter;
1123
+ isActive?: BooleanFilter;
1124
+ isOwner?: BooleanFilter;
1125
+ isAdmin?: BooleanFilter;
1126
+ permissions?: BitStringFilter;
1127
+ granted?: BitStringFilter;
1128
+ actorId?: UUIDFilter;
1129
+ entityId?: UUIDFilter;
1130
+ and?: OrgMembershipFilter[];
1131
+ or?: OrgMembershipFilter[];
1132
+ not?: OrgMembershipFilter;
1133
+ }
1134
+ export interface OrgInviteFilter {
1135
+ id?: UUIDFilter;
1136
+ email?: StringFilter;
1137
+ senderId?: UUIDFilter;
1138
+ receiverId?: UUIDFilter;
1139
+ inviteToken?: StringFilter;
1140
+ inviteValid?: BooleanFilter;
1141
+ inviteLimit?: IntFilter;
1142
+ inviteCount?: IntFilter;
1143
+ multiple?: BooleanFilter;
1144
+ data?: JSONFilter;
1145
+ expiresAt?: DatetimeFilter;
1146
+ createdAt?: DatetimeFilter;
1147
+ updatedAt?: DatetimeFilter;
1148
+ entityId?: UUIDFilter;
1149
+ and?: OrgInviteFilter[];
1150
+ or?: OrgInviteFilter[];
1151
+ not?: OrgInviteFilter;
1152
+ }
1153
+ export interface AppPermissionCondition {
1154
+ id?: string | null;
1155
+ name?: string | null;
1156
+ bitnum?: number | null;
1157
+ bitstr?: string | null;
1158
+ description?: string | null;
1159
+ }
1160
+ export interface OrgPermissionCondition {
1161
+ id?: string | null;
1162
+ name?: string | null;
1163
+ bitnum?: number | null;
1164
+ bitstr?: string | null;
1165
+ description?: string | null;
1166
+ }
1167
+ export interface AppLevelRequirementCondition {
1168
+ id?: string | null;
1169
+ name?: string | null;
1170
+ level?: string | null;
1171
+ description?: string | null;
1172
+ requiredCount?: number | null;
1173
+ priority?: number | null;
1174
+ createdAt?: string | null;
1175
+ updatedAt?: string | null;
1176
+ }
1177
+ export interface OrgMemberCondition {
1178
+ id?: string | null;
1179
+ isAdmin?: boolean | null;
1180
+ actorId?: string | null;
1181
+ entityId?: string | null;
1182
+ }
1183
+ export interface AppPermissionDefaultCondition {
1184
+ id?: string | null;
1185
+ permissions?: string | null;
1186
+ }
1187
+ export interface OrgPermissionDefaultCondition {
1188
+ id?: string | null;
1189
+ permissions?: string | null;
1190
+ entityId?: string | null;
1191
+ }
1192
+ export interface AppAdminGrantCondition {
1193
+ id?: string | null;
1194
+ isGrant?: boolean | null;
1195
+ actorId?: string | null;
1196
+ grantorId?: string | null;
1197
+ createdAt?: string | null;
1198
+ updatedAt?: string | null;
1199
+ }
1200
+ export interface AppOwnerGrantCondition {
1201
+ id?: string | null;
1202
+ isGrant?: boolean | null;
1203
+ actorId?: string | null;
1204
+ grantorId?: string | null;
1205
+ createdAt?: string | null;
1206
+ updatedAt?: string | null;
1207
+ }
1208
+ export interface AppLimitDefaultCondition {
1209
+ id?: string | null;
1210
+ name?: string | null;
1211
+ max?: number | null;
1212
+ }
1213
+ export interface OrgLimitDefaultCondition {
1214
+ id?: string | null;
1215
+ name?: string | null;
1216
+ max?: number | null;
1217
+ }
1218
+ export interface OrgAdminGrantCondition {
1219
+ id?: string | null;
1220
+ isGrant?: boolean | null;
1221
+ actorId?: string | null;
1222
+ entityId?: string | null;
1223
+ grantorId?: string | null;
1224
+ createdAt?: string | null;
1225
+ updatedAt?: string | null;
1226
+ }
1227
+ export interface OrgOwnerGrantCondition {
1228
+ id?: string | null;
1229
+ isGrant?: boolean | null;
1230
+ actorId?: string | null;
1231
+ entityId?: string | null;
1232
+ grantorId?: string | null;
1233
+ createdAt?: string | null;
1234
+ updatedAt?: string | null;
1235
+ }
1236
+ export interface MembershipTypeCondition {
1237
+ id?: number | null;
1238
+ name?: string | null;
1239
+ description?: string | null;
1240
+ prefix?: string | null;
1241
+ }
1242
+ export interface AppLimitCondition {
1243
+ id?: string | null;
1244
+ name?: string | null;
1245
+ actorId?: string | null;
1246
+ num?: number | null;
1247
+ max?: number | null;
1248
+ }
1249
+ export interface AppAchievementCondition {
1250
+ id?: string | null;
1251
+ actorId?: string | null;
1252
+ name?: string | null;
1253
+ count?: number | null;
1254
+ createdAt?: string | null;
1255
+ updatedAt?: string | null;
1256
+ }
1257
+ export interface AppStepCondition {
1258
+ id?: string | null;
1259
+ actorId?: string | null;
1260
+ name?: string | null;
1261
+ count?: number | null;
1262
+ createdAt?: string | null;
1263
+ updatedAt?: string | null;
1264
+ }
1265
+ export interface ClaimedInviteCondition {
1266
+ id?: string | null;
1267
+ data?: unknown | null;
1268
+ senderId?: string | null;
1269
+ receiverId?: string | null;
1270
+ createdAt?: string | null;
1271
+ updatedAt?: string | null;
1272
+ }
1273
+ export interface AppGrantCondition {
1274
+ id?: string | null;
1275
+ permissions?: string | null;
1276
+ isGrant?: boolean | null;
1277
+ actorId?: string | null;
1278
+ grantorId?: string | null;
1279
+ createdAt?: string | null;
1280
+ updatedAt?: string | null;
1281
+ }
1282
+ export interface AppMembershipDefaultCondition {
1283
+ id?: string | null;
1284
+ createdAt?: string | null;
1285
+ updatedAt?: string | null;
1286
+ createdBy?: string | null;
1287
+ updatedBy?: string | null;
1288
+ isApproved?: boolean | null;
1289
+ isVerified?: boolean | null;
1290
+ }
1291
+ export interface OrgLimitCondition {
1292
+ id?: string | null;
1293
+ name?: string | null;
1294
+ actorId?: string | null;
1295
+ num?: number | null;
1296
+ max?: number | null;
1297
+ entityId?: string | null;
1298
+ }
1299
+ export interface OrgClaimedInviteCondition {
1300
+ id?: string | null;
1301
+ data?: unknown | null;
1302
+ senderId?: string | null;
1303
+ receiverId?: string | null;
1304
+ createdAt?: string | null;
1305
+ updatedAt?: string | null;
1306
+ entityId?: string | null;
1307
+ }
1308
+ export interface OrgGrantCondition {
1309
+ id?: string | null;
1310
+ permissions?: string | null;
1311
+ isGrant?: boolean | null;
1312
+ actorId?: string | null;
1313
+ entityId?: string | null;
1314
+ grantorId?: string | null;
1315
+ createdAt?: string | null;
1316
+ updatedAt?: string | null;
1317
+ }
1318
+ export interface OrgMembershipDefaultCondition {
1319
+ id?: string | null;
1320
+ createdAt?: string | null;
1321
+ updatedAt?: string | null;
1322
+ createdBy?: string | null;
1323
+ updatedBy?: string | null;
1324
+ isApproved?: boolean | null;
1325
+ entityId?: string | null;
1326
+ deleteMemberCascadeGroups?: boolean | null;
1327
+ createGroupsCascadeMembers?: boolean | null;
1328
+ }
1329
+ export interface AppLevelCondition {
1330
+ id?: string | null;
1331
+ name?: string | null;
1332
+ description?: string | null;
1333
+ image?: unknown | null;
1334
+ ownerId?: string | null;
1335
+ createdAt?: string | null;
1336
+ updatedAt?: string | null;
1337
+ }
1338
+ export interface InviteCondition {
1339
+ id?: string | null;
1340
+ email?: unknown | null;
1341
+ senderId?: string | null;
1342
+ inviteToken?: string | null;
1343
+ inviteValid?: boolean | null;
1344
+ inviteLimit?: number | null;
1345
+ inviteCount?: number | null;
1346
+ multiple?: boolean | null;
1347
+ data?: unknown | null;
1348
+ expiresAt?: string | null;
1349
+ createdAt?: string | null;
1350
+ updatedAt?: string | null;
1351
+ }
1352
+ export interface AppMembershipCondition {
1353
+ id?: string | null;
1354
+ createdAt?: string | null;
1355
+ updatedAt?: string | null;
1356
+ createdBy?: string | null;
1357
+ updatedBy?: string | null;
1358
+ isApproved?: boolean | null;
1359
+ isBanned?: boolean | null;
1360
+ isDisabled?: boolean | null;
1361
+ isVerified?: boolean | null;
1362
+ isActive?: boolean | null;
1363
+ isOwner?: boolean | null;
1364
+ isAdmin?: boolean | null;
1365
+ permissions?: string | null;
1366
+ granted?: string | null;
1367
+ actorId?: string | null;
1368
+ }
1369
+ export interface OrgMembershipCondition {
1370
+ id?: string | null;
1371
+ createdAt?: string | null;
1372
+ updatedAt?: string | null;
1373
+ createdBy?: string | null;
1374
+ updatedBy?: string | null;
1375
+ isApproved?: boolean | null;
1376
+ isBanned?: boolean | null;
1377
+ isDisabled?: boolean | null;
1378
+ isActive?: boolean | null;
1379
+ isOwner?: boolean | null;
1380
+ isAdmin?: boolean | null;
1381
+ permissions?: string | null;
1382
+ granted?: string | null;
1383
+ actorId?: string | null;
1384
+ entityId?: string | null;
1385
+ }
1386
+ export interface OrgInviteCondition {
1387
+ id?: string | null;
1388
+ email?: unknown | null;
1389
+ senderId?: string | null;
1390
+ receiverId?: string | null;
1391
+ inviteToken?: string | null;
1392
+ inviteValid?: boolean | null;
1393
+ inviteLimit?: number | null;
1394
+ inviteCount?: number | null;
1395
+ multiple?: boolean | null;
1396
+ data?: unknown | null;
1397
+ expiresAt?: string | null;
1398
+ createdAt?: string | null;
1399
+ updatedAt?: string | null;
1400
+ entityId?: string | null;
1401
+ }
1402
+ export type AppPermissionOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'BITSTR_ASC' | 'BITSTR_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC';
1403
+ export type OrgPermissionOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'BITNUM_ASC' | 'BITNUM_DESC' | 'BITSTR_ASC' | 'BITSTR_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC';
1404
+ export type AppLevelRequirementOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'LEVEL_ASC' | 'LEVEL_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'REQUIRED_COUNT_ASC' | 'REQUIRED_COUNT_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1405
+ export type OrgMemberOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1406
+ export type AppPermissionDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC';
1407
+ export type OrgPermissionDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1408
+ export type AppAdminGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1409
+ export type AppOwnerGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1410
+ export type AppLimitDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1411
+ export type OrgLimitDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
1412
+ export type OrgAdminGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1413
+ export type OrgOwnerGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1414
+ export type MembershipTypeOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC';
1415
+ export type AppLimitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC';
1416
+ export type AppAchievementOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1417
+ export type AppStepOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'COUNT_ASC' | 'COUNT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1418
+ export type ClaimedInviteOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1419
+ export type AppGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1420
+ export type AppMembershipDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC';
1421
+ export type OrgLimitOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1422
+ export type OrgClaimedInviteOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1423
+ export type OrgGrantOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'IS_GRANT_ASC' | 'IS_GRANT_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'GRANTOR_ID_ASC' | 'GRANTOR_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1424
+ export type OrgMembershipDefaultOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_GROUPS_ASC' | 'DELETE_MEMBER_CASCADE_GROUPS_DESC' | 'CREATE_GROUPS_CASCADE_MEMBERS_ASC' | 'CREATE_GROUPS_CASCADE_MEMBERS_DESC';
1425
+ export type AppLevelOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'IMAGE_ASC' | 'IMAGE_DESC' | 'OWNER_ID_ASC' | 'OWNER_ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1426
+ export type InviteOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
1427
+ export type AppMembershipOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_VERIFIED_ASC' | 'IS_VERIFIED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC';
1428
+ export type OrgMembershipOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'CREATED_BY_ASC' | 'CREATED_BY_DESC' | 'UPDATED_BY_ASC' | 'UPDATED_BY_DESC' | 'IS_APPROVED_ASC' | 'IS_APPROVED_DESC' | 'IS_BANNED_ASC' | 'IS_BANNED_DESC' | 'IS_DISABLED_ASC' | 'IS_DISABLED_DESC' | 'IS_ACTIVE_ASC' | 'IS_ACTIVE_DESC' | 'IS_OWNER_ASC' | 'IS_OWNER_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'GRANTED_ASC' | 'GRANTED_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1429
+ export type OrgInviteOrderBy = 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'NATURAL' | 'ID_ASC' | 'ID_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'SENDER_ID_ASC' | 'SENDER_ID_DESC' | 'RECEIVER_ID_ASC' | 'RECEIVER_ID_DESC' | 'INVITE_TOKEN_ASC' | 'INVITE_TOKEN_DESC' | 'INVITE_VALID_ASC' | 'INVITE_VALID_DESC' | 'INVITE_LIMIT_ASC' | 'INVITE_LIMIT_DESC' | 'INVITE_COUNT_ASC' | 'INVITE_COUNT_DESC' | 'MULTIPLE_ASC' | 'MULTIPLE_DESC' | 'DATA_ASC' | 'DATA_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
1430
+ export interface CreateAppPermissionInput {
1431
+ clientMutationId?: string;
1432
+ appPermission: {
1433
+ name?: string;
1434
+ bitnum?: number;
1435
+ bitstr?: string;
1436
+ description?: string;
1437
+ };
1438
+ }
1439
+ export interface AppPermissionPatch {
1440
+ name?: string | null;
1441
+ bitnum?: number | null;
1442
+ bitstr?: string | null;
1443
+ description?: string | null;
1444
+ }
1445
+ export interface UpdateAppPermissionInput {
1446
+ clientMutationId?: string;
1447
+ id: string;
1448
+ appPermissionPatch: AppPermissionPatch;
1449
+ }
1450
+ export interface DeleteAppPermissionInput {
1451
+ clientMutationId?: string;
1452
+ id: string;
1453
+ }
1454
+ export interface CreateOrgPermissionInput {
1455
+ clientMutationId?: string;
1456
+ orgPermission: {
1457
+ name?: string;
1458
+ bitnum?: number;
1459
+ bitstr?: string;
1460
+ description?: string;
1461
+ };
1462
+ }
1463
+ export interface OrgPermissionPatch {
1464
+ name?: string | null;
1465
+ bitnum?: number | null;
1466
+ bitstr?: string | null;
1467
+ description?: string | null;
1468
+ }
1469
+ export interface UpdateOrgPermissionInput {
1470
+ clientMutationId?: string;
1471
+ id: string;
1472
+ orgPermissionPatch: OrgPermissionPatch;
1473
+ }
1474
+ export interface DeleteOrgPermissionInput {
1475
+ clientMutationId?: string;
1476
+ id: string;
1477
+ }
1478
+ export interface CreateAppLevelRequirementInput {
1479
+ clientMutationId?: string;
1480
+ appLevelRequirement: {
1481
+ name: string;
1482
+ level: string;
1483
+ description?: string;
1484
+ requiredCount?: number;
1485
+ priority?: number;
1486
+ };
1487
+ }
1488
+ export interface AppLevelRequirementPatch {
1489
+ name?: string | null;
1490
+ level?: string | null;
1491
+ description?: string | null;
1492
+ requiredCount?: number | null;
1493
+ priority?: number | null;
1494
+ }
1495
+ export interface UpdateAppLevelRequirementInput {
1496
+ clientMutationId?: string;
1497
+ id: string;
1498
+ appLevelRequirementPatch: AppLevelRequirementPatch;
1499
+ }
1500
+ export interface DeleteAppLevelRequirementInput {
1501
+ clientMutationId?: string;
1502
+ id: string;
1503
+ }
1504
+ export interface CreateOrgMemberInput {
1505
+ clientMutationId?: string;
1506
+ orgMember: {
1507
+ isAdmin?: boolean;
1508
+ actorId: string;
1509
+ entityId: string;
1510
+ };
1511
+ }
1512
+ export interface OrgMemberPatch {
1513
+ isAdmin?: boolean | null;
1514
+ actorId?: string | null;
1515
+ entityId?: string | null;
1516
+ }
1517
+ export interface UpdateOrgMemberInput {
1518
+ clientMutationId?: string;
1519
+ id: string;
1520
+ orgMemberPatch: OrgMemberPatch;
1521
+ }
1522
+ export interface DeleteOrgMemberInput {
1523
+ clientMutationId?: string;
1524
+ id: string;
1525
+ }
1526
+ export interface CreateAppPermissionDefaultInput {
1527
+ clientMutationId?: string;
1528
+ appPermissionDefault: {
1529
+ permissions?: string;
1530
+ };
1531
+ }
1532
+ export interface AppPermissionDefaultPatch {
1533
+ permissions?: string | null;
1534
+ }
1535
+ export interface UpdateAppPermissionDefaultInput {
1536
+ clientMutationId?: string;
1537
+ id: string;
1538
+ appPermissionDefaultPatch: AppPermissionDefaultPatch;
1539
+ }
1540
+ export interface DeleteAppPermissionDefaultInput {
1541
+ clientMutationId?: string;
1542
+ id: string;
1543
+ }
1544
+ export interface CreateOrgPermissionDefaultInput {
1545
+ clientMutationId?: string;
1546
+ orgPermissionDefault: {
1547
+ permissions?: string;
1548
+ entityId: string;
1549
+ };
1550
+ }
1551
+ export interface OrgPermissionDefaultPatch {
1552
+ permissions?: string | null;
1553
+ entityId?: string | null;
1554
+ }
1555
+ export interface UpdateOrgPermissionDefaultInput {
1556
+ clientMutationId?: string;
1557
+ id: string;
1558
+ orgPermissionDefaultPatch: OrgPermissionDefaultPatch;
1559
+ }
1560
+ export interface DeleteOrgPermissionDefaultInput {
1561
+ clientMutationId?: string;
1562
+ id: string;
1563
+ }
1564
+ export interface CreateAppAdminGrantInput {
1565
+ clientMutationId?: string;
1566
+ appAdminGrant: {
1567
+ isGrant?: boolean;
1568
+ actorId: string;
1569
+ grantorId?: string;
1570
+ };
1571
+ }
1572
+ export interface AppAdminGrantPatch {
1573
+ isGrant?: boolean | null;
1574
+ actorId?: string | null;
1575
+ grantorId?: string | null;
1576
+ }
1577
+ export interface UpdateAppAdminGrantInput {
1578
+ clientMutationId?: string;
1579
+ id: string;
1580
+ appAdminGrantPatch: AppAdminGrantPatch;
1581
+ }
1582
+ export interface DeleteAppAdminGrantInput {
1583
+ clientMutationId?: string;
1584
+ id: string;
1585
+ }
1586
+ export interface CreateAppOwnerGrantInput {
1587
+ clientMutationId?: string;
1588
+ appOwnerGrant: {
1589
+ isGrant?: boolean;
1590
+ actorId: string;
1591
+ grantorId?: string;
1592
+ };
1593
+ }
1594
+ export interface AppOwnerGrantPatch {
1595
+ isGrant?: boolean | null;
1596
+ actorId?: string | null;
1597
+ grantorId?: string | null;
1598
+ }
1599
+ export interface UpdateAppOwnerGrantInput {
1600
+ clientMutationId?: string;
1601
+ id: string;
1602
+ appOwnerGrantPatch: AppOwnerGrantPatch;
1603
+ }
1604
+ export interface DeleteAppOwnerGrantInput {
1605
+ clientMutationId?: string;
1606
+ id: string;
1607
+ }
1608
+ export interface CreateAppLimitDefaultInput {
1609
+ clientMutationId?: string;
1610
+ appLimitDefault: {
1611
+ name: string;
1612
+ max?: number;
1613
+ };
1614
+ }
1615
+ export interface AppLimitDefaultPatch {
1616
+ name?: string | null;
1617
+ max?: number | null;
1618
+ }
1619
+ export interface UpdateAppLimitDefaultInput {
1620
+ clientMutationId?: string;
1621
+ id: string;
1622
+ appLimitDefaultPatch: AppLimitDefaultPatch;
1623
+ }
1624
+ export interface DeleteAppLimitDefaultInput {
1625
+ clientMutationId?: string;
1626
+ id: string;
1627
+ }
1628
+ export interface CreateOrgLimitDefaultInput {
1629
+ clientMutationId?: string;
1630
+ orgLimitDefault: {
1631
+ name: string;
1632
+ max?: number;
1633
+ };
1634
+ }
1635
+ export interface OrgLimitDefaultPatch {
1636
+ name?: string | null;
1637
+ max?: number | null;
1638
+ }
1639
+ export interface UpdateOrgLimitDefaultInput {
1640
+ clientMutationId?: string;
1641
+ id: string;
1642
+ orgLimitDefaultPatch: OrgLimitDefaultPatch;
1643
+ }
1644
+ export interface DeleteOrgLimitDefaultInput {
1645
+ clientMutationId?: string;
1646
+ id: string;
1647
+ }
1648
+ export interface CreateOrgAdminGrantInput {
1649
+ clientMutationId?: string;
1650
+ orgAdminGrant: {
1651
+ isGrant?: boolean;
1652
+ actorId: string;
1653
+ entityId: string;
1654
+ grantorId?: string;
1655
+ };
1656
+ }
1657
+ export interface OrgAdminGrantPatch {
1658
+ isGrant?: boolean | null;
1659
+ actorId?: string | null;
1660
+ entityId?: string | null;
1661
+ grantorId?: string | null;
1662
+ }
1663
+ export interface UpdateOrgAdminGrantInput {
1664
+ clientMutationId?: string;
1665
+ id: string;
1666
+ orgAdminGrantPatch: OrgAdminGrantPatch;
1667
+ }
1668
+ export interface DeleteOrgAdminGrantInput {
1669
+ clientMutationId?: string;
1670
+ id: string;
1671
+ }
1672
+ export interface CreateOrgOwnerGrantInput {
1673
+ clientMutationId?: string;
1674
+ orgOwnerGrant: {
1675
+ isGrant?: boolean;
1676
+ actorId: string;
1677
+ entityId: string;
1678
+ grantorId?: string;
1679
+ };
1680
+ }
1681
+ export interface OrgOwnerGrantPatch {
1682
+ isGrant?: boolean | null;
1683
+ actorId?: string | null;
1684
+ entityId?: string | null;
1685
+ grantorId?: string | null;
1686
+ }
1687
+ export interface UpdateOrgOwnerGrantInput {
1688
+ clientMutationId?: string;
1689
+ id: string;
1690
+ orgOwnerGrantPatch: OrgOwnerGrantPatch;
1691
+ }
1692
+ export interface DeleteOrgOwnerGrantInput {
1693
+ clientMutationId?: string;
1694
+ id: string;
1695
+ }
1696
+ export interface CreateMembershipTypeInput {
1697
+ clientMutationId?: string;
1698
+ membershipType: {
1699
+ name: string;
1700
+ description: string;
1701
+ prefix: string;
1702
+ };
1703
+ }
1704
+ export interface MembershipTypePatch {
1705
+ name?: string | null;
1706
+ description?: string | null;
1707
+ prefix?: string | null;
1708
+ }
1709
+ export interface UpdateMembershipTypeInput {
1710
+ clientMutationId?: string;
1711
+ id: number;
1712
+ membershipTypePatch: MembershipTypePatch;
1713
+ }
1714
+ export interface DeleteMembershipTypeInput {
1715
+ clientMutationId?: string;
1716
+ id: number;
1717
+ }
1718
+ export interface CreateAppLimitInput {
1719
+ clientMutationId?: string;
1720
+ appLimit: {
1721
+ name?: string;
1722
+ actorId: string;
1723
+ num?: number;
1724
+ max?: number;
1725
+ };
1726
+ }
1727
+ export interface AppLimitPatch {
1728
+ name?: string | null;
1729
+ actorId?: string | null;
1730
+ num?: number | null;
1731
+ max?: number | null;
1732
+ }
1733
+ export interface UpdateAppLimitInput {
1734
+ clientMutationId?: string;
1735
+ id: string;
1736
+ appLimitPatch: AppLimitPatch;
1737
+ }
1738
+ export interface DeleteAppLimitInput {
1739
+ clientMutationId?: string;
1740
+ id: string;
1741
+ }
1742
+ export interface CreateAppAchievementInput {
1743
+ clientMutationId?: string;
1744
+ appAchievement: {
1745
+ actorId?: string;
1746
+ name: string;
1747
+ count?: number;
1748
+ };
1749
+ }
1750
+ export interface AppAchievementPatch {
1751
+ actorId?: string | null;
1752
+ name?: string | null;
1753
+ count?: number | null;
1754
+ }
1755
+ export interface UpdateAppAchievementInput {
1756
+ clientMutationId?: string;
1757
+ id: string;
1758
+ appAchievementPatch: AppAchievementPatch;
1759
+ }
1760
+ export interface DeleteAppAchievementInput {
1761
+ clientMutationId?: string;
1762
+ id: string;
1763
+ }
1764
+ export interface CreateAppStepInput {
1765
+ clientMutationId?: string;
1766
+ appStep: {
1767
+ actorId?: string;
1768
+ name: string;
1769
+ count?: number;
1770
+ };
1771
+ }
1772
+ export interface AppStepPatch {
1773
+ actorId?: string | null;
1774
+ name?: string | null;
1775
+ count?: number | null;
1776
+ }
1777
+ export interface UpdateAppStepInput {
1778
+ clientMutationId?: string;
1779
+ id: string;
1780
+ appStepPatch: AppStepPatch;
1781
+ }
1782
+ export interface DeleteAppStepInput {
1783
+ clientMutationId?: string;
1784
+ id: string;
1785
+ }
1786
+ export interface CreateClaimedInviteInput {
1787
+ clientMutationId?: string;
1788
+ claimedInvite: {
1789
+ data?: Record<string, unknown>;
1790
+ senderId?: string;
1791
+ receiverId?: string;
1792
+ };
1793
+ }
1794
+ export interface ClaimedInvitePatch {
1795
+ data?: Record<string, unknown> | null;
1796
+ senderId?: string | null;
1797
+ receiverId?: string | null;
1798
+ }
1799
+ export interface UpdateClaimedInviteInput {
1800
+ clientMutationId?: string;
1801
+ id: string;
1802
+ claimedInvitePatch: ClaimedInvitePatch;
1803
+ }
1804
+ export interface DeleteClaimedInviteInput {
1805
+ clientMutationId?: string;
1806
+ id: string;
1807
+ }
1808
+ export interface CreateAppGrantInput {
1809
+ clientMutationId?: string;
1810
+ appGrant: {
1811
+ permissions?: string;
1812
+ isGrant?: boolean;
1813
+ actorId: string;
1814
+ grantorId?: string;
1815
+ };
1816
+ }
1817
+ export interface AppGrantPatch {
1818
+ permissions?: string | null;
1819
+ isGrant?: boolean | null;
1820
+ actorId?: string | null;
1821
+ grantorId?: string | null;
1822
+ }
1823
+ export interface UpdateAppGrantInput {
1824
+ clientMutationId?: string;
1825
+ id: string;
1826
+ appGrantPatch: AppGrantPatch;
1827
+ }
1828
+ export interface DeleteAppGrantInput {
1829
+ clientMutationId?: string;
1830
+ id: string;
1831
+ }
1832
+ export interface CreateAppMembershipDefaultInput {
1833
+ clientMutationId?: string;
1834
+ appMembershipDefault: {
1835
+ createdBy?: string;
1836
+ updatedBy?: string;
1837
+ isApproved?: boolean;
1838
+ isVerified?: boolean;
1839
+ };
1840
+ }
1841
+ export interface AppMembershipDefaultPatch {
1842
+ createdBy?: string | null;
1843
+ updatedBy?: string | null;
1844
+ isApproved?: boolean | null;
1845
+ isVerified?: boolean | null;
1846
+ }
1847
+ export interface UpdateAppMembershipDefaultInput {
1848
+ clientMutationId?: string;
1849
+ id: string;
1850
+ appMembershipDefaultPatch: AppMembershipDefaultPatch;
1851
+ }
1852
+ export interface DeleteAppMembershipDefaultInput {
1853
+ clientMutationId?: string;
1854
+ id: string;
1855
+ }
1856
+ export interface CreateOrgLimitInput {
1857
+ clientMutationId?: string;
1858
+ orgLimit: {
1859
+ name?: string;
1860
+ actorId: string;
1861
+ num?: number;
1862
+ max?: number;
1863
+ entityId: string;
1864
+ };
1865
+ }
1866
+ export interface OrgLimitPatch {
1867
+ name?: string | null;
1868
+ actorId?: string | null;
1869
+ num?: number | null;
1870
+ max?: number | null;
1871
+ entityId?: string | null;
1872
+ }
1873
+ export interface UpdateOrgLimitInput {
1874
+ clientMutationId?: string;
1875
+ id: string;
1876
+ orgLimitPatch: OrgLimitPatch;
1877
+ }
1878
+ export interface DeleteOrgLimitInput {
1879
+ clientMutationId?: string;
1880
+ id: string;
1881
+ }
1882
+ export interface CreateOrgClaimedInviteInput {
1883
+ clientMutationId?: string;
1884
+ orgClaimedInvite: {
1885
+ data?: Record<string, unknown>;
1886
+ senderId?: string;
1887
+ receiverId?: string;
1888
+ entityId: string;
1889
+ };
1890
+ }
1891
+ export interface OrgClaimedInvitePatch {
1892
+ data?: Record<string, unknown> | null;
1893
+ senderId?: string | null;
1894
+ receiverId?: string | null;
1895
+ entityId?: string | null;
1896
+ }
1897
+ export interface UpdateOrgClaimedInviteInput {
1898
+ clientMutationId?: string;
1899
+ id: string;
1900
+ orgClaimedInvitePatch: OrgClaimedInvitePatch;
1901
+ }
1902
+ export interface DeleteOrgClaimedInviteInput {
1903
+ clientMutationId?: string;
1904
+ id: string;
1905
+ }
1906
+ export interface CreateOrgGrantInput {
1907
+ clientMutationId?: string;
1908
+ orgGrant: {
1909
+ permissions?: string;
1910
+ isGrant?: boolean;
1911
+ actorId: string;
1912
+ entityId: string;
1913
+ grantorId?: string;
1914
+ };
1915
+ }
1916
+ export interface OrgGrantPatch {
1917
+ permissions?: string | null;
1918
+ isGrant?: boolean | null;
1919
+ actorId?: string | null;
1920
+ entityId?: string | null;
1921
+ grantorId?: string | null;
1922
+ }
1923
+ export interface UpdateOrgGrantInput {
1924
+ clientMutationId?: string;
1925
+ id: string;
1926
+ orgGrantPatch: OrgGrantPatch;
1927
+ }
1928
+ export interface DeleteOrgGrantInput {
1929
+ clientMutationId?: string;
1930
+ id: string;
1931
+ }
1932
+ export interface CreateOrgMembershipDefaultInput {
1933
+ clientMutationId?: string;
1934
+ orgMembershipDefault: {
1935
+ createdBy?: string;
1936
+ updatedBy?: string;
1937
+ isApproved?: boolean;
1938
+ entityId: string;
1939
+ deleteMemberCascadeGroups?: boolean;
1940
+ createGroupsCascadeMembers?: boolean;
1941
+ };
1942
+ }
1943
+ export interface OrgMembershipDefaultPatch {
1944
+ createdBy?: string | null;
1945
+ updatedBy?: string | null;
1946
+ isApproved?: boolean | null;
1947
+ entityId?: string | null;
1948
+ deleteMemberCascadeGroups?: boolean | null;
1949
+ createGroupsCascadeMembers?: boolean | null;
1950
+ }
1951
+ export interface UpdateOrgMembershipDefaultInput {
1952
+ clientMutationId?: string;
1953
+ id: string;
1954
+ orgMembershipDefaultPatch: OrgMembershipDefaultPatch;
1955
+ }
1956
+ export interface DeleteOrgMembershipDefaultInput {
1957
+ clientMutationId?: string;
1958
+ id: string;
1959
+ }
1960
+ export interface CreateAppLevelInput {
1961
+ clientMutationId?: string;
1962
+ appLevel: {
1963
+ name: string;
1964
+ description?: string;
1965
+ image?: ConstructiveInternalTypeImage;
1966
+ ownerId?: string;
1967
+ };
1968
+ }
1969
+ export interface AppLevelPatch {
1970
+ name?: string | null;
1971
+ description?: string | null;
1972
+ image?: ConstructiveInternalTypeImage | null;
1973
+ ownerId?: string | null;
1974
+ }
1975
+ export interface UpdateAppLevelInput {
1976
+ clientMutationId?: string;
1977
+ id: string;
1978
+ appLevelPatch: AppLevelPatch;
1979
+ }
1980
+ export interface DeleteAppLevelInput {
1981
+ clientMutationId?: string;
1982
+ id: string;
1983
+ }
1984
+ export interface CreateInviteInput {
1985
+ clientMutationId?: string;
1986
+ invite: {
1987
+ email?: ConstructiveInternalTypeEmail;
1988
+ senderId?: string;
1989
+ inviteToken?: string;
1990
+ inviteValid?: boolean;
1991
+ inviteLimit?: number;
1992
+ inviteCount?: number;
1993
+ multiple?: boolean;
1994
+ data?: Record<string, unknown>;
1995
+ expiresAt?: string;
1996
+ };
1997
+ }
1998
+ export interface InvitePatch {
1999
+ email?: ConstructiveInternalTypeEmail | null;
2000
+ senderId?: string | null;
2001
+ inviteToken?: string | null;
2002
+ inviteValid?: boolean | null;
2003
+ inviteLimit?: number | null;
2004
+ inviteCount?: number | null;
2005
+ multiple?: boolean | null;
2006
+ data?: Record<string, unknown> | null;
2007
+ expiresAt?: string | null;
2008
+ }
2009
+ export interface UpdateInviteInput {
2010
+ clientMutationId?: string;
2011
+ id: string;
2012
+ invitePatch: InvitePatch;
2013
+ }
2014
+ export interface DeleteInviteInput {
2015
+ clientMutationId?: string;
2016
+ id: string;
2017
+ }
2018
+ export interface CreateAppMembershipInput {
2019
+ clientMutationId?: string;
2020
+ appMembership: {
2021
+ createdBy?: string;
2022
+ updatedBy?: string;
2023
+ isApproved?: boolean;
2024
+ isBanned?: boolean;
2025
+ isDisabled?: boolean;
2026
+ isVerified?: boolean;
2027
+ isActive?: boolean;
2028
+ isOwner?: boolean;
2029
+ isAdmin?: boolean;
2030
+ permissions?: string;
2031
+ granted?: string;
2032
+ actorId: string;
2033
+ };
2034
+ }
2035
+ export interface AppMembershipPatch {
2036
+ createdBy?: string | null;
2037
+ updatedBy?: string | null;
2038
+ isApproved?: boolean | null;
2039
+ isBanned?: boolean | null;
2040
+ isDisabled?: boolean | null;
2041
+ isVerified?: boolean | null;
2042
+ isActive?: boolean | null;
2043
+ isOwner?: boolean | null;
2044
+ isAdmin?: boolean | null;
2045
+ permissions?: string | null;
2046
+ granted?: string | null;
2047
+ actorId?: string | null;
2048
+ }
2049
+ export interface UpdateAppMembershipInput {
2050
+ clientMutationId?: string;
2051
+ id: string;
2052
+ appMembershipPatch: AppMembershipPatch;
2053
+ }
2054
+ export interface DeleteAppMembershipInput {
2055
+ clientMutationId?: string;
2056
+ id: string;
2057
+ }
2058
+ export interface CreateOrgMembershipInput {
2059
+ clientMutationId?: string;
2060
+ orgMembership: {
2061
+ createdBy?: string;
2062
+ updatedBy?: string;
2063
+ isApproved?: boolean;
2064
+ isBanned?: boolean;
2065
+ isDisabled?: boolean;
2066
+ isActive?: boolean;
2067
+ isOwner?: boolean;
2068
+ isAdmin?: boolean;
2069
+ permissions?: string;
2070
+ granted?: string;
2071
+ actorId: string;
2072
+ entityId: string;
2073
+ };
2074
+ }
2075
+ export interface OrgMembershipPatch {
2076
+ createdBy?: string | null;
2077
+ updatedBy?: string | null;
2078
+ isApproved?: boolean | null;
2079
+ isBanned?: boolean | null;
2080
+ isDisabled?: boolean | null;
2081
+ isActive?: boolean | null;
2082
+ isOwner?: boolean | null;
2083
+ isAdmin?: boolean | null;
2084
+ permissions?: string | null;
2085
+ granted?: string | null;
2086
+ actorId?: string | null;
2087
+ entityId?: string | null;
2088
+ }
2089
+ export interface UpdateOrgMembershipInput {
2090
+ clientMutationId?: string;
2091
+ id: string;
2092
+ orgMembershipPatch: OrgMembershipPatch;
2093
+ }
2094
+ export interface DeleteOrgMembershipInput {
2095
+ clientMutationId?: string;
2096
+ id: string;
2097
+ }
2098
+ export interface CreateOrgInviteInput {
2099
+ clientMutationId?: string;
2100
+ orgInvite: {
2101
+ email?: ConstructiveInternalTypeEmail;
2102
+ senderId?: string;
2103
+ receiverId?: string;
2104
+ inviteToken?: string;
2105
+ inviteValid?: boolean;
2106
+ inviteLimit?: number;
2107
+ inviteCount?: number;
2108
+ multiple?: boolean;
2109
+ data?: Record<string, unknown>;
2110
+ expiresAt?: string;
2111
+ entityId: string;
2112
+ };
2113
+ }
2114
+ export interface OrgInvitePatch {
2115
+ email?: ConstructiveInternalTypeEmail | null;
2116
+ senderId?: string | null;
2117
+ receiverId?: string | null;
2118
+ inviteToken?: string | null;
2119
+ inviteValid?: boolean | null;
2120
+ inviteLimit?: number | null;
2121
+ inviteCount?: number | null;
2122
+ multiple?: boolean | null;
2123
+ data?: Record<string, unknown> | null;
2124
+ expiresAt?: string | null;
2125
+ entityId?: string | null;
2126
+ }
2127
+ export interface UpdateOrgInviteInput {
2128
+ clientMutationId?: string;
2129
+ id: string;
2130
+ orgInvitePatch: OrgInvitePatch;
2131
+ }
2132
+ export interface DeleteOrgInviteInput {
2133
+ clientMutationId?: string;
2134
+ id: string;
2135
+ }
2136
+ export declare const connectionFieldsMap: Record<string, Record<string, string>>;
2137
+ export interface SubmitInviteCodeInput {
2138
+ clientMutationId?: string;
2139
+ token?: string;
2140
+ }
2141
+ export interface SubmitOrgInviteCodeInput {
2142
+ clientMutationId?: string;
2143
+ token?: string;
2144
+ }
2145
+ export interface AppPermissionConnection {
2146
+ nodes: AppPermission[];
2147
+ edges: AppPermissionEdge[];
2148
+ pageInfo: PageInfo;
2149
+ totalCount: number;
2150
+ }
2151
+ export type AppPermissionConnectionSelect = {
2152
+ nodes?: {
2153
+ select: AppPermissionSelect;
2154
+ };
2155
+ edges?: {
2156
+ select: AppPermissionEdgeSelect;
2157
+ };
2158
+ pageInfo?: {
2159
+ select: PageInfoSelect;
2160
+ };
2161
+ totalCount?: boolean;
2162
+ };
2163
+ export interface OrgPermissionConnection {
2164
+ nodes: OrgPermission[];
2165
+ edges: OrgPermissionEdge[];
2166
+ pageInfo: PageInfo;
2167
+ totalCount: number;
2168
+ }
2169
+ export type OrgPermissionConnectionSelect = {
2170
+ nodes?: {
2171
+ select: OrgPermissionSelect;
2172
+ };
2173
+ edges?: {
2174
+ select: OrgPermissionEdgeSelect;
2175
+ };
2176
+ pageInfo?: {
2177
+ select: PageInfoSelect;
2178
+ };
2179
+ totalCount?: boolean;
2180
+ };
2181
+ export interface AppLevelRequirementConnection {
2182
+ nodes: AppLevelRequirement[];
2183
+ edges: AppLevelRequirementEdge[];
2184
+ pageInfo: PageInfo;
2185
+ totalCount: number;
2186
+ }
2187
+ export type AppLevelRequirementConnectionSelect = {
2188
+ nodes?: {
2189
+ select: AppLevelRequirementSelect;
2190
+ };
2191
+ edges?: {
2192
+ select: AppLevelRequirementEdgeSelect;
2193
+ };
2194
+ pageInfo?: {
2195
+ select: PageInfoSelect;
2196
+ };
2197
+ totalCount?: boolean;
2198
+ };
2199
+ export interface SubmitInviteCodePayload {
2200
+ clientMutationId?: string | null;
2201
+ result?: boolean | null;
2202
+ }
2203
+ export type SubmitInviteCodePayloadSelect = {
2204
+ clientMutationId?: boolean;
2205
+ result?: boolean;
2206
+ };
2207
+ export interface SubmitOrgInviteCodePayload {
2208
+ clientMutationId?: string | null;
2209
+ result?: boolean | null;
2210
+ }
2211
+ export type SubmitOrgInviteCodePayloadSelect = {
2212
+ clientMutationId?: boolean;
2213
+ result?: boolean;
2214
+ };
2215
+ export interface CreateAppPermissionPayload {
2216
+ clientMutationId?: string | null;
2217
+ appPermission?: AppPermission | null;
2218
+ appPermissionEdge?: AppPermissionEdge | null;
2219
+ }
2220
+ export type CreateAppPermissionPayloadSelect = {
2221
+ clientMutationId?: boolean;
2222
+ appPermission?: {
2223
+ select: AppPermissionSelect;
2224
+ };
2225
+ appPermissionEdge?: {
2226
+ select: AppPermissionEdgeSelect;
2227
+ };
2228
+ };
2229
+ export interface UpdateAppPermissionPayload {
2230
+ clientMutationId?: string | null;
2231
+ appPermission?: AppPermission | null;
2232
+ appPermissionEdge?: AppPermissionEdge | null;
2233
+ }
2234
+ export type UpdateAppPermissionPayloadSelect = {
2235
+ clientMutationId?: boolean;
2236
+ appPermission?: {
2237
+ select: AppPermissionSelect;
2238
+ };
2239
+ appPermissionEdge?: {
2240
+ select: AppPermissionEdgeSelect;
2241
+ };
2242
+ };
2243
+ export interface DeleteAppPermissionPayload {
2244
+ clientMutationId?: string | null;
2245
+ appPermission?: AppPermission | null;
2246
+ appPermissionEdge?: AppPermissionEdge | null;
2247
+ }
2248
+ export type DeleteAppPermissionPayloadSelect = {
2249
+ clientMutationId?: boolean;
2250
+ appPermission?: {
2251
+ select: AppPermissionSelect;
2252
+ };
2253
+ appPermissionEdge?: {
2254
+ select: AppPermissionEdgeSelect;
2255
+ };
2256
+ };
2257
+ export interface CreateOrgPermissionPayload {
2258
+ clientMutationId?: string | null;
2259
+ orgPermission?: OrgPermission | null;
2260
+ orgPermissionEdge?: OrgPermissionEdge | null;
2261
+ }
2262
+ export type CreateOrgPermissionPayloadSelect = {
2263
+ clientMutationId?: boolean;
2264
+ orgPermission?: {
2265
+ select: OrgPermissionSelect;
2266
+ };
2267
+ orgPermissionEdge?: {
2268
+ select: OrgPermissionEdgeSelect;
2269
+ };
2270
+ };
2271
+ export interface UpdateOrgPermissionPayload {
2272
+ clientMutationId?: string | null;
2273
+ orgPermission?: OrgPermission | null;
2274
+ orgPermissionEdge?: OrgPermissionEdge | null;
2275
+ }
2276
+ export type UpdateOrgPermissionPayloadSelect = {
2277
+ clientMutationId?: boolean;
2278
+ orgPermission?: {
2279
+ select: OrgPermissionSelect;
2280
+ };
2281
+ orgPermissionEdge?: {
2282
+ select: OrgPermissionEdgeSelect;
2283
+ };
2284
+ };
2285
+ export interface DeleteOrgPermissionPayload {
2286
+ clientMutationId?: string | null;
2287
+ orgPermission?: OrgPermission | null;
2288
+ orgPermissionEdge?: OrgPermissionEdge | null;
2289
+ }
2290
+ export type DeleteOrgPermissionPayloadSelect = {
2291
+ clientMutationId?: boolean;
2292
+ orgPermission?: {
2293
+ select: OrgPermissionSelect;
2294
+ };
2295
+ orgPermissionEdge?: {
2296
+ select: OrgPermissionEdgeSelect;
2297
+ };
2298
+ };
2299
+ export interface CreateAppLevelRequirementPayload {
2300
+ clientMutationId?: string | null;
2301
+ appLevelRequirement?: AppLevelRequirement | null;
2302
+ appLevelRequirementEdge?: AppLevelRequirementEdge | null;
2303
+ }
2304
+ export type CreateAppLevelRequirementPayloadSelect = {
2305
+ clientMutationId?: boolean;
2306
+ appLevelRequirement?: {
2307
+ select: AppLevelRequirementSelect;
2308
+ };
2309
+ appLevelRequirementEdge?: {
2310
+ select: AppLevelRequirementEdgeSelect;
2311
+ };
2312
+ };
2313
+ export interface UpdateAppLevelRequirementPayload {
2314
+ clientMutationId?: string | null;
2315
+ appLevelRequirement?: AppLevelRequirement | null;
2316
+ appLevelRequirementEdge?: AppLevelRequirementEdge | null;
2317
+ }
2318
+ export type UpdateAppLevelRequirementPayloadSelect = {
2319
+ clientMutationId?: boolean;
2320
+ appLevelRequirement?: {
2321
+ select: AppLevelRequirementSelect;
2322
+ };
2323
+ appLevelRequirementEdge?: {
2324
+ select: AppLevelRequirementEdgeSelect;
2325
+ };
2326
+ };
2327
+ export interface DeleteAppLevelRequirementPayload {
2328
+ clientMutationId?: string | null;
2329
+ appLevelRequirement?: AppLevelRequirement | null;
2330
+ appLevelRequirementEdge?: AppLevelRequirementEdge | null;
2331
+ }
2332
+ export type DeleteAppLevelRequirementPayloadSelect = {
2333
+ clientMutationId?: boolean;
2334
+ appLevelRequirement?: {
2335
+ select: AppLevelRequirementSelect;
2336
+ };
2337
+ appLevelRequirementEdge?: {
2338
+ select: AppLevelRequirementEdgeSelect;
2339
+ };
2340
+ };
2341
+ export interface CreateOrgMemberPayload {
2342
+ clientMutationId?: string | null;
2343
+ orgMember?: OrgMember | null;
2344
+ orgMemberEdge?: OrgMemberEdge | null;
2345
+ }
2346
+ export type CreateOrgMemberPayloadSelect = {
2347
+ clientMutationId?: boolean;
2348
+ orgMember?: {
2349
+ select: OrgMemberSelect;
2350
+ };
2351
+ orgMemberEdge?: {
2352
+ select: OrgMemberEdgeSelect;
2353
+ };
2354
+ };
2355
+ export interface UpdateOrgMemberPayload {
2356
+ clientMutationId?: string | null;
2357
+ orgMember?: OrgMember | null;
2358
+ orgMemberEdge?: OrgMemberEdge | null;
2359
+ }
2360
+ export type UpdateOrgMemberPayloadSelect = {
2361
+ clientMutationId?: boolean;
2362
+ orgMember?: {
2363
+ select: OrgMemberSelect;
2364
+ };
2365
+ orgMemberEdge?: {
2366
+ select: OrgMemberEdgeSelect;
2367
+ };
2368
+ };
2369
+ export interface DeleteOrgMemberPayload {
2370
+ clientMutationId?: string | null;
2371
+ orgMember?: OrgMember | null;
2372
+ orgMemberEdge?: OrgMemberEdge | null;
2373
+ }
2374
+ export type DeleteOrgMemberPayloadSelect = {
2375
+ clientMutationId?: boolean;
2376
+ orgMember?: {
2377
+ select: OrgMemberSelect;
2378
+ };
2379
+ orgMemberEdge?: {
2380
+ select: OrgMemberEdgeSelect;
2381
+ };
2382
+ };
2383
+ export interface CreateAppPermissionDefaultPayload {
2384
+ clientMutationId?: string | null;
2385
+ appPermissionDefault?: AppPermissionDefault | null;
2386
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
2387
+ }
2388
+ export type CreateAppPermissionDefaultPayloadSelect = {
2389
+ clientMutationId?: boolean;
2390
+ appPermissionDefault?: {
2391
+ select: AppPermissionDefaultSelect;
2392
+ };
2393
+ appPermissionDefaultEdge?: {
2394
+ select: AppPermissionDefaultEdgeSelect;
2395
+ };
2396
+ };
2397
+ export interface UpdateAppPermissionDefaultPayload {
2398
+ clientMutationId?: string | null;
2399
+ appPermissionDefault?: AppPermissionDefault | null;
2400
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
2401
+ }
2402
+ export type UpdateAppPermissionDefaultPayloadSelect = {
2403
+ clientMutationId?: boolean;
2404
+ appPermissionDefault?: {
2405
+ select: AppPermissionDefaultSelect;
2406
+ };
2407
+ appPermissionDefaultEdge?: {
2408
+ select: AppPermissionDefaultEdgeSelect;
2409
+ };
2410
+ };
2411
+ export interface DeleteAppPermissionDefaultPayload {
2412
+ clientMutationId?: string | null;
2413
+ appPermissionDefault?: AppPermissionDefault | null;
2414
+ appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
2415
+ }
2416
+ export type DeleteAppPermissionDefaultPayloadSelect = {
2417
+ clientMutationId?: boolean;
2418
+ appPermissionDefault?: {
2419
+ select: AppPermissionDefaultSelect;
2420
+ };
2421
+ appPermissionDefaultEdge?: {
2422
+ select: AppPermissionDefaultEdgeSelect;
2423
+ };
2424
+ };
2425
+ export interface CreateOrgPermissionDefaultPayload {
2426
+ clientMutationId?: string | null;
2427
+ orgPermissionDefault?: OrgPermissionDefault | null;
2428
+ orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
2429
+ }
2430
+ export type CreateOrgPermissionDefaultPayloadSelect = {
2431
+ clientMutationId?: boolean;
2432
+ orgPermissionDefault?: {
2433
+ select: OrgPermissionDefaultSelect;
2434
+ };
2435
+ orgPermissionDefaultEdge?: {
2436
+ select: OrgPermissionDefaultEdgeSelect;
2437
+ };
2438
+ };
2439
+ export interface UpdateOrgPermissionDefaultPayload {
2440
+ clientMutationId?: string | null;
2441
+ orgPermissionDefault?: OrgPermissionDefault | null;
2442
+ orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
2443
+ }
2444
+ export type UpdateOrgPermissionDefaultPayloadSelect = {
2445
+ clientMutationId?: boolean;
2446
+ orgPermissionDefault?: {
2447
+ select: OrgPermissionDefaultSelect;
2448
+ };
2449
+ orgPermissionDefaultEdge?: {
2450
+ select: OrgPermissionDefaultEdgeSelect;
2451
+ };
2452
+ };
2453
+ export interface DeleteOrgPermissionDefaultPayload {
2454
+ clientMutationId?: string | null;
2455
+ orgPermissionDefault?: OrgPermissionDefault | null;
2456
+ orgPermissionDefaultEdge?: OrgPermissionDefaultEdge | null;
2457
+ }
2458
+ export type DeleteOrgPermissionDefaultPayloadSelect = {
2459
+ clientMutationId?: boolean;
2460
+ orgPermissionDefault?: {
2461
+ select: OrgPermissionDefaultSelect;
2462
+ };
2463
+ orgPermissionDefaultEdge?: {
2464
+ select: OrgPermissionDefaultEdgeSelect;
2465
+ };
2466
+ };
2467
+ export interface CreateAppAdminGrantPayload {
2468
+ clientMutationId?: string | null;
2469
+ appAdminGrant?: AppAdminGrant | null;
2470
+ appAdminGrantEdge?: AppAdminGrantEdge | null;
2471
+ }
2472
+ export type CreateAppAdminGrantPayloadSelect = {
2473
+ clientMutationId?: boolean;
2474
+ appAdminGrant?: {
2475
+ select: AppAdminGrantSelect;
2476
+ };
2477
+ appAdminGrantEdge?: {
2478
+ select: AppAdminGrantEdgeSelect;
2479
+ };
2480
+ };
2481
+ export interface UpdateAppAdminGrantPayload {
2482
+ clientMutationId?: string | null;
2483
+ appAdminGrant?: AppAdminGrant | null;
2484
+ appAdminGrantEdge?: AppAdminGrantEdge | null;
2485
+ }
2486
+ export type UpdateAppAdminGrantPayloadSelect = {
2487
+ clientMutationId?: boolean;
2488
+ appAdminGrant?: {
2489
+ select: AppAdminGrantSelect;
2490
+ };
2491
+ appAdminGrantEdge?: {
2492
+ select: AppAdminGrantEdgeSelect;
2493
+ };
2494
+ };
2495
+ export interface DeleteAppAdminGrantPayload {
2496
+ clientMutationId?: string | null;
2497
+ appAdminGrant?: AppAdminGrant | null;
2498
+ appAdminGrantEdge?: AppAdminGrantEdge | null;
2499
+ }
2500
+ export type DeleteAppAdminGrantPayloadSelect = {
2501
+ clientMutationId?: boolean;
2502
+ appAdminGrant?: {
2503
+ select: AppAdminGrantSelect;
2504
+ };
2505
+ appAdminGrantEdge?: {
2506
+ select: AppAdminGrantEdgeSelect;
2507
+ };
2508
+ };
2509
+ export interface CreateAppOwnerGrantPayload {
2510
+ clientMutationId?: string | null;
2511
+ appOwnerGrant?: AppOwnerGrant | null;
2512
+ appOwnerGrantEdge?: AppOwnerGrantEdge | null;
2513
+ }
2514
+ export type CreateAppOwnerGrantPayloadSelect = {
2515
+ clientMutationId?: boolean;
2516
+ appOwnerGrant?: {
2517
+ select: AppOwnerGrantSelect;
2518
+ };
2519
+ appOwnerGrantEdge?: {
2520
+ select: AppOwnerGrantEdgeSelect;
2521
+ };
2522
+ };
2523
+ export interface UpdateAppOwnerGrantPayload {
2524
+ clientMutationId?: string | null;
2525
+ appOwnerGrant?: AppOwnerGrant | null;
2526
+ appOwnerGrantEdge?: AppOwnerGrantEdge | null;
2527
+ }
2528
+ export type UpdateAppOwnerGrantPayloadSelect = {
2529
+ clientMutationId?: boolean;
2530
+ appOwnerGrant?: {
2531
+ select: AppOwnerGrantSelect;
2532
+ };
2533
+ appOwnerGrantEdge?: {
2534
+ select: AppOwnerGrantEdgeSelect;
2535
+ };
2536
+ };
2537
+ export interface DeleteAppOwnerGrantPayload {
2538
+ clientMutationId?: string | null;
2539
+ appOwnerGrant?: AppOwnerGrant | null;
2540
+ appOwnerGrantEdge?: AppOwnerGrantEdge | null;
2541
+ }
2542
+ export type DeleteAppOwnerGrantPayloadSelect = {
2543
+ clientMutationId?: boolean;
2544
+ appOwnerGrant?: {
2545
+ select: AppOwnerGrantSelect;
2546
+ };
2547
+ appOwnerGrantEdge?: {
2548
+ select: AppOwnerGrantEdgeSelect;
2549
+ };
2550
+ };
2551
+ export interface CreateAppLimitDefaultPayload {
2552
+ clientMutationId?: string | null;
2553
+ appLimitDefault?: AppLimitDefault | null;
2554
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2555
+ }
2556
+ export type CreateAppLimitDefaultPayloadSelect = {
2557
+ clientMutationId?: boolean;
2558
+ appLimitDefault?: {
2559
+ select: AppLimitDefaultSelect;
2560
+ };
2561
+ appLimitDefaultEdge?: {
2562
+ select: AppLimitDefaultEdgeSelect;
2563
+ };
2564
+ };
2565
+ export interface UpdateAppLimitDefaultPayload {
2566
+ clientMutationId?: string | null;
2567
+ appLimitDefault?: AppLimitDefault | null;
2568
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2569
+ }
2570
+ export type UpdateAppLimitDefaultPayloadSelect = {
2571
+ clientMutationId?: boolean;
2572
+ appLimitDefault?: {
2573
+ select: AppLimitDefaultSelect;
2574
+ };
2575
+ appLimitDefaultEdge?: {
2576
+ select: AppLimitDefaultEdgeSelect;
2577
+ };
2578
+ };
2579
+ export interface DeleteAppLimitDefaultPayload {
2580
+ clientMutationId?: string | null;
2581
+ appLimitDefault?: AppLimitDefault | null;
2582
+ appLimitDefaultEdge?: AppLimitDefaultEdge | null;
2583
+ }
2584
+ export type DeleteAppLimitDefaultPayloadSelect = {
2585
+ clientMutationId?: boolean;
2586
+ appLimitDefault?: {
2587
+ select: AppLimitDefaultSelect;
2588
+ };
2589
+ appLimitDefaultEdge?: {
2590
+ select: AppLimitDefaultEdgeSelect;
2591
+ };
2592
+ };
2593
+ export interface CreateOrgLimitDefaultPayload {
2594
+ clientMutationId?: string | null;
2595
+ orgLimitDefault?: OrgLimitDefault | null;
2596
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2597
+ }
2598
+ export type CreateOrgLimitDefaultPayloadSelect = {
2599
+ clientMutationId?: boolean;
2600
+ orgLimitDefault?: {
2601
+ select: OrgLimitDefaultSelect;
2602
+ };
2603
+ orgLimitDefaultEdge?: {
2604
+ select: OrgLimitDefaultEdgeSelect;
2605
+ };
2606
+ };
2607
+ export interface UpdateOrgLimitDefaultPayload {
2608
+ clientMutationId?: string | null;
2609
+ orgLimitDefault?: OrgLimitDefault | null;
2610
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2611
+ }
2612
+ export type UpdateOrgLimitDefaultPayloadSelect = {
2613
+ clientMutationId?: boolean;
2614
+ orgLimitDefault?: {
2615
+ select: OrgLimitDefaultSelect;
2616
+ };
2617
+ orgLimitDefaultEdge?: {
2618
+ select: OrgLimitDefaultEdgeSelect;
2619
+ };
2620
+ };
2621
+ export interface DeleteOrgLimitDefaultPayload {
2622
+ clientMutationId?: string | null;
2623
+ orgLimitDefault?: OrgLimitDefault | null;
2624
+ orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
2625
+ }
2626
+ export type DeleteOrgLimitDefaultPayloadSelect = {
2627
+ clientMutationId?: boolean;
2628
+ orgLimitDefault?: {
2629
+ select: OrgLimitDefaultSelect;
2630
+ };
2631
+ orgLimitDefaultEdge?: {
2632
+ select: OrgLimitDefaultEdgeSelect;
2633
+ };
2634
+ };
2635
+ export interface CreateOrgAdminGrantPayload {
2636
+ clientMutationId?: string | null;
2637
+ orgAdminGrant?: OrgAdminGrant | null;
2638
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
2639
+ }
2640
+ export type CreateOrgAdminGrantPayloadSelect = {
2641
+ clientMutationId?: boolean;
2642
+ orgAdminGrant?: {
2643
+ select: OrgAdminGrantSelect;
2644
+ };
2645
+ orgAdminGrantEdge?: {
2646
+ select: OrgAdminGrantEdgeSelect;
2647
+ };
2648
+ };
2649
+ export interface UpdateOrgAdminGrantPayload {
2650
+ clientMutationId?: string | null;
2651
+ orgAdminGrant?: OrgAdminGrant | null;
2652
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
2653
+ }
2654
+ export type UpdateOrgAdminGrantPayloadSelect = {
2655
+ clientMutationId?: boolean;
2656
+ orgAdminGrant?: {
2657
+ select: OrgAdminGrantSelect;
2658
+ };
2659
+ orgAdminGrantEdge?: {
2660
+ select: OrgAdminGrantEdgeSelect;
2661
+ };
2662
+ };
2663
+ export interface DeleteOrgAdminGrantPayload {
2664
+ clientMutationId?: string | null;
2665
+ orgAdminGrant?: OrgAdminGrant | null;
2666
+ orgAdminGrantEdge?: OrgAdminGrantEdge | null;
2667
+ }
2668
+ export type DeleteOrgAdminGrantPayloadSelect = {
2669
+ clientMutationId?: boolean;
2670
+ orgAdminGrant?: {
2671
+ select: OrgAdminGrantSelect;
2672
+ };
2673
+ orgAdminGrantEdge?: {
2674
+ select: OrgAdminGrantEdgeSelect;
2675
+ };
2676
+ };
2677
+ export interface CreateOrgOwnerGrantPayload {
2678
+ clientMutationId?: string | null;
2679
+ orgOwnerGrant?: OrgOwnerGrant | null;
2680
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
2681
+ }
2682
+ export type CreateOrgOwnerGrantPayloadSelect = {
2683
+ clientMutationId?: boolean;
2684
+ orgOwnerGrant?: {
2685
+ select: OrgOwnerGrantSelect;
2686
+ };
2687
+ orgOwnerGrantEdge?: {
2688
+ select: OrgOwnerGrantEdgeSelect;
2689
+ };
2690
+ };
2691
+ export interface UpdateOrgOwnerGrantPayload {
2692
+ clientMutationId?: string | null;
2693
+ orgOwnerGrant?: OrgOwnerGrant | null;
2694
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
2695
+ }
2696
+ export type UpdateOrgOwnerGrantPayloadSelect = {
2697
+ clientMutationId?: boolean;
2698
+ orgOwnerGrant?: {
2699
+ select: OrgOwnerGrantSelect;
2700
+ };
2701
+ orgOwnerGrantEdge?: {
2702
+ select: OrgOwnerGrantEdgeSelect;
2703
+ };
2704
+ };
2705
+ export interface DeleteOrgOwnerGrantPayload {
2706
+ clientMutationId?: string | null;
2707
+ orgOwnerGrant?: OrgOwnerGrant | null;
2708
+ orgOwnerGrantEdge?: OrgOwnerGrantEdge | null;
2709
+ }
2710
+ export type DeleteOrgOwnerGrantPayloadSelect = {
2711
+ clientMutationId?: boolean;
2712
+ orgOwnerGrant?: {
2713
+ select: OrgOwnerGrantSelect;
2714
+ };
2715
+ orgOwnerGrantEdge?: {
2716
+ select: OrgOwnerGrantEdgeSelect;
2717
+ };
2718
+ };
2719
+ export interface CreateMembershipTypePayload {
2720
+ clientMutationId?: string | null;
2721
+ membershipType?: MembershipType | null;
2722
+ membershipTypeEdge?: MembershipTypeEdge | null;
2723
+ }
2724
+ export type CreateMembershipTypePayloadSelect = {
2725
+ clientMutationId?: boolean;
2726
+ membershipType?: {
2727
+ select: MembershipTypeSelect;
2728
+ };
2729
+ membershipTypeEdge?: {
2730
+ select: MembershipTypeEdgeSelect;
2731
+ };
2732
+ };
2733
+ export interface UpdateMembershipTypePayload {
2734
+ clientMutationId?: string | null;
2735
+ membershipType?: MembershipType | null;
2736
+ membershipTypeEdge?: MembershipTypeEdge | null;
2737
+ }
2738
+ export type UpdateMembershipTypePayloadSelect = {
2739
+ clientMutationId?: boolean;
2740
+ membershipType?: {
2741
+ select: MembershipTypeSelect;
2742
+ };
2743
+ membershipTypeEdge?: {
2744
+ select: MembershipTypeEdgeSelect;
2745
+ };
2746
+ };
2747
+ export interface DeleteMembershipTypePayload {
2748
+ clientMutationId?: string | null;
2749
+ membershipType?: MembershipType | null;
2750
+ membershipTypeEdge?: MembershipTypeEdge | null;
2751
+ }
2752
+ export type DeleteMembershipTypePayloadSelect = {
2753
+ clientMutationId?: boolean;
2754
+ membershipType?: {
2755
+ select: MembershipTypeSelect;
2756
+ };
2757
+ membershipTypeEdge?: {
2758
+ select: MembershipTypeEdgeSelect;
2759
+ };
2760
+ };
2761
+ export interface CreateAppLimitPayload {
2762
+ clientMutationId?: string | null;
2763
+ appLimit?: AppLimit | null;
2764
+ appLimitEdge?: AppLimitEdge | null;
2765
+ }
2766
+ export type CreateAppLimitPayloadSelect = {
2767
+ clientMutationId?: boolean;
2768
+ appLimit?: {
2769
+ select: AppLimitSelect;
2770
+ };
2771
+ appLimitEdge?: {
2772
+ select: AppLimitEdgeSelect;
2773
+ };
2774
+ };
2775
+ export interface UpdateAppLimitPayload {
2776
+ clientMutationId?: string | null;
2777
+ appLimit?: AppLimit | null;
2778
+ appLimitEdge?: AppLimitEdge | null;
2779
+ }
2780
+ export type UpdateAppLimitPayloadSelect = {
2781
+ clientMutationId?: boolean;
2782
+ appLimit?: {
2783
+ select: AppLimitSelect;
2784
+ };
2785
+ appLimitEdge?: {
2786
+ select: AppLimitEdgeSelect;
2787
+ };
2788
+ };
2789
+ export interface DeleteAppLimitPayload {
2790
+ clientMutationId?: string | null;
2791
+ appLimit?: AppLimit | null;
2792
+ appLimitEdge?: AppLimitEdge | null;
2793
+ }
2794
+ export type DeleteAppLimitPayloadSelect = {
2795
+ clientMutationId?: boolean;
2796
+ appLimit?: {
2797
+ select: AppLimitSelect;
2798
+ };
2799
+ appLimitEdge?: {
2800
+ select: AppLimitEdgeSelect;
2801
+ };
2802
+ };
2803
+ export interface CreateAppAchievementPayload {
2804
+ clientMutationId?: string | null;
2805
+ appAchievement?: AppAchievement | null;
2806
+ appAchievementEdge?: AppAchievementEdge | null;
2807
+ }
2808
+ export type CreateAppAchievementPayloadSelect = {
2809
+ clientMutationId?: boolean;
2810
+ appAchievement?: {
2811
+ select: AppAchievementSelect;
2812
+ };
2813
+ appAchievementEdge?: {
2814
+ select: AppAchievementEdgeSelect;
2815
+ };
2816
+ };
2817
+ export interface UpdateAppAchievementPayload {
2818
+ clientMutationId?: string | null;
2819
+ appAchievement?: AppAchievement | null;
2820
+ appAchievementEdge?: AppAchievementEdge | null;
2821
+ }
2822
+ export type UpdateAppAchievementPayloadSelect = {
2823
+ clientMutationId?: boolean;
2824
+ appAchievement?: {
2825
+ select: AppAchievementSelect;
2826
+ };
2827
+ appAchievementEdge?: {
2828
+ select: AppAchievementEdgeSelect;
2829
+ };
2830
+ };
2831
+ export interface DeleteAppAchievementPayload {
2832
+ clientMutationId?: string | null;
2833
+ appAchievement?: AppAchievement | null;
2834
+ appAchievementEdge?: AppAchievementEdge | null;
2835
+ }
2836
+ export type DeleteAppAchievementPayloadSelect = {
2837
+ clientMutationId?: boolean;
2838
+ appAchievement?: {
2839
+ select: AppAchievementSelect;
2840
+ };
2841
+ appAchievementEdge?: {
2842
+ select: AppAchievementEdgeSelect;
2843
+ };
2844
+ };
2845
+ export interface CreateAppStepPayload {
2846
+ clientMutationId?: string | null;
2847
+ appStep?: AppStep | null;
2848
+ appStepEdge?: AppStepEdge | null;
2849
+ }
2850
+ export type CreateAppStepPayloadSelect = {
2851
+ clientMutationId?: boolean;
2852
+ appStep?: {
2853
+ select: AppStepSelect;
2854
+ };
2855
+ appStepEdge?: {
2856
+ select: AppStepEdgeSelect;
2857
+ };
2858
+ };
2859
+ export interface UpdateAppStepPayload {
2860
+ clientMutationId?: string | null;
2861
+ appStep?: AppStep | null;
2862
+ appStepEdge?: AppStepEdge | null;
2863
+ }
2864
+ export type UpdateAppStepPayloadSelect = {
2865
+ clientMutationId?: boolean;
2866
+ appStep?: {
2867
+ select: AppStepSelect;
2868
+ };
2869
+ appStepEdge?: {
2870
+ select: AppStepEdgeSelect;
2871
+ };
2872
+ };
2873
+ export interface DeleteAppStepPayload {
2874
+ clientMutationId?: string | null;
2875
+ appStep?: AppStep | null;
2876
+ appStepEdge?: AppStepEdge | null;
2877
+ }
2878
+ export type DeleteAppStepPayloadSelect = {
2879
+ clientMutationId?: boolean;
2880
+ appStep?: {
2881
+ select: AppStepSelect;
2882
+ };
2883
+ appStepEdge?: {
2884
+ select: AppStepEdgeSelect;
2885
+ };
2886
+ };
2887
+ export interface CreateClaimedInvitePayload {
2888
+ clientMutationId?: string | null;
2889
+ claimedInvite?: ClaimedInvite | null;
2890
+ claimedInviteEdge?: ClaimedInviteEdge | null;
2891
+ }
2892
+ export type CreateClaimedInvitePayloadSelect = {
2893
+ clientMutationId?: boolean;
2894
+ claimedInvite?: {
2895
+ select: ClaimedInviteSelect;
2896
+ };
2897
+ claimedInviteEdge?: {
2898
+ select: ClaimedInviteEdgeSelect;
2899
+ };
2900
+ };
2901
+ export interface UpdateClaimedInvitePayload {
2902
+ clientMutationId?: string | null;
2903
+ claimedInvite?: ClaimedInvite | null;
2904
+ claimedInviteEdge?: ClaimedInviteEdge | null;
2905
+ }
2906
+ export type UpdateClaimedInvitePayloadSelect = {
2907
+ clientMutationId?: boolean;
2908
+ claimedInvite?: {
2909
+ select: ClaimedInviteSelect;
2910
+ };
2911
+ claimedInviteEdge?: {
2912
+ select: ClaimedInviteEdgeSelect;
2913
+ };
2914
+ };
2915
+ export interface DeleteClaimedInvitePayload {
2916
+ clientMutationId?: string | null;
2917
+ claimedInvite?: ClaimedInvite | null;
2918
+ claimedInviteEdge?: ClaimedInviteEdge | null;
2919
+ }
2920
+ export type DeleteClaimedInvitePayloadSelect = {
2921
+ clientMutationId?: boolean;
2922
+ claimedInvite?: {
2923
+ select: ClaimedInviteSelect;
2924
+ };
2925
+ claimedInviteEdge?: {
2926
+ select: ClaimedInviteEdgeSelect;
2927
+ };
2928
+ };
2929
+ export interface CreateAppGrantPayload {
2930
+ clientMutationId?: string | null;
2931
+ appGrant?: AppGrant | null;
2932
+ appGrantEdge?: AppGrantEdge | null;
2933
+ }
2934
+ export type CreateAppGrantPayloadSelect = {
2935
+ clientMutationId?: boolean;
2936
+ appGrant?: {
2937
+ select: AppGrantSelect;
2938
+ };
2939
+ appGrantEdge?: {
2940
+ select: AppGrantEdgeSelect;
2941
+ };
2942
+ };
2943
+ export interface UpdateAppGrantPayload {
2944
+ clientMutationId?: string | null;
2945
+ appGrant?: AppGrant | null;
2946
+ appGrantEdge?: AppGrantEdge | null;
2947
+ }
2948
+ export type UpdateAppGrantPayloadSelect = {
2949
+ clientMutationId?: boolean;
2950
+ appGrant?: {
2951
+ select: AppGrantSelect;
2952
+ };
2953
+ appGrantEdge?: {
2954
+ select: AppGrantEdgeSelect;
2955
+ };
2956
+ };
2957
+ export interface DeleteAppGrantPayload {
2958
+ clientMutationId?: string | null;
2959
+ appGrant?: AppGrant | null;
2960
+ appGrantEdge?: AppGrantEdge | null;
2961
+ }
2962
+ export type DeleteAppGrantPayloadSelect = {
2963
+ clientMutationId?: boolean;
2964
+ appGrant?: {
2965
+ select: AppGrantSelect;
2966
+ };
2967
+ appGrantEdge?: {
2968
+ select: AppGrantEdgeSelect;
2969
+ };
2970
+ };
2971
+ export interface CreateAppMembershipDefaultPayload {
2972
+ clientMutationId?: string | null;
2973
+ appMembershipDefault?: AppMembershipDefault | null;
2974
+ appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
2975
+ }
2976
+ export type CreateAppMembershipDefaultPayloadSelect = {
2977
+ clientMutationId?: boolean;
2978
+ appMembershipDefault?: {
2979
+ select: AppMembershipDefaultSelect;
2980
+ };
2981
+ appMembershipDefaultEdge?: {
2982
+ select: AppMembershipDefaultEdgeSelect;
2983
+ };
2984
+ };
2985
+ export interface UpdateAppMembershipDefaultPayload {
2986
+ clientMutationId?: string | null;
2987
+ appMembershipDefault?: AppMembershipDefault | null;
2988
+ appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
2989
+ }
2990
+ export type UpdateAppMembershipDefaultPayloadSelect = {
2991
+ clientMutationId?: boolean;
2992
+ appMembershipDefault?: {
2993
+ select: AppMembershipDefaultSelect;
2994
+ };
2995
+ appMembershipDefaultEdge?: {
2996
+ select: AppMembershipDefaultEdgeSelect;
2997
+ };
2998
+ };
2999
+ export interface DeleteAppMembershipDefaultPayload {
3000
+ clientMutationId?: string | null;
3001
+ appMembershipDefault?: AppMembershipDefault | null;
3002
+ appMembershipDefaultEdge?: AppMembershipDefaultEdge | null;
3003
+ }
3004
+ export type DeleteAppMembershipDefaultPayloadSelect = {
3005
+ clientMutationId?: boolean;
3006
+ appMembershipDefault?: {
3007
+ select: AppMembershipDefaultSelect;
3008
+ };
3009
+ appMembershipDefaultEdge?: {
3010
+ select: AppMembershipDefaultEdgeSelect;
3011
+ };
3012
+ };
3013
+ export interface CreateOrgLimitPayload {
3014
+ clientMutationId?: string | null;
3015
+ orgLimit?: OrgLimit | null;
3016
+ orgLimitEdge?: OrgLimitEdge | null;
3017
+ }
3018
+ export type CreateOrgLimitPayloadSelect = {
3019
+ clientMutationId?: boolean;
3020
+ orgLimit?: {
3021
+ select: OrgLimitSelect;
3022
+ };
3023
+ orgLimitEdge?: {
3024
+ select: OrgLimitEdgeSelect;
3025
+ };
3026
+ };
3027
+ export interface UpdateOrgLimitPayload {
3028
+ clientMutationId?: string | null;
3029
+ orgLimit?: OrgLimit | null;
3030
+ orgLimitEdge?: OrgLimitEdge | null;
3031
+ }
3032
+ export type UpdateOrgLimitPayloadSelect = {
3033
+ clientMutationId?: boolean;
3034
+ orgLimit?: {
3035
+ select: OrgLimitSelect;
3036
+ };
3037
+ orgLimitEdge?: {
3038
+ select: OrgLimitEdgeSelect;
3039
+ };
3040
+ };
3041
+ export interface DeleteOrgLimitPayload {
3042
+ clientMutationId?: string | null;
3043
+ orgLimit?: OrgLimit | null;
3044
+ orgLimitEdge?: OrgLimitEdge | null;
3045
+ }
3046
+ export type DeleteOrgLimitPayloadSelect = {
3047
+ clientMutationId?: boolean;
3048
+ orgLimit?: {
3049
+ select: OrgLimitSelect;
3050
+ };
3051
+ orgLimitEdge?: {
3052
+ select: OrgLimitEdgeSelect;
3053
+ };
3054
+ };
3055
+ export interface CreateOrgClaimedInvitePayload {
3056
+ clientMutationId?: string | null;
3057
+ orgClaimedInvite?: OrgClaimedInvite | null;
3058
+ orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
3059
+ }
3060
+ export type CreateOrgClaimedInvitePayloadSelect = {
3061
+ clientMutationId?: boolean;
3062
+ orgClaimedInvite?: {
3063
+ select: OrgClaimedInviteSelect;
3064
+ };
3065
+ orgClaimedInviteEdge?: {
3066
+ select: OrgClaimedInviteEdgeSelect;
3067
+ };
3068
+ };
3069
+ export interface UpdateOrgClaimedInvitePayload {
3070
+ clientMutationId?: string | null;
3071
+ orgClaimedInvite?: OrgClaimedInvite | null;
3072
+ orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
3073
+ }
3074
+ export type UpdateOrgClaimedInvitePayloadSelect = {
3075
+ clientMutationId?: boolean;
3076
+ orgClaimedInvite?: {
3077
+ select: OrgClaimedInviteSelect;
3078
+ };
3079
+ orgClaimedInviteEdge?: {
3080
+ select: OrgClaimedInviteEdgeSelect;
3081
+ };
3082
+ };
3083
+ export interface DeleteOrgClaimedInvitePayload {
3084
+ clientMutationId?: string | null;
3085
+ orgClaimedInvite?: OrgClaimedInvite | null;
3086
+ orgClaimedInviteEdge?: OrgClaimedInviteEdge | null;
3087
+ }
3088
+ export type DeleteOrgClaimedInvitePayloadSelect = {
3089
+ clientMutationId?: boolean;
3090
+ orgClaimedInvite?: {
3091
+ select: OrgClaimedInviteSelect;
3092
+ };
3093
+ orgClaimedInviteEdge?: {
3094
+ select: OrgClaimedInviteEdgeSelect;
3095
+ };
3096
+ };
3097
+ export interface CreateOrgGrantPayload {
3098
+ clientMutationId?: string | null;
3099
+ orgGrant?: OrgGrant | null;
3100
+ orgGrantEdge?: OrgGrantEdge | null;
3101
+ }
3102
+ export type CreateOrgGrantPayloadSelect = {
3103
+ clientMutationId?: boolean;
3104
+ orgGrant?: {
3105
+ select: OrgGrantSelect;
3106
+ };
3107
+ orgGrantEdge?: {
3108
+ select: OrgGrantEdgeSelect;
3109
+ };
3110
+ };
3111
+ export interface UpdateOrgGrantPayload {
3112
+ clientMutationId?: string | null;
3113
+ orgGrant?: OrgGrant | null;
3114
+ orgGrantEdge?: OrgGrantEdge | null;
3115
+ }
3116
+ export type UpdateOrgGrantPayloadSelect = {
3117
+ clientMutationId?: boolean;
3118
+ orgGrant?: {
3119
+ select: OrgGrantSelect;
3120
+ };
3121
+ orgGrantEdge?: {
3122
+ select: OrgGrantEdgeSelect;
3123
+ };
3124
+ };
3125
+ export interface DeleteOrgGrantPayload {
3126
+ clientMutationId?: string | null;
3127
+ orgGrant?: OrgGrant | null;
3128
+ orgGrantEdge?: OrgGrantEdge | null;
3129
+ }
3130
+ export type DeleteOrgGrantPayloadSelect = {
3131
+ clientMutationId?: boolean;
3132
+ orgGrant?: {
3133
+ select: OrgGrantSelect;
3134
+ };
3135
+ orgGrantEdge?: {
3136
+ select: OrgGrantEdgeSelect;
3137
+ };
3138
+ };
3139
+ export interface CreateOrgMembershipDefaultPayload {
3140
+ clientMutationId?: string | null;
3141
+ orgMembershipDefault?: OrgMembershipDefault | null;
3142
+ orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3143
+ }
3144
+ export type CreateOrgMembershipDefaultPayloadSelect = {
3145
+ clientMutationId?: boolean;
3146
+ orgMembershipDefault?: {
3147
+ select: OrgMembershipDefaultSelect;
3148
+ };
3149
+ orgMembershipDefaultEdge?: {
3150
+ select: OrgMembershipDefaultEdgeSelect;
3151
+ };
3152
+ };
3153
+ export interface UpdateOrgMembershipDefaultPayload {
3154
+ clientMutationId?: string | null;
3155
+ orgMembershipDefault?: OrgMembershipDefault | null;
3156
+ orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3157
+ }
3158
+ export type UpdateOrgMembershipDefaultPayloadSelect = {
3159
+ clientMutationId?: boolean;
3160
+ orgMembershipDefault?: {
3161
+ select: OrgMembershipDefaultSelect;
3162
+ };
3163
+ orgMembershipDefaultEdge?: {
3164
+ select: OrgMembershipDefaultEdgeSelect;
3165
+ };
3166
+ };
3167
+ export interface DeleteOrgMembershipDefaultPayload {
3168
+ clientMutationId?: string | null;
3169
+ orgMembershipDefault?: OrgMembershipDefault | null;
3170
+ orgMembershipDefaultEdge?: OrgMembershipDefaultEdge | null;
3171
+ }
3172
+ export type DeleteOrgMembershipDefaultPayloadSelect = {
3173
+ clientMutationId?: boolean;
3174
+ orgMembershipDefault?: {
3175
+ select: OrgMembershipDefaultSelect;
3176
+ };
3177
+ orgMembershipDefaultEdge?: {
3178
+ select: OrgMembershipDefaultEdgeSelect;
3179
+ };
3180
+ };
3181
+ export interface CreateAppLevelPayload {
3182
+ clientMutationId?: string | null;
3183
+ appLevel?: AppLevel | null;
3184
+ appLevelEdge?: AppLevelEdge | null;
3185
+ }
3186
+ export type CreateAppLevelPayloadSelect = {
3187
+ clientMutationId?: boolean;
3188
+ appLevel?: {
3189
+ select: AppLevelSelect;
3190
+ };
3191
+ appLevelEdge?: {
3192
+ select: AppLevelEdgeSelect;
3193
+ };
3194
+ };
3195
+ export interface UpdateAppLevelPayload {
3196
+ clientMutationId?: string | null;
3197
+ appLevel?: AppLevel | null;
3198
+ appLevelEdge?: AppLevelEdge | null;
3199
+ }
3200
+ export type UpdateAppLevelPayloadSelect = {
3201
+ clientMutationId?: boolean;
3202
+ appLevel?: {
3203
+ select: AppLevelSelect;
3204
+ };
3205
+ appLevelEdge?: {
3206
+ select: AppLevelEdgeSelect;
3207
+ };
3208
+ };
3209
+ export interface DeleteAppLevelPayload {
3210
+ clientMutationId?: string | null;
3211
+ appLevel?: AppLevel | null;
3212
+ appLevelEdge?: AppLevelEdge | null;
3213
+ }
3214
+ export type DeleteAppLevelPayloadSelect = {
3215
+ clientMutationId?: boolean;
3216
+ appLevel?: {
3217
+ select: AppLevelSelect;
3218
+ };
3219
+ appLevelEdge?: {
3220
+ select: AppLevelEdgeSelect;
3221
+ };
3222
+ };
3223
+ export interface CreateInvitePayload {
3224
+ clientMutationId?: string | null;
3225
+ invite?: Invite | null;
3226
+ inviteEdge?: InviteEdge | null;
3227
+ }
3228
+ export type CreateInvitePayloadSelect = {
3229
+ clientMutationId?: boolean;
3230
+ invite?: {
3231
+ select: InviteSelect;
3232
+ };
3233
+ inviteEdge?: {
3234
+ select: InviteEdgeSelect;
3235
+ };
3236
+ };
3237
+ export interface UpdateInvitePayload {
3238
+ clientMutationId?: string | null;
3239
+ invite?: Invite | null;
3240
+ inviteEdge?: InviteEdge | null;
3241
+ }
3242
+ export type UpdateInvitePayloadSelect = {
3243
+ clientMutationId?: boolean;
3244
+ invite?: {
3245
+ select: InviteSelect;
3246
+ };
3247
+ inviteEdge?: {
3248
+ select: InviteEdgeSelect;
3249
+ };
3250
+ };
3251
+ export interface DeleteInvitePayload {
3252
+ clientMutationId?: string | null;
3253
+ invite?: Invite | null;
3254
+ inviteEdge?: InviteEdge | null;
3255
+ }
3256
+ export type DeleteInvitePayloadSelect = {
3257
+ clientMutationId?: boolean;
3258
+ invite?: {
3259
+ select: InviteSelect;
3260
+ };
3261
+ inviteEdge?: {
3262
+ select: InviteEdgeSelect;
3263
+ };
3264
+ };
3265
+ export interface CreateAppMembershipPayload {
3266
+ clientMutationId?: string | null;
3267
+ appMembership?: AppMembership | null;
3268
+ appMembershipEdge?: AppMembershipEdge | null;
3269
+ }
3270
+ export type CreateAppMembershipPayloadSelect = {
3271
+ clientMutationId?: boolean;
3272
+ appMembership?: {
3273
+ select: AppMembershipSelect;
3274
+ };
3275
+ appMembershipEdge?: {
3276
+ select: AppMembershipEdgeSelect;
3277
+ };
3278
+ };
3279
+ export interface UpdateAppMembershipPayload {
3280
+ clientMutationId?: string | null;
3281
+ appMembership?: AppMembership | null;
3282
+ appMembershipEdge?: AppMembershipEdge | null;
3283
+ }
3284
+ export type UpdateAppMembershipPayloadSelect = {
3285
+ clientMutationId?: boolean;
3286
+ appMembership?: {
3287
+ select: AppMembershipSelect;
3288
+ };
3289
+ appMembershipEdge?: {
3290
+ select: AppMembershipEdgeSelect;
3291
+ };
3292
+ };
3293
+ export interface DeleteAppMembershipPayload {
3294
+ clientMutationId?: string | null;
3295
+ appMembership?: AppMembership | null;
3296
+ appMembershipEdge?: AppMembershipEdge | null;
3297
+ }
3298
+ export type DeleteAppMembershipPayloadSelect = {
3299
+ clientMutationId?: boolean;
3300
+ appMembership?: {
3301
+ select: AppMembershipSelect;
3302
+ };
3303
+ appMembershipEdge?: {
3304
+ select: AppMembershipEdgeSelect;
3305
+ };
3306
+ };
3307
+ export interface CreateOrgMembershipPayload {
3308
+ clientMutationId?: string | null;
3309
+ orgMembership?: OrgMembership | null;
3310
+ orgMembershipEdge?: OrgMembershipEdge | null;
3311
+ }
3312
+ export type CreateOrgMembershipPayloadSelect = {
3313
+ clientMutationId?: boolean;
3314
+ orgMembership?: {
3315
+ select: OrgMembershipSelect;
3316
+ };
3317
+ orgMembershipEdge?: {
3318
+ select: OrgMembershipEdgeSelect;
3319
+ };
3320
+ };
3321
+ export interface UpdateOrgMembershipPayload {
3322
+ clientMutationId?: string | null;
3323
+ orgMembership?: OrgMembership | null;
3324
+ orgMembershipEdge?: OrgMembershipEdge | null;
3325
+ }
3326
+ export type UpdateOrgMembershipPayloadSelect = {
3327
+ clientMutationId?: boolean;
3328
+ orgMembership?: {
3329
+ select: OrgMembershipSelect;
3330
+ };
3331
+ orgMembershipEdge?: {
3332
+ select: OrgMembershipEdgeSelect;
3333
+ };
3334
+ };
3335
+ export interface DeleteOrgMembershipPayload {
3336
+ clientMutationId?: string | null;
3337
+ orgMembership?: OrgMembership | null;
3338
+ orgMembershipEdge?: OrgMembershipEdge | null;
3339
+ }
3340
+ export type DeleteOrgMembershipPayloadSelect = {
3341
+ clientMutationId?: boolean;
3342
+ orgMembership?: {
3343
+ select: OrgMembershipSelect;
3344
+ };
3345
+ orgMembershipEdge?: {
3346
+ select: OrgMembershipEdgeSelect;
3347
+ };
3348
+ };
3349
+ export interface CreateOrgInvitePayload {
3350
+ clientMutationId?: string | null;
3351
+ orgInvite?: OrgInvite | null;
3352
+ orgInviteEdge?: OrgInviteEdge | null;
3353
+ }
3354
+ export type CreateOrgInvitePayloadSelect = {
3355
+ clientMutationId?: boolean;
3356
+ orgInvite?: {
3357
+ select: OrgInviteSelect;
3358
+ };
3359
+ orgInviteEdge?: {
3360
+ select: OrgInviteEdgeSelect;
3361
+ };
3362
+ };
3363
+ export interface UpdateOrgInvitePayload {
3364
+ clientMutationId?: string | null;
3365
+ orgInvite?: OrgInvite | null;
3366
+ orgInviteEdge?: OrgInviteEdge | null;
3367
+ }
3368
+ export type UpdateOrgInvitePayloadSelect = {
3369
+ clientMutationId?: boolean;
3370
+ orgInvite?: {
3371
+ select: OrgInviteSelect;
3372
+ };
3373
+ orgInviteEdge?: {
3374
+ select: OrgInviteEdgeSelect;
3375
+ };
3376
+ };
3377
+ export interface DeleteOrgInvitePayload {
3378
+ clientMutationId?: string | null;
3379
+ orgInvite?: OrgInvite | null;
3380
+ orgInviteEdge?: OrgInviteEdge | null;
3381
+ }
3382
+ export type DeleteOrgInvitePayloadSelect = {
3383
+ clientMutationId?: boolean;
3384
+ orgInvite?: {
3385
+ select: OrgInviteSelect;
3386
+ };
3387
+ orgInviteEdge?: {
3388
+ select: OrgInviteEdgeSelect;
3389
+ };
3390
+ };
3391
+ export interface AppPermissionEdge {
3392
+ cursor?: string | null;
3393
+ node?: AppPermission | null;
3394
+ }
3395
+ export type AppPermissionEdgeSelect = {
3396
+ cursor?: boolean;
3397
+ node?: {
3398
+ select: AppPermissionSelect;
3399
+ };
3400
+ };
3401
+ export interface PageInfo {
3402
+ hasNextPage: boolean;
3403
+ hasPreviousPage: boolean;
3404
+ startCursor?: string | null;
3405
+ endCursor?: string | null;
3406
+ }
3407
+ export type PageInfoSelect = {
3408
+ hasNextPage?: boolean;
3409
+ hasPreviousPage?: boolean;
3410
+ startCursor?: boolean;
3411
+ endCursor?: boolean;
3412
+ };
3413
+ export interface OrgPermissionEdge {
3414
+ cursor?: string | null;
3415
+ node?: OrgPermission | null;
3416
+ }
3417
+ export type OrgPermissionEdgeSelect = {
3418
+ cursor?: boolean;
3419
+ node?: {
3420
+ select: OrgPermissionSelect;
3421
+ };
3422
+ };
3423
+ export interface AppLevelRequirementEdge {
3424
+ cursor?: string | null;
3425
+ node?: AppLevelRequirement | null;
3426
+ }
3427
+ export type AppLevelRequirementEdgeSelect = {
3428
+ cursor?: boolean;
3429
+ node?: {
3430
+ select: AppLevelRequirementSelect;
3431
+ };
3432
+ };
3433
+ export interface OrgMemberEdge {
3434
+ cursor?: string | null;
3435
+ node?: OrgMember | null;
3436
+ }
3437
+ export type OrgMemberEdgeSelect = {
3438
+ cursor?: boolean;
3439
+ node?: {
3440
+ select: OrgMemberSelect;
3441
+ };
3442
+ };
3443
+ export interface AppPermissionDefaultEdge {
3444
+ cursor?: string | null;
3445
+ node?: AppPermissionDefault | null;
3446
+ }
3447
+ export type AppPermissionDefaultEdgeSelect = {
3448
+ cursor?: boolean;
3449
+ node?: {
3450
+ select: AppPermissionDefaultSelect;
3451
+ };
3452
+ };
3453
+ export interface OrgPermissionDefaultEdge {
3454
+ cursor?: string | null;
3455
+ node?: OrgPermissionDefault | null;
3456
+ }
3457
+ export type OrgPermissionDefaultEdgeSelect = {
3458
+ cursor?: boolean;
3459
+ node?: {
3460
+ select: OrgPermissionDefaultSelect;
3461
+ };
3462
+ };
3463
+ export interface AppAdminGrantEdge {
3464
+ cursor?: string | null;
3465
+ node?: AppAdminGrant | null;
3466
+ }
3467
+ export type AppAdminGrantEdgeSelect = {
3468
+ cursor?: boolean;
3469
+ node?: {
3470
+ select: AppAdminGrantSelect;
3471
+ };
3472
+ };
3473
+ export interface AppOwnerGrantEdge {
3474
+ cursor?: string | null;
3475
+ node?: AppOwnerGrant | null;
3476
+ }
3477
+ export type AppOwnerGrantEdgeSelect = {
3478
+ cursor?: boolean;
3479
+ node?: {
3480
+ select: AppOwnerGrantSelect;
3481
+ };
3482
+ };
3483
+ export interface AppLimitDefaultEdge {
3484
+ cursor?: string | null;
3485
+ node?: AppLimitDefault | null;
3486
+ }
3487
+ export type AppLimitDefaultEdgeSelect = {
3488
+ cursor?: boolean;
3489
+ node?: {
3490
+ select: AppLimitDefaultSelect;
3491
+ };
3492
+ };
3493
+ export interface OrgLimitDefaultEdge {
3494
+ cursor?: string | null;
3495
+ node?: OrgLimitDefault | null;
3496
+ }
3497
+ export type OrgLimitDefaultEdgeSelect = {
3498
+ cursor?: boolean;
3499
+ node?: {
3500
+ select: OrgLimitDefaultSelect;
3501
+ };
3502
+ };
3503
+ export interface OrgAdminGrantEdge {
3504
+ cursor?: string | null;
3505
+ node?: OrgAdminGrant | null;
3506
+ }
3507
+ export type OrgAdminGrantEdgeSelect = {
3508
+ cursor?: boolean;
3509
+ node?: {
3510
+ select: OrgAdminGrantSelect;
3511
+ };
3512
+ };
3513
+ export interface OrgOwnerGrantEdge {
3514
+ cursor?: string | null;
3515
+ node?: OrgOwnerGrant | null;
3516
+ }
3517
+ export type OrgOwnerGrantEdgeSelect = {
3518
+ cursor?: boolean;
3519
+ node?: {
3520
+ select: OrgOwnerGrantSelect;
3521
+ };
3522
+ };
3523
+ export interface MembershipTypeEdge {
3524
+ cursor?: string | null;
3525
+ node?: MembershipType | null;
3526
+ }
3527
+ export type MembershipTypeEdgeSelect = {
3528
+ cursor?: boolean;
3529
+ node?: {
3530
+ select: MembershipTypeSelect;
3531
+ };
3532
+ };
3533
+ export interface AppLimitEdge {
3534
+ cursor?: string | null;
3535
+ node?: AppLimit | null;
3536
+ }
3537
+ export type AppLimitEdgeSelect = {
3538
+ cursor?: boolean;
3539
+ node?: {
3540
+ select: AppLimitSelect;
3541
+ };
3542
+ };
3543
+ export interface AppAchievementEdge {
3544
+ cursor?: string | null;
3545
+ node?: AppAchievement | null;
3546
+ }
3547
+ export type AppAchievementEdgeSelect = {
3548
+ cursor?: boolean;
3549
+ node?: {
3550
+ select: AppAchievementSelect;
3551
+ };
3552
+ };
3553
+ export interface AppStepEdge {
3554
+ cursor?: string | null;
3555
+ node?: AppStep | null;
3556
+ }
3557
+ export type AppStepEdgeSelect = {
3558
+ cursor?: boolean;
3559
+ node?: {
3560
+ select: AppStepSelect;
3561
+ };
3562
+ };
3563
+ export interface ClaimedInviteEdge {
3564
+ cursor?: string | null;
3565
+ node?: ClaimedInvite | null;
3566
+ }
3567
+ export type ClaimedInviteEdgeSelect = {
3568
+ cursor?: boolean;
3569
+ node?: {
3570
+ select: ClaimedInviteSelect;
3571
+ };
3572
+ };
3573
+ export interface AppGrantEdge {
3574
+ cursor?: string | null;
3575
+ node?: AppGrant | null;
3576
+ }
3577
+ export type AppGrantEdgeSelect = {
3578
+ cursor?: boolean;
3579
+ node?: {
3580
+ select: AppGrantSelect;
3581
+ };
3582
+ };
3583
+ export interface AppMembershipDefaultEdge {
3584
+ cursor?: string | null;
3585
+ node?: AppMembershipDefault | null;
3586
+ }
3587
+ export type AppMembershipDefaultEdgeSelect = {
3588
+ cursor?: boolean;
3589
+ node?: {
3590
+ select: AppMembershipDefaultSelect;
3591
+ };
3592
+ };
3593
+ export interface OrgLimitEdge {
3594
+ cursor?: string | null;
3595
+ node?: OrgLimit | null;
3596
+ }
3597
+ export type OrgLimitEdgeSelect = {
3598
+ cursor?: boolean;
3599
+ node?: {
3600
+ select: OrgLimitSelect;
3601
+ };
3602
+ };
3603
+ export interface OrgClaimedInviteEdge {
3604
+ cursor?: string | null;
3605
+ node?: OrgClaimedInvite | null;
3606
+ }
3607
+ export type OrgClaimedInviteEdgeSelect = {
3608
+ cursor?: boolean;
3609
+ node?: {
3610
+ select: OrgClaimedInviteSelect;
3611
+ };
3612
+ };
3613
+ export interface OrgGrantEdge {
3614
+ cursor?: string | null;
3615
+ node?: OrgGrant | null;
3616
+ }
3617
+ export type OrgGrantEdgeSelect = {
3618
+ cursor?: boolean;
3619
+ node?: {
3620
+ select: OrgGrantSelect;
3621
+ };
3622
+ };
3623
+ export interface OrgMembershipDefaultEdge {
3624
+ cursor?: string | null;
3625
+ node?: OrgMembershipDefault | null;
3626
+ }
3627
+ export type OrgMembershipDefaultEdgeSelect = {
3628
+ cursor?: boolean;
3629
+ node?: {
3630
+ select: OrgMembershipDefaultSelect;
3631
+ };
3632
+ };
3633
+ export interface AppLevelEdge {
3634
+ cursor?: string | null;
3635
+ node?: AppLevel | null;
3636
+ }
3637
+ export type AppLevelEdgeSelect = {
3638
+ cursor?: boolean;
3639
+ node?: {
3640
+ select: AppLevelSelect;
3641
+ };
3642
+ };
3643
+ export interface InviteEdge {
3644
+ cursor?: string | null;
3645
+ node?: Invite | null;
3646
+ }
3647
+ export type InviteEdgeSelect = {
3648
+ cursor?: boolean;
3649
+ node?: {
3650
+ select: InviteSelect;
3651
+ };
3652
+ };
3653
+ export interface AppMembershipEdge {
3654
+ cursor?: string | null;
3655
+ node?: AppMembership | null;
3656
+ }
3657
+ export type AppMembershipEdgeSelect = {
3658
+ cursor?: boolean;
3659
+ node?: {
3660
+ select: AppMembershipSelect;
3661
+ };
3662
+ };
3663
+ export interface OrgMembershipEdge {
3664
+ cursor?: string | null;
3665
+ node?: OrgMembership | null;
3666
+ }
3667
+ export type OrgMembershipEdgeSelect = {
3668
+ cursor?: boolean;
3669
+ node?: {
3670
+ select: OrgMembershipSelect;
3671
+ };
3672
+ };
3673
+ export interface OrgInviteEdge {
3674
+ cursor?: string | null;
3675
+ node?: OrgInvite | null;
3676
+ }
3677
+ export type OrgInviteEdgeSelect = {
3678
+ cursor?: boolean;
3679
+ node?: {
3680
+ select: OrgInviteSelect;
3681
+ };
3682
+ };