@burdenoff/microfe-admin 2026.511.1

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 (370) hide show
  1. package/README.md +74 -0
  2. package/dist/admin/AdminRoot.d.ts +31 -0
  3. package/dist/admin/AdminRoot.d.ts.map +1 -0
  4. package/dist/admin/AdminRoot.js +175 -0
  5. package/dist/admin/AdminRoot.js.map +1 -0
  6. package/dist/admin/AdminRoutes.d.ts +29 -0
  7. package/dist/admin/AdminRoutes.d.ts.map +1 -0
  8. package/dist/admin/AdminRoutes.js +143 -0
  9. package/dist/admin/AdminRoutes.js.map +1 -0
  10. package/dist/admin/components/AccessDenied.d.ts +8 -0
  11. package/dist/admin/components/AccessDenied.d.ts.map +1 -0
  12. package/dist/admin/components/AccessDenied.js +28 -0
  13. package/dist/admin/components/AccessDenied.js.map +1 -0
  14. package/dist/admin/components/ActivityFeed.d.ts +20 -0
  15. package/dist/admin/components/ActivityFeed.d.ts.map +1 -0
  16. package/dist/admin/components/ActivityFeed.js +91 -0
  17. package/dist/admin/components/ActivityFeed.js.map +1 -0
  18. package/dist/admin/components/Charts.d.ts +33 -0
  19. package/dist/admin/components/Charts.d.ts.map +1 -0
  20. package/dist/admin/components/Charts.js +37 -0
  21. package/dist/admin/components/Charts.js.map +1 -0
  22. package/dist/admin/components/ConfirmDialog.d.ts +45 -0
  23. package/dist/admin/components/ConfirmDialog.d.ts.map +1 -0
  24. package/dist/admin/components/ConfirmDialog.js +4 -0
  25. package/dist/admin/components/DataTable.d.ts +64 -0
  26. package/dist/admin/components/DataTable.d.ts.map +1 -0
  27. package/dist/admin/components/DataTable.js +127 -0
  28. package/dist/admin/components/DataTable.js.map +1 -0
  29. package/dist/admin/components/FormSheet.d.ts +79 -0
  30. package/dist/admin/components/FormSheet.d.ts.map +1 -0
  31. package/dist/admin/components/FormSheet.js +111 -0
  32. package/dist/admin/components/FormSheet.js.map +1 -0
  33. package/dist/admin/components/MetricCard.d.ts +40 -0
  34. package/dist/admin/components/MetricCard.d.ts.map +1 -0
  35. package/dist/admin/components/MetricCard.js +57 -0
  36. package/dist/admin/components/MetricCard.js.map +1 -0
  37. package/dist/admin/components/PageLayout.d.ts +34 -0
  38. package/dist/admin/components/PageLayout.d.ts.map +1 -0
  39. package/dist/admin/components/PageLayout.js +31 -0
  40. package/dist/admin/components/PageLayout.js.map +1 -0
  41. package/dist/admin/components/PermissionGuard.d.ts +12 -0
  42. package/dist/admin/components/PermissionGuard.d.ts.map +1 -0
  43. package/dist/admin/components/PermissionGuard.js +18 -0
  44. package/dist/admin/components/PermissionGuard.js.map +1 -0
  45. package/dist/admin/components/RowActions.d.ts +41 -0
  46. package/dist/admin/components/RowActions.d.ts.map +1 -0
  47. package/dist/admin/components/RowActions.js +93 -0
  48. package/dist/admin/components/RowActions.js.map +1 -0
  49. package/dist/admin/components/StatusBadge.d.ts +35 -0
  50. package/dist/admin/components/StatusBadge.d.ts.map +1 -0
  51. package/dist/admin/components/StatusBadge.js +41 -0
  52. package/dist/admin/components/StatusBadge.js.map +1 -0
  53. package/dist/admin/components/Toast.d.ts +26 -0
  54. package/dist/admin/components/Toast.d.ts.map +1 -0
  55. package/dist/admin/components/Toast.js +133 -0
  56. package/dist/admin/components/Toast.js.map +1 -0
  57. package/dist/admin/components/forms/SubscriptionForm.d.ts +57 -0
  58. package/dist/admin/components/forms/SubscriptionForm.d.ts.map +1 -0
  59. package/dist/admin/components/forms/SubscriptionForm.js +299 -0
  60. package/dist/admin/components/forms/SubscriptionForm.js.map +1 -0
  61. package/dist/admin/components/forms/TenantForm.d.ts +68 -0
  62. package/dist/admin/components/forms/TenantForm.d.ts.map +1 -0
  63. package/dist/admin/components/forms/TenantForm.js +346 -0
  64. package/dist/admin/components/forms/TenantForm.js.map +1 -0
  65. package/dist/admin/components/forms/TicketForm.d.ts +67 -0
  66. package/dist/admin/components/forms/TicketForm.d.ts.map +1 -0
  67. package/dist/admin/components/forms/TicketForm.js +55 -0
  68. package/dist/admin/components/forms/TicketForm.js.map +1 -0
  69. package/dist/admin/components/forms/UserForm.d.ts +57 -0
  70. package/dist/admin/components/forms/UserForm.d.ts.map +1 -0
  71. package/dist/admin/components/forms/UserForm.js +253 -0
  72. package/dist/admin/components/forms/UserForm.js.map +1 -0
  73. package/dist/admin/components/forms/index.d.ts +5 -0
  74. package/dist/admin/components/forms/index.d.ts.map +1 -0
  75. package/dist/admin/components/forms/index.js +4 -0
  76. package/dist/admin/components/index.d.ts +15 -0
  77. package/dist/admin/components/index.d.ts.map +1 -0
  78. package/dist/admin/components/index.js +17 -0
  79. package/dist/admin/components/ui.d.ts +52 -0
  80. package/dist/admin/components/ui.d.ts.map +1 -0
  81. package/dist/admin/components/ui.js +140 -0
  82. package/dist/admin/components/ui.js.map +1 -0
  83. package/dist/admin/constants/index.d.ts +75 -0
  84. package/dist/admin/constants/index.d.ts.map +1 -0
  85. package/dist/admin/constants/index.js +90 -0
  86. package/dist/admin/constants/index.js.map +1 -0
  87. package/dist/admin/constants/permissions.d.ts +27 -0
  88. package/dist/admin/constants/permissions.d.ts.map +1 -0
  89. package/dist/admin/constants/permissions.js +23 -0
  90. package/dist/admin/constants/permissions.js.map +1 -0
  91. package/dist/admin/hooks/useAdminPermissions.d.ts +30 -0
  92. package/dist/admin/hooks/useAdminPermissions.d.ts.map +1 -0
  93. package/dist/admin/hooks/useAdminPermissions.js +56 -0
  94. package/dist/admin/hooks/useAdminPermissions.js.map +1 -0
  95. package/dist/admin/index.d.ts +31 -0
  96. package/dist/admin/index.d.ts.map +1 -0
  97. package/dist/admin/index.js +9 -0
  98. package/dist/admin/pages/AuditLogsPage.d.ts +5 -0
  99. package/dist/admin/pages/AuditLogsPage.d.ts.map +1 -0
  100. package/dist/admin/pages/AuditLogsPage.js +209 -0
  101. package/dist/admin/pages/AuditLogsPage.js.map +1 -0
  102. package/dist/admin/pages/BillingPage.d.ts +2 -0
  103. package/dist/admin/pages/BillingPage.d.ts.map +1 -0
  104. package/dist/admin/pages/BillingPage.js +164 -0
  105. package/dist/admin/pages/BillingPage.js.map +1 -0
  106. package/dist/admin/pages/CommunicationsPage.d.ts +2 -0
  107. package/dist/admin/pages/CommunicationsPage.d.ts.map +1 -0
  108. package/dist/admin/pages/CommunicationsPage.js +118 -0
  109. package/dist/admin/pages/CommunicationsPage.js.map +1 -0
  110. package/dist/admin/pages/DashboardPage.d.ts +5 -0
  111. package/dist/admin/pages/DashboardPage.d.ts.map +1 -0
  112. package/dist/admin/pages/DashboardPage.js +121 -0
  113. package/dist/admin/pages/DashboardPage.js.map +1 -0
  114. package/dist/admin/pages/FeatureFlagsPage.d.ts +2 -0
  115. package/dist/admin/pages/FeatureFlagsPage.d.ts.map +1 -0
  116. package/dist/admin/pages/FeatureFlagsPage.js +116 -0
  117. package/dist/admin/pages/FeatureFlagsPage.js.map +1 -0
  118. package/dist/admin/pages/OrganizationsListPage.d.ts +2 -0
  119. package/dist/admin/pages/OrganizationsListPage.d.ts.map +1 -0
  120. package/dist/admin/pages/OrganizationsListPage.js +112 -0
  121. package/dist/admin/pages/OrganizationsListPage.js.map +1 -0
  122. package/dist/admin/pages/ProductsPage.d.ts +5 -0
  123. package/dist/admin/pages/ProductsPage.d.ts.map +1 -0
  124. package/dist/admin/pages/ProductsPage.js +392 -0
  125. package/dist/admin/pages/ProductsPage.js.map +1 -0
  126. package/dist/admin/pages/ReferralsPage.d.ts +2 -0
  127. package/dist/admin/pages/ReferralsPage.d.ts.map +1 -0
  128. package/dist/admin/pages/ReferralsPage.js +272 -0
  129. package/dist/admin/pages/ReferralsPage.js.map +1 -0
  130. package/dist/admin/pages/RolesPermissionsPage.d.ts +2 -0
  131. package/dist/admin/pages/RolesPermissionsPage.d.ts.map +1 -0
  132. package/dist/admin/pages/RolesPermissionsPage.js +145 -0
  133. package/dist/admin/pages/RolesPermissionsPage.js.map +1 -0
  134. package/dist/admin/pages/SREPage.d.ts +5 -0
  135. package/dist/admin/pages/SREPage.d.ts.map +1 -0
  136. package/dist/admin/pages/SREPage.js +405 -0
  137. package/dist/admin/pages/SREPage.js.map +1 -0
  138. package/dist/admin/pages/SandboxSettingsPage.d.ts +7 -0
  139. package/dist/admin/pages/SandboxSettingsPage.d.ts.map +1 -0
  140. package/dist/admin/pages/SandboxSettingsPage.js +497 -0
  141. package/dist/admin/pages/SandboxSettingsPage.js.map +1 -0
  142. package/dist/admin/pages/SettingsPage.d.ts +5 -0
  143. package/dist/admin/pages/SettingsPage.d.ts.map +1 -0
  144. package/dist/admin/pages/SettingsPage.js +279 -0
  145. package/dist/admin/pages/SettingsPage.js.map +1 -0
  146. package/dist/admin/pages/TenantDetailPage.d.ts +5 -0
  147. package/dist/admin/pages/TenantDetailPage.d.ts.map +1 -0
  148. package/dist/admin/pages/TenantDetailPage.js +274 -0
  149. package/dist/admin/pages/TenantDetailPage.js.map +1 -0
  150. package/dist/admin/pages/TenantFormRoutePage.d.ts +6 -0
  151. package/dist/admin/pages/TenantFormRoutePage.d.ts.map +1 -0
  152. package/dist/admin/pages/TenantFormRoutePage.js +136 -0
  153. package/dist/admin/pages/TenantFormRoutePage.js.map +1 -0
  154. package/dist/admin/pages/TenantsListPage.d.ts +5 -0
  155. package/dist/admin/pages/TenantsListPage.d.ts.map +1 -0
  156. package/dist/admin/pages/TenantsListPage.js +339 -0
  157. package/dist/admin/pages/TenantsListPage.js.map +1 -0
  158. package/dist/admin/pages/UsersListPage.d.ts +5 -0
  159. package/dist/admin/pages/UsersListPage.d.ts.map +1 -0
  160. package/dist/admin/pages/UsersListPage.js +250 -0
  161. package/dist/admin/pages/UsersListPage.js.map +1 -0
  162. package/dist/admin/pages/WaitlistPage.d.ts +2 -0
  163. package/dist/admin/pages/WaitlistPage.d.ts.map +1 -0
  164. package/dist/admin/pages/WaitlistPage.js +241 -0
  165. package/dist/admin/pages/WaitlistPage.js.map +1 -0
  166. package/dist/admin/pages/WorkflowsPage.d.ts +2 -0
  167. package/dist/admin/pages/WorkflowsPage.d.ts.map +1 -0
  168. package/dist/admin/pages/WorkflowsPage.js +126 -0
  169. package/dist/admin/pages/WorkflowsPage.js.map +1 -0
  170. package/dist/admin/pages/WorkspacesListPage.d.ts +2 -0
  171. package/dist/admin/pages/WorkspacesListPage.d.ts.map +1 -0
  172. package/dist/admin/pages/WorkspacesListPage.js +100 -0
  173. package/dist/admin/pages/WorkspacesListPage.js.map +1 -0
  174. package/dist/admin/pages/index.d.ts +20 -0
  175. package/dist/admin/pages/index.d.ts.map +1 -0
  176. package/dist/admin/pages/index.js +19 -0
  177. package/dist/admin/providers/AdminProvider.d.ts +13 -0
  178. package/dist/admin/providers/AdminProvider.d.ts.map +1 -0
  179. package/dist/admin/providers/AdminProvider.js +43 -0
  180. package/dist/admin/providers/AdminProvider.js.map +1 -0
  181. package/dist/admin/schemas/index.d.ts +409 -0
  182. package/dist/admin/schemas/index.d.ts.map +1 -0
  183. package/dist/admin/schemas/index.js +111 -0
  184. package/dist/admin/schemas/index.js.map +1 -0
  185. package/dist/admin/store/adminStore.d.ts +28 -0
  186. package/dist/admin/store/adminStore.d.ts.map +1 -0
  187. package/dist/admin/store/adminStore.js +48 -0
  188. package/dist/admin/store/adminStore.js.map +1 -0
  189. package/dist/admin/types/index.d.ts +325 -0
  190. package/dist/admin/types/index.d.ts.map +1 -0
  191. package/dist/admin/utils/cn.d.ts +7 -0
  192. package/dist/admin/utils/cn.d.ts.map +1 -0
  193. package/dist/admin/utils/cn.js +10 -0
  194. package/dist/admin/utils/cn.js.map +1 -0
  195. package/dist/admin/utils/directActivityGraphql.d.ts +11 -0
  196. package/dist/admin/utils/directActivityGraphql.d.ts.map +1 -0
  197. package/dist/admin/utils/directActivityGraphql.js +25 -0
  198. package/dist/admin/utils/directActivityGraphql.js.map +1 -0
  199. package/dist/admin/utils/formatters.d.ts +33 -0
  200. package/dist/admin/utils/formatters.d.ts.map +1 -0
  201. package/dist/admin/utils/formatters.js +54 -0
  202. package/dist/admin/utils/formatters.js.map +1 -0
  203. package/dist/admin/utils/gatewayGraphql.d.ts +9 -0
  204. package/dist/admin/utils/gatewayGraphql.d.ts.map +1 -0
  205. package/dist/admin/utils/i18n.d.ts +6 -0
  206. package/dist/admin/utils/i18n.d.ts.map +1 -0
  207. package/dist/admin/utils/i18n.js +15 -0
  208. package/dist/admin/utils/i18n.js.map +1 -0
  209. package/dist/admin/utils/mappers.d.ts +15 -0
  210. package/dist/admin/utils/mappers.d.ts.map +1 -0
  211. package/dist/admin/utils/mappers.js +73 -0
  212. package/dist/admin/utils/mappers.js.map +1 -0
  213. package/dist/admin/utils/navigation.d.ts +9 -0
  214. package/dist/admin/utils/navigation.d.ts.map +1 -0
  215. package/dist/admin/utils/navigation.js +8 -0
  216. package/dist/admin/utils/navigation.js.map +1 -0
  217. package/dist/admin/utils/tenantEvents.d.ts +11 -0
  218. package/dist/admin/utils/tenantEvents.d.ts.map +1 -0
  219. package/dist/admin/utils/tenantEvents.js +8 -0
  220. package/dist/admin/utils/tenantEvents.js.map +1 -0
  221. package/dist/dev/main.d.ts +2 -0
  222. package/dist/dev/main.d.ts.map +1 -0
  223. package/dist/generated/global-operations.d.ts +2749 -0
  224. package/dist/generated/global-operations.d.ts.map +1 -0
  225. package/dist/generated/global-operations.js +907 -0
  226. package/dist/generated/global-operations.js.map +1 -0
  227. package/dist/generated/global-types.d.ts +20773 -0
  228. package/dist/generated/global-types.d.ts.map +1 -0
  229. package/dist/generated/global-types.js +12 -0
  230. package/dist/generated/global-types.js.map +1 -0
  231. package/dist/generated/wspace-operations.d.ts +132 -0
  232. package/dist/generated/wspace-operations.d.ts.map +1 -0
  233. package/dist/generated/wspace-operations.js +65 -0
  234. package/dist/generated/wspace-operations.js.map +1 -0
  235. package/dist/generated/wspace-types.d.ts +53363 -0
  236. package/dist/generated/wspace-types.d.ts.map +1 -0
  237. package/dist/index.d.ts +6 -0
  238. package/dist/index.d.ts.map +1 -0
  239. package/dist/index.js +10 -0
  240. package/dist/node_modules/@hookform/resolvers/dist/resolvers.js +34 -0
  241. package/dist/node_modules/@hookform/resolvers/dist/resolvers.js.map +1 -0
  242. package/dist/node_modules/@hookform/resolvers/zod/dist/zod.js +118 -0
  243. package/dist/node_modules/@hookform/resolvers/zod/dist/zod.js.map +1 -0
  244. package/dist/node_modules/clsx/dist/clsx.js +18 -0
  245. package/dist/node_modules/clsx/dist/clsx.js.map +1 -0
  246. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js +8 -0
  247. package/dist/node_modules/date-fns/_lib/addLeadingZeros.js.map +1 -0
  248. package/dist/node_modules/date-fns/_lib/defaultOptions.js +9 -0
  249. package/dist/node_modules/date-fns/_lib/defaultOptions.js.map +1 -0
  250. package/dist/node_modules/date-fns/_lib/format/formatters.js +384 -0
  251. package/dist/node_modules/date-fns/_lib/format/formatters.js.map +1 -0
  252. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js +45 -0
  253. package/dist/node_modules/date-fns/_lib/format/lightFormatters.js.map +1 -0
  254. package/dist/node_modules/date-fns/_lib/format/longFormatters.js +42 -0
  255. package/dist/node_modules/date-fns/_lib/format/longFormatters.js.map +1 -0
  256. package/dist/node_modules/date-fns/_lib/getRoundingMethod.js +11 -0
  257. package/dist/node_modules/date-fns/_lib/getRoundingMethod.js.map +1 -0
  258. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js +10 -0
  259. package/dist/node_modules/date-fns/_lib/getTimezoneOffsetInMilliseconds.js.map +1 -0
  260. package/dist/node_modules/date-fns/_lib/normalizeDates.js +10 -0
  261. package/dist/node_modules/date-fns/_lib/normalizeDates.js.map +1 -0
  262. package/dist/node_modules/date-fns/_lib/protectedTokens.js +25 -0
  263. package/dist/node_modules/date-fns/_lib/protectedTokens.js.map +1 -0
  264. package/dist/node_modules/date-fns/compareAsc.js +10 -0
  265. package/dist/node_modules/date-fns/compareAsc.js.map +1 -0
  266. package/dist/node_modules/date-fns/constants.js +8 -0
  267. package/dist/node_modules/date-fns/constants.js.map +1 -0
  268. package/dist/node_modules/date-fns/constructFrom.js +9 -0
  269. package/dist/node_modules/date-fns/constructFrom.js.map +1 -0
  270. package/dist/node_modules/date-fns/constructNow.js +9 -0
  271. package/dist/node_modules/date-fns/constructNow.js.map +1 -0
  272. package/dist/node_modules/date-fns/differenceInCalendarDays.js +13 -0
  273. package/dist/node_modules/date-fns/differenceInCalendarDays.js.map +1 -0
  274. package/dist/node_modules/date-fns/differenceInCalendarMonths.js +10 -0
  275. package/dist/node_modules/date-fns/differenceInCalendarMonths.js.map +1 -0
  276. package/dist/node_modules/date-fns/differenceInMilliseconds.js +9 -0
  277. package/dist/node_modules/date-fns/differenceInMilliseconds.js.map +1 -0
  278. package/dist/node_modules/date-fns/differenceInMonths.js +18 -0
  279. package/dist/node_modules/date-fns/differenceInMonths.js.map +1 -0
  280. package/dist/node_modules/date-fns/differenceInSeconds.js +11 -0
  281. package/dist/node_modules/date-fns/differenceInSeconds.js.map +1 -0
  282. package/dist/node_modules/date-fns/endOfDay.js +10 -0
  283. package/dist/node_modules/date-fns/endOfDay.js.map +1 -0
  284. package/dist/node_modules/date-fns/endOfMonth.js +10 -0
  285. package/dist/node_modules/date-fns/endOfMonth.js.map +1 -0
  286. package/dist/node_modules/date-fns/format.js +61 -0
  287. package/dist/node_modules/date-fns/format.js.map +1 -0
  288. package/dist/node_modules/date-fns/formatDistance.js +39 -0
  289. package/dist/node_modules/date-fns/formatDistance.js.map +1 -0
  290. package/dist/node_modules/date-fns/formatDistanceToNow.js +10 -0
  291. package/dist/node_modules/date-fns/formatDistanceToNow.js.map +1 -0
  292. package/dist/node_modules/date-fns/getDayOfYear.js +12 -0
  293. package/dist/node_modules/date-fns/getDayOfYear.js.map +1 -0
  294. package/dist/node_modules/date-fns/getISOWeek.js +13 -0
  295. package/dist/node_modules/date-fns/getISOWeek.js.map +1 -0
  296. package/dist/node_modules/date-fns/getISOWeekYear.js +16 -0
  297. package/dist/node_modules/date-fns/getISOWeekYear.js.map +1 -0
  298. package/dist/node_modules/date-fns/getWeek.js +13 -0
  299. package/dist/node_modules/date-fns/getWeek.js.map +1 -0
  300. package/dist/node_modules/date-fns/getWeekYear.js +17 -0
  301. package/dist/node_modules/date-fns/getWeekYear.js.map +1 -0
  302. package/dist/node_modules/date-fns/isDate.js +8 -0
  303. package/dist/node_modules/date-fns/isDate.js.map +1 -0
  304. package/dist/node_modules/date-fns/isLastDayOfMonth.js +12 -0
  305. package/dist/node_modules/date-fns/isLastDayOfMonth.js.map +1 -0
  306. package/dist/node_modules/date-fns/isValid.js +10 -0
  307. package/dist/node_modules/date-fns/isValid.js.map +1 -0
  308. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js +11 -0
  309. package/dist/node_modules/date-fns/locale/_lib/buildFormatLongFn.js.map +1 -0
  310. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js +19 -0
  311. package/dist/node_modules/date-fns/locale/_lib/buildLocalizeFn.js.map +1 -0
  312. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js +24 -0
  313. package/dist/node_modules/date-fns/locale/_lib/buildMatchFn.js.map +1 -0
  314. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js +20 -0
  315. package/dist/node_modules/date-fns/locale/_lib/buildMatchPatternFn.js.map +1 -0
  316. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js +71 -0
  317. package/dist/node_modules/date-fns/locale/en-US/_lib/formatDistance.js.map +1 -0
  318. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js +34 -0
  319. package/dist/node_modules/date-fns/locale/en-US/_lib/formatLong.js.map +1 -0
  320. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js +13 -0
  321. package/dist/node_modules/date-fns/locale/en-US/_lib/formatRelative.js.map +1 -0
  322. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js +204 -0
  323. package/dist/node_modules/date-fns/locale/en-US/_lib/localize.js.map +1 -0
  324. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js +126 -0
  325. package/dist/node_modules/date-fns/locale/en-US/_lib/match.js.map +1 -0
  326. package/dist/node_modules/date-fns/locale/en-US.js +22 -0
  327. package/dist/node_modules/date-fns/locale/en-US.js.map +1 -0
  328. package/dist/node_modules/date-fns/parseISO.js +119 -0
  329. package/dist/node_modules/date-fns/parseISO.js.map +1 -0
  330. package/dist/node_modules/date-fns/startOfDay.js +10 -0
  331. package/dist/node_modules/date-fns/startOfDay.js.map +1 -0
  332. package/dist/node_modules/date-fns/startOfISOWeek.js +12 -0
  333. package/dist/node_modules/date-fns/startOfISOWeek.js.map +1 -0
  334. package/dist/node_modules/date-fns/startOfISOWeekYear.js +12 -0
  335. package/dist/node_modules/date-fns/startOfISOWeekYear.js.map +1 -0
  336. package/dist/node_modules/date-fns/startOfWeek.js +11 -0
  337. package/dist/node_modules/date-fns/startOfWeek.js.map +1 -0
  338. package/dist/node_modules/date-fns/startOfWeekYear.js +13 -0
  339. package/dist/node_modules/date-fns/startOfWeekYear.js.map +1 -0
  340. package/dist/node_modules/date-fns/startOfYear.js +10 -0
  341. package/dist/node_modules/date-fns/startOfYear.js.map +1 -0
  342. package/dist/node_modules/date-fns/toDate.js +9 -0
  343. package/dist/node_modules/date-fns/toDate.js.map +1 -0
  344. package/dist/node_modules/react-hook-form/dist/index.esm.js +1210 -0
  345. package/dist/node_modules/react-hook-form/dist/index.esm.js.map +1 -0
  346. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js +1716 -0
  347. package/dist/node_modules/tailwind-merge/dist/bundle-mjs.js.map +1 -0
  348. package/dist/node_modules/zod/v3/ZodError.js +82 -0
  349. package/dist/node_modules/zod/v3/ZodError.js.map +1 -0
  350. package/dist/node_modules/zod/v3/errors.js +10 -0
  351. package/dist/node_modules/zod/v3/errors.js.map +1 -0
  352. package/dist/node_modules/zod/v3/helpers/errorUtil.js +9 -0
  353. package/dist/node_modules/zod/v3/helpers/errorUtil.js.map +1 -0
  354. package/dist/node_modules/zod/v3/helpers/parseUtil.js +93 -0
  355. package/dist/node_modules/zod/v3/helpers/parseUtil.js.map +1 -0
  356. package/dist/node_modules/zod/v3/helpers/util.js +76 -0
  357. package/dist/node_modules/zod/v3/helpers/util.js.map +1 -0
  358. package/dist/node_modules/zod/v3/locales/en.js +62 -0
  359. package/dist/node_modules/zod/v3/locales/en.js.map +1 -0
  360. package/dist/node_modules/zod/v3/types.js +2459 -0
  361. package/dist/node_modules/zod/v3/types.js.map +1 -0
  362. package/dist/node_modules/zod/v4/core/core.js +35 -0
  363. package/dist/node_modules/zod/v4/core/core.js.map +1 -0
  364. package/dist/node_modules/zod/v4/core/errors.js +24 -0
  365. package/dist/node_modules/zod/v4/core/errors.js.map +1 -0
  366. package/dist/node_modules/zod/v4/core/parse.js +29 -0
  367. package/dist/node_modules/zod/v4/core/parse.js.map +1 -0
  368. package/dist/node_modules/zod/v4/core/util.js +20 -0
  369. package/dist/node_modules/zod/v4/core/util.js.map +1 -0
  370. package/package.json +111 -0
@@ -0,0 +1,2749 @@
1
+ import * as Types from './global-types';
2
+ import * as Apollo from '@apollo/client';
3
+ import * as ApolloReactHooks from '@apollo/client/react';
4
+ export type TenantFieldsFragment = {
5
+ __typename?: 'Tenant';
6
+ id: string;
7
+ name: string;
8
+ slug: string;
9
+ customDomain?: string | null;
10
+ endpoint?: string | null;
11
+ status: Types.TenantStatus;
12
+ type: Types.TenantType;
13
+ createdAt: string;
14
+ updatedAt: string;
15
+ metadata?: Record<string, unknown> | null;
16
+ config?: {
17
+ __typename?: 'TenantConfig';
18
+ complianceRegion?: string | null;
19
+ customBranding?: Record<string, unknown> | null;
20
+ dataResidency?: string | null;
21
+ features?: Record<string, unknown> | null;
22
+ region?: string | null;
23
+ } | null;
24
+ };
25
+ export type CreateTenantMutationVariables = Types.Exact<{
26
+ input: Types.CreateTenantInput;
27
+ }>;
28
+ export type CreateTenantMutation = {
29
+ __typename?: 'Mutation';
30
+ createTenant: {
31
+ __typename?: 'Tenant';
32
+ id: string;
33
+ name: string;
34
+ slug: string;
35
+ customDomain?: string | null;
36
+ endpoint?: string | null;
37
+ status: Types.TenantStatus;
38
+ type: Types.TenantType;
39
+ createdAt: string;
40
+ updatedAt: string;
41
+ metadata?: Record<string, unknown> | null;
42
+ config?: {
43
+ __typename?: 'TenantConfig';
44
+ complianceRegion?: string | null;
45
+ customBranding?: Record<string, unknown> | null;
46
+ dataResidency?: string | null;
47
+ features?: Record<string, unknown> | null;
48
+ region?: string | null;
49
+ } | null;
50
+ };
51
+ };
52
+ export type GetTenantQueryVariables = Types.Exact<{
53
+ id: Types.Scalars['ID']['input'];
54
+ }>;
55
+ export type GetTenantQuery = {
56
+ __typename?: 'Query';
57
+ tenant?: {
58
+ __typename?: 'Tenant';
59
+ id: string;
60
+ name: string;
61
+ slug: string;
62
+ customDomain?: string | null;
63
+ endpoint?: string | null;
64
+ status: Types.TenantStatus;
65
+ type: Types.TenantType;
66
+ createdAt: string;
67
+ updatedAt: string;
68
+ metadata?: Record<string, unknown> | null;
69
+ organizations: Array<{
70
+ __typename?: 'Organization';
71
+ id: string;
72
+ name: string;
73
+ }>;
74
+ workspaces: Array<{
75
+ __typename?: 'Workspace';
76
+ id: string;
77
+ name: string;
78
+ status: Types.WorkspaceStatus;
79
+ endpoint?: string | null;
80
+ region?: string | null;
81
+ }>;
82
+ config?: {
83
+ __typename?: 'TenantConfig';
84
+ complianceRegion?: string | null;
85
+ customBranding?: Record<string, unknown> | null;
86
+ dataResidency?: string | null;
87
+ features?: Record<string, unknown> | null;
88
+ region?: string | null;
89
+ } | null;
90
+ } | null;
91
+ };
92
+ export type GetTenantBySlugQueryVariables = Types.Exact<{
93
+ slug: Types.Scalars['String']['input'];
94
+ }>;
95
+ export type GetTenantBySlugQuery = {
96
+ __typename?: 'Query';
97
+ tenantBySlug?: {
98
+ __typename?: 'Tenant';
99
+ id: string;
100
+ name: string;
101
+ slug: string;
102
+ customDomain?: string | null;
103
+ endpoint?: string | null;
104
+ status: Types.TenantStatus;
105
+ type: Types.TenantType;
106
+ createdAt: string;
107
+ updatedAt: string;
108
+ metadata?: Record<string, unknown> | null;
109
+ config?: {
110
+ __typename?: 'TenantConfig';
111
+ complianceRegion?: string | null;
112
+ customBranding?: Record<string, unknown> | null;
113
+ dataResidency?: string | null;
114
+ features?: Record<string, unknown> | null;
115
+ region?: string | null;
116
+ } | null;
117
+ } | null;
118
+ };
119
+ export type GetTenantRoutingInfoQueryVariables = Types.Exact<{
120
+ tenantId: Types.Scalars['ID']['input'];
121
+ }>;
122
+ export type GetTenantRoutingInfoQuery = {
123
+ __typename?: 'Query';
124
+ tenantRoutingInfo?: {
125
+ __typename?: 'TenantRoutingInfo';
126
+ tenantId: string;
127
+ type: Types.TenantType;
128
+ endpoint?: string | null;
129
+ status: Types.TenantStatus;
130
+ } | null;
131
+ };
132
+ export type SuspendTenantMutationVariables = Types.Exact<{
133
+ id: Types.Scalars['ID']['input'];
134
+ }>;
135
+ export type SuspendTenantMutation = {
136
+ __typename?: 'Mutation';
137
+ suspendTenant: {
138
+ __typename?: 'Tenant';
139
+ id: string;
140
+ status: Types.TenantStatus;
141
+ };
142
+ };
143
+ export type ActivateTenantMutationVariables = Types.Exact<{
144
+ id: Types.Scalars['ID']['input'];
145
+ }>;
146
+ export type ActivateTenantMutation = {
147
+ __typename?: 'Mutation';
148
+ activateTenant: {
149
+ __typename?: 'Tenant';
150
+ id: string;
151
+ status: Types.TenantStatus;
152
+ };
153
+ };
154
+ export type ConfigureTenantMutationVariables = Types.Exact<{
155
+ id: Types.Scalars['ID']['input'];
156
+ input: Types.ConfigureTenantInput;
157
+ }>;
158
+ export type ConfigureTenantMutation = {
159
+ __typename?: 'Mutation';
160
+ configureTenant: {
161
+ __typename?: 'Tenant';
162
+ id: string;
163
+ name: string;
164
+ slug: string;
165
+ customDomain?: string | null;
166
+ endpoint?: string | null;
167
+ status: Types.TenantStatus;
168
+ type: Types.TenantType;
169
+ createdAt: string;
170
+ updatedAt: string;
171
+ metadata?: Record<string, unknown> | null;
172
+ config?: {
173
+ __typename?: 'TenantConfig';
174
+ complianceRegion?: string | null;
175
+ customBranding?: Record<string, unknown> | null;
176
+ dataResidency?: string | null;
177
+ features?: Record<string, unknown> | null;
178
+ region?: string | null;
179
+ } | null;
180
+ };
181
+ };
182
+ export type ListTenantsQueryVariables = Types.Exact<{
183
+ filter?: Types.InputMaybe<Types.TenantFilterInput>;
184
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
185
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
186
+ }>;
187
+ export type ListTenantsQuery = {
188
+ __typename?: 'Query';
189
+ tenants: {
190
+ __typename?: 'TenantList';
191
+ total: number;
192
+ limit: number;
193
+ offset: number;
194
+ hasMore: boolean;
195
+ items: Array<{
196
+ __typename?: 'Tenant';
197
+ id: string;
198
+ name: string;
199
+ slug: string;
200
+ customDomain?: string | null;
201
+ endpoint?: string | null;
202
+ status: Types.TenantStatus;
203
+ type: Types.TenantType;
204
+ createdAt: string;
205
+ updatedAt: string;
206
+ metadata?: Record<string, unknown> | null;
207
+ config?: {
208
+ __typename?: 'TenantConfig';
209
+ complianceRegion?: string | null;
210
+ customBranding?: Record<string, unknown> | null;
211
+ dataResidency?: string | null;
212
+ features?: Record<string, unknown> | null;
213
+ region?: string | null;
214
+ } | null;
215
+ }>;
216
+ };
217
+ };
218
+ export type ProvisionDedicatedTenantMutationVariables = Types.Exact<{
219
+ input: Types.ProvisionDedicatedTenantInput;
220
+ }>;
221
+ export type ProvisionDedicatedTenantMutation = {
222
+ __typename?: 'Mutation';
223
+ provisionDedicatedTenant: {
224
+ __typename?: 'Tenant';
225
+ id: string;
226
+ name: string;
227
+ slug: string;
228
+ customDomain?: string | null;
229
+ endpoint?: string | null;
230
+ status: Types.TenantStatus;
231
+ type: Types.TenantType;
232
+ createdAt: string;
233
+ updatedAt: string;
234
+ metadata?: Record<string, unknown> | null;
235
+ config?: {
236
+ __typename?: 'TenantConfig';
237
+ complianceRegion?: string | null;
238
+ customBranding?: Record<string, unknown> | null;
239
+ dataResidency?: string | null;
240
+ features?: Record<string, unknown> | null;
241
+ region?: string | null;
242
+ } | null;
243
+ };
244
+ };
245
+ export type SetTenantEndpointMutationVariables = Types.Exact<{
246
+ tenantId: Types.Scalars['ID']['input'];
247
+ endpoint: Types.Scalars['String']['input'];
248
+ }>;
249
+ export type SetTenantEndpointMutation = {
250
+ __typename?: 'Mutation';
251
+ setTenantEndpoint: {
252
+ __typename?: 'Tenant';
253
+ id: string;
254
+ name: string;
255
+ slug: string;
256
+ customDomain?: string | null;
257
+ endpoint?: string | null;
258
+ status: Types.TenantStatus;
259
+ type: Types.TenantType;
260
+ createdAt: string;
261
+ updatedAt: string;
262
+ metadata?: Record<string, unknown> | null;
263
+ config?: {
264
+ __typename?: 'TenantConfig';
265
+ complianceRegion?: string | null;
266
+ customBranding?: Record<string, unknown> | null;
267
+ dataResidency?: string | null;
268
+ features?: Record<string, unknown> | null;
269
+ region?: string | null;
270
+ } | null;
271
+ };
272
+ };
273
+ export type UpdateTenantMutationVariables = Types.Exact<{
274
+ id: Types.Scalars['ID']['input'];
275
+ input: Types.UpdateTenantInput;
276
+ }>;
277
+ export type UpdateTenantMutation = {
278
+ __typename?: 'Mutation';
279
+ updateTenant: {
280
+ __typename?: 'Tenant';
281
+ id: string;
282
+ name: string;
283
+ slug: string;
284
+ customDomain?: string | null;
285
+ endpoint?: string | null;
286
+ status: Types.TenantStatus;
287
+ type: Types.TenantType;
288
+ createdAt: string;
289
+ updatedAt: string;
290
+ metadata?: Record<string, unknown> | null;
291
+ config?: {
292
+ __typename?: 'TenantConfig';
293
+ complianceRegion?: string | null;
294
+ customBranding?: Record<string, unknown> | null;
295
+ dataResidency?: string | null;
296
+ features?: Record<string, unknown> | null;
297
+ region?: string | null;
298
+ } | null;
299
+ };
300
+ };
301
+ export type AuditLogFieldsFragment = {
302
+ __typename?: 'AuditLog';
303
+ id: string;
304
+ action: string;
305
+ actorId: string;
306
+ actorType: string;
307
+ resource: string;
308
+ resourceId?: string | null;
309
+ tenantId: string;
310
+ changes?: Record<string, unknown> | null;
311
+ ipAddress?: string | null;
312
+ userAgent?: string | null;
313
+ metadata?: Record<string, unknown> | null;
314
+ createdAt: string;
315
+ };
316
+ export type ListAuditLogsQueryVariables = Types.Exact<{
317
+ actorId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
318
+ resource?: Types.InputMaybe<Types.Scalars['String']['input']>;
319
+ resourceId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
320
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
321
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
322
+ }>;
323
+ export type ListAuditLogsQuery = {
324
+ __typename?: 'Query';
325
+ auditLogs: {
326
+ __typename?: 'AuditLogConnection';
327
+ totalCount: number;
328
+ edges: Array<{
329
+ __typename?: 'AuditLogEdge';
330
+ cursor: string;
331
+ node: {
332
+ __typename?: 'AuditLog';
333
+ id: string;
334
+ action: string;
335
+ actorId: string;
336
+ actorType: string;
337
+ resource: string;
338
+ resourceId?: string | null;
339
+ tenantId: string;
340
+ changes?: Record<string, unknown> | null;
341
+ ipAddress?: string | null;
342
+ userAgent?: string | null;
343
+ metadata?: Record<string, unknown> | null;
344
+ createdAt: string;
345
+ };
346
+ }>;
347
+ pageInfo: {
348
+ __typename?: 'PageInfo';
349
+ hasNextPage: boolean;
350
+ hasPreviousPage: boolean;
351
+ startCursor?: string | null;
352
+ endCursor?: string | null;
353
+ };
354
+ };
355
+ };
356
+ export type ActivityLogFieldsFragment = {
357
+ __typename?: 'ActivityLog';
358
+ id: string;
359
+ action: string;
360
+ actorId?: string | null;
361
+ userId?: string | null;
362
+ resource: string;
363
+ resourceId?: string | null;
364
+ resourceType?: string | null;
365
+ tenantId?: string | null;
366
+ description?: string | null;
367
+ ipAddress?: string | null;
368
+ metadata?: Record<string, unknown> | null;
369
+ createdAt: string;
370
+ };
371
+ export type ListActivityLogsQueryVariables = Types.Exact<{
372
+ filter?: Types.InputMaybe<Types.ActivityFilterInput>;
373
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
374
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
375
+ }>;
376
+ export type ListActivityLogsQuery = {
377
+ __typename?: 'Query';
378
+ activityLogs: {
379
+ __typename?: 'ActivityLogConnection';
380
+ totalCount: number;
381
+ hasMore: boolean;
382
+ nodes: Array<{
383
+ __typename?: 'ActivityLog';
384
+ id: string;
385
+ action: string;
386
+ actorId?: string | null;
387
+ userId?: string | null;
388
+ resource: string;
389
+ resourceId?: string | null;
390
+ resourceType?: string | null;
391
+ tenantId?: string | null;
392
+ description?: string | null;
393
+ ipAddress?: string | null;
394
+ metadata?: Record<string, unknown> | null;
395
+ createdAt: string;
396
+ }>;
397
+ };
398
+ };
399
+ export type ListAllPlansQueryVariables = Types.Exact<{
400
+ [key: string]: never;
401
+ }>;
402
+ export type ListAllPlansQuery = {
403
+ __typename?: 'Query';
404
+ getAllPlans: Array<{
405
+ __typename?: 'Plan';
406
+ id?: string | null;
407
+ name?: string | null;
408
+ price?: number | null;
409
+ currency?: string | null;
410
+ duration?: Types.PlanDuration | null;
411
+ isActive?: boolean | null;
412
+ createdAt?: string | null;
413
+ }>;
414
+ };
415
+ export type ListAllQuotasQueryVariables = Types.Exact<{
416
+ [key: string]: never;
417
+ }>;
418
+ export type ListAllQuotasQuery = {
419
+ __typename?: 'Query';
420
+ getAllQuotas: Array<{
421
+ __typename?: 'Quota';
422
+ id?: string | null;
423
+ name?: string | null;
424
+ quotaType?: Types.QuotaType | null;
425
+ isActive?: boolean | null;
426
+ }>;
427
+ };
428
+ export type ListRefundRecordsQueryVariables = Types.Exact<{
429
+ orgIdFilter?: Types.InputMaybe<Types.Scalars['String']['input']>;
430
+ page?: Types.InputMaybe<Types.Scalars['Int']['input']>;
431
+ pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;
432
+ }>;
433
+ export type ListRefundRecordsQuery = {
434
+ __typename?: 'Query';
435
+ getRefundRecords: {
436
+ __typename?: 'PaginatedRefundRecords';
437
+ totalCount: number;
438
+ records: Array<{
439
+ __typename?: 'RefundRecord';
440
+ id: string;
441
+ amount: number;
442
+ currency: string;
443
+ status: Types.RefundRecordStatus;
444
+ reason?: string | null;
445
+ provider: string;
446
+ createdAt: string;
447
+ }>;
448
+ };
449
+ };
450
+ export type ListTaxRatesQueryVariables = Types.Exact<{
451
+ active?: Types.InputMaybe<Types.Scalars['Boolean']['input']>;
452
+ }>;
453
+ export type ListTaxRatesQuery = {
454
+ __typename?: 'Query';
455
+ getTaxRates: Array<{
456
+ __typename?: 'TaxRate';
457
+ id: string;
458
+ country: string;
459
+ state?: string | null;
460
+ rate: number;
461
+ active: boolean;
462
+ }>;
463
+ };
464
+ export type CreatePlanMutationVariables = Types.Exact<{
465
+ input: Types.CreatePlanInput;
466
+ }>;
467
+ export type CreatePlanMutation = {
468
+ __typename?: 'Mutation';
469
+ createPlan: boolean;
470
+ };
471
+ export type CreateRefundRecordMutationVariables = Types.Exact<{
472
+ amount: Types.Scalars['Float']['input'];
473
+ billingAccountId?: Types.InputMaybe<Types.Scalars['String']['input']>;
474
+ currency: Types.Scalars['String']['input'];
475
+ gatewayPaymentId: Types.Scalars['String']['input'];
476
+ provider: Types.Scalars['String']['input'];
477
+ reason?: Types.InputMaybe<Types.Scalars['String']['input']>;
478
+ }>;
479
+ export type CreateRefundRecordMutation = {
480
+ __typename?: 'Mutation';
481
+ createRefundRecord: {
482
+ __typename?: 'RefundRecord';
483
+ id: string;
484
+ status: Types.RefundRecordStatus;
485
+ };
486
+ };
487
+ export type ListNewslettersQueryVariables = Types.Exact<{
488
+ filter?: Types.InputMaybe<Types.NewsletterFilterInput>;
489
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
490
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
491
+ }>;
492
+ export type ListNewslettersQuery = {
493
+ __typename?: 'Query';
494
+ newsletters: Array<{
495
+ __typename?: 'Newsletter';
496
+ id: string;
497
+ title: string;
498
+ subject: string;
499
+ status: Types.NewsletterStatus;
500
+ sentAt?: string | null;
501
+ createdAt: string;
502
+ }>;
503
+ };
504
+ export type GetNewsletterStatsQueryVariables = Types.Exact<{
505
+ [key: string]: never;
506
+ }>;
507
+ export type GetNewsletterStatsQuery = {
508
+ __typename?: 'Query';
509
+ newsletterStats: {
510
+ __typename?: 'NewsletterStats';
511
+ totalNewsletters: number;
512
+ totalSubscribers: number;
513
+ totalSent: number;
514
+ averageOpenRate?: number | null;
515
+ averageClickRate?: number | null;
516
+ };
517
+ };
518
+ export type CreateNewsletterMutationVariables = Types.Exact<{
519
+ input: Types.CreateNewsletterInput;
520
+ }>;
521
+ export type CreateNewsletterMutation = {
522
+ __typename?: 'Mutation';
523
+ createNewsletter: {
524
+ __typename?: 'Newsletter';
525
+ id: string;
526
+ title: string;
527
+ };
528
+ };
529
+ export type SendNewsletterMutationVariables = Types.Exact<{
530
+ id: Types.Scalars['ID']['input'];
531
+ }>;
532
+ export type SendNewsletterMutation = {
533
+ __typename?: 'Mutation';
534
+ sendNewsletter: {
535
+ __typename?: 'Newsletter';
536
+ id: string;
537
+ status: Types.NewsletterStatus;
538
+ sentAt?: string | null;
539
+ };
540
+ };
541
+ export type GetDashboardTenantCountQueryVariables = Types.Exact<{
542
+ [key: string]: never;
543
+ }>;
544
+ export type GetDashboardTenantCountQuery = {
545
+ __typename?: 'Query';
546
+ tenants: {
547
+ __typename?: 'TenantList';
548
+ total: number;
549
+ };
550
+ };
551
+ export type GetDashboardOrganizationCountQueryVariables = Types.Exact<{
552
+ [key: string]: never;
553
+ }>;
554
+ export type GetDashboardOrganizationCountQuery = {
555
+ __typename?: 'Query';
556
+ organizations: {
557
+ __typename?: 'OrganizationList';
558
+ total: number;
559
+ };
560
+ };
561
+ export type GetDashboardActiveWorkspaceCountQueryVariables = Types.Exact<{
562
+ [key: string]: never;
563
+ }>;
564
+ export type GetDashboardActiveWorkspaceCountQuery = {
565
+ __typename?: 'Query';
566
+ workspaces: {
567
+ __typename?: 'WorkspaceList';
568
+ total: number;
569
+ };
570
+ };
571
+ export type GetDashboardUserCountQueryVariables = Types.Exact<{
572
+ [key: string]: never;
573
+ }>;
574
+ export type GetDashboardUserCountQuery = {
575
+ __typename?: 'Query';
576
+ userCount: number;
577
+ };
578
+ export type GetDashboardSupportStatsQueryVariables = Types.Exact<{
579
+ [key: string]: never;
580
+ }>;
581
+ export type GetDashboardSupportStatsQuery = {
582
+ __typename?: 'Query';
583
+ supportStats: {
584
+ __typename?: 'SupportStats';
585
+ newTickets: number;
586
+ openTickets: number;
587
+ inProgressTickets: number;
588
+ totalTickets: number;
589
+ };
590
+ };
591
+ export type GetDashboardTenantsQueryVariables = Types.Exact<{
592
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
593
+ }>;
594
+ export type GetDashboardTenantsQuery = {
595
+ __typename?: 'Query';
596
+ tenants: {
597
+ __typename?: 'TenantList';
598
+ total: number;
599
+ items: Array<{
600
+ __typename?: 'Tenant';
601
+ id: string;
602
+ name: string;
603
+ slug: string;
604
+ status: Types.TenantStatus;
605
+ createdAt: string;
606
+ }>;
607
+ };
608
+ };
609
+ export type GetRecentActivityLogsQueryVariables = Types.Exact<{
610
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
611
+ }>;
612
+ export type GetRecentActivityLogsQuery = {
613
+ __typename?: 'Query';
614
+ activityLogs: {
615
+ __typename?: 'ActivityLogConnection';
616
+ totalCount: number;
617
+ nodes: Array<{
618
+ __typename?: 'ActivityLog';
619
+ id: string;
620
+ action: string;
621
+ actorId?: string | null;
622
+ userId?: string | null;
623
+ resource: string;
624
+ resourceId?: string | null;
625
+ resourceType?: string | null;
626
+ tenantId?: string | null;
627
+ description?: string | null;
628
+ metadata?: Record<string, unknown> | null;
629
+ createdAt: string;
630
+ }>;
631
+ };
632
+ };
633
+ export type ListFeatureFlagsQueryVariables = Types.Exact<{
634
+ filter?: Types.InputMaybe<Types.FeatureFlagFilterInput>;
635
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
636
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
637
+ }>;
638
+ export type ListFeatureFlagsQuery = {
639
+ __typename?: 'Query';
640
+ featureFlags: {
641
+ __typename?: 'FeatureFlagList';
642
+ items: Array<{
643
+ __typename?: 'FeatureFlag';
644
+ id: string;
645
+ key: string;
646
+ name: string;
647
+ description?: string | null;
648
+ flagType: Types.FeatureFlagType;
649
+ status: Types.FeatureFlagStatus;
650
+ defaultValue: Record<string, unknown>;
651
+ createdAt: string;
652
+ updatedAt: string;
653
+ }>;
654
+ };
655
+ };
656
+ export type GetFeatureFlagQueryVariables = Types.Exact<{
657
+ id: Types.Scalars['ID']['input'];
658
+ }>;
659
+ export type GetFeatureFlagQuery = {
660
+ __typename?: 'Query';
661
+ featureFlag?: {
662
+ __typename?: 'FeatureFlag';
663
+ id: string;
664
+ key: string;
665
+ name: string;
666
+ description?: string | null;
667
+ flagType: Types.FeatureFlagType;
668
+ status: Types.FeatureFlagStatus;
669
+ defaultValue: Record<string, unknown>;
670
+ createdAt: string;
671
+ updatedAt: string;
672
+ } | null;
673
+ };
674
+ export type CreateFeatureFlagMutationVariables = Types.Exact<{
675
+ input: Types.CreateFeatureFlagInput;
676
+ }>;
677
+ export type CreateFeatureFlagMutation = {
678
+ __typename?: 'Mutation';
679
+ createFeatureFlag: {
680
+ __typename?: 'FeatureFlag';
681
+ id: string;
682
+ key: string;
683
+ name: string;
684
+ };
685
+ };
686
+ export type UpdateFeatureFlagMutationVariables = Types.Exact<{
687
+ id: Types.Scalars['ID']['input'];
688
+ input: Types.UpdateFeatureFlagInput;
689
+ }>;
690
+ export type UpdateFeatureFlagMutation = {
691
+ __typename?: 'Mutation';
692
+ updateFeatureFlag: {
693
+ __typename?: 'FeatureFlag';
694
+ id: string;
695
+ key: string;
696
+ status: Types.FeatureFlagStatus;
697
+ };
698
+ };
699
+ export type DeleteFeatureFlagMutationVariables = Types.Exact<{
700
+ id: Types.Scalars['ID']['input'];
701
+ }>;
702
+ export type DeleteFeatureFlagMutation = {
703
+ __typename?: 'Mutation';
704
+ deleteFeatureFlag: boolean;
705
+ };
706
+ export type ListOrganizationsQueryVariables = Types.Exact<{
707
+ filter?: Types.InputMaybe<Types.OrganizationFilterInput>;
708
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
709
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
710
+ }>;
711
+ export type ListOrganizationsQuery = {
712
+ __typename?: 'Query';
713
+ organizations: {
714
+ __typename?: 'OrganizationList';
715
+ total: number;
716
+ hasMore: boolean;
717
+ items: Array<{
718
+ __typename?: 'Organization';
719
+ id: string;
720
+ name: string;
721
+ slug: string;
722
+ description?: string | null;
723
+ status: string;
724
+ type: string;
725
+ tenantId: string;
726
+ createdAt: string;
727
+ }>;
728
+ };
729
+ };
730
+ export type UpdateOrganizationMutationVariables = Types.Exact<{
731
+ id: Types.Scalars['ID']['input'];
732
+ input: Types.UpdateOrganizationInput;
733
+ }>;
734
+ export type UpdateOrganizationMutation = {
735
+ __typename?: 'Mutation';
736
+ updateOrganization: {
737
+ __typename?: 'Organization';
738
+ id: string;
739
+ name: string;
740
+ status: string;
741
+ };
742
+ };
743
+ export type PlatformProductFieldsFragment = {
744
+ __typename?: 'PlatformProduct';
745
+ id: string;
746
+ name: string;
747
+ slug: string;
748
+ description?: string | null;
749
+ status: Types.PlatformProductStatus;
750
+ appUrl?: string | null;
751
+ activeUsers: number;
752
+ apiCalls: number;
753
+ contactEmail?: string | null;
754
+ appStoreUrl?: string | null;
755
+ createdAt: string;
756
+ updatedAt: string;
757
+ };
758
+ export type ListPlatformProductsQueryVariables = Types.Exact<{
759
+ filter?: Types.InputMaybe<Types.PlatformProductFilterInput>;
760
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
761
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
762
+ }>;
763
+ export type ListPlatformProductsQuery = {
764
+ __typename?: 'Query';
765
+ platformProducts: {
766
+ __typename?: 'PlatformProductList';
767
+ total: number;
768
+ hasMore: boolean;
769
+ items: Array<{
770
+ __typename?: 'PlatformProduct';
771
+ id: string;
772
+ name: string;
773
+ slug: string;
774
+ description?: string | null;
775
+ status: Types.PlatformProductStatus;
776
+ appUrl?: string | null;
777
+ activeUsers: number;
778
+ apiCalls: number;
779
+ contactEmail?: string | null;
780
+ appStoreUrl?: string | null;
781
+ createdAt: string;
782
+ updatedAt: string;
783
+ }>;
784
+ };
785
+ };
786
+ export type GetPlatformProductQueryVariables = Types.Exact<{
787
+ id: Types.Scalars['ID']['input'];
788
+ }>;
789
+ export type GetPlatformProductQuery = {
790
+ __typename?: 'Query';
791
+ platformProduct?: {
792
+ __typename?: 'PlatformProduct';
793
+ id: string;
794
+ name: string;
795
+ slug: string;
796
+ description?: string | null;
797
+ status: Types.PlatformProductStatus;
798
+ appUrl?: string | null;
799
+ activeUsers: number;
800
+ apiCalls: number;
801
+ contactEmail?: string | null;
802
+ appStoreUrl?: string | null;
803
+ createdAt: string;
804
+ updatedAt: string;
805
+ } | null;
806
+ };
807
+ export type GetPlatformProductBySlugQueryVariables = Types.Exact<{
808
+ slug: Types.Scalars['String']['input'];
809
+ }>;
810
+ export type GetPlatformProductBySlugQuery = {
811
+ __typename?: 'Query';
812
+ platformProductBySlug?: {
813
+ __typename?: 'PlatformProduct';
814
+ id: string;
815
+ name: string;
816
+ slug: string;
817
+ description?: string | null;
818
+ status: Types.PlatformProductStatus;
819
+ appUrl?: string | null;
820
+ activeUsers: number;
821
+ apiCalls: number;
822
+ contactEmail?: string | null;
823
+ appStoreUrl?: string | null;
824
+ createdAt: string;
825
+ updatedAt: string;
826
+ } | null;
827
+ };
828
+ export type GetPlatformProductStatsQueryVariables = Types.Exact<{
829
+ [key: string]: never;
830
+ }>;
831
+ export type GetPlatformProductStatsQuery = {
832
+ __typename?: 'Query';
833
+ platformProductStats: {
834
+ __typename?: 'PlatformProductStats';
835
+ total: number;
836
+ active: number;
837
+ draft: number;
838
+ comingSoon: number;
839
+ waitlist: number;
840
+ };
841
+ };
842
+ export type ListRolesQueryVariables = Types.Exact<{
843
+ scopeId: Types.Scalars['String']['input'];
844
+ }>;
845
+ export type ListRolesQuery = {
846
+ __typename?: 'Query';
847
+ roles: Array<{
848
+ __typename?: 'Role';
849
+ id: string;
850
+ name: string;
851
+ description?: string | null;
852
+ isSystem: boolean;
853
+ priority: number;
854
+ scopeType: string;
855
+ defaultPermissions: Array<{
856
+ __typename?: 'RoleDefaultPermission';
857
+ id: string;
858
+ resourceType: string;
859
+ level: Types.RoleLevel;
860
+ }>;
861
+ }>;
862
+ };
863
+ export type GetResourceTypesQueryVariables = Types.Exact<{
864
+ [key: string]: never;
865
+ }>;
866
+ export type GetResourceTypesQuery = {
867
+ __typename?: 'Query';
868
+ resourceTypes: Array<string>;
869
+ };
870
+ export type CreateRoleMutationVariables = Types.Exact<{
871
+ input: Types.CreateRoleInput;
872
+ }>;
873
+ export type CreateRoleMutation = {
874
+ __typename?: 'Mutation';
875
+ createRole: {
876
+ __typename?: 'Role';
877
+ id: string;
878
+ name: string;
879
+ };
880
+ };
881
+ export type UpdateRoleMutationVariables = Types.Exact<{
882
+ id: Types.Scalars['ID']['input'];
883
+ input: Types.UpdateRoleInput;
884
+ }>;
885
+ export type UpdateRoleMutation = {
886
+ __typename?: 'Mutation';
887
+ updateRole: {
888
+ __typename?: 'Role';
889
+ id: string;
890
+ name: string;
891
+ };
892
+ };
893
+ export type DeleteRoleMutationVariables = Types.Exact<{
894
+ id: Types.Scalars['ID']['input'];
895
+ reassignToRoleId?: Types.InputMaybe<Types.Scalars['ID']['input']>;
896
+ }>;
897
+ export type DeleteRoleMutation = {
898
+ __typename?: 'Mutation';
899
+ deleteRole: boolean;
900
+ };
901
+ export type SupportTicketFieldsFragment = {
902
+ __typename?: 'SupportTicket';
903
+ id: string;
904
+ subject: string;
905
+ description: string;
906
+ status: Types.SupportTicketStatus;
907
+ priority: Types.SupportTicketPriority;
908
+ category?: Types.SupportTicketCategory | null;
909
+ categoryId?: string | null;
910
+ assignedTo?: string | null;
911
+ createdAt: string;
912
+ updatedAt: string;
913
+ closedAt?: string | null;
914
+ resolvedAt?: string | null;
915
+ escalationLevel: number;
916
+ source: Types.TicketSource;
917
+ slaBreachStatus: Types.SlaBreachStatus;
918
+ ticketCategory?: {
919
+ __typename?: 'TicketCategory';
920
+ id: string;
921
+ name: string;
922
+ slug: string;
923
+ } | null;
924
+ };
925
+ export type ListSupportTicketsQueryVariables = Types.Exact<{
926
+ filter?: Types.InputMaybe<Types.SupportTicketFilterInput>;
927
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
928
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
929
+ }>;
930
+ export type ListSupportTicketsQuery = {
931
+ __typename?: 'Query';
932
+ supportTickets: {
933
+ __typename?: 'SupportTicketConnection';
934
+ totalCount: number;
935
+ hasMore: boolean;
936
+ nodes: Array<{
937
+ __typename?: 'SupportTicket';
938
+ id: string;
939
+ subject: string;
940
+ description: string;
941
+ status: Types.SupportTicketStatus;
942
+ priority: Types.SupportTicketPriority;
943
+ category?: Types.SupportTicketCategory | null;
944
+ categoryId?: string | null;
945
+ assignedTo?: string | null;
946
+ createdAt: string;
947
+ updatedAt: string;
948
+ closedAt?: string | null;
949
+ resolvedAt?: string | null;
950
+ escalationLevel: number;
951
+ source: Types.TicketSource;
952
+ slaBreachStatus: Types.SlaBreachStatus;
953
+ ticketCategory?: {
954
+ __typename?: 'TicketCategory';
955
+ id: string;
956
+ name: string;
957
+ slug: string;
958
+ } | null;
959
+ }>;
960
+ };
961
+ };
962
+ export type GetSupportTicketQueryVariables = Types.Exact<{
963
+ id: Types.Scalars['ID']['input'];
964
+ }>;
965
+ export type GetSupportTicketQuery = {
966
+ __typename?: 'Query';
967
+ supportTicket?: {
968
+ __typename?: 'SupportTicket';
969
+ id: string;
970
+ subject: string;
971
+ description: string;
972
+ status: Types.SupportTicketStatus;
973
+ priority: Types.SupportTicketPriority;
974
+ category?: Types.SupportTicketCategory | null;
975
+ categoryId?: string | null;
976
+ assignedTo?: string | null;
977
+ createdAt: string;
978
+ updatedAt: string;
979
+ closedAt?: string | null;
980
+ resolvedAt?: string | null;
981
+ escalationLevel: number;
982
+ source: Types.TicketSource;
983
+ slaBreachStatus: Types.SlaBreachStatus;
984
+ messages: Array<{
985
+ __typename?: 'SupportMessage';
986
+ id: string;
987
+ message: string;
988
+ authorId: string;
989
+ isInternal: boolean;
990
+ createdAt: string;
991
+ }>;
992
+ linkedTickets: Array<{
993
+ __typename?: 'TicketLink';
994
+ id: string;
995
+ }>;
996
+ ticketCategory?: {
997
+ __typename?: 'TicketCategory';
998
+ id: string;
999
+ name: string;
1000
+ slug: string;
1001
+ } | null;
1002
+ } | null;
1003
+ };
1004
+ export type GetSupportStatsQueryVariables = Types.Exact<{
1005
+ filter?: Types.InputMaybe<Types.SupportTicketFilterInput>;
1006
+ }>;
1007
+ export type GetSupportStatsQuery = {
1008
+ __typename?: 'Query';
1009
+ supportStats: {
1010
+ __typename?: 'SupportStats';
1011
+ totalTickets: number;
1012
+ newTickets: number;
1013
+ openTickets: number;
1014
+ inProgressTickets: number;
1015
+ resolvedTickets: number;
1016
+ closedTickets: number;
1017
+ waitingOnCustomerTickets: number;
1018
+ reopenedTickets: number;
1019
+ averageFirstResponseTimeHours?: number | null;
1020
+ averageResolutionTimeHours?: number | null;
1021
+ slaComplianceRate?: number | null;
1022
+ };
1023
+ };
1024
+ export type SearchSupportTicketsQueryVariables = Types.Exact<{
1025
+ query: Types.Scalars['String']['input'];
1026
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
1027
+ }>;
1028
+ export type SearchSupportTicketsQuery = {
1029
+ __typename?: 'Query';
1030
+ searchTickets: Array<{
1031
+ __typename?: 'SupportTicket';
1032
+ id: string;
1033
+ subject: string;
1034
+ description: string;
1035
+ status: Types.SupportTicketStatus;
1036
+ priority: Types.SupportTicketPriority;
1037
+ category?: Types.SupportTicketCategory | null;
1038
+ categoryId?: string | null;
1039
+ assignedTo?: string | null;
1040
+ createdAt: string;
1041
+ updatedAt: string;
1042
+ closedAt?: string | null;
1043
+ resolvedAt?: string | null;
1044
+ escalationLevel: number;
1045
+ source: Types.TicketSource;
1046
+ slaBreachStatus: Types.SlaBreachStatus;
1047
+ ticketCategory?: {
1048
+ __typename?: 'TicketCategory';
1049
+ id: string;
1050
+ name: string;
1051
+ slug: string;
1052
+ } | null;
1053
+ }>;
1054
+ };
1055
+ export type AssignSupportTicketMutationVariables = Types.Exact<{
1056
+ id: Types.Scalars['ID']['input'];
1057
+ assignedTo: Types.Scalars['String']['input'];
1058
+ }>;
1059
+ export type AssignSupportTicketMutation = {
1060
+ __typename?: 'Mutation';
1061
+ assignSupportTicket: {
1062
+ __typename?: 'SupportTicket';
1063
+ id: string;
1064
+ assignedTo?: string | null;
1065
+ status: Types.SupportTicketStatus;
1066
+ };
1067
+ };
1068
+ export type CloseSupportTicketMutationVariables = Types.Exact<{
1069
+ id: Types.Scalars['ID']['input'];
1070
+ }>;
1071
+ export type CloseSupportTicketMutation = {
1072
+ __typename?: 'Mutation';
1073
+ closeSupportTicket: {
1074
+ __typename?: 'SupportTicket';
1075
+ id: string;
1076
+ status: Types.SupportTicketStatus;
1077
+ closedAt?: string | null;
1078
+ };
1079
+ };
1080
+ export type AddTicketTagsMutationVariables = Types.Exact<{
1081
+ id: Types.Scalars['ID']['input'];
1082
+ tags: Array<Types.Scalars['String']['input']> | Types.Scalars['String']['input'];
1083
+ }>;
1084
+ export type AddTicketTagsMutation = {
1085
+ __typename?: 'Mutation';
1086
+ addTicketTags: {
1087
+ __typename?: 'SupportTicket';
1088
+ id: string;
1089
+ };
1090
+ };
1091
+ export type UserFieldsFragment = {
1092
+ __typename?: 'User';
1093
+ id: string;
1094
+ email: string;
1095
+ username: string;
1096
+ firstName?: string | null;
1097
+ lastName?: string | null;
1098
+ name?: string | null;
1099
+ role: string;
1100
+ status: string;
1101
+ tenantId?: string | null;
1102
+ emailVerified: boolean;
1103
+ mfaEnabled: boolean;
1104
+ createdAt: string;
1105
+ updatedAt: string;
1106
+ lastLoginAt?: string | null;
1107
+ defaultWorkspaceId?: string | null;
1108
+ };
1109
+ export type ListUsersQueryVariables = Types.Exact<{
1110
+ filter?: Types.InputMaybe<Types.UserFilterInput>;
1111
+ pagination?: Types.InputMaybe<Types.PaginationInput>;
1112
+ }>;
1113
+ export type ListUsersQuery = {
1114
+ __typename?: 'Query';
1115
+ users: {
1116
+ __typename?: 'UserConnection';
1117
+ totalCount: number;
1118
+ hasMore: boolean;
1119
+ users: Array<{
1120
+ __typename?: 'User';
1121
+ id: string;
1122
+ email: string;
1123
+ username: string;
1124
+ firstName?: string | null;
1125
+ lastName?: string | null;
1126
+ name?: string | null;
1127
+ role: string;
1128
+ status: string;
1129
+ tenantId?: string | null;
1130
+ emailVerified: boolean;
1131
+ mfaEnabled: boolean;
1132
+ createdAt: string;
1133
+ updatedAt: string;
1134
+ lastLoginAt?: string | null;
1135
+ defaultWorkspaceId?: string | null;
1136
+ }>;
1137
+ };
1138
+ };
1139
+ export type GetUserQueryVariables = Types.Exact<{
1140
+ id: Types.Scalars['ID']['input'];
1141
+ }>;
1142
+ export type GetUserQuery = {
1143
+ __typename?: 'Query';
1144
+ user?: {
1145
+ __typename?: 'User';
1146
+ id: string;
1147
+ email: string;
1148
+ username: string;
1149
+ firstName?: string | null;
1150
+ lastName?: string | null;
1151
+ name?: string | null;
1152
+ role: string;
1153
+ status: string;
1154
+ tenantId?: string | null;
1155
+ emailVerified: boolean;
1156
+ mfaEnabled: boolean;
1157
+ createdAt: string;
1158
+ updatedAt: string;
1159
+ lastLoginAt?: string | null;
1160
+ defaultWorkspaceId?: string | null;
1161
+ } | null;
1162
+ };
1163
+ export type GetUserCountQueryVariables = Types.Exact<{
1164
+ [key: string]: never;
1165
+ }>;
1166
+ export type GetUserCountQuery = {
1167
+ __typename?: 'Query';
1168
+ userCount: number;
1169
+ };
1170
+ export type GetCurrentUserQueryVariables = Types.Exact<{
1171
+ [key: string]: never;
1172
+ }>;
1173
+ export type GetCurrentUserQuery = {
1174
+ __typename?: 'Query';
1175
+ currentUser?: {
1176
+ __typename?: 'User';
1177
+ id: string;
1178
+ email: string;
1179
+ username: string;
1180
+ firstName?: string | null;
1181
+ lastName?: string | null;
1182
+ name?: string | null;
1183
+ role: string;
1184
+ status: string;
1185
+ tenantId?: string | null;
1186
+ emailVerified: boolean;
1187
+ mfaEnabled: boolean;
1188
+ createdAt: string;
1189
+ updatedAt: string;
1190
+ lastLoginAt?: string | null;
1191
+ defaultWorkspaceId?: string | null;
1192
+ } | null;
1193
+ };
1194
+ export type UpdateUserMutationVariables = Types.Exact<{
1195
+ id: Types.Scalars['ID']['input'];
1196
+ input: Types.AdminUpdateUserInput;
1197
+ }>;
1198
+ export type UpdateUserMutation = {
1199
+ __typename?: 'Mutation';
1200
+ updateUser: {
1201
+ __typename?: 'User';
1202
+ id: string;
1203
+ email: string;
1204
+ username: string;
1205
+ firstName?: string | null;
1206
+ lastName?: string | null;
1207
+ name?: string | null;
1208
+ role: string;
1209
+ status: string;
1210
+ tenantId?: string | null;
1211
+ emailVerified: boolean;
1212
+ mfaEnabled: boolean;
1213
+ createdAt: string;
1214
+ updatedAt: string;
1215
+ lastLoginAt?: string | null;
1216
+ defaultWorkspaceId?: string | null;
1217
+ };
1218
+ };
1219
+ export type ListWorkspacesQueryVariables = Types.Exact<{
1220
+ limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;
1221
+ offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;
1222
+ }>;
1223
+ export type ListWorkspacesQuery = {
1224
+ __typename?: 'Query';
1225
+ workspaces: {
1226
+ __typename?: 'WorkspaceList';
1227
+ total: number;
1228
+ items: Array<{
1229
+ __typename?: 'Workspace';
1230
+ id: string;
1231
+ name: string;
1232
+ status: Types.WorkspaceStatus;
1233
+ }>;
1234
+ };
1235
+ };
1236
+ export declare const TenantFieldsFragmentDoc: Apollo.DocumentNode;
1237
+ export declare const AuditLogFieldsFragmentDoc: Apollo.DocumentNode;
1238
+ export declare const ActivityLogFieldsFragmentDoc: Apollo.DocumentNode;
1239
+ export declare const PlatformProductFieldsFragmentDoc: Apollo.DocumentNode;
1240
+ export declare const SupportTicketFieldsFragmentDoc: Apollo.DocumentNode;
1241
+ export declare const UserFieldsFragmentDoc: Apollo.DocumentNode;
1242
+ export declare const CreateTenantDocument: Apollo.DocumentNode;
1243
+ export type CreateTenantMutationFn = Apollo.MutationFunction<Types.CreateTenantMutation, Types.CreateTenantMutationVariables>;
1244
+ /**
1245
+ * __useCreateTenantMutation__
1246
+ *
1247
+ * To run a mutation, you first call `useCreateTenantMutation` within a React component and pass it any options that fit your needs.
1248
+ * When your component renders, `useCreateTenantMutation` returns a tuple that includes:
1249
+ * - A mutate function that you can call at any time to execute the mutation
1250
+ * - An object with fields that represent the current status of the mutation's execution
1251
+ *
1252
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1253
+ *
1254
+ * @example
1255
+ * const [createTenantMutation, { data, loading, error }] = useCreateTenantMutation({
1256
+ * variables: {
1257
+ * input: // value for 'input'
1258
+ * },
1259
+ * });
1260
+ */
1261
+ export declare function useCreateTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateTenantMutation, Types.CreateTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateTenantMutation, any, Apollo.ApolloCache>;
1262
+ export type CreateTenantMutationHookResult = ReturnType<typeof useCreateTenantMutation>;
1263
+ export type CreateTenantMutationResult = Apollo.MutationResult<Types.CreateTenantMutation>;
1264
+ export type CreateTenantMutationOptions = Apollo.BaseMutationOptions<Types.CreateTenantMutation, Types.CreateTenantMutationVariables>;
1265
+ export declare const GetTenantDocument: Apollo.DocumentNode;
1266
+ /**
1267
+ * __useGetTenantQuery__
1268
+ *
1269
+ * To run a query within a React component, call `useGetTenantQuery` and pass it any options that fit your needs.
1270
+ * When your component renders, `useGetTenantQuery` returns an object from Apollo Client that contains loading, error, and data properties
1271
+ * you can use to render your UI.
1272
+ *
1273
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1274
+ *
1275
+ * @example
1276
+ * const { data, loading, error } = useGetTenantQuery({
1277
+ * variables: {
1278
+ * id: // value for 'id'
1279
+ * },
1280
+ * });
1281
+ */
1282
+ export declare function useGetTenantQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetTenantQuery, Types.GetTenantQueryVariables> & ({
1283
+ variables: Types.GetTenantQueryVariables;
1284
+ skip?: boolean;
1285
+ } | {
1286
+ skip: boolean;
1287
+ })): ApolloReactHooks.useQuery.Result<Types.GetTenantQuery, Types.GetTenantQueryVariables, "empty" | "complete" | "streaming", Types.GetTenantQueryVariables>;
1288
+ export declare function useGetTenantLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTenantQuery, Types.GetTenantQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetTenantQuery, Types.GetTenantQueryVariables, "empty" | "complete" | "streaming">;
1289
+ export declare function useGetTenantSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantQuery, Types.GetTenantQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantQuery, Types.GetTenantQueryVariables>;
1290
+ export declare function useGetTenantSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantQuery, Types.GetTenantQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantQuery | undefined, Types.GetTenantQueryVariables>;
1291
+ export type GetTenantQueryHookResult = ReturnType<typeof useGetTenantQuery>;
1292
+ export type GetTenantLazyQueryHookResult = ReturnType<typeof useGetTenantLazyQuery>;
1293
+ export type GetTenantSuspenseQueryHookResult = ReturnType<typeof useGetTenantSuspenseQuery>;
1294
+ export type GetTenantQueryResult = Apollo.QueryResult<Types.GetTenantQuery, Types.GetTenantQueryVariables>;
1295
+ export declare const GetTenantBySlugDocument: Apollo.DocumentNode;
1296
+ /**
1297
+ * __useGetTenantBySlugQuery__
1298
+ *
1299
+ * To run a query within a React component, call `useGetTenantBySlugQuery` and pass it any options that fit your needs.
1300
+ * When your component renders, `useGetTenantBySlugQuery` returns an object from Apollo Client that contains loading, error, and data properties
1301
+ * you can use to render your UI.
1302
+ *
1303
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1304
+ *
1305
+ * @example
1306
+ * const { data, loading, error } = useGetTenantBySlugQuery({
1307
+ * variables: {
1308
+ * slug: // value for 'slug'
1309
+ * },
1310
+ * });
1311
+ */
1312
+ export declare function useGetTenantBySlugQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables> & ({
1313
+ variables: Types.GetTenantBySlugQueryVariables;
1314
+ skip?: boolean;
1315
+ } | {
1316
+ skip: boolean;
1317
+ })): ApolloReactHooks.useQuery.Result<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables, "empty" | "complete" | "streaming", Types.GetTenantBySlugQueryVariables>;
1318
+ export declare function useGetTenantBySlugLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables, "empty" | "complete" | "streaming">;
1319
+ export declare function useGetTenantBySlugSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables>;
1320
+ export declare function useGetTenantBySlugSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantBySlugQuery | undefined, Types.GetTenantBySlugQueryVariables>;
1321
+ export type GetTenantBySlugQueryHookResult = ReturnType<typeof useGetTenantBySlugQuery>;
1322
+ export type GetTenantBySlugLazyQueryHookResult = ReturnType<typeof useGetTenantBySlugLazyQuery>;
1323
+ export type GetTenantBySlugSuspenseQueryHookResult = ReturnType<typeof useGetTenantBySlugSuspenseQuery>;
1324
+ export type GetTenantBySlugQueryResult = Apollo.QueryResult<Types.GetTenantBySlugQuery, Types.GetTenantBySlugQueryVariables>;
1325
+ export declare const GetTenantRoutingInfoDocument: Apollo.DocumentNode;
1326
+ /**
1327
+ * __useGetTenantRoutingInfoQuery__
1328
+ *
1329
+ * To run a query within a React component, call `useGetTenantRoutingInfoQuery` and pass it any options that fit your needs.
1330
+ * When your component renders, `useGetTenantRoutingInfoQuery` returns an object from Apollo Client that contains loading, error, and data properties
1331
+ * you can use to render your UI.
1332
+ *
1333
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1334
+ *
1335
+ * @example
1336
+ * const { data, loading, error } = useGetTenantRoutingInfoQuery({
1337
+ * variables: {
1338
+ * tenantId: // value for 'tenantId'
1339
+ * },
1340
+ * });
1341
+ */
1342
+ export declare function useGetTenantRoutingInfoQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables> & ({
1343
+ variables: Types.GetTenantRoutingInfoQueryVariables;
1344
+ skip?: boolean;
1345
+ } | {
1346
+ skip: boolean;
1347
+ })): ApolloReactHooks.useQuery.Result<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables, "empty" | "complete" | "streaming", Types.GetTenantRoutingInfoQueryVariables>;
1348
+ export declare function useGetTenantRoutingInfoLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables, "empty" | "complete" | "streaming">;
1349
+ export declare function useGetTenantRoutingInfoSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables>;
1350
+ export declare function useGetTenantRoutingInfoSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTenantRoutingInfoQuery | undefined, Types.GetTenantRoutingInfoQueryVariables>;
1351
+ export type GetTenantRoutingInfoQueryHookResult = ReturnType<typeof useGetTenantRoutingInfoQuery>;
1352
+ export type GetTenantRoutingInfoLazyQueryHookResult = ReturnType<typeof useGetTenantRoutingInfoLazyQuery>;
1353
+ export type GetTenantRoutingInfoSuspenseQueryHookResult = ReturnType<typeof useGetTenantRoutingInfoSuspenseQuery>;
1354
+ export type GetTenantRoutingInfoQueryResult = Apollo.QueryResult<Types.GetTenantRoutingInfoQuery, Types.GetTenantRoutingInfoQueryVariables>;
1355
+ export declare const SuspendTenantDocument: Apollo.DocumentNode;
1356
+ export type SuspendTenantMutationFn = Apollo.MutationFunction<Types.SuspendTenantMutation, Types.SuspendTenantMutationVariables>;
1357
+ /**
1358
+ * __useSuspendTenantMutation__
1359
+ *
1360
+ * To run a mutation, you first call `useSuspendTenantMutation` within a React component and pass it any options that fit your needs.
1361
+ * When your component renders, `useSuspendTenantMutation` returns a tuple that includes:
1362
+ * - A mutate function that you can call at any time to execute the mutation
1363
+ * - An object with fields that represent the current status of the mutation's execution
1364
+ *
1365
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1366
+ *
1367
+ * @example
1368
+ * const [suspendTenantMutation, { data, loading, error }] = useSuspendTenantMutation({
1369
+ * variables: {
1370
+ * id: // value for 'id'
1371
+ * },
1372
+ * });
1373
+ */
1374
+ export declare function useSuspendTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SuspendTenantMutation, Types.SuspendTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.SuspendTenantMutation, any, Apollo.ApolloCache>;
1375
+ export type SuspendTenantMutationHookResult = ReturnType<typeof useSuspendTenantMutation>;
1376
+ export type SuspendTenantMutationResult = Apollo.MutationResult<Types.SuspendTenantMutation>;
1377
+ export type SuspendTenantMutationOptions = Apollo.BaseMutationOptions<Types.SuspendTenantMutation, Types.SuspendTenantMutationVariables>;
1378
+ export declare const ActivateTenantDocument: Apollo.DocumentNode;
1379
+ export type ActivateTenantMutationFn = Apollo.MutationFunction<Types.ActivateTenantMutation, Types.ActivateTenantMutationVariables>;
1380
+ /**
1381
+ * __useActivateTenantMutation__
1382
+ *
1383
+ * To run a mutation, you first call `useActivateTenantMutation` within a React component and pass it any options that fit your needs.
1384
+ * When your component renders, `useActivateTenantMutation` returns a tuple that includes:
1385
+ * - A mutate function that you can call at any time to execute the mutation
1386
+ * - An object with fields that represent the current status of the mutation's execution
1387
+ *
1388
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1389
+ *
1390
+ * @example
1391
+ * const [activateTenantMutation, { data, loading, error }] = useActivateTenantMutation({
1392
+ * variables: {
1393
+ * id: // value for 'id'
1394
+ * },
1395
+ * });
1396
+ */
1397
+ export declare function useActivateTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ActivateTenantMutation, Types.ActivateTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ActivateTenantMutation, any, Apollo.ApolloCache>;
1398
+ export type ActivateTenantMutationHookResult = ReturnType<typeof useActivateTenantMutation>;
1399
+ export type ActivateTenantMutationResult = Apollo.MutationResult<Types.ActivateTenantMutation>;
1400
+ export type ActivateTenantMutationOptions = Apollo.BaseMutationOptions<Types.ActivateTenantMutation, Types.ActivateTenantMutationVariables>;
1401
+ export declare const ConfigureTenantDocument: Apollo.DocumentNode;
1402
+ export type ConfigureTenantMutationFn = Apollo.MutationFunction<Types.ConfigureTenantMutation, Types.ConfigureTenantMutationVariables>;
1403
+ /**
1404
+ * __useConfigureTenantMutation__
1405
+ *
1406
+ * To run a mutation, you first call `useConfigureTenantMutation` within a React component and pass it any options that fit your needs.
1407
+ * When your component renders, `useConfigureTenantMutation` returns a tuple that includes:
1408
+ * - A mutate function that you can call at any time to execute the mutation
1409
+ * - An object with fields that represent the current status of the mutation's execution
1410
+ *
1411
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1412
+ *
1413
+ * @example
1414
+ * const [configureTenantMutation, { data, loading, error }] = useConfigureTenantMutation({
1415
+ * variables: {
1416
+ * id: // value for 'id'
1417
+ * input: // value for 'input'
1418
+ * },
1419
+ * });
1420
+ */
1421
+ export declare function useConfigureTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ConfigureTenantMutation, Types.ConfigureTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ConfigureTenantMutation, any, Apollo.ApolloCache>;
1422
+ export type ConfigureTenantMutationHookResult = ReturnType<typeof useConfigureTenantMutation>;
1423
+ export type ConfigureTenantMutationResult = Apollo.MutationResult<Types.ConfigureTenantMutation>;
1424
+ export type ConfigureTenantMutationOptions = Apollo.BaseMutationOptions<Types.ConfigureTenantMutation, Types.ConfigureTenantMutationVariables>;
1425
+ export declare const ListTenantsDocument: Apollo.DocumentNode;
1426
+ /**
1427
+ * __useListTenantsQuery__
1428
+ *
1429
+ * To run a query within a React component, call `useListTenantsQuery` and pass it any options that fit your needs.
1430
+ * When your component renders, `useListTenantsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1431
+ * you can use to render your UI.
1432
+ *
1433
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1434
+ *
1435
+ * @example
1436
+ * const { data, loading, error } = useListTenantsQuery({
1437
+ * variables: {
1438
+ * filter: // value for 'filter'
1439
+ * limit: // value for 'limit'
1440
+ * offset: // value for 'offset'
1441
+ * },
1442
+ * });
1443
+ */
1444
+ export declare function useListTenantsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListTenantsQuery, Types.ListTenantsQueryVariables, "empty" | "complete" | "streaming", Types.ListTenantsQueryVariables>;
1445
+ export declare function useListTenantsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListTenantsQuery, Types.ListTenantsQueryVariables, "empty" | "complete" | "streaming">;
1446
+ export declare function useListTenantsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>;
1447
+ export declare function useListTenantsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListTenantsQuery | undefined, Types.ListTenantsQueryVariables>;
1448
+ export type ListTenantsQueryHookResult = ReturnType<typeof useListTenantsQuery>;
1449
+ export type ListTenantsLazyQueryHookResult = ReturnType<typeof useListTenantsLazyQuery>;
1450
+ export type ListTenantsSuspenseQueryHookResult = ReturnType<typeof useListTenantsSuspenseQuery>;
1451
+ export type ListTenantsQueryResult = Apollo.QueryResult<Types.ListTenantsQuery, Types.ListTenantsQueryVariables>;
1452
+ export declare const ProvisionDedicatedTenantDocument: Apollo.DocumentNode;
1453
+ export type ProvisionDedicatedTenantMutationFn = Apollo.MutationFunction<Types.ProvisionDedicatedTenantMutation, Types.ProvisionDedicatedTenantMutationVariables>;
1454
+ /**
1455
+ * __useProvisionDedicatedTenantMutation__
1456
+ *
1457
+ * To run a mutation, you first call `useProvisionDedicatedTenantMutation` within a React component and pass it any options that fit your needs.
1458
+ * When your component renders, `useProvisionDedicatedTenantMutation` returns a tuple that includes:
1459
+ * - A mutate function that you can call at any time to execute the mutation
1460
+ * - An object with fields that represent the current status of the mutation's execution
1461
+ *
1462
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1463
+ *
1464
+ * @example
1465
+ * const [provisionDedicatedTenantMutation, { data, loading, error }] = useProvisionDedicatedTenantMutation({
1466
+ * variables: {
1467
+ * input: // value for 'input'
1468
+ * },
1469
+ * });
1470
+ */
1471
+ export declare function useProvisionDedicatedTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ProvisionDedicatedTenantMutation, Types.ProvisionDedicatedTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.ProvisionDedicatedTenantMutation, any, Apollo.ApolloCache>;
1472
+ export type ProvisionDedicatedTenantMutationHookResult = ReturnType<typeof useProvisionDedicatedTenantMutation>;
1473
+ export type ProvisionDedicatedTenantMutationResult = Apollo.MutationResult<Types.ProvisionDedicatedTenantMutation>;
1474
+ export type ProvisionDedicatedTenantMutationOptions = Apollo.BaseMutationOptions<Types.ProvisionDedicatedTenantMutation, Types.ProvisionDedicatedTenantMutationVariables>;
1475
+ export declare const SetTenantEndpointDocument: Apollo.DocumentNode;
1476
+ export type SetTenantEndpointMutationFn = Apollo.MutationFunction<Types.SetTenantEndpointMutation, Types.SetTenantEndpointMutationVariables>;
1477
+ /**
1478
+ * __useSetTenantEndpointMutation__
1479
+ *
1480
+ * To run a mutation, you first call `useSetTenantEndpointMutation` within a React component and pass it any options that fit your needs.
1481
+ * When your component renders, `useSetTenantEndpointMutation` returns a tuple that includes:
1482
+ * - A mutate function that you can call at any time to execute the mutation
1483
+ * - An object with fields that represent the current status of the mutation's execution
1484
+ *
1485
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1486
+ *
1487
+ * @example
1488
+ * const [setTenantEndpointMutation, { data, loading, error }] = useSetTenantEndpointMutation({
1489
+ * variables: {
1490
+ * tenantId: // value for 'tenantId'
1491
+ * endpoint: // value for 'endpoint'
1492
+ * },
1493
+ * });
1494
+ */
1495
+ export declare function useSetTenantEndpointMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SetTenantEndpointMutation, Types.SetTenantEndpointMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.SetTenantEndpointMutation, any, Apollo.ApolloCache>;
1496
+ export type SetTenantEndpointMutationHookResult = ReturnType<typeof useSetTenantEndpointMutation>;
1497
+ export type SetTenantEndpointMutationResult = Apollo.MutationResult<Types.SetTenantEndpointMutation>;
1498
+ export type SetTenantEndpointMutationOptions = Apollo.BaseMutationOptions<Types.SetTenantEndpointMutation, Types.SetTenantEndpointMutationVariables>;
1499
+ export declare const UpdateTenantDocument: Apollo.DocumentNode;
1500
+ export type UpdateTenantMutationFn = Apollo.MutationFunction<Types.UpdateTenantMutation, Types.UpdateTenantMutationVariables>;
1501
+ /**
1502
+ * __useUpdateTenantMutation__
1503
+ *
1504
+ * To run a mutation, you first call `useUpdateTenantMutation` within a React component and pass it any options that fit your needs.
1505
+ * When your component renders, `useUpdateTenantMutation` returns a tuple that includes:
1506
+ * - A mutate function that you can call at any time to execute the mutation
1507
+ * - An object with fields that represent the current status of the mutation's execution
1508
+ *
1509
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1510
+ *
1511
+ * @example
1512
+ * const [updateTenantMutation, { data, loading, error }] = useUpdateTenantMutation({
1513
+ * variables: {
1514
+ * id: // value for 'id'
1515
+ * input: // value for 'input'
1516
+ * },
1517
+ * });
1518
+ */
1519
+ export declare function useUpdateTenantMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateTenantMutation, Types.UpdateTenantMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateTenantMutation, any, Apollo.ApolloCache>;
1520
+ export type UpdateTenantMutationHookResult = ReturnType<typeof useUpdateTenantMutation>;
1521
+ export type UpdateTenantMutationResult = Apollo.MutationResult<Types.UpdateTenantMutation>;
1522
+ export type UpdateTenantMutationOptions = Apollo.BaseMutationOptions<Types.UpdateTenantMutation, Types.UpdateTenantMutationVariables>;
1523
+ export declare const ListAuditLogsDocument: Apollo.DocumentNode;
1524
+ /**
1525
+ * __useListAuditLogsQuery__
1526
+ *
1527
+ * To run a query within a React component, call `useListAuditLogsQuery` and pass it any options that fit your needs.
1528
+ * When your component renders, `useListAuditLogsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1529
+ * you can use to render your UI.
1530
+ *
1531
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1532
+ *
1533
+ * @example
1534
+ * const { data, loading, error } = useListAuditLogsQuery({
1535
+ * variables: {
1536
+ * actorId: // value for 'actorId'
1537
+ * resource: // value for 'resource'
1538
+ * resourceId: // value for 'resourceId'
1539
+ * limit: // value for 'limit'
1540
+ * offset: // value for 'offset'
1541
+ * },
1542
+ * });
1543
+ */
1544
+ export declare function useListAuditLogsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables, "empty" | "complete" | "streaming", Types.ListAuditLogsQueryVariables>;
1545
+ export declare function useListAuditLogsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables, "empty" | "complete" | "streaming">;
1546
+ export declare function useListAuditLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>;
1547
+ export declare function useListAuditLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAuditLogsQuery | undefined, Types.ListAuditLogsQueryVariables>;
1548
+ export type ListAuditLogsQueryHookResult = ReturnType<typeof useListAuditLogsQuery>;
1549
+ export type ListAuditLogsLazyQueryHookResult = ReturnType<typeof useListAuditLogsLazyQuery>;
1550
+ export type ListAuditLogsSuspenseQueryHookResult = ReturnType<typeof useListAuditLogsSuspenseQuery>;
1551
+ export type ListAuditLogsQueryResult = Apollo.QueryResult<Types.ListAuditLogsQuery, Types.ListAuditLogsQueryVariables>;
1552
+ export declare const ListActivityLogsDocument: Apollo.DocumentNode;
1553
+ /**
1554
+ * __useListActivityLogsQuery__
1555
+ *
1556
+ * To run a query within a React component, call `useListActivityLogsQuery` and pass it any options that fit your needs.
1557
+ * When your component renders, `useListActivityLogsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1558
+ * you can use to render your UI.
1559
+ *
1560
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1561
+ *
1562
+ * @example
1563
+ * const { data, loading, error } = useListActivityLogsQuery({
1564
+ * variables: {
1565
+ * filter: // value for 'filter'
1566
+ * limit: // value for 'limit'
1567
+ * offset: // value for 'offset'
1568
+ * },
1569
+ * });
1570
+ */
1571
+ export declare function useListActivityLogsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables, "empty" | "complete" | "streaming", Types.ListActivityLogsQueryVariables>;
1572
+ export declare function useListActivityLogsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables, "empty" | "complete" | "streaming">;
1573
+ export declare function useListActivityLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>;
1574
+ export declare function useListActivityLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListActivityLogsQuery | undefined, Types.ListActivityLogsQueryVariables>;
1575
+ export type ListActivityLogsQueryHookResult = ReturnType<typeof useListActivityLogsQuery>;
1576
+ export type ListActivityLogsLazyQueryHookResult = ReturnType<typeof useListActivityLogsLazyQuery>;
1577
+ export type ListActivityLogsSuspenseQueryHookResult = ReturnType<typeof useListActivityLogsSuspenseQuery>;
1578
+ export type ListActivityLogsQueryResult = Apollo.QueryResult<Types.ListActivityLogsQuery, Types.ListActivityLogsQueryVariables>;
1579
+ export declare const ListAllPlansDocument: Apollo.DocumentNode;
1580
+ /**
1581
+ * __useListAllPlansQuery__
1582
+ *
1583
+ * To run a query within a React component, call `useListAllPlansQuery` and pass it any options that fit your needs.
1584
+ * When your component renders, `useListAllPlansQuery` returns an object from Apollo Client that contains loading, error, and data properties
1585
+ * you can use to render your UI.
1586
+ *
1587
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1588
+ *
1589
+ * @example
1590
+ * const { data, loading, error } = useListAllPlansQuery({
1591
+ * variables: {
1592
+ * },
1593
+ * });
1594
+ */
1595
+ export declare function useListAllPlansQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables, "empty" | "complete" | "streaming", Types.ListAllPlansQueryVariables>;
1596
+ export declare function useListAllPlansLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables, "empty" | "complete" | "streaming">;
1597
+ export declare function useListAllPlansSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>;
1598
+ export declare function useListAllPlansSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAllPlansQuery | undefined, Types.ListAllPlansQueryVariables>;
1599
+ export type ListAllPlansQueryHookResult = ReturnType<typeof useListAllPlansQuery>;
1600
+ export type ListAllPlansLazyQueryHookResult = ReturnType<typeof useListAllPlansLazyQuery>;
1601
+ export type ListAllPlansSuspenseQueryHookResult = ReturnType<typeof useListAllPlansSuspenseQuery>;
1602
+ export type ListAllPlansQueryResult = Apollo.QueryResult<Types.ListAllPlansQuery, Types.ListAllPlansQueryVariables>;
1603
+ export declare const ListAllQuotasDocument: Apollo.DocumentNode;
1604
+ /**
1605
+ * __useListAllQuotasQuery__
1606
+ *
1607
+ * To run a query within a React component, call `useListAllQuotasQuery` and pass it any options that fit your needs.
1608
+ * When your component renders, `useListAllQuotasQuery` returns an object from Apollo Client that contains loading, error, and data properties
1609
+ * you can use to render your UI.
1610
+ *
1611
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1612
+ *
1613
+ * @example
1614
+ * const { data, loading, error } = useListAllQuotasQuery({
1615
+ * variables: {
1616
+ * },
1617
+ * });
1618
+ */
1619
+ export declare function useListAllQuotasQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables, "empty" | "complete" | "streaming", Types.ListAllQuotasQueryVariables>;
1620
+ export declare function useListAllQuotasLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables, "empty" | "complete" | "streaming">;
1621
+ export declare function useListAllQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>;
1622
+ export declare function useListAllQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListAllQuotasQuery | undefined, Types.ListAllQuotasQueryVariables>;
1623
+ export type ListAllQuotasQueryHookResult = ReturnType<typeof useListAllQuotasQuery>;
1624
+ export type ListAllQuotasLazyQueryHookResult = ReturnType<typeof useListAllQuotasLazyQuery>;
1625
+ export type ListAllQuotasSuspenseQueryHookResult = ReturnType<typeof useListAllQuotasSuspenseQuery>;
1626
+ export type ListAllQuotasQueryResult = Apollo.QueryResult<Types.ListAllQuotasQuery, Types.ListAllQuotasQueryVariables>;
1627
+ export declare const ListRefundRecordsDocument: Apollo.DocumentNode;
1628
+ /**
1629
+ * __useListRefundRecordsQuery__
1630
+ *
1631
+ * To run a query within a React component, call `useListRefundRecordsQuery` and pass it any options that fit your needs.
1632
+ * When your component renders, `useListRefundRecordsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1633
+ * you can use to render your UI.
1634
+ *
1635
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1636
+ *
1637
+ * @example
1638
+ * const { data, loading, error } = useListRefundRecordsQuery({
1639
+ * variables: {
1640
+ * orgIdFilter: // value for 'orgIdFilter'
1641
+ * page: // value for 'page'
1642
+ * pageSize: // value for 'pageSize'
1643
+ * },
1644
+ * });
1645
+ */
1646
+ export declare function useListRefundRecordsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables, "empty" | "complete" | "streaming", Types.ListRefundRecordsQueryVariables>;
1647
+ export declare function useListRefundRecordsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables, "empty" | "complete" | "streaming">;
1648
+ export declare function useListRefundRecordsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>;
1649
+ export declare function useListRefundRecordsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRefundRecordsQuery | undefined, Types.ListRefundRecordsQueryVariables>;
1650
+ export type ListRefundRecordsQueryHookResult = ReturnType<typeof useListRefundRecordsQuery>;
1651
+ export type ListRefundRecordsLazyQueryHookResult = ReturnType<typeof useListRefundRecordsLazyQuery>;
1652
+ export type ListRefundRecordsSuspenseQueryHookResult = ReturnType<typeof useListRefundRecordsSuspenseQuery>;
1653
+ export type ListRefundRecordsQueryResult = Apollo.QueryResult<Types.ListRefundRecordsQuery, Types.ListRefundRecordsQueryVariables>;
1654
+ export declare const ListTaxRatesDocument: Apollo.DocumentNode;
1655
+ /**
1656
+ * __useListTaxRatesQuery__
1657
+ *
1658
+ * To run a query within a React component, call `useListTaxRatesQuery` and pass it any options that fit your needs.
1659
+ * When your component renders, `useListTaxRatesQuery` returns an object from Apollo Client that contains loading, error, and data properties
1660
+ * you can use to render your UI.
1661
+ *
1662
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1663
+ *
1664
+ * @example
1665
+ * const { data, loading, error } = useListTaxRatesQuery({
1666
+ * variables: {
1667
+ * active: // value for 'active'
1668
+ * },
1669
+ * });
1670
+ */
1671
+ export declare function useListTaxRatesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables, "empty" | "complete" | "streaming", Types.ListTaxRatesQueryVariables>;
1672
+ export declare function useListTaxRatesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables, "empty" | "complete" | "streaming">;
1673
+ export declare function useListTaxRatesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>;
1674
+ export declare function useListTaxRatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListTaxRatesQuery | undefined, Types.ListTaxRatesQueryVariables>;
1675
+ export type ListTaxRatesQueryHookResult = ReturnType<typeof useListTaxRatesQuery>;
1676
+ export type ListTaxRatesLazyQueryHookResult = ReturnType<typeof useListTaxRatesLazyQuery>;
1677
+ export type ListTaxRatesSuspenseQueryHookResult = ReturnType<typeof useListTaxRatesSuspenseQuery>;
1678
+ export type ListTaxRatesQueryResult = Apollo.QueryResult<Types.ListTaxRatesQuery, Types.ListTaxRatesQueryVariables>;
1679
+ export declare const CreatePlanDocument: Apollo.DocumentNode;
1680
+ export type CreatePlanMutationFn = Apollo.MutationFunction<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>;
1681
+ /**
1682
+ * __useCreatePlanMutation__
1683
+ *
1684
+ * To run a mutation, you first call `useCreatePlanMutation` within a React component and pass it any options that fit your needs.
1685
+ * When your component renders, `useCreatePlanMutation` returns a tuple that includes:
1686
+ * - A mutate function that you can call at any time to execute the mutation
1687
+ * - An object with fields that represent the current status of the mutation's execution
1688
+ *
1689
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1690
+ *
1691
+ * @example
1692
+ * const [createPlanMutation, { data, loading, error }] = useCreatePlanMutation({
1693
+ * variables: {
1694
+ * input: // value for 'input'
1695
+ * },
1696
+ * });
1697
+ */
1698
+ export declare function useCreatePlanMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreatePlanMutation, any, Apollo.ApolloCache>;
1699
+ export type CreatePlanMutationHookResult = ReturnType<typeof useCreatePlanMutation>;
1700
+ export type CreatePlanMutationResult = Apollo.MutationResult<Types.CreatePlanMutation>;
1701
+ export type CreatePlanMutationOptions = Apollo.BaseMutationOptions<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>;
1702
+ export declare const CreateRefundRecordDocument: Apollo.DocumentNode;
1703
+ export type CreateRefundRecordMutationFn = Apollo.MutationFunction<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>;
1704
+ /**
1705
+ * __useCreateRefundRecordMutation__
1706
+ *
1707
+ * To run a mutation, you first call `useCreateRefundRecordMutation` within a React component and pass it any options that fit your needs.
1708
+ * When your component renders, `useCreateRefundRecordMutation` returns a tuple that includes:
1709
+ * - A mutate function that you can call at any time to execute the mutation
1710
+ * - An object with fields that represent the current status of the mutation's execution
1711
+ *
1712
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1713
+ *
1714
+ * @example
1715
+ * const [createRefundRecordMutation, { data, loading, error }] = useCreateRefundRecordMutation({
1716
+ * variables: {
1717
+ * amount: // value for 'amount'
1718
+ * billingAccountId: // value for 'billingAccountId'
1719
+ * currency: // value for 'currency'
1720
+ * gatewayPaymentId: // value for 'gatewayPaymentId'
1721
+ * provider: // value for 'provider'
1722
+ * reason: // value for 'reason'
1723
+ * },
1724
+ * });
1725
+ */
1726
+ export declare function useCreateRefundRecordMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateRefundRecordMutation, any, Apollo.ApolloCache>;
1727
+ export type CreateRefundRecordMutationHookResult = ReturnType<typeof useCreateRefundRecordMutation>;
1728
+ export type CreateRefundRecordMutationResult = Apollo.MutationResult<Types.CreateRefundRecordMutation>;
1729
+ export type CreateRefundRecordMutationOptions = Apollo.BaseMutationOptions<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>;
1730
+ export declare const ListNewslettersDocument: Apollo.DocumentNode;
1731
+ /**
1732
+ * __useListNewslettersQuery__
1733
+ *
1734
+ * To run a query within a React component, call `useListNewslettersQuery` and pass it any options that fit your needs.
1735
+ * When your component renders, `useListNewslettersQuery` returns an object from Apollo Client that contains loading, error, and data properties
1736
+ * you can use to render your UI.
1737
+ *
1738
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1739
+ *
1740
+ * @example
1741
+ * const { data, loading, error } = useListNewslettersQuery({
1742
+ * variables: {
1743
+ * filter: // value for 'filter'
1744
+ * limit: // value for 'limit'
1745
+ * offset: // value for 'offset'
1746
+ * },
1747
+ * });
1748
+ */
1749
+ export declare function useListNewslettersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables, "empty" | "complete" | "streaming", Types.ListNewslettersQueryVariables>;
1750
+ export declare function useListNewslettersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables, "empty" | "complete" | "streaming">;
1751
+ export declare function useListNewslettersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>;
1752
+ export declare function useListNewslettersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListNewslettersQuery | undefined, Types.ListNewslettersQueryVariables>;
1753
+ export type ListNewslettersQueryHookResult = ReturnType<typeof useListNewslettersQuery>;
1754
+ export type ListNewslettersLazyQueryHookResult = ReturnType<typeof useListNewslettersLazyQuery>;
1755
+ export type ListNewslettersSuspenseQueryHookResult = ReturnType<typeof useListNewslettersSuspenseQuery>;
1756
+ export type ListNewslettersQueryResult = Apollo.QueryResult<Types.ListNewslettersQuery, Types.ListNewslettersQueryVariables>;
1757
+ export declare const GetNewsletterStatsDocument: Apollo.DocumentNode;
1758
+ /**
1759
+ * __useGetNewsletterStatsQuery__
1760
+ *
1761
+ * To run a query within a React component, call `useGetNewsletterStatsQuery` and pass it any options that fit your needs.
1762
+ * When your component renders, `useGetNewsletterStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1763
+ * you can use to render your UI.
1764
+ *
1765
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1766
+ *
1767
+ * @example
1768
+ * const { data, loading, error } = useGetNewsletterStatsQuery({
1769
+ * variables: {
1770
+ * },
1771
+ * });
1772
+ */
1773
+ export declare function useGetNewsletterStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables, "empty" | "complete" | "streaming", Types.GetNewsletterStatsQueryVariables>;
1774
+ export declare function useGetNewsletterStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables, "empty" | "complete" | "streaming">;
1775
+ export declare function useGetNewsletterStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>;
1776
+ export declare function useGetNewsletterStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetNewsletterStatsQuery | undefined, Types.GetNewsletterStatsQueryVariables>;
1777
+ export type GetNewsletterStatsQueryHookResult = ReturnType<typeof useGetNewsletterStatsQuery>;
1778
+ export type GetNewsletterStatsLazyQueryHookResult = ReturnType<typeof useGetNewsletterStatsLazyQuery>;
1779
+ export type GetNewsletterStatsSuspenseQueryHookResult = ReturnType<typeof useGetNewsletterStatsSuspenseQuery>;
1780
+ export type GetNewsletterStatsQueryResult = Apollo.QueryResult<Types.GetNewsletterStatsQuery, Types.GetNewsletterStatsQueryVariables>;
1781
+ export declare const CreateNewsletterDocument: Apollo.DocumentNode;
1782
+ export type CreateNewsletterMutationFn = Apollo.MutationFunction<Types.CreateNewsletterMutation, Types.CreateNewsletterMutationVariables>;
1783
+ /**
1784
+ * __useCreateNewsletterMutation__
1785
+ *
1786
+ * To run a mutation, you first call `useCreateNewsletterMutation` within a React component and pass it any options that fit your needs.
1787
+ * When your component renders, `useCreateNewsletterMutation` returns a tuple that includes:
1788
+ * - A mutate function that you can call at any time to execute the mutation
1789
+ * - An object with fields that represent the current status of the mutation's execution
1790
+ *
1791
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1792
+ *
1793
+ * @example
1794
+ * const [createNewsletterMutation, { data, loading, error }] = useCreateNewsletterMutation({
1795
+ * variables: {
1796
+ * input: // value for 'input'
1797
+ * },
1798
+ * });
1799
+ */
1800
+ export declare function useCreateNewsletterMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateNewsletterMutation, Types.CreateNewsletterMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateNewsletterMutation, any, Apollo.ApolloCache>;
1801
+ export type CreateNewsletterMutationHookResult = ReturnType<typeof useCreateNewsletterMutation>;
1802
+ export type CreateNewsletterMutationResult = Apollo.MutationResult<Types.CreateNewsletterMutation>;
1803
+ export type CreateNewsletterMutationOptions = Apollo.BaseMutationOptions<Types.CreateNewsletterMutation, Types.CreateNewsletterMutationVariables>;
1804
+ export declare const SendNewsletterDocument: Apollo.DocumentNode;
1805
+ export type SendNewsletterMutationFn = Apollo.MutationFunction<Types.SendNewsletterMutation, Types.SendNewsletterMutationVariables>;
1806
+ /**
1807
+ * __useSendNewsletterMutation__
1808
+ *
1809
+ * To run a mutation, you first call `useSendNewsletterMutation` within a React component and pass it any options that fit your needs.
1810
+ * When your component renders, `useSendNewsletterMutation` returns a tuple that includes:
1811
+ * - A mutate function that you can call at any time to execute the mutation
1812
+ * - An object with fields that represent the current status of the mutation's execution
1813
+ *
1814
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
1815
+ *
1816
+ * @example
1817
+ * const [sendNewsletterMutation, { data, loading, error }] = useSendNewsletterMutation({
1818
+ * variables: {
1819
+ * id: // value for 'id'
1820
+ * },
1821
+ * });
1822
+ */
1823
+ export declare function useSendNewsletterMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SendNewsletterMutation, Types.SendNewsletterMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.SendNewsletterMutation, any, Apollo.ApolloCache>;
1824
+ export type SendNewsletterMutationHookResult = ReturnType<typeof useSendNewsletterMutation>;
1825
+ export type SendNewsletterMutationResult = Apollo.MutationResult<Types.SendNewsletterMutation>;
1826
+ export type SendNewsletterMutationOptions = Apollo.BaseMutationOptions<Types.SendNewsletterMutation, Types.SendNewsletterMutationVariables>;
1827
+ export declare const GetDashboardTenantCountDocument: Apollo.DocumentNode;
1828
+ /**
1829
+ * __useGetDashboardTenantCountQuery__
1830
+ *
1831
+ * To run a query within a React component, call `useGetDashboardTenantCountQuery` and pass it any options that fit your needs.
1832
+ * When your component renders, `useGetDashboardTenantCountQuery` returns an object from Apollo Client that contains loading, error, and data properties
1833
+ * you can use to render your UI.
1834
+ *
1835
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1836
+ *
1837
+ * @example
1838
+ * const { data, loading, error } = useGetDashboardTenantCountQuery({
1839
+ * variables: {
1840
+ * },
1841
+ * });
1842
+ */
1843
+ export declare function useGetDashboardTenantCountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardTenantCountQueryVariables>;
1844
+ export declare function useGetDashboardTenantCountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables, "empty" | "complete" | "streaming">;
1845
+ export declare function useGetDashboardTenantCountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>;
1846
+ export declare function useGetDashboardTenantCountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardTenantCountQuery | undefined, Types.GetDashboardTenantCountQueryVariables>;
1847
+ export type GetDashboardTenantCountQueryHookResult = ReturnType<typeof useGetDashboardTenantCountQuery>;
1848
+ export type GetDashboardTenantCountLazyQueryHookResult = ReturnType<typeof useGetDashboardTenantCountLazyQuery>;
1849
+ export type GetDashboardTenantCountSuspenseQueryHookResult = ReturnType<typeof useGetDashboardTenantCountSuspenseQuery>;
1850
+ export type GetDashboardTenantCountQueryResult = Apollo.QueryResult<Types.GetDashboardTenantCountQuery, Types.GetDashboardTenantCountQueryVariables>;
1851
+ export declare const GetDashboardOrganizationCountDocument: Apollo.DocumentNode;
1852
+ /**
1853
+ * __useGetDashboardOrganizationCountQuery__
1854
+ *
1855
+ * To run a query within a React component, call `useGetDashboardOrganizationCountQuery` and pass it any options that fit your needs.
1856
+ * When your component renders, `useGetDashboardOrganizationCountQuery` returns an object from Apollo Client that contains loading, error, and data properties
1857
+ * you can use to render your UI.
1858
+ *
1859
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1860
+ *
1861
+ * @example
1862
+ * const { data, loading, error } = useGetDashboardOrganizationCountQuery({
1863
+ * variables: {
1864
+ * },
1865
+ * });
1866
+ */
1867
+ export declare function useGetDashboardOrganizationCountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardOrganizationCountQueryVariables>;
1868
+ export declare function useGetDashboardOrganizationCountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables, "empty" | "complete" | "streaming">;
1869
+ export declare function useGetDashboardOrganizationCountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>;
1870
+ export declare function useGetDashboardOrganizationCountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardOrganizationCountQuery | undefined, Types.GetDashboardOrganizationCountQueryVariables>;
1871
+ export type GetDashboardOrganizationCountQueryHookResult = ReturnType<typeof useGetDashboardOrganizationCountQuery>;
1872
+ export type GetDashboardOrganizationCountLazyQueryHookResult = ReturnType<typeof useGetDashboardOrganizationCountLazyQuery>;
1873
+ export type GetDashboardOrganizationCountSuspenseQueryHookResult = ReturnType<typeof useGetDashboardOrganizationCountSuspenseQuery>;
1874
+ export type GetDashboardOrganizationCountQueryResult = Apollo.QueryResult<Types.GetDashboardOrganizationCountQuery, Types.GetDashboardOrganizationCountQueryVariables>;
1875
+ export declare const GetDashboardActiveWorkspaceCountDocument: Apollo.DocumentNode;
1876
+ /**
1877
+ * __useGetDashboardActiveWorkspaceCountQuery__
1878
+ *
1879
+ * To run a query within a React component, call `useGetDashboardActiveWorkspaceCountQuery` and pass it any options that fit your needs.
1880
+ * When your component renders, `useGetDashboardActiveWorkspaceCountQuery` returns an object from Apollo Client that contains loading, error, and data properties
1881
+ * you can use to render your UI.
1882
+ *
1883
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1884
+ *
1885
+ * @example
1886
+ * const { data, loading, error } = useGetDashboardActiveWorkspaceCountQuery({
1887
+ * variables: {
1888
+ * },
1889
+ * });
1890
+ */
1891
+ export declare function useGetDashboardActiveWorkspaceCountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardActiveWorkspaceCountQueryVariables>;
1892
+ export declare function useGetDashboardActiveWorkspaceCountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables, "empty" | "complete" | "streaming">;
1893
+ export declare function useGetDashboardActiveWorkspaceCountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>;
1894
+ export declare function useGetDashboardActiveWorkspaceCountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardActiveWorkspaceCountQuery | undefined, Types.GetDashboardActiveWorkspaceCountQueryVariables>;
1895
+ export type GetDashboardActiveWorkspaceCountQueryHookResult = ReturnType<typeof useGetDashboardActiveWorkspaceCountQuery>;
1896
+ export type GetDashboardActiveWorkspaceCountLazyQueryHookResult = ReturnType<typeof useGetDashboardActiveWorkspaceCountLazyQuery>;
1897
+ export type GetDashboardActiveWorkspaceCountSuspenseQueryHookResult = ReturnType<typeof useGetDashboardActiveWorkspaceCountSuspenseQuery>;
1898
+ export type GetDashboardActiveWorkspaceCountQueryResult = Apollo.QueryResult<Types.GetDashboardActiveWorkspaceCountQuery, Types.GetDashboardActiveWorkspaceCountQueryVariables>;
1899
+ export declare const GetDashboardUserCountDocument: Apollo.DocumentNode;
1900
+ /**
1901
+ * __useGetDashboardUserCountQuery__
1902
+ *
1903
+ * To run a query within a React component, call `useGetDashboardUserCountQuery` and pass it any options that fit your needs.
1904
+ * When your component renders, `useGetDashboardUserCountQuery` returns an object from Apollo Client that contains loading, error, and data properties
1905
+ * you can use to render your UI.
1906
+ *
1907
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1908
+ *
1909
+ * @example
1910
+ * const { data, loading, error } = useGetDashboardUserCountQuery({
1911
+ * variables: {
1912
+ * },
1913
+ * });
1914
+ */
1915
+ export declare function useGetDashboardUserCountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardUserCountQueryVariables>;
1916
+ export declare function useGetDashboardUserCountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables, "empty" | "complete" | "streaming">;
1917
+ export declare function useGetDashboardUserCountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>;
1918
+ export declare function useGetDashboardUserCountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardUserCountQuery | undefined, Types.GetDashboardUserCountQueryVariables>;
1919
+ export type GetDashboardUserCountQueryHookResult = ReturnType<typeof useGetDashboardUserCountQuery>;
1920
+ export type GetDashboardUserCountLazyQueryHookResult = ReturnType<typeof useGetDashboardUserCountLazyQuery>;
1921
+ export type GetDashboardUserCountSuspenseQueryHookResult = ReturnType<typeof useGetDashboardUserCountSuspenseQuery>;
1922
+ export type GetDashboardUserCountQueryResult = Apollo.QueryResult<Types.GetDashboardUserCountQuery, Types.GetDashboardUserCountQueryVariables>;
1923
+ export declare const GetDashboardSupportStatsDocument: Apollo.DocumentNode;
1924
+ /**
1925
+ * __useGetDashboardSupportStatsQuery__
1926
+ *
1927
+ * To run a query within a React component, call `useGetDashboardSupportStatsQuery` and pass it any options that fit your needs.
1928
+ * When your component renders, `useGetDashboardSupportStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1929
+ * you can use to render your UI.
1930
+ *
1931
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1932
+ *
1933
+ * @example
1934
+ * const { data, loading, error } = useGetDashboardSupportStatsQuery({
1935
+ * variables: {
1936
+ * },
1937
+ * });
1938
+ */
1939
+ export declare function useGetDashboardSupportStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardSupportStatsQueryVariables>;
1940
+ export declare function useGetDashboardSupportStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables, "empty" | "complete" | "streaming">;
1941
+ export declare function useGetDashboardSupportStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>;
1942
+ export declare function useGetDashboardSupportStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardSupportStatsQuery | undefined, Types.GetDashboardSupportStatsQueryVariables>;
1943
+ export type GetDashboardSupportStatsQueryHookResult = ReturnType<typeof useGetDashboardSupportStatsQuery>;
1944
+ export type GetDashboardSupportStatsLazyQueryHookResult = ReturnType<typeof useGetDashboardSupportStatsLazyQuery>;
1945
+ export type GetDashboardSupportStatsSuspenseQueryHookResult = ReturnType<typeof useGetDashboardSupportStatsSuspenseQuery>;
1946
+ export type GetDashboardSupportStatsQueryResult = Apollo.QueryResult<Types.GetDashboardSupportStatsQuery, Types.GetDashboardSupportStatsQueryVariables>;
1947
+ export declare const GetDashboardTenantsDocument: Apollo.DocumentNode;
1948
+ /**
1949
+ * __useGetDashboardTenantsQuery__
1950
+ *
1951
+ * To run a query within a React component, call `useGetDashboardTenantsQuery` and pass it any options that fit your needs.
1952
+ * When your component renders, `useGetDashboardTenantsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1953
+ * you can use to render your UI.
1954
+ *
1955
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1956
+ *
1957
+ * @example
1958
+ * const { data, loading, error } = useGetDashboardTenantsQuery({
1959
+ * variables: {
1960
+ * limit: // value for 'limit'
1961
+ * },
1962
+ * });
1963
+ */
1964
+ export declare function useGetDashboardTenantsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables, "empty" | "complete" | "streaming", Types.GetDashboardTenantsQueryVariables>;
1965
+ export declare function useGetDashboardTenantsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables, "empty" | "complete" | "streaming">;
1966
+ export declare function useGetDashboardTenantsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>;
1967
+ export declare function useGetDashboardTenantsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDashboardTenantsQuery | undefined, Types.GetDashboardTenantsQueryVariables>;
1968
+ export type GetDashboardTenantsQueryHookResult = ReturnType<typeof useGetDashboardTenantsQuery>;
1969
+ export type GetDashboardTenantsLazyQueryHookResult = ReturnType<typeof useGetDashboardTenantsLazyQuery>;
1970
+ export type GetDashboardTenantsSuspenseQueryHookResult = ReturnType<typeof useGetDashboardTenantsSuspenseQuery>;
1971
+ export type GetDashboardTenantsQueryResult = Apollo.QueryResult<Types.GetDashboardTenantsQuery, Types.GetDashboardTenantsQueryVariables>;
1972
+ export declare const GetRecentActivityLogsDocument: Apollo.DocumentNode;
1973
+ /**
1974
+ * __useGetRecentActivityLogsQuery__
1975
+ *
1976
+ * To run a query within a React component, call `useGetRecentActivityLogsQuery` and pass it any options that fit your needs.
1977
+ * When your component renders, `useGetRecentActivityLogsQuery` returns an object from Apollo Client that contains loading, error, and data properties
1978
+ * you can use to render your UI.
1979
+ *
1980
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1981
+ *
1982
+ * @example
1983
+ * const { data, loading, error } = useGetRecentActivityLogsQuery({
1984
+ * variables: {
1985
+ * limit: // value for 'limit'
1986
+ * },
1987
+ * });
1988
+ */
1989
+ export declare function useGetRecentActivityLogsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables, "empty" | "complete" | "streaming", Types.GetRecentActivityLogsQueryVariables>;
1990
+ export declare function useGetRecentActivityLogsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables, "empty" | "complete" | "streaming">;
1991
+ export declare function useGetRecentActivityLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>;
1992
+ export declare function useGetRecentActivityLogsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRecentActivityLogsQuery | undefined, Types.GetRecentActivityLogsQueryVariables>;
1993
+ export type GetRecentActivityLogsQueryHookResult = ReturnType<typeof useGetRecentActivityLogsQuery>;
1994
+ export type GetRecentActivityLogsLazyQueryHookResult = ReturnType<typeof useGetRecentActivityLogsLazyQuery>;
1995
+ export type GetRecentActivityLogsSuspenseQueryHookResult = ReturnType<typeof useGetRecentActivityLogsSuspenseQuery>;
1996
+ export type GetRecentActivityLogsQueryResult = Apollo.QueryResult<Types.GetRecentActivityLogsQuery, Types.GetRecentActivityLogsQueryVariables>;
1997
+ export declare const ListFeatureFlagsDocument: Apollo.DocumentNode;
1998
+ /**
1999
+ * __useListFeatureFlagsQuery__
2000
+ *
2001
+ * To run a query within a React component, call `useListFeatureFlagsQuery` and pass it any options that fit your needs.
2002
+ * When your component renders, `useListFeatureFlagsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2003
+ * you can use to render your UI.
2004
+ *
2005
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2006
+ *
2007
+ * @example
2008
+ * const { data, loading, error } = useListFeatureFlagsQuery({
2009
+ * variables: {
2010
+ * filter: // value for 'filter'
2011
+ * limit: // value for 'limit'
2012
+ * offset: // value for 'offset'
2013
+ * },
2014
+ * });
2015
+ */
2016
+ export declare function useListFeatureFlagsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables, "empty" | "complete" | "streaming", Types.ListFeatureFlagsQueryVariables>;
2017
+ export declare function useListFeatureFlagsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables, "empty" | "complete" | "streaming">;
2018
+ export declare function useListFeatureFlagsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>;
2019
+ export declare function useListFeatureFlagsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListFeatureFlagsQuery | undefined, Types.ListFeatureFlagsQueryVariables>;
2020
+ export type ListFeatureFlagsQueryHookResult = ReturnType<typeof useListFeatureFlagsQuery>;
2021
+ export type ListFeatureFlagsLazyQueryHookResult = ReturnType<typeof useListFeatureFlagsLazyQuery>;
2022
+ export type ListFeatureFlagsSuspenseQueryHookResult = ReturnType<typeof useListFeatureFlagsSuspenseQuery>;
2023
+ export type ListFeatureFlagsQueryResult = Apollo.QueryResult<Types.ListFeatureFlagsQuery, Types.ListFeatureFlagsQueryVariables>;
2024
+ export declare const GetFeatureFlagDocument: Apollo.DocumentNode;
2025
+ /**
2026
+ * __useGetFeatureFlagQuery__
2027
+ *
2028
+ * To run a query within a React component, call `useGetFeatureFlagQuery` and pass it any options that fit your needs.
2029
+ * When your component renders, `useGetFeatureFlagQuery` returns an object from Apollo Client that contains loading, error, and data properties
2030
+ * you can use to render your UI.
2031
+ *
2032
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2033
+ *
2034
+ * @example
2035
+ * const { data, loading, error } = useGetFeatureFlagQuery({
2036
+ * variables: {
2037
+ * id: // value for 'id'
2038
+ * },
2039
+ * });
2040
+ */
2041
+ export declare function useGetFeatureFlagQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables> & ({
2042
+ variables: Types.GetFeatureFlagQueryVariables;
2043
+ skip?: boolean;
2044
+ } | {
2045
+ skip: boolean;
2046
+ })): ApolloReactHooks.useQuery.Result<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables, "empty" | "complete" | "streaming", Types.GetFeatureFlagQueryVariables>;
2047
+ export declare function useGetFeatureFlagLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables, "empty" | "complete" | "streaming">;
2048
+ export declare function useGetFeatureFlagSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables>;
2049
+ export declare function useGetFeatureFlagSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetFeatureFlagQuery | undefined, Types.GetFeatureFlagQueryVariables>;
2050
+ export type GetFeatureFlagQueryHookResult = ReturnType<typeof useGetFeatureFlagQuery>;
2051
+ export type GetFeatureFlagLazyQueryHookResult = ReturnType<typeof useGetFeatureFlagLazyQuery>;
2052
+ export type GetFeatureFlagSuspenseQueryHookResult = ReturnType<typeof useGetFeatureFlagSuspenseQuery>;
2053
+ export type GetFeatureFlagQueryResult = Apollo.QueryResult<Types.GetFeatureFlagQuery, Types.GetFeatureFlagQueryVariables>;
2054
+ export declare const CreateFeatureFlagDocument: Apollo.DocumentNode;
2055
+ export type CreateFeatureFlagMutationFn = Apollo.MutationFunction<Types.CreateFeatureFlagMutation, Types.CreateFeatureFlagMutationVariables>;
2056
+ /**
2057
+ * __useCreateFeatureFlagMutation__
2058
+ *
2059
+ * To run a mutation, you first call `useCreateFeatureFlagMutation` within a React component and pass it any options that fit your needs.
2060
+ * When your component renders, `useCreateFeatureFlagMutation` returns a tuple that includes:
2061
+ * - A mutate function that you can call at any time to execute the mutation
2062
+ * - An object with fields that represent the current status of the mutation's execution
2063
+ *
2064
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2065
+ *
2066
+ * @example
2067
+ * const [createFeatureFlagMutation, { data, loading, error }] = useCreateFeatureFlagMutation({
2068
+ * variables: {
2069
+ * input: // value for 'input'
2070
+ * },
2071
+ * });
2072
+ */
2073
+ export declare function useCreateFeatureFlagMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateFeatureFlagMutation, Types.CreateFeatureFlagMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateFeatureFlagMutation, any, Apollo.ApolloCache>;
2074
+ export type CreateFeatureFlagMutationHookResult = ReturnType<typeof useCreateFeatureFlagMutation>;
2075
+ export type CreateFeatureFlagMutationResult = Apollo.MutationResult<Types.CreateFeatureFlagMutation>;
2076
+ export type CreateFeatureFlagMutationOptions = Apollo.BaseMutationOptions<Types.CreateFeatureFlagMutation, Types.CreateFeatureFlagMutationVariables>;
2077
+ export declare const UpdateFeatureFlagDocument: Apollo.DocumentNode;
2078
+ export type UpdateFeatureFlagMutationFn = Apollo.MutationFunction<Types.UpdateFeatureFlagMutation, Types.UpdateFeatureFlagMutationVariables>;
2079
+ /**
2080
+ * __useUpdateFeatureFlagMutation__
2081
+ *
2082
+ * To run a mutation, you first call `useUpdateFeatureFlagMutation` within a React component and pass it any options that fit your needs.
2083
+ * When your component renders, `useUpdateFeatureFlagMutation` returns a tuple that includes:
2084
+ * - A mutate function that you can call at any time to execute the mutation
2085
+ * - An object with fields that represent the current status of the mutation's execution
2086
+ *
2087
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2088
+ *
2089
+ * @example
2090
+ * const [updateFeatureFlagMutation, { data, loading, error }] = useUpdateFeatureFlagMutation({
2091
+ * variables: {
2092
+ * id: // value for 'id'
2093
+ * input: // value for 'input'
2094
+ * },
2095
+ * });
2096
+ */
2097
+ export declare function useUpdateFeatureFlagMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateFeatureFlagMutation, Types.UpdateFeatureFlagMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateFeatureFlagMutation, any, Apollo.ApolloCache>;
2098
+ export type UpdateFeatureFlagMutationHookResult = ReturnType<typeof useUpdateFeatureFlagMutation>;
2099
+ export type UpdateFeatureFlagMutationResult = Apollo.MutationResult<Types.UpdateFeatureFlagMutation>;
2100
+ export type UpdateFeatureFlagMutationOptions = Apollo.BaseMutationOptions<Types.UpdateFeatureFlagMutation, Types.UpdateFeatureFlagMutationVariables>;
2101
+ export declare const DeleteFeatureFlagDocument: Apollo.DocumentNode;
2102
+ export type DeleteFeatureFlagMutationFn = Apollo.MutationFunction<Types.DeleteFeatureFlagMutation, Types.DeleteFeatureFlagMutationVariables>;
2103
+ /**
2104
+ * __useDeleteFeatureFlagMutation__
2105
+ *
2106
+ * To run a mutation, you first call `useDeleteFeatureFlagMutation` within a React component and pass it any options that fit your needs.
2107
+ * When your component renders, `useDeleteFeatureFlagMutation` returns a tuple that includes:
2108
+ * - A mutate function that you can call at any time to execute the mutation
2109
+ * - An object with fields that represent the current status of the mutation's execution
2110
+ *
2111
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2112
+ *
2113
+ * @example
2114
+ * const [deleteFeatureFlagMutation, { data, loading, error }] = useDeleteFeatureFlagMutation({
2115
+ * variables: {
2116
+ * id: // value for 'id'
2117
+ * },
2118
+ * });
2119
+ */
2120
+ export declare function useDeleteFeatureFlagMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteFeatureFlagMutation, Types.DeleteFeatureFlagMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteFeatureFlagMutation, any, Apollo.ApolloCache>;
2121
+ export type DeleteFeatureFlagMutationHookResult = ReturnType<typeof useDeleteFeatureFlagMutation>;
2122
+ export type DeleteFeatureFlagMutationResult = Apollo.MutationResult<Types.DeleteFeatureFlagMutation>;
2123
+ export type DeleteFeatureFlagMutationOptions = Apollo.BaseMutationOptions<Types.DeleteFeatureFlagMutation, Types.DeleteFeatureFlagMutationVariables>;
2124
+ export declare const ListOrganizationsDocument: Apollo.DocumentNode;
2125
+ /**
2126
+ * __useListOrganizationsQuery__
2127
+ *
2128
+ * To run a query within a React component, call `useListOrganizationsQuery` and pass it any options that fit your needs.
2129
+ * When your component renders, `useListOrganizationsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2130
+ * you can use to render your UI.
2131
+ *
2132
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2133
+ *
2134
+ * @example
2135
+ * const { data, loading, error } = useListOrganizationsQuery({
2136
+ * variables: {
2137
+ * filter: // value for 'filter'
2138
+ * limit: // value for 'limit'
2139
+ * offset: // value for 'offset'
2140
+ * },
2141
+ * });
2142
+ */
2143
+ export declare function useListOrganizationsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables, "empty" | "complete" | "streaming", Types.ListOrganizationsQueryVariables>;
2144
+ export declare function useListOrganizationsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables, "empty" | "complete" | "streaming">;
2145
+ export declare function useListOrganizationsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>;
2146
+ export declare function useListOrganizationsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListOrganizationsQuery | undefined, Types.ListOrganizationsQueryVariables>;
2147
+ export type ListOrganizationsQueryHookResult = ReturnType<typeof useListOrganizationsQuery>;
2148
+ export type ListOrganizationsLazyQueryHookResult = ReturnType<typeof useListOrganizationsLazyQuery>;
2149
+ export type ListOrganizationsSuspenseQueryHookResult = ReturnType<typeof useListOrganizationsSuspenseQuery>;
2150
+ export type ListOrganizationsQueryResult = Apollo.QueryResult<Types.ListOrganizationsQuery, Types.ListOrganizationsQueryVariables>;
2151
+ export declare const UpdateOrganizationDocument: Apollo.DocumentNode;
2152
+ export type UpdateOrganizationMutationFn = Apollo.MutationFunction<Types.UpdateOrganizationMutation, Types.UpdateOrganizationMutationVariables>;
2153
+ /**
2154
+ * __useUpdateOrganizationMutation__
2155
+ *
2156
+ * To run a mutation, you first call `useUpdateOrganizationMutation` within a React component and pass it any options that fit your needs.
2157
+ * When your component renders, `useUpdateOrganizationMutation` returns a tuple that includes:
2158
+ * - A mutate function that you can call at any time to execute the mutation
2159
+ * - An object with fields that represent the current status of the mutation's execution
2160
+ *
2161
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2162
+ *
2163
+ * @example
2164
+ * const [updateOrganizationMutation, { data, loading, error }] = useUpdateOrganizationMutation({
2165
+ * variables: {
2166
+ * id: // value for 'id'
2167
+ * input: // value for 'input'
2168
+ * },
2169
+ * });
2170
+ */
2171
+ export declare function useUpdateOrganizationMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateOrganizationMutation, Types.UpdateOrganizationMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateOrganizationMutation, any, Apollo.ApolloCache>;
2172
+ export type UpdateOrganizationMutationHookResult = ReturnType<typeof useUpdateOrganizationMutation>;
2173
+ export type UpdateOrganizationMutationResult = Apollo.MutationResult<Types.UpdateOrganizationMutation>;
2174
+ export type UpdateOrganizationMutationOptions = Apollo.BaseMutationOptions<Types.UpdateOrganizationMutation, Types.UpdateOrganizationMutationVariables>;
2175
+ export declare const ListPlatformProductsDocument: Apollo.DocumentNode;
2176
+ /**
2177
+ * __useListPlatformProductsQuery__
2178
+ *
2179
+ * To run a query within a React component, call `useListPlatformProductsQuery` and pass it any options that fit your needs.
2180
+ * When your component renders, `useListPlatformProductsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2181
+ * you can use to render your UI.
2182
+ *
2183
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2184
+ *
2185
+ * @example
2186
+ * const { data, loading, error } = useListPlatformProductsQuery({
2187
+ * variables: {
2188
+ * filter: // value for 'filter'
2189
+ * limit: // value for 'limit'
2190
+ * offset: // value for 'offset'
2191
+ * },
2192
+ * });
2193
+ */
2194
+ export declare function useListPlatformProductsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables, "empty" | "complete" | "streaming", Types.ListPlatformProductsQueryVariables>;
2195
+ export declare function useListPlatformProductsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables, "empty" | "complete" | "streaming">;
2196
+ export declare function useListPlatformProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>;
2197
+ export declare function useListPlatformProductsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListPlatformProductsQuery | undefined, Types.ListPlatformProductsQueryVariables>;
2198
+ export type ListPlatformProductsQueryHookResult = ReturnType<typeof useListPlatformProductsQuery>;
2199
+ export type ListPlatformProductsLazyQueryHookResult = ReturnType<typeof useListPlatformProductsLazyQuery>;
2200
+ export type ListPlatformProductsSuspenseQueryHookResult = ReturnType<typeof useListPlatformProductsSuspenseQuery>;
2201
+ export type ListPlatformProductsQueryResult = Apollo.QueryResult<Types.ListPlatformProductsQuery, Types.ListPlatformProductsQueryVariables>;
2202
+ export declare const GetPlatformProductDocument: Apollo.DocumentNode;
2203
+ /**
2204
+ * __useGetPlatformProductQuery__
2205
+ *
2206
+ * To run a query within a React component, call `useGetPlatformProductQuery` and pass it any options that fit your needs.
2207
+ * When your component renders, `useGetPlatformProductQuery` returns an object from Apollo Client that contains loading, error, and data properties
2208
+ * you can use to render your UI.
2209
+ *
2210
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2211
+ *
2212
+ * @example
2213
+ * const { data, loading, error } = useGetPlatformProductQuery({
2214
+ * variables: {
2215
+ * id: // value for 'id'
2216
+ * },
2217
+ * });
2218
+ */
2219
+ export declare function useGetPlatformProductQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables> & ({
2220
+ variables: Types.GetPlatformProductQueryVariables;
2221
+ skip?: boolean;
2222
+ } | {
2223
+ skip: boolean;
2224
+ })): ApolloReactHooks.useQuery.Result<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables, "empty" | "complete" | "streaming", Types.GetPlatformProductQueryVariables>;
2225
+ export declare function useGetPlatformProductLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables, "empty" | "complete" | "streaming">;
2226
+ export declare function useGetPlatformProductSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables>;
2227
+ export declare function useGetPlatformProductSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductQuery | undefined, Types.GetPlatformProductQueryVariables>;
2228
+ export type GetPlatformProductQueryHookResult = ReturnType<typeof useGetPlatformProductQuery>;
2229
+ export type GetPlatformProductLazyQueryHookResult = ReturnType<typeof useGetPlatformProductLazyQuery>;
2230
+ export type GetPlatformProductSuspenseQueryHookResult = ReturnType<typeof useGetPlatformProductSuspenseQuery>;
2231
+ export type GetPlatformProductQueryResult = Apollo.QueryResult<Types.GetPlatformProductQuery, Types.GetPlatformProductQueryVariables>;
2232
+ export declare const GetPlatformProductBySlugDocument: Apollo.DocumentNode;
2233
+ /**
2234
+ * __useGetPlatformProductBySlugQuery__
2235
+ *
2236
+ * To run a query within a React component, call `useGetPlatformProductBySlugQuery` and pass it any options that fit your needs.
2237
+ * When your component renders, `useGetPlatformProductBySlugQuery` returns an object from Apollo Client that contains loading, error, and data properties
2238
+ * you can use to render your UI.
2239
+ *
2240
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2241
+ *
2242
+ * @example
2243
+ * const { data, loading, error } = useGetPlatformProductBySlugQuery({
2244
+ * variables: {
2245
+ * slug: // value for 'slug'
2246
+ * },
2247
+ * });
2248
+ */
2249
+ export declare function useGetPlatformProductBySlugQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables> & ({
2250
+ variables: Types.GetPlatformProductBySlugQueryVariables;
2251
+ skip?: boolean;
2252
+ } | {
2253
+ skip: boolean;
2254
+ })): ApolloReactHooks.useQuery.Result<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables, "empty" | "complete" | "streaming", Types.GetPlatformProductBySlugQueryVariables>;
2255
+ export declare function useGetPlatformProductBySlugLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables, "empty" | "complete" | "streaming">;
2256
+ export declare function useGetPlatformProductBySlugSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables>;
2257
+ export declare function useGetPlatformProductBySlugSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductBySlugQuery | undefined, Types.GetPlatformProductBySlugQueryVariables>;
2258
+ export type GetPlatformProductBySlugQueryHookResult = ReturnType<typeof useGetPlatformProductBySlugQuery>;
2259
+ export type GetPlatformProductBySlugLazyQueryHookResult = ReturnType<typeof useGetPlatformProductBySlugLazyQuery>;
2260
+ export type GetPlatformProductBySlugSuspenseQueryHookResult = ReturnType<typeof useGetPlatformProductBySlugSuspenseQuery>;
2261
+ export type GetPlatformProductBySlugQueryResult = Apollo.QueryResult<Types.GetPlatformProductBySlugQuery, Types.GetPlatformProductBySlugQueryVariables>;
2262
+ export declare const GetPlatformProductStatsDocument: Apollo.DocumentNode;
2263
+ /**
2264
+ * __useGetPlatformProductStatsQuery__
2265
+ *
2266
+ * To run a query within a React component, call `useGetPlatformProductStatsQuery` and pass it any options that fit your needs.
2267
+ * When your component renders, `useGetPlatformProductStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2268
+ * you can use to render your UI.
2269
+ *
2270
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2271
+ *
2272
+ * @example
2273
+ * const { data, loading, error } = useGetPlatformProductStatsQuery({
2274
+ * variables: {
2275
+ * },
2276
+ * });
2277
+ */
2278
+ export declare function useGetPlatformProductStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables, "empty" | "complete" | "streaming", Types.GetPlatformProductStatsQueryVariables>;
2279
+ export declare function useGetPlatformProductStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables, "empty" | "complete" | "streaming">;
2280
+ export declare function useGetPlatformProductStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>;
2281
+ export declare function useGetPlatformProductStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlatformProductStatsQuery | undefined, Types.GetPlatformProductStatsQueryVariables>;
2282
+ export type GetPlatformProductStatsQueryHookResult = ReturnType<typeof useGetPlatformProductStatsQuery>;
2283
+ export type GetPlatformProductStatsLazyQueryHookResult = ReturnType<typeof useGetPlatformProductStatsLazyQuery>;
2284
+ export type GetPlatformProductStatsSuspenseQueryHookResult = ReturnType<typeof useGetPlatformProductStatsSuspenseQuery>;
2285
+ export type GetPlatformProductStatsQueryResult = Apollo.QueryResult<Types.GetPlatformProductStatsQuery, Types.GetPlatformProductStatsQueryVariables>;
2286
+ export declare const ListRolesDocument: Apollo.DocumentNode;
2287
+ /**
2288
+ * __useListRolesQuery__
2289
+ *
2290
+ * To run a query within a React component, call `useListRolesQuery` and pass it any options that fit your needs.
2291
+ * When your component renders, `useListRolesQuery` returns an object from Apollo Client that contains loading, error, and data properties
2292
+ * you can use to render your UI.
2293
+ *
2294
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2295
+ *
2296
+ * @example
2297
+ * const { data, loading, error } = useListRolesQuery({
2298
+ * variables: {
2299
+ * scopeId: // value for 'scopeId'
2300
+ * },
2301
+ * });
2302
+ */
2303
+ export declare function useListRolesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ListRolesQuery, Types.ListRolesQueryVariables> & ({
2304
+ variables: Types.ListRolesQueryVariables;
2305
+ skip?: boolean;
2306
+ } | {
2307
+ skip: boolean;
2308
+ })): ApolloReactHooks.useQuery.Result<Types.ListRolesQuery, Types.ListRolesQueryVariables, "empty" | "complete" | "streaming", Types.ListRolesQueryVariables>;
2309
+ export declare function useListRolesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListRolesQuery, Types.ListRolesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListRolesQuery, Types.ListRolesQueryVariables, "empty" | "complete" | "streaming">;
2310
+ export declare function useListRolesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRolesQuery, Types.ListRolesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRolesQuery, Types.ListRolesQueryVariables>;
2311
+ export declare function useListRolesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListRolesQuery, Types.ListRolesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListRolesQuery | undefined, Types.ListRolesQueryVariables>;
2312
+ export type ListRolesQueryHookResult = ReturnType<typeof useListRolesQuery>;
2313
+ export type ListRolesLazyQueryHookResult = ReturnType<typeof useListRolesLazyQuery>;
2314
+ export type ListRolesSuspenseQueryHookResult = ReturnType<typeof useListRolesSuspenseQuery>;
2315
+ export type ListRolesQueryResult = Apollo.QueryResult<Types.ListRolesQuery, Types.ListRolesQueryVariables>;
2316
+ export declare const GetResourceTypesDocument: Apollo.DocumentNode;
2317
+ /**
2318
+ * __useGetResourceTypesQuery__
2319
+ *
2320
+ * To run a query within a React component, call `useGetResourceTypesQuery` and pass it any options that fit your needs.
2321
+ * When your component renders, `useGetResourceTypesQuery` returns an object from Apollo Client that contains loading, error, and data properties
2322
+ * you can use to render your UI.
2323
+ *
2324
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2325
+ *
2326
+ * @example
2327
+ * const { data, loading, error } = useGetResourceTypesQuery({
2328
+ * variables: {
2329
+ * },
2330
+ * });
2331
+ */
2332
+ export declare function useGetResourceTypesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables, "empty" | "complete" | "streaming", Types.GetResourceTypesQueryVariables>;
2333
+ export declare function useGetResourceTypesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables, "empty" | "complete" | "streaming">;
2334
+ export declare function useGetResourceTypesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>;
2335
+ export declare function useGetResourceTypesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetResourceTypesQuery | undefined, Types.GetResourceTypesQueryVariables>;
2336
+ export type GetResourceTypesQueryHookResult = ReturnType<typeof useGetResourceTypesQuery>;
2337
+ export type GetResourceTypesLazyQueryHookResult = ReturnType<typeof useGetResourceTypesLazyQuery>;
2338
+ export type GetResourceTypesSuspenseQueryHookResult = ReturnType<typeof useGetResourceTypesSuspenseQuery>;
2339
+ export type GetResourceTypesQueryResult = Apollo.QueryResult<Types.GetResourceTypesQuery, Types.GetResourceTypesQueryVariables>;
2340
+ export declare const CreateRoleDocument: Apollo.DocumentNode;
2341
+ export type CreateRoleMutationFn = Apollo.MutationFunction<Types.CreateRoleMutation, Types.CreateRoleMutationVariables>;
2342
+ /**
2343
+ * __useCreateRoleMutation__
2344
+ *
2345
+ * To run a mutation, you first call `useCreateRoleMutation` within a React component and pass it any options that fit your needs.
2346
+ * When your component renders, `useCreateRoleMutation` returns a tuple that includes:
2347
+ * - A mutate function that you can call at any time to execute the mutation
2348
+ * - An object with fields that represent the current status of the mutation's execution
2349
+ *
2350
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2351
+ *
2352
+ * @example
2353
+ * const [createRoleMutation, { data, loading, error }] = useCreateRoleMutation({
2354
+ * variables: {
2355
+ * input: // value for 'input'
2356
+ * },
2357
+ * });
2358
+ */
2359
+ export declare function useCreateRoleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRoleMutation, Types.CreateRoleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CreateRoleMutation, any, Apollo.ApolloCache>;
2360
+ export type CreateRoleMutationHookResult = ReturnType<typeof useCreateRoleMutation>;
2361
+ export type CreateRoleMutationResult = Apollo.MutationResult<Types.CreateRoleMutation>;
2362
+ export type CreateRoleMutationOptions = Apollo.BaseMutationOptions<Types.CreateRoleMutation, Types.CreateRoleMutationVariables>;
2363
+ export declare const UpdateRoleDocument: Apollo.DocumentNode;
2364
+ export type UpdateRoleMutationFn = Apollo.MutationFunction<Types.UpdateRoleMutation, Types.UpdateRoleMutationVariables>;
2365
+ /**
2366
+ * __useUpdateRoleMutation__
2367
+ *
2368
+ * To run a mutation, you first call `useUpdateRoleMutation` within a React component and pass it any options that fit your needs.
2369
+ * When your component renders, `useUpdateRoleMutation` returns a tuple that includes:
2370
+ * - A mutate function that you can call at any time to execute the mutation
2371
+ * - An object with fields that represent the current status of the mutation's execution
2372
+ *
2373
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2374
+ *
2375
+ * @example
2376
+ * const [updateRoleMutation, { data, loading, error }] = useUpdateRoleMutation({
2377
+ * variables: {
2378
+ * id: // value for 'id'
2379
+ * input: // value for 'input'
2380
+ * },
2381
+ * });
2382
+ */
2383
+ export declare function useUpdateRoleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateRoleMutation, Types.UpdateRoleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateRoleMutation, any, Apollo.ApolloCache>;
2384
+ export type UpdateRoleMutationHookResult = ReturnType<typeof useUpdateRoleMutation>;
2385
+ export type UpdateRoleMutationResult = Apollo.MutationResult<Types.UpdateRoleMutation>;
2386
+ export type UpdateRoleMutationOptions = Apollo.BaseMutationOptions<Types.UpdateRoleMutation, Types.UpdateRoleMutationVariables>;
2387
+ export declare const DeleteRoleDocument: Apollo.DocumentNode;
2388
+ export type DeleteRoleMutationFn = Apollo.MutationFunction<Types.DeleteRoleMutation, Types.DeleteRoleMutationVariables>;
2389
+ /**
2390
+ * __useDeleteRoleMutation__
2391
+ *
2392
+ * To run a mutation, you first call `useDeleteRoleMutation` within a React component and pass it any options that fit your needs.
2393
+ * When your component renders, `useDeleteRoleMutation` returns a tuple that includes:
2394
+ * - A mutate function that you can call at any time to execute the mutation
2395
+ * - An object with fields that represent the current status of the mutation's execution
2396
+ *
2397
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2398
+ *
2399
+ * @example
2400
+ * const [deleteRoleMutation, { data, loading, error }] = useDeleteRoleMutation({
2401
+ * variables: {
2402
+ * id: // value for 'id'
2403
+ * reassignToRoleId: // value for 'reassignToRoleId'
2404
+ * },
2405
+ * });
2406
+ */
2407
+ export declare function useDeleteRoleMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteRoleMutation, Types.DeleteRoleMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.DeleteRoleMutation, any, Apollo.ApolloCache>;
2408
+ export type DeleteRoleMutationHookResult = ReturnType<typeof useDeleteRoleMutation>;
2409
+ export type DeleteRoleMutationResult = Apollo.MutationResult<Types.DeleteRoleMutation>;
2410
+ export type DeleteRoleMutationOptions = Apollo.BaseMutationOptions<Types.DeleteRoleMutation, Types.DeleteRoleMutationVariables>;
2411
+ export declare const ListSupportTicketsDocument: Apollo.DocumentNode;
2412
+ /**
2413
+ * __useListSupportTicketsQuery__
2414
+ *
2415
+ * To run a query within a React component, call `useListSupportTicketsQuery` and pass it any options that fit your needs.
2416
+ * When your component renders, `useListSupportTicketsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2417
+ * you can use to render your UI.
2418
+ *
2419
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2420
+ *
2421
+ * @example
2422
+ * const { data, loading, error } = useListSupportTicketsQuery({
2423
+ * variables: {
2424
+ * filter: // value for 'filter'
2425
+ * limit: // value for 'limit'
2426
+ * offset: // value for 'offset'
2427
+ * },
2428
+ * });
2429
+ */
2430
+ export declare function useListSupportTicketsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables, "empty" | "complete" | "streaming", Types.ListSupportTicketsQueryVariables>;
2431
+ export declare function useListSupportTicketsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables, "empty" | "complete" | "streaming">;
2432
+ export declare function useListSupportTicketsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>;
2433
+ export declare function useListSupportTicketsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListSupportTicketsQuery | undefined, Types.ListSupportTicketsQueryVariables>;
2434
+ export type ListSupportTicketsQueryHookResult = ReturnType<typeof useListSupportTicketsQuery>;
2435
+ export type ListSupportTicketsLazyQueryHookResult = ReturnType<typeof useListSupportTicketsLazyQuery>;
2436
+ export type ListSupportTicketsSuspenseQueryHookResult = ReturnType<typeof useListSupportTicketsSuspenseQuery>;
2437
+ export type ListSupportTicketsQueryResult = Apollo.QueryResult<Types.ListSupportTicketsQuery, Types.ListSupportTicketsQueryVariables>;
2438
+ export declare const GetSupportTicketDocument: Apollo.DocumentNode;
2439
+ /**
2440
+ * __useGetSupportTicketQuery__
2441
+ *
2442
+ * To run a query within a React component, call `useGetSupportTicketQuery` and pass it any options that fit your needs.
2443
+ * When your component renders, `useGetSupportTicketQuery` returns an object from Apollo Client that contains loading, error, and data properties
2444
+ * you can use to render your UI.
2445
+ *
2446
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2447
+ *
2448
+ * @example
2449
+ * const { data, loading, error } = useGetSupportTicketQuery({
2450
+ * variables: {
2451
+ * id: // value for 'id'
2452
+ * },
2453
+ * });
2454
+ */
2455
+ export declare function useGetSupportTicketQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables> & ({
2456
+ variables: Types.GetSupportTicketQueryVariables;
2457
+ skip?: boolean;
2458
+ } | {
2459
+ skip: boolean;
2460
+ })): ApolloReactHooks.useQuery.Result<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables, "empty" | "complete" | "streaming", Types.GetSupportTicketQueryVariables>;
2461
+ export declare function useGetSupportTicketLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables, "empty" | "complete" | "streaming">;
2462
+ export declare function useGetSupportTicketSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables>;
2463
+ export declare function useGetSupportTicketSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSupportTicketQuery | undefined, Types.GetSupportTicketQueryVariables>;
2464
+ export type GetSupportTicketQueryHookResult = ReturnType<typeof useGetSupportTicketQuery>;
2465
+ export type GetSupportTicketLazyQueryHookResult = ReturnType<typeof useGetSupportTicketLazyQuery>;
2466
+ export type GetSupportTicketSuspenseQueryHookResult = ReturnType<typeof useGetSupportTicketSuspenseQuery>;
2467
+ export type GetSupportTicketQueryResult = Apollo.QueryResult<Types.GetSupportTicketQuery, Types.GetSupportTicketQueryVariables>;
2468
+ export declare const GetSupportStatsDocument: Apollo.DocumentNode;
2469
+ /**
2470
+ * __useGetSupportStatsQuery__
2471
+ *
2472
+ * To run a query within a React component, call `useGetSupportStatsQuery` and pass it any options that fit your needs.
2473
+ * When your component renders, `useGetSupportStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2474
+ * you can use to render your UI.
2475
+ *
2476
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2477
+ *
2478
+ * @example
2479
+ * const { data, loading, error } = useGetSupportStatsQuery({
2480
+ * variables: {
2481
+ * filter: // value for 'filter'
2482
+ * },
2483
+ * });
2484
+ */
2485
+ export declare function useGetSupportStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables, "empty" | "complete" | "streaming", Types.GetSupportStatsQueryVariables>;
2486
+ export declare function useGetSupportStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables, "empty" | "complete" | "streaming">;
2487
+ export declare function useGetSupportStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>;
2488
+ export declare function useGetSupportStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSupportStatsQuery | undefined, Types.GetSupportStatsQueryVariables>;
2489
+ export type GetSupportStatsQueryHookResult = ReturnType<typeof useGetSupportStatsQuery>;
2490
+ export type GetSupportStatsLazyQueryHookResult = ReturnType<typeof useGetSupportStatsLazyQuery>;
2491
+ export type GetSupportStatsSuspenseQueryHookResult = ReturnType<typeof useGetSupportStatsSuspenseQuery>;
2492
+ export type GetSupportStatsQueryResult = Apollo.QueryResult<Types.GetSupportStatsQuery, Types.GetSupportStatsQueryVariables>;
2493
+ export declare const SearchSupportTicketsDocument: Apollo.DocumentNode;
2494
+ /**
2495
+ * __useSearchSupportTicketsQuery__
2496
+ *
2497
+ * To run a query within a React component, call `useSearchSupportTicketsQuery` and pass it any options that fit your needs.
2498
+ * When your component renders, `useSearchSupportTicketsQuery` returns an object from Apollo Client that contains loading, error, and data properties
2499
+ * you can use to render your UI.
2500
+ *
2501
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2502
+ *
2503
+ * @example
2504
+ * const { data, loading, error } = useSearchSupportTicketsQuery({
2505
+ * variables: {
2506
+ * query: // value for 'query'
2507
+ * limit: // value for 'limit'
2508
+ * },
2509
+ * });
2510
+ */
2511
+ export declare function useSearchSupportTicketsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables> & ({
2512
+ variables: Types.SearchSupportTicketsQueryVariables;
2513
+ skip?: boolean;
2514
+ } | {
2515
+ skip: boolean;
2516
+ })): ApolloReactHooks.useQuery.Result<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables, "empty" | "complete" | "streaming", Types.SearchSupportTicketsQueryVariables>;
2517
+ export declare function useSearchSupportTicketsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables, "empty" | "complete" | "streaming">;
2518
+ export declare function useSearchSupportTicketsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables>;
2519
+ export declare function useSearchSupportTicketsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.SearchSupportTicketsQuery | undefined, Types.SearchSupportTicketsQueryVariables>;
2520
+ export type SearchSupportTicketsQueryHookResult = ReturnType<typeof useSearchSupportTicketsQuery>;
2521
+ export type SearchSupportTicketsLazyQueryHookResult = ReturnType<typeof useSearchSupportTicketsLazyQuery>;
2522
+ export type SearchSupportTicketsSuspenseQueryHookResult = ReturnType<typeof useSearchSupportTicketsSuspenseQuery>;
2523
+ export type SearchSupportTicketsQueryResult = Apollo.QueryResult<Types.SearchSupportTicketsQuery, Types.SearchSupportTicketsQueryVariables>;
2524
+ export declare const AssignSupportTicketDocument: Apollo.DocumentNode;
2525
+ export type AssignSupportTicketMutationFn = Apollo.MutationFunction<Types.AssignSupportTicketMutation, Types.AssignSupportTicketMutationVariables>;
2526
+ /**
2527
+ * __useAssignSupportTicketMutation__
2528
+ *
2529
+ * To run a mutation, you first call `useAssignSupportTicketMutation` within a React component and pass it any options that fit your needs.
2530
+ * When your component renders, `useAssignSupportTicketMutation` returns a tuple that includes:
2531
+ * - A mutate function that you can call at any time to execute the mutation
2532
+ * - An object with fields that represent the current status of the mutation's execution
2533
+ *
2534
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2535
+ *
2536
+ * @example
2537
+ * const [assignSupportTicketMutation, { data, loading, error }] = useAssignSupportTicketMutation({
2538
+ * variables: {
2539
+ * id: // value for 'id'
2540
+ * assignedTo: // value for 'assignedTo'
2541
+ * },
2542
+ * });
2543
+ */
2544
+ export declare function useAssignSupportTicketMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AssignSupportTicketMutation, Types.AssignSupportTicketMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AssignSupportTicketMutation, any, Apollo.ApolloCache>;
2545
+ export type AssignSupportTicketMutationHookResult = ReturnType<typeof useAssignSupportTicketMutation>;
2546
+ export type AssignSupportTicketMutationResult = Apollo.MutationResult<Types.AssignSupportTicketMutation>;
2547
+ export type AssignSupportTicketMutationOptions = Apollo.BaseMutationOptions<Types.AssignSupportTicketMutation, Types.AssignSupportTicketMutationVariables>;
2548
+ export declare const CloseSupportTicketDocument: Apollo.DocumentNode;
2549
+ export type CloseSupportTicketMutationFn = Apollo.MutationFunction<Types.CloseSupportTicketMutation, Types.CloseSupportTicketMutationVariables>;
2550
+ /**
2551
+ * __useCloseSupportTicketMutation__
2552
+ *
2553
+ * To run a mutation, you first call `useCloseSupportTicketMutation` within a React component and pass it any options that fit your needs.
2554
+ * When your component renders, `useCloseSupportTicketMutation` returns a tuple that includes:
2555
+ * - A mutate function that you can call at any time to execute the mutation
2556
+ * - An object with fields that represent the current status of the mutation's execution
2557
+ *
2558
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2559
+ *
2560
+ * @example
2561
+ * const [closeSupportTicketMutation, { data, loading, error }] = useCloseSupportTicketMutation({
2562
+ * variables: {
2563
+ * id: // value for 'id'
2564
+ * },
2565
+ * });
2566
+ */
2567
+ export declare function useCloseSupportTicketMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CloseSupportTicketMutation, Types.CloseSupportTicketMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.CloseSupportTicketMutation, any, Apollo.ApolloCache>;
2568
+ export type CloseSupportTicketMutationHookResult = ReturnType<typeof useCloseSupportTicketMutation>;
2569
+ export type CloseSupportTicketMutationResult = Apollo.MutationResult<Types.CloseSupportTicketMutation>;
2570
+ export type CloseSupportTicketMutationOptions = Apollo.BaseMutationOptions<Types.CloseSupportTicketMutation, Types.CloseSupportTicketMutationVariables>;
2571
+ export declare const AddTicketTagsDocument: Apollo.DocumentNode;
2572
+ export type AddTicketTagsMutationFn = Apollo.MutationFunction<Types.AddTicketTagsMutation, Types.AddTicketTagsMutationVariables>;
2573
+ /**
2574
+ * __useAddTicketTagsMutation__
2575
+ *
2576
+ * To run a mutation, you first call `useAddTicketTagsMutation` within a React component and pass it any options that fit your needs.
2577
+ * When your component renders, `useAddTicketTagsMutation` returns a tuple that includes:
2578
+ * - A mutate function that you can call at any time to execute the mutation
2579
+ * - An object with fields that represent the current status of the mutation's execution
2580
+ *
2581
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2582
+ *
2583
+ * @example
2584
+ * const [addTicketTagsMutation, { data, loading, error }] = useAddTicketTagsMutation({
2585
+ * variables: {
2586
+ * id: // value for 'id'
2587
+ * tags: // value for 'tags'
2588
+ * },
2589
+ * });
2590
+ */
2591
+ export declare function useAddTicketTagsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddTicketTagsMutation, Types.AddTicketTagsMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.AddTicketTagsMutation, any, Apollo.ApolloCache>;
2592
+ export type AddTicketTagsMutationHookResult = ReturnType<typeof useAddTicketTagsMutation>;
2593
+ export type AddTicketTagsMutationResult = Apollo.MutationResult<Types.AddTicketTagsMutation>;
2594
+ export type AddTicketTagsMutationOptions = Apollo.BaseMutationOptions<Types.AddTicketTagsMutation, Types.AddTicketTagsMutationVariables>;
2595
+ export declare const ListUsersDocument: Apollo.DocumentNode;
2596
+ /**
2597
+ * __useListUsersQuery__
2598
+ *
2599
+ * To run a query within a React component, call `useListUsersQuery` and pass it any options that fit your needs.
2600
+ * When your component renders, `useListUsersQuery` returns an object from Apollo Client that contains loading, error, and data properties
2601
+ * you can use to render your UI.
2602
+ *
2603
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2604
+ *
2605
+ * @example
2606
+ * const { data, loading, error } = useListUsersQuery({
2607
+ * variables: {
2608
+ * filter: // value for 'filter'
2609
+ * pagination: // value for 'pagination'
2610
+ * },
2611
+ * });
2612
+ */
2613
+ export declare function useListUsersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListUsersQuery, Types.ListUsersQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListUsersQuery, Types.ListUsersQueryVariables, "empty" | "complete" | "streaming", Types.ListUsersQueryVariables>;
2614
+ export declare function useListUsersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListUsersQuery, Types.ListUsersQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListUsersQuery, Types.ListUsersQueryVariables, "empty" | "complete" | "streaming">;
2615
+ export declare function useListUsersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListUsersQuery, Types.ListUsersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListUsersQuery, Types.ListUsersQueryVariables>;
2616
+ export declare function useListUsersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListUsersQuery, Types.ListUsersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListUsersQuery | undefined, Types.ListUsersQueryVariables>;
2617
+ export type ListUsersQueryHookResult = ReturnType<typeof useListUsersQuery>;
2618
+ export type ListUsersLazyQueryHookResult = ReturnType<typeof useListUsersLazyQuery>;
2619
+ export type ListUsersSuspenseQueryHookResult = ReturnType<typeof useListUsersSuspenseQuery>;
2620
+ export type ListUsersQueryResult = Apollo.QueryResult<Types.ListUsersQuery, Types.ListUsersQueryVariables>;
2621
+ export declare const GetUserDocument: Apollo.DocumentNode;
2622
+ /**
2623
+ * __useGetUserQuery__
2624
+ *
2625
+ * To run a query within a React component, call `useGetUserQuery` and pass it any options that fit your needs.
2626
+ * When your component renders, `useGetUserQuery` returns an object from Apollo Client that contains loading, error, and data properties
2627
+ * you can use to render your UI.
2628
+ *
2629
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2630
+ *
2631
+ * @example
2632
+ * const { data, loading, error } = useGetUserQuery({
2633
+ * variables: {
2634
+ * id: // value for 'id'
2635
+ * },
2636
+ * });
2637
+ */
2638
+ export declare function useGetUserQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetUserQuery, Types.GetUserQueryVariables> & ({
2639
+ variables: Types.GetUserQueryVariables;
2640
+ skip?: boolean;
2641
+ } | {
2642
+ skip: boolean;
2643
+ })): ApolloReactHooks.useQuery.Result<Types.GetUserQuery, Types.GetUserQueryVariables, "empty" | "complete" | "streaming", Types.GetUserQueryVariables>;
2644
+ export declare function useGetUserLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetUserQuery, Types.GetUserQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetUserQuery, Types.GetUserQueryVariables, "empty" | "complete" | "streaming">;
2645
+ export declare function useGetUserSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUserQuery, Types.GetUserQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUserQuery, Types.GetUserQueryVariables>;
2646
+ export declare function useGetUserSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUserQuery, Types.GetUserQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUserQuery | undefined, Types.GetUserQueryVariables>;
2647
+ export type GetUserQueryHookResult = ReturnType<typeof useGetUserQuery>;
2648
+ export type GetUserLazyQueryHookResult = ReturnType<typeof useGetUserLazyQuery>;
2649
+ export type GetUserSuspenseQueryHookResult = ReturnType<typeof useGetUserSuspenseQuery>;
2650
+ export type GetUserQueryResult = Apollo.QueryResult<Types.GetUserQuery, Types.GetUserQueryVariables>;
2651
+ export declare const GetUserCountDocument: Apollo.DocumentNode;
2652
+ /**
2653
+ * __useGetUserCountQuery__
2654
+ *
2655
+ * To run a query within a React component, call `useGetUserCountQuery` and pass it any options that fit your needs.
2656
+ * When your component renders, `useGetUserCountQuery` returns an object from Apollo Client that contains loading, error, and data properties
2657
+ * you can use to render your UI.
2658
+ *
2659
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2660
+ *
2661
+ * @example
2662
+ * const { data, loading, error } = useGetUserCountQuery({
2663
+ * variables: {
2664
+ * },
2665
+ * });
2666
+ */
2667
+ export declare function useGetUserCountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetUserCountQuery, Types.GetUserCountQueryVariables, "empty" | "complete" | "streaming", Types.GetUserCountQueryVariables>;
2668
+ export declare function useGetUserCountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetUserCountQuery, Types.GetUserCountQueryVariables, "empty" | "complete" | "streaming">;
2669
+ export declare function useGetUserCountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>;
2670
+ export declare function useGetUserCountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUserCountQuery | undefined, Types.GetUserCountQueryVariables>;
2671
+ export type GetUserCountQueryHookResult = ReturnType<typeof useGetUserCountQuery>;
2672
+ export type GetUserCountLazyQueryHookResult = ReturnType<typeof useGetUserCountLazyQuery>;
2673
+ export type GetUserCountSuspenseQueryHookResult = ReturnType<typeof useGetUserCountSuspenseQuery>;
2674
+ export type GetUserCountQueryResult = Apollo.QueryResult<Types.GetUserCountQuery, Types.GetUserCountQueryVariables>;
2675
+ export declare const GetCurrentUserDocument: Apollo.DocumentNode;
2676
+ /**
2677
+ * __useGetCurrentUserQuery__
2678
+ *
2679
+ * To run a query within a React component, call `useGetCurrentUserQuery` and pass it any options that fit your needs.
2680
+ * When your component renders, `useGetCurrentUserQuery` returns an object from Apollo Client that contains loading, error, and data properties
2681
+ * you can use to render your UI.
2682
+ *
2683
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2684
+ *
2685
+ * @example
2686
+ * const { data, loading, error } = useGetCurrentUserQuery({
2687
+ * variables: {
2688
+ * },
2689
+ * });
2690
+ */
2691
+ export declare function useGetCurrentUserQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>): ApolloReactHooks.useQuery.Result<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables, "empty" | "complete" | "streaming", Types.GetCurrentUserQueryVariables>;
2692
+ export declare function useGetCurrentUserLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables, "empty" | "complete" | "streaming">;
2693
+ export declare function useGetCurrentUserSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>;
2694
+ export declare function useGetCurrentUserSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCurrentUserQuery | undefined, Types.GetCurrentUserQueryVariables>;
2695
+ export type GetCurrentUserQueryHookResult = ReturnType<typeof useGetCurrentUserQuery>;
2696
+ export type GetCurrentUserLazyQueryHookResult = ReturnType<typeof useGetCurrentUserLazyQuery>;
2697
+ export type GetCurrentUserSuspenseQueryHookResult = ReturnType<typeof useGetCurrentUserSuspenseQuery>;
2698
+ export type GetCurrentUserQueryResult = Apollo.QueryResult<Types.GetCurrentUserQuery, Types.GetCurrentUserQueryVariables>;
2699
+ export declare const UpdateUserDocument: Apollo.DocumentNode;
2700
+ export type UpdateUserMutationFn = Apollo.MutationFunction<Types.UpdateUserMutation, Types.UpdateUserMutationVariables>;
2701
+ /**
2702
+ * __useUpdateUserMutation__
2703
+ *
2704
+ * To run a mutation, you first call `useUpdateUserMutation` within a React component and pass it any options that fit your needs.
2705
+ * When your component renders, `useUpdateUserMutation` returns a tuple that includes:
2706
+ * - A mutate function that you can call at any time to execute the mutation
2707
+ * - An object with fields that represent the current status of the mutation's execution
2708
+ *
2709
+ * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
2710
+ *
2711
+ * @example
2712
+ * const [updateUserMutation, { data, loading, error }] = useUpdateUserMutation({
2713
+ * variables: {
2714
+ * id: // value for 'id'
2715
+ * input: // value for 'input'
2716
+ * },
2717
+ * });
2718
+ */
2719
+ export declare function useUpdateUserMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateUserMutation, Types.UpdateUserMutationVariables>): ApolloReactHooks.useMutation.ResultTuple<Types.UpdateUserMutation, any, Apollo.ApolloCache>;
2720
+ export type UpdateUserMutationHookResult = ReturnType<typeof useUpdateUserMutation>;
2721
+ export type UpdateUserMutationResult = Apollo.MutationResult<Types.UpdateUserMutation>;
2722
+ export type UpdateUserMutationOptions = Apollo.BaseMutationOptions<Types.UpdateUserMutation, Types.UpdateUserMutationVariables>;
2723
+ export declare const ListWorkspacesDocument: Apollo.DocumentNode;
2724
+ /**
2725
+ * __useListWorkspacesQuery__
2726
+ *
2727
+ * To run a query within a React component, call `useListWorkspacesQuery` and pass it any options that fit your needs.
2728
+ * When your component renders, `useListWorkspacesQuery` returns an object from Apollo Client that contains loading, error, and data properties
2729
+ * you can use to render your UI.
2730
+ *
2731
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
2732
+ *
2733
+ * @example
2734
+ * const { data, loading, error } = useListWorkspacesQuery({
2735
+ * variables: {
2736
+ * limit: // value for 'limit'
2737
+ * offset: // value for 'offset'
2738
+ * },
2739
+ * });
2740
+ */
2741
+ export declare function useListWorkspacesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>): ApolloReactHooks.useQuery.Result<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables, "empty" | "complete" | "streaming", Types.ListWorkspacesQueryVariables>;
2742
+ export declare function useListWorkspacesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>): ApolloReactHooks.useLazyQuery.ResultTuple<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables, "empty" | "complete" | "streaming">;
2743
+ export declare function useListWorkspacesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>;
2744
+ export declare function useListWorkspacesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListWorkspacesQuery | undefined, Types.ListWorkspacesQueryVariables>;
2745
+ export type ListWorkspacesQueryHookResult = ReturnType<typeof useListWorkspacesQuery>;
2746
+ export type ListWorkspacesLazyQueryHookResult = ReturnType<typeof useListWorkspacesLazyQuery>;
2747
+ export type ListWorkspacesSuspenseQueryHookResult = ReturnType<typeof useListWorkspacesSuspenseQuery>;
2748
+ export type ListWorkspacesQueryResult = Apollo.QueryResult<Types.ListWorkspacesQuery, Types.ListWorkspacesQueryVariables>;
2749
+ //# sourceMappingURL=global-operations.d.ts.map