@constructive-io/react 0.18.4 → 0.18.5

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 (796) hide show
  1. package/admin/hooks/index.d.ts +1 -1
  2. package/admin/hooks/index.js +1 -1
  3. package/admin/hooks/invalidation.d.ts +72 -18
  4. package/admin/hooks/invalidation.js +191 -47
  5. package/admin/hooks/mutation-keys.d.ts +144 -38
  6. package/admin/hooks/mutation-keys.js +91 -25
  7. package/admin/hooks/mutations/index.d.ts +36 -10
  8. package/admin/hooks/mutations/index.js +36 -10
  9. package/admin/hooks/mutations/useCreateAppLimitCapMutation.d.ts +34 -0
  10. package/admin/hooks/mutations/useCreateAppLimitCapMutation.js +34 -0
  11. package/admin/hooks/mutations/useCreateAppLimitCapsDefaultMutation.d.ts +34 -0
  12. package/admin/hooks/mutations/useCreateAppLimitCapsDefaultMutation.js +34 -0
  13. package/admin/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.d.ts +34 -0
  14. package/admin/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.js +34 -0
  15. package/admin/hooks/mutations/useCreateAppLimitCreditCodeMutation.d.ts +34 -0
  16. package/admin/hooks/mutations/useCreateAppLimitCreditCodeMutation.js +34 -0
  17. package/admin/hooks/mutations/useCreateAppLimitCreditMutation.d.ts +34 -0
  18. package/admin/hooks/mutations/useCreateAppLimitCreditMutation.js +34 -0
  19. package/admin/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.d.ts +34 -0
  20. package/admin/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.js +34 -0
  21. package/admin/hooks/mutations/useCreateOrgLimitCapMutation.d.ts +34 -0
  22. package/admin/hooks/mutations/useCreateOrgLimitCapMutation.js +34 -0
  23. package/admin/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.d.ts +34 -0
  24. package/admin/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.js +34 -0
  25. package/admin/hooks/mutations/useCreateOrgLimitCreditMutation.d.ts +34 -0
  26. package/admin/hooks/mutations/useCreateOrgLimitCreditMutation.js +34 -0
  27. package/admin/hooks/mutations/useDeleteAppLimitCapMutation.d.ts +38 -0
  28. package/admin/hooks/mutations/useDeleteAppLimitCapMutation.js +39 -0
  29. package/admin/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.d.ts +38 -0
  30. package/admin/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.js +39 -0
  31. package/admin/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.d.ts +38 -0
  32. package/admin/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.js +39 -0
  33. package/admin/hooks/mutations/useDeleteAppLimitCreditCodeMutation.d.ts +38 -0
  34. package/admin/hooks/mutations/useDeleteAppLimitCreditCodeMutation.js +39 -0
  35. package/admin/hooks/mutations/useDeleteAppLimitCreditMutation.d.ts +38 -0
  36. package/admin/hooks/mutations/useDeleteAppLimitCreditMutation.js +39 -0
  37. package/admin/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.d.ts +38 -0
  38. package/admin/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.js +39 -0
  39. package/admin/hooks/mutations/useDeleteOrgLimitCapMutation.d.ts +38 -0
  40. package/admin/hooks/mutations/useDeleteOrgLimitCapMutation.js +39 -0
  41. package/admin/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.d.ts +38 -0
  42. package/admin/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.js +39 -0
  43. package/admin/hooks/mutations/useDeleteOrgLimitCreditMutation.d.ts +38 -0
  44. package/admin/hooks/mutations/useDeleteOrgLimitCreditMutation.js +39 -0
  45. package/admin/hooks/mutations/useUpdateAppLimitCapMutation.d.ts +40 -0
  46. package/admin/hooks/mutations/useUpdateAppLimitCapMutation.js +40 -0
  47. package/admin/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.d.ts +40 -0
  48. package/admin/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.js +40 -0
  49. package/admin/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.d.ts +40 -0
  50. package/admin/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.js +40 -0
  51. package/admin/hooks/mutations/useUpdateAppLimitCreditCodeMutation.d.ts +40 -0
  52. package/admin/hooks/mutations/useUpdateAppLimitCreditCodeMutation.js +40 -0
  53. package/admin/hooks/mutations/useUpdateAppLimitCreditMutation.d.ts +40 -0
  54. package/admin/hooks/mutations/useUpdateAppLimitCreditMutation.js +40 -0
  55. package/admin/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.d.ts +40 -0
  56. package/admin/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.js +40 -0
  57. package/admin/hooks/mutations/useUpdateOrgLimitCapMutation.d.ts +40 -0
  58. package/admin/hooks/mutations/useUpdateOrgLimitCapMutation.js +40 -0
  59. package/admin/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.d.ts +40 -0
  60. package/admin/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.js +40 -0
  61. package/admin/hooks/mutations/useUpdateOrgLimitCreditMutation.d.ts +40 -0
  62. package/admin/hooks/mutations/useUpdateOrgLimitCreditMutation.js +40 -0
  63. package/admin/hooks/queries/index.d.ts +24 -6
  64. package/admin/hooks/queries/index.js +24 -6
  65. package/admin/hooks/queries/useAppLimitCapQuery.d.ts +65 -0
  66. package/admin/hooks/queries/useAppLimitCapQuery.js +53 -0
  67. package/admin/hooks/queries/useAppLimitCapsDefaultQuery.d.ts +65 -0
  68. package/admin/hooks/queries/useAppLimitCapsDefaultQuery.js +53 -0
  69. package/admin/hooks/queries/useAppLimitCapsDefaultsQuery.d.ts +69 -0
  70. package/admin/hooks/queries/useAppLimitCapsDefaultsQuery.js +38 -0
  71. package/admin/hooks/queries/useAppLimitCapsQuery.d.ts +69 -0
  72. package/admin/hooks/queries/useAppLimitCapsQuery.js +38 -0
  73. package/admin/hooks/queries/useAppLimitCreditCodeItemQuery.d.ts +65 -0
  74. package/admin/hooks/queries/useAppLimitCreditCodeItemQuery.js +53 -0
  75. package/admin/hooks/queries/useAppLimitCreditCodeItemsQuery.d.ts +69 -0
  76. package/admin/hooks/queries/useAppLimitCreditCodeItemsQuery.js +38 -0
  77. package/admin/hooks/queries/useAppLimitCreditCodeQuery.d.ts +65 -0
  78. package/admin/hooks/queries/useAppLimitCreditCodeQuery.js +53 -0
  79. package/admin/hooks/queries/useAppLimitCreditCodesQuery.d.ts +69 -0
  80. package/admin/hooks/queries/useAppLimitCreditCodesQuery.js +38 -0
  81. package/admin/hooks/queries/useAppLimitCreditQuery.d.ts +65 -0
  82. package/admin/hooks/queries/useAppLimitCreditQuery.js +53 -0
  83. package/admin/hooks/queries/useAppLimitCreditRedemptionQuery.d.ts +65 -0
  84. package/admin/hooks/queries/useAppLimitCreditRedemptionQuery.js +53 -0
  85. package/admin/hooks/queries/useAppLimitCreditRedemptionsQuery.d.ts +69 -0
  86. package/admin/hooks/queries/useAppLimitCreditRedemptionsQuery.js +38 -0
  87. package/admin/hooks/queries/useAppLimitCreditsQuery.d.ts +69 -0
  88. package/admin/hooks/queries/useAppLimitCreditsQuery.js +38 -0
  89. package/admin/hooks/queries/useOrgLimitCapQuery.d.ts +65 -0
  90. package/admin/hooks/queries/useOrgLimitCapQuery.js +53 -0
  91. package/admin/hooks/queries/useOrgLimitCapsDefaultQuery.d.ts +65 -0
  92. package/admin/hooks/queries/useOrgLimitCapsDefaultQuery.js +53 -0
  93. package/admin/hooks/queries/useOrgLimitCapsDefaultsQuery.d.ts +69 -0
  94. package/admin/hooks/queries/useOrgLimitCapsDefaultsQuery.js +38 -0
  95. package/admin/hooks/queries/useOrgLimitCapsQuery.d.ts +69 -0
  96. package/admin/hooks/queries/useOrgLimitCapsQuery.js +38 -0
  97. package/admin/hooks/queries/useOrgLimitCreditQuery.d.ts +65 -0
  98. package/admin/hooks/queries/useOrgLimitCreditQuery.js +53 -0
  99. package/admin/hooks/queries/useOrgLimitCreditsQuery.d.ts +69 -0
  100. package/admin/hooks/queries/useOrgLimitCreditsQuery.js +38 -0
  101. package/admin/hooks/query-keys.d.ts +168 -42
  102. package/admin/hooks/query-keys.js +97 -25
  103. package/admin/orm/index.d.ts +24 -11
  104. package/admin/orm/index.js +24 -6
  105. package/admin/orm/input-types.d.ts +2108 -545
  106. package/admin/orm/input-types.js +13 -1
  107. package/admin/orm/models/appLimitCap.d.ts +56 -0
  108. package/admin/orm/models/appLimitCap.js +100 -0
  109. package/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
  110. package/admin/orm/models/appLimitCapsDefault.js +100 -0
  111. package/admin/orm/models/appLimitCredit.d.ts +56 -0
  112. package/admin/orm/models/appLimitCredit.js +100 -0
  113. package/admin/orm/models/appLimitCreditCode.d.ts +56 -0
  114. package/admin/orm/models/appLimitCreditCode.js +100 -0
  115. package/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  116. package/admin/orm/models/appLimitCreditCodeItem.js +100 -0
  117. package/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
  118. package/admin/orm/models/appLimitCreditRedemption.js +100 -0
  119. package/admin/orm/models/index.d.ts +12 -3
  120. package/admin/orm/models/index.js +25 -7
  121. package/admin/orm/models/orgLimitCap.d.ts +56 -0
  122. package/admin/orm/models/orgLimitCap.js +100 -0
  123. package/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
  124. package/admin/orm/models/orgLimitCapsDefault.js +100 -0
  125. package/admin/orm/models/orgLimitCredit.d.ts +56 -0
  126. package/admin/orm/models/orgLimitCredit.js +100 -0
  127. package/admin/orm/mutation/index.d.ts +1 -16
  128. package/admin/orm/mutation/index.js +0 -12
  129. package/admin/orm/query-builder.js +24 -0
  130. package/admin/schema-types.d.ts +1316 -423
  131. package/admin/types.d.ts +99 -31
  132. package/auth/hooks/mutation-keys.d.ts +0 -2
  133. package/auth/hooks/mutation-keys.js +0 -3
  134. package/auth/hooks/mutations/index.d.ts +0 -1
  135. package/auth/hooks/mutations/index.js +0 -1
  136. package/auth/orm/index.d.ts +0 -5
  137. package/auth/orm/input-types.d.ts +0 -38
  138. package/auth/orm/mutation/index.d.ts +1 -16
  139. package/auth/orm/mutation/index.js +0 -12
  140. package/auth/orm/query-builder.js +24 -0
  141. package/auth/schema-types.d.ts +0 -31
  142. package/esm/admin/hooks/index.d.ts +1 -1
  143. package/esm/admin/hooks/index.js +1 -1
  144. package/esm/admin/hooks/invalidation.d.ts +72 -18
  145. package/esm/admin/hooks/invalidation.js +192 -48
  146. package/esm/admin/hooks/mutation-keys.d.ts +144 -38
  147. package/esm/admin/hooks/mutation-keys.js +90 -24
  148. package/esm/admin/hooks/mutations/index.d.ts +36 -10
  149. package/esm/admin/hooks/mutations/index.js +36 -10
  150. package/esm/admin/hooks/mutations/useCreateAppLimitCapMutation.d.ts +34 -0
  151. package/esm/admin/hooks/mutations/useCreateAppLimitCapMutation.js +31 -0
  152. package/esm/admin/hooks/mutations/useCreateAppLimitCapsDefaultMutation.d.ts +34 -0
  153. package/esm/admin/hooks/mutations/useCreateAppLimitCapsDefaultMutation.js +31 -0
  154. package/esm/admin/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.d.ts +34 -0
  155. package/esm/admin/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.js +31 -0
  156. package/esm/admin/hooks/mutations/useCreateAppLimitCreditCodeMutation.d.ts +34 -0
  157. package/esm/admin/hooks/mutations/useCreateAppLimitCreditCodeMutation.js +31 -0
  158. package/esm/admin/hooks/mutations/useCreateAppLimitCreditMutation.d.ts +34 -0
  159. package/esm/admin/hooks/mutations/useCreateAppLimitCreditMutation.js +31 -0
  160. package/esm/admin/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.d.ts +34 -0
  161. package/esm/admin/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.js +31 -0
  162. package/esm/admin/hooks/mutations/useCreateOrgLimitCapMutation.d.ts +34 -0
  163. package/esm/admin/hooks/mutations/useCreateOrgLimitCapMutation.js +31 -0
  164. package/esm/admin/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.d.ts +34 -0
  165. package/esm/admin/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.js +31 -0
  166. package/esm/admin/hooks/mutations/useCreateOrgLimitCreditMutation.d.ts +34 -0
  167. package/esm/admin/hooks/mutations/useCreateOrgLimitCreditMutation.js +31 -0
  168. package/esm/admin/hooks/mutations/useDeleteAppLimitCapMutation.d.ts +38 -0
  169. package/esm/admin/hooks/mutations/useDeleteAppLimitCapMutation.js +36 -0
  170. package/esm/admin/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.d.ts +38 -0
  171. package/esm/admin/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.js +36 -0
  172. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.d.ts +38 -0
  173. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.js +36 -0
  174. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditCodeMutation.d.ts +38 -0
  175. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditCodeMutation.js +36 -0
  176. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditMutation.d.ts +38 -0
  177. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditMutation.js +36 -0
  178. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.d.ts +38 -0
  179. package/esm/admin/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.js +36 -0
  180. package/esm/admin/hooks/mutations/useDeleteOrgLimitCapMutation.d.ts +38 -0
  181. package/esm/admin/hooks/mutations/useDeleteOrgLimitCapMutation.js +36 -0
  182. package/esm/admin/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.d.ts +38 -0
  183. package/esm/admin/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.js +36 -0
  184. package/esm/admin/hooks/mutations/useDeleteOrgLimitCreditMutation.d.ts +38 -0
  185. package/esm/admin/hooks/mutations/useDeleteOrgLimitCreditMutation.js +36 -0
  186. package/esm/admin/hooks/mutations/useUpdateAppLimitCapMutation.d.ts +40 -0
  187. package/esm/admin/hooks/mutations/useUpdateAppLimitCapMutation.js +37 -0
  188. package/esm/admin/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.d.ts +40 -0
  189. package/esm/admin/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.js +37 -0
  190. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.d.ts +40 -0
  191. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.js +37 -0
  192. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditCodeMutation.d.ts +40 -0
  193. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditCodeMutation.js +37 -0
  194. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditMutation.d.ts +40 -0
  195. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditMutation.js +37 -0
  196. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.d.ts +40 -0
  197. package/esm/admin/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.js +37 -0
  198. package/esm/admin/hooks/mutations/useUpdateOrgLimitCapMutation.d.ts +40 -0
  199. package/esm/admin/hooks/mutations/useUpdateOrgLimitCapMutation.js +37 -0
  200. package/esm/admin/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.d.ts +40 -0
  201. package/esm/admin/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.js +37 -0
  202. package/esm/admin/hooks/mutations/useUpdateOrgLimitCreditMutation.d.ts +40 -0
  203. package/esm/admin/hooks/mutations/useUpdateOrgLimitCreditMutation.js +37 -0
  204. package/esm/admin/hooks/queries/index.d.ts +24 -6
  205. package/esm/admin/hooks/queries/index.js +24 -6
  206. package/esm/admin/hooks/queries/useAppLimitCapQuery.d.ts +65 -0
  207. package/esm/admin/hooks/queries/useAppLimitCapQuery.js +47 -0
  208. package/esm/admin/hooks/queries/useAppLimitCapsDefaultQuery.d.ts +65 -0
  209. package/esm/admin/hooks/queries/useAppLimitCapsDefaultQuery.js +47 -0
  210. package/esm/admin/hooks/queries/useAppLimitCapsDefaultsQuery.d.ts +69 -0
  211. package/esm/admin/hooks/queries/useAppLimitCapsDefaultsQuery.js +32 -0
  212. package/esm/admin/hooks/queries/useAppLimitCapsQuery.d.ts +69 -0
  213. package/esm/admin/hooks/queries/useAppLimitCapsQuery.js +32 -0
  214. package/esm/admin/hooks/queries/useAppLimitCreditCodeItemQuery.d.ts +65 -0
  215. package/esm/admin/hooks/queries/useAppLimitCreditCodeItemQuery.js +47 -0
  216. package/esm/admin/hooks/queries/useAppLimitCreditCodeItemsQuery.d.ts +69 -0
  217. package/esm/admin/hooks/queries/useAppLimitCreditCodeItemsQuery.js +32 -0
  218. package/esm/admin/hooks/queries/useAppLimitCreditCodeQuery.d.ts +65 -0
  219. package/esm/admin/hooks/queries/useAppLimitCreditCodeQuery.js +47 -0
  220. package/esm/admin/hooks/queries/useAppLimitCreditCodesQuery.d.ts +69 -0
  221. package/esm/admin/hooks/queries/useAppLimitCreditCodesQuery.js +32 -0
  222. package/esm/admin/hooks/queries/useAppLimitCreditQuery.d.ts +65 -0
  223. package/esm/admin/hooks/queries/useAppLimitCreditQuery.js +47 -0
  224. package/esm/admin/hooks/queries/useAppLimitCreditRedemptionQuery.d.ts +65 -0
  225. package/esm/admin/hooks/queries/useAppLimitCreditRedemptionQuery.js +47 -0
  226. package/esm/admin/hooks/queries/useAppLimitCreditRedemptionsQuery.d.ts +69 -0
  227. package/esm/admin/hooks/queries/useAppLimitCreditRedemptionsQuery.js +32 -0
  228. package/esm/admin/hooks/queries/useAppLimitCreditsQuery.d.ts +69 -0
  229. package/esm/admin/hooks/queries/useAppLimitCreditsQuery.js +32 -0
  230. package/esm/admin/hooks/queries/useOrgLimitCapQuery.d.ts +65 -0
  231. package/esm/admin/hooks/queries/useOrgLimitCapQuery.js +47 -0
  232. package/esm/admin/hooks/queries/useOrgLimitCapsDefaultQuery.d.ts +65 -0
  233. package/esm/admin/hooks/queries/useOrgLimitCapsDefaultQuery.js +47 -0
  234. package/esm/admin/hooks/queries/useOrgLimitCapsDefaultsQuery.d.ts +69 -0
  235. package/esm/admin/hooks/queries/useOrgLimitCapsDefaultsQuery.js +32 -0
  236. package/esm/admin/hooks/queries/useOrgLimitCapsQuery.d.ts +69 -0
  237. package/esm/admin/hooks/queries/useOrgLimitCapsQuery.js +32 -0
  238. package/esm/admin/hooks/queries/useOrgLimitCreditQuery.d.ts +65 -0
  239. package/esm/admin/hooks/queries/useOrgLimitCreditQuery.js +47 -0
  240. package/esm/admin/hooks/queries/useOrgLimitCreditsQuery.d.ts +69 -0
  241. package/esm/admin/hooks/queries/useOrgLimitCreditsQuery.js +32 -0
  242. package/esm/admin/hooks/query-keys.d.ts +168 -42
  243. package/esm/admin/hooks/query-keys.js +96 -24
  244. package/esm/admin/orm/index.d.ts +24 -11
  245. package/esm/admin/orm/index.js +24 -6
  246. package/esm/admin/orm/input-types.d.ts +2108 -545
  247. package/esm/admin/orm/input-types.js +13 -1
  248. package/esm/admin/orm/models/appLimitCap.d.ts +56 -0
  249. package/esm/admin/orm/models/appLimitCap.js +96 -0
  250. package/esm/admin/orm/models/appLimitCapsDefault.d.ts +56 -0
  251. package/esm/admin/orm/models/appLimitCapsDefault.js +96 -0
  252. package/esm/admin/orm/models/appLimitCredit.d.ts +56 -0
  253. package/esm/admin/orm/models/appLimitCredit.js +96 -0
  254. package/esm/admin/orm/models/appLimitCreditCode.d.ts +56 -0
  255. package/esm/admin/orm/models/appLimitCreditCode.js +96 -0
  256. package/esm/admin/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  257. package/esm/admin/orm/models/appLimitCreditCodeItem.js +96 -0
  258. package/esm/admin/orm/models/appLimitCreditRedemption.d.ts +56 -0
  259. package/esm/admin/orm/models/appLimitCreditRedemption.js +96 -0
  260. package/esm/admin/orm/models/index.d.ts +12 -3
  261. package/esm/admin/orm/models/index.js +12 -3
  262. package/esm/admin/orm/models/orgLimitCap.d.ts +56 -0
  263. package/esm/admin/orm/models/orgLimitCap.js +96 -0
  264. package/esm/admin/orm/models/orgLimitCapsDefault.d.ts +56 -0
  265. package/esm/admin/orm/models/orgLimitCapsDefault.js +96 -0
  266. package/esm/admin/orm/models/orgLimitCredit.d.ts +56 -0
  267. package/esm/admin/orm/models/orgLimitCredit.js +96 -0
  268. package/esm/admin/orm/mutation/index.d.ts +1 -16
  269. package/esm/admin/orm/mutation/index.js +0 -12
  270. package/esm/admin/orm/query-builder.js +24 -0
  271. package/esm/admin/schema-types.d.ts +1316 -423
  272. package/esm/admin/types.d.ts +99 -31
  273. package/esm/auth/hooks/mutation-keys.d.ts +0 -2
  274. package/esm/auth/hooks/mutation-keys.js +0 -3
  275. package/esm/auth/hooks/mutations/index.d.ts +0 -1
  276. package/esm/auth/hooks/mutations/index.js +0 -1
  277. package/esm/auth/orm/index.d.ts +0 -5
  278. package/esm/auth/orm/input-types.d.ts +0 -38
  279. package/esm/auth/orm/mutation/index.d.ts +1 -16
  280. package/esm/auth/orm/mutation/index.js +0 -12
  281. package/esm/auth/orm/query-builder.js +24 -0
  282. package/esm/auth/schema-types.d.ts +0 -31
  283. package/esm/objects/hooks/mutation-keys.d.ts +0 -2
  284. package/esm/objects/hooks/mutation-keys.js +0 -3
  285. package/esm/objects/hooks/mutations/index.d.ts +0 -1
  286. package/esm/objects/hooks/mutations/index.js +0 -1
  287. package/esm/objects/orm/index.d.ts +0 -5
  288. package/esm/objects/orm/input-types.d.ts +0 -38
  289. package/esm/objects/orm/mutation/index.d.ts +1 -16
  290. package/esm/objects/orm/mutation/index.js +0 -12
  291. package/esm/objects/orm/query-builder.js +24 -0
  292. package/esm/objects/schema-types.d.ts +0 -31
  293. package/esm/public/hooks/index.d.ts +1 -1
  294. package/esm/public/hooks/index.js +1 -1
  295. package/esm/public/hooks/invalidation.d.ts +114 -6
  296. package/esm/public/hooks/invalidation.js +304 -16
  297. package/esm/public/hooks/mutation-keys.d.ts +230 -14
  298. package/esm/public/hooks/mutation-keys.js +145 -10
  299. package/esm/public/hooks/mutations/index.d.ts +58 -4
  300. package/esm/public/hooks/mutations/index.js +58 -4
  301. package/esm/public/hooks/mutations/useAppendSmartTagsMutation.d.ts +20 -0
  302. package/esm/{admin/hooks/mutations/useRequestUploadUrlMutation.js → public/hooks/mutations/useAppendSmartTagsMutation.js} +4 -4
  303. package/esm/public/hooks/mutations/useCreateApiSettingMutation.d.ts +34 -0
  304. package/esm/public/hooks/mutations/useCreateApiSettingMutation.js +31 -0
  305. package/esm/public/hooks/mutations/useCreateAppLimitCapMutation.d.ts +34 -0
  306. package/esm/public/hooks/mutations/useCreateAppLimitCapMutation.js +31 -0
  307. package/esm/public/hooks/mutations/useCreateAppLimitCapsDefaultMutation.d.ts +34 -0
  308. package/esm/public/hooks/mutations/useCreateAppLimitCapsDefaultMutation.js +31 -0
  309. package/esm/public/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.d.ts +34 -0
  310. package/esm/public/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.js +31 -0
  311. package/esm/public/hooks/mutations/useCreateAppLimitCreditCodeMutation.d.ts +34 -0
  312. package/esm/public/hooks/mutations/useCreateAppLimitCreditCodeMutation.js +31 -0
  313. package/esm/public/hooks/mutations/useCreateAppLimitCreditMutation.d.ts +34 -0
  314. package/esm/public/hooks/mutations/useCreateAppLimitCreditMutation.js +31 -0
  315. package/esm/public/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.d.ts +34 -0
  316. package/esm/public/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.js +31 -0
  317. package/esm/public/hooks/mutations/useCreateBillingProviderModuleMutation.d.ts +34 -0
  318. package/esm/public/hooks/mutations/useCreateBillingProviderModuleMutation.js +31 -0
  319. package/esm/public/hooks/mutations/useCreateCorsSettingMutation.d.ts +34 -0
  320. package/esm/public/hooks/mutations/useCreateCorsSettingMutation.js +31 -0
  321. package/esm/public/hooks/mutations/useCreateDatabaseSettingMutation.d.ts +34 -0
  322. package/esm/public/hooks/mutations/useCreateDatabaseSettingMutation.js +31 -0
  323. package/esm/public/hooks/mutations/useCreateFunctionMutation.d.ts +34 -0
  324. package/esm/public/hooks/mutations/useCreateFunctionMutation.js +31 -0
  325. package/esm/public/hooks/mutations/useCreateOrgLimitCapMutation.d.ts +34 -0
  326. package/esm/public/hooks/mutations/useCreateOrgLimitCapMutation.js +31 -0
  327. package/esm/public/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.d.ts +34 -0
  328. package/esm/public/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.js +31 -0
  329. package/esm/public/hooks/mutations/useCreateOrgLimitCreditMutation.d.ts +34 -0
  330. package/esm/public/hooks/mutations/useCreateOrgLimitCreditMutation.js +31 -0
  331. package/esm/public/hooks/mutations/useCreatePartitionMutation.d.ts +34 -0
  332. package/esm/public/hooks/mutations/useCreatePartitionMutation.js +31 -0
  333. package/esm/public/hooks/mutations/useCreatePubkeySettingMutation.d.ts +34 -0
  334. package/esm/public/hooks/mutations/useCreatePubkeySettingMutation.js +31 -0
  335. package/esm/public/hooks/mutations/useCreateRlsSettingMutation.d.ts +34 -0
  336. package/esm/public/hooks/mutations/useCreateRlsSettingMutation.js +31 -0
  337. package/esm/public/hooks/mutations/useCreateWebauthnSettingMutation.d.ts +34 -0
  338. package/esm/public/hooks/mutations/useCreateWebauthnSettingMutation.js +31 -0
  339. package/esm/public/hooks/mutations/useDeleteApiSettingMutation.d.ts +38 -0
  340. package/esm/public/hooks/mutations/useDeleteApiSettingMutation.js +36 -0
  341. package/esm/public/hooks/mutations/useDeleteAppLimitCapMutation.d.ts +38 -0
  342. package/esm/public/hooks/mutations/useDeleteAppLimitCapMutation.js +36 -0
  343. package/esm/public/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.d.ts +38 -0
  344. package/esm/public/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.js +36 -0
  345. package/esm/public/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.d.ts +38 -0
  346. package/esm/public/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.js +36 -0
  347. package/esm/public/hooks/mutations/useDeleteAppLimitCreditCodeMutation.d.ts +38 -0
  348. package/esm/public/hooks/mutations/useDeleteAppLimitCreditCodeMutation.js +36 -0
  349. package/esm/public/hooks/mutations/useDeleteAppLimitCreditMutation.d.ts +38 -0
  350. package/esm/public/hooks/mutations/useDeleteAppLimitCreditMutation.js +36 -0
  351. package/esm/public/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.d.ts +38 -0
  352. package/esm/public/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.js +36 -0
  353. package/esm/public/hooks/mutations/useDeleteBillingProviderModuleMutation.d.ts +38 -0
  354. package/esm/public/hooks/mutations/useDeleteBillingProviderModuleMutation.js +36 -0
  355. package/esm/public/hooks/mutations/useDeleteCorsSettingMutation.d.ts +38 -0
  356. package/esm/public/hooks/mutations/useDeleteCorsSettingMutation.js +36 -0
  357. package/esm/public/hooks/mutations/useDeleteDatabaseSettingMutation.d.ts +38 -0
  358. package/esm/public/hooks/mutations/useDeleteDatabaseSettingMutation.js +36 -0
  359. package/esm/public/hooks/mutations/useDeleteFunctionMutation.d.ts +38 -0
  360. package/esm/public/hooks/mutations/useDeleteFunctionMutation.js +36 -0
  361. package/esm/public/hooks/mutations/useDeleteOrgLimitCapMutation.d.ts +38 -0
  362. package/esm/public/hooks/mutations/useDeleteOrgLimitCapMutation.js +36 -0
  363. package/esm/public/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.d.ts +38 -0
  364. package/esm/public/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.js +36 -0
  365. package/esm/public/hooks/mutations/useDeleteOrgLimitCreditMutation.d.ts +38 -0
  366. package/esm/public/hooks/mutations/useDeleteOrgLimitCreditMutation.js +36 -0
  367. package/esm/public/hooks/mutations/useDeletePartitionMutation.d.ts +38 -0
  368. package/esm/public/hooks/mutations/useDeletePartitionMutation.js +36 -0
  369. package/esm/public/hooks/mutations/useDeletePubkeySettingMutation.d.ts +38 -0
  370. package/esm/public/hooks/mutations/useDeletePubkeySettingMutation.js +36 -0
  371. package/esm/public/hooks/mutations/useDeleteRlsSettingMutation.d.ts +38 -0
  372. package/esm/public/hooks/mutations/useDeleteRlsSettingMutation.js +36 -0
  373. package/esm/public/hooks/mutations/useDeleteWebauthnSettingMutation.d.ts +38 -0
  374. package/esm/public/hooks/mutations/useDeleteWebauthnSettingMutation.js +36 -0
  375. package/esm/public/hooks/mutations/useUpdateApiSettingMutation.d.ts +40 -0
  376. package/esm/public/hooks/mutations/useUpdateApiSettingMutation.js +37 -0
  377. package/esm/public/hooks/mutations/useUpdateAppLimitCapMutation.d.ts +40 -0
  378. package/esm/public/hooks/mutations/useUpdateAppLimitCapMutation.js +37 -0
  379. package/esm/public/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.d.ts +40 -0
  380. package/esm/public/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.js +37 -0
  381. package/esm/public/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.d.ts +40 -0
  382. package/esm/public/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.js +37 -0
  383. package/esm/public/hooks/mutations/useUpdateAppLimitCreditCodeMutation.d.ts +40 -0
  384. package/esm/public/hooks/mutations/useUpdateAppLimitCreditCodeMutation.js +37 -0
  385. package/esm/public/hooks/mutations/useUpdateAppLimitCreditMutation.d.ts +40 -0
  386. package/esm/public/hooks/mutations/useUpdateAppLimitCreditMutation.js +37 -0
  387. package/esm/public/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.d.ts +40 -0
  388. package/esm/public/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.js +37 -0
  389. package/esm/public/hooks/mutations/useUpdateBillingProviderModuleMutation.d.ts +40 -0
  390. package/esm/public/hooks/mutations/useUpdateBillingProviderModuleMutation.js +37 -0
  391. package/esm/public/hooks/mutations/useUpdateCorsSettingMutation.d.ts +40 -0
  392. package/esm/public/hooks/mutations/useUpdateCorsSettingMutation.js +37 -0
  393. package/esm/public/hooks/mutations/useUpdateDatabaseSettingMutation.d.ts +40 -0
  394. package/esm/public/hooks/mutations/useUpdateDatabaseSettingMutation.js +37 -0
  395. package/esm/public/hooks/mutations/useUpdateFunctionMutation.d.ts +40 -0
  396. package/esm/public/hooks/mutations/useUpdateFunctionMutation.js +37 -0
  397. package/esm/public/hooks/mutations/useUpdateOrgLimitCapMutation.d.ts +40 -0
  398. package/esm/public/hooks/mutations/useUpdateOrgLimitCapMutation.js +37 -0
  399. package/esm/public/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.d.ts +40 -0
  400. package/esm/public/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.js +37 -0
  401. package/esm/public/hooks/mutations/useUpdateOrgLimitCreditMutation.d.ts +40 -0
  402. package/esm/public/hooks/mutations/useUpdateOrgLimitCreditMutation.js +37 -0
  403. package/esm/public/hooks/mutations/useUpdatePartitionMutation.d.ts +40 -0
  404. package/esm/public/hooks/mutations/useUpdatePartitionMutation.js +37 -0
  405. package/esm/public/hooks/mutations/useUpdatePubkeySettingMutation.d.ts +40 -0
  406. package/esm/public/hooks/mutations/useUpdatePubkeySettingMutation.js +37 -0
  407. package/esm/public/hooks/mutations/useUpdateRlsSettingMutation.d.ts +40 -0
  408. package/esm/public/hooks/mutations/useUpdateRlsSettingMutation.js +37 -0
  409. package/esm/public/hooks/mutations/useUpdateWebauthnSettingMutation.d.ts +40 -0
  410. package/esm/public/hooks/mutations/useUpdateWebauthnSettingMutation.js +37 -0
  411. package/esm/public/hooks/queries/index.d.ts +38 -2
  412. package/esm/public/hooks/queries/index.js +38 -2
  413. package/esm/public/hooks/queries/useApiSettingQuery.d.ts +65 -0
  414. package/esm/public/hooks/queries/useApiSettingQuery.js +47 -0
  415. package/esm/public/hooks/queries/useApiSettingsQuery.d.ts +69 -0
  416. package/esm/public/hooks/queries/useApiSettingsQuery.js +32 -0
  417. package/esm/public/hooks/queries/useAppLimitCapQuery.d.ts +65 -0
  418. package/esm/public/hooks/queries/useAppLimitCapQuery.js +47 -0
  419. package/esm/public/hooks/queries/useAppLimitCapsDefaultQuery.d.ts +65 -0
  420. package/esm/public/hooks/queries/useAppLimitCapsDefaultQuery.js +47 -0
  421. package/esm/public/hooks/queries/useAppLimitCapsDefaultsQuery.d.ts +69 -0
  422. package/esm/public/hooks/queries/useAppLimitCapsDefaultsQuery.js +32 -0
  423. package/esm/public/hooks/queries/useAppLimitCapsQuery.d.ts +69 -0
  424. package/esm/public/hooks/queries/useAppLimitCapsQuery.js +32 -0
  425. package/esm/public/hooks/queries/useAppLimitCreditCodeItemQuery.d.ts +65 -0
  426. package/esm/public/hooks/queries/useAppLimitCreditCodeItemQuery.js +47 -0
  427. package/esm/public/hooks/queries/useAppLimitCreditCodeItemsQuery.d.ts +69 -0
  428. package/esm/public/hooks/queries/useAppLimitCreditCodeItemsQuery.js +32 -0
  429. package/esm/public/hooks/queries/useAppLimitCreditCodeQuery.d.ts +65 -0
  430. package/esm/public/hooks/queries/useAppLimitCreditCodeQuery.js +47 -0
  431. package/esm/public/hooks/queries/useAppLimitCreditCodesQuery.d.ts +69 -0
  432. package/esm/public/hooks/queries/useAppLimitCreditCodesQuery.js +32 -0
  433. package/esm/public/hooks/queries/useAppLimitCreditQuery.d.ts +65 -0
  434. package/esm/public/hooks/queries/useAppLimitCreditQuery.js +47 -0
  435. package/esm/public/hooks/queries/useAppLimitCreditRedemptionQuery.d.ts +65 -0
  436. package/esm/public/hooks/queries/useAppLimitCreditRedemptionQuery.js +47 -0
  437. package/esm/public/hooks/queries/useAppLimitCreditRedemptionsQuery.d.ts +69 -0
  438. package/esm/public/hooks/queries/useAppLimitCreditRedemptionsQuery.js +32 -0
  439. package/esm/public/hooks/queries/useAppLimitCreditsQuery.d.ts +69 -0
  440. package/esm/public/hooks/queries/useAppLimitCreditsQuery.js +32 -0
  441. package/esm/public/hooks/queries/useBillingProviderModuleQuery.d.ts +65 -0
  442. package/esm/public/hooks/queries/useBillingProviderModuleQuery.js +47 -0
  443. package/esm/public/hooks/queries/useBillingProviderModulesQuery.d.ts +69 -0
  444. package/esm/public/hooks/queries/useBillingProviderModulesQuery.js +32 -0
  445. package/esm/public/hooks/queries/useCorsSettingQuery.d.ts +65 -0
  446. package/esm/public/hooks/queries/useCorsSettingQuery.js +47 -0
  447. package/esm/public/hooks/queries/useCorsSettingsQuery.d.ts +69 -0
  448. package/esm/public/hooks/queries/useCorsSettingsQuery.js +32 -0
  449. package/esm/public/hooks/queries/useDatabaseSettingQuery.d.ts +65 -0
  450. package/esm/public/hooks/queries/useDatabaseSettingQuery.js +47 -0
  451. package/esm/public/hooks/queries/useDatabaseSettingsQuery.d.ts +69 -0
  452. package/esm/public/hooks/queries/useDatabaseSettingsQuery.js +32 -0
  453. package/esm/public/hooks/queries/useFunctionQuery.d.ts +65 -0
  454. package/esm/public/hooks/queries/useFunctionQuery.js +47 -0
  455. package/esm/public/hooks/queries/useFunctionsQuery.d.ts +69 -0
  456. package/esm/public/hooks/queries/useFunctionsQuery.js +32 -0
  457. package/esm/public/hooks/queries/useOrgLimitCapQuery.d.ts +65 -0
  458. package/esm/public/hooks/queries/useOrgLimitCapQuery.js +47 -0
  459. package/esm/public/hooks/queries/useOrgLimitCapsDefaultQuery.d.ts +65 -0
  460. package/esm/public/hooks/queries/useOrgLimitCapsDefaultQuery.js +47 -0
  461. package/esm/public/hooks/queries/useOrgLimitCapsDefaultsQuery.d.ts +69 -0
  462. package/esm/public/hooks/queries/useOrgLimitCapsDefaultsQuery.js +32 -0
  463. package/esm/public/hooks/queries/useOrgLimitCapsQuery.d.ts +69 -0
  464. package/esm/public/hooks/queries/useOrgLimitCapsQuery.js +32 -0
  465. package/esm/public/hooks/queries/useOrgLimitCreditQuery.d.ts +65 -0
  466. package/esm/public/hooks/queries/useOrgLimitCreditQuery.js +47 -0
  467. package/esm/public/hooks/queries/useOrgLimitCreditsQuery.d.ts +69 -0
  468. package/esm/public/hooks/queries/useOrgLimitCreditsQuery.js +32 -0
  469. package/esm/public/hooks/queries/usePartitionQuery.d.ts +65 -0
  470. package/esm/public/hooks/queries/usePartitionQuery.js +47 -0
  471. package/esm/public/hooks/queries/usePartitionsQuery.d.ts +69 -0
  472. package/esm/public/hooks/queries/usePartitionsQuery.js +32 -0
  473. package/esm/public/hooks/queries/usePubkeySettingQuery.d.ts +65 -0
  474. package/esm/public/hooks/queries/usePubkeySettingQuery.js +47 -0
  475. package/esm/public/hooks/queries/usePubkeySettingsQuery.d.ts +69 -0
  476. package/esm/public/hooks/queries/usePubkeySettingsQuery.js +32 -0
  477. package/esm/public/hooks/queries/useRlsSettingQuery.d.ts +65 -0
  478. package/esm/public/hooks/queries/useRlsSettingQuery.js +47 -0
  479. package/esm/public/hooks/queries/useRlsSettingsQuery.d.ts +69 -0
  480. package/esm/public/hooks/queries/useRlsSettingsQuery.js +32 -0
  481. package/esm/public/hooks/queries/useWebauthnSettingQuery.d.ts +65 -0
  482. package/esm/public/hooks/queries/useWebauthnSettingQuery.js +47 -0
  483. package/esm/public/hooks/queries/useWebauthnSettingsQuery.d.ts +69 -0
  484. package/esm/public/hooks/queries/useWebauthnSettingsQuery.js +32 -0
  485. package/esm/public/hooks/query-keys.d.ts +266 -14
  486. package/esm/public/hooks/query-keys.js +152 -8
  487. package/esm/public/orm/index.d.ts +43 -7
  488. package/esm/public/orm/index.js +38 -2
  489. package/esm/public/orm/input-types.d.ts +4601 -321
  490. package/esm/public/orm/input-types.js +21 -0
  491. package/esm/public/orm/models/apiSetting.d.ts +56 -0
  492. package/esm/public/orm/models/apiSetting.js +96 -0
  493. package/esm/public/orm/models/appLimitCap.d.ts +56 -0
  494. package/esm/public/orm/models/appLimitCap.js +96 -0
  495. package/esm/public/orm/models/appLimitCapsDefault.d.ts +56 -0
  496. package/esm/public/orm/models/appLimitCapsDefault.js +96 -0
  497. package/esm/public/orm/models/appLimitCredit.d.ts +56 -0
  498. package/esm/public/orm/models/appLimitCredit.js +96 -0
  499. package/esm/public/orm/models/appLimitCreditCode.d.ts +56 -0
  500. package/esm/public/orm/models/appLimitCreditCode.js +96 -0
  501. package/esm/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  502. package/esm/public/orm/models/appLimitCreditCodeItem.js +96 -0
  503. package/esm/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
  504. package/esm/public/orm/models/appLimitCreditRedemption.js +96 -0
  505. package/esm/public/orm/models/billingProviderModule.d.ts +56 -0
  506. package/esm/public/orm/models/billingProviderModule.js +96 -0
  507. package/esm/public/orm/models/corsSetting.d.ts +56 -0
  508. package/esm/public/orm/models/corsSetting.js +96 -0
  509. package/esm/public/orm/models/databaseSetting.d.ts +56 -0
  510. package/esm/public/orm/models/databaseSetting.js +96 -0
  511. package/esm/public/orm/models/function.d.ts +56 -0
  512. package/esm/public/orm/models/function.js +96 -0
  513. package/esm/public/orm/models/index.d.ts +19 -1
  514. package/esm/public/orm/models/index.js +19 -1
  515. package/esm/public/orm/models/orgLimitCap.d.ts +56 -0
  516. package/esm/public/orm/models/orgLimitCap.js +96 -0
  517. package/esm/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
  518. package/esm/public/orm/models/orgLimitCapsDefault.js +96 -0
  519. package/esm/public/orm/models/orgLimitCredit.d.ts +56 -0
  520. package/esm/public/orm/models/orgLimitCredit.js +96 -0
  521. package/esm/public/orm/models/partition.d.ts +56 -0
  522. package/esm/public/orm/models/partition.js +96 -0
  523. package/esm/public/orm/models/pubkeySetting.d.ts +56 -0
  524. package/esm/public/orm/models/pubkeySetting.js +96 -0
  525. package/esm/public/orm/models/rlsSetting.d.ts +56 -0
  526. package/esm/public/orm/models/rlsSetting.js +96 -0
  527. package/esm/public/orm/models/webauthnSetting.d.ts +56 -0
  528. package/esm/public/orm/models/webauthnSetting.js +96 -0
  529. package/esm/public/orm/mutation/index.d.ts +9 -16
  530. package/esm/public/orm/mutation/index.js +12 -12
  531. package/esm/public/orm/query-builder.js +24 -0
  532. package/esm/public/schema-types.d.ts +3326 -877
  533. package/esm/public/types.d.ts +221 -13
  534. package/objects/hooks/mutation-keys.d.ts +0 -2
  535. package/objects/hooks/mutation-keys.js +0 -3
  536. package/objects/hooks/mutations/index.d.ts +0 -1
  537. package/objects/hooks/mutations/index.js +0 -1
  538. package/objects/orm/index.d.ts +0 -5
  539. package/objects/orm/input-types.d.ts +0 -38
  540. package/objects/orm/mutation/index.d.ts +1 -16
  541. package/objects/orm/mutation/index.js +0 -12
  542. package/objects/orm/query-builder.js +24 -0
  543. package/objects/schema-types.d.ts +0 -31
  544. package/package.json +4 -4
  545. package/public/hooks/index.d.ts +1 -1
  546. package/public/hooks/index.js +1 -1
  547. package/public/hooks/invalidation.d.ts +114 -6
  548. package/public/hooks/invalidation.js +303 -15
  549. package/public/hooks/mutation-keys.d.ts +230 -14
  550. package/public/hooks/mutation-keys.js +148 -13
  551. package/public/hooks/mutations/index.d.ts +58 -4
  552. package/public/hooks/mutations/index.js +58 -4
  553. package/public/hooks/mutations/useAppendSmartTagsMutation.d.ts +20 -0
  554. package/{objects/hooks/mutations/useRequestUploadUrlMutation.js → public/hooks/mutations/useAppendSmartTagsMutation.js} +5 -5
  555. package/public/hooks/mutations/useCreateApiSettingMutation.d.ts +34 -0
  556. package/public/hooks/mutations/useCreateApiSettingMutation.js +34 -0
  557. package/public/hooks/mutations/useCreateAppLimitCapMutation.d.ts +34 -0
  558. package/public/hooks/mutations/useCreateAppLimitCapMutation.js +34 -0
  559. package/public/hooks/mutations/useCreateAppLimitCapsDefaultMutation.d.ts +34 -0
  560. package/public/hooks/mutations/useCreateAppLimitCapsDefaultMutation.js +34 -0
  561. package/public/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.d.ts +34 -0
  562. package/public/hooks/mutations/useCreateAppLimitCreditCodeItemMutation.js +34 -0
  563. package/public/hooks/mutations/useCreateAppLimitCreditCodeMutation.d.ts +34 -0
  564. package/public/hooks/mutations/useCreateAppLimitCreditCodeMutation.js +34 -0
  565. package/public/hooks/mutations/useCreateAppLimitCreditMutation.d.ts +34 -0
  566. package/public/hooks/mutations/useCreateAppLimitCreditMutation.js +34 -0
  567. package/public/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.d.ts +34 -0
  568. package/public/hooks/mutations/useCreateAppLimitCreditRedemptionMutation.js +34 -0
  569. package/public/hooks/mutations/useCreateBillingProviderModuleMutation.d.ts +34 -0
  570. package/public/hooks/mutations/useCreateBillingProviderModuleMutation.js +34 -0
  571. package/public/hooks/mutations/useCreateCorsSettingMutation.d.ts +34 -0
  572. package/public/hooks/mutations/useCreateCorsSettingMutation.js +34 -0
  573. package/public/hooks/mutations/useCreateDatabaseSettingMutation.d.ts +34 -0
  574. package/public/hooks/mutations/useCreateDatabaseSettingMutation.js +34 -0
  575. package/public/hooks/mutations/useCreateFunctionMutation.d.ts +34 -0
  576. package/{admin/hooks/mutations/useRequestUploadUrlMutation.js → public/hooks/mutations/useCreateFunctionMutation.js} +14 -6
  577. package/public/hooks/mutations/useCreateOrgLimitCapMutation.d.ts +34 -0
  578. package/public/hooks/mutations/useCreateOrgLimitCapMutation.js +34 -0
  579. package/public/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.d.ts +34 -0
  580. package/public/hooks/mutations/useCreateOrgLimitCapsDefaultMutation.js +34 -0
  581. package/public/hooks/mutations/useCreateOrgLimitCreditMutation.d.ts +34 -0
  582. package/public/hooks/mutations/useCreateOrgLimitCreditMutation.js +34 -0
  583. package/public/hooks/mutations/useCreatePartitionMutation.d.ts +34 -0
  584. package/public/hooks/mutations/{useRequestUploadUrlMutation.js → useCreatePartitionMutation.js} +14 -6
  585. package/public/hooks/mutations/useCreatePubkeySettingMutation.d.ts +34 -0
  586. package/public/hooks/mutations/useCreatePubkeySettingMutation.js +34 -0
  587. package/public/hooks/mutations/useCreateRlsSettingMutation.d.ts +34 -0
  588. package/{auth/hooks/mutations/useRequestUploadUrlMutation.js → public/hooks/mutations/useCreateRlsSettingMutation.js} +14 -6
  589. package/public/hooks/mutations/useCreateWebauthnSettingMutation.d.ts +34 -0
  590. package/public/hooks/mutations/useCreateWebauthnSettingMutation.js +34 -0
  591. package/public/hooks/mutations/useDeleteApiSettingMutation.d.ts +38 -0
  592. package/public/hooks/mutations/useDeleteApiSettingMutation.js +39 -0
  593. package/public/hooks/mutations/useDeleteAppLimitCapMutation.d.ts +38 -0
  594. package/public/hooks/mutations/useDeleteAppLimitCapMutation.js +39 -0
  595. package/public/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.d.ts +38 -0
  596. package/public/hooks/mutations/useDeleteAppLimitCapsDefaultMutation.js +39 -0
  597. package/public/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.d.ts +38 -0
  598. package/public/hooks/mutations/useDeleteAppLimitCreditCodeItemMutation.js +39 -0
  599. package/public/hooks/mutations/useDeleteAppLimitCreditCodeMutation.d.ts +38 -0
  600. package/public/hooks/mutations/useDeleteAppLimitCreditCodeMutation.js +39 -0
  601. package/public/hooks/mutations/useDeleteAppLimitCreditMutation.d.ts +38 -0
  602. package/public/hooks/mutations/useDeleteAppLimitCreditMutation.js +39 -0
  603. package/public/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.d.ts +38 -0
  604. package/public/hooks/mutations/useDeleteAppLimitCreditRedemptionMutation.js +39 -0
  605. package/public/hooks/mutations/useDeleteBillingProviderModuleMutation.d.ts +38 -0
  606. package/public/hooks/mutations/useDeleteBillingProviderModuleMutation.js +39 -0
  607. package/public/hooks/mutations/useDeleteCorsSettingMutation.d.ts +38 -0
  608. package/public/hooks/mutations/useDeleteCorsSettingMutation.js +39 -0
  609. package/public/hooks/mutations/useDeleteDatabaseSettingMutation.d.ts +38 -0
  610. package/public/hooks/mutations/useDeleteDatabaseSettingMutation.js +39 -0
  611. package/public/hooks/mutations/useDeleteFunctionMutation.d.ts +38 -0
  612. package/public/hooks/mutations/useDeleteFunctionMutation.js +39 -0
  613. package/public/hooks/mutations/useDeleteOrgLimitCapMutation.d.ts +38 -0
  614. package/public/hooks/mutations/useDeleteOrgLimitCapMutation.js +39 -0
  615. package/public/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.d.ts +38 -0
  616. package/public/hooks/mutations/useDeleteOrgLimitCapsDefaultMutation.js +39 -0
  617. package/public/hooks/mutations/useDeleteOrgLimitCreditMutation.d.ts +38 -0
  618. package/public/hooks/mutations/useDeleteOrgLimitCreditMutation.js +39 -0
  619. package/public/hooks/mutations/useDeletePartitionMutation.d.ts +38 -0
  620. package/public/hooks/mutations/useDeletePartitionMutation.js +39 -0
  621. package/public/hooks/mutations/useDeletePubkeySettingMutation.d.ts +38 -0
  622. package/public/hooks/mutations/useDeletePubkeySettingMutation.js +39 -0
  623. package/public/hooks/mutations/useDeleteRlsSettingMutation.d.ts +38 -0
  624. package/public/hooks/mutations/useDeleteRlsSettingMutation.js +39 -0
  625. package/public/hooks/mutations/useDeleteWebauthnSettingMutation.d.ts +38 -0
  626. package/public/hooks/mutations/useDeleteWebauthnSettingMutation.js +39 -0
  627. package/public/hooks/mutations/useUpdateApiSettingMutation.d.ts +40 -0
  628. package/public/hooks/mutations/useUpdateApiSettingMutation.js +40 -0
  629. package/public/hooks/mutations/useUpdateAppLimitCapMutation.d.ts +40 -0
  630. package/public/hooks/mutations/useUpdateAppLimitCapMutation.js +40 -0
  631. package/public/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.d.ts +40 -0
  632. package/public/hooks/mutations/useUpdateAppLimitCapsDefaultMutation.js +40 -0
  633. package/public/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.d.ts +40 -0
  634. package/public/hooks/mutations/useUpdateAppLimitCreditCodeItemMutation.js +40 -0
  635. package/public/hooks/mutations/useUpdateAppLimitCreditCodeMutation.d.ts +40 -0
  636. package/public/hooks/mutations/useUpdateAppLimitCreditCodeMutation.js +40 -0
  637. package/public/hooks/mutations/useUpdateAppLimitCreditMutation.d.ts +40 -0
  638. package/public/hooks/mutations/useUpdateAppLimitCreditMutation.js +40 -0
  639. package/public/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.d.ts +40 -0
  640. package/public/hooks/mutations/useUpdateAppLimitCreditRedemptionMutation.js +40 -0
  641. package/public/hooks/mutations/useUpdateBillingProviderModuleMutation.d.ts +40 -0
  642. package/public/hooks/mutations/useUpdateBillingProviderModuleMutation.js +40 -0
  643. package/public/hooks/mutations/useUpdateCorsSettingMutation.d.ts +40 -0
  644. package/public/hooks/mutations/useUpdateCorsSettingMutation.js +40 -0
  645. package/public/hooks/mutations/useUpdateDatabaseSettingMutation.d.ts +40 -0
  646. package/public/hooks/mutations/useUpdateDatabaseSettingMutation.js +40 -0
  647. package/public/hooks/mutations/useUpdateFunctionMutation.d.ts +40 -0
  648. package/public/hooks/mutations/useUpdateFunctionMutation.js +40 -0
  649. package/public/hooks/mutations/useUpdateOrgLimitCapMutation.d.ts +40 -0
  650. package/public/hooks/mutations/useUpdateOrgLimitCapMutation.js +40 -0
  651. package/public/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.d.ts +40 -0
  652. package/public/hooks/mutations/useUpdateOrgLimitCapsDefaultMutation.js +40 -0
  653. package/public/hooks/mutations/useUpdateOrgLimitCreditMutation.d.ts +40 -0
  654. package/public/hooks/mutations/useUpdateOrgLimitCreditMutation.js +40 -0
  655. package/public/hooks/mutations/useUpdatePartitionMutation.d.ts +40 -0
  656. package/public/hooks/mutations/useUpdatePartitionMutation.js +40 -0
  657. package/public/hooks/mutations/useUpdatePubkeySettingMutation.d.ts +40 -0
  658. package/public/hooks/mutations/useUpdatePubkeySettingMutation.js +40 -0
  659. package/public/hooks/mutations/useUpdateRlsSettingMutation.d.ts +40 -0
  660. package/public/hooks/mutations/useUpdateRlsSettingMutation.js +40 -0
  661. package/public/hooks/mutations/useUpdateWebauthnSettingMutation.d.ts +40 -0
  662. package/public/hooks/mutations/useUpdateWebauthnSettingMutation.js +40 -0
  663. package/public/hooks/queries/index.d.ts +38 -2
  664. package/public/hooks/queries/index.js +38 -2
  665. package/public/hooks/queries/useApiSettingQuery.d.ts +65 -0
  666. package/public/hooks/queries/useApiSettingQuery.js +53 -0
  667. package/public/hooks/queries/useApiSettingsQuery.d.ts +69 -0
  668. package/public/hooks/queries/useApiSettingsQuery.js +38 -0
  669. package/public/hooks/queries/useAppLimitCapQuery.d.ts +65 -0
  670. package/public/hooks/queries/useAppLimitCapQuery.js +53 -0
  671. package/public/hooks/queries/useAppLimitCapsDefaultQuery.d.ts +65 -0
  672. package/public/hooks/queries/useAppLimitCapsDefaultQuery.js +53 -0
  673. package/public/hooks/queries/useAppLimitCapsDefaultsQuery.d.ts +69 -0
  674. package/public/hooks/queries/useAppLimitCapsDefaultsQuery.js +38 -0
  675. package/public/hooks/queries/useAppLimitCapsQuery.d.ts +69 -0
  676. package/public/hooks/queries/useAppLimitCapsQuery.js +38 -0
  677. package/public/hooks/queries/useAppLimitCreditCodeItemQuery.d.ts +65 -0
  678. package/public/hooks/queries/useAppLimitCreditCodeItemQuery.js +53 -0
  679. package/public/hooks/queries/useAppLimitCreditCodeItemsQuery.d.ts +69 -0
  680. package/public/hooks/queries/useAppLimitCreditCodeItemsQuery.js +38 -0
  681. package/public/hooks/queries/useAppLimitCreditCodeQuery.d.ts +65 -0
  682. package/public/hooks/queries/useAppLimitCreditCodeQuery.js +53 -0
  683. package/public/hooks/queries/useAppLimitCreditCodesQuery.d.ts +69 -0
  684. package/public/hooks/queries/useAppLimitCreditCodesQuery.js +38 -0
  685. package/public/hooks/queries/useAppLimitCreditQuery.d.ts +65 -0
  686. package/public/hooks/queries/useAppLimitCreditQuery.js +53 -0
  687. package/public/hooks/queries/useAppLimitCreditRedemptionQuery.d.ts +65 -0
  688. package/public/hooks/queries/useAppLimitCreditRedemptionQuery.js +53 -0
  689. package/public/hooks/queries/useAppLimitCreditRedemptionsQuery.d.ts +69 -0
  690. package/public/hooks/queries/useAppLimitCreditRedemptionsQuery.js +38 -0
  691. package/public/hooks/queries/useAppLimitCreditsQuery.d.ts +69 -0
  692. package/public/hooks/queries/useAppLimitCreditsQuery.js +38 -0
  693. package/public/hooks/queries/useBillingProviderModuleQuery.d.ts +65 -0
  694. package/public/hooks/queries/useBillingProviderModuleQuery.js +53 -0
  695. package/public/hooks/queries/useBillingProviderModulesQuery.d.ts +69 -0
  696. package/public/hooks/queries/useBillingProviderModulesQuery.js +38 -0
  697. package/public/hooks/queries/useCorsSettingQuery.d.ts +65 -0
  698. package/public/hooks/queries/useCorsSettingQuery.js +53 -0
  699. package/public/hooks/queries/useCorsSettingsQuery.d.ts +69 -0
  700. package/public/hooks/queries/useCorsSettingsQuery.js +38 -0
  701. package/public/hooks/queries/useDatabaseSettingQuery.d.ts +65 -0
  702. package/public/hooks/queries/useDatabaseSettingQuery.js +53 -0
  703. package/public/hooks/queries/useDatabaseSettingsQuery.d.ts +69 -0
  704. package/public/hooks/queries/useDatabaseSettingsQuery.js +38 -0
  705. package/public/hooks/queries/useFunctionQuery.d.ts +65 -0
  706. package/public/hooks/queries/useFunctionQuery.js +53 -0
  707. package/public/hooks/queries/useFunctionsQuery.d.ts +69 -0
  708. package/public/hooks/queries/useFunctionsQuery.js +38 -0
  709. package/public/hooks/queries/useOrgLimitCapQuery.d.ts +65 -0
  710. package/public/hooks/queries/useOrgLimitCapQuery.js +53 -0
  711. package/public/hooks/queries/useOrgLimitCapsDefaultQuery.d.ts +65 -0
  712. package/public/hooks/queries/useOrgLimitCapsDefaultQuery.js +53 -0
  713. package/public/hooks/queries/useOrgLimitCapsDefaultsQuery.d.ts +69 -0
  714. package/public/hooks/queries/useOrgLimitCapsDefaultsQuery.js +38 -0
  715. package/public/hooks/queries/useOrgLimitCapsQuery.d.ts +69 -0
  716. package/public/hooks/queries/useOrgLimitCapsQuery.js +38 -0
  717. package/public/hooks/queries/useOrgLimitCreditQuery.d.ts +65 -0
  718. package/public/hooks/queries/useOrgLimitCreditQuery.js +53 -0
  719. package/public/hooks/queries/useOrgLimitCreditsQuery.d.ts +69 -0
  720. package/public/hooks/queries/useOrgLimitCreditsQuery.js +38 -0
  721. package/public/hooks/queries/usePartitionQuery.d.ts +65 -0
  722. package/public/hooks/queries/usePartitionQuery.js +53 -0
  723. package/public/hooks/queries/usePartitionsQuery.d.ts +69 -0
  724. package/public/hooks/queries/usePartitionsQuery.js +38 -0
  725. package/public/hooks/queries/usePubkeySettingQuery.d.ts +65 -0
  726. package/public/hooks/queries/usePubkeySettingQuery.js +53 -0
  727. package/public/hooks/queries/usePubkeySettingsQuery.d.ts +69 -0
  728. package/public/hooks/queries/usePubkeySettingsQuery.js +38 -0
  729. package/public/hooks/queries/useRlsSettingQuery.d.ts +65 -0
  730. package/public/hooks/queries/useRlsSettingQuery.js +53 -0
  731. package/public/hooks/queries/useRlsSettingsQuery.d.ts +69 -0
  732. package/public/hooks/queries/useRlsSettingsQuery.js +38 -0
  733. package/public/hooks/queries/useWebauthnSettingQuery.d.ts +65 -0
  734. package/public/hooks/queries/useWebauthnSettingQuery.js +53 -0
  735. package/public/hooks/queries/useWebauthnSettingsQuery.d.ts +69 -0
  736. package/public/hooks/queries/useWebauthnSettingsQuery.js +38 -0
  737. package/public/hooks/query-keys.d.ts +266 -14
  738. package/public/hooks/query-keys.js +155 -11
  739. package/public/orm/index.d.ts +43 -7
  740. package/public/orm/index.js +38 -2
  741. package/public/orm/input-types.d.ts +4601 -321
  742. package/public/orm/input-types.js +21 -0
  743. package/public/orm/models/apiSetting.d.ts +56 -0
  744. package/public/orm/models/apiSetting.js +100 -0
  745. package/public/orm/models/appLimitCap.d.ts +56 -0
  746. package/public/orm/models/appLimitCap.js +100 -0
  747. package/public/orm/models/appLimitCapsDefault.d.ts +56 -0
  748. package/public/orm/models/appLimitCapsDefault.js +100 -0
  749. package/public/orm/models/appLimitCredit.d.ts +56 -0
  750. package/public/orm/models/appLimitCredit.js +100 -0
  751. package/public/orm/models/appLimitCreditCode.d.ts +56 -0
  752. package/public/orm/models/appLimitCreditCode.js +100 -0
  753. package/public/orm/models/appLimitCreditCodeItem.d.ts +56 -0
  754. package/public/orm/models/appLimitCreditCodeItem.js +100 -0
  755. package/public/orm/models/appLimitCreditRedemption.d.ts +56 -0
  756. package/public/orm/models/appLimitCreditRedemption.js +100 -0
  757. package/public/orm/models/billingProviderModule.d.ts +56 -0
  758. package/public/orm/models/billingProviderModule.js +100 -0
  759. package/public/orm/models/corsSetting.d.ts +56 -0
  760. package/public/orm/models/corsSetting.js +100 -0
  761. package/public/orm/models/databaseSetting.d.ts +56 -0
  762. package/public/orm/models/databaseSetting.js +100 -0
  763. package/public/orm/models/function.d.ts +56 -0
  764. package/public/orm/models/function.js +100 -0
  765. package/public/orm/models/index.d.ts +19 -1
  766. package/public/orm/models/index.js +41 -5
  767. package/public/orm/models/orgLimitCap.d.ts +56 -0
  768. package/public/orm/models/orgLimitCap.js +100 -0
  769. package/public/orm/models/orgLimitCapsDefault.d.ts +56 -0
  770. package/public/orm/models/orgLimitCapsDefault.js +100 -0
  771. package/public/orm/models/orgLimitCredit.d.ts +56 -0
  772. package/public/orm/models/orgLimitCredit.js +100 -0
  773. package/public/orm/models/partition.d.ts +56 -0
  774. package/public/orm/models/partition.js +100 -0
  775. package/public/orm/models/pubkeySetting.d.ts +56 -0
  776. package/public/orm/models/pubkeySetting.js +100 -0
  777. package/public/orm/models/rlsSetting.d.ts +56 -0
  778. package/public/orm/models/rlsSetting.js +100 -0
  779. package/public/orm/models/webauthnSetting.d.ts +56 -0
  780. package/public/orm/models/webauthnSetting.js +100 -0
  781. package/public/orm/mutation/index.d.ts +9 -16
  782. package/public/orm/mutation/index.js +12 -12
  783. package/public/orm/query-builder.js +24 -0
  784. package/public/schema-types.d.ts +3326 -877
  785. package/public/types.d.ts +221 -13
  786. package/admin/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  787. package/auth/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  788. package/esm/admin/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  789. package/esm/auth/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  790. package/esm/auth/hooks/mutations/useRequestUploadUrlMutation.js +0 -23
  791. package/esm/objects/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  792. package/esm/objects/hooks/mutations/useRequestUploadUrlMutation.js +0 -23
  793. package/esm/public/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  794. package/esm/public/hooks/mutations/useRequestUploadUrlMutation.js +0 -23
  795. package/objects/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
  796. package/public/hooks/mutations/useRequestUploadUrlMutation.d.ts +0 -20
@@ -3,13 +3,21 @@
3
3
  * @generated by @constructive-io/graphql-codegen
4
4
  * DO NOT EDIT - changes will be overwritten
5
5
  */
6
- import type { AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitDefault, AppLimitEvent, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitAggregate, OrgLimitDefault, OrgLimitEvent, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgMembershipSetting, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, BigIntFilter, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, StringFilter, UUIDFilter } from './types';
6
+ import type { AppAchievement, AppAdminGrant, AppClaimedInvite, AppGrant, AppInvite, AppLevel, AppLevelRequirement, AppLimit, AppLimitCap, AppLimitCapsDefault, AppLimitCredit, AppLimitCreditCode, AppLimitCreditCodeItem, AppLimitCreditRedemption, AppLimitDefault, AppLimitEvent, AppMembership, AppMembershipDefault, AppOwnerGrant, AppPermission, AppPermissionDefault, AppStep, MembershipType, OrgAdminGrant, OrgChartEdge, OrgChartEdgeGrant, OrgClaimedInvite, OrgGetManagersRecord, OrgGetSubordinatesRecord, OrgGrant, OrgInvite, OrgLimit, OrgLimitAggregate, OrgLimitCap, OrgLimitCapsDefault, OrgLimitCredit, OrgLimitDefault, OrgLimitEvent, OrgMember, OrgMemberProfile, OrgMembership, OrgMembershipDefault, OrgMembershipSetting, OrgOwnerGrant, OrgPermission, OrgPermissionDefault, BigIntFilter, BitStringFilter, BooleanFilter, DatetimeFilter, IntFilter, StringFilter, UUIDFilter } from './types';
7
7
  export type ConstructiveInternalTypeEmail = unknown;
8
8
  export type ConstructiveInternalTypeImage = unknown;
9
+ /** Methods to use when ordering `AppLimitCredit`. */
10
+ export type AppLimitCreditOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC' | 'REASON_ASC' | 'REASON_DESC';
11
+ /** Methods to use when ordering `AppLimitCreditCodeItem`. */
12
+ export type AppLimitCreditCodeItemOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREDIT_CODE_ID_ASC' | 'CREDIT_CODE_ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC';
13
+ /** Methods to use when ordering `AppLimitCreditRedemption`. */
14
+ export type AppLimitCreditRedemptionOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREDIT_CODE_ID_ASC' | 'CREDIT_CODE_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
9
15
  /** Methods to use when ordering `OrgMember`. */
10
16
  export type OrgMemberOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'IS_ADMIN_ASC' | 'IS_ADMIN_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
11
17
  /** Methods to use when ordering `AppPermissionDefault`. */
12
18
  export type AppPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC';
19
+ /** Methods to use when ordering `AppLimitCreditCode`. */
20
+ export type AppLimitCreditCodeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CODE_ASC' | 'CODE_DESC' | 'MAX_REDEMPTIONS_ASC' | 'MAX_REDEMPTIONS_DESC' | 'CURRENT_REDEMPTIONS_ASC' | 'CURRENT_REDEMPTIONS_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC';
13
21
  /** Methods to use when ordering `OrgPermissionDefault`. */
14
22
  export type OrgPermissionDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'PERMISSIONS_ASC' | 'PERMISSIONS_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
15
23
  /** Methods to use when ordering `AppPermission`. */
@@ -24,6 +32,14 @@ export type AppOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
24
32
  export type AppAchievementOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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';
25
33
  /** Methods to use when ordering `AppStep`. */
26
34
  export type AppStepOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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';
35
+ /** Methods to use when ordering `AppLimitCapsDefault`. */
36
+ export type AppLimitCapsDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
37
+ /** Methods to use when ordering `OrgLimitCapsDefault`. */
38
+ export type OrgLimitCapsDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC';
39
+ /** Methods to use when ordering `AppLimitCap`. */
40
+ export type AppLimitCapOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'MAX_ASC' | 'MAX_DESC';
41
+ /** Methods to use when ordering `OrgLimitCap`. */
42
+ export type OrgLimitCapOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'MAX_ASC' | 'MAX_DESC';
27
43
  /** Methods to use when ordering `OrgAdminGrant`. */
28
44
  export type OrgAdminGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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';
29
45
  /** Methods to use when ordering `OrgOwnerGrant`. */
@@ -32,6 +48,8 @@ export type OrgOwnerGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_
32
48
  export type MembershipTypeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'DESCRIPTION_ASC' | 'DESCRIPTION_DESC' | 'PREFIX_ASC' | 'PREFIX_DESC' | 'PARENT_MEMBERSHIP_TYPE_ASC' | 'PARENT_MEMBERSHIP_TYPE_DESC' | 'HAS_USERS_TABLE_ENTRY_ASC' | 'HAS_USERS_TABLE_ENTRY_DESC';
33
49
  /** Methods to use when ordering `AppLimitDefault`. */
34
50
  export type AppLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
51
+ /** Methods to use when ordering `OrgLimitCredit`. */
52
+ export type OrgLimitCreditOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'DEFAULT_LIMIT_ID_ASC' | 'DEFAULT_LIMIT_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'AMOUNT_ASC' | 'AMOUNT_DESC' | 'CREDIT_TYPE_ASC' | 'CREDIT_TYPE_DESC' | 'REASON_ASC' | 'REASON_DESC';
35
53
  /** Methods to use when ordering `OrgLimitDefault`. */
36
54
  export type OrgLimitDefaultOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC';
37
55
  /** Methods to use when ordering `AppLevelRequirement`. */
@@ -56,26 +74,177 @@ export type OrgLimitEventOrderBy = 'NATURAL' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR
56
74
  export type OrgGrantOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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';
57
75
  /** Methods to use when ordering `OrgChartEdge`. */
58
76
  export type OrgChartEdgeOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'CHILD_ID_ASC' | 'CHILD_ID_DESC' | 'PARENT_ID_ASC' | 'PARENT_ID_DESC' | 'POSITION_TITLE_ASC' | 'POSITION_TITLE_DESC' | 'POSITION_LEVEL_ASC' | 'POSITION_LEVEL_DESC';
59
- /** Methods to use when ordering `AppLimit`. */
60
- export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC';
61
- /** Methods to use when ordering `OrgLimitAggregate`. */
62
- export type OrgLimitAggregateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC';
63
77
  /** Methods to use when ordering `OrgMemberProfile`. */
64
78
  export type OrgMemberProfileOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC' | 'MEMBERSHIP_ID_ASC' | 'MEMBERSHIP_ID_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'DISPLAY_NAME_ASC' | 'DISPLAY_NAME_DESC' | 'EMAIL_ASC' | 'EMAIL_DESC' | 'TITLE_ASC' | 'TITLE_DESC' | 'BIO_ASC' | 'BIO_DESC' | 'PROFILE_PICTURE_ASC' | 'PROFILE_PICTURE_DESC';
65
- /** Methods to use when ordering `OrgLimit`. */
66
- export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
67
79
  /** Methods to use when ordering `AppLevel`. */
68
80
  export type AppLevelOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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';
81
+ /** Methods to use when ordering `AppLimit`. */
82
+ export type AppLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC';
69
83
  /** Methods to use when ordering `AppInvite`. */
70
84
  export type AppInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC' | 'EXPIRES_AT_ASC' | 'EXPIRES_AT_DESC' | 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
71
85
  /** Methods to use when ordering `OrgMembershipSetting`. */
72
86
  export type OrgMembershipSettingOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'DELETE_MEMBER_CASCADE_CHILDREN_ASC' | 'DELETE_MEMBER_CASCADE_CHILDREN_DESC' | 'CREATE_CHILD_CASCADE_OWNERS_ASC' | 'CREATE_CHILD_CASCADE_OWNERS_DESC' | 'CREATE_CHILD_CASCADE_ADMINS_ASC' | 'CREATE_CHILD_CASCADE_ADMINS_DESC' | 'CREATE_CHILD_CASCADE_MEMBERS_ASC' | 'CREATE_CHILD_CASCADE_MEMBERS_DESC' | 'ALLOW_EXTERNAL_MEMBERS_ASC' | 'ALLOW_EXTERNAL_MEMBERS_DESC' | 'INVITE_PROFILE_ASSIGNMENT_MODE_ASC' | 'INVITE_PROFILE_ASSIGNMENT_MODE_DESC' | 'POPULATE_MEMBER_EMAIL_ASC' | 'POPULATE_MEMBER_EMAIL_DESC' | 'LIMIT_ALLOCATION_MODE_ASC' | 'LIMIT_ALLOCATION_MODE_DESC';
87
+ /** Methods to use when ordering `OrgLimitAggregate`. */
88
+ export type OrgLimitAggregateOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'RESERVED_ASC' | 'RESERVED_DESC';
89
+ /** Methods to use when ordering `OrgLimit`. */
90
+ export type OrgLimitOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | 'ID_ASC' | 'ID_DESC' | 'NAME_ASC' | 'NAME_DESC' | 'ACTOR_ID_ASC' | 'ACTOR_ID_DESC' | 'NUM_ASC' | 'NUM_DESC' | 'MAX_ASC' | 'MAX_DESC' | 'SOFT_MAX_ASC' | 'SOFT_MAX_DESC' | 'WINDOW_START_ASC' | 'WINDOW_START_DESC' | 'WINDOW_DURATION_ASC' | 'WINDOW_DURATION_DESC' | 'PLAN_MAX_ASC' | 'PLAN_MAX_DESC' | 'PURCHASED_CREDITS_ASC' | 'PURCHASED_CREDITS_DESC' | 'PERIOD_CREDITS_ASC' | 'PERIOD_CREDITS_DESC' | 'ENTITY_ID_ASC' | 'ENTITY_ID_DESC';
73
91
  /** Methods to use when ordering `OrgInvite`. */
74
92
  export type OrgInviteOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'PROFILE_ID_ASC' | 'PROFILE_ID_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';
75
93
  /** Methods to use when ordering `AppMembership`. */
76
94
  export type AppMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
77
95
  /** Methods to use when ordering `OrgMembership`. */
78
96
  export type OrgMembershipOrderBy = 'NATURAL' | 'PRIMARY_KEY_ASC' | 'PRIMARY_KEY_DESC' | '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_EXTERNAL_ASC' | 'IS_EXTERNAL_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' | 'IS_READ_ONLY_ASC' | 'IS_READ_ONLY_DESC' | 'PROFILE_ID_ASC' | 'PROFILE_ID_DESC';
97
+ /** A filter to be used against `AppLimitCredit` object types. All fields are combined with a logical ‘and.’ */
98
+ export interface AppLimitCreditFilter {
99
+ /** Filter by the object’s `id` field. */
100
+ id?: UUIDFilter;
101
+ /** Filter by the object’s `defaultLimitId` field. */
102
+ defaultLimitId?: UUIDFilter;
103
+ /** Filter by the object’s `actorId` field. */
104
+ actorId?: UUIDFilter;
105
+ /** Filter by the object’s `amount` field. */
106
+ amount?: BigIntFilter;
107
+ /** Filter by the object’s `creditType` field. */
108
+ creditType?: StringFilter;
109
+ /** Filter by the object’s `reason` field. */
110
+ reason?: StringFilter;
111
+ /** Checks for all expressions in this list. */
112
+ and?: AppLimitCreditFilter[];
113
+ /** Checks for any expressions in this list. */
114
+ or?: AppLimitCreditFilter[];
115
+ /** Negates the expression. */
116
+ not?: AppLimitCreditFilter;
117
+ /** Filter by the object’s `defaultLimit` relation. */
118
+ defaultLimit?: AppLimitDefaultFilter;
119
+ }
120
+ /** A filter to be used against `AppLimitDefault` object types. All fields are combined with a logical ‘and.’ */
121
+ export interface AppLimitDefaultFilter {
122
+ /** Filter by the object’s `id` field. */
123
+ id?: UUIDFilter;
124
+ /** Filter by the object’s `name` field. */
125
+ name?: StringFilter;
126
+ /** Filter by the object’s `max` field. */
127
+ max?: BigIntFilter;
128
+ /** Filter by the object’s `softMax` field. */
129
+ softMax?: BigIntFilter;
130
+ /** Checks for all expressions in this list. */
131
+ and?: AppLimitDefaultFilter[];
132
+ /** Checks for any expressions in this list. */
133
+ or?: AppLimitDefaultFilter[];
134
+ /** Negates the expression. */
135
+ not?: AppLimitDefaultFilter;
136
+ /** Filter by the object’s `appLimitCreditsByDefaultLimitId` relation. */
137
+ appLimitCreditsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditFilter;
138
+ /** `appLimitCreditsByDefaultLimitId` exist. */
139
+ appLimitCreditsByDefaultLimitIdExist?: boolean;
140
+ /** Filter by the object’s `appLimitCreditCodeItemsByDefaultLimitId` relation. */
141
+ appLimitCreditCodeItemsByDefaultLimitId?: AppLimitDefaultToManyAppLimitCreditCodeItemFilter;
142
+ /** `appLimitCreditCodeItemsByDefaultLimitId` exist. */
143
+ appLimitCreditCodeItemsByDefaultLimitIdExist?: boolean;
144
+ }
145
+ /** A filter to be used against many `AppLimitCredit` object types. All fields are combined with a logical ‘and.’ */
146
+ export interface AppLimitDefaultToManyAppLimitCreditFilter {
147
+ /** Filters to entities where at least one related entity matches. */
148
+ some?: AppLimitCreditFilter;
149
+ /** Filters to entities where every related entity matches. */
150
+ every?: AppLimitCreditFilter;
151
+ /** Filters to entities where no related entity matches. */
152
+ none?: AppLimitCreditFilter;
153
+ }
154
+ /** A filter to be used against many `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
155
+ export interface AppLimitDefaultToManyAppLimitCreditCodeItemFilter {
156
+ /** Filters to entities where at least one related entity matches. */
157
+ some?: AppLimitCreditCodeItemFilter;
158
+ /** Filters to entities where every related entity matches. */
159
+ every?: AppLimitCreditCodeItemFilter;
160
+ /** Filters to entities where no related entity matches. */
161
+ none?: AppLimitCreditCodeItemFilter;
162
+ }
163
+ /** A filter to be used against `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
164
+ export interface AppLimitCreditCodeItemFilter {
165
+ /** Filter by the object’s `id` field. */
166
+ id?: UUIDFilter;
167
+ /** Filter by the object’s `creditCodeId` field. */
168
+ creditCodeId?: UUIDFilter;
169
+ /** Filter by the object’s `defaultLimitId` field. */
170
+ defaultLimitId?: UUIDFilter;
171
+ /** Filter by the object’s `amount` field. */
172
+ amount?: BigIntFilter;
173
+ /** Filter by the object’s `creditType` field. */
174
+ creditType?: StringFilter;
175
+ /** Checks for all expressions in this list. */
176
+ and?: AppLimitCreditCodeItemFilter[];
177
+ /** Checks for any expressions in this list. */
178
+ or?: AppLimitCreditCodeItemFilter[];
179
+ /** Negates the expression. */
180
+ not?: AppLimitCreditCodeItemFilter;
181
+ /** Filter by the object’s `creditCode` relation. */
182
+ creditCode?: AppLimitCreditCodeFilter;
183
+ /** Filter by the object’s `defaultLimit` relation. */
184
+ defaultLimit?: AppLimitDefaultFilter;
185
+ }
186
+ /** A filter to be used against `AppLimitCreditCode` object types. All fields are combined with a logical ‘and.’ */
187
+ export interface AppLimitCreditCodeFilter {
188
+ /** Filter by the object’s `id` field. */
189
+ id?: UUIDFilter;
190
+ /** Filter by the object’s `code` field. */
191
+ code?: StringFilter;
192
+ /** Filter by the object’s `maxRedemptions` field. */
193
+ maxRedemptions?: IntFilter;
194
+ /** Filter by the object’s `currentRedemptions` field. */
195
+ currentRedemptions?: IntFilter;
196
+ /** Filter by the object’s `expiresAt` field. */
197
+ expiresAt?: DatetimeFilter;
198
+ /** Checks for all expressions in this list. */
199
+ and?: AppLimitCreditCodeFilter[];
200
+ /** Checks for any expressions in this list. */
201
+ or?: AppLimitCreditCodeFilter[];
202
+ /** Negates the expression. */
203
+ not?: AppLimitCreditCodeFilter;
204
+ /** Filter by the object’s `appLimitCreditCodeItemsByCreditCodeId` relation. */
205
+ appLimitCreditCodeItemsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditCodeItemFilter;
206
+ /** `appLimitCreditCodeItemsByCreditCodeId` exist. */
207
+ appLimitCreditCodeItemsByCreditCodeIdExist?: boolean;
208
+ /** Filter by the object’s `appLimitCreditRedemptionsByCreditCodeId` relation. */
209
+ appLimitCreditRedemptionsByCreditCodeId?: AppLimitCreditCodeToManyAppLimitCreditRedemptionFilter;
210
+ /** `appLimitCreditRedemptionsByCreditCodeId` exist. */
211
+ appLimitCreditRedemptionsByCreditCodeIdExist?: boolean;
212
+ }
213
+ /** A filter to be used against many `AppLimitCreditCodeItem` object types. All fields are combined with a logical ‘and.’ */
214
+ export interface AppLimitCreditCodeToManyAppLimitCreditCodeItemFilter {
215
+ /** Filters to entities where at least one related entity matches. */
216
+ some?: AppLimitCreditCodeItemFilter;
217
+ /** Filters to entities where every related entity matches. */
218
+ every?: AppLimitCreditCodeItemFilter;
219
+ /** Filters to entities where no related entity matches. */
220
+ none?: AppLimitCreditCodeItemFilter;
221
+ }
222
+ /** A filter to be used against many `AppLimitCreditRedemption` object types. All fields are combined with a logical ‘and.’ */
223
+ export interface AppLimitCreditCodeToManyAppLimitCreditRedemptionFilter {
224
+ /** Filters to entities where at least one related entity matches. */
225
+ some?: AppLimitCreditRedemptionFilter;
226
+ /** Filters to entities where every related entity matches. */
227
+ every?: AppLimitCreditRedemptionFilter;
228
+ /** Filters to entities where no related entity matches. */
229
+ none?: AppLimitCreditRedemptionFilter;
230
+ }
231
+ /** A filter to be used against `AppLimitCreditRedemption` object types. All fields are combined with a logical ‘and.’ */
232
+ export interface AppLimitCreditRedemptionFilter {
233
+ /** Filter by the object’s `id` field. */
234
+ id?: UUIDFilter;
235
+ /** Filter by the object’s `creditCodeId` field. */
236
+ creditCodeId?: UUIDFilter;
237
+ /** Filter by the object’s `entityId` field. */
238
+ entityId?: UUIDFilter;
239
+ /** Checks for all expressions in this list. */
240
+ and?: AppLimitCreditRedemptionFilter[];
241
+ /** Checks for any expressions in this list. */
242
+ or?: AppLimitCreditRedemptionFilter[];
243
+ /** Negates the expression. */
244
+ not?: AppLimitCreditRedemptionFilter;
245
+ /** Filter by the object’s `creditCode` relation. */
246
+ creditCode?: AppLimitCreditCodeFilter;
247
+ }
79
248
  /** A filter to be used against `OrgMember` object types. All fields are combined with a logical ‘and.’ */
80
249
  export interface OrgMemberFilter {
81
250
  /** Filter by the object’s `id` field. */
@@ -243,6 +412,70 @@ export interface AppStepFilter {
243
412
  /** Negates the expression. */
244
413
  not?: AppStepFilter;
245
414
  }
415
+ /** A filter to be used against `AppLimitCapsDefault` object types. All fields are combined with a logical ‘and.’ */
416
+ export interface AppLimitCapsDefaultFilter {
417
+ /** Filter by the object’s `id` field. */
418
+ id?: UUIDFilter;
419
+ /** Filter by the object’s `name` field. */
420
+ name?: StringFilter;
421
+ /** Filter by the object’s `max` field. */
422
+ max?: BigIntFilter;
423
+ /** Checks for all expressions in this list. */
424
+ and?: AppLimitCapsDefaultFilter[];
425
+ /** Checks for any expressions in this list. */
426
+ or?: AppLimitCapsDefaultFilter[];
427
+ /** Negates the expression. */
428
+ not?: AppLimitCapsDefaultFilter;
429
+ }
430
+ /** A filter to be used against `OrgLimitCapsDefault` object types. All fields are combined with a logical ‘and.’ */
431
+ export interface OrgLimitCapsDefaultFilter {
432
+ /** Filter by the object’s `id` field. */
433
+ id?: UUIDFilter;
434
+ /** Filter by the object’s `name` field. */
435
+ name?: StringFilter;
436
+ /** Filter by the object’s `max` field. */
437
+ max?: BigIntFilter;
438
+ /** Checks for all expressions in this list. */
439
+ and?: OrgLimitCapsDefaultFilter[];
440
+ /** Checks for any expressions in this list. */
441
+ or?: OrgLimitCapsDefaultFilter[];
442
+ /** Negates the expression. */
443
+ not?: OrgLimitCapsDefaultFilter;
444
+ }
445
+ /** A filter to be used against `AppLimitCap` object types. All fields are combined with a logical ‘and.’ */
446
+ export interface AppLimitCapFilter {
447
+ /** Filter by the object’s `id` field. */
448
+ id?: UUIDFilter;
449
+ /** Filter by the object’s `name` field. */
450
+ name?: StringFilter;
451
+ /** Filter by the object’s `entityId` field. */
452
+ entityId?: UUIDFilter;
453
+ /** Filter by the object’s `max` field. */
454
+ max?: BigIntFilter;
455
+ /** Checks for all expressions in this list. */
456
+ and?: AppLimitCapFilter[];
457
+ /** Checks for any expressions in this list. */
458
+ or?: AppLimitCapFilter[];
459
+ /** Negates the expression. */
460
+ not?: AppLimitCapFilter;
461
+ }
462
+ /** A filter to be used against `OrgLimitCap` object types. All fields are combined with a logical ‘and.’ */
463
+ export interface OrgLimitCapFilter {
464
+ /** Filter by the object’s `id` field. */
465
+ id?: UUIDFilter;
466
+ /** Filter by the object’s `name` field. */
467
+ name?: StringFilter;
468
+ /** Filter by the object’s `entityId` field. */
469
+ entityId?: UUIDFilter;
470
+ /** Filter by the object’s `max` field. */
471
+ max?: BigIntFilter;
472
+ /** Checks for all expressions in this list. */
473
+ and?: OrgLimitCapFilter[];
474
+ /** Checks for any expressions in this list. */
475
+ or?: OrgLimitCapFilter[];
476
+ /** Negates the expression. */
477
+ not?: OrgLimitCapFilter;
478
+ }
246
479
  /** A filter to be used against `OrgAdminGrant` object types. All fields are combined with a logical ‘and.’ */
247
480
  export interface OrgAdminGrantFilter {
248
481
  /** Filter by the object’s `id` field. */
@@ -310,22 +543,30 @@ export interface MembershipTypeFilter {
310
543
  /** Negates the expression. */
311
544
  not?: MembershipTypeFilter;
312
545
  }
313
- /** A filter to be used against `AppLimitDefault` object types. All fields are combined with a logical ‘and.’ */
314
- export interface AppLimitDefaultFilter {
546
+ /** A filter to be used against `OrgLimitCredit` object types. All fields are combined with a logical ‘and.’ */
547
+ export interface OrgLimitCreditFilter {
315
548
  /** Filter by the object’s `id` field. */
316
549
  id?: UUIDFilter;
317
- /** Filter by the object’s `name` field. */
318
- name?: StringFilter;
319
- /** Filter by the object’s `max` field. */
320
- max?: BigIntFilter;
321
- /** Filter by the object’s `softMax` field. */
322
- softMax?: BigIntFilter;
550
+ /** Filter by the object’s `defaultLimitId` field. */
551
+ defaultLimitId?: UUIDFilter;
552
+ /** Filter by the object’s `actorId` field. */
553
+ actorId?: UUIDFilter;
554
+ /** Filter by the object’s `entityId` field. */
555
+ entityId?: UUIDFilter;
556
+ /** Filter by the object’s `amount` field. */
557
+ amount?: BigIntFilter;
558
+ /** Filter by the object’s `creditType` field. */
559
+ creditType?: StringFilter;
560
+ /** Filter by the object’s `reason` field. */
561
+ reason?: StringFilter;
323
562
  /** Checks for all expressions in this list. */
324
- and?: AppLimitDefaultFilter[];
563
+ and?: OrgLimitCreditFilter[];
325
564
  /** Checks for any expressions in this list. */
326
- or?: AppLimitDefaultFilter[];
565
+ or?: OrgLimitCreditFilter[];
327
566
  /** Negates the expression. */
328
- not?: AppLimitDefaultFilter;
567
+ not?: OrgLimitCreditFilter;
568
+ /** Filter by the object’s `defaultLimit` relation. */
569
+ defaultLimit?: OrgLimitDefaultFilter;
329
570
  }
330
571
  /** A filter to be used against `OrgLimitDefault` object types. All fields are combined with a logical ‘and.’ */
331
572
  export interface OrgLimitDefaultFilter {
@@ -343,6 +584,19 @@ export interface OrgLimitDefaultFilter {
343
584
  or?: OrgLimitDefaultFilter[];
344
585
  /** Negates the expression. */
345
586
  not?: OrgLimitDefaultFilter;
587
+ /** Filter by the object’s `orgLimitCreditsByDefaultLimitId` relation. */
588
+ orgLimitCreditsByDefaultLimitId?: OrgLimitDefaultToManyOrgLimitCreditFilter;
589
+ /** `orgLimitCreditsByDefaultLimitId` exist. */
590
+ orgLimitCreditsByDefaultLimitIdExist?: boolean;
591
+ }
592
+ /** A filter to be used against many `OrgLimitCredit` object types. All fields are combined with a logical ‘and.’ */
593
+ export interface OrgLimitDefaultToManyOrgLimitCreditFilter {
594
+ /** Filters to entities where at least one related entity matches. */
595
+ some?: OrgLimitCreditFilter;
596
+ /** Filters to entities where every related entity matches. */
597
+ every?: OrgLimitCreditFilter;
598
+ /** Filters to entities where no related entity matches. */
599
+ none?: OrgLimitCreditFilter;
346
600
  }
347
601
  /** A filter to be used against `AppLevelRequirement` object types. All fields are combined with a logical ‘and.’ */
348
602
  export interface AppLevelRequirementFilter {
@@ -609,100 +863,6 @@ export interface OrgChartEdgeFilter {
609
863
  /** Negates the expression. */
610
864
  not?: OrgChartEdgeFilter;
611
865
  }
612
- /** A filter to be used against `AppLimit` object types. All fields are combined with a logical ‘and.’ */
613
- export interface AppLimitFilter {
614
- /** Filter by the object’s `id` field. */
615
- id?: UUIDFilter;
616
- /** Filter by the object’s `name` field. */
617
- name?: StringFilter;
618
- /** Filter by the object’s `actorId` field. */
619
- actorId?: UUIDFilter;
620
- /** Filter by the object’s `num` field. */
621
- num?: BigIntFilter;
622
- /** Filter by the object’s `max` field. */
623
- max?: BigIntFilter;
624
- /** Filter by the object’s `softMax` field. */
625
- softMax?: BigIntFilter;
626
- /** Filter by the object’s `windowStart` field. */
627
- windowStart?: DatetimeFilter;
628
- /** Filter by the object’s `windowDuration` field. */
629
- windowDuration?: IntervalFilter;
630
- /** Checks for all expressions in this list. */
631
- and?: AppLimitFilter[];
632
- /** Checks for any expressions in this list. */
633
- or?: AppLimitFilter[];
634
- /** Negates the expression. */
635
- not?: AppLimitFilter;
636
- }
637
- /** A filter to be used against Interval fields. All fields are combined with a logical ‘and.’ */
638
- export interface IntervalFilter {
639
- /** Is null (if `true` is specified) or is not null (if `false` is specified). */
640
- isNull?: boolean;
641
- /** Equal to the specified value. */
642
- equalTo?: IntervalInput;
643
- /** Not equal to the specified value. */
644
- notEqualTo?: IntervalInput;
645
- /** Not equal to the specified value, treating null like an ordinary value. */
646
- distinctFrom?: IntervalInput;
647
- /** Equal to the specified value, treating null like an ordinary value. */
648
- notDistinctFrom?: IntervalInput;
649
- /** Included in the specified list. */
650
- in?: IntervalInput[];
651
- /** Not included in the specified list. */
652
- notIn?: IntervalInput[];
653
- /** Less than the specified value. */
654
- lessThan?: IntervalInput;
655
- /** Less than or equal to the specified value. */
656
- lessThanOrEqualTo?: IntervalInput;
657
- /** Greater than the specified value. */
658
- greaterThan?: IntervalInput;
659
- /** Greater than or equal to the specified value. */
660
- greaterThanOrEqualTo?: IntervalInput;
661
- }
662
- /** An interval of time that has passed where the smallest distinct unit is a second. */
663
- export interface IntervalInput {
664
- /**
665
- * A quantity of seconds. This is the only non-integer field, as all the other
666
- * fields will dump their overflow into a smaller unit of time. Intervals don’t
667
- * have a smaller unit than seconds.
668
- */
669
- seconds?: number;
670
- /** A quantity of minutes. */
671
- minutes?: number;
672
- /** A quantity of hours. */
673
- hours?: number;
674
- /** A quantity of days. */
675
- days?: number;
676
- /** A quantity of months. */
677
- months?: number;
678
- /** A quantity of years. */
679
- years?: number;
680
- }
681
- /** A filter to be used against `OrgLimitAggregate` object types. All fields are combined with a logical ‘and.’ */
682
- export interface OrgLimitAggregateFilter {
683
- /** Filter by the object’s `id` field. */
684
- id?: UUIDFilter;
685
- /** Filter by the object’s `name` field. */
686
- name?: StringFilter;
687
- /** Filter by the object’s `entityId` field. */
688
- entityId?: UUIDFilter;
689
- /** Filter by the object’s `num` field. */
690
- num?: BigIntFilter;
691
- /** Filter by the object’s `max` field. */
692
- max?: BigIntFilter;
693
- /** Filter by the object’s `softMax` field. */
694
- softMax?: BigIntFilter;
695
- /** Filter by the object’s `windowStart` field. */
696
- windowStart?: DatetimeFilter;
697
- /** Filter by the object’s `windowDuration` field. */
698
- windowDuration?: IntervalFilter;
699
- /** Checks for all expressions in this list. */
700
- and?: OrgLimitAggregateFilter[];
701
- /** Checks for any expressions in this list. */
702
- or?: OrgLimitAggregateFilter[];
703
- /** Negates the expression. */
704
- not?: OrgLimitAggregateFilter;
705
- }
706
866
  /** A filter to be used against `OrgMemberProfile` object types. All fields are combined with a logical ‘and.’ */
707
867
  export interface OrgMemberProfileFilter {
708
868
  /** Filter by the object’s `id` field. */
@@ -820,33 +980,6 @@ export interface OrgMembershipFilter {
820
980
  /** A related `orgMemberProfileByMembershipId` exists. */
821
981
  orgMemberProfileByMembershipIdExists?: boolean;
822
982
  }
823
- /** A filter to be used against `OrgLimit` object types. All fields are combined with a logical ‘and.’ */
824
- export interface OrgLimitFilter {
825
- /** Filter by the object’s `id` field. */
826
- id?: UUIDFilter;
827
- /** Filter by the object’s `name` field. */
828
- name?: StringFilter;
829
- /** Filter by the object’s `actorId` field. */
830
- actorId?: UUIDFilter;
831
- /** Filter by the object’s `num` field. */
832
- num?: BigIntFilter;
833
- /** Filter by the object’s `max` field. */
834
- max?: BigIntFilter;
835
- /** Filter by the object’s `softMax` field. */
836
- softMax?: BigIntFilter;
837
- /** Filter by the object’s `windowStart` field. */
838
- windowStart?: DatetimeFilter;
839
- /** Filter by the object’s `windowDuration` field. */
840
- windowDuration?: IntervalFilter;
841
- /** Filter by the object’s `entityId` field. */
842
- entityId?: UUIDFilter;
843
- /** Checks for all expressions in this list. */
844
- and?: OrgLimitFilter[];
845
- /** Checks for any expressions in this list. */
846
- or?: OrgLimitFilter[];
847
- /** Negates the expression. */
848
- not?: OrgLimitFilter;
849
- }
850
983
  /** A filter to be used against `AppLevel` object types. All fields are combined with a logical ‘and.’ */
851
984
  export interface AppLevelFilter {
852
985
  /** Filter by the object’s `id` field. */
@@ -870,6 +1003,81 @@ export interface AppLevelFilter {
870
1003
  /** Negates the expression. */
871
1004
  not?: AppLevelFilter;
872
1005
  }
1006
+ /** A filter to be used against `AppLimit` object types. All fields are combined with a logical ‘and.’ */
1007
+ export interface AppLimitFilter {
1008
+ /** Filter by the object’s `id` field. */
1009
+ id?: UUIDFilter;
1010
+ /** Filter by the object’s `name` field. */
1011
+ name?: StringFilter;
1012
+ /** Filter by the object’s `actorId` field. */
1013
+ actorId?: UUIDFilter;
1014
+ /** Filter by the object’s `num` field. */
1015
+ num?: BigIntFilter;
1016
+ /** Filter by the object’s `max` field. */
1017
+ max?: BigIntFilter;
1018
+ /** Filter by the object’s `softMax` field. */
1019
+ softMax?: BigIntFilter;
1020
+ /** Filter by the object’s `windowStart` field. */
1021
+ windowStart?: DatetimeFilter;
1022
+ /** Filter by the object’s `windowDuration` field. */
1023
+ windowDuration?: IntervalFilter;
1024
+ /** Filter by the object’s `planMax` field. */
1025
+ planMax?: BigIntFilter;
1026
+ /** Filter by the object’s `purchasedCredits` field. */
1027
+ purchasedCredits?: BigIntFilter;
1028
+ /** Filter by the object’s `periodCredits` field. */
1029
+ periodCredits?: BigIntFilter;
1030
+ /** Checks for all expressions in this list. */
1031
+ and?: AppLimitFilter[];
1032
+ /** Checks for any expressions in this list. */
1033
+ or?: AppLimitFilter[];
1034
+ /** Negates the expression. */
1035
+ not?: AppLimitFilter;
1036
+ }
1037
+ /** A filter to be used against Interval fields. All fields are combined with a logical ‘and.’ */
1038
+ export interface IntervalFilter {
1039
+ /** Is null (if `true` is specified) or is not null (if `false` is specified). */
1040
+ isNull?: boolean;
1041
+ /** Equal to the specified value. */
1042
+ equalTo?: IntervalInput;
1043
+ /** Not equal to the specified value. */
1044
+ notEqualTo?: IntervalInput;
1045
+ /** Not equal to the specified value, treating null like an ordinary value. */
1046
+ distinctFrom?: IntervalInput;
1047
+ /** Equal to the specified value, treating null like an ordinary value. */
1048
+ notDistinctFrom?: IntervalInput;
1049
+ /** Included in the specified list. */
1050
+ in?: IntervalInput[];
1051
+ /** Not included in the specified list. */
1052
+ notIn?: IntervalInput[];
1053
+ /** Less than the specified value. */
1054
+ lessThan?: IntervalInput;
1055
+ /** Less than or equal to the specified value. */
1056
+ lessThanOrEqualTo?: IntervalInput;
1057
+ /** Greater than the specified value. */
1058
+ greaterThan?: IntervalInput;
1059
+ /** Greater than or equal to the specified value. */
1060
+ greaterThanOrEqualTo?: IntervalInput;
1061
+ }
1062
+ /** An interval of time that has passed where the smallest distinct unit is a second. */
1063
+ export interface IntervalInput {
1064
+ /**
1065
+ * A quantity of seconds. This is the only non-integer field, as all the other
1066
+ * fields will dump their overflow into a smaller unit of time. Intervals don’t
1067
+ * have a smaller unit than seconds.
1068
+ */
1069
+ seconds?: number;
1070
+ /** A quantity of minutes. */
1071
+ minutes?: number;
1072
+ /** A quantity of hours. */
1073
+ hours?: number;
1074
+ /** A quantity of days. */
1075
+ days?: number;
1076
+ /** A quantity of months. */
1077
+ months?: number;
1078
+ /** A quantity of years. */
1079
+ years?: number;
1080
+ }
873
1081
  /** A filter to be used against `AppInvite` object types. All fields are combined with a logical ‘and.’ */
874
1082
  export interface AppInviteFilter {
875
1083
  /** Filter by the object’s `id` field. */
@@ -1011,11 +1219,77 @@ export interface OrgMembershipSettingFilter {
1011
1219
  /** Filter by the object’s `limitAllocationMode` field. */
1012
1220
  limitAllocationMode?: StringFilter;
1013
1221
  /** Checks for all expressions in this list. */
1014
- and?: OrgMembershipSettingFilter[];
1222
+ and?: OrgMembershipSettingFilter[];
1223
+ /** Checks for any expressions in this list. */
1224
+ or?: OrgMembershipSettingFilter[];
1225
+ /** Negates the expression. */
1226
+ not?: OrgMembershipSettingFilter;
1227
+ }
1228
+ /** A filter to be used against `OrgLimitAggregate` object types. All fields are combined with a logical ‘and.’ */
1229
+ export interface OrgLimitAggregateFilter {
1230
+ /** Filter by the object’s `id` field. */
1231
+ id?: UUIDFilter;
1232
+ /** Filter by the object’s `name` field. */
1233
+ name?: StringFilter;
1234
+ /** Filter by the object’s `entityId` field. */
1235
+ entityId?: UUIDFilter;
1236
+ /** Filter by the object’s `num` field. */
1237
+ num?: BigIntFilter;
1238
+ /** Filter by the object’s `max` field. */
1239
+ max?: BigIntFilter;
1240
+ /** Filter by the object’s `softMax` field. */
1241
+ softMax?: BigIntFilter;
1242
+ /** Filter by the object’s `windowStart` field. */
1243
+ windowStart?: DatetimeFilter;
1244
+ /** Filter by the object’s `windowDuration` field. */
1245
+ windowDuration?: IntervalFilter;
1246
+ /** Filter by the object’s `planMax` field. */
1247
+ planMax?: BigIntFilter;
1248
+ /** Filter by the object’s `purchasedCredits` field. */
1249
+ purchasedCredits?: BigIntFilter;
1250
+ /** Filter by the object’s `periodCredits` field. */
1251
+ periodCredits?: BigIntFilter;
1252
+ /** Filter by the object’s `reserved` field. */
1253
+ reserved?: BigIntFilter;
1254
+ /** Checks for all expressions in this list. */
1255
+ and?: OrgLimitAggregateFilter[];
1256
+ /** Checks for any expressions in this list. */
1257
+ or?: OrgLimitAggregateFilter[];
1258
+ /** Negates the expression. */
1259
+ not?: OrgLimitAggregateFilter;
1260
+ }
1261
+ /** A filter to be used against `OrgLimit` object types. All fields are combined with a logical ‘and.’ */
1262
+ export interface OrgLimitFilter {
1263
+ /** Filter by the object’s `id` field. */
1264
+ id?: UUIDFilter;
1265
+ /** Filter by the object’s `name` field. */
1266
+ name?: StringFilter;
1267
+ /** Filter by the object’s `actorId` field. */
1268
+ actorId?: UUIDFilter;
1269
+ /** Filter by the object’s `num` field. */
1270
+ num?: BigIntFilter;
1271
+ /** Filter by the object’s `max` field. */
1272
+ max?: BigIntFilter;
1273
+ /** Filter by the object’s `softMax` field. */
1274
+ softMax?: BigIntFilter;
1275
+ /** Filter by the object’s `windowStart` field. */
1276
+ windowStart?: DatetimeFilter;
1277
+ /** Filter by the object’s `windowDuration` field. */
1278
+ windowDuration?: IntervalFilter;
1279
+ /** Filter by the object’s `planMax` field. */
1280
+ planMax?: BigIntFilter;
1281
+ /** Filter by the object’s `purchasedCredits` field. */
1282
+ purchasedCredits?: BigIntFilter;
1283
+ /** Filter by the object’s `periodCredits` field. */
1284
+ periodCredits?: BigIntFilter;
1285
+ /** Filter by the object’s `entityId` field. */
1286
+ entityId?: UUIDFilter;
1287
+ /** Checks for all expressions in this list. */
1288
+ and?: OrgLimitFilter[];
1015
1289
  /** Checks for any expressions in this list. */
1016
- or?: OrgMembershipSettingFilter[];
1290
+ or?: OrgLimitFilter[];
1017
1291
  /** Negates the expression. */
1018
- not?: OrgMembershipSettingFilter;
1292
+ not?: OrgLimitFilter;
1019
1293
  }
1020
1294
  /** A filter to be used against `OrgInvite` object types. All fields are combined with a logical ‘and.’ */
1021
1295
  export interface OrgInviteFilter {
@@ -1103,6 +1377,19 @@ export interface SubmitOrgInviteCodeInput {
1103
1377
  clientMutationId?: string;
1104
1378
  token?: string;
1105
1379
  }
1380
+ export interface CreateAppLimitCreditRedemptionInput {
1381
+ clientMutationId?: string;
1382
+ /** The `AppLimitCreditRedemption` to be created by this mutation. */
1383
+ appLimitCreditRedemption: AppLimitCreditRedemptionInput;
1384
+ }
1385
+ /** An input for mutations affecting `AppLimitCreditRedemption` */
1386
+ export interface AppLimitCreditRedemptionInput {
1387
+ id?: string;
1388
+ /** FK to credit_codes — which code is being redeemed */
1389
+ creditCodeId: string;
1390
+ /** Entity receiving the credits (personal org user_id or org entity_id) */
1391
+ entityId: string;
1392
+ }
1106
1393
  export interface CreateOrgMemberInput {
1107
1394
  clientMutationId?: string;
1108
1395
  /** The `OrgMember` to be created by this mutation. */
@@ -1129,6 +1416,23 @@ export interface AppPermissionDefaultInput {
1129
1416
  /** Default permission bitmask applied to new members */
1130
1417
  permissions?: string;
1131
1418
  }
1419
+ export interface CreateAppLimitCreditCodeInput {
1420
+ clientMutationId?: string;
1421
+ /** The `AppLimitCreditCode` to be created by this mutation. */
1422
+ appLimitCreditCode: AppLimitCreditCodeInput;
1423
+ }
1424
+ /** An input for mutations affecting `AppLimitCreditCode` */
1425
+ export interface AppLimitCreditCodeInput {
1426
+ id?: string;
1427
+ /** Human-readable credit code (case-insensitive, unique) */
1428
+ code: string;
1429
+ /** Maximum total redemptions allowed; NULL for unlimited */
1430
+ maxRedemptions?: number;
1431
+ /** Current number of redemptions (incremented by trigger on credit_redemptions) */
1432
+ currentRedemptions?: number;
1433
+ /** Expiration timestamp; NULL for no expiry */
1434
+ expiresAt?: string;
1435
+ }
1132
1436
  export interface CreateOrgPermissionDefaultInput {
1133
1437
  clientMutationId?: string;
1134
1438
  /** The `OrgPermissionDefault` to be created by this mutation. */
@@ -1240,6 +1544,62 @@ export interface AppStepInput {
1240
1544
  createdAt?: string;
1241
1545
  updatedAt?: string;
1242
1546
  }
1547
+ export interface CreateAppLimitCapsDefaultInput {
1548
+ clientMutationId?: string;
1549
+ /** The `AppLimitCapsDefault` to be created by this mutation. */
1550
+ appLimitCapsDefault: AppLimitCapsDefaultInput;
1551
+ }
1552
+ /** An input for mutations affecting `AppLimitCapsDefault` */
1553
+ export interface AppLimitCapsDefaultInput {
1554
+ id?: string;
1555
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
1556
+ name: string;
1557
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
1558
+ max?: string;
1559
+ }
1560
+ export interface CreateOrgLimitCapsDefaultInput {
1561
+ clientMutationId?: string;
1562
+ /** The `OrgLimitCapsDefault` to be created by this mutation. */
1563
+ orgLimitCapsDefault: OrgLimitCapsDefaultInput;
1564
+ }
1565
+ /** An input for mutations affecting `OrgLimitCapsDefault` */
1566
+ export interface OrgLimitCapsDefaultInput {
1567
+ id?: string;
1568
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
1569
+ name: string;
1570
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
1571
+ max?: string;
1572
+ }
1573
+ export interface CreateAppLimitCapInput {
1574
+ clientMutationId?: string;
1575
+ /** The `AppLimitCap` to be created by this mutation. */
1576
+ appLimitCap: AppLimitCapInput;
1577
+ }
1578
+ /** An input for mutations affecting `AppLimitCap` */
1579
+ export interface AppLimitCapInput {
1580
+ id?: string;
1581
+ /** Name identifier of the cap being overridden */
1582
+ name: string;
1583
+ /** Entity this cap override applies to */
1584
+ entityId: string;
1585
+ /** Override cap value for this entity */
1586
+ max?: string;
1587
+ }
1588
+ export interface CreateOrgLimitCapInput {
1589
+ clientMutationId?: string;
1590
+ /** The `OrgLimitCap` to be created by this mutation. */
1591
+ orgLimitCap: OrgLimitCapInput;
1592
+ }
1593
+ /** An input for mutations affecting `OrgLimitCap` */
1594
+ export interface OrgLimitCapInput {
1595
+ id?: string;
1596
+ /** Name identifier of the cap being overridden */
1597
+ name: string;
1598
+ /** Entity this cap override applies to */
1599
+ entityId: string;
1600
+ /** Override cap value for this entity */
1601
+ max?: string;
1602
+ }
1243
1603
  export interface CreateOrgAdminGrantInput {
1244
1604
  clientMutationId?: string;
1245
1605
  /** The `OrgAdminGrant` to be created by this mutation. */
@@ -1326,6 +1686,23 @@ export interface OrgLimitDefaultInput {
1326
1686
  /** Default soft limit threshold for warnings; NULL means no soft limit */
1327
1687
  softMax?: string;
1328
1688
  }
1689
+ export interface CreateAppLimitCreditCodeItemInput {
1690
+ clientMutationId?: string;
1691
+ /** The `AppLimitCreditCodeItem` to be created by this mutation. */
1692
+ appLimitCreditCodeItem: AppLimitCreditCodeItemInput;
1693
+ }
1694
+ /** An input for mutations affecting `AppLimitCreditCodeItem` */
1695
+ export interface AppLimitCreditCodeItemInput {
1696
+ id?: string;
1697
+ /** FK to credit_codes — which code this item belongs to */
1698
+ creditCodeId: string;
1699
+ /** FK to default_limits — which limit this item grants credits for */
1700
+ defaultLimitId: string;
1701
+ /** Number of credits this item grants per redemption */
1702
+ amount: string;
1703
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
1704
+ creditType?: string;
1705
+ }
1329
1706
  export interface CreateAppLevelRequirementInput {
1330
1707
  clientMutationId?: string;
1331
1708
  /** The `AppLevelRequirement` to be created by this mutation. */
@@ -1347,6 +1724,46 @@ export interface AppLevelRequirementInput {
1347
1724
  createdAt?: string;
1348
1725
  updatedAt?: string;
1349
1726
  }
1727
+ export interface CreateAppLimitCreditInput {
1728
+ clientMutationId?: string;
1729
+ /** The `AppLimitCredit` to be created by this mutation. */
1730
+ appLimitCredit: AppLimitCreditInput;
1731
+ }
1732
+ /** An input for mutations affecting `AppLimitCredit` */
1733
+ export interface AppLimitCreditInput {
1734
+ id?: string;
1735
+ /** FK to default_limits — which limit definition this credit applies to */
1736
+ defaultLimitId: string;
1737
+ /** User this credit is for; NULL for aggregate entity-level credits */
1738
+ actorId?: string;
1739
+ /** Number of credits to grant (positive to add, negative to revoke) */
1740
+ amount: string;
1741
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
1742
+ creditType?: string;
1743
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
1744
+ reason?: string;
1745
+ }
1746
+ export interface CreateOrgLimitCreditInput {
1747
+ clientMutationId?: string;
1748
+ /** The `OrgLimitCredit` to be created by this mutation. */
1749
+ orgLimitCredit: OrgLimitCreditInput;
1750
+ }
1751
+ /** An input for mutations affecting `OrgLimitCredit` */
1752
+ export interface OrgLimitCreditInput {
1753
+ id?: string;
1754
+ /** FK to default_limits — which limit definition this credit applies to */
1755
+ defaultLimitId: string;
1756
+ /** User this credit is for; NULL for aggregate entity-level credits */
1757
+ actorId?: string;
1758
+ /** Entity this credit applies to; NULL for actor-only credits */
1759
+ entityId?: string;
1760
+ /** Number of credits to grant (positive to add, negative to revoke) */
1761
+ amount: string;
1762
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
1763
+ creditType?: string;
1764
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
1765
+ reason?: string;
1766
+ }
1350
1767
  export interface CreateOrgChartEdgeGrantInput {
1351
1768
  clientMutationId?: string;
1352
1769
  /** The `OrgChartEdgeGrant` to be created by this mutation. */
@@ -1552,52 +1969,6 @@ export interface OrgChartEdgeInput {
1552
1969
  /** Numeric seniority level for this position (higher = more senior) */
1553
1970
  positionLevel?: number;
1554
1971
  }
1555
- export interface CreateAppLimitInput {
1556
- clientMutationId?: string;
1557
- /** The `AppLimit` to be created by this mutation. */
1558
- appLimit: AppLimitInput;
1559
- }
1560
- /** An input for mutations affecting `AppLimit` */
1561
- export interface AppLimitInput {
1562
- id?: string;
1563
- /** Name identifier of the limit being tracked */
1564
- name?: string;
1565
- /** User whose usage is being tracked against this limit */
1566
- actorId: string;
1567
- /** Current usage count for this actor and limit */
1568
- num?: string;
1569
- /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
1570
- max?: string;
1571
- /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
1572
- softMax?: string;
1573
- /** Start of the current metering window; NULL means no time window */
1574
- windowStart?: string;
1575
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
1576
- windowDuration?: IntervalInput;
1577
- }
1578
- export interface CreateOrgLimitAggregateInput {
1579
- clientMutationId?: string;
1580
- /** The `OrgLimitAggregate` to be created by this mutation. */
1581
- orgLimitAggregate: OrgLimitAggregateInput;
1582
- }
1583
- /** An input for mutations affecting `OrgLimitAggregate` */
1584
- export interface OrgLimitAggregateInput {
1585
- id?: string;
1586
- /** Name identifier of the aggregate limit being tracked */
1587
- name?: string;
1588
- /** Entity (org) whose aggregate usage is being tracked */
1589
- entityId: string;
1590
- /** Current aggregate usage count for this entity and limit */
1591
- num?: string;
1592
- /** Maximum allowed aggregate usage; negative means unlimited */
1593
- max?: string;
1594
- /** Soft limit threshold for warnings; NULL means no soft limit */
1595
- softMax?: string;
1596
- /** Start of the current metering window; NULL means no time window */
1597
- windowStart?: string;
1598
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
1599
- windowDuration?: IntervalInput;
1600
- }
1601
1972
  export interface CreateOrgMemberProfileInput {
1602
1973
  clientMutationId?: string;
1603
1974
  /** The `OrgMemberProfile` to be created by this mutation. */
@@ -1625,30 +1996,6 @@ export interface OrgMemberProfileInput {
1625
1996
  /** Profile picture visible to other entity members */
1626
1997
  profilePicture?: ConstructiveInternalTypeImage;
1627
1998
  }
1628
- export interface CreateOrgLimitInput {
1629
- clientMutationId?: string;
1630
- /** The `OrgLimit` to be created by this mutation. */
1631
- orgLimit: OrgLimitInput;
1632
- }
1633
- /** An input for mutations affecting `OrgLimit` */
1634
- export interface OrgLimitInput {
1635
- id?: string;
1636
- /** Name identifier of the limit being tracked */
1637
- name?: string;
1638
- /** User whose usage is being tracked against this limit */
1639
- actorId: string;
1640
- /** Current usage count for this actor and limit */
1641
- num?: string;
1642
- /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
1643
- max?: string;
1644
- /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
1645
- softMax?: string;
1646
- /** Start of the current metering window; NULL means no time window */
1647
- windowStart?: string;
1648
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
1649
- windowDuration?: IntervalInput;
1650
- entityId: string;
1651
- }
1652
1999
  export interface CreateAppLevelInput {
1653
2000
  clientMutationId?: string;
1654
2001
  /** The `AppLevel` to be created by this mutation. */
@@ -1668,6 +2015,35 @@ export interface AppLevelInput {
1668
2015
  createdAt?: string;
1669
2016
  updatedAt?: string;
1670
2017
  }
2018
+ export interface CreateAppLimitInput {
2019
+ clientMutationId?: string;
2020
+ /** The `AppLimit` to be created by this mutation. */
2021
+ appLimit: AppLimitInput;
2022
+ }
2023
+ /** An input for mutations affecting `AppLimit` */
2024
+ export interface AppLimitInput {
2025
+ id?: string;
2026
+ /** Name identifier of the limit being tracked */
2027
+ name?: string;
2028
+ /** User whose usage is being tracked against this limit */
2029
+ actorId: string;
2030
+ /** Current usage count for this actor and limit */
2031
+ num?: string;
2032
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
2033
+ max?: string;
2034
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
2035
+ softMax?: string;
2036
+ /** Start of the current metering window; NULL means no time window */
2037
+ windowStart?: string;
2038
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2039
+ windowDuration?: IntervalInput;
2040
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
2041
+ planMax?: string;
2042
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
2043
+ purchasedCredits?: string;
2044
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
2045
+ periodCredits?: string;
2046
+ }
1671
2047
  export interface CreateAppInviteInput {
1672
2048
  clientMutationId?: string;
1673
2049
  /** The `AppInvite` to be created by this mutation. */
@@ -1730,6 +2106,67 @@ export interface OrgMembershipSettingInput {
1730
2106
  /** Allocation mode for sub-entity limits: pooled (shared parent cap, no per-entity budgets) or budgeted (explicit per-entity allocations, transfer enabled) */
1731
2107
  limitAllocationMode?: string;
1732
2108
  }
2109
+ export interface CreateOrgLimitAggregateInput {
2110
+ clientMutationId?: string;
2111
+ /** The `OrgLimitAggregate` to be created by this mutation. */
2112
+ orgLimitAggregate: OrgLimitAggregateInput;
2113
+ }
2114
+ /** An input for mutations affecting `OrgLimitAggregate` */
2115
+ export interface OrgLimitAggregateInput {
2116
+ id?: string;
2117
+ /** Name identifier of the aggregate limit being tracked */
2118
+ name?: string;
2119
+ /** Entity (org) whose aggregate usage is being tracked */
2120
+ entityId: string;
2121
+ /** Current aggregate usage count for this entity and limit */
2122
+ num?: string;
2123
+ /** Maximum allowed aggregate usage; negative means unlimited */
2124
+ max?: string;
2125
+ /** Soft limit threshold for warnings; NULL means no soft limit */
2126
+ softMax?: string;
2127
+ /** Start of the current metering window; NULL means no time window */
2128
+ windowStart?: string;
2129
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2130
+ windowDuration?: IntervalInput;
2131
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
2132
+ planMax?: string;
2133
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
2134
+ purchasedCredits?: string;
2135
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
2136
+ periodCredits?: string;
2137
+ /** Capacity reserved by child entities in budgeted allocation mode. Available = max - num - reserved. */
2138
+ reserved?: string;
2139
+ }
2140
+ export interface CreateOrgLimitInput {
2141
+ clientMutationId?: string;
2142
+ /** The `OrgLimit` to be created by this mutation. */
2143
+ orgLimit: OrgLimitInput;
2144
+ }
2145
+ /** An input for mutations affecting `OrgLimit` */
2146
+ export interface OrgLimitInput {
2147
+ id?: string;
2148
+ /** Name identifier of the limit being tracked */
2149
+ name?: string;
2150
+ /** User whose usage is being tracked against this limit */
2151
+ actorId: string;
2152
+ /** Current usage count for this actor and limit */
2153
+ num?: string;
2154
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
2155
+ max?: string;
2156
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
2157
+ softMax?: string;
2158
+ /** Start of the current metering window; NULL means no time window */
2159
+ windowStart?: string;
2160
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2161
+ windowDuration?: IntervalInput;
2162
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
2163
+ planMax?: string;
2164
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
2165
+ purchasedCredits?: string;
2166
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
2167
+ periodCredits?: string;
2168
+ entityId: string;
2169
+ }
1733
2170
  export interface CreateOrgInviteInput {
1734
2171
  clientMutationId?: string;
1735
2172
  /** The `OrgInvite` to be created by this mutation. */
@@ -1836,6 +2273,20 @@ export interface OrgMembershipInput {
1836
2273
  isReadOnly?: boolean;
1837
2274
  profileId?: string;
1838
2275
  }
2276
+ export interface UpdateAppLimitCreditRedemptionInput {
2277
+ clientMutationId?: string;
2278
+ id: string;
2279
+ /** An object where the defined keys will be set on the `AppLimitCreditRedemption` being updated. */
2280
+ appLimitCreditRedemptionPatch: AppLimitCreditRedemptionPatch;
2281
+ }
2282
+ /** Represents an update to a `AppLimitCreditRedemption`. Fields that are set will be updated. */
2283
+ export interface AppLimitCreditRedemptionPatch {
2284
+ id?: string;
2285
+ /** FK to credit_codes — which code is being redeemed */
2286
+ creditCodeId?: string;
2287
+ /** Entity receiving the credits (personal org user_id or org entity_id) */
2288
+ entityId?: string;
2289
+ }
1839
2290
  export interface UpdateOrgMemberInput {
1840
2291
  clientMutationId?: string;
1841
2292
  id: string;
@@ -1864,6 +2315,24 @@ export interface AppPermissionDefaultPatch {
1864
2315
  /** Default permission bitmask applied to new members */
1865
2316
  permissions?: string;
1866
2317
  }
2318
+ export interface UpdateAppLimitCreditCodeInput {
2319
+ clientMutationId?: string;
2320
+ id: string;
2321
+ /** An object where the defined keys will be set on the `AppLimitCreditCode` being updated. */
2322
+ appLimitCreditCodePatch: AppLimitCreditCodePatch;
2323
+ }
2324
+ /** Represents an update to a `AppLimitCreditCode`. Fields that are set will be updated. */
2325
+ export interface AppLimitCreditCodePatch {
2326
+ id?: string;
2327
+ /** Human-readable credit code (case-insensitive, unique) */
2328
+ code?: string;
2329
+ /** Maximum total redemptions allowed; NULL for unlimited */
2330
+ maxRedemptions?: number;
2331
+ /** Current number of redemptions (incremented by trigger on credit_redemptions) */
2332
+ currentRedemptions?: number;
2333
+ /** Expiration timestamp; NULL for no expiry */
2334
+ expiresAt?: string;
2335
+ }
1867
2336
  export interface UpdateOrgPermissionDefaultInput {
1868
2337
  clientMutationId?: string;
1869
2338
  id: string;
@@ -1982,6 +2451,66 @@ export interface AppStepPatch {
1982
2451
  createdAt?: string;
1983
2452
  updatedAt?: string;
1984
2453
  }
2454
+ export interface UpdateAppLimitCapsDefaultInput {
2455
+ clientMutationId?: string;
2456
+ id: string;
2457
+ /** An object where the defined keys will be set on the `AppLimitCapsDefault` being updated. */
2458
+ appLimitCapsDefaultPatch: AppLimitCapsDefaultPatch;
2459
+ }
2460
+ /** Represents an update to a `AppLimitCapsDefault`. Fields that are set will be updated. */
2461
+ export interface AppLimitCapsDefaultPatch {
2462
+ id?: string;
2463
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
2464
+ name?: string;
2465
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
2466
+ max?: string;
2467
+ }
2468
+ export interface UpdateOrgLimitCapsDefaultInput {
2469
+ clientMutationId?: string;
2470
+ id: string;
2471
+ /** An object where the defined keys will be set on the `OrgLimitCapsDefault` being updated. */
2472
+ orgLimitCapsDefaultPatch: OrgLimitCapsDefaultPatch;
2473
+ }
2474
+ /** Represents an update to a `OrgLimitCapsDefault`. Fields that are set will be updated. */
2475
+ export interface OrgLimitCapsDefaultPatch {
2476
+ id?: string;
2477
+ /** Name identifier of the cap (e.g. max_file_upload_size, advanced_analytics) */
2478
+ name?: string;
2479
+ /** Default cap value. For feature flags: 0=disabled, 1=enabled. For size caps: the limit in bytes/units. */
2480
+ max?: string;
2481
+ }
2482
+ export interface UpdateAppLimitCapInput {
2483
+ clientMutationId?: string;
2484
+ id: string;
2485
+ /** An object where the defined keys will be set on the `AppLimitCap` being updated. */
2486
+ appLimitCapPatch: AppLimitCapPatch;
2487
+ }
2488
+ /** Represents an update to a `AppLimitCap`. Fields that are set will be updated. */
2489
+ export interface AppLimitCapPatch {
2490
+ id?: string;
2491
+ /** Name identifier of the cap being overridden */
2492
+ name?: string;
2493
+ /** Entity this cap override applies to */
2494
+ entityId?: string;
2495
+ /** Override cap value for this entity */
2496
+ max?: string;
2497
+ }
2498
+ export interface UpdateOrgLimitCapInput {
2499
+ clientMutationId?: string;
2500
+ id: string;
2501
+ /** An object where the defined keys will be set on the `OrgLimitCap` being updated. */
2502
+ orgLimitCapPatch: OrgLimitCapPatch;
2503
+ }
2504
+ /** Represents an update to a `OrgLimitCap`. Fields that are set will be updated. */
2505
+ export interface OrgLimitCapPatch {
2506
+ id?: string;
2507
+ /** Name identifier of the cap being overridden */
2508
+ name?: string;
2509
+ /** Entity this cap override applies to */
2510
+ entityId?: string;
2511
+ /** Override cap value for this entity */
2512
+ max?: string;
2513
+ }
1985
2514
  export interface UpdateOrgAdminGrantInput {
1986
2515
  clientMutationId?: string;
1987
2516
  id: string;
@@ -2074,6 +2603,24 @@ export interface OrgLimitDefaultPatch {
2074
2603
  /** Default soft limit threshold for warnings; NULL means no soft limit */
2075
2604
  softMax?: string;
2076
2605
  }
2606
+ export interface UpdateAppLimitCreditCodeItemInput {
2607
+ clientMutationId?: string;
2608
+ id: string;
2609
+ /** An object where the defined keys will be set on the `AppLimitCreditCodeItem` being updated. */
2610
+ appLimitCreditCodeItemPatch: AppLimitCreditCodeItemPatch;
2611
+ }
2612
+ /** Represents an update to a `AppLimitCreditCodeItem`. Fields that are set will be updated. */
2613
+ export interface AppLimitCreditCodeItemPatch {
2614
+ id?: string;
2615
+ /** FK to credit_codes — which code this item belongs to */
2616
+ creditCodeId?: string;
2617
+ /** FK to default_limits — which limit this item grants credits for */
2618
+ defaultLimitId?: string;
2619
+ /** Number of credits this item grants per redemption */
2620
+ amount?: string;
2621
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
2622
+ creditType?: string;
2623
+ }
2077
2624
  export interface UpdateAppLevelRequirementInput {
2078
2625
  clientMutationId?: string;
2079
2626
  id: string;
@@ -2096,6 +2643,48 @@ export interface AppLevelRequirementPatch {
2096
2643
  createdAt?: string;
2097
2644
  updatedAt?: string;
2098
2645
  }
2646
+ export interface UpdateAppLimitCreditInput {
2647
+ clientMutationId?: string;
2648
+ id: string;
2649
+ /** An object where the defined keys will be set on the `AppLimitCredit` being updated. */
2650
+ appLimitCreditPatch: AppLimitCreditPatch;
2651
+ }
2652
+ /** Represents an update to a `AppLimitCredit`. Fields that are set will be updated. */
2653
+ export interface AppLimitCreditPatch {
2654
+ id?: string;
2655
+ /** FK to default_limits — which limit definition this credit applies to */
2656
+ defaultLimitId?: string;
2657
+ /** User this credit is for; NULL for aggregate entity-level credits */
2658
+ actorId?: string;
2659
+ /** Number of credits to grant (positive to add, negative to revoke) */
2660
+ amount?: string;
2661
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
2662
+ creditType?: string;
2663
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
2664
+ reason?: string;
2665
+ }
2666
+ export interface UpdateOrgLimitCreditInput {
2667
+ clientMutationId?: string;
2668
+ id: string;
2669
+ /** An object where the defined keys will be set on the `OrgLimitCredit` being updated. */
2670
+ orgLimitCreditPatch: OrgLimitCreditPatch;
2671
+ }
2672
+ /** Represents an update to a `OrgLimitCredit`. Fields that are set will be updated. */
2673
+ export interface OrgLimitCreditPatch {
2674
+ id?: string;
2675
+ /** FK to default_limits — which limit definition this credit applies to */
2676
+ defaultLimitId?: string;
2677
+ /** User this credit is for; NULL for aggregate entity-level credits */
2678
+ actorId?: string;
2679
+ /** Entity this credit applies to; NULL for actor-only credits */
2680
+ entityId?: string;
2681
+ /** Number of credits to grant (positive to add, negative to revoke) */
2682
+ amount?: string;
2683
+ /** Credit durability: permanent (survives window reset) or period (resets on window expiry) */
2684
+ creditType?: string;
2685
+ /** Optional reason for the credit grant (promo code, admin grant, etc.) */
2686
+ reason?: string;
2687
+ }
2099
2688
  export interface UpdateOrgChartEdgeGrantInput {
2100
2689
  clientMutationId?: string;
2101
2690
  id: string;
@@ -2257,54 +2846,6 @@ export interface OrgChartEdgePatch {
2257
2846
  /** Numeric seniority level for this position (higher = more senior) */
2258
2847
  positionLevel?: number;
2259
2848
  }
2260
- export interface UpdateAppLimitInput {
2261
- clientMutationId?: string;
2262
- id: string;
2263
- /** An object where the defined keys will be set on the `AppLimit` being updated. */
2264
- appLimitPatch: AppLimitPatch;
2265
- }
2266
- /** Represents an update to a `AppLimit`. Fields that are set will be updated. */
2267
- export interface AppLimitPatch {
2268
- id?: string;
2269
- /** Name identifier of the limit being tracked */
2270
- name?: string;
2271
- /** User whose usage is being tracked against this limit */
2272
- actorId?: string;
2273
- /** Current usage count for this actor and limit */
2274
- num?: string;
2275
- /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
2276
- max?: string;
2277
- /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
2278
- softMax?: string;
2279
- /** Start of the current metering window; NULL means no time window */
2280
- windowStart?: string;
2281
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2282
- windowDuration?: IntervalInput;
2283
- }
2284
- export interface UpdateOrgLimitAggregateInput {
2285
- clientMutationId?: string;
2286
- id: string;
2287
- /** An object where the defined keys will be set on the `OrgLimitAggregate` being updated. */
2288
- orgLimitAggregatePatch: OrgLimitAggregatePatch;
2289
- }
2290
- /** Represents an update to a `OrgLimitAggregate`. Fields that are set will be updated. */
2291
- export interface OrgLimitAggregatePatch {
2292
- id?: string;
2293
- /** Name identifier of the aggregate limit being tracked */
2294
- name?: string;
2295
- /** Entity (org) whose aggregate usage is being tracked */
2296
- entityId?: string;
2297
- /** Current aggregate usage count for this entity and limit */
2298
- num?: string;
2299
- /** Maximum allowed aggregate usage; negative means unlimited */
2300
- max?: string;
2301
- /** Soft limit threshold for warnings; NULL means no soft limit */
2302
- softMax?: string;
2303
- /** Start of the current metering window; NULL means no time window */
2304
- windowStart?: string;
2305
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2306
- windowDuration?: IntervalInput;
2307
- }
2308
2849
  export interface UpdateOrgMemberProfileInput {
2309
2850
  clientMutationId?: string;
2310
2851
  id: string;
@@ -2335,31 +2876,6 @@ export interface OrgMemberProfilePatch {
2335
2876
  /** Upload for Profile picture visible to other entity members */
2336
2877
  profilePictureUpload?: File;
2337
2878
  }
2338
- export interface UpdateOrgLimitInput {
2339
- clientMutationId?: string;
2340
- id: string;
2341
- /** An object where the defined keys will be set on the `OrgLimit` being updated. */
2342
- orgLimitPatch: OrgLimitPatch;
2343
- }
2344
- /** Represents an update to a `OrgLimit`. Fields that are set will be updated. */
2345
- export interface OrgLimitPatch {
2346
- id?: string;
2347
- /** Name identifier of the limit being tracked */
2348
- name?: string;
2349
- /** User whose usage is being tracked against this limit */
2350
- actorId?: string;
2351
- /** Current usage count for this actor and limit */
2352
- num?: string;
2353
- /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
2354
- max?: string;
2355
- /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
2356
- softMax?: string;
2357
- /** Start of the current metering window; NULL means no time window */
2358
- windowStart?: string;
2359
- /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2360
- windowDuration?: IntervalInput;
2361
- entityId?: string;
2362
- }
2363
2879
  export interface UpdateAppLevelInput {
2364
2880
  clientMutationId?: string;
2365
2881
  id: string;
@@ -2382,6 +2898,36 @@ export interface AppLevelPatch {
2382
2898
  /** Upload for Badge or icon image associated with this level */
2383
2899
  imageUpload?: File;
2384
2900
  }
2901
+ export interface UpdateAppLimitInput {
2902
+ clientMutationId?: string;
2903
+ id: string;
2904
+ /** An object where the defined keys will be set on the `AppLimit` being updated. */
2905
+ appLimitPatch: AppLimitPatch;
2906
+ }
2907
+ /** Represents an update to a `AppLimit`. Fields that are set will be updated. */
2908
+ export interface AppLimitPatch {
2909
+ id?: string;
2910
+ /** Name identifier of the limit being tracked */
2911
+ name?: string;
2912
+ /** User whose usage is being tracked against this limit */
2913
+ actorId?: string;
2914
+ /** Current usage count for this actor and limit */
2915
+ num?: string;
2916
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
2917
+ max?: string;
2918
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
2919
+ softMax?: string;
2920
+ /** Start of the current metering window; NULL means no time window */
2921
+ windowStart?: string;
2922
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
2923
+ windowDuration?: IntervalInput;
2924
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
2925
+ planMax?: string;
2926
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
2927
+ purchasedCredits?: string;
2928
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
2929
+ periodCredits?: string;
2930
+ }
2385
2931
  export interface UpdateAppInviteInput {
2386
2932
  clientMutationId?: string;
2387
2933
  id: string;
@@ -2446,6 +2992,69 @@ export interface OrgMembershipSettingPatch {
2446
2992
  /** Allocation mode for sub-entity limits: pooled (shared parent cap, no per-entity budgets) or budgeted (explicit per-entity allocations, transfer enabled) */
2447
2993
  limitAllocationMode?: string;
2448
2994
  }
2995
+ export interface UpdateOrgLimitAggregateInput {
2996
+ clientMutationId?: string;
2997
+ id: string;
2998
+ /** An object where the defined keys will be set on the `OrgLimitAggregate` being updated. */
2999
+ orgLimitAggregatePatch: OrgLimitAggregatePatch;
3000
+ }
3001
+ /** Represents an update to a `OrgLimitAggregate`. Fields that are set will be updated. */
3002
+ export interface OrgLimitAggregatePatch {
3003
+ id?: string;
3004
+ /** Name identifier of the aggregate limit being tracked */
3005
+ name?: string;
3006
+ /** Entity (org) whose aggregate usage is being tracked */
3007
+ entityId?: string;
3008
+ /** Current aggregate usage count for this entity and limit */
3009
+ num?: string;
3010
+ /** Maximum allowed aggregate usage; negative means unlimited */
3011
+ max?: string;
3012
+ /** Soft limit threshold for warnings; NULL means no soft limit */
3013
+ softMax?: string;
3014
+ /** Start of the current metering window; NULL means no time window */
3015
+ windowStart?: string;
3016
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
3017
+ windowDuration?: IntervalInput;
3018
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
3019
+ planMax?: string;
3020
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
3021
+ purchasedCredits?: string;
3022
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
3023
+ periodCredits?: string;
3024
+ /** Capacity reserved by child entities in budgeted allocation mode. Available = max - num - reserved. */
3025
+ reserved?: string;
3026
+ }
3027
+ export interface UpdateOrgLimitInput {
3028
+ clientMutationId?: string;
3029
+ id: string;
3030
+ /** An object where the defined keys will be set on the `OrgLimit` being updated. */
3031
+ orgLimitPatch: OrgLimitPatch;
3032
+ }
3033
+ /** Represents an update to a `OrgLimit`. Fields that are set will be updated. */
3034
+ export interface OrgLimitPatch {
3035
+ id?: string;
3036
+ /** Name identifier of the limit being tracked */
3037
+ name?: string;
3038
+ /** User whose usage is being tracked against this limit */
3039
+ actorId?: string;
3040
+ /** Current usage count for this actor and limit */
3041
+ num?: string;
3042
+ /** Maximum allowed usage; negative means unlimited. Modified by plans, credits, and achievements. */
3043
+ max?: string;
3044
+ /** Soft limit threshold for warnings; NULL means no soft limit. When num >= soft_max, consumers should warn but still allow until max is reached. */
3045
+ softMax?: string;
3046
+ /** Start of the current metering window; NULL means no time window */
3047
+ windowStart?: string;
3048
+ /** Duration of the metering window (e.g. 1 day, 1 month); NULL means no time window */
3049
+ windowDuration?: IntervalInput;
3050
+ /** Ceiling set by the active plan via apply_plan(). Window reset does not change this value. */
3051
+ planMax?: string;
3052
+ /** Permanent credits from purchases, admin grants, or lifetime rewards. Survives window reset. */
3053
+ purchasedCredits?: string;
3054
+ /** Temporary credits for the current billing window. Resets to 0 on window expiry. */
3055
+ periodCredits?: string;
3056
+ entityId?: string;
3057
+ }
2449
3058
  export interface UpdateOrgInviteInput {
2450
3059
  clientMutationId?: string;
2451
3060
  id: string;
@@ -2555,6 +3164,10 @@ export interface OrgMembershipPatch {
2555
3164
  isReadOnly?: boolean;
2556
3165
  profileId?: string;
2557
3166
  }
3167
+ export interface DeleteAppLimitCreditRedemptionInput {
3168
+ clientMutationId?: string;
3169
+ id: string;
3170
+ }
2558
3171
  export interface DeleteOrgMemberInput {
2559
3172
  clientMutationId?: string;
2560
3173
  id: string;
@@ -2563,6 +3176,10 @@ export interface DeleteAppPermissionDefaultInput {
2563
3176
  clientMutationId?: string;
2564
3177
  id: string;
2565
3178
  }
3179
+ export interface DeleteAppLimitCreditCodeInput {
3180
+ clientMutationId?: string;
3181
+ id: string;
3182
+ }
2566
3183
  export interface DeleteOrgPermissionDefaultInput {
2567
3184
  clientMutationId?: string;
2568
3185
  id: string;
@@ -2591,6 +3208,22 @@ export interface DeleteAppStepInput {
2591
3208
  clientMutationId?: string;
2592
3209
  id: string;
2593
3210
  }
3211
+ export interface DeleteAppLimitCapsDefaultInput {
3212
+ clientMutationId?: string;
3213
+ id: string;
3214
+ }
3215
+ export interface DeleteOrgLimitCapsDefaultInput {
3216
+ clientMutationId?: string;
3217
+ id: string;
3218
+ }
3219
+ export interface DeleteAppLimitCapInput {
3220
+ clientMutationId?: string;
3221
+ id: string;
3222
+ }
3223
+ export interface DeleteOrgLimitCapInput {
3224
+ clientMutationId?: string;
3225
+ id: string;
3226
+ }
2594
3227
  export interface DeleteOrgAdminGrantInput {
2595
3228
  clientMutationId?: string;
2596
3229
  id: string;
@@ -2612,10 +3245,22 @@ export interface DeleteOrgLimitDefaultInput {
2612
3245
  clientMutationId?: string;
2613
3246
  id: string;
2614
3247
  }
3248
+ export interface DeleteAppLimitCreditCodeItemInput {
3249
+ clientMutationId?: string;
3250
+ id: string;
3251
+ }
2615
3252
  export interface DeleteAppLevelRequirementInput {
2616
3253
  clientMutationId?: string;
2617
3254
  id: string;
2618
3255
  }
3256
+ export interface DeleteAppLimitCreditInput {
3257
+ clientMutationId?: string;
3258
+ id: string;
3259
+ }
3260
+ export interface DeleteOrgLimitCreditInput {
3261
+ clientMutationId?: string;
3262
+ id: string;
3263
+ }
2619
3264
  export interface DeleteOrgChartEdgeGrantInput {
2620
3265
  clientMutationId?: string;
2621
3266
  id: string;
@@ -2648,31 +3293,31 @@ export interface DeleteOrgChartEdgeInput {
2648
3293
  clientMutationId?: string;
2649
3294
  id: string;
2650
3295
  }
2651
- export interface DeleteAppLimitInput {
3296
+ export interface DeleteOrgMemberProfileInput {
2652
3297
  clientMutationId?: string;
2653
3298
  id: string;
2654
3299
  }
2655
- export interface DeleteOrgLimitAggregateInput {
3300
+ export interface DeleteAppLevelInput {
2656
3301
  clientMutationId?: string;
2657
3302
  id: string;
2658
3303
  }
2659
- export interface DeleteOrgMemberProfileInput {
3304
+ export interface DeleteAppLimitInput {
2660
3305
  clientMutationId?: string;
2661
3306
  id: string;
2662
3307
  }
2663
- export interface DeleteOrgLimitInput {
3308
+ export interface DeleteAppInviteInput {
2664
3309
  clientMutationId?: string;
2665
3310
  id: string;
2666
3311
  }
2667
- export interface DeleteAppLevelInput {
3312
+ export interface DeleteOrgMembershipSettingInput {
2668
3313
  clientMutationId?: string;
2669
3314
  id: string;
2670
3315
  }
2671
- export interface DeleteAppInviteInput {
3316
+ export interface DeleteOrgLimitAggregateInput {
2672
3317
  clientMutationId?: string;
2673
3318
  id: string;
2674
3319
  }
2675
- export interface DeleteOrgMembershipSettingInput {
3320
+ export interface DeleteOrgLimitInput {
2676
3321
  clientMutationId?: string;
2677
3322
  id: string;
2678
3323
  }
@@ -2688,25 +3333,6 @@ export interface DeleteOrgMembershipInput {
2688
3333
  clientMutationId?: string;
2689
3334
  id: string;
2690
3335
  }
2691
- export interface RequestUploadUrlInput {
2692
- /** Bucket key (e.g., "public", "private") */
2693
- bucketKey: string;
2694
- /**
2695
- * Owner entity ID for entity-scoped uploads.
2696
- * Omit for app-level (database-wide) storage.
2697
- * When provided, resolves the storage module for the entity type
2698
- * that owns this entity instance (e.g., a data room ID, team ID).
2699
- */
2700
- ownerId?: string;
2701
- /** SHA-256 content hash computed by the client (hex-encoded, 64 chars) */
2702
- contentHash: string;
2703
- /** MIME type of the file (e.g., "image/png") */
2704
- contentType: string;
2705
- /** File size in bytes */
2706
- size: number;
2707
- /** Original filename (optional, for display and Content-Disposition) */
2708
- filename?: string;
2709
- }
2710
3336
  export interface ProvisionBucketInput {
2711
3337
  /** The logical bucket key (e.g., "public", "private") */
2712
3338
  bucketKey: string;
@@ -2751,6 +3377,13 @@ export interface AppLevelRequirementConnection {
2751
3377
  pageInfo: PageInfo;
2752
3378
  totalCount: number;
2753
3379
  }
3380
+ /** A connection to a list of `AppLimitCreditRedemption` values. */
3381
+ export interface AppLimitCreditRedemptionConnection {
3382
+ nodes: AppLimitCreditRedemption[];
3383
+ edges: AppLimitCreditRedemptionEdge[];
3384
+ pageInfo: PageInfo;
3385
+ totalCount: number;
3386
+ }
2754
3387
  /** A connection to a list of `OrgMember` values. */
2755
3388
  export interface OrgMemberConnection {
2756
3389
  nodes: OrgMember[];
@@ -2765,6 +3398,13 @@ export interface AppPermissionDefaultConnection {
2765
3398
  pageInfo: PageInfo;
2766
3399
  totalCount: number;
2767
3400
  }
3401
+ /** A connection to a list of `AppLimitCreditCode` values. */
3402
+ export interface AppLimitCreditCodeConnection {
3403
+ nodes: AppLimitCreditCode[];
3404
+ edges: AppLimitCreditCodeEdge[];
3405
+ pageInfo: PageInfo;
3406
+ totalCount: number;
3407
+ }
2768
3408
  /** A connection to a list of `OrgPermissionDefault` values. */
2769
3409
  export interface OrgPermissionDefaultConnection {
2770
3410
  nodes: OrgPermissionDefault[];
@@ -2800,6 +3440,34 @@ export interface AppStepConnection {
2800
3440
  pageInfo: PageInfo;
2801
3441
  totalCount: number;
2802
3442
  }
3443
+ /** A connection to a list of `AppLimitCapsDefault` values. */
3444
+ export interface AppLimitCapsDefaultConnection {
3445
+ nodes: AppLimitCapsDefault[];
3446
+ edges: AppLimitCapsDefaultEdge[];
3447
+ pageInfo: PageInfo;
3448
+ totalCount: number;
3449
+ }
3450
+ /** A connection to a list of `OrgLimitCapsDefault` values. */
3451
+ export interface OrgLimitCapsDefaultConnection {
3452
+ nodes: OrgLimitCapsDefault[];
3453
+ edges: OrgLimitCapsDefaultEdge[];
3454
+ pageInfo: PageInfo;
3455
+ totalCount: number;
3456
+ }
3457
+ /** A connection to a list of `AppLimitCap` values. */
3458
+ export interface AppLimitCapConnection {
3459
+ nodes: AppLimitCap[];
3460
+ edges: AppLimitCapEdge[];
3461
+ pageInfo: PageInfo;
3462
+ totalCount: number;
3463
+ }
3464
+ /** A connection to a list of `OrgLimitCap` values. */
3465
+ export interface OrgLimitCapConnection {
3466
+ nodes: OrgLimitCap[];
3467
+ edges: OrgLimitCapEdge[];
3468
+ pageInfo: PageInfo;
3469
+ totalCount: number;
3470
+ }
2803
3471
  /** A connection to a list of `OrgAdminGrant` values. */
2804
3472
  export interface OrgAdminGrantConnection {
2805
3473
  nodes: OrgAdminGrant[];
@@ -2835,6 +3503,27 @@ export interface OrgLimitDefaultConnection {
2835
3503
  pageInfo: PageInfo;
2836
3504
  totalCount: number;
2837
3505
  }
3506
+ /** A connection to a list of `AppLimitCreditCodeItem` values. */
3507
+ export interface AppLimitCreditCodeItemConnection {
3508
+ nodes: AppLimitCreditCodeItem[];
3509
+ edges: AppLimitCreditCodeItemEdge[];
3510
+ pageInfo: PageInfo;
3511
+ totalCount: number;
3512
+ }
3513
+ /** A connection to a list of `AppLimitCredit` values. */
3514
+ export interface AppLimitCreditConnection {
3515
+ nodes: AppLimitCredit[];
3516
+ edges: AppLimitCreditEdge[];
3517
+ pageInfo: PageInfo;
3518
+ totalCount: number;
3519
+ }
3520
+ /** A connection to a list of `OrgLimitCredit` values. */
3521
+ export interface OrgLimitCreditConnection {
3522
+ nodes: OrgLimitCredit[];
3523
+ edges: OrgLimitCreditEdge[];
3524
+ pageInfo: PageInfo;
3525
+ totalCount: number;
3526
+ }
2838
3527
  /** A connection to a list of `OrgChartEdgeGrant` values. */
2839
3528
  export interface OrgChartEdgeGrantConnection {
2840
3529
  nodes: OrgChartEdgeGrant[];
@@ -2892,30 +3581,16 @@ export interface OrgLimitEventConnection {
2892
3581
  totalCount: number;
2893
3582
  }
2894
3583
  /** A connection to a list of `OrgGrant` values. */
2895
- export interface OrgGrantConnection {
2896
- nodes: OrgGrant[];
2897
- edges: OrgGrantEdge[];
2898
- pageInfo: PageInfo;
2899
- totalCount: number;
2900
- }
2901
- /** A connection to a list of `OrgChartEdge` values. */
2902
- export interface OrgChartEdgeConnection {
2903
- nodes: OrgChartEdge[];
2904
- edges: OrgChartEdgeEdge[];
2905
- pageInfo: PageInfo;
2906
- totalCount: number;
2907
- }
2908
- /** A connection to a list of `AppLimit` values. */
2909
- export interface AppLimitConnection {
2910
- nodes: AppLimit[];
2911
- edges: AppLimitEdge[];
3584
+ export interface OrgGrantConnection {
3585
+ nodes: OrgGrant[];
3586
+ edges: OrgGrantEdge[];
2912
3587
  pageInfo: PageInfo;
2913
3588
  totalCount: number;
2914
3589
  }
2915
- /** A connection to a list of `OrgLimitAggregate` values. */
2916
- export interface OrgLimitAggregateConnection {
2917
- nodes: OrgLimitAggregate[];
2918
- edges: OrgLimitAggregateEdge[];
3590
+ /** A connection to a list of `OrgChartEdge` values. */
3591
+ export interface OrgChartEdgeConnection {
3592
+ nodes: OrgChartEdge[];
3593
+ edges: OrgChartEdgeEdge[];
2919
3594
  pageInfo: PageInfo;
2920
3595
  totalCount: number;
2921
3596
  }
@@ -2926,13 +3601,6 @@ export interface OrgMemberProfileConnection {
2926
3601
  pageInfo: PageInfo;
2927
3602
  totalCount: number;
2928
3603
  }
2929
- /** A connection to a list of `OrgLimit` values. */
2930
- export interface OrgLimitConnection {
2931
- nodes: OrgLimit[];
2932
- edges: OrgLimitEdge[];
2933
- pageInfo: PageInfo;
2934
- totalCount: number;
2935
- }
2936
3604
  /** A connection to a list of `AppLevel` values. */
2937
3605
  export interface AppLevelConnection {
2938
3606
  nodes: AppLevel[];
@@ -2940,6 +3608,13 @@ export interface AppLevelConnection {
2940
3608
  pageInfo: PageInfo;
2941
3609
  totalCount: number;
2942
3610
  }
3611
+ /** A connection to a list of `AppLimit` values. */
3612
+ export interface AppLimitConnection {
3613
+ nodes: AppLimit[];
3614
+ edges: AppLimitEdge[];
3615
+ pageInfo: PageInfo;
3616
+ totalCount: number;
3617
+ }
2943
3618
  /** A connection to a list of `AppInvite` values. */
2944
3619
  export interface AppInviteConnection {
2945
3620
  nodes: AppInvite[];
@@ -2954,6 +3629,20 @@ export interface OrgMembershipSettingConnection {
2954
3629
  pageInfo: PageInfo;
2955
3630
  totalCount: number;
2956
3631
  }
3632
+ /** A connection to a list of `OrgLimitAggregate` values. */
3633
+ export interface OrgLimitAggregateConnection {
3634
+ nodes: OrgLimitAggregate[];
3635
+ edges: OrgLimitAggregateEdge[];
3636
+ pageInfo: PageInfo;
3637
+ totalCount: number;
3638
+ }
3639
+ /** A connection to a list of `OrgLimit` values. */
3640
+ export interface OrgLimitConnection {
3641
+ nodes: OrgLimit[];
3642
+ edges: OrgLimitEdge[];
3643
+ pageInfo: PageInfo;
3644
+ totalCount: number;
3645
+ }
2957
3646
  /** A connection to a list of `OrgInvite` values. */
2958
3647
  export interface OrgInviteConnection {
2959
3648
  nodes: OrgInvite[];
@@ -2987,6 +3676,12 @@ export interface SubmitOrgInviteCodePayload {
2987
3676
  clientMutationId?: string | null;
2988
3677
  result?: boolean | null;
2989
3678
  }
3679
+ export interface CreateAppLimitCreditRedemptionPayload {
3680
+ clientMutationId?: string | null;
3681
+ /** The `AppLimitCreditRedemption` that was created by this mutation. */
3682
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
3683
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
3684
+ }
2990
3685
  export interface CreateOrgMemberPayload {
2991
3686
  clientMutationId?: string | null;
2992
3687
  /** The `OrgMember` that was created by this mutation. */
@@ -2999,6 +3694,12 @@ export interface CreateAppPermissionDefaultPayload {
2999
3694
  appPermissionDefault?: AppPermissionDefault | null;
3000
3695
  appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
3001
3696
  }
3697
+ export interface CreateAppLimitCreditCodePayload {
3698
+ clientMutationId?: string | null;
3699
+ /** The `AppLimitCreditCode` that was created by this mutation. */
3700
+ appLimitCreditCode?: AppLimitCreditCode | null;
3701
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
3702
+ }
3002
3703
  export interface CreateOrgPermissionDefaultPayload {
3003
3704
  clientMutationId?: string | null;
3004
3705
  /** The `OrgPermissionDefault` that was created by this mutation. */
@@ -3041,6 +3742,30 @@ export interface CreateAppStepPayload {
3041
3742
  appStep?: AppStep | null;
3042
3743
  appStepEdge?: AppStepEdge | null;
3043
3744
  }
3745
+ export interface CreateAppLimitCapsDefaultPayload {
3746
+ clientMutationId?: string | null;
3747
+ /** The `AppLimitCapsDefault` that was created by this mutation. */
3748
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
3749
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
3750
+ }
3751
+ export interface CreateOrgLimitCapsDefaultPayload {
3752
+ clientMutationId?: string | null;
3753
+ /** The `OrgLimitCapsDefault` that was created by this mutation. */
3754
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
3755
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
3756
+ }
3757
+ export interface CreateAppLimitCapPayload {
3758
+ clientMutationId?: string | null;
3759
+ /** The `AppLimitCap` that was created by this mutation. */
3760
+ appLimitCap?: AppLimitCap | null;
3761
+ appLimitCapEdge?: AppLimitCapEdge | null;
3762
+ }
3763
+ export interface CreateOrgLimitCapPayload {
3764
+ clientMutationId?: string | null;
3765
+ /** The `OrgLimitCap` that was created by this mutation. */
3766
+ orgLimitCap?: OrgLimitCap | null;
3767
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
3768
+ }
3044
3769
  export interface CreateOrgAdminGrantPayload {
3045
3770
  clientMutationId?: string | null;
3046
3771
  /** The `OrgAdminGrant` that was created by this mutation. */
@@ -3071,12 +3796,30 @@ export interface CreateOrgLimitDefaultPayload {
3071
3796
  orgLimitDefault?: OrgLimitDefault | null;
3072
3797
  orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
3073
3798
  }
3799
+ export interface CreateAppLimitCreditCodeItemPayload {
3800
+ clientMutationId?: string | null;
3801
+ /** The `AppLimitCreditCodeItem` that was created by this mutation. */
3802
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
3803
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
3804
+ }
3074
3805
  export interface CreateAppLevelRequirementPayload {
3075
3806
  clientMutationId?: string | null;
3076
3807
  /** The `AppLevelRequirement` that was created by this mutation. */
3077
3808
  appLevelRequirement?: AppLevelRequirement | null;
3078
3809
  appLevelRequirementEdge?: AppLevelRequirementEdge | null;
3079
3810
  }
3811
+ export interface CreateAppLimitCreditPayload {
3812
+ clientMutationId?: string | null;
3813
+ /** The `AppLimitCredit` that was created by this mutation. */
3814
+ appLimitCredit?: AppLimitCredit | null;
3815
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
3816
+ }
3817
+ export interface CreateOrgLimitCreditPayload {
3818
+ clientMutationId?: string | null;
3819
+ /** The `OrgLimitCredit` that was created by this mutation. */
3820
+ orgLimitCredit?: OrgLimitCredit | null;
3821
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
3822
+ }
3080
3823
  export interface CreateOrgChartEdgeGrantPayload {
3081
3824
  clientMutationId?: string | null;
3082
3825
  /** The `OrgChartEdgeGrant` that was created by this mutation. */
@@ -3135,36 +3878,24 @@ export interface CreateOrgChartEdgePayload {
3135
3878
  orgChartEdge?: OrgChartEdge | null;
3136
3879
  orgChartEdgeEdge?: OrgChartEdgeEdge | null;
3137
3880
  }
3138
- export interface CreateAppLimitPayload {
3139
- clientMutationId?: string | null;
3140
- /** The `AppLimit` that was created by this mutation. */
3141
- appLimit?: AppLimit | null;
3142
- appLimitEdge?: AppLimitEdge | null;
3143
- }
3144
- export interface CreateOrgLimitAggregatePayload {
3145
- clientMutationId?: string | null;
3146
- /** The `OrgLimitAggregate` that was created by this mutation. */
3147
- orgLimitAggregate?: OrgLimitAggregate | null;
3148
- orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3149
- }
3150
3881
  export interface CreateOrgMemberProfilePayload {
3151
3882
  clientMutationId?: string | null;
3152
3883
  /** The `OrgMemberProfile` that was created by this mutation. */
3153
3884
  orgMemberProfile?: OrgMemberProfile | null;
3154
3885
  orgMemberProfileEdge?: OrgMemberProfileEdge | null;
3155
3886
  }
3156
- export interface CreateOrgLimitPayload {
3157
- clientMutationId?: string | null;
3158
- /** The `OrgLimit` that was created by this mutation. */
3159
- orgLimit?: OrgLimit | null;
3160
- orgLimitEdge?: OrgLimitEdge | null;
3161
- }
3162
3887
  export interface CreateAppLevelPayload {
3163
3888
  clientMutationId?: string | null;
3164
3889
  /** The `AppLevel` that was created by this mutation. */
3165
3890
  appLevel?: AppLevel | null;
3166
3891
  appLevelEdge?: AppLevelEdge | null;
3167
3892
  }
3893
+ export interface CreateAppLimitPayload {
3894
+ clientMutationId?: string | null;
3895
+ /** The `AppLimit` that was created by this mutation. */
3896
+ appLimit?: AppLimit | null;
3897
+ appLimitEdge?: AppLimitEdge | null;
3898
+ }
3168
3899
  export interface CreateAppInvitePayload {
3169
3900
  clientMutationId?: string | null;
3170
3901
  /** The `AppInvite` that was created by this mutation. */
@@ -3177,6 +3908,18 @@ export interface CreateOrgMembershipSettingPayload {
3177
3908
  orgMembershipSetting?: OrgMembershipSetting | null;
3178
3909
  orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
3179
3910
  }
3911
+ export interface CreateOrgLimitAggregatePayload {
3912
+ clientMutationId?: string | null;
3913
+ /** The `OrgLimitAggregate` that was created by this mutation. */
3914
+ orgLimitAggregate?: OrgLimitAggregate | null;
3915
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3916
+ }
3917
+ export interface CreateOrgLimitPayload {
3918
+ clientMutationId?: string | null;
3919
+ /** The `OrgLimit` that was created by this mutation. */
3920
+ orgLimit?: OrgLimit | null;
3921
+ orgLimitEdge?: OrgLimitEdge | null;
3922
+ }
3180
3923
  export interface CreateOrgInvitePayload {
3181
3924
  clientMutationId?: string | null;
3182
3925
  /** The `OrgInvite` that was created by this mutation. */
@@ -3195,6 +3938,12 @@ export interface CreateOrgMembershipPayload {
3195
3938
  orgMembership?: OrgMembership | null;
3196
3939
  orgMembershipEdge?: OrgMembershipEdge | null;
3197
3940
  }
3941
+ export interface UpdateAppLimitCreditRedemptionPayload {
3942
+ clientMutationId?: string | null;
3943
+ /** The `AppLimitCreditRedemption` that was updated by this mutation. */
3944
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
3945
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
3946
+ }
3198
3947
  export interface UpdateOrgMemberPayload {
3199
3948
  clientMutationId?: string | null;
3200
3949
  /** The `OrgMember` that was updated by this mutation. */
@@ -3207,6 +3956,12 @@ export interface UpdateAppPermissionDefaultPayload {
3207
3956
  appPermissionDefault?: AppPermissionDefault | null;
3208
3957
  appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
3209
3958
  }
3959
+ export interface UpdateAppLimitCreditCodePayload {
3960
+ clientMutationId?: string | null;
3961
+ /** The `AppLimitCreditCode` that was updated by this mutation. */
3962
+ appLimitCreditCode?: AppLimitCreditCode | null;
3963
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
3964
+ }
3210
3965
  export interface UpdateOrgPermissionDefaultPayload {
3211
3966
  clientMutationId?: string | null;
3212
3967
  /** The `OrgPermissionDefault` that was updated by this mutation. */
@@ -3249,6 +4004,30 @@ export interface UpdateAppStepPayload {
3249
4004
  appStep?: AppStep | null;
3250
4005
  appStepEdge?: AppStepEdge | null;
3251
4006
  }
4007
+ export interface UpdateAppLimitCapsDefaultPayload {
4008
+ clientMutationId?: string | null;
4009
+ /** The `AppLimitCapsDefault` that was updated by this mutation. */
4010
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
4011
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
4012
+ }
4013
+ export interface UpdateOrgLimitCapsDefaultPayload {
4014
+ clientMutationId?: string | null;
4015
+ /** The `OrgLimitCapsDefault` that was updated by this mutation. */
4016
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
4017
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
4018
+ }
4019
+ export interface UpdateAppLimitCapPayload {
4020
+ clientMutationId?: string | null;
4021
+ /** The `AppLimitCap` that was updated by this mutation. */
4022
+ appLimitCap?: AppLimitCap | null;
4023
+ appLimitCapEdge?: AppLimitCapEdge | null;
4024
+ }
4025
+ export interface UpdateOrgLimitCapPayload {
4026
+ clientMutationId?: string | null;
4027
+ /** The `OrgLimitCap` that was updated by this mutation. */
4028
+ orgLimitCap?: OrgLimitCap | null;
4029
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
4030
+ }
3252
4031
  export interface UpdateOrgAdminGrantPayload {
3253
4032
  clientMutationId?: string | null;
3254
4033
  /** The `OrgAdminGrant` that was updated by this mutation. */
@@ -3279,12 +4058,30 @@ export interface UpdateOrgLimitDefaultPayload {
3279
4058
  orgLimitDefault?: OrgLimitDefault | null;
3280
4059
  orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
3281
4060
  }
4061
+ export interface UpdateAppLimitCreditCodeItemPayload {
4062
+ clientMutationId?: string | null;
4063
+ /** The `AppLimitCreditCodeItem` that was updated by this mutation. */
4064
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
4065
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
4066
+ }
3282
4067
  export interface UpdateAppLevelRequirementPayload {
3283
4068
  clientMutationId?: string | null;
3284
4069
  /** The `AppLevelRequirement` that was updated by this mutation. */
3285
4070
  appLevelRequirement?: AppLevelRequirement | null;
3286
4071
  appLevelRequirementEdge?: AppLevelRequirementEdge | null;
3287
4072
  }
4073
+ export interface UpdateAppLimitCreditPayload {
4074
+ clientMutationId?: string | null;
4075
+ /** The `AppLimitCredit` that was updated by this mutation. */
4076
+ appLimitCredit?: AppLimitCredit | null;
4077
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
4078
+ }
4079
+ export interface UpdateOrgLimitCreditPayload {
4080
+ clientMutationId?: string | null;
4081
+ /** The `OrgLimitCredit` that was updated by this mutation. */
4082
+ orgLimitCredit?: OrgLimitCredit | null;
4083
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
4084
+ }
3288
4085
  export interface UpdateOrgChartEdgeGrantPayload {
3289
4086
  clientMutationId?: string | null;
3290
4087
  /** The `OrgChartEdgeGrant` that was updated by this mutation. */
@@ -3333,36 +4130,24 @@ export interface UpdateOrgChartEdgePayload {
3333
4130
  orgChartEdge?: OrgChartEdge | null;
3334
4131
  orgChartEdgeEdge?: OrgChartEdgeEdge | null;
3335
4132
  }
3336
- export interface UpdateAppLimitPayload {
3337
- clientMutationId?: string | null;
3338
- /** The `AppLimit` that was updated by this mutation. */
3339
- appLimit?: AppLimit | null;
3340
- appLimitEdge?: AppLimitEdge | null;
3341
- }
3342
- export interface UpdateOrgLimitAggregatePayload {
3343
- clientMutationId?: string | null;
3344
- /** The `OrgLimitAggregate` that was updated by this mutation. */
3345
- orgLimitAggregate?: OrgLimitAggregate | null;
3346
- orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3347
- }
3348
4133
  export interface UpdateOrgMemberProfilePayload {
3349
4134
  clientMutationId?: string | null;
3350
4135
  /** The `OrgMemberProfile` that was updated by this mutation. */
3351
4136
  orgMemberProfile?: OrgMemberProfile | null;
3352
4137
  orgMemberProfileEdge?: OrgMemberProfileEdge | null;
3353
4138
  }
3354
- export interface UpdateOrgLimitPayload {
3355
- clientMutationId?: string | null;
3356
- /** The `OrgLimit` that was updated by this mutation. */
3357
- orgLimit?: OrgLimit | null;
3358
- orgLimitEdge?: OrgLimitEdge | null;
3359
- }
3360
4139
  export interface UpdateAppLevelPayload {
3361
4140
  clientMutationId?: string | null;
3362
4141
  /** The `AppLevel` that was updated by this mutation. */
3363
4142
  appLevel?: AppLevel | null;
3364
4143
  appLevelEdge?: AppLevelEdge | null;
3365
4144
  }
4145
+ export interface UpdateAppLimitPayload {
4146
+ clientMutationId?: string | null;
4147
+ /** The `AppLimit` that was updated by this mutation. */
4148
+ appLimit?: AppLimit | null;
4149
+ appLimitEdge?: AppLimitEdge | null;
4150
+ }
3366
4151
  export interface UpdateAppInvitePayload {
3367
4152
  clientMutationId?: string | null;
3368
4153
  /** The `AppInvite` that was updated by this mutation. */
@@ -3375,6 +4160,18 @@ export interface UpdateOrgMembershipSettingPayload {
3375
4160
  orgMembershipSetting?: OrgMembershipSetting | null;
3376
4161
  orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
3377
4162
  }
4163
+ export interface UpdateOrgLimitAggregatePayload {
4164
+ clientMutationId?: string | null;
4165
+ /** The `OrgLimitAggregate` that was updated by this mutation. */
4166
+ orgLimitAggregate?: OrgLimitAggregate | null;
4167
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
4168
+ }
4169
+ export interface UpdateOrgLimitPayload {
4170
+ clientMutationId?: string | null;
4171
+ /** The `OrgLimit` that was updated by this mutation. */
4172
+ orgLimit?: OrgLimit | null;
4173
+ orgLimitEdge?: OrgLimitEdge | null;
4174
+ }
3378
4175
  export interface UpdateOrgInvitePayload {
3379
4176
  clientMutationId?: string | null;
3380
4177
  /** The `OrgInvite` that was updated by this mutation. */
@@ -3393,6 +4190,12 @@ export interface UpdateOrgMembershipPayload {
3393
4190
  orgMembership?: OrgMembership | null;
3394
4191
  orgMembershipEdge?: OrgMembershipEdge | null;
3395
4192
  }
4193
+ export interface DeleteAppLimitCreditRedemptionPayload {
4194
+ clientMutationId?: string | null;
4195
+ /** The `AppLimitCreditRedemption` that was deleted by this mutation. */
4196
+ appLimitCreditRedemption?: AppLimitCreditRedemption | null;
4197
+ appLimitCreditRedemptionEdge?: AppLimitCreditRedemptionEdge | null;
4198
+ }
3396
4199
  export interface DeleteOrgMemberPayload {
3397
4200
  clientMutationId?: string | null;
3398
4201
  /** The `OrgMember` that was deleted by this mutation. */
@@ -3405,6 +4208,12 @@ export interface DeleteAppPermissionDefaultPayload {
3405
4208
  appPermissionDefault?: AppPermissionDefault | null;
3406
4209
  appPermissionDefaultEdge?: AppPermissionDefaultEdge | null;
3407
4210
  }
4211
+ export interface DeleteAppLimitCreditCodePayload {
4212
+ clientMutationId?: string | null;
4213
+ /** The `AppLimitCreditCode` that was deleted by this mutation. */
4214
+ appLimitCreditCode?: AppLimitCreditCode | null;
4215
+ appLimitCreditCodeEdge?: AppLimitCreditCodeEdge | null;
4216
+ }
3408
4217
  export interface DeleteOrgPermissionDefaultPayload {
3409
4218
  clientMutationId?: string | null;
3410
4219
  /** The `OrgPermissionDefault` that was deleted by this mutation. */
@@ -3447,6 +4256,30 @@ export interface DeleteAppStepPayload {
3447
4256
  appStep?: AppStep | null;
3448
4257
  appStepEdge?: AppStepEdge | null;
3449
4258
  }
4259
+ export interface DeleteAppLimitCapsDefaultPayload {
4260
+ clientMutationId?: string | null;
4261
+ /** The `AppLimitCapsDefault` that was deleted by this mutation. */
4262
+ appLimitCapsDefault?: AppLimitCapsDefault | null;
4263
+ appLimitCapsDefaultEdge?: AppLimitCapsDefaultEdge | null;
4264
+ }
4265
+ export interface DeleteOrgLimitCapsDefaultPayload {
4266
+ clientMutationId?: string | null;
4267
+ /** The `OrgLimitCapsDefault` that was deleted by this mutation. */
4268
+ orgLimitCapsDefault?: OrgLimitCapsDefault | null;
4269
+ orgLimitCapsDefaultEdge?: OrgLimitCapsDefaultEdge | null;
4270
+ }
4271
+ export interface DeleteAppLimitCapPayload {
4272
+ clientMutationId?: string | null;
4273
+ /** The `AppLimitCap` that was deleted by this mutation. */
4274
+ appLimitCap?: AppLimitCap | null;
4275
+ appLimitCapEdge?: AppLimitCapEdge | null;
4276
+ }
4277
+ export interface DeleteOrgLimitCapPayload {
4278
+ clientMutationId?: string | null;
4279
+ /** The `OrgLimitCap` that was deleted by this mutation. */
4280
+ orgLimitCap?: OrgLimitCap | null;
4281
+ orgLimitCapEdge?: OrgLimitCapEdge | null;
4282
+ }
3450
4283
  export interface DeleteOrgAdminGrantPayload {
3451
4284
  clientMutationId?: string | null;
3452
4285
  /** The `OrgAdminGrant` that was deleted by this mutation. */
@@ -3477,12 +4310,30 @@ export interface DeleteOrgLimitDefaultPayload {
3477
4310
  orgLimitDefault?: OrgLimitDefault | null;
3478
4311
  orgLimitDefaultEdge?: OrgLimitDefaultEdge | null;
3479
4312
  }
4313
+ export interface DeleteAppLimitCreditCodeItemPayload {
4314
+ clientMutationId?: string | null;
4315
+ /** The `AppLimitCreditCodeItem` that was deleted by this mutation. */
4316
+ appLimitCreditCodeItem?: AppLimitCreditCodeItem | null;
4317
+ appLimitCreditCodeItemEdge?: AppLimitCreditCodeItemEdge | null;
4318
+ }
3480
4319
  export interface DeleteAppLevelRequirementPayload {
3481
4320
  clientMutationId?: string | null;
3482
4321
  /** The `AppLevelRequirement` that was deleted by this mutation. */
3483
4322
  appLevelRequirement?: AppLevelRequirement | null;
3484
4323
  appLevelRequirementEdge?: AppLevelRequirementEdge | null;
3485
4324
  }
4325
+ export interface DeleteAppLimitCreditPayload {
4326
+ clientMutationId?: string | null;
4327
+ /** The `AppLimitCredit` that was deleted by this mutation. */
4328
+ appLimitCredit?: AppLimitCredit | null;
4329
+ appLimitCreditEdge?: AppLimitCreditEdge | null;
4330
+ }
4331
+ export interface DeleteOrgLimitCreditPayload {
4332
+ clientMutationId?: string | null;
4333
+ /** The `OrgLimitCredit` that was deleted by this mutation. */
4334
+ orgLimitCredit?: OrgLimitCredit | null;
4335
+ orgLimitCreditEdge?: OrgLimitCreditEdge | null;
4336
+ }
3486
4337
  export interface DeleteOrgChartEdgeGrantPayload {
3487
4338
  clientMutationId?: string | null;
3488
4339
  /** The `OrgChartEdgeGrant` that was deleted by this mutation. */
@@ -3531,36 +4382,24 @@ export interface DeleteOrgChartEdgePayload {
3531
4382
  orgChartEdge?: OrgChartEdge | null;
3532
4383
  orgChartEdgeEdge?: OrgChartEdgeEdge | null;
3533
4384
  }
3534
- export interface DeleteAppLimitPayload {
3535
- clientMutationId?: string | null;
3536
- /** The `AppLimit` that was deleted by this mutation. */
3537
- appLimit?: AppLimit | null;
3538
- appLimitEdge?: AppLimitEdge | null;
3539
- }
3540
- export interface DeleteOrgLimitAggregatePayload {
3541
- clientMutationId?: string | null;
3542
- /** The `OrgLimitAggregate` that was deleted by this mutation. */
3543
- orgLimitAggregate?: OrgLimitAggregate | null;
3544
- orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
3545
- }
3546
4385
  export interface DeleteOrgMemberProfilePayload {
3547
4386
  clientMutationId?: string | null;
3548
4387
  /** The `OrgMemberProfile` that was deleted by this mutation. */
3549
4388
  orgMemberProfile?: OrgMemberProfile | null;
3550
4389
  orgMemberProfileEdge?: OrgMemberProfileEdge | null;
3551
4390
  }
3552
- export interface DeleteOrgLimitPayload {
3553
- clientMutationId?: string | null;
3554
- /** The `OrgLimit` that was deleted by this mutation. */
3555
- orgLimit?: OrgLimit | null;
3556
- orgLimitEdge?: OrgLimitEdge | null;
3557
- }
3558
4391
  export interface DeleteAppLevelPayload {
3559
4392
  clientMutationId?: string | null;
3560
4393
  /** The `AppLevel` that was deleted by this mutation. */
3561
4394
  appLevel?: AppLevel | null;
3562
4395
  appLevelEdge?: AppLevelEdge | null;
3563
4396
  }
4397
+ export interface DeleteAppLimitPayload {
4398
+ clientMutationId?: string | null;
4399
+ /** The `AppLimit` that was deleted by this mutation. */
4400
+ appLimit?: AppLimit | null;
4401
+ appLimitEdge?: AppLimitEdge | null;
4402
+ }
3564
4403
  export interface DeleteAppInvitePayload {
3565
4404
  clientMutationId?: string | null;
3566
4405
  /** The `AppInvite` that was deleted by this mutation. */
@@ -3573,6 +4412,18 @@ export interface DeleteOrgMembershipSettingPayload {
3573
4412
  orgMembershipSetting?: OrgMembershipSetting | null;
3574
4413
  orgMembershipSettingEdge?: OrgMembershipSettingEdge | null;
3575
4414
  }
4415
+ export interface DeleteOrgLimitAggregatePayload {
4416
+ clientMutationId?: string | null;
4417
+ /** The `OrgLimitAggregate` that was deleted by this mutation. */
4418
+ orgLimitAggregate?: OrgLimitAggregate | null;
4419
+ orgLimitAggregateEdge?: OrgLimitAggregateEdge | null;
4420
+ }
4421
+ export interface DeleteOrgLimitPayload {
4422
+ clientMutationId?: string | null;
4423
+ /** The `OrgLimit` that was deleted by this mutation. */
4424
+ orgLimit?: OrgLimit | null;
4425
+ orgLimitEdge?: OrgLimitEdge | null;
4426
+ }
3576
4427
  export interface DeleteOrgInvitePayload {
3577
4428
  clientMutationId?: string | null;
3578
4429
  /** The `OrgInvite` that was deleted by this mutation. */
@@ -3591,18 +4442,6 @@ export interface DeleteOrgMembershipPayload {
3591
4442
  orgMembership?: OrgMembership | null;
3592
4443
  orgMembershipEdge?: OrgMembershipEdge | null;
3593
4444
  }
3594
- export interface RequestUploadUrlPayload {
3595
- /** Presigned PUT URL (null if file was deduplicated) */
3596
- uploadUrl?: string | null;
3597
- /** The file ID (existing if deduplicated, new if fresh upload) */
3598
- fileId: string;
3599
- /** The S3 object key */
3600
- key: string;
3601
- /** Whether this file was deduplicated (already exists with same hash) */
3602
- deduplicated: boolean;
3603
- /** Presigned URL expiry time (null if deduplicated) */
3604
- expiresAt?: string | null;
3605
- }
3606
4445
  export interface ProvisionBucketPayload {
3607
4446
  /** Whether provisioning succeeded */
3608
4447
  success: boolean;
@@ -3658,6 +4497,12 @@ export interface AppLevelRequirementEdge {
3658
4497
  /** The `AppLevelRequirement` at the end of the edge. */
3659
4498
  node?: AppLevelRequirement | null;
3660
4499
  }
4500
+ /** A `AppLimitCreditRedemption` edge in the connection. */
4501
+ export interface AppLimitCreditRedemptionEdge {
4502
+ cursor?: string | null;
4503
+ /** The `AppLimitCreditRedemption` at the end of the edge. */
4504
+ node?: AppLimitCreditRedemption | null;
4505
+ }
3661
4506
  /** A `OrgMember` edge in the connection. */
3662
4507
  export interface OrgMemberEdge {
3663
4508
  cursor?: string | null;
@@ -3670,6 +4515,12 @@ export interface AppPermissionDefaultEdge {
3670
4515
  /** The `AppPermissionDefault` at the end of the edge. */
3671
4516
  node?: AppPermissionDefault | null;
3672
4517
  }
4518
+ /** A `AppLimitCreditCode` edge in the connection. */
4519
+ export interface AppLimitCreditCodeEdge {
4520
+ cursor?: string | null;
4521
+ /** The `AppLimitCreditCode` at the end of the edge. */
4522
+ node?: AppLimitCreditCode | null;
4523
+ }
3673
4524
  /** A `OrgPermissionDefault` edge in the connection. */
3674
4525
  export interface OrgPermissionDefaultEdge {
3675
4526
  cursor?: string | null;
@@ -3700,6 +4551,30 @@ export interface AppStepEdge {
3700
4551
  /** The `AppStep` at the end of the edge. */
3701
4552
  node?: AppStep | null;
3702
4553
  }
4554
+ /** A `AppLimitCapsDefault` edge in the connection. */
4555
+ export interface AppLimitCapsDefaultEdge {
4556
+ cursor?: string | null;
4557
+ /** The `AppLimitCapsDefault` at the end of the edge. */
4558
+ node?: AppLimitCapsDefault | null;
4559
+ }
4560
+ /** A `OrgLimitCapsDefault` edge in the connection. */
4561
+ export interface OrgLimitCapsDefaultEdge {
4562
+ cursor?: string | null;
4563
+ /** The `OrgLimitCapsDefault` at the end of the edge. */
4564
+ node?: OrgLimitCapsDefault | null;
4565
+ }
4566
+ /** A `AppLimitCap` edge in the connection. */
4567
+ export interface AppLimitCapEdge {
4568
+ cursor?: string | null;
4569
+ /** The `AppLimitCap` at the end of the edge. */
4570
+ node?: AppLimitCap | null;
4571
+ }
4572
+ /** A `OrgLimitCap` edge in the connection. */
4573
+ export interface OrgLimitCapEdge {
4574
+ cursor?: string | null;
4575
+ /** The `OrgLimitCap` at the end of the edge. */
4576
+ node?: OrgLimitCap | null;
4577
+ }
3703
4578
  /** A `OrgAdminGrant` edge in the connection. */
3704
4579
  export interface OrgAdminGrantEdge {
3705
4580
  cursor?: string | null;
@@ -3730,6 +4605,24 @@ export interface OrgLimitDefaultEdge {
3730
4605
  /** The `OrgLimitDefault` at the end of the edge. */
3731
4606
  node?: OrgLimitDefault | null;
3732
4607
  }
4608
+ /** A `AppLimitCreditCodeItem` edge in the connection. */
4609
+ export interface AppLimitCreditCodeItemEdge {
4610
+ cursor?: string | null;
4611
+ /** The `AppLimitCreditCodeItem` at the end of the edge. */
4612
+ node?: AppLimitCreditCodeItem | null;
4613
+ }
4614
+ /** A `AppLimitCredit` edge in the connection. */
4615
+ export interface AppLimitCreditEdge {
4616
+ cursor?: string | null;
4617
+ /** The `AppLimitCredit` at the end of the edge. */
4618
+ node?: AppLimitCredit | null;
4619
+ }
4620
+ /** A `OrgLimitCredit` edge in the connection. */
4621
+ export interface OrgLimitCreditEdge {
4622
+ cursor?: string | null;
4623
+ /** The `OrgLimitCredit` at the end of the edge. */
4624
+ node?: OrgLimitCredit | null;
4625
+ }
3733
4626
  /** A `OrgChartEdgeGrant` edge in the connection. */
3734
4627
  export interface OrgChartEdgeGrantEdge {
3735
4628
  cursor?: string | null;
@@ -3790,36 +4683,24 @@ export interface OrgChartEdgeEdge {
3790
4683
  /** The `OrgChartEdge` at the end of the edge. */
3791
4684
  node?: OrgChartEdge | null;
3792
4685
  }
3793
- /** A `AppLimit` edge in the connection. */
3794
- export interface AppLimitEdge {
3795
- cursor?: string | null;
3796
- /** The `AppLimit` at the end of the edge. */
3797
- node?: AppLimit | null;
3798
- }
3799
- /** A `OrgLimitAggregate` edge in the connection. */
3800
- export interface OrgLimitAggregateEdge {
3801
- cursor?: string | null;
3802
- /** The `OrgLimitAggregate` at the end of the edge. */
3803
- node?: OrgLimitAggregate | null;
3804
- }
3805
4686
  /** A `OrgMemberProfile` edge in the connection. */
3806
4687
  export interface OrgMemberProfileEdge {
3807
4688
  cursor?: string | null;
3808
4689
  /** The `OrgMemberProfile` at the end of the edge. */
3809
4690
  node?: OrgMemberProfile | null;
3810
4691
  }
3811
- /** A `OrgLimit` edge in the connection. */
3812
- export interface OrgLimitEdge {
3813
- cursor?: string | null;
3814
- /** The `OrgLimit` at the end of the edge. */
3815
- node?: OrgLimit | null;
3816
- }
3817
4692
  /** A `AppLevel` edge in the connection. */
3818
4693
  export interface AppLevelEdge {
3819
4694
  cursor?: string | null;
3820
4695
  /** The `AppLevel` at the end of the edge. */
3821
4696
  node?: AppLevel | null;
3822
4697
  }
4698
+ /** A `AppLimit` edge in the connection. */
4699
+ export interface AppLimitEdge {
4700
+ cursor?: string | null;
4701
+ /** The `AppLimit` at the end of the edge. */
4702
+ node?: AppLimit | null;
4703
+ }
3823
4704
  /** A `AppInvite` edge in the connection. */
3824
4705
  export interface AppInviteEdge {
3825
4706
  cursor?: string | null;
@@ -3832,6 +4713,18 @@ export interface OrgMembershipSettingEdge {
3832
4713
  /** The `OrgMembershipSetting` at the end of the edge. */
3833
4714
  node?: OrgMembershipSetting | null;
3834
4715
  }
4716
+ /** A `OrgLimitAggregate` edge in the connection. */
4717
+ export interface OrgLimitAggregateEdge {
4718
+ cursor?: string | null;
4719
+ /** The `OrgLimitAggregate` at the end of the edge. */
4720
+ node?: OrgLimitAggregate | null;
4721
+ }
4722
+ /** A `OrgLimit` edge in the connection. */
4723
+ export interface OrgLimitEdge {
4724
+ cursor?: string | null;
4725
+ /** The `OrgLimit` at the end of the edge. */
4726
+ node?: OrgLimit | null;
4727
+ }
3835
4728
  /** A `OrgInvite` edge in the connection. */
3836
4729
  export interface OrgInviteEdge {
3837
4730
  cursor?: string | null;