@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 @@
1
+ {"version":3,"file":"global-types.js","names":[],"sources":["../../src/generated/global-types.ts"],"sourcesContent":["// @ts-nocheck\nexport type Maybe<T> = T | null;\nexport type InputMaybe<T> = Maybe<T>;\nexport type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };\nexport type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };\nexport type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };\n/** All built-in and custom scalars, mapped to their actual values */\nexport type Scalars = {\n ID: { input: string; output: string; }\n String: { input: string; output: string; }\n Boolean: { input: boolean; output: boolean; }\n Int: { input: number; output: number; }\n Float: { input: number; output: number; }\n BigInt: { input: string; output: string; }\n /** ISO 8601 date-time string */\n DateTime: { input: string; output: string; }\n Decimal: { input: string; output: string; }\n /** Arbitrary JSON data */\n JSON: { input: Record<string, unknown>; output: Record<string, unknown>; }\n JSONObject: { input: Record<string, unknown>; output: Record<string, unknown>; }\n Upload: { input: File; output: File; }\n _SubscriptionsPlaceholder: { input: any; output: any; }\n};\n\n/** API Key for programmatic access */\nexport type ApiKey = {\n __typename?: 'APIKey';\n appId: Scalars['String']['output'];\n appName?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n lastUsedAt?: Maybe<Scalars['DateTime']['output']>;\n name: Scalars['String']['output'];\n prefix: Scalars['String']['output'];\n scopes: Array<Scalars['String']['output']>;\n};\n\nexport type ApiKeyInput = {\n apiKey: Scalars['String']['input'];\n apiSecret: Scalars['String']['input'];\n};\n\nexport type ApiKeyResult = {\n __typename?: 'APIKeyResult';\n apiKey: Scalars['String']['output'];\n apiSecret: Scalars['String']['output'];\n keyId: Scalars['String']['output'];\n};\n\nexport type ApiKeyRotateResult = {\n __typename?: 'APIKeyRotateResult';\n apiSecret: Scalars['String']['output'];\n};\n\n/** Result for account actions (deactivate/delete) */\nexport type AccountActionResult = {\n __typename?: 'AccountActionResult';\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\n/** Action check count for analytics */\nexport type ActionCount = {\n __typename?: 'ActionCount';\n action: Scalars['String']['output'];\n count: Scalars['Int']['output'];\n resourceType: Scalars['String']['output'];\n};\n\n/** Action definition - what actions exist per resource type */\nexport type ActionDefinition = {\n __typename?: 'ActionDefinition';\n action: Scalars['String']['output'];\n /** ADMIN role level includes this action by default */\n adminDefault: Scalars['Boolean']['output'];\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n /** EDITOR role level includes this action by default */\n editorDefault: Scalars['Boolean']['output'];\n id: Scalars['ID']['output'];\n isSystem: Scalars['Boolean']['output'];\n resourceType: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n /** VIEWER role level includes this action by default */\n viewerDefault: Scalars['Boolean']['output'];\n};\n\nexport type ActivateLicenseInput = {\n deviceId: Scalars['String']['input'];\n deviceName?: InputMaybe<Scalars['String']['input']>;\n ipAddress?: InputMaybe<Scalars['String']['input']>;\n licenseKey: Scalars['String']['input'];\n platform?: InputMaybe<Scalars['String']['input']>;\n userAgent?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum ActivityAction {\n Create = 'CREATE',\n Delete = 'DELETE',\n Execute = 'EXECUTE',\n Export = 'EXPORT',\n Import = 'IMPORT',\n List = 'LIST',\n Read = 'READ',\n Update = 'UPDATE'\n}\n\nexport type ActivityFilterInput = {\n action?: InputMaybe<Scalars['String']['input']>;\n actorId?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n resource?: InputMaybe<Scalars['String']['input']>;\n resourceId?: InputMaybe<Scalars['String']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ActivityLog = {\n __typename?: 'ActivityLog';\n action: Scalars['String']['output'];\n actorId?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n resource: Scalars['String']['output'];\n resourceId?: Maybe<Scalars['ID']['output']>;\n resourceType?: Maybe<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n userAgent?: Maybe<Scalars['String']['output']>;\n userId?: Maybe<Scalars['ID']['output']>;\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport type ActivityLogConnection = {\n __typename?: 'ActivityLogConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<ActivityLog>;\n totalCount: Scalars['Int']['output'];\n};\n\n/** Actor activity count for analytics */\nexport type ActorCount = {\n __typename?: 'ActorCount';\n actorId: Scalars['String']['output'];\n actorType: ActorType;\n count: Scalars['Int']['output'];\n};\n\n/** Filter for querying actors */\nexport type ActorFilterInput = {\n actorType?: InputMaybe<ActorType>;\n hasOverrides?: InputMaybe<Scalars['Boolean']['input']>;\n roleId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Actor RBAC summary - shows an actor's full RBAC profile in a scope */\nexport type ActorRbacSummary = {\n __typename?: 'ActorRbacSummary';\n actorId: Scalars['String']['output'];\n actorType: ActorType;\n /** Total number of effective permissions */\n effectivePermissionCount: Scalars['Int']['output'];\n /** Permission overrides for this actor */\n permissionOverrides: Array<PermissionOverride>;\n /** Roles assigned to this actor */\n roleAssignments: Array<ActorRoleAssignment>;\n scopeId: Scalars['String']['output'];\n};\n\n/** Actor's role assignment in a scope */\nexport type ActorRoleAssignment = {\n __typename?: 'ActorRoleAssignment';\n actorId: Scalars['String']['output'];\n actorType: ActorType;\n assignedAt: Scalars['DateTime']['output'];\n assignedBy?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n delegatedBy?: Maybe<Scalars['String']['output']>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n onBehalfOf?: Maybe<Scalars['String']['output']>;\n /** The role assigned */\n role: Role;\n roleId: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n /** Optional: Scope role to specific resource instance */\n scopeResourceId?: Maybe<Scalars['String']['output']>;\n /** Optional: Scope role to specific resource type */\n scopeResourceType?: Maybe<Scalars['String']['output']>;\n};\n\n/** Actor types - actors are created in auth-svc, RBAC just references opaque IDs */\nexport enum ActorType {\n /** Automated bot (workflow, AI assistant) */\n Bot = 'BOT',\n /** Service acting on behalf of user */\n DelegatedAgent = 'DELEGATED_AGENT',\n /** External API integration (Zapier, etc.) */\n Integration = 'INTEGRATION',\n /** Human user */\n User = 'USER'\n}\n\n/**\n * Specific adapter/provider type for each ChannelPlatform.\n * ChannelPlatform = High-level category (EMAIL, SMS, PUSH, etc.)\n * AdapterType = Specific provider implementation\n *\n * Currently supported adapters (must match Prisma schema):\n * EMAIL: AWS_SES, AZURE_ACS\n * SMS: AWS_SNS, TWILIO_SMS\n * WHATSAPP: WHATSAPP_CLOUD, WHATSAPP_TWILIO\n * SLACK: SLACK_BOT\n * TEAMS: TEAMS_BOT\n * DISCORD: DISCORD_BOT\n * PUSH: FCM\n * INAPP: INAPP_NATIVE\n * WEBHOOK: WEBHOOK_HTTP\n */\nexport enum AdapterType {\n /** Amazon Simple Email Service */\n AwsSes = 'AWS_SES',\n /** Amazon SNS */\n AwsSns = 'AWS_SNS',\n /** Azure Communication Services Email */\n AzureAcs = 'AZURE_ACS',\n /** Discord Bot API */\n DiscordBot = 'DISCORD_BOT',\n /** Firebase Cloud Messaging (Android + iOS + Web) */\n Fcm = 'FCM',\n /** Native Burdenoff In-App Notifications */\n InappNative = 'INAPP_NATIVE',\n /** Slack Bot API */\n SlackBot = 'SLACK_BOT',\n /** Microsoft Teams Bot */\n TeamsBot = 'TEAMS_BOT',\n /** Twilio SMS */\n TwilioSms = 'TWILIO_SMS',\n /** Generic HTTP Webhook */\n WebhookHttp = 'WEBHOOK_HTTP',\n /** WhatsApp Cloud API (Meta) */\n WhatsappCloud = 'WHATSAPP_CLOUD',\n /** WhatsApp via Twilio */\n WhatsappTwilio = 'WHATSAPP_TWILIO'\n}\n\n/** Input for adding a fulfillment tracking event */\nexport type AddFulfillmentTrackingEventInput = {\n carrierEvent?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n fulfillmentId: Scalars['String']['input'];\n location?: InputMaybe<Scalars['String']['input']>;\n occurredAt?: InputMaybe<Scalars['DateTime']['input']>;\n status: FulfillmentStatus;\n};\n\nexport type AddOnInputPayment = {\n id: Scalars['String']['input'];\n quantity?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Input for adding a member to an organization */\nexport type AddOrganizationMemberInput = {\n organizationId: Scalars['String']['input'];\n role?: InputMaybe<UserRole>;\n userId: Scalars['String']['input'];\n};\n\nexport type AddPaymentMethodInput = {\n accountDetails: Scalars['JSON']['input'];\n country?: InputMaybe<Scalars['String']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n type: DevPortalPaymentMethodType;\n};\n\nexport type AddPayoutAccountInput = {\n accountHolderName: Scalars['String']['input'];\n accountNumber?: InputMaybe<Scalars['String']['input']>;\n bankName?: InputMaybe<Scalars['String']['input']>;\n billingAccountId: Scalars['ID']['input'];\n country?: InputMaybe<Scalars['String']['input']>;\n currency: Scalars['String']['input'];\n iban?: InputMaybe<Scalars['String']['input']>;\n ifsc?: InputMaybe<Scalars['String']['input']>;\n label: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n providerPreference?: InputMaybe<PayoutProvider>;\n routingNumber?: InputMaybe<Scalars['String']['input']>;\n swift?: InputMaybe<Scalars['String']['input']>;\n type: PayoutAccountType;\n upiId?: InputMaybe<Scalars['String']['input']>;\n walletHandle?: InputMaybe<Scalars['String']['input']>;\n walletProvider?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AddPayoutMethodInput = {\n externalAccountId?: InputMaybe<Scalars['String']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n publisherId: Scalars['ID']['input'];\n type: PayoutMethodType;\n};\n\nexport type AddSuppressionInput = {\n email: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n platformProductId: Scalars['String']['input'];\n reason: Scalars['String']['input'];\n source?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for adding an item to cart */\nexport type AddToCartInput = {\n /** Product ID to add */\n productId: Scalars['String']['input'];\n /** Quantity to add (defaults to 1) */\n quantity?: InputMaybe<Scalars['Int']['input']>;\n /** Variant ID (required for physical products with variants) */\n variantId?: InputMaybe<Scalars['String']['input']>;\n /** Target workspace for installation (for digital products) */\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for adding a member to a workspace */\nexport type AddWorkspaceMemberInput = {\n role?: InputMaybe<UserRole>;\n userId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\nexport type Addon = {\n __typename?: 'Addon';\n /** A list of addon subscriptions linked to this addon. */\n addonSubscriptions?: Maybe<Array<Maybe<AddonSubscription>>>;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp when the addon was created. */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** The currency in which the addon is priced. Defaults to 'USD'. */\n currency?: Maybe<Scalars['String']['output']>;\n /** Prices for all supported currencies with beautiful rounding. Example: { \"USD\": 2.00, \"INR\": 199, \"EUR\": 1.99, \"GBP\": 1.79 } */\n currencyPrices?: Maybe<Scalars['JSON']['output']>;\n /** The duration for which the addon is valid (e.g., monthly, yearly). Defaults to 'monthly'. */\n duration?: Maybe<PlanDuration>;\n /** A list of features provided by this addon, such as extra quotas or special services. */\n features?: Maybe<Array<Maybe<SubscriptionFeatures>>>;\n /** Geography-specific price overrides. The billing account's country/state/region plus currency decide whether one of these overrides applies. */\n geoPricingOverrides: Array<GeoPricingOverride>;\n /** The unique identifier for the Addon, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** Indicates whether the addon is currently active. */\n isActive?: Maybe<Scalars['Boolean']['output']>;\n /** The name of the addon (e.g., 'Extra Bots', 'Additional Storage'). */\n name?: Maybe<Scalars['String']['output']>;\n /** The price of the addon. */\n price?: Maybe<Scalars['Float']['output']>;\n /** Historical record of price changes for this addon */\n priceHistory: Array<AddonPriceHistory>;\n /** Product ID the addon belongs to (reference to product microservice) */\n productID?: Maybe<Scalars['String']['output']>;\n /** The timestamp when the addon was last updated. */\n updatedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\n/** Tracks historical price changes for an Addon. A new record is created whenever an addon's price is updated. */\nexport type AddonPriceHistory = {\n __typename?: 'AddonPriceHistory';\n /** The addon this price change belongs to */\n addonId: Scalars['String']['output'];\n /** Who made the price change (actor ID) */\n changedBy?: Maybe<Scalars['String']['output']>;\n /** When the price change was recorded */\n createdAt: Scalars['DateTime']['output'];\n /** The currency of the price change */\n currency: Scalars['String']['output'];\n /** Unique identifier */\n id: Scalars['ID']['output'];\n /** The new price after the change */\n newPrice: Scalars['Float']['output'];\n /** The previous price before the change */\n oldPrice: Scalars['Float']['output'];\n /** Optional reason for the price change */\n reason?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AddonSubscription = {\n __typename?: 'AddonSubscription';\n /** The addon linked to this subscription. */\n addon?: Maybe<Addon>;\n /** The unique identifier for the addon. */\n addonId?: Maybe<Scalars['ID']['output']>;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp when the addon subscription was created. */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** The current active subscription linked to this addon subscription. This is updated when a new subscription is bought. */\n currentSubscription?: Maybe<BillingSubscription>;\n /** The unique identifier for the current active subscription. */\n currentSubscriptionId?: Maybe<Scalars['ID']['output']>;\n /** The end date of the addon subscription. */\n endDate?: Maybe<Scalars['DateTime']['output']>;\n /** The unique identifier for the AddonSubscription, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** The quantity of the addon subscribed to. */\n quantity?: Maybe<Scalars['Int']['output']>;\n /** The start date of the addon subscription. */\n startDate?: Maybe<Scalars['DateTime']['output']>;\n /** The timestamp when the addon subscription was last updated. */\n updatedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport type AdjustInventoryInput = {\n delta: Scalars['Int']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['ID']['input'];\n reason: InventoryAdjustmentReason;\n variantId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/** Input for admin updating user (includes role and status) */\nexport type AdminUpdateUserInput = {\n emailVerified?: InputMaybe<Scalars['Boolean']['input']>;\n firstName?: InputMaybe<Scalars['String']['input']>;\n language?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRole>;\n status?: InputMaybe<UserStatus>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n username?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AgentAvailability = {\n __typename?: 'AgentAvailability';\n agentsBySkill: Array<AgentSkillCount>;\n availableCapacity: Scalars['Int']['output'];\n awayAgents: Scalars['Int']['output'];\n offlineAgents: Scalars['Int']['output'];\n onlineAgents: Scalars['Int']['output'];\n totalAgents: Scalars['Int']['output'];\n};\n\nexport type AgentLeaderboard = {\n __typename?: 'AgentLeaderboard';\n agents: Array<AgentRanking>;\n period: TimePeriod;\n};\n\nexport type AgentPerformance = {\n __typename?: 'AgentPerformance';\n agent: AgentProfile;\n agentId: Scalars['String']['output'];\n averageFirstResponseMinutes?: Maybe<Scalars['Float']['output']>;\n averageRating?: Maybe<Scalars['Float']['output']>;\n averageResolutionMinutes?: Maybe<Scalars['Float']['output']>;\n endDate: Scalars['DateTime']['output'];\n internalNotesCount: Scalars['Int']['output'];\n messagesCount: Scalars['Int']['output'];\n period: TimePeriod;\n slaComplianceRate: Scalars['Float']['output'];\n startDate: Scalars['DateTime']['output'];\n ticketsAssigned: Scalars['Int']['output'];\n ticketsClosed: Scalars['Int']['output'];\n ticketsResolved: Scalars['Int']['output'];\n totalRatings: Scalars['Int']['output'];\n};\n\nexport type AgentPerformanceFilterInput = {\n agentId: Scalars['String']['input'];\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n period?: InputMaybe<TimePeriod>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type AgentProfile = {\n __typename?: 'AgentProfile';\n autoAssign: Scalars['Boolean']['output'];\n availableCapacity: Scalars['Int']['output'];\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n currentChats: Scalars['Int']['output'];\n currentTickets: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n isAvailable: Scalars['Boolean']['output'];\n lastActiveAt?: Maybe<Scalars['DateTime']['output']>;\n maxChats: Scalars['Int']['output'];\n maxTickets: Scalars['Int']['output'];\n skills: Array<Scalars['String']['output']>;\n status: AgentStatus;\n statusMessage?: Maybe<Scalars['String']['output']>;\n teams: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n timezone: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n user: User;\n userId: Scalars['String']['output'];\n workingHours?: Maybe<Scalars['JSON']['output']>;\n};\n\nexport type AgentProfileConnection = {\n __typename?: 'AgentProfileConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<AgentProfile>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type AgentProfileFilterInput = {\n autoAssign?: InputMaybe<Scalars['Boolean']['input']>;\n context?: InputMaybe<SupportContextFilterInput>;\n isAvailable?: InputMaybe<Scalars['Boolean']['input']>;\n skills?: InputMaybe<Array<Scalars['String']['input']>>;\n status?: InputMaybe<AgentStatus>;\n teams?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type AgentRanking = {\n __typename?: 'AgentRanking';\n agent: AgentProfile;\n agentId: Scalars['String']['output'];\n averageRating?: Maybe<Scalars['Float']['output']>;\n rank: Scalars['Int']['output'];\n score: Scalars['Float']['output'];\n slaComplianceRate: Scalars['Float']['output'];\n ticketsResolved: Scalars['Int']['output'];\n};\n\nexport type AgentSkillCount = {\n __typename?: 'AgentSkillCount';\n count: Scalars['Int']['output'];\n onlineCount: Scalars['Int']['output'];\n skill: Scalars['String']['output'];\n};\n\nexport enum AgentStatus {\n Away = 'AWAY',\n Offline = 'OFFLINE',\n Online = 'ONLINE'\n}\n\n/** Amount range filter for queries */\nexport type AmountRangeInput = {\n /** Maximum amount (inclusive) */\n max?: InputMaybe<Scalars['Float']['input']>;\n /** Minimum amount (inclusive) */\n min?: InputMaybe<Scalars['Float']['input']>;\n};\n\n/** Input for analytics date range */\nexport type AnalyticsDateRangeInput = {\n endDate: Scalars['DateTime']['input'];\n startDate: Scalars['DateTime']['input'];\n};\n\nexport type AnalyticsFilterInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n groupBy?: InputMaybe<TrendGroupBy>;\n period?: InputMaybe<TimePeriod>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum AnalyticsPeriod {\n CurrentMonth = 'CURRENT_MONTH',\n Last_7Days = 'LAST_7_DAYS',\n Last_30Days = 'LAST_30_DAYS',\n Last_90Days = 'LAST_90_DAYS',\n LastMonth = 'LAST_MONTH'\n}\n\nexport type App = {\n __typename?: 'App';\n actorType: Scalars['String']['output'];\n clientId: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n delegations: Array<AppUserDelegation>;\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n name: Scalars['String']['output'];\n ownerUserId: Scalars['String']['output'];\n redirectUris: Array<Scalars['String']['output']>;\n scopes: Array<Scalars['String']['output']>;\n status: AppStatus;\n tenantId?: Maybe<Scalars['String']['output']>;\n type: AppType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type AppAsUserTokenResponse = {\n __typename?: 'AppAsUserTokenResponse';\n accessToken: Scalars['String']['output'];\n allowedWorkspaceIds: Array<Scalars['String']['output']>;\n delegationId: Scalars['String']['output'];\n expiresIn: Scalars['Int']['output'];\n scopes: Array<Scalars['String']['output']>;\n tokenType: Scalars['String']['output'];\n};\n\n/** App Collection - curated collection of applications */\nexport type AppCollection = {\n __typename?: 'AppCollection';\n appIds: Array<Scalars['ID']['output']>;\n bannerUrl?: Maybe<Scalars['String']['output']>;\n collectionType: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n curatedBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n displayOrder: Scalars['Int']['output'];\n endsAt?: Maybe<Scalars['DateTime']['output']>;\n iconUrl?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n isFeatured: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n slug: Scalars['String']['output'];\n startsAt?: Maybe<Scalars['DateTime']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type AppCollectionConnection = {\n __typename?: 'AppCollectionConnection';\n edges: Array<AppCollectionEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type AppCollectionEdge = {\n __typename?: 'AppCollectionEdge';\n cursor: Scalars['String']['output'];\n node: AppCollection;\n};\n\nexport type AppCreateResponse = {\n __typename?: 'AppCreateResponse';\n app: App;\n clientSecret: Scalars['String']['output'];\n};\n\n/** App Installation - tracks where an application is installed */\nexport type AppInstallation = {\n __typename?: 'AppInstallation';\n activatedAt?: Maybe<Scalars['DateTime']['output']>;\n apiCallsCount: Scalars['String']['output'];\n application: Application;\n applicationId: Scalars['ID']['output'];\n autoUpdate: Scalars['Boolean']['output'];\n config?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currentVersion: Scalars['String']['output'];\n delegationId?: Maybe<Scalars['ID']['output']>;\n id: Scalars['ID']['output'];\n installedAt: Scalars['DateTime']['output'];\n installedBy: Scalars['ID']['output'];\n installedVersion: Scalars['String']['output'];\n isTrialActive: Scalars['Boolean']['output'];\n lastUpdatedAt?: Maybe<Scalars['DateTime']['output']>;\n lastUsedAt?: Maybe<Scalars['DateTime']['output']>;\n licenseKey?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n oauthClientId?: Maybe<Scalars['ID']['output']>;\n oauthTokenId?: Maybe<Scalars['ID']['output']>;\n organizationId?: Maybe<Scalars['ID']['output']>;\n saleId?: Maybe<Scalars['ID']['output']>;\n scope: InstallationScope;\n status: InstallationStatus;\n statusReason?: Maybe<Scalars['String']['output']>;\n subscriptionId?: Maybe<Scalars['ID']['output']>;\n suspendedAt?: Maybe<Scalars['DateTime']['output']>;\n tenantId: Scalars['ID']['output'];\n trialExpiresAt?: Maybe<Scalars['DateTime']['output']>;\n trialStartedAt?: Maybe<Scalars['DateTime']['output']>;\n uninstallFeedback?: Maybe<Scalars['String']['output']>;\n uninstallReason?: Maybe<Scalars['String']['output']>;\n uninstalledAt?: Maybe<Scalars['DateTime']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n usageCount: Scalars['Int']['output'];\n userId?: Maybe<Scalars['ID']['output']>;\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport type AppInstallationConnection = {\n __typename?: 'AppInstallationConnection';\n edges: Array<AppInstallationEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type AppInstallationEdge = {\n __typename?: 'AppInstallationEdge';\n cursor: Scalars['String']['output'];\n node: AppInstallation;\n};\n\n/** App rating distribution breakdown */\nexport type AppRatingDistribution = {\n __typename?: 'AppRatingDistribution';\n fiveStar: Scalars['Int']['output'];\n fourStar: Scalars['Int']['output'];\n oneStar: Scalars['Int']['output'];\n threeStar: Scalars['Int']['output'];\n twoStar: Scalars['Int']['output'];\n};\n\n/** Per-app revenue summary */\nexport type AppRevenueSummary = {\n __typename?: 'AppRevenueSummary';\n applicationId: Scalars['ID']['output'];\n applicationName: Scalars['String']['output'];\n grossRevenue: Scalars['Float']['output'];\n netRevenue: Scalars['Float']['output'];\n salesCount: Scalars['Int']['output'];\n};\n\n/** App Review - user review and rating for an application */\nexport type AppReview = {\n __typename?: 'AppReview';\n appVersion?: Maybe<Scalars['String']['output']>;\n application: Application;\n applicationId: Scalars['ID']['output'];\n body?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n developerResponse?: Maybe<Scalars['String']['output']>;\n editCount: Scalars['Int']['output'];\n editedAt?: Maybe<Scalars['DateTime']['output']>;\n featuredAt?: Maybe<Scalars['DateTime']['output']>;\n helpfulCount: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n installationId?: Maybe<Scalars['ID']['output']>;\n isEdited: Scalars['Boolean']['output'];\n isFeatured: Scalars['Boolean']['output'];\n isVerifiedInstall: Scalars['Boolean']['output'];\n isVerifiedPurchase: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n moderatedAt?: Maybe<Scalars['DateTime']['output']>;\n moderatedBy?: Maybe<Scalars['ID']['output']>;\n moderationNote?: Maybe<Scalars['String']['output']>;\n notHelpfulCount: Scalars['Int']['output'];\n rating: Scalars['Int']['output'];\n rejectionReason?: Maybe<Scalars['String']['output']>;\n reportCount: Scalars['Int']['output'];\n respondedAt?: Maybe<Scalars['DateTime']['output']>;\n respondedBy?: Maybe<Scalars['ID']['output']>;\n status: AppReviewStatus;\n tenantId?: Maybe<Scalars['ID']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport type AppReviewConnection = {\n __typename?: 'AppReviewConnection';\n edges: Array<AppReviewEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type AppReviewEdge = {\n __typename?: 'AppReviewEdge';\n cursor: Scalars['String']['output'];\n node: AppReview;\n};\n\n/** App Review Report - abuse reporting */\nexport type AppReviewReport = {\n __typename?: 'AppReviewReport';\n actionTaken?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n details?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n reason: Scalars['String']['output'];\n reportedBy: Scalars['ID']['output'];\n reviewId: Scalars['ID']['output'];\n reviewedAt?: Maybe<Scalars['DateTime']['output']>;\n reviewedBy?: Maybe<Scalars['ID']['output']>;\n status: Scalars['String']['output'];\n};\n\nexport enum AppReviewStatus {\n Approved = 'APPROVED',\n Flagged = 'FLAGGED',\n Hidden = 'HIDDEN',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\n/** App Review Vote - helpful/not helpful voting */\nexport type AppReviewVote = {\n __typename?: 'AppReviewVote';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n isHelpful: Scalars['Boolean']['output'];\n reviewId: Scalars['ID']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport enum AppStatus {\n Active = 'ACTIVE',\n Approved = 'APPROVED',\n Deprecated = 'DEPRECATED',\n Draft = 'DRAFT',\n Inactive = 'INACTIVE',\n InReview = 'IN_REVIEW',\n Published = 'PUBLISHED',\n Rejected = 'REJECTED',\n Revoked = 'REVOKED',\n Submitted = 'SUBMITTED',\n Suspended = 'SUSPENDED'\n}\n\nexport enum AppSubmissionReviewStatus {\n Approved = 'APPROVED',\n ChangesRequested = 'CHANGES_REQUESTED',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type AppTokenResponse = {\n __typename?: 'AppTokenResponse';\n accessToken: Scalars['String']['output'];\n expiresIn: Scalars['Int']['output'];\n scopes: Array<Scalars['String']['output']>;\n tokenType: Scalars['String']['output'];\n};\n\nexport enum AppType {\n Analyst = 'ANALYST',\n ApiIntegration = 'API_INTEGRATION',\n Assistant = 'ASSISTANT',\n Automation = 'AUTOMATION',\n Bot = 'BOT',\n CliTool = 'CLI_TOOL',\n Console = 'CONSOLE',\n Dashboard = 'DASHBOARD',\n Datasink = 'DATASINK',\n DesktopApp = 'DESKTOP_APP',\n Integration = 'INTEGRATION',\n MobileApp = 'MOBILE_APP',\n Node = 'NODE',\n Parser = 'PARSER',\n Service = 'SERVICE',\n Specialist = 'SPECIALIST',\n Vibemodule = 'VIBEMODULE',\n WebApp = 'WEB_APP',\n Widget = 'WIDGET',\n Workflow = 'WORKFLOW'\n}\n\nexport type AppUserDelegation = {\n __typename?: 'AppUserDelegation';\n app: App;\n appId: Scalars['String']['output'];\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n grantedAt: Scalars['DateTime']['output'];\n grantedBy: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n revokedAt?: Maybe<Scalars['DateTime']['output']>;\n revokedBy?: Maybe<Scalars['String']['output']>;\n scopes: Array<Scalars['String']['output']>;\n status: DelegationStatus;\n userId: Scalars['String']['output'];\n workspaceIds: Array<Scalars['String']['output']>;\n};\n\nexport enum AppVisibility {\n Internal = 'INTERNAL',\n Private = 'PRIVATE',\n Public = 'PUBLIC',\n Unlisted = 'UNLISTED'\n}\n\nexport enum AppWorkspaceAuthStatus {\n Active = 'ACTIVE',\n Revoked = 'REVOKED'\n}\n\nexport type AppWorkspaceAuthorization = {\n __typename?: 'AppWorkspaceAuthorization';\n appId: Scalars['ID']['output'];\n createdAt: Scalars['DateTime']['output'];\n grantedAt: Scalars['DateTime']['output'];\n grantedBy: Scalars['ID']['output'];\n id: Scalars['ID']['output'];\n revokedAt?: Maybe<Scalars['DateTime']['output']>;\n revokedBy?: Maybe<Scalars['ID']['output']>;\n revokedReason?: Maybe<Scalars['String']['output']>;\n scopes: Array<Scalars['String']['output']>;\n status: AppWorkspaceAuthStatus;\n tenantId: Scalars['ID']['output'];\n updatedAt: Scalars['DateTime']['output'];\n workspaceId: Scalars['ID']['output'];\n};\n\n/** Application type - represents a developer application or integration */\nexport type Application = {\n __typename?: 'Application';\n activeInstallCount: Scalars['Int']['output'];\n analytics: Array<ApplicationAnalytics>;\n appId?: Maybe<Scalars['ID']['output']>;\n appType: AppType;\n averageRating?: Maybe<Scalars['Float']['output']>;\n bannerUrl?: Maybe<Scalars['String']['output']>;\n category?: Maybe<Scalars['String']['output']>;\n config?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n developerId: Scalars['ID']['output'];\n developerOrganization?: Maybe<DeveloperOrganization>;\n developerOrganizationId?: Maybe<Scalars['ID']['output']>;\n documentationUrl?: Maybe<Scalars['String']['output']>;\n githubUrl?: Maybe<Scalars['String']['output']>;\n iconUrl?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n installCount: Scalars['Int']['output'];\n installations: Array<AppInstallation>;\n isFeatured: Scalars['Boolean']['output'];\n isVerified: Scalars['Boolean']['output'];\n keywords: Array<Scalars['String']['output']>;\n lastReviewedAt?: Maybe<Scalars['DateTime']['output']>;\n manifest?: Maybe<Scalars['JSON']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n pricingDetails?: Maybe<Scalars['JSON']['output']>;\n pricingType?: Maybe<Scalars['String']['output']>;\n privacyPolicyUrl?: Maybe<Scalars['String']['output']>;\n publishedAt?: Maybe<Scalars['DateTime']['output']>;\n requiresApproval: Scalars['Boolean']['output'];\n reviewCount: Scalars['Int']['output'];\n reviewNotes?: Maybe<Scalars['String']['output']>;\n reviewStatus: AppSubmissionReviewStatus;\n reviewedBy?: Maybe<Scalars['ID']['output']>;\n reviews: Array<AppReview>;\n sales: Array<DeveloperOrgSale>;\n scopes: Array<ApplicationScope>;\n screenshots?: Maybe<Scalars['JSON']['output']>;\n shortDescription?: Maybe<Scalars['String']['output']>;\n slug: Scalars['String']['output'];\n status: AppStatus;\n submittedAt?: Maybe<Scalars['DateTime']['output']>;\n supportUrl?: Maybe<Scalars['String']['output']>;\n tags: Array<Scalars['String']['output']>;\n tenantId: Scalars['ID']['output'];\n termsOfServiceUrl?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n versions: Array<ApplicationVersion>;\n videoUrl?: Maybe<Scalars['String']['output']>;\n visibility: AppVisibility;\n webhooks: Array<Webhook>;\n websiteUrl?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ApplicationAnalytics = {\n __typename?: 'ApplicationAnalytics';\n activeUsers: Scalars['Int']['output'];\n apiCalls: Scalars['Int']['output'];\n application: Application;\n applicationId: Scalars['ID']['output'];\n avgResponseTime?: Maybe<Scalars['Float']['output']>;\n avgSessionDuration?: Maybe<Scalars['Float']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n date: Scalars['DateTime']['output'];\n errors: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n newUsers: Scalars['Int']['output'];\n period: Scalars['String']['output'];\n sessions: Scalars['Int']['output'];\n};\n\nexport type ApplicationConnection = {\n __typename?: 'ApplicationConnection';\n edges: Array<ApplicationEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type ApplicationEdge = {\n __typename?: 'ApplicationEdge';\n cursor: Scalars['String']['output'];\n node: Application;\n};\n\nexport type ApplicationScope = {\n __typename?: 'ApplicationScope';\n application: Application;\n applicationId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isRequired: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n scope: Scalars['String']['output'];\n};\n\nexport type ApplicationVersion = {\n __typename?: 'ApplicationVersion';\n application: Application;\n applicationId: Scalars['ID']['output'];\n changelog?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n deprecatedAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n isLatest: Scalars['Boolean']['output'];\n isStable: Scalars['Boolean']['output'];\n manifest?: Maybe<Scalars['JSON']['output']>;\n maxPlatformVersion?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n minPlatformVersion?: Maybe<Scalars['String']['output']>;\n packageHash?: Maybe<Scalars['String']['output']>;\n packageSize?: Maybe<Scalars['String']['output']>;\n packageUrl?: Maybe<Scalars['String']['output']>;\n publishedAt?: Maybe<Scalars['DateTime']['output']>;\n releaseNotes?: Maybe<Scalars['String']['output']>;\n requiredScopes: Array<Scalars['String']['output']>;\n status: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n version: Scalars['String']['output'];\n};\n\nexport type ApproveWaitlistInput = {\n id: Scalars['ID']['input'];\n};\n\nexport enum ArticleStatus {\n Archived = 'ARCHIVED',\n Draft = 'DRAFT',\n Published = 'PUBLISHED',\n Review = 'REVIEW'\n}\n\n/** Result of assigning the Authenticated User role */\nexport type AssignAuthenticatedUserRoleResult = {\n __typename?: 'AssignAuthenticatedUserRoleResult';\n /** The assignment ID */\n assignmentId?: Maybe<Scalars['String']['output']>;\n /** Message describing the result */\n message: Scalars['String']['output'];\n /** The role ID that was assigned */\n roleId?: Maybe<Scalars['String']['output']>;\n /** Whether the operation was successful */\n success: Scalars['Boolean']['output'];\n};\n\nexport type AssignEntitlementSeatInput = {\n assigneeId: Scalars['String']['input'];\n entitlementId: Scalars['ID']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n};\n\n/** Input for assigning a role to an actor */\nexport type AssignRoleInput = {\n actorId: Scalars['String']['input'];\n actorType: ActorType;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n roleId: Scalars['ID']['input'];\n scopeId: Scalars['String']['input'];\n scopeResourceId?: InputMaybe<Scalars['String']['input']>;\n scopeResourceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AssignSeatInput = {\n assigneeEmail?: InputMaybe<Scalars['String']['input']>;\n assigneeUserId: Scalars['String']['input'];\n entitlementId: Scalars['ID']['input'];\n role?: InputMaybe<LicenseSeatRole>;\n};\n\nexport type AttachMediaToStepInput = {\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n mediaId: Scalars['ID']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n position: MediaPosition;\n stepId: Scalars['ID']['input'];\n};\n\nexport type AuditLog = {\n __typename?: 'AuditLog';\n action: Scalars['String']['output'];\n actorId: Scalars['ID']['output'];\n actorType: Scalars['String']['output'];\n changes?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n resource: Scalars['String']['output'];\n resourceId?: Maybe<Scalars['ID']['output']>;\n tenantId: Scalars['ID']['output'];\n userAgent?: Maybe<Scalars['String']['output']>;\n};\n\nexport type AuditLogConnection = {\n __typename?: 'AuditLogConnection';\n edges: Array<AuditLogEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type AuditLogEdge = {\n __typename?: 'AuditLogEdge';\n cursor: Scalars['String']['output'];\n node: AuditLog;\n};\n\n/** Filter for querying audit logs */\nexport type AuditLogFilterInput = {\n action?: InputMaybe<Scalars['String']['input']>;\n actorId?: InputMaybe<Scalars['String']['input']>;\n actorType?: InputMaybe<ActorType>;\n allowed?: InputMaybe<Scalars['Boolean']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type AuthContext = {\n deviceId?: InputMaybe<Scalars['String']['input']>;\n ipAddress?: InputMaybe<Scalars['String']['input']>;\n userAgent?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type AuthMethod = {\n __typename?: 'AuthMethod';\n enabled: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n requiresMFA?: Maybe<Scalars['Boolean']['output']>;\n type: AuthType;\n};\n\nexport type AuthMethodConfig = {\n __typename?: 'AuthMethodConfig';\n config?: Maybe<Scalars['JSON']['output']>;\n enabled: Scalars['Boolean']['output'];\n type: AuthType;\n};\n\nexport type AuthMethodConfigInput = {\n magicLinkExpiry?: InputMaybe<Scalars['Int']['input']>;\n mfaMethod?: InputMaybe<MfaMethod>;\n mfaRequired?: InputMaybe<Scalars['Boolean']['input']>;\n oauthClientId?: InputMaybe<Scalars['String']['input']>;\n oauthClientSecret?: InputMaybe<Scalars['String']['input']>;\n oauthRedirectUri?: InputMaybe<Scalars['String']['input']>;\n oidcClientId?: InputMaybe<Scalars['String']['input']>;\n oidcClientSecret?: InputMaybe<Scalars['String']['input']>;\n oidcIssuer?: InputMaybe<Scalars['String']['input']>;\n samlCertificate?: InputMaybe<Scalars['String']['input']>;\n samlEntityId?: InputMaybe<Scalars['String']['input']>;\n samlSsoUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * Authentication response with optional MFA challenge support\n * When requiresMFA is true, user/tokens will be null until MFA verification\n */\nexport type AuthPayload = {\n __typename?: 'AuthPayload';\n accessToken?: Maybe<Scalars['String']['output']>;\n expiresIn?: Maybe<Scalars['Int']['output']>;\n mfaChallengeId?: Maybe<Scalars['String']['output']>;\n mfaMethod?: Maybe<MfaMethod>;\n refreshToken?: Maybe<Scalars['String']['output']>;\n requiresMFA?: Maybe<Scalars['Boolean']['output']>;\n user?: Maybe<User>;\n};\n\nexport type AuthResult = {\n __typename?: 'AuthResult';\n error?: Maybe<Scalars['String']['output']>;\n expiresIn?: Maybe<Scalars['Int']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n mfaChallengeId?: Maybe<Scalars['String']['output']>;\n refreshToken?: Maybe<Scalars['String']['output']>;\n requiresMFA?: Maybe<Scalars['Boolean']['output']>;\n sessionId?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n token?: Maybe<Scalars['String']['output']>;\n user?: Maybe<User>;\n};\n\nexport type AuthStrategyHealth = {\n __typename?: 'AuthStrategyHealth';\n healthy: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n type: AuthType;\n};\n\nexport enum AuthType {\n ApiKey = 'API_KEY',\n Jwt = 'JWT',\n MagicLink = 'MAGIC_LINK',\n Mfa = 'MFA',\n Oauth = 'OAUTH',\n Oidc = 'OIDC',\n Saml = 'SAML'\n}\n\nexport type AuthenticateAppInput = {\n clientId: Scalars['String']['input'];\n clientSecret: Scalars['String']['input'];\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type AuthenticateInput = {\n credentials: Scalars['JSON']['input'];\n type: AuthType;\n};\n\nexport enum AutomationStatus {\n Active = 'ACTIVE',\n Completed = 'COMPLETED',\n Exited = 'EXITED',\n Paused = 'PAUSED'\n}\n\nexport type AutomationStep = {\n __typename?: 'AutomationStep';\n automationId: Scalars['String']['output'];\n config: Scalars['JSON']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n stepNumber: Scalars['Int']['output'];\n stepType: AutomationStepType;\n};\n\nexport enum AutomationStepType {\n AddToList = 'ADD_TO_LIST',\n Condition = 'CONDITION',\n RemoveFromList = 'REMOVE_FROM_LIST',\n SendEmail = 'SEND_EMAIL',\n UpdateField = 'UPDATE_FIELD',\n Wait = 'WAIT'\n}\n\nexport type AutomationSubscriber = {\n __typename?: 'AutomationSubscriber';\n automationId: Scalars['String']['output'];\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n currentStep: Scalars['Int']['output'];\n enteredAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n lastProcessedAt?: Maybe<Scalars['DateTime']['output']>;\n status: AutomationStatus;\n subscriberId: Scalars['String']['output'];\n};\n\nexport enum BackoffStrategy {\n Exponential = 'EXPONENTIAL',\n ExponentialWithJitter = 'EXPONENTIAL_WITH_JITTER',\n Fixed = 'FIXED',\n Linear = 'LINEAR'\n}\n\nexport type BatchNotificationResult = {\n __typename?: 'BatchNotificationResult';\n batchId: Scalars['String']['output'];\n results: Scalars['JSON']['output'];\n totalFailed: Scalars['Int']['output'];\n totalRequested: Scalars['Int']['output'];\n totalTriggered: Scalars['Int']['output'];\n};\n\nexport type BatchOperationResult = {\n __typename?: 'BatchOperationResult';\n count: Scalars['Int']['output'];\n failedIds?: Maybe<Array<Scalars['ID']['output']>>;\n success: Scalars['Boolean']['output'];\n};\n\n/** BillingAccount entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference BillingAccount by id. */\nexport type BillingAccount = {\n __typename?: 'BillingAccount';\n /** The billing addresses associated with this billing account */\n billingAddresses?: Maybe<Array<Maybe<BillingAddress>>>;\n /** Billing-specific email (for invoices) */\n billingEmail?: Maybe<Scalars['String']['output']>;\n /** Contact phone number for the billing account */\n contactNumber?: Maybe<Scalars['String']['output']>;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** When the billing account was created */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** Credits available in the billing account */\n creditAmount?: Maybe<Scalars['Float']['output']>;\n /** The credit transactions for this billing account */\n creditTransactions?: Maybe<Array<Maybe<CreditTransaction>>>;\n /** Default currency for the account */\n currency?: Maybe<Scalars['String']['output']>;\n /** Default payment method ID */\n defaultPaymentMethod?: Maybe<Scalars['String']['output']>;\n /** Contact email for the billing account */\n email?: Maybe<Scalars['String']['output']>;\n /** The unique identifier for the BillingAccount */\n id?: Maybe<Scalars['ID']['output']>;\n /** Whether the billing account is active */\n isActive?: Maybe<Scalars['Boolean']['output']>;\n /** Whether this is the default billing account for the org (only one per org) */\n isDefault?: Maybe<Scalars['Boolean']['output']>;\n /** Additional metadata */\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** The name of the billing account */\n name?: Maybe<Scalars['String']['output']>;\n /** The org ID this billing account belongs to */\n orgId?: Maybe<Scalars['String']['output']>;\n /** The payment methods associated with this billing account */\n paymentMethods?: Maybe<Array<Maybe<PaymentMethod>>>;\n /** The quota assignments for this billing account (pooled quotas) */\n quotaAssignments?: Maybe<Array<Maybe<QuotaAssignment>>>;\n /** Razorpay customer ID */\n razorpayCustomerId?: Maybe<Scalars['String']['output']>;\n /** Stripe customer ID */\n stripeCustomerId?: Maybe<Scalars['String']['output']>;\n /** The subscriptions associated with this billing account */\n subscriptions?: Maybe<Array<Maybe<BillingSubscription>>>;\n /** Tax ID / VAT number */\n taxId?: Maybe<Scalars['String']['output']>;\n /** The transactions associated with this billing account */\n transactions?: Maybe<Array<Maybe<Transaction>>>;\n /** When the billing account was last updated */\n updatedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\n/** Complete usage summary for a billing account */\nexport type BillingAccountQuotasSummary = {\n __typename?: 'BillingAccountQuotasSummary';\n billingAccountId: Scalars['ID']['output'];\n /** Pooled quotas (POOLED) - shared across all subscriptions */\n pooledQuotas: Array<QuotaAssignmentUsageSummary>;\n /** Subscription quotas (PRODUCT_SPECIFIC) */\n subscriptionQuotas: Array<QuotaAssignmentUsageSummary>;\n /** Total limit across all quotas */\n totalLimit: Scalars['Float']['output'];\n /** Total usage across all quotas */\n totalUsage: Scalars['Float']['output'];\n};\n\nexport type BillingAddress = {\n __typename?: 'BillingAddress';\n billingAccount?: Maybe<BillingAccount>;\n billingAccountId?: Maybe<Scalars['String']['output']>;\n city: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n country: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n line1: Scalars['String']['output'];\n line2?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n postalCode: Scalars['String']['output'];\n state?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type BillingDiscount = {\n __typename?: 'BillingDiscount';\n code: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n maxUses?: Maybe<Scalars['Int']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n transactions: Array<Transaction>;\n type: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n usedCount: Scalars['Int']['output'];\n validFrom: Scalars['DateTime']['output'];\n validUntil?: Maybe<Scalars['DateTime']['output']>;\n value: Scalars['Float']['output'];\n};\n\nexport enum BillingInterval {\n Monthly = 'MONTHLY',\n Quarterly = 'QUARTERLY',\n Yearly = 'YEARLY'\n}\n\nexport type BillingNotification = {\n __typename?: 'BillingNotification';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n message: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n sentAt?: Maybe<Scalars['DateTime']['output']>;\n type: Scalars['String']['output'];\n};\n\nexport type BillingOrder = {\n __typename?: 'BillingOrder';\n billingAccountId?: Maybe<Scalars['String']['output']>;\n callbackAttempts?: Maybe<Scalars['Int']['output']>;\n callbackLastAttemptAt?: Maybe<Scalars['DateTime']['output']>;\n callbackLastError?: Maybe<Scalars['String']['output']>;\n /** Callback status tracking for manual retry/monitoring */\n callbackStatus?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n externalService: Scalars['String']['output'];\n /** External order ID from the service (e.g., \"store-order-12345\") */\n id: Scalars['ID']['output'];\n items: Scalars['JSON']['output'];\n /** Tax is calculated at payment time and stored in Transaction/Payment, not BillingOrder. Tax info can be found in metadata.paymentTaxAmount, metadata.paymentTaxRate, metadata.paymentTotal */\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n status: BillingOrderStatus;\n subtotal: Scalars['Float']['output'];\n};\n\nexport type BillingOrderItemInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n quantity: Scalars['Int']['input'];\n recurringBillingPlanId?: InputMaybe<Scalars['String']['input']>;\n unitPrice: Scalars['Float']['input'];\n};\n\nexport enum BillingOrderStatus {\n Canceled = 'CANCELED',\n Completed = 'COMPLETED',\n Created = 'CREATED',\n Expired = 'EXPIRED',\n Failed = 'FAILED',\n PaymentPending = 'PAYMENT_PENDING'\n}\n\nexport type BillingPaginationInput = {\n /** Cursor for cursor-based pagination */\n cursor?: InputMaybe<Scalars['String']['input']>;\n /** Maximum number of items to return */\n limit?: InputMaybe<Scalars['Int']['input']>;\n /** Number of items to skip */\n offset?: InputMaybe<Scalars['Int']['input']>;\n /** Page number for offset-based pagination */\n page?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type BillingSubscription = {\n __typename?: 'BillingSubscription';\n addonSubscriptions: Array<AddonSubscription>;\n autoRenewal?: Maybe<Scalars['Boolean']['output']>;\n billingAccount?: Maybe<BillingAccount>;\n billingAccountId: Scalars['ID']['output'];\n canceledAt?: Maybe<Scalars['DateTime']['output']>;\n canceledBy?: Maybe<Scalars['String']['output']>;\n cancellationReason?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n endDate: Scalars['DateTime']['output'];\n history: Array<SubscriptionHistory>;\n id: Scalars['ID']['output'];\n lastBillingDate?: Maybe<Scalars['DateTime']['output']>;\n lastRenewalDate?: Maybe<Scalars['DateTime']['output']>;\n lastSeatChangeAt?: Maybe<Scalars['DateTime']['output']>;\n nextBillingDate?: Maybe<Scalars['DateTime']['output']>;\n paymentGateway?: Maybe<Scalars['String']['output']>;\n plan?: Maybe<Plan>;\n planId: Scalars['ID']['output'];\n quotas: Array<QuotaAssignment>;\n razorpaySubscriptionId?: Maybe<Scalars['String']['output']>;\n recurrence: Scalars['Boolean']['output'];\n seatCount?: Maybe<Scalars['Int']['output']>;\n startDate: Scalars['DateTime']['output'];\n status: SubscriptionStatus;\n stripeSubscriptionId?: Maybe<Scalars['String']['output']>;\n transactions: Array<Transaction>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type BillingWebhookLog = {\n __typename?: 'BillingWebhookLog';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n error?: Maybe<Scalars['String']['output']>;\n event: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n payload: Scalars['JSON']['output'];\n processed: Scalars['Boolean']['output'];\n provider: Scalars['String']['output'];\n};\n\nexport type BounceStats = {\n __typename?: 'BounceStats';\n bounceRate: Scalars['Float']['output'];\n hardBounces: Scalars['Int']['output'];\n softBounces: Scalars['Int']['output'];\n totalBounces: Scalars['Int']['output'];\n};\n\nexport enum BounceType {\n Complaint = 'COMPLAINT',\n Hard = 'HARD',\n Soft = 'SOFT'\n}\n\nexport type BrowseProductsInput = {\n filterPricing?: InputMaybe<Array<Scalars['String']['input']>>;\n filterTags?: InputMaybe<Array<Scalars['String']['input']>>;\n filterTypes?: InputMaybe<Array<Scalars['String']['input']>>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n searchTerm?: InputMaybe<Scalars['String']['input']>;\n sortBy?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Comprehensive browse input combining filters, sorting, and pagination */\nexport type BrowseStoreInput = {\n /** All filters (search is a filter too - all combine with AND logic) */\n filter?: InputMaybe<StoreFilterInput>;\n /** Pagination options */\n pagination?: InputMaybe<StorePaginationInput>;\n /** Sort order (defaults to RELEVANCE when search is provided, NEWEST otherwise) */\n sortBy?: InputMaybe<StoreSortBy>;\n};\n\n/** Result type for paginated store browsing */\nexport type BrowseStoreResult = {\n __typename?: 'BrowseStoreResult';\n /** Available filter facets based on current results */\n facets?: Maybe<StoreFacets>;\n /** Whether there are more results after this page */\n hasMore: Scalars['Boolean']['output'];\n /** Cursor for next page (for cursor-based pagination) */\n nextCursor?: Maybe<Scalars['String']['output']>;\n /** List of products matching the filters */\n products: Array<StoreProduct>;\n /** Total count of matching products (for pagination UI) */\n totalCount: Scalars['Int']['output'];\n};\n\n/** Input for delivering the same notification to multiple recipients */\nexport type BulkChannelDeliveryInput = {\n /** Channel connection ID to use (optional - uses default if not provided) */\n connectionId?: InputMaybe<Scalars['ID']['input']>;\n /** Notification content (same for all recipients) */\n content: ChannelDeliveryContentInput;\n /** Optional reference to originating notification in notification-svc */\n notificationId?: InputMaybe<Scalars['ID']['input']>;\n /** Delivery options (priority, scheduling, retry policy) */\n options?: InputMaybe<ChannelDeliveryOptionsInput>;\n /** Organization ID for multi-tenancy */\n organizationId: Scalars['ID']['input'];\n /** Target delivery platform (EMAIL, SMS, PUSH, SLACK, TEAMS, etc.) */\n platform: ChannelPlatform;\n /** List of recipient identifiers (same format as single delivery) */\n recipients: Array<Scalars['String']['input']>;\n};\n\n/** Result of bulk notification delivery */\nexport type BulkChannelDeliveryResult = {\n __typename?: 'BulkChannelDeliveryResult';\n /** Number of failed deliveries */\n failedCount: Scalars['Int']['output'];\n /** Individual results for each recipient */\n results: Array<ChannelDeliveryResult>;\n /** Number of successful deliveries */\n successCount: Scalars['Int']['output'];\n /** Total number of recipients in the batch */\n totalCount: Scalars['Int']['output'];\n};\n\nexport type BulkOperationError = {\n __typename?: 'BulkOperationError';\n error: Scalars['String']['output'];\n keyId?: Maybe<Scalars['String']['output']>;\n languageCode?: Maybe<Scalars['String']['output']>;\n};\n\nexport type BulkOperationFilter = {\n filter?: InputMaybe<JobFilterInput>;\n scheduleIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n};\n\nexport type BulkOperationResult = {\n __typename?: 'BulkOperationResult';\n errors: Array<BulkOperationError>;\n failureCount: Scalars['Int']['output'];\n success: Scalars['Boolean']['output'];\n successCount: Scalars['Int']['output'];\n};\n\nexport type BulkSetUserFeatureFlagPreferenceInput = {\n enabled: Scalars['Boolean']['input'];\n featureFlagIds: Array<Scalars['String']['input']>;\n workspaceId: Scalars['String']['input'];\n};\n\nexport type BulkTranslationInput = {\n keyId: Scalars['String']['input'];\n languageCode: Scalars['String']['input'];\n pluralForms?: InputMaybe<Scalars['JSON']['input']>;\n value: Scalars['String']['input'];\n};\n\n/** Input for tax calculation preview */\nexport type CalculateTaxInput = {\n /** Amount in USD (base currency) */\n amount: Scalars['Float']['input'];\n /** Billing account ID (for billing address lookup) */\n billingAccountId: Scalars['ID']['input'];\n /** Target currency for display */\n currency: Scalars['String']['input'];\n};\n\n/** Input for canceling a subscription */\nexport type CancelSubscriptionInput = {\n /** Optional user ID who initiated the cancellation */\n canceledBy?: InputMaybe<Scalars['String']['input']>;\n /** Optional reason for cancellation */\n reason?: InputMaybe<Scalars['String']['input']>;\n /** The subscription ID to cancel */\n subscriptionId: Scalars['ID']['input'];\n};\n\nexport type CannedResponse = {\n __typename?: 'CannedResponse';\n category?: Maybe<Scalars['String']['output']>;\n content: Scalars['String']['output'];\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n shortcut?: Maybe<Scalars['String']['output']>;\n tags: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n usageCount: Scalars['Int']['output'];\n};\n\nexport type CannedResponseConnection = {\n __typename?: 'CannedResponseConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<CannedResponse>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type CannedResponseFilterInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextFilterInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/** Shopping cart for collecting products before checkout */\nexport type Cart = {\n __typename?: 'Cart';\n /** When the cart was created */\n createdAt: Scalars['DateTime']['output'];\n /** Currency for the cart (ISO 4217 code) */\n currency: Scalars['String']['output'];\n /** Summary of digital items in the cart */\n digitalItems: CartItemSummary;\n /** When the cart expires */\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n /** Whether the cart is empty */\n isEmpty: Scalars['Boolean']['output'];\n /** Total number of items in the cart */\n itemCount: Scalars['Int']['output'];\n /** Items in the cart */\n items: Array<CartItem>;\n /** Last activity timestamp */\n lastActivityAt: Scalars['DateTime']['output'];\n /** User notes for the order */\n notes?: Maybe<Scalars['String']['output']>;\n /** Organization ID for the cart */\n organizationId?: Maybe<Scalars['String']['output']>;\n /** Summary of physical items in the cart */\n physicalItems: CartPhysicalItemSummary;\n /** Whether the cart has any physical items requiring shipping */\n requiresShipping: Scalars['Boolean']['output'];\n /** Session ID for guest carts */\n sessionId?: Maybe<Scalars['String']['output']>;\n /** Current status of the cart */\n status: CartStatus;\n /** Cart subtotal */\n subtotal: Scalars['Float']['output'];\n /** Final total */\n total: Scalars['Float']['output'];\n /** When the cart was last updated */\n updatedAt: Scalars['DateTime']['output'];\n /** User who owns this cart (authenticated users) */\n userId?: Maybe<Scalars['String']['output']>;\n};\n\n/** Error type for cart operations */\nexport type CartError = {\n __typename?: 'CartError';\n /** Error code for programmatic handling */\n code: Scalars['String']['output'];\n /** Field that caused the error (if applicable) */\n field?: Maybe<Scalars['String']['output']>;\n /** Error message */\n message: Scalars['String']['output'];\n};\n\n/** Individual item in a shopping cart */\nexport type CartItem = {\n __typename?: 'CartItem';\n /** When the item was added */\n addedAt: Scalars['DateTime']['output'];\n /** Cart this item belongs to */\n cartId: Scalars['String']['output'];\n /** Original price before discount (for display) */\n compareAtPrice?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n /** Whether this item is available (in stock for physical) */\n isAvailable: Scalars['Boolean']['output'];\n /** Type of item (DIGITAL, PHYSICAL, or BUNDLE) */\n itemType: CartItemType;\n /** Maximum quantity that can be added (based on stock) */\n maxQuantity?: Maybe<Scalars['Int']['output']>;\n /** The product this item refers to */\n product?: Maybe<StoreProduct>;\n /** Cached product icon URL */\n productIcon?: Maybe<Scalars['String']['output']>;\n /** Product ID */\n productId: Scalars['String']['output'];\n /** Cached product name */\n productName: Scalars['String']['output'];\n /** Quantity of this item */\n quantity: Scalars['Int']['output'];\n /** Stock status message (for physical products) */\n stockStatus?: Maybe<Scalars['String']['output']>;\n /** Line item subtotal (quantity * unitPrice) */\n subtotal: Scalars['Float']['output'];\n /** Price per unit */\n unitPrice: Scalars['Float']['output'];\n /** When the item was last updated */\n updatedAt: Scalars['DateTime']['output'];\n /** The variant (for physical products) */\n variant?: Maybe<ProductVariant>;\n /** Variant ID (for physical products with variants) */\n variantId?: Maybe<Scalars['String']['output']>;\n /** Cached variant name (e.g., \"Large / Blue\") */\n variantName?: Maybe<Scalars['String']['output']>;\n /** Target workspace for installation (for digital products) */\n workspaceId?: Maybe<Scalars['String']['output']>;\n};\n\n/** Payload for cart item operations */\nexport type CartItemPayload = {\n __typename?: 'CartItemPayload';\n /** The updated cart */\n cart?: Maybe<Cart>;\n /** The cart item if operation was successful */\n cartItem?: Maybe<CartItem>;\n /** Errors if operation failed */\n errors?: Maybe<Array<CartError>>;\n};\n\n/** Summary of cart items by type */\nexport type CartItemSummary = {\n __typename?: 'CartItemSummary';\n /** Number of items of this type */\n count: Scalars['Int']['output'];\n /** Subtotal for items of this type */\n subtotal: Scalars['Float']['output'];\n};\n\n/** Type of item in the cart */\nexport enum CartItemType {\n /** Bundle containing multiple products */\n Bundle = 'BUNDLE',\n /** Digital product (app, template, integration) */\n Digital = 'DIGITAL',\n /** Physical product (merchandise, hardware) */\n Physical = 'PHYSICAL'\n}\n\n/** Payload for cart operations */\nexport type CartPayload = {\n __typename?: 'CartPayload';\n /** The cart if operation was successful */\n cart?: Maybe<Cart>;\n /** Errors if operation failed */\n errors?: Maybe<Array<CartError>>;\n};\n\n/** Summary of physical items with shipping info */\nexport type CartPhysicalItemSummary = {\n __typename?: 'CartPhysicalItemSummary';\n /** Number of physical items */\n count: Scalars['Int']['output'];\n /** Whether shipping is required */\n requiresShipping: Scalars['Boolean']['output'];\n /** Subtotal for physical items */\n subtotal: Scalars['Float']['output'];\n /** Total weight in grams */\n totalWeight: Scalars['Float']['output'];\n};\n\n/** Status of the shopping cart */\nexport enum CartStatus {\n /** Cart has been abandoned (no activity for configured period) */\n Abandoned = 'ABANDONED',\n /** Cart is currently active and in use */\n Active = 'ACTIVE',\n /** Cart has been converted to an order */\n Converted = 'CONVERTED',\n /** Cart has expired */\n Expired = 'EXPIRED',\n /** Cart was merged into another cart (e.g., after login) */\n Merged = 'MERGED'\n}\n\nexport type CategoryBreakdown = {\n __typename?: 'CategoryBreakdown';\n category: SupportTicketCategory;\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n};\n\n/** Filter for querying change logs */\nexport type ChangeLogFilterInput = {\n changeType?: InputMaybe<RbacChangeType>;\n changedBy?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n entityId?: InputMaybe<Scalars['String']['input']>;\n entityType?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type ChangePasswordInput = {\n currentPassword: Scalars['String']['input'];\n newPassword: Scalars['String']['input'];\n};\n\n/** Channel represents a configured connection to a communication platform */\nexport type Channel = {\n __typename?: 'Channel';\n /**\n * Specific adapter type (SENDGRID, AWS_SES, TWILIO, etc.)\n * Used for priority-based fallback delivery.\n */\n adapterType?: Maybe<AdapterType>;\n /**\n * Channel type discriminator — determines delivery behaviour.\n * NOTIFICATION (EMAIL, SMS): outbound-only, adapter failover supported.\n * COMMUNICATION (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK): bi-directional.\n */\n channelType: ChannelType;\n /**\n * Typed channel configuration.\n * Returns structured configuration with defaults applied.\n */\n config: ChannelConfig;\n /** Channel connection (authenticated credentials) */\n connection?: Maybe<ChannelConnection>;\n /**\n * Real-time connection health (system-monitored: HEALTHY, DEGRADED, UNHEALTHY).\n * Updated automatically based on API calls and health checks.\n */\n connectionHealth: ConnectionHealth;\n /** Number of consecutive API failures (resets to 0 on success) */\n consecutiveFailures: Scalars['Int']['output'];\n /** Operation context (tenantId, userId, etc.) */\n context?: Maybe<OperationContext>;\n /** Creation timestamp */\n createdAt: Scalars['DateTime']['output'];\n /** Creator user ID (opaque reference) */\n createdBy: Scalars['ID']['output'];\n /** Soft delete timestamp */\n deletedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Optional description */\n description?: Maybe<Scalars['String']['output']>;\n /** Error message if connection is unhealthy */\n healthCheckError?: Maybe<Scalars['String']['output']>;\n /** Unique channel ID */\n id: Scalars['ID']['output'];\n /** Whether the channel has an active connection */\n isConnected: Scalars['Boolean']['output'];\n /** Last time health was checked */\n lastHealthCheckAt?: Maybe<Scalars['DateTime']['output']>;\n /** Number of messages sent in the last 24 hours */\n messageCount24h: Scalars['Int']['output'];\n /** Channel name */\n name: Scalars['String']['output'];\n /** On behalf of user/system ID (opaque reference) */\n onBehalfOf: Scalars['ID']['output'];\n /** Organization ID (opaque reference - no federation relation) */\n organizationId: Scalars['ID']['output'];\n /** Communication platform (Slack, Teams, Discord, etc.) */\n platform: ChannelPlatform;\n /**\n * Platform-specific configuration (webhook URLs, channel IDs, etc.)\n * Raw JSON for backward compatibility.\n */\n platformConfig?: Maybe<Scalars['JSON']['output']>;\n /**\n * Priority for fallback ordering (lower = higher priority, tried first).\n * Example: SendGrid(1) → AWS SES(2) → Azure ACS(3)\n * All ACTIVE channels are included in the failover chain.\n */\n priority: Scalars['Int']['output'];\n /** Current channel status (admin-controlled: ACTIVE, INACTIVE, etc.) */\n status: ChannelStatus;\n /** Number of times this channel has been triggered (e.g., for workflows, automations) */\n triggerCount: Scalars['Int']['output'];\n /** Last update timestamp */\n updatedAt: Scalars['DateTime']['output'];\n /** Platform connections for users on this channel */\n users: Array<UserPlatformConnection>;\n};\n\n/** Authentication method for channel connection */\nexport enum ChannelAuthType {\n /** API Key authentication */\n ApiKey = 'API_KEY',\n /** Bot token (Discord, Slack) */\n BotToken = 'BOT_TOKEN',\n /** OAuth 2.0 flow (Slack, Teams, Discord) */\n Oauth2 = 'OAUTH2',\n /** SMTP/IMAP credentials (Email) */\n SmtpImap = 'SMTP_IMAP',\n /** Webhook-only (no authentication) */\n Webhook = 'WEBHOOK'\n}\n\n/**\n * Channel configuration settings.\n * Strongly-typed configuration instead of generic JSON.\n */\nexport type ChannelConfig = {\n __typename?: 'ChannelConfig';\n /** Default workflow ID to execute for incoming messages (if any) */\n defaultWorkflowId?: Maybe<Scalars['ID']['output']>;\n /** Enable presence tracking for users on this channel */\n enablePresence: Scalars['Boolean']['output'];\n /** Enable emoji reaction support (if platform supports it) */\n enableReactions: Scalars['Boolean']['output'];\n /** Enable threaded reply support (if platform supports it) */\n enableThreading: Scalars['Boolean']['output'];\n /** Enable typing indicator support (if platform supports it) */\n enableTypingIndicators: Scalars['Boolean']['output'];\n /** Platform-specific settings (JSON for flexibility) */\n platformSettings?: Maybe<Scalars['JSON']['output']>;\n /** Rate limit: maximum messages per hour for this channel. */\n rateLimitPerHour?: Maybe<Scalars['Int']['output']>;\n /**\n * Rate limit: maximum messages per minute for this channel.\n * Platform-specific limits apply (e.g., Slack: 60/min, WhatsApp: varies).\n */\n rateLimitPerMinute?: Maybe<Scalars['Int']['output']>;\n /** Webhook URL for receiving platform events */\n webhookUrl?: Maybe<Scalars['String']['output']>;\n};\n\n/** Input for updating channel configuration */\nexport type ChannelConfigInput = {\n /** Default workflow ID for incoming messages */\n defaultWorkflowId?: InputMaybe<Scalars['ID']['input']>;\n /** Enable presence tracking */\n enablePresence?: InputMaybe<Scalars['Boolean']['input']>;\n /** Enable emoji reaction support */\n enableReactions?: InputMaybe<Scalars['Boolean']['input']>;\n /** Enable threaded reply support */\n enableThreading?: InputMaybe<Scalars['Boolean']['input']>;\n /** Enable typing indicators */\n enableTypingIndicators?: InputMaybe<Scalars['Boolean']['input']>;\n /** Platform-specific settings */\n platformSettings?: InputMaybe<Scalars['JSON']['input']>;\n /** Rate limit: maximum messages per hour */\n rateLimitPerHour?: InputMaybe<Scalars['Int']['input']>;\n /** Rate limit: maximum messages per minute */\n rateLimitPerMinute?: InputMaybe<Scalars['Int']['input']>;\n /** Webhook URL */\n webhookUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * ChannelConnection represents an authenticated connection to a platform\n * All credentials are encrypted with AES-256-GCM\n */\nexport type ChannelConnection = {\n __typename?: 'ChannelConnection';\n /** Authentication type used */\n authType: ChannelAuthType;\n /** Associated channel */\n channel: Channel;\n /** Associated channel ID (1:1 relationship) */\n channelId: Scalars['ID']['output'];\n /** Operation context (tenantId, userId, etc.) */\n context?: Maybe<OperationContext>;\n /** Creation timestamp */\n createdAt: Scalars['DateTime']['output'];\n /** Days until token expiration */\n daysUntilExpiry?: Maybe<Scalars['Int']['output']>;\n /** Unique connection ID */\n id: Scalars['ID']['output'];\n /** Whether the connection is currently active */\n isActive: Scalars['Boolean']['output'];\n /** Whether the connection is healthy */\n isHealthy: Scalars['Boolean']['output'];\n /** Last time tokens were refreshed */\n lastRefreshedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Last successful connection test timestamp */\n lastTestedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Whether OAuth tokens need refresh (within 24h of expiry) */\n needsTokenRefresh: Scalars['Boolean']['output'];\n /**\n * Platform-specific metadata (channel IDs, team info, etc.)\n * NOTE: Non-sensitive data only\n */\n platformMetadata?: Maybe<Scalars['JSON']['output']>;\n /** Connection test status message */\n testStatus?: Maybe<Scalars['String']['output']>;\n /** OAuth token expiration (for OAuth flows) */\n tokenExpiresAt?: Maybe<Scalars['DateTime']['output']>;\n /** Last update timestamp */\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Attachment input for channel delivery */\nexport type ChannelDeliveryAttachmentInput = {\n /** Content (Base64 encoded) or URL */\n content: Scalars['String']['input'];\n /** Content type (MIME type) */\n contentType: Scalars['String']['input'];\n /** Filename */\n filename: Scalars['String']['input'];\n /** Whether content is a URL (true) or Base64 encoded data (false) */\n isUrl?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Notification content for channel delivery */\nexport type ChannelDeliveryContentInput = {\n /** Attachments (used for email, MMS, etc.) */\n attachments?: InputMaybe<Array<ChannelDeliveryAttachmentInput>>;\n /** Structured data payload (passed to platform adapters) */\n data?: InputMaybe<Scalars['JSON']['input']>;\n /** HTML content (used for email body) */\n html?: InputMaybe<Scalars['String']['input']>;\n /** Subject line (used for email subject) */\n subject?: InputMaybe<Scalars['String']['input']>;\n /** Template name (for platforms that support templates) */\n templateName?: InputMaybe<Scalars['String']['input']>;\n /** Template variables (for template-based messages) */\n templateVariables?: InputMaybe<Scalars['JSON']['input']>;\n /** Plain text content (used for SMS, push notification body, etc.) */\n text?: InputMaybe<Scalars['String']['input']>;\n /** Title (used for push notification title, in-app notification title) */\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Delivery error details */\nexport type ChannelDeliveryError = {\n __typename?: 'ChannelDeliveryError';\n /** Error code (platform-specific or internal) */\n code: Scalars['String']['output'];\n /** Additional error details */\n details?: Maybe<Scalars['JSON']['output']>;\n /** Human-readable error message */\n message: Scalars['String']['output'];\n /** Whether the error is retryable */\n retryable: Scalars['Boolean']['output'];\n};\n\nexport type ChannelDeliveryEventInput = {\n /** Event ID from channel service */\n channelServiceEventId: Scalars['String']['input'];\n /** Delivery status */\n deliveryStatus: NotificationDeliveryStatus;\n /** Additional event details */\n details?: InputMaybe<Scalars['JSON']['input']>;\n /** External provider ID */\n externalId?: InputMaybe<Scalars['String']['input']>;\n /** Event metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Notification ID in this service */\n notificationId: Scalars['ID']['input'];\n /** Event timestamp */\n timestamp: Scalars['DateTime']['input'];\n};\n\n/** Input for delivering a notification to a single recipient */\nexport type ChannelDeliveryInput = {\n /** Channel connection ID to use (optional - uses default if not provided) */\n connectionId?: InputMaybe<Scalars['ID']['input']>;\n /** Notification content */\n content: ChannelDeliveryContentInput;\n /**\n * Internal Botlit user ID. When provided, the service automatically resolves\n * the user's DM conversation ID from their UserPlatformConnection record and\n * uses it as the delivery recipient. Requires the user to have connected via\n * OAuth (dmAllowed=true) with notificationsEnabled=true.\n *\n * Either `recipient` or `internalUserId` must be provided.\n */\n internalUserId?: InputMaybe<Scalars['ID']['input']>;\n /** Optional reference to originating notification in notification-svc */\n notificationId?: InputMaybe<Scalars['ID']['input']>;\n /** Delivery options (priority, scheduling, retry policy) */\n options?: InputMaybe<ChannelDeliveryOptionsInput>;\n /** Organization ID for multi-tenancy */\n organizationId: Scalars['ID']['input'];\n /** Target delivery platform (EMAIL, SMS, PUSH, SLACK, TEAMS, etc.) */\n platform: ChannelPlatform;\n /**\n * Recipient identifier based on platform:\n * - EMAIL: email address\n * - SMS: phone number (E.164 format)\n * - PUSH: device token\n * - SLACK/TEAMS/DISCORD: user ID or channel ID\n * - WHATSAPP: phone number\n * - WEBHOOK: webhook URL\n * - INAPP: user ID\n *\n * Either `recipient` or `internalUserId` must be provided.\n */\n recipient?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Delivery options for channel delivery */\nexport type ChannelDeliveryOptionsInput = {\n /** Idempotency key (for deduplication) */\n idempotencyKey?: InputMaybe<Scalars['String']['input']>;\n /** Custom metadata to include in delivery tracking */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Delivery priority level */\n priority?: InputMaybe<DeliveryPriority>;\n /** Custom retry policy override */\n retryPolicy?: InputMaybe<ChannelRetryPolicyInput>;\n /** Schedule for later delivery (ISO 8601 timestamp) */\n scheduledAt?: InputMaybe<Scalars['DateTime']['input']>;\n /** Time-to-live in seconds (after which delivery should not be attempted) */\n ttlSeconds?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Result of delivering a single notification */\nexport type ChannelDeliveryResult = {\n __typename?: 'ChannelDeliveryResult';\n /** Error details if delivery failed */\n error?: Maybe<ChannelDeliveryError>;\n /** External ID from the platform (e.g., SendGrid message ID, Twilio SID) */\n externalId?: Maybe<Scalars['String']['output']>;\n /** Internal message ID for tracking */\n messageId?: Maybe<Scalars['ID']['output']>;\n /** Additional metadata from the platform */\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Platform used for delivery */\n platform: ChannelPlatform;\n /** Timestamp when message was sent/queued */\n sentAt?: Maybe<Scalars['DateTime']['output']>;\n /** Current delivery status */\n status: DeliveryStatus;\n /** Whether the delivery was successful (or queued successfully) */\n success: Scalars['Boolean']['output'];\n};\n\n/** Delivery status update event (for subscriptions) */\nexport type ChannelDeliveryStatusUpdate = {\n __typename?: 'ChannelDeliveryStatusUpdate';\n /** Internal message ID */\n messageId: Scalars['ID']['output'];\n /** Additional metadata */\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Notification ID from notification-svc */\n notificationId: Scalars['ID']['output'];\n /** Platform used for delivery */\n platform: ChannelPlatform;\n /** Updated delivery status */\n status: DeliveryStatus;\n /** Timestamp of the status update */\n timestamp: Scalars['DateTime']['output'];\n};\n\n/** Filter input for querying channels */\nexport type ChannelFilterInput = {\n /** Filter by adapter type */\n adapterType?: InputMaybe<AdapterType>;\n /** Filter by channel type (NOTIFICATION or COMMUNICATION) */\n channelType?: InputMaybe<ChannelType>;\n /** Filter by operation context */\n context?: InputMaybe<ContextFilterInput>;\n /** Filter by creator */\n createdBy?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by organization ID */\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by platform */\n platform?: InputMaybe<ChannelPlatform>;\n /** Search by name */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by status */\n status?: InputMaybe<ChannelStatus>;\n};\n\n/** Channel health check result */\nexport type ChannelHealthCheck = {\n __typename?: 'ChannelHealthCheck';\n /** Channel ID */\n channelId: Scalars['ID']['output'];\n /** Error message (if unhealthy) */\n error?: Maybe<Scalars['String']['output']>;\n /** Is the channel healthy */\n isHealthy: Scalars['Boolean']['output'];\n /** Last successful check timestamp */\n lastCheckAt: Scalars['DateTime']['output'];\n /** Platform API response time (ms) */\n responseTimeMs?: Maybe<Scalars['Int']['output']>;\n /** Health status message */\n status: Scalars['String']['output'];\n};\n\n/** Channel health update event emitted when connectionHealth changes. */\nexport type ChannelHealthUpdate = {\n __typename?: 'ChannelHealthUpdate';\n /** Timestamp of the health change */\n changedAt: Scalars['DateTime']['output'];\n /** The full channel object with updated health status */\n channel: Channel;\n /** Channel ID that changed */\n channelId: Scalars['ID']['output'];\n /** Error details if health degraded to UNHEALTHY */\n error?: Maybe<Scalars['String']['output']>;\n /** New health status (after the change) */\n newHealth: ConnectionHealth;\n /** Previous health status (before the change) */\n previousHealth: ConnectionHealth;\n /** Reason for the health change (if available) */\n reason?: Maybe<Scalars['String']['output']>;\n};\n\n/** Channel list response with pagination */\nexport type ChannelList = {\n __typename?: 'ChannelList';\n /** Whether there are more results */\n hasMore: Scalars['Boolean']['output'];\n /** List of channels */\n items: Array<Channel>;\n /** Total count (for pagination) */\n total: Scalars['Int']['output'];\n};\n\nexport type ChannelPaginationInput = {\n cursor?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Supported channel platforms for bi-directional communication */\nexport enum ChannelPlatform {\n /** Discord server integration */\n Discord = 'DISCORD',\n /** Email via SMTP/IMAP/SendGrid/SES/ACS */\n Email = 'EMAIL',\n /** Push notifications via FCM/APNs */\n Push = 'PUSH',\n /** Slack workspace integration */\n Slack = 'SLACK',\n /** SMS via Twilio/AWS SNS */\n Sms = 'SMS',\n /** Microsoft Teams integration */\n Teams = 'TEAMS',\n /** Custom webchat widget */\n Webchat = 'WEBCHAT',\n /** Generic HTTP webhooks */\n Webhook = 'WEBHOOK',\n /** WhatsApp Business API */\n Whatsapp = 'WHATSAPP'\n}\n\n/** Retry policy for channel delivery */\nexport type ChannelRetryPolicyInput = {\n /** Backoff multiplier for exponential backoff */\n backoffMultiplier?: InputMaybe<Scalars['Float']['input']>;\n /** Initial delay in milliseconds before first retry */\n initialDelayMs?: InputMaybe<Scalars['Int']['input']>;\n /** Maximum delay in milliseconds between retries */\n maxDelayMs?: InputMaybe<Scalars['Int']['input']>;\n /** Maximum number of retry attempts */\n maxRetries?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Channel statistics - comprehensive metrics for monitoring and analytics. */\nexport type ChannelStats = {\n __typename?: 'ChannelStats';\n /** Active users (active in last 24 hours) */\n activeUsers: Scalars['Int']['output'];\n /** Average delivery latency in milliseconds */\n averageDeliveryLatencyMs?: Maybe<Scalars['Float']['output']>;\n /** Average webhook processing time in milliseconds */\n averageWebhookProcessingMs?: Maybe<Scalars['Float']['output']>;\n /** Channel ID */\n channelId: Scalars['ID']['output'];\n /** Current connection health status */\n connectionHealth: ConnectionHealth;\n /** Deliveries in the last 7 days */\n deliveriesLast7Days: Scalars['Int']['output'];\n /** Deliveries in the last 24 hours */\n deliveriesLast24Hours: Scalars['Int']['output'];\n /** Delivery success rate (0.0 - 1.0) */\n deliverySuccessRate?: Maybe<Scalars['Float']['output']>;\n /** Failed delivery attempts */\n failedDeliveries: Scalars['Int']['output'];\n /** Last message/delivery timestamp */\n lastActivityAt?: Maybe<Scalars['DateTime']['output']>;\n /** Last successful health check timestamp */\n lastHealthCheckAt?: Maybe<Scalars['DateTime']['output']>;\n /** Total messages/notifications sent (all-time) */\n totalDeliveries: Scalars['Int']['output'];\n /** Total channel users */\n totalUsers: Scalars['Int']['output'];\n /** Uptime percentage in last 24 hours (0.0 - 100.0) */\n uptimeLast24Hours?: Maybe<Scalars['Float']['output']>;\n /** Failed webhook processing count */\n webhooksFailed: Scalars['Int']['output'];\n /** Webhooks received in the last 24 hours */\n webhooksLast24Hours: Scalars['Int']['output'];\n /** Total webhooks received (all-time) */\n webhooksReceived: Scalars['Int']['output'];\n};\n\n/** Channel connection status */\nexport enum ChannelStatus {\n /** Channel is active and operational */\n Active = 'ACTIVE',\n /** Channel is archived (soft deleted) */\n Archived = 'ARCHIVED',\n /** Channel has errors and needs attention */\n Error = 'ERROR',\n /** Channel is inactive (manual disable) */\n Inactive = 'INACTIVE',\n /** Channel is suspended (rate limit, violation) */\n Suspended = 'SUSPENDED'\n}\n\n/**\n * Channel type discriminator — determines delivery behaviour and webhook handling.\n *\n * NOTIFICATION channels (EMAIL, SMS) are outbound-only:\n * - Support priority-based failover across adapters.\n * - No inbound webhook processing.\n * - No DM conversations.\n * - Recipient resolved via externalEmail (email) or externalUserId (phone).\n *\n * COMMUNICATION channels (SLACK, TEAMS, DISCORD, WHATSAPP, WEBCHAT, INAPP, WEBHOOK)\n * are bi-directional:\n * - Inbound webhooks processed and forwarded to conversations-svc.\n * - DM conversations tracked via dmConversationId.\n * - Recipient resolved via dmConversationId set during OAuth / pairing.\n */\nexport enum ChannelType {\n /**\n * Bi-directional platform channels: SLACK, TEAMS, DISCORD,\n * WHATSAPP, WEBCHAT, INAPP, WEBHOOK.\n * Processes inbound webhooks and supports DM conversations.\n */\n Communication = 'COMMUNICATION',\n /**\n * Outbound-only delivery channels: EMAIL, SMS.\n * Supports adapter-level failover (e.g. AWS SES → Azure ACS).\n */\n Notification = 'NOTIFICATION'\n}\n\nexport type Charge = {\n __typename?: 'Charge';\n amount: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n gatewayChargeId?: Maybe<Scalars['String']['output']>;\n gatewayPaymentId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n provider?: Maybe<Scalars['String']['output']>;\n refunds: Array<Refund>;\n status: ChargeStatus;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum ChargeStatus {\n Failed = 'FAILED',\n Pending = 'PENDING',\n Refunded = 'REFUNDED',\n Succeeded = 'SUCCEEDED'\n}\n\nexport enum ChartType {\n EditorsChoice = 'EDITORS_CHOICE',\n NewReleases = 'NEW_RELEASES',\n TopFree = 'TOP_FREE',\n TopGrossing = 'TOP_GROSSING',\n TopPaid = 'TOP_PAID',\n Trending = 'TRENDING'\n}\n\nexport enum ChartWindow {\n Daily = 'DAILY',\n Monthly = 'MONTHLY',\n Weekly = 'WEEKLY'\n}\n\n/** Input for checkout */\nexport type CheckoutInput = {\n /** Billing account ID */\n billingAccountId: Scalars['String']['input'];\n /** Order notes */\n notes?: InputMaybe<Scalars['String']['input']>;\n /** Payment method ID from billing module */\n paymentMethodId: Scalars['String']['input'];\n /** Shipping address ID (required for physical items) */\n shippingAddressId?: InputMaybe<Scalars['String']['input']>;\n /** Selected shipping method ID (required for physical items) */\n shippingMethodId?: InputMaybe<Scalars['String']['input']>;\n /** Target workspace for digital product installation (optional) */\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Payload for checkout operation */\nexport type CheckoutPayload = {\n __typename?: 'CheckoutPayload';\n /** Errors if checkout failed */\n errors?: Maybe<Array<CartError>>;\n /** The created order (if successful) */\n order?: Maybe<StoreOrder>;\n /** Whether checkout was successful */\n success: Scalars['Boolean']['output'];\n};\n\nexport type CircuitBreakerInput = {\n enabled: Scalars['Boolean']['input'];\n failureThreshold: Scalars['Int']['input'];\n halfOpenTimeout: Scalars['Int']['input'];\n timeout: Scalars['Int']['input'];\n};\n\nexport type CircuitBreakerState = {\n __typename?: 'CircuitBreakerState';\n config: Scalars['JSON']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n failureCount: Scalars['Int']['output'];\n halfOpenAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n lastFailureAt?: Maybe<Scalars['DateTime']['output']>;\n lastSuccessAt?: Maybe<Scalars['DateTime']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n openedAt?: Maybe<Scalars['DateTime']['output']>;\n scope: Scalars['String']['output'];\n scopeValue: Scalars['String']['output'];\n state: CircuitState;\n successCount: Scalars['Int']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum CircuitState {\n Closed = 'CLOSED',\n HalfOpen = 'HALF_OPEN',\n Open = 'OPEN'\n}\n\nexport type ComplaintStats = {\n __typename?: 'ComplaintStats';\n complaintRate: Scalars['Float']['output'];\n totalComplaints: Scalars['Int']['output'];\n};\n\nexport type ComplianceAuditLogEntry = {\n __typename?: 'ComplianceAuditLogEntry';\n details: Scalars['String']['output'];\n email: Scalars['String']['output'];\n event: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n ip?: Maybe<Scalars['String']['output']>;\n timestamp: Scalars['DateTime']['output'];\n};\n\n/** Input for configuring tenant settings */\nexport type ConfigureTenantInput = {\n complianceRegion?: InputMaybe<Scalars['String']['input']>;\n customBranding?: InputMaybe<Scalars['JSON']['input']>;\n dataResidency?: InputMaybe<Scalars['String']['input']>;\n features?: InputMaybe<Scalars['JSON']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for configuring workspace routing (admin only) */\nexport type ConfigureWorkspaceInput = {\n endpoint?: InputMaybe<Scalars['String']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n};\n\n/**\n * Real-time health status of a channel's connection.\n * Monitored by the system based on API calls and health checks.\n *\n * - `status` = Admin-controlled (ACTIVE, INACTIVE, ARCHIVED)\n * - `connectionHealth` = System-monitored (HEALTHY, DEGRADED, UNHEALTHY)\n *\n * Example: Channel status = ACTIVE but connectionHealth = UNHEALTHY\n * means admin enabled the channel but the API is down.\n */\nexport enum ConnectionHealth {\n /** Partial failures, high latency, or rate limiting */\n Degraded = 'DEGRADED',\n /** Connection working, all requests succeeding */\n Healthy = 'HEALTHY',\n /** Connection failing, most requests rejected */\n Unhealthy = 'UNHEALTHY',\n /** Never tested or no recent health check */\n Unknown = 'UNKNOWN'\n}\n\n/** Connection status summary */\nexport type ConnectionStatus = {\n __typename?: 'ConnectionStatus';\n /** Connection ID */\n connectionId: Scalars['ID']['output'];\n /** Days until token expiry */\n daysUntilExpiry?: Maybe<Scalars['Int']['output']>;\n /** Is connection active */\n isActive: Scalars['Boolean']['output'];\n /** Is connection healthy */\n isHealthy: Scalars['Boolean']['output'];\n /** Last test timestamp */\n lastTestedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Needs token refresh */\n needsTokenRefresh: Scalars['Boolean']['output'];\n /** Test status message */\n testStatus?: Maybe<Scalars['String']['output']>;\n};\n\n/** Connection test result */\nexport type ConnectionTestResult = {\n __typename?: 'ConnectionTestResult';\n /** Error details (if failed) */\n error?: Maybe<Scalars['String']['output']>;\n /** Test status message */\n message: Scalars['String']['output'];\n /** Platform account info (sanitized) */\n platformInfo?: Maybe<Scalars['JSON']['output']>;\n /** Platform API response time (ms) */\n responseTimeMs?: Maybe<Scalars['Int']['output']>;\n /** Whether the test succeeded */\n success: Scalars['Boolean']['output'];\n};\n\n/** A contact inquiry submitted via a product website contact form. */\nexport type ContactInquiry = {\n __typename?: 'ContactInquiry';\n company?: Maybe<Scalars['String']['output']>;\n convertedTicketId?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n message: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n productId?: Maybe<Scalars['String']['output']>;\n source: Scalars['String']['output'];\n status: ContactInquiryStatus;\n subject: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type ContactInquiryFilterInput = {\n /** Filter by product ID */\n productId?: InputMaybe<Scalars['String']['input']>;\n /** Search in name, email, or subject */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by status */\n status?: InputMaybe<ContactInquiryStatus>;\n};\n\nexport type ContactInquiryList = {\n __typename?: 'ContactInquiryList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<ContactInquiry>;\n total: Scalars['Int']['output'];\n};\n\nexport type ContactInquiryReplyResult = {\n __typename?: 'ContactInquiryReplyResult';\n message?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\nexport enum ContactInquiryStatus {\n Archived = 'ARCHIVED',\n Converted = 'CONVERTED',\n New = 'NEW',\n Reviewed = 'REVIEWED',\n Spam = 'SPAM'\n}\n\nexport type ContentPageFilterInput = {\n /** Filter by published state */\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n /** Search in title or slug */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by slug */\n slug?: InputMaybe<Scalars['String']['input']>;\n /** Filter by visibility level */\n visibility?: InputMaybe<ContentVisibility>;\n};\n\nexport enum ContentVisibility {\n Authenticated = 'AUTHENTICATED',\n Internal = 'INTERNAL',\n Public = 'PUBLIC'\n}\n\n/** Context filter input for querying records by context. Supports exact match filtering on context fields. */\nexport type ContextFilterInput = {\n /** Filter by organization ID */\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by project ID */\n projectId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by user ID */\n userId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by workspace ID */\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/** Operation context for filtering and scoping data. All fields are optional and can be extended as needed. */\nexport type ContextInput = {\n /** Additional custom context as JSON */\n custom?: InputMaybe<Scalars['JSON']['input']>;\n /** Organization ID for organization-level scoping */\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n /** Project ID for project-level scoping */\n projectId?: InputMaybe<Scalars['ID']['input']>;\n /** User ID for user-level scoping */\n userId?: InputMaybe<Scalars['ID']['input']>;\n /** Workspace ID for workspace-level scoping */\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport type ContextWidgetConversationPayload = {\n __typename?: 'ContextWidgetConversationPayload';\n conversationId: Scalars['ID']['output'];\n created: Scalars['Boolean']['output'];\n description?: Maybe<Scalars['String']['output']>;\n settings?: Maybe<Scalars['JSON']['output']>;\n threadKey: Scalars['String']['output'];\n title?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Coupon = {\n __typename?: 'Coupon';\n applicableProducts: Array<Scalars['String']['output']>;\n applicableServices: Array<Scalars['String']['output']>;\n campaignId?: Maybe<Scalars['String']['output']>;\n campaignName?: Maybe<Scalars['String']['output']>;\n code: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n currency?: Maybe<Scalars['String']['output']>;\n currentUses: Scalars['Int']['output'];\n description?: Maybe<Scalars['String']['output']>;\n excludedProducts: Array<Scalars['String']['output']>;\n excludedServices: Array<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n maxDiscountAmount?: Maybe<Scalars['Float']['output']>;\n maxTotalUses?: Maybe<Scalars['Int']['output']>;\n maxUsesPerUser: Scalars['Int']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n minPurchaseAmount?: Maybe<Scalars['Float']['output']>;\n name: Scalars['String']['output'];\n onBehalfOf: Scalars['String']['output'];\n referralCode?: Maybe<ReferralCode>;\n restrictedToUserIds: Array<Scalars['String']['output']>;\n scope: CouponScope;\n status: CouponStatus;\n type: CouponType;\n updatedAt: Scalars['DateTime']['output'];\n validFrom: Scalars['DateTime']['output'];\n validUntil?: Maybe<Scalars['DateTime']['output']>;\n value: Scalars['Float']['output'];\n};\n\nexport type CouponFilterInput = {\n campaignId?: InputMaybe<Scalars['String']['input']>;\n scope?: InputMaybe<CouponScope>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<CouponStatus>;\n type?: InputMaybe<CouponType>;\n};\n\nexport enum CouponScope {\n Campaign = 'CAMPAIGN',\n Generic = 'GENERIC',\n Referral = 'REFERRAL',\n UserSpecific = 'USER_SPECIFIC'\n}\n\nexport enum CouponStatus {\n Active = 'ACTIVE',\n Depleted = 'DEPLETED',\n Expired = 'EXPIRED',\n Inactive = 'INACTIVE'\n}\n\nexport enum CouponType {\n FixedAmount = 'FIXED_AMOUNT',\n FreeShipping = 'FREE_SHIPPING',\n Percentage = 'PERCENTAGE'\n}\n\nexport type CouponUsage = {\n __typename?: 'CouponUsage';\n coupon: Coupon;\n createdBy: Scalars['String']['output'];\n currency: Scalars['String']['output'];\n discountType: CouponType;\n discountValue: Scalars['Float']['output'];\n finalAmount: Scalars['Float']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n onBehalfOf: Scalars['String']['output'];\n orderId?: Maybe<Scalars['String']['output']>;\n originalAmount: Scalars['Float']['output'];\n transactionId?: Maybe<Scalars['String']['output']>;\n usedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n};\n\nexport type CouponUsageListResponse = {\n __typename?: 'CouponUsageListResponse';\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n usages: Array<CouponUsage>;\n};\n\nexport type CouponsListResponse = {\n __typename?: 'CouponsListResponse';\n coupons: Array<Coupon>;\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n};\n\nexport type CoverageChangeEvent = {\n __typename?: 'CoverageChangeEvent';\n languageCode: Scalars['String']['output'];\n newCoverage: Scalars['Float']['output'];\n previousCoverage: Scalars['Float']['output'];\n productCode: Scalars['String']['output'];\n timestamp: Scalars['DateTime']['output'];\n};\n\nexport type CreateAgentProfileInput = {\n autoAssign?: InputMaybe<Scalars['Boolean']['input']>;\n context?: InputMaybe<SupportContextInput>;\n maxChats?: InputMaybe<Scalars['Int']['input']>;\n maxTickets?: InputMaybe<Scalars['Int']['input']>;\n skills?: InputMaybe<Array<Scalars['String']['input']>>;\n teams?: InputMaybe<Array<Scalars['String']['input']>>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n userId: Scalars['String']['input'];\n workingHours?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type CreateAppCollectionInput = {\n appIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n bannerUrl?: InputMaybe<Scalars['String']['input']>;\n collectionType: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n endsAt?: InputMaybe<Scalars['DateTime']['input']>;\n iconUrl?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isFeatured?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug?: InputMaybe<Scalars['String']['input']>;\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type CreateAppInput = {\n actorType?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n redirectUris?: InputMaybe<Array<Scalars['String']['input']>>;\n scopes: Array<Scalars['String']['input']>;\n type: AppType;\n};\n\nexport type CreateAppReviewInput = {\n body?: InputMaybe<Scalars['String']['input']>;\n installationId?: InputMaybe<Scalars['ID']['input']>;\n rating: Scalars['Int']['input'];\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateApplicationInput = {\n /** Opaque reference to auth-svc App ID (links this application to an OAuth app) */\n appId?: InputMaybe<Scalars['ID']['input']>;\n appType: AppType;\n category?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n developerOrganizationId?: InputMaybe<Scalars['ID']['input']>;\n documentationUrl?: InputMaybe<Scalars['String']['input']>;\n githubUrl?: InputMaybe<Scalars['String']['input']>;\n iconUrl?: InputMaybe<Scalars['String']['input']>;\n keywords?: InputMaybe<Array<Scalars['String']['input']>>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;\n requiresApproval?: InputMaybe<Scalars['Boolean']['input']>;\n shortDescription?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n supportUrl?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n termsOfServiceUrl?: InputMaybe<Scalars['String']['input']>;\n visibility?: InputMaybe<AppVisibility>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateApplicationVersionInput = {\n changelog?: InputMaybe<Scalars['String']['input']>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n maxPlatformVersion?: InputMaybe<Scalars['String']['input']>;\n minPlatformVersion?: InputMaybe<Scalars['String']['input']>;\n packageHash?: InputMaybe<Scalars['String']['input']>;\n packageSize?: InputMaybe<Scalars['String']['input']>;\n packageUrl?: InputMaybe<Scalars['String']['input']>;\n releaseNotes?: InputMaybe<Scalars['String']['input']>;\n requiredScopes?: InputMaybe<Array<Scalars['String']['input']>>;\n version: Scalars['String']['input'];\n};\n\nexport type CreateAutomationInput = {\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n platformProductId: Scalars['String']['input'];\n trigger: Scalars['JSON']['input'];\n};\n\nexport type CreateAutomationStepInput = {\n automationId: Scalars['ID']['input'];\n config: Scalars['JSON']['input'];\n stepNumber: Scalars['Int']['input'];\n stepType: AutomationStepType;\n};\n\nexport type CreateBillingAccountInput = {\n /** Billing-specific email (optional) */\n billingEmail?: InputMaybe<Scalars['String']['input']>;\n /** Contact phone number (optional) */\n contactNumber?: InputMaybe<Scalars['String']['input']>;\n /** Default currency (defaults to USD) */\n currency?: InputMaybe<Scalars['String']['input']>;\n /** Contact email */\n email: Scalars['String']['input'];\n /** Additional metadata (optional) */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Name of the billing account */\n name: Scalars['String']['input'];\n /** Tax ID / VAT number (optional) */\n taxId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateBillingOrderInput = {\n callbackGraphQL?: InputMaybe<GraphQlCallbackInput>;\n currency: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n expiryMinutes?: InputMaybe<Scalars['Int']['input']>;\n externalOrderId: Scalars['String']['input'];\n externalService: Scalars['String']['input'];\n items: Array<BillingOrderItemInput>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n subtotal: Scalars['Float']['input'];\n};\n\nexport type CreateBillingOrderResponse = {\n __typename?: 'CreateBillingOrderResponse';\n error?: Maybe<Scalars['String']['output']>;\n order?: Maybe<BillingOrder>;\n success: Scalars['Boolean']['output'];\n};\n\nexport type CreateCampaignInput = {\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n newsletterId: Scalars['String']['input'];\n segment?: InputMaybe<Scalars['String']['input']>;\n subject: Scalars['String']['input'];\n};\n\nexport type CreateCannedResponseInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n content: Scalars['String']['input'];\n context?: InputMaybe<SupportContextInput>;\n shortcut?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n title: Scalars['String']['input'];\n};\n\nexport type CreateCategoryInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n parentId?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n};\n\n/** Input for creating a new channel */\nexport type CreateChannelInput = {\n /** Specific adapter type (SENDGRID, AWS_SES, TWILIO, etc.) */\n adapterType?: InputMaybe<AdapterType>;\n /**\n * Channel type: NOTIFICATION (EMAIL/SMS) or COMMUNICATION (SLACK/TEAMS/etc).\n * If omitted, defaults based on platform:\n * EMAIL, SMS → NOTIFICATION\n * All others → COMMUNICATION\n */\n channelType?: InputMaybe<ChannelType>;\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /** Optional description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Channel name */\n name: Scalars['String']['input'];\n /** Organization ID (opaque reference) */\n organizationId: Scalars['ID']['input'];\n /** Channel platform (Slack, Teams, Discord, etc.) */\n platform: ChannelPlatform;\n /** Platform-specific configuration (webhook URLs, etc.) */\n platformConfig?: InputMaybe<Scalars['JSON']['input']>;\n /**\n * Priority for fallback ordering (lower = higher priority).\n * Default is 100. Use 1 for highest priority.\n * All ACTIVE channels are included in the failover chain.\n */\n priority?: InputMaybe<Scalars['Int']['input']>;\n /** Channel status (default: ACTIVE) */\n status?: InputMaybe<ChannelStatus>;\n};\n\n/** Input for creating a channel connection (OAuth flow) */\nexport type CreateConnectionInput = {\n /** API key or bot token (for direct auth) */\n apiKey?: InputMaybe<Scalars['String']['input']>;\n /** OAuth authorization code (for OAuth flows) */\n authCode?: InputMaybe<Scalars['String']['input']>;\n /** Authentication type */\n authType: ChannelAuthType;\n /** Channel ID to connect */\n channelId: Scalars['ID']['input'];\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /** Platform-specific credentials (email: SMTP/IMAP config) */\n credentials?: InputMaybe<Scalars['JSON']['input']>;\n /** Redirect URI (for OAuth) */\n redirectUri?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateContentPageInput = {\n content: Scalars['String']['input'];\n contentFormat?: InputMaybe<Scalars['String']['input']>;\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n seoDescription?: InputMaybe<Scalars['String']['input']>;\n seoKeywords?: InputMaybe<Scalars['String']['input']>;\n seoTitle?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n sortOrder?: InputMaybe<Scalars['Int']['input']>;\n title: Scalars['String']['input'];\n visibility?: InputMaybe<ContentVisibility>;\n};\n\nexport type CreateCouponInput = {\n applicableProducts?: InputMaybe<Array<Scalars['String']['input']>>;\n applicableServices?: InputMaybe<Array<Scalars['String']['input']>>;\n campaignId?: InputMaybe<Scalars['String']['input']>;\n campaignName?: InputMaybe<Scalars['String']['input']>;\n code: Scalars['String']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n excludedProducts?: InputMaybe<Array<Scalars['String']['input']>>;\n excludedServices?: InputMaybe<Array<Scalars['String']['input']>>;\n maxDiscountAmount?: InputMaybe<Scalars['Float']['input']>;\n maxTotalUses?: InputMaybe<Scalars['Int']['input']>;\n maxUsesPerUser?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n minPurchaseAmount?: InputMaybe<Scalars['Float']['input']>;\n name: Scalars['String']['input'];\n restrictedToUserIds?: InputMaybe<Array<Scalars['String']['input']>>;\n scope: CouponScope;\n type: CouponType;\n validFrom: Scalars['DateTime']['input'];\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n value: Scalars['Float']['input'];\n};\n\nexport type CreateDeveloperOrganizationInput = {\n bannerUrl?: InputMaybe<Scalars['String']['input']>;\n contactEmail?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n legalAddress?: InputMaybe<Scalars['JSON']['input']>;\n legalEntityName?: InputMaybe<Scalars['String']['input']>;\n legalEntityType?: InputMaybe<Scalars['String']['input']>;\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug?: InputMaybe<Scalars['String']['input']>;\n supportEmail?: InputMaybe<Scalars['String']['input']>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateDeveloperProfileInput = {\n bio?: InputMaybe<Scalars['String']['input']>;\n companyName?: InputMaybe<Scalars['String']['input']>;\n emailNotifications?: InputMaybe<Scalars['Boolean']['input']>;\n githubUsername?: InputMaybe<Scalars['String']['input']>;\n linkedinUrl?: InputMaybe<Scalars['String']['input']>;\n marketingEmails?: InputMaybe<Scalars['Boolean']['input']>;\n twitterUsername?: InputMaybe<Scalars['String']['input']>;\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateEditorialCollectionInput = {\n endsAt?: InputMaybe<Scalars['DateTime']['input']>;\n heroAssetId?: InputMaybe<Scalars['ID']['input']>;\n orderIndex?: InputMaybe<Scalars['Int']['input']>;\n productIds: Array<Scalars['ID']['input']>;\n slug: Scalars['String']['input'];\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\n storeId: Scalars['ID']['input'];\n subtitle?: InputMaybe<Scalars['String']['input']>;\n title: Scalars['String']['input'];\n};\n\n/** Input for creating a new subscription entitlement */\nexport type CreateEntitlementInput = {\n /** The type of access (FREE_ACCESS or DISCOUNT) */\n accessType: EntitlementAccessType;\n /** Discount percentage (required if accessType is DISCOUNT, 0-100) */\n discountPercentage?: InputMaybe<Scalars['Float']['input']>;\n /** The store item ID (from Store service) */\n itemId: Scalars['ID']['input'];\n /** The plan ID that grants this entitlement */\n planId: Scalars['ID']['input'];\n};\n\nexport type CreateFaqInput = {\n answer: Scalars['String']['input'];\n category?: InputMaybe<FaqCategory>;\n context?: InputMaybe<SupportContextInput>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n question: Scalars['String']['input'];\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type CreateFeatureFlagInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n defaultValue?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n flagType?: InputMaybe<FeatureFlagType>;\n key: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n previewable?: InputMaybe<Scalars['Boolean']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateI18nModuleInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n productId: Scalars['String']['input'];\n};\n\nexport type CreateI18nNamespaceInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n moduleId: Scalars['String']['input'];\n name: Scalars['String']['input'];\n};\n\nexport type CreateI18nProductInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n};\n\nexport type CreateImportJobInput = {\n fileName: Scalars['String']['input'];\n fileSize: Scalars['Int']['input'];\n fileUrl?: InputMaybe<Scalars['String']['input']>;\n format: ImportJobFormat;\n options?: InputMaybe<Scalars['JSON']['input']>;\n productId: Scalars['String']['input'];\n};\n\nexport type CreateKeyboardShortcutInput = {\n /** Category for grouping (required) */\n category: Scalars['String']['input'];\n /** Extended description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Event name to emit (required) */\n eventName: Scalars['String']['input'];\n /** Whether shortcut is enabled (defaults to true) */\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n /** Whether this is a key sequence (defaults to auto-detect) */\n isSequence?: InputMaybe<Scalars['Boolean']['input']>;\n /** Display label (required) */\n label: Scalars['String']['input'];\n /** Mac-specific key override */\n macKey?: InputMaybe<Scalars['String']['input']>;\n /** Product ID (optional - null for global shortcuts) */\n productId?: InputMaybe<Scalars['ID']['input']>;\n /** Key combination (required) */\n shortcutKey: Scalars['String']['input'];\n /** Display order (defaults to 0) */\n sortOrder?: InputMaybe<Scalars['Int']['input']>;\n /** Windows/Linux-specific key override */\n windowsKey?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateKnowledgeBaseArticleInput = {\n categoryId?: InputMaybe<Scalars['String']['input']>;\n content: Scalars['String']['input'];\n context?: InputMaybe<SupportContextInput>;\n excerpt?: InputMaybe<Scalars['String']['input']>;\n metaDescription?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n status?: InputMaybe<ArticleStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n title: Scalars['String']['input'];\n};\n\nexport type CreateLanguageInput = {\n code: Scalars['String']['input'];\n dateFormat?: InputMaybe<Scalars['String']['input']>;\n direction?: InputMaybe<LanguageDirection>;\n fallbackCode?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n nativeName: Scalars['String']['input'];\n pluralRules?: InputMaybe<Scalars['JSON']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n timeFormat?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateNewsletterInput = {\n content: Scalars['String']['input'];\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n plans?: InputMaybe<Scalars['JSON']['input']>;\n platformProductId: Scalars['String']['input'];\n previewText?: InputMaybe<Scalars['String']['input']>;\n products?: InputMaybe<Scalars['JSON']['input']>;\n recipientType?: InputMaybe<NewsletterRecipientType>;\n scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;\n segmentConfig?: InputMaybe<Scalars['JSON']['input']>;\n slug: Scalars['String']['input'];\n subject?: InputMaybe<Scalars['String']['input']>;\n title: Scalars['String']['input'];\n};\n\nexport type CreateNewsletterListInput = {\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n platformProductId: Scalars['String']['input'];\n};\n\nexport type CreateNewsletterTemplateInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n html: Scalars['String']['input'];\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n platformProductId: Scalars['String']['input'];\n thumbnail?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateNewsletterWebhookInput = {\n context?: InputMaybe<NewsletterContextInput>;\n events: Array<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n platformProductId: Scalars['String']['input'];\n url: Scalars['String']['input'];\n};\n\nexport type CreateNotificationInput = {\n actions?: InputMaybe<Array<NotificationActionInput>>;\n appName?: InputMaybe<Scalars['String']['input']>;\n body: Scalars['String']['input'];\n channel: NotificationChannel;\n data?: InputMaybe<Scalars['JSON']['input']>;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n htmlBody?: InputMaybe<Scalars['String']['input']>;\n media?: InputMaybe<Array<NotificationMediaInput>>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<NotificationPriority>;\n recipient: RecipientInput;\n redirectUrl?: InputMaybe<Scalars['String']['input']>;\n subject?: InputMaybe<Scalars['String']['input']>;\n topicId?: InputMaybe<Scalars['ID']['input']>;\n trackClicks?: InputMaybe<Scalars['Boolean']['input']>;\n trackOpens?: InputMaybe<Scalars['Boolean']['input']>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport type CreateNotificationTopicInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n type: NotificationType;\n};\n\n/** Input for creating a new organization */\nexport type CreateOrganizationInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n logo?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n settings?: InputMaybe<Scalars['JSON']['input']>;\n slug: Scalars['String']['input'];\n status?: InputMaybe<Scalars['String']['input']>;\n tenantId: Scalars['String']['input'];\n type?: InputMaybe<Scalars['String']['input']>;\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreatePaymentMethodInput = {\n /** Billing account ID to associate with */\n billingAccountId: Scalars['ID']['input'];\n /** Card brand (visa, mastercard, etc.) */\n brand?: InputMaybe<Scalars['String']['input']>;\n /** Card expiry month */\n expiryMonth?: InputMaybe<Scalars['Int']['input']>;\n /** Card expiry year */\n expiryYear?: InputMaybe<Scalars['Int']['input']>;\n /** Set as default payment method */\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n /** Last 4 digits of the card */\n last4?: InputMaybe<Scalars['String']['input']>;\n /** Additional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Razorpay payment method ID */\n razorpayPaymentMethodId?: InputMaybe<Scalars['String']['input']>;\n /** Stripe payment method ID */\n stripePaymentMethodId?: InputMaybe<Scalars['String']['input']>;\n /** Payment method type */\n type: PaymentMethodType;\n};\n\n/** Input for creating a permission override */\nexport type CreatePermissionOverrideInput = {\n action: Scalars['String']['input'];\n actorId: Scalars['String']['input'];\n actorType: ActorType;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n overrideType: OverrideType;\n priority?: InputMaybe<Scalars['Int']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n resourceId?: InputMaybe<Scalars['String']['input']>;\n resourceType: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n validFrom?: InputMaybe<Scalars['DateTime']['input']>;\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type CreatePhysicalProductInput = {\n allowBackorder?: InputMaybe<Scalars['Boolean']['input']>;\n brand?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n countryOfOrigin?: InputMaybe<Scalars['String']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n dimensionUnit?: InputMaybe<DimensionUnit>;\n height?: InputMaybe<Scalars['Float']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n length?: InputMaybe<Scalars['Float']['input']>;\n longDescription?: InputMaybe<Scalars['String']['input']>;\n lowStockThreshold?: InputMaybe<Scalars['Int']['input']>;\n manufacturer?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n price: Scalars['Float']['input'];\n requiresShipping?: InputMaybe<Scalars['Boolean']['input']>;\n returnPolicy?: InputMaybe<Scalars['String']['input']>;\n screenshots?: InputMaybe<Array<Scalars['String']['input']>>;\n sku?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n stockQuantity?: InputMaybe<Scalars['Int']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n trackInventory?: InputMaybe<Scalars['Boolean']['input']>;\n type: ProductType;\n warrantyInfo?: InputMaybe<Scalars['String']['input']>;\n weight?: InputMaybe<Scalars['Float']['input']>;\n weightUnit?: InputMaybe<WeightUnit>;\n width?: InputMaybe<Scalars['Float']['input']>;\n};\n\nexport type CreatePlatformProductInput = {\n appStoreUrl?: InputMaybe<Scalars['String']['input']>;\n /** Application URL */\n appUrl?: InputMaybe<Scalars['String']['input']>;\n contactAddress?: InputMaybe<Scalars['String']['input']>;\n contactEmail?: InputMaybe<Scalars['String']['input']>;\n contactPhone?: InputMaybe<Scalars['String']['input']>;\n /** Product description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Documentation URL */\n docsUrl?: InputMaybe<Scalars['String']['input']>;\n /** GitHub repository URL */\n githubUrl?: InputMaybe<Scalars['String']['input']>;\n /** Logo URL */\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Product name (required) */\n name: Scalars['String']['input'];\n notificationEmail?: InputMaybe<Scalars['String']['input']>;\n ogImage?: InputMaybe<Scalars['String']['input']>;\n playStoreUrl?: InputMaybe<Scalars['String']['input']>;\n recaptchaSecretKey?: InputMaybe<Scalars['String']['input']>;\n recaptchaSiteKey?: InputMaybe<Scalars['String']['input']>;\n rybbitSiteId?: InputMaybe<Scalars['String']['input']>;\n seoDescription?: InputMaybe<Scalars['String']['input']>;\n seoKeywords?: InputMaybe<Scalars['String']['input']>;\n seoTitle?: InputMaybe<Scalars['String']['input']>;\n /** Unique slug (required) */\n slug: Scalars['String']['input'];\n socialLinks?: InputMaybe<Scalars['JSON']['input']>;\n /** Product status (defaults to DRAFT) */\n status?: InputMaybe<PlatformProductStatus>;\n /** Status page URL */\n statusPageUrl?: InputMaybe<Scalars['String']['input']>;\n supportEmail?: InputMaybe<Scalars['String']['input']>;\n /** Website URL */\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreatePolicyReferenceInput = {\n action: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n opaPackage: Scalars['String']['input'];\n priority?: InputMaybe<Scalars['Int']['input']>;\n resourceType: Scalars['String']['input'];\n};\n\nexport type CreateProductEntitlementInput = {\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n productId: Scalars['String']['input'];\n purchasedBy: Scalars['String']['input'];\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateProductInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n content?: InputMaybe<Scalars['JSON']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n documentationUrl?: InputMaybe<Scalars['String']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n longDescription?: InputMaybe<Scalars['String']['input']>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n manifestVersion?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n nature?: InputMaybe<ProductNature>;\n price: Scalars['Float']['input'];\n pricingModel?: InputMaybe<PricingModel>;\n productId?: InputMaybe<Scalars['String']['input']>;\n repositoryUrl?: InputMaybe<Scalars['String']['input']>;\n screenshots?: InputMaybe<Array<Scalars['String']['input']>>;\n slug: Scalars['String']['input'];\n status?: InputMaybe<ProductStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n type: ProductType;\n videoUrls?: InputMaybe<Array<Scalars['String']['input']>>;\n zipFileUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateProductVariantInput = {\n compareAtPrice?: InputMaybe<Scalars['Float']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n imageUrls?: InputMaybe<Array<Scalars['String']['input']>>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n lowStockThreshold?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n options: Scalars['JSON']['input'];\n price?: InputMaybe<Scalars['Float']['input']>;\n sku?: InputMaybe<Scalars['String']['input']>;\n stockQuantity: Scalars['Int']['input'];\n storeProductId: Scalars['String']['input'];\n weight?: InputMaybe<Scalars['Float']['input']>;\n weightUnit?: InputMaybe<WeightUnit>;\n};\n\nexport type CreatePromoCodeInput = {\n applicableCategoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n applicableProductIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n code: Scalars['String']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n maxRedemptions?: InputMaybe<Scalars['Int']['input']>;\n minOrderAmount?: InputMaybe<Scalars['Float']['input']>;\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\n storeId?: InputMaybe<Scalars['ID']['input']>;\n type: PromoCodeType;\n value: Scalars['Float']['input'];\n};\n\n/** Input for creating support tickets from public/unauthenticated sources (e.g. website contact forms). */\nexport type CreatePublicSupportTicketInput = {\n customFields?: InputMaybe<Scalars['JSON']['input']>;\n description: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n source?: InputMaybe<TicketSource>;\n subject: Scalars['String']['input'];\n};\n\nexport type CreateRecurringBillingInput = {\n amount: Scalars['Float']['input'];\n currency: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n entityId: Scalars['String']['input'];\n entityType: Scalars['String']['input'];\n interval: SubscriptionInterval;\n intervalCount?: InputMaybe<Scalars['Int']['input']>;\n name: Scalars['String']['input'];\n};\n\nexport type CreateReferralCodeInput = {\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n orgId: Scalars['String']['input'];\n refereeDiscountType?: InputMaybe<CouponType>;\n refereeDiscountValue?: InputMaybe<Scalars['Float']['input']>;\n referrerRewardCredits?: InputMaybe<Scalars['Float']['input']>;\n referrerRewardType: ReferralRewardType;\n referrerRewardValue: Scalars['Float']['input'];\n userId: Scalars['String']['input'];\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type CreateReleaseInput = {\n bundleAssetId?: InputMaybe<Scalars['ID']['input']>;\n countries?: InputMaybe<Array<Scalars['String']['input']>>;\n manifestAssetId?: InputMaybe<Scalars['ID']['input']>;\n productId: Scalars['ID']['input'];\n releaseNotes?: InputMaybe<Scalars['JSON']['input']>;\n trackId: Scalars['ID']['input'];\n version: Scalars['String']['input'];\n};\n\nexport type CreateReleaseTrackInput = {\n name: Scalars['String']['input'];\n productId: Scalars['ID']['input'];\n type: ReleaseTrackType;\n};\n\nexport type CreateReviewInput = {\n comment?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n rating: Scalars['Int']['input'];\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateReviewReplyInput = {\n productId: Scalars['ID']['input'];\n replierType: Scalars['String']['input'];\n replyText: Scalars['String']['input'];\n reviewId: Scalars['ID']['input'];\n};\n\n/** Input for creating a new role */\nexport type CreateRoleInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n isSystem?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n parentId?: InputMaybe<Scalars['ID']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n scopeId: Scalars['String']['input'];\n scopeType?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for creating a role permission override */\nexport type CreateRolePermissionOverrideInput = {\n action: Scalars['String']['input'];\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n overrideType: OverrideType;\n priority?: InputMaybe<Scalars['Int']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n resourceId?: InputMaybe<Scalars['String']['input']>;\n resourceType: Scalars['String']['input'];\n roleId: Scalars['ID']['input'];\n scopeId: Scalars['String']['input'];\n validFrom?: InputMaybe<Scalars['DateTime']['input']>;\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type CreateSlaPolicyInput = {\n businessHours?: InputMaybe<Scalars['JSON']['input']>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n escalationRules?: InputMaybe<Scalars['JSON']['input']>;\n firstResponseMinutes: Scalars['Int']['input'];\n holidays?: InputMaybe<Scalars['JSON']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n priority: SupportTicketPriority;\n resolutionMinutes: Scalars['Int']['input'];\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateScheduleTemplateInput = {\n businessCalendarId?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n circuitBreaker?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n executorConfig: Scalars['JSON']['input'];\n executorType: ExecutorType;\n failurePolicy?: InputMaybe<Scalars['JSON']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n payloadTemplate?: InputMaybe<Scalars['JSON']['input']>;\n retryPolicy?: InputMaybe<Scalars['JSON']['input']>;\n scheduleConfig: Scalars['JSON']['input'];\n scheduleType: ScheduleType;\n};\n\nexport type CreateScheduledJobInput = {\n actionId?: InputMaybe<Scalars['String']['input']>;\n autoDisableAfter?: InputMaybe<Scalars['Int']['input']>;\n businessCalendarId?: InputMaybe<Scalars['String']['input']>;\n circuitBreaker?: InputMaybe<Scalars['JSON']['input']>;\n cronExpression?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n executorConfig?: InputMaybe<Scalars['JSON']['input']>;\n executorType?: InputMaybe<ExecutorType>;\n failurePolicy?: InputMaybe<Scalars['JSON']['input']>;\n interval?: InputMaybe<Scalars['Int']['input']>;\n intervalUnit?: InputMaybe<Scalars['String']['input']>;\n maxOccurrences?: InputMaybe<Scalars['Int']['input']>;\n maxRetries?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n misfirePolicy?: InputMaybe<MisfirePolicy>;\n misfireThreshold?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payloadTemplate?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<SchedulePriority>;\n retryDelay?: InputMaybe<Scalars['Int']['input']>;\n retryPolicy?: InputMaybe<Scalars['JSON']['input']>;\n rrule?: InputMaybe<Scalars['String']['input']>;\n scheduleType: ScheduleType;\n scheduledAt?: InputMaybe<Scalars['DateTime']['input']>;\n secrets?: InputMaybe<Scalars['JSON']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n timeWindows?: InputMaybe<Scalars['JSON']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateShippingAddressInput = {\n addressLine1: Scalars['String']['input'];\n addressLine2?: InputMaybe<Scalars['String']['input']>;\n city: Scalars['String']['input'];\n country: Scalars['String']['input'];\n email?: InputMaybe<Scalars['String']['input']>;\n fullName: Scalars['String']['input'];\n instructions?: InputMaybe<Scalars['String']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n label?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n postalCode: Scalars['String']['input'];\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateShippingMethodInput = {\n availableCountries?: InputMaybe<Array<Scalars['String']['input']>>;\n baseCost: Scalars['Float']['input'];\n carrier?: InputMaybe<Scalars['String']['input']>;\n carrierServiceId?: InputMaybe<Scalars['String']['input']>;\n code: Scalars['String']['input'];\n costPerItem?: InputMaybe<Scalars['Float']['input']>;\n costPerKg?: InputMaybe<Scalars['Float']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n estimatedMaxDays?: InputMaybe<Scalars['Int']['input']>;\n estimatedMinDays?: InputMaybe<Scalars['Int']['input']>;\n excludedCountries?: InputMaybe<Array<Scalars['String']['input']>>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n maxDimensions?: InputMaybe<Scalars['JSON']['input']>;\n maxWeight?: InputMaybe<Scalars['Float']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n};\n\nexport type CreateShippingRateInput = {\n baseCost: Scalars['Float']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n estimatedMaxDays?: InputMaybe<Scalars['Int']['input']>;\n estimatedMinDays?: InputMaybe<Scalars['Int']['input']>;\n freeShippingMinOrderAmount?: InputMaybe<Scalars['Float']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n shippingZoneId: Scalars['String']['input'];\n weightTiers?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type CreateShippingZoneInput = {\n countries: Array<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n};\n\nexport type CreateStoreInput = {\n allowUnverifiedPublishers?: InputMaybe<Scalars['Boolean']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n requiresApproval?: InputMaybe<Scalars['Boolean']['input']>;\n slug: Scalars['String']['input'];\n tenantId?: InputMaybe<Scalars['ID']['input']>;\n type: StoreType;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for creating a new store order */\nexport type CreateStoreOrderInput = {\n /** Applied entitlement ID if any */\n appliedEntitlementId?: InputMaybe<Scalars['String']['input']>;\n /** Billing account ID for payment (can be empty, will be set on billing page) */\n billingAccountId?: InputMaybe<Scalars['String']['input']>;\n /** Additional context */\n context?: InputMaybe<Scalars['JSON']['input']>;\n /** Currency for the order (defaults to USD) */\n currency?: InputMaybe<Scalars['String']['input']>;\n /** Line items in this order */\n lineItems: Array<StoreLineItemInput>;\n /** Additional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /**\n * Total product cost (sum of all line items)\n * Note: Currency, tax, and final billing amount calculated by billing service\n */\n total: Scalars['Float']['input'];\n};\n\nexport type CreateSubscriptionInput = {\n amount: Scalars['Float']['input'];\n applicationId?: InputMaybe<Scalars['ID']['input']>;\n couponCode?: InputMaybe<Scalars['String']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n interval: BillingInterval;\n planId?: InputMaybe<Scalars['ID']['input']>;\n planName?: InputMaybe<Scalars['String']['input']>;\n subscriptionType: Scalars['String']['input'];\n tier?: InputMaybe<DeveloperOrgTier>;\n trialDays?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreateSupportMessageInput = {\n attachments?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Operation context for scoping (workspaceId, userId, projectId, etc.) */\n context?: InputMaybe<SupportContextInput>;\n isInternal?: InputMaybe<Scalars['Boolean']['input']>;\n message: Scalars['String']['input'];\n ticketId: Scalars['String']['input'];\n type?: InputMaybe<MessageType>;\n};\n\nexport type CreateSupportTicketInput = {\n category?: InputMaybe<SupportTicketCategory>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n /** Operation context for scoping (workspaceId, userId, projectId, etc.) */\n context?: InputMaybe<SupportContextInput>;\n customFields?: InputMaybe<Scalars['JSON']['input']>;\n description: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n source?: InputMaybe<TicketSource>;\n subject: Scalars['String']['input'];\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateTagInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n};\n\nexport type CreateTemplateInput = {\n bodyTemplate: Scalars['String']['input'];\n /** Default delivery channel for this template (defaults to EMAIL if not specified) */\n channel?: InputMaybe<NotificationChannel>;\n description?: InputMaybe<Scalars['String']['input']>;\n htmlTemplate?: InputMaybe<Scalars['String']['input']>;\n locale?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n subject?: InputMaybe<Scalars['String']['input']>;\n type: NotificationType;\n variables: Scalars['JSON']['input'];\n};\n\n/** Input for creating a new tenant */\nexport type CreateTenantInput = {\n config?: InputMaybe<Scalars['JSON']['input']>;\n customDomain?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n type?: InputMaybe<TenantType>;\n};\n\nexport type CreateTicketCategoryInput = {\n color?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n parentId?: InputMaybe<Scalars['String']['input']>;\n slaOverride?: InputMaybe<Scalars['JSON']['input']>;\n slug: Scalars['String']['input'];\n};\n\nexport type CreateTicketTemplateInput = {\n body: Scalars['String']['input'];\n category?: InputMaybe<SupportTicketCategory>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n priority?: InputMaybe<SupportTicketPriority>;\n subject: Scalars['String']['input'];\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type CreateTourInput = {\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n desktopConfig?: InputMaybe<Scalars['JSON']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n mobileConfig?: InputMaybe<Scalars['JSON']['input']>;\n moduleId?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n pageId?: InputMaybe<Scalars['String']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n productId: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<TourStatus>;\n tabletConfig?: InputMaybe<Scalars['JSON']['input']>;\n triggerConfig?: InputMaybe<Scalars['JSON']['input']>;\n triggerType?: InputMaybe<TourTriggerType>;\n};\n\nexport type CreateTourMediaInput = {\n altText?: InputMaybe<Scalars['String']['input']>;\n caption?: InputMaybe<Scalars['String']['input']>;\n cdnUrl?: InputMaybe<Scalars['String']['input']>;\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n duration?: InputMaybe<Scalars['Int']['input']>;\n height?: InputMaybe<Scalars['Int']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n mimeType: Scalars['String']['input'];\n name: Scalars['String']['input'];\n size: Scalars['Int']['input'];\n storagePath: Scalars['String']['input'];\n storageUrl: Scalars['String']['input'];\n transcript?: InputMaybe<Scalars['String']['input']>;\n type: TourMediaType;\n width?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreateTourScheduleInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n recurrenceRule?: InputMaybe<Scalars['String']['input']>;\n startDate: Scalars['DateTime']['input'];\n timezone?: InputMaybe<Scalars['String']['input']>;\n tourId: Scalars['String']['input'];\n};\n\nexport type CreateTourStepInput = {\n actions?: InputMaybe<Scalars['JSON']['input']>;\n content: Scalars['String']['input'];\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n customData?: InputMaybe<Scalars['JSON']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n placement?: InputMaybe<TourStepPlacement>;\n requireInteraction?: InputMaybe<Scalars['Boolean']['input']>;\n skipConditions?: InputMaybe<Scalars['JSON']['input']>;\n stepOrder: Scalars['Int']['input'];\n targetSelector?: InputMaybe<Scalars['String']['input']>;\n targetSelectorDesktop?: InputMaybe<Scalars['String']['input']>;\n targetSelectorMobile?: InputMaybe<Scalars['String']['input']>;\n targetSelectorTablet?: InputMaybe<Scalars['String']['input']>;\n title: Scalars['String']['input'];\n tourId: Scalars['String']['input'];\n waitForEvent?: InputMaybe<Scalars['String']['input']>;\n waitForSelector?: InputMaybe<Scalars['String']['input']>;\n waitForTimeout?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type CreateTourTemplateInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n config: Scalars['JSON']['input'];\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPremium?: InputMaybe<Scalars['Boolean']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n thumbnail?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type CreateTranslationInput = {\n keyId: Scalars['String']['input'];\n languageCode: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n notes?: InputMaybe<Scalars['String']['input']>;\n pluralForms?: InputMaybe<Scalars['JSON']['input']>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n value: Scalars['String']['input'];\n};\n\nexport type CreateTranslationKeyInput = {\n characterLimit?: InputMaybe<Scalars['Int']['input']>;\n context?: InputMaybe<Scalars['String']['input']>;\n defaultValue?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPlural?: InputMaybe<Scalars['Boolean']['input']>;\n key: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n namespaceId?: InputMaybe<Scalars['String']['input']>;\n placeholders?: InputMaybe<Scalars['JSON']['input']>;\n productId: Scalars['String']['input'];\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/** Input for creating a complete tenant structure for a new user */\nexport type CreateUserTenantStructureInput = {\n email: Scalars['String']['input'];\n name: Scalars['String']['input'];\n organizationName?: InputMaybe<Scalars['String']['input']>;\n tenantName?: InputMaybe<Scalars['String']['input']>;\n userId: Scalars['String']['input'];\n workspaceName?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Response for createUserTenantStructure mutation */\nexport type CreateUserTenantStructureResponse = {\n __typename?: 'CreateUserTenantStructureResponse';\n message?: Maybe<Scalars['String']['output']>;\n organizationId?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n tenantId?: Maybe<Scalars['String']['output']>;\n workspaceId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type CreateVariantInput = {\n content: Scalars['String']['input'];\n name: Scalars['String']['input'];\n newsletterId: Scalars['ID']['input'];\n percentage: Scalars['Int']['input'];\n subject: Scalars['String']['input'];\n};\n\n/** Input for creating a visibility rule */\nexport type CreateVisibilityRuleInput = {\n conditions?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n resourceIdentifier: Scalars['String']['input'];\n resourceType: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n targetId?: InputMaybe<Scalars['String']['input']>;\n targetType?: InputMaybe<Scalars['String']['input']>;\n visibilityType: VisibilityType;\n};\n\nexport type CreateWebhookInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n events: Array<Scalars['String']['input']>;\n filters?: InputMaybe<Scalars['JSON']['input']>;\n maxRetries?: InputMaybe<Scalars['Int']['input']>;\n name: Scalars['String']['input'];\n retryEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n url: Scalars['String']['input'];\n};\n\n/** Input for creating a new workspace */\nexport type CreateWorkspaceInput = {\n endpoint?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name: Scalars['String']['input'];\n organizationId?: InputMaybe<Scalars['String']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n type?: InputMaybe<WorkspaceType>;\n};\n\nexport type CreditCost = {\n __typename?: 'CreditCost';\n amount: Scalars['Float']['output'];\n};\n\nexport type CreditNote = {\n __typename?: 'CreditNote';\n amount: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n invoiceId?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n number: Scalars['String']['output'];\n orgId: Scalars['String']['output'];\n reason?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type CreditRate = {\n __typename?: 'CreditRate';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n effectiveFrom: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n rateUSD: Scalars['Float']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** CreditTransaction entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference CreditTransaction by id. */\nexport type CreditTransaction = {\n __typename?: 'CreditTransaction';\n amount: Scalars['Float']['output'];\n billingAccount: BillingAccount;\n billingAccountId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n entityId?: Maybe<Scalars['ID']['output']>;\n entityType?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n productId: Scalars['String']['output'];\n status: CreditTransactionStatus;\n transaction?: Maybe<Transaction>;\n transactionId?: Maybe<Scalars['ID']['output']>;\n type: CreditTransactionType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum CreditTransactionStatus {\n Failed = 'failed',\n Pending = 'pending',\n Refund = 'refund',\n Success = 'success'\n}\n\nexport enum CreditTransactionType {\n Adjustment = 'adjustment',\n Purchase = 'purchase',\n Usage = 'usage'\n}\n\n/** Currency conversion result */\nexport type CurrencyConversion = {\n __typename?: 'CurrencyConversion';\n amount: Scalars['Float']['output'];\n exchangeRate: Scalars['Float']['output'];\n fromCurrency: Scalars['String']['output'];\n toCurrency: Scalars['String']['output'];\n};\n\nexport type CustomerSatisfactionSurvey = {\n __typename?: 'CustomerSatisfactionSurvey';\n comment?: Maybe<Scalars['String']['output']>;\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n customerId: Scalars['String']['output'];\n expiresAt: Scalars['DateTime']['output'];\n feedbackType?: Maybe<FeedbackCategory>;\n id: Scalars['ID']['output'];\n isExpired: Scalars['Boolean']['output'];\n isSubmitted: Scalars['Boolean']['output'];\n rating: Scalars['Int']['output'];\n sentAt: Scalars['DateTime']['output'];\n submittedAt?: Maybe<Scalars['DateTime']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n ticket: SupportTicket;\n ticketId: Scalars['String']['output'];\n};\n\nexport type CustomerSatisfactionSurveyConnection = {\n __typename?: 'CustomerSatisfactionSurveyConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<CustomerSatisfactionSurvey>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type CustomerSatisfactionSurveyFilterInput = {\n context?: InputMaybe<SupportContextFilterInput>;\n customerId?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n feedbackType?: InputMaybe<FeedbackCategory>;\n isSubmitted?: InputMaybe<Scalars['Boolean']['input']>;\n maxRating?: InputMaybe<Scalars['Int']['input']>;\n minRating?: InputMaybe<Scalars['Int']['input']>;\n rating?: InputMaybe<Scalars['Int']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n ticketId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum DlqStatus {\n Discarded = 'DISCARDED',\n Investigating = 'INVESTIGATING',\n Pending = 'PENDING',\n Resolved = 'RESOLVED'\n}\n\nexport type DailyUsage = {\n __typename?: 'DailyUsage';\n count: Scalars['Int']['output'];\n date: Scalars['String']['output'];\n usage: Scalars['Float']['output'];\n};\n\n/** Dashboard widget configuration for customization. */\nexport type DashboardWidgetInput = {\n /** Whether the widget is visible on the dashboard */\n enabled: Scalars['Boolean']['input'];\n /** Display order (0-based) */\n order: Scalars['Int']['input'];\n /** Widget size: 'small', 'medium', or 'large' */\n size?: InputMaybe<Scalars['String']['input']>;\n /** Widget identifier (e.g. 'workspaces', 'projects', 'activity') */\n widgetId: Scalars['String']['input'];\n};\n\n/** Date range filter for queries */\nexport type DateRangeInput = {\n /** Start date (inclusive) */\n from?: InputMaybe<Scalars['DateTime']['input']>;\n /** End date (inclusive) */\n to?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type DeadLetterQueue = {\n __typename?: 'DeadLetterQueue';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n executorConfig: Scalars['JSON']['output'];\n failureReason: Scalars['String']['output'];\n firstAttemptAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n lastAttemptAt: Scalars['DateTime']['output'];\n lastError: Scalars['String']['output'];\n lastErrorStack?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n originalRunId: Scalars['String']['output'];\n resolution?: Maybe<Scalars['JSON']['output']>;\n resolvedAt?: Maybe<Scalars['DateTime']['output']>;\n resolvedBy?: Maybe<Scalars['String']['output']>;\n scheduleId: Scalars['String']['output'];\n scheduleName?: Maybe<Scalars['String']['output']>;\n status: DlqStatus;\n totalAttempts: Scalars['Int']['output'];\n};\n\nexport type DeadLetterQueueConnection = {\n __typename?: 'DeadLetterQueueConnection';\n entries: Array<DeadLetterQueue>;\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n};\n\nexport enum DelegationStatus {\n Active = 'ACTIVE',\n Expired = 'EXPIRED',\n Revoked = 'REVOKED'\n}\n\n/** Result of user deletion */\nexport type DeleteUserResult = {\n __typename?: 'DeleteUserResult';\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\n/** Delivery priority levels */\nexport enum DeliveryPriority {\n /** High priority - expedited delivery */\n High = 'HIGH',\n /** Low priority - can be delayed */\n Low = 'LOW',\n /** Normal priority - standard delivery */\n Normal = 'NORMAL',\n /** Urgent priority - immediate delivery */\n Urgent = 'URGENT'\n}\n\n/** Delivery statistics */\nexport type DeliveryStats = {\n __typename?: 'DeliveryStats';\n /** Average delivery time (ms) */\n avgDeliveryTimeMs: Scalars['Int']['output'];\n /** Channel ID */\n channelId: Scalars['ID']['output'];\n /** Date range end */\n endDate: Scalars['DateTime']['output'];\n /** Failed deliveries */\n failedDeliveries: Scalars['Int']['output'];\n /** Pending deliveries */\n pendingDeliveries: Scalars['Int']['output'];\n /** Date range start */\n startDate: Scalars['DateTime']['output'];\n /** Success rate (percentage) */\n successRate: Scalars['Float']['output'];\n /** Successful deliveries */\n successfulDeliveries: Scalars['Int']['output'];\n /** Total delivery attempts */\n totalAttempts: Scalars['Int']['output'];\n};\n\n/** Message delivery attempt status */\nexport enum DeliveryStatus {\n /** Message bounced */\n Bounced = 'BOUNCED',\n /** Link clicked by recipient */\n Clicked = 'CLICKED',\n /** Delivered to recipient */\n Delivered = 'DELIVERED',\n /** Delivery failed */\n Failed = 'FAILED',\n /** Message opened by recipient */\n Opened = 'OPENED',\n /** Delivery pending */\n Pending = 'PENDING',\n /** Queued for delivery */\n Queued = 'QUEUED',\n /** Rate limited by platform */\n RateLimited = 'RATE_LIMITED',\n /** Message rejected by recipient */\n Rejected = 'REJECTED',\n /** Retrying after failure */\n Retrying = 'RETRYING',\n /** Currently sending */\n Sending = 'SENDING',\n /** Successfully sent */\n Sent = 'SENT'\n}\n\nexport type DependencyTriggeredUpdate = {\n __typename?: 'DependencyTriggeredUpdate';\n dependencyCount: Scalars['Int']['output'];\n scheduleId: Scalars['ID']['output'];\n scheduleName?: Maybe<Scalars['String']['output']>;\n timestamp: Scalars['DateTime']['output'];\n triggeredBy: Scalars['ID']['output'];\n};\n\nexport enum DevPortalPaymentMethodType {\n BankAccount = 'BANK_ACCOUNT',\n Check = 'CHECK',\n Paypal = 'PAYPAL',\n StripeConnect = 'STRIPE_CONNECT',\n Wire = 'WIRE'\n}\n\nexport enum DevPortalPricingModel {\n Enterprise = 'ENTERPRISE',\n Free = 'FREE',\n Freemium = 'FREEMIUM',\n OneTime = 'ONE_TIME',\n Subscription = 'SUBSCRIPTION',\n UsageBased = 'USAGE_BASED'\n}\n\nexport enum DevPortalSubscriptionStatus {\n Active = 'ACTIVE',\n Cancelled = 'CANCELLED',\n Expired = 'EXPIRED',\n PastDue = 'PAST_DUE',\n Paused = 'PAUSED',\n Trialing = 'TRIALING',\n Unpaid = 'UNPAID'\n}\n\n/** Developer earnings dashboard */\nexport type DeveloperEarnings = {\n __typename?: 'DeveloperEarnings';\n currency: Scalars['String']['output'];\n earnings: Array<MonthlyEarning>;\n monthlyEarnings: Scalars['Float']['output'];\n monthlyOrders: Scalars['Int']['output'];\n topSellingItems: Array<ItemSalesStats>;\n totalEarnings: Scalars['Float']['output'];\n totalOrders: Scalars['Int']['output'];\n};\n\nexport type DeveloperEarningsInput = {\n endDate?: InputMaybe<Scalars['String']['input']>;\n period?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Developer Organization Invitation - invite existing users to join a dev org */\nexport type DeveloperOrgInvitation = {\n __typename?: 'DeveloperOrgInvitation';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n expiresAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n invitedBy: Scalars['ID']['output'];\n invitedEmail: Scalars['String']['output'];\n invitedUserId?: Maybe<Scalars['ID']['output']>;\n memberId?: Maybe<Scalars['ID']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n permissions?: Maybe<Scalars['JSON']['output']>;\n respondedAt?: Maybe<Scalars['DateTime']['output']>;\n role: DeveloperOrgRole;\n status: InvitationStatus;\n token: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type DeveloperOrgInvitationConnection = {\n __typename?: 'DeveloperOrgInvitationConnection';\n edges: Array<DeveloperOrgInvitationEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrgInvitationEdge = {\n __typename?: 'DeveloperOrgInvitationEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrgInvitation;\n};\n\n/** Developer Organization Member - represents a member of a dev organization */\nexport type DeveloperOrgMember = {\n __typename?: 'DeveloperOrgMember';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n email?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n invitationId?: Maybe<Scalars['ID']['output']>;\n invitedBy?: Maybe<Scalars['ID']['output']>;\n isActive: Scalars['Boolean']['output'];\n isSuspended: Scalars['Boolean']['output'];\n joinedAt: Scalars['DateTime']['output'];\n lastActiveAt?: Maybe<Scalars['DateTime']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n permissions?: Maybe<Scalars['JSON']['output']>;\n role: DeveloperOrgRole;\n suspendedAt?: Maybe<Scalars['DateTime']['output']>;\n suspendedReason?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport type DeveloperOrgMemberConnection = {\n __typename?: 'DeveloperOrgMemberConnection';\n edges: Array<DeveloperOrgMemberEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrgMemberEdge = {\n __typename?: 'DeveloperOrgMemberEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrgMember;\n};\n\n/** Developer Organization Payment Method - for receiving payouts */\nexport type DeveloperOrgPaymentMethod = {\n __typename?: 'DeveloperOrgPaymentMethod';\n accountLast4?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n displayName?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n isDefault: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n status: PaymentMethodStatus;\n taxFormType?: Maybe<Scalars['String']['output']>;\n taxFormUrl?: Maybe<Scalars['String']['output']>;\n taxFormVerified: Scalars['Boolean']['output'];\n taxFormVerifiedAt?: Maybe<Scalars['DateTime']['output']>;\n type: DevPortalPaymentMethodType;\n updatedAt: Scalars['DateTime']['output'];\n verificationMethod?: Maybe<Scalars['String']['output']>;\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\n/** Developer Organization Payout - monthly payouts to developers */\nexport type DeveloperOrgPayout = {\n __typename?: 'DeveloperOrgPayout';\n adjustments: Scalars['Float']['output'];\n approvedAt?: Maybe<Scalars['DateTime']['output']>;\n approvedBy?: Maybe<Scalars['ID']['output']>;\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n developerNotes?: Maybe<Scalars['String']['output']>;\n externalReference?: Maybe<Scalars['String']['output']>;\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n failureCode?: Maybe<Scalars['String']['output']>;\n failureReason?: Maybe<Scalars['String']['output']>;\n grossRevenue: Scalars['Float']['output'];\n id: Scalars['ID']['output'];\n internalNotes?: Maybe<Scalars['String']['output']>;\n invoiceNumber?: Maybe<Scalars['String']['output']>;\n invoiceUrl?: Maybe<Scalars['String']['output']>;\n lastRetryAt?: Maybe<Scalars['DateTime']['output']>;\n meetsThreshold: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n minimumThreshold: Scalars['Float']['output'];\n netAmount: Scalars['Float']['output'];\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n paymentMethod?: Maybe<DeveloperOrgPaymentMethod>;\n paymentMethodId?: Maybe<Scalars['ID']['output']>;\n periodEnd: Scalars['DateTime']['output'];\n periodLabel?: Maybe<Scalars['String']['output']>;\n periodStart: Scalars['DateTime']['output'];\n platformFees: Scalars['Float']['output'];\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n receiptUrl?: Maybe<Scalars['String']['output']>;\n refunds: Scalars['Float']['output'];\n refundsCount: Scalars['Int']['output'];\n requiresApproval: Scalars['Boolean']['output'];\n retryCount: Scalars['Int']['output'];\n sales: Array<DeveloperOrgSale>;\n salesCount: Scalars['Int']['output'];\n scheduledAt?: Maybe<Scalars['DateTime']['output']>;\n status: PayoutStatus;\n transactionId?: Maybe<Scalars['ID']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type DeveloperOrgPayoutConnection = {\n __typename?: 'DeveloperOrgPayoutConnection';\n edges: Array<DeveloperOrgPayoutEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrgPayoutEdge = {\n __typename?: 'DeveloperOrgPayoutEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrgPayout;\n};\n\n/** Developer Organization Revenue Analytics - aggregated revenue data */\nexport type DeveloperOrgRevenueAnalytics = {\n __typename?: 'DeveloperOrgRevenueAnalytics';\n appBreakdown?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n date: Scalars['DateTime']['output'];\n geoBreakdown?: Maybe<Scalars['JSON']['output']>;\n grossRevenue: Scalars['Float']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n netRevenue: Scalars['Float']['output'];\n newCustomers: Scalars['Int']['output'];\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n period: Scalars['String']['output'];\n platformFees: Scalars['Float']['output'];\n pricingModelBreakdown?: Maybe<Scalars['JSON']['output']>;\n refunds: Scalars['Float']['output'];\n refundsCount: Scalars['Int']['output'];\n salesCount: Scalars['Int']['output'];\n};\n\nexport enum DeveloperOrgRole {\n Admin = 'ADMIN',\n Developer = 'DEVELOPER',\n Owner = 'OWNER',\n Viewer = 'VIEWER'\n}\n\n/** Developer Organization Sale - tracks a sale of an application */\nexport type DeveloperOrgSale = {\n __typename?: 'DeveloperOrgSale';\n application: Application;\n applicationId: Scalars['ID']['output'];\n buyerOrgId?: Maybe<Scalars['ID']['output']>;\n buyerTenantId?: Maybe<Scalars['ID']['output']>;\n buyerUserId: Scalars['ID']['output'];\n buyerWorkspaceId?: Maybe<Scalars['ID']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n discountAmount?: Maybe<Scalars['Float']['output']>;\n discountCode?: Maybe<Scalars['String']['output']>;\n grossAmount: Scalars['Float']['output'];\n id: Scalars['ID']['output'];\n installationId?: Maybe<Scalars['ID']['output']>;\n installationScope: Scalars['String']['output'];\n isPaidOut: Scalars['Boolean']['output'];\n isRenewal: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n netAmount: Scalars['Float']['output'];\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n payoutId?: Maybe<Scalars['ID']['output']>;\n planId?: Maybe<Scalars['ID']['output']>;\n planName?: Maybe<Scalars['String']['output']>;\n platformFee: Scalars['Float']['output'];\n platformFeeRate: Scalars['Float']['output'];\n previousSaleId?: Maybe<Scalars['ID']['output']>;\n pricingModel: DevPortalPricingModel;\n purchasedAt: Scalars['DateTime']['output'];\n refundAmount?: Maybe<Scalars['Float']['output']>;\n refundReason?: Maybe<Scalars['String']['output']>;\n refundedAt?: Maybe<Scalars['DateTime']['output']>;\n refundedBy?: Maybe<Scalars['ID']['output']>;\n status: SaleStatus;\n storeOrderId?: Maybe<Scalars['ID']['output']>;\n storeProductId?: Maybe<Scalars['ID']['output']>;\n subscriptionPeriodEnd?: Maybe<Scalars['DateTime']['output']>;\n subscriptionPeriodStart?: Maybe<Scalars['DateTime']['output']>;\n taxAmount?: Maybe<Scalars['Float']['output']>;\n taxCountry?: Maybe<Scalars['String']['output']>;\n taxRate?: Maybe<Scalars['Float']['output']>;\n taxRegion?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type DeveloperOrgSaleConnection = {\n __typename?: 'DeveloperOrgSaleConnection';\n edges: Array<DeveloperOrgSaleEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrgSaleEdge = {\n __typename?: 'DeveloperOrgSaleEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrgSale;\n};\n\n/** Developer Organization Subscription - platform tier or app subscriptions */\nexport type DeveloperOrgSubscription = {\n __typename?: 'DeveloperOrgSubscription';\n amount: Scalars['Float']['output'];\n applicationId?: Maybe<Scalars['ID']['output']>;\n cancelAtPeriodEnd: Scalars['Boolean']['output'];\n cancelReason?: Maybe<Scalars['String']['output']>;\n cancelledAt?: Maybe<Scalars['DateTime']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n couponCode?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n currentPeriodEnd: Scalars['DateTime']['output'];\n currentPeriodStart: Scalars['DateTime']['output'];\n discountEndsAt?: Maybe<Scalars['DateTime']['output']>;\n discountPercent?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n interval: BillingInterval;\n metadata?: Maybe<Scalars['JSON']['output']>;\n nextInvoiceAmount?: Maybe<Scalars['Float']['output']>;\n nextInvoiceAt?: Maybe<Scalars['DateTime']['output']>;\n organization: DeveloperOrganization;\n organizationId: Scalars['ID']['output'];\n planId?: Maybe<Scalars['ID']['output']>;\n planName?: Maybe<Scalars['String']['output']>;\n status: DevPortalSubscriptionStatus;\n stripeCustomerId?: Maybe<Scalars['ID']['output']>;\n stripePaymentMethodId?: Maybe<Scalars['ID']['output']>;\n stripePriceId?: Maybe<Scalars['ID']['output']>;\n stripeSubscriptionId?: Maybe<Scalars['ID']['output']>;\n subscriptionType: Scalars['String']['output'];\n tier?: Maybe<DeveloperOrgTier>;\n trialEnd?: Maybe<Scalars['DateTime']['output']>;\n trialStart?: Maybe<Scalars['DateTime']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n usageLimit?: Maybe<Scalars['Int']['output']>;\n usageQuantity?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type DeveloperOrgSubscriptionConnection = {\n __typename?: 'DeveloperOrgSubscriptionConnection';\n edges: Array<DeveloperOrgSubscriptionEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrgSubscriptionEdge = {\n __typename?: 'DeveloperOrgSubscriptionEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrgSubscription;\n};\n\nexport enum DeveloperOrgTier {\n Developer = 'DEVELOPER',\n Enterprise = 'ENTERPRISE',\n Free = 'FREE',\n Professional = 'PROFESSIONAL'\n}\n\n/** Developer Organization - represents a team or company of developers */\nexport type DeveloperOrganization = {\n __typename?: 'DeveloperOrganization';\n activeInstalls: Scalars['Int']['output'];\n apiCallsLimit: Scalars['Int']['output'];\n apiCallsUsed: Scalars['String']['output'];\n applications: Array<Application>;\n averageRating?: Maybe<Scalars['Float']['output']>;\n bannerUrl?: Maybe<Scalars['String']['output']>;\n certificationExpiry?: Maybe<Scalars['DateTime']['output']>;\n certifiedAt?: Maybe<Scalars['DateTime']['output']>;\n contactEmail?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n invitations: Array<DeveloperOrgInvitation>;\n isCertified: Scalars['Boolean']['output'];\n isVerified: Scalars['Boolean']['output'];\n legalAddress?: Maybe<Scalars['JSON']['output']>;\n legalEntityName?: Maybe<Scalars['String']['output']>;\n legalEntityType?: Maybe<Scalars['String']['output']>;\n lifetimeRevenue: Scalars['Float']['output'];\n logoUrl?: Maybe<Scalars['String']['output']>;\n members: Array<DeveloperOrgMember>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n partnerSince?: Maybe<Scalars['DateTime']['output']>;\n partnerTier?: Maybe<PartnerTier>;\n paymentMethods: Array<DeveloperOrgPaymentMethod>;\n payouts: Array<DeveloperOrgPayout>;\n pendingBalance: Scalars['Float']['output'];\n platformFeeRate: Scalars['Float']['output'];\n publishedApps: Scalars['Int']['output'];\n quotaResetAt?: Maybe<Scalars['DateTime']['output']>;\n revenueAnalytics: Array<DeveloperOrgRevenueAnalytics>;\n sales: Array<DeveloperOrgSale>;\n settings?: Maybe<Scalars['JSON']['output']>;\n slug: Scalars['String']['output'];\n storageLimit: Scalars['String']['output'];\n storageUsed: Scalars['String']['output'];\n subscriptions: Array<DeveloperOrgSubscription>;\n supportEmail?: Maybe<Scalars['String']['output']>;\n taxCountry?: Maybe<Scalars['String']['output']>;\n taxFormType?: Maybe<Scalars['String']['output']>;\n taxFormVerified: Scalars['Boolean']['output'];\n taxId?: Maybe<Scalars['String']['output']>;\n tier: DeveloperOrgTier;\n totalApiCalls: Scalars['String']['output'];\n totalApps: Scalars['Int']['output'];\n totalInstalls: Scalars['Int']['output'];\n totalPayouts: Scalars['Float']['output'];\n totalPlatformFees: Scalars['Float']['output'];\n totalRevenue: Scalars['Float']['output'];\n updatedAt: Scalars['DateTime']['output'];\n verificationMethod?: Maybe<Scalars['String']['output']>;\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n websiteUrl?: Maybe<Scalars['String']['output']>;\n};\n\nexport type DeveloperOrganizationConnection = {\n __typename?: 'DeveloperOrganizationConnection';\n edges: Array<DeveloperOrganizationEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type DeveloperOrganizationEdge = {\n __typename?: 'DeveloperOrganizationEdge';\n cursor: Scalars['String']['output'];\n node: DeveloperOrganization;\n};\n\nexport type DeveloperProfile = {\n __typename?: 'DeveloperProfile';\n applicationCount: Scalars['Int']['output'];\n averageRating?: Maybe<Scalars['Float']['output']>;\n bio?: Maybe<Scalars['String']['output']>;\n companyName?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n emailNotifications: Scalars['Boolean']['output'];\n githubUsername?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isVerified: Scalars['Boolean']['output'];\n linkedinUrl?: Maybe<Scalars['String']['output']>;\n marketingEmails: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n tenantId: Scalars['ID']['output'];\n totalInstalls: Scalars['Int']['output'];\n twitterUsername?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['ID']['output'];\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n website?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum DeviceType {\n Desktop = 'DESKTOP',\n Mobile = 'MOBILE',\n Tablet = 'TABLET'\n}\n\nexport type DeviceTypeStats = {\n __typename?: 'DeviceTypeStats';\n completionRate: Scalars['Float']['output'];\n count: Scalars['Int']['output'];\n deviceType: DeviceType;\n};\n\nexport type DigestChallengeResult = {\n __typename?: 'DigestChallengeResult';\n algorithm: Scalars['String']['output'];\n nonce: Scalars['String']['output'];\n opaque: Scalars['String']['output'];\n qop: Scalars['String']['output'];\n realm: Scalars['String']['output'];\n};\n\nexport enum DimensionUnit {\n Centimeter = 'CENTIMETER',\n Inch = 'INCH',\n Meter = 'METER'\n}\n\nexport enum EarningUnitType {\n Credits = 'CREDITS',\n Money = 'MONEY'\n}\n\nexport type EarningsCategoryBreakdown = {\n __typename?: 'EarningsCategoryBreakdown';\n amount: Scalars['Float']['output'];\n category: EarningsSourceCategory;\n count: Scalars['Int']['output'];\n};\n\nexport type EarningsEntry = {\n __typename?: 'EarningsEntry';\n amount: Scalars['Float']['output'];\n availableAt: Scalars['DateTime']['output'];\n billingAccountId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n ownerUserId?: Maybe<Scalars['String']['output']>;\n paidAt?: Maybe<Scalars['DateTime']['output']>;\n payoutRequestId?: Maybe<Scalars['ID']['output']>;\n reservedAt?: Maybe<Scalars['DateTime']['output']>;\n sourceCategory: EarningsSourceCategory;\n sourceEventId?: Maybe<Scalars['String']['output']>;\n sourceReferenceId?: Maybe<Scalars['String']['output']>;\n sourceSubcategory?: Maybe<Scalars['String']['output']>;\n status: EarningsEntryStatus;\n unitType: EarningUnitType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type EarningsEntryConnection = {\n __typename?: 'EarningsEntryConnection';\n hasMore: Scalars['Boolean']['output'];\n items: Array<EarningsEntry>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type EarningsEntryFilterInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n sourceCategory?: InputMaybe<EarningsSourceCategory>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<EarningsEntryStatus>;\n unitType?: InputMaybe<EarningUnitType>;\n};\n\nexport enum EarningsEntryStatus {\n Available = 'AVAILABLE',\n Paid = 'PAID',\n Reserved = 'RESERVED',\n Reversed = 'REVERSED'\n}\n\nexport enum EarningsSourceCategory {\n Affiliate = 'AFFILIATE',\n Other = 'OTHER',\n Store = 'STORE'\n}\n\nexport type EarningsSummary = {\n __typename?: 'EarningsSummary';\n availableAmount: Scalars['Float']['output'];\n categoryBreakdown: Array<EarningsCategoryBreakdown>;\n creditsAmount: Scalars['Float']['output'];\n moneyAmount: Scalars['Float']['output'];\n paidAmount: Scalars['Float']['output'];\n pendingAmount: Scalars['Float']['output'];\n reservedAmount: Scalars['Float']['output'];\n totalLifetimeAmount: Scalars['Float']['output'];\n};\n\nexport type EditorialCollection = {\n __typename?: 'EditorialCollection';\n endsAt?: Maybe<Scalars['DateTime']['output']>;\n heroAssetId?: Maybe<Scalars['ID']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n orderIndex: Scalars['Int']['output'];\n productIds: Array<Scalars['ID']['output']>;\n slug: Scalars['String']['output'];\n startsAt?: Maybe<Scalars['DateTime']['output']>;\n storeId: Scalars['ID']['output'];\n subtitle?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n};\n\n/** Computed effective permissions for an actor */\nexport type EffectivePermissions = {\n __typename?: 'EffectivePermissions';\n actorId: Scalars['String']['output'];\n /** Cache key for debugging and invalidation */\n cacheKey?: Maybe<Scalars['String']['output']>;\n /**\n * When this permission set should be considered stale.\n * Frontend should refresh after this time.\n */\n expiresAt: Scalars['DateTime']['output'];\n /**\n * Flat permission strings for easy frontend matching.\n * Format: \"{resourceType}:{action}\" e.g., [\"project:read\", \"project:write\", \"task:*\"]\n * Includes wildcards for ADMIN level (e.g., \"project:*\")\n */\n permissionStrings: Array<Scalars['String']['output']>;\n /** Resource types and their effective levels */\n permissions: Array<EffectiveResourcePermission>;\n /** Role names assigned to the actor in this scope */\n roles: Array<Scalars['String']['output']>;\n scopeId: Scalars['String']['output'];\n};\n\n/** Effective permission for a resource type */\nexport type EffectiveResourcePermission = {\n __typename?: 'EffectiveResourcePermission';\n /** Actions allowed at this level */\n allowedActions: Array<Scalars['String']['output']>;\n level: RoleLevel;\n /** Any overrides affecting this permission */\n overrides: Array<PermissionOverride>;\n resourceType: Scalars['String']['output'];\n /** Source of this permission (role name) */\n source: Scalars['String']['output'];\n};\n\nexport type EmailVerificationResult = {\n __typename?: 'EmailVerificationResult';\n email?: Maybe<Scalars['String']['output']>;\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\n/** Defines the access type for subscription entitlements */\nexport enum EntitlementAccessType {\n /** User gets a discount on the store item with this plan */\n Discount = 'DISCOUNT',\n /** User gets free access to the store item with this plan */\n FreeAccess = 'FREE_ACCESS'\n}\n\nexport type EntitlementSeatAssignment = {\n __typename?: 'EntitlementSeatAssignment';\n assignedAt: Scalars['DateTime']['output'];\n assignedBy?: Maybe<Scalars['String']['output']>;\n assigneeId: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n};\n\nexport type EntitlementSeatSummary = {\n __typename?: 'EntitlementSeatSummary';\n assignments: Array<EntitlementSeatAssignment>;\n entitlementId: Scalars['ID']['output'];\n maxSeats: Scalars['Int']['output'];\n seatsAvailable: Scalars['Int']['output'];\n seatsInUse: Scalars['Int']['output'];\n};\n\nexport enum EntitlementStatus {\n Active = 'ACTIVE',\n Expired = 'EXPIRED',\n Revoked = 'REVOKED',\n Suspended = 'SUSPENDED'\n}\n\nexport type EvaluateFeatureFlagsInput = {\n /** Specific flag keys to evaluate. If empty, evaluates ALL active flags. */\n keys?: InputMaybe<Array<Scalars['String']['input']>>;\n workspaceId: Scalars['String']['input'];\n};\n\nexport type ExchangeTokenInput = {\n appId: Scalars['String']['input'];\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n userId: Scalars['String']['input'];\n};\n\nexport type ExecutionUpdate = {\n __typename?: 'ExecutionUpdate';\n duration?: Maybe<Scalars['Int']['output']>;\n error?: Maybe<Scalars['String']['output']>;\n executionId: Scalars['ID']['output'];\n output?: Maybe<Scalars['JSON']['output']>;\n progress?: Maybe<Scalars['Int']['output']>;\n scheduleId: Scalars['ID']['output'];\n status: JobStatus;\n success: Scalars['Boolean']['output'];\n timestamp: Scalars['DateTime']['output'];\n};\n\nexport enum ExecutorType {\n Email = 'EMAIL',\n Function = 'FUNCTION',\n Graphql = 'GRAPHQL',\n InternalApi = 'INTERNAL_API',\n NatsTopic = 'NATS_TOPIC',\n Webhook = 'WEBHOOK'\n}\n\nexport type ExportNewsletterCampaignsInput = {\n format: NewsletterExportFormat;\n newsletterId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ExportNewsletterInput = {\n format: NewsletterExportFormat;\n includeStats?: InputMaybe<Scalars['Boolean']['input']>;\n newsletterIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ExportNewsletterSubscribersInput = {\n format: NewsletterExportFormat;\n platformProductId: Scalars['String']['input'];\n status?: InputMaybe<NewsletterSubscriptionStatus>;\n subscribed?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type ExportResult = {\n __typename?: 'ExportResult';\n createdAt: Scalars['DateTime']['output'];\n downloadUrl: Scalars['String']['output'];\n filename: Scalars['String']['output'];\n format: NewsletterExportFormat;\n id: Scalars['ID']['output'];\n recordCount: Scalars['Int']['output'];\n};\n\nexport type ExportSubscriber = {\n __typename?: 'ExportSubscriber';\n email: Scalars['String']['output'];\n platformProductId: Scalars['String']['output'];\n status: NewsletterSubscriptionStatus;\n subscribed: Scalars['Boolean']['output'];\n subscribedAt: Scalars['DateTime']['output'];\n unsubscribedAt?: Maybe<Scalars['DateTime']['output']>;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ExportSupportInput = {\n /** Date range filter - end date */\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n /** Export format (CSV or JSON) */\n format: SupportExportFormat;\n /** Include support messages in export */\n includeMessages?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by priority */\n priority?: InputMaybe<Array<SupportTicketPriority>>;\n /** Date range filter - start date */\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n /** Filter by ticket status */\n status?: InputMaybe<Array<SupportTicketStatus>>;\n /** User ID for which to export support data */\n userId: Scalars['ID']['input'];\n /** Workspace ID (optional) */\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport type ExportSupportResponse = {\n __typename?: 'ExportSupportResponse';\n /** Download URL (when ready) */\n downloadUrl?: Maybe<Scalars['String']['output']>;\n /** Estimated number of records */\n estimatedRecords?: Maybe<Scalars['Int']['output']>;\n /** Export job ID */\n jobId: Scalars['ID']['output'];\n /** Message */\n message: Scalars['String']['output'];\n /** Export status */\n status: Scalars['String']['output'];\n};\n\n/** External OIDC Provider Configuration (Google, Microsoft, etc.) */\nexport type ExternalOidcConfiguration = {\n __typename?: 'ExternalOIDCConfiguration';\n clientId: Scalars['String']['output'];\n clientSecret: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n discoveryUrl: Scalars['String']['output'];\n enabled: Scalars['Boolean']['output'];\n id: Scalars['ID']['output'];\n identifier: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n provider: Scalars['String']['output'];\n redirectUri?: Maybe<Scalars['String']['output']>;\n scopes: Array<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Input for creating/updating external OIDC configuration */\nexport type ExternalOidcConfigurationInput = {\n clientId: Scalars['String']['input'];\n clientSecret: Scalars['String']['input'];\n discoveryUrl: Scalars['String']['input'];\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n identifier: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n provider: Scalars['String']['input'];\n redirectUri?: InputMaybe<Scalars['String']['input']>;\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type Faq = {\n __typename?: 'FAQ';\n answer: Scalars['String']['output'];\n category: FaqCategory;\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n displayOrder: Scalars['Int']['output'];\n helpfulCount: Scalars['Int']['output'];\n helpfulnessScore?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n isPublished: Scalars['Boolean']['output'];\n notHelpfulCount: Scalars['Int']['output'];\n question: Scalars['String']['output'];\n tags: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n viewCount: Scalars['Int']['output'];\n};\n\nexport enum FaqCategory {\n Account = 'ACCOUNT',\n Billing = 'BILLING',\n General = 'GENERAL',\n GettingStarted = 'GETTING_STARTED',\n Security = 'SECURITY',\n Technical = 'TECHNICAL'\n}\n\nexport type FaqConnection = {\n __typename?: 'FAQConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<Faq>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type FaqFilterInput = {\n category?: InputMaybe<FaqCategory>;\n context?: InputMaybe<SupportContextFilterInput>;\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/** Facet count for filter refinement */\nexport type FacetCount = {\n __typename?: 'FacetCount';\n count: Scalars['Int']['output'];\n value: Scalars['String']['output'];\n};\n\nexport type FailedBillingOrderCallbacksResponse = {\n __typename?: 'FailedBillingOrderCallbacksResponse';\n orders: Array<BillingOrder>;\n totalCount: Scalars['Int']['output'];\n};\n\n/**\n * Platform-wide feature flag definition.\n * Managed by super admins. Can be scoped to a product and category.\n */\nexport type FeatureFlag = {\n __typename?: 'FeatureFlag';\n category?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n defaultValue: Scalars['JSON']['output'];\n description?: Maybe<Scalars['String']['output']>;\n flagType: FeatureFlagType;\n id: Scalars['ID']['output'];\n key: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n previewable: Scalars['Boolean']['output'];\n product?: Maybe<PlatformProduct>;\n productId?: Maybe<Scalars['String']['output']>;\n status: FeatureFlagStatus;\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n userPreferences: Array<UserFeatureFlagPreference>;\n workspaceOverrides: Array<WorkspaceFeatureFlagOverride>;\n};\n\n/** Result of bulk-evaluating multiple feature flags. */\nexport type FeatureFlagBulkEvaluation = {\n __typename?: 'FeatureFlagBulkEvaluation';\n evaluations: Array<FeatureFlagEvaluation>;\n};\n\n/**\n * Result of evaluating a single feature flag for a specific context.\n * Compatible with OpenFeature ResolutionDetails.\n */\nexport type FeatureFlagEvaluation = {\n __typename?: 'FeatureFlagEvaluation';\n errorCode?: Maybe<Scalars['String']['output']>;\n flagType: FeatureFlagType;\n key: Scalars['String']['output'];\n reason: Scalars['String']['output'];\n value: Scalars['JSON']['output'];\n variant?: Maybe<Scalars['String']['output']>;\n};\n\nexport type FeatureFlagFilterInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n previewable?: InputMaybe<Scalars['Boolean']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<FeatureFlagStatus>;\n};\n\n/** Paginated list of feature flags. */\nexport type FeatureFlagList = {\n __typename?: 'FeatureFlagList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<FeatureFlag>;\n total: Scalars['Int']['output'];\n};\n\nexport enum FeatureFlagStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED'\n}\n\nexport enum FeatureFlagType {\n Boolean = 'BOOLEAN',\n Json = 'JSON',\n Number = 'NUMBER',\n String = 'STRING'\n}\n\nexport type FeedbackBreakdown = {\n __typename?: 'FeedbackBreakdown';\n category: FeedbackCategory;\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n};\n\nexport enum FeedbackCategory {\n AgentHelpful = 'AGENT_HELPFUL',\n IssueResolved = 'ISSUE_RESOLVED',\n KnowledgeBase = 'KNOWLEDGE_BASE',\n Other = 'OTHER',\n ResponseTime = 'RESPONSE_TIME'\n}\n\n/** Available filter options for UI dropdowns */\nexport type FilterOptionsResult = {\n __typename?: 'FilterOptionsResult';\n /** Available categories */\n categories: Array<FacetCount>;\n /** Available compatible products */\n compatibleProducts: Array<FacetCount>;\n /** Available licenses */\n licenses: Array<FacetCount>;\n /** Available subtypes (optionally filtered by type) */\n subTypes: Array<FacetCount>;\n /** Available tags (top N most used) */\n tags: Array<FacetCount>;\n /** Available product types */\n types: Array<FacetCount>;\n};\n\nexport enum FulfillmentStatus {\n Cancelled = 'CANCELLED',\n Delivered = 'DELIVERED',\n Failed = 'FAILED',\n InTransit = 'IN_TRANSIT',\n OutForDelivery = 'OUT_FOR_DELIVERY',\n Pending = 'PENDING',\n Processing = 'PROCESSING',\n ReadyToShip = 'READY_TO_SHIP',\n Returned = 'RETURNED',\n Shipped = 'SHIPPED'\n}\n\n/** Fulfillment tracking event */\nexport type FulfillmentTrackingEvent = {\n __typename?: 'FulfillmentTrackingEvent';\n /** Raw carrier event data */\n carrierEvent?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** Event description */\n description?: Maybe<Scalars['String']['output']>;\n fulfillmentId: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n /** Event location */\n location?: Maybe<Scalars['String']['output']>;\n /** When this event occurred */\n occurredAt: Scalars['DateTime']['output'];\n /** Status at this event */\n status: FulfillmentStatus;\n};\n\nexport type GenerateApiKeyInput = {\n appId: Scalars['String']['input'];\n expiresAt?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n scope: Array<Scalars['String']['input']>;\n};\n\nexport type GenerateAppAsUserTokenInput = {\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n targetUserId: Scalars['String']['input'];\n};\n\nexport type GenerateAppTokenInput = {\n clientId: Scalars['String']['input'];\n clientSecret: Scalars['String']['input'];\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type GeoPricingOverride = {\n __typename?: 'GeoPricingOverride';\n amount?: Maybe<Scalars['Float']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n currency: Scalars['String']['output'];\n perSeatAmount?: Maybe<Scalars['Float']['output']>;\n region?: Maybe<Scalars['String']['output']>;\n state?: Maybe<Scalars['String']['output']>;\n};\n\nexport type GeoPricingOverrideInput = {\n amount?: InputMaybe<Scalars['Float']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n currency: Scalars['String']['input'];\n perSeatAmount?: InputMaybe<Scalars['Float']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type GrantAppWorkspaceAccessInput = {\n appId: Scalars['ID']['input'];\n /**\n * Optional subset of the app's global scopes. Empty array means the\n * authorization inherits the app's full scope list.\n */\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n tenantId: Scalars['ID']['input'];\n workspaceId: Scalars['ID']['input'];\n};\n\nexport type GrantCreditsInput = {\n amount: Scalars['Float']['input'];\n billingAccountId: Scalars['ID']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type GrantDelegationInput = {\n appId: Scalars['ID']['input'];\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n scopes: Array<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n workspaceIds?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/** GraphQL callback configuration for external service notifications Supports two authentication methods (controlled by CALLBACK_AUTH_METHOD env var): 1. token (default): Direct HTTP with authToken 2. internal-gateway: Service credentials via internal gateway */\nexport type GraphQlCallbackInput = {\n /** Authentication token for callback (optional) Required only when CALLBACK_AUTH_METHOD=token (default) Not needed when CALLBACK_AUTH_METHOD=internal-gateway Example: Bearer store-service-webhook-secret-xyz */\n authToken?: InputMaybe<Scalars['String']['input']>;\n /** GraphQL endpoint URL of the external service Example: http://wspace-store-svc:4002/graphql */\n endpoint: Scalars['String']['input'];\n /** Name of the GraphQL mutation to call on payment completion Example: updateOrderPaymentStatus */\n mutationName: Scalars['String']['input'];\n};\n\nexport type Group = {\n __typename?: 'Group';\n id: Scalars['ID']['output'];\n};\n\n/** Grouped store products for homepage display */\nexport type GroupedStoreProducts = {\n __typename?: 'GroupedStoreProducts';\n featured: Array<StoreProduct>;\n freeItems: Array<StoreProduct>;\n mostDownloaded: Array<StoreProduct>;\n recentlyAdded: Array<StoreProduct>;\n};\n\nexport type HmacCredentialResult = {\n __typename?: 'HMACCredentialResult';\n algorithm: Scalars['String']['output'];\n credentialId: Scalars['ID']['output'];\n secretKey: Scalars['String']['output'];\n};\n\nexport type HmacValidationResult = {\n __typename?: 'HMACValidationResult';\n appId?: Maybe<Scalars['ID']['output']>;\n error?: Maybe<Scalars['String']['output']>;\n valid: Scalars['Boolean']['output'];\n};\n\n/** Health status response */\nexport type HealthStatus = {\n __typename?: 'HealthStatus';\n status: Scalars['String']['output'];\n timestamp: Scalars['DateTime']['output'];\n version: Scalars['String']['output'];\n};\n\nexport type HomepageSection = {\n __typename?: 'HomepageSection';\n config: Scalars['JSON']['output'];\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n orderIndex: Scalars['Int']['output'];\n sectionType: Scalars['String']['output'];\n storeId: Scalars['ID']['output'];\n subtitle?: Maybe<Scalars['String']['output']>;\n title?: Maybe<Scalars['String']['output']>;\n};\n\nexport type I18nModule = {\n __typename?: 'I18nModule';\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n displayName: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n namespaces: Array<I18nNamespace>;\n product: I18nProduct;\n productId: Scalars['String']['output'];\n status: I18nModuleStatus;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type I18nModuleFilterInput = {\n productId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<I18nModuleStatus>;\n};\n\nexport type I18nModuleList = {\n __typename?: 'I18nModuleList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<I18nModule>;\n total: Scalars['Int']['output'];\n};\n\nexport enum I18nModuleStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED',\n Deprecated = 'DEPRECATED'\n}\n\nexport type I18nNamespace = {\n __typename?: 'I18nNamespace';\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n displayName: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n module: I18nModule;\n moduleId: Scalars['String']['output'];\n name: Scalars['String']['output'];\n status: I18nNamespaceStatus;\n translationKeys: Array<TranslationKey>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type I18nNamespaceFilterInput = {\n moduleId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<I18nNamespaceStatus>;\n};\n\nexport type I18nNamespaceList = {\n __typename?: 'I18nNamespaceList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<I18nNamespace>;\n total: Scalars['Int']['output'];\n};\n\nexport enum I18nNamespaceStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED',\n Deprecated = 'DEPRECATED'\n}\n\nexport type I18nProduct = {\n __typename?: 'I18nProduct';\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n displayName: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n modules: Array<I18nModule>;\n name: Scalars['String']['output'];\n status: I18nProductStatus;\n translationKeys: Array<TranslationKey>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type I18nProductFilterInput = {\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<I18nProductStatus>;\n};\n\nexport type I18nProductList = {\n __typename?: 'I18nProductList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<I18nProduct>;\n total: Scalars['Int']['output'];\n};\n\nexport enum I18nProductStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED',\n Deprecated = 'DEPRECATED'\n}\n\nexport type ImportJob = {\n __typename?: 'ImportJob';\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n errors?: Maybe<Scalars['JSON']['output']>;\n estimatedDuration?: Maybe<Scalars['Int']['output']>;\n failedKeys: Scalars['Int']['output'];\n fileName: Scalars['String']['output'];\n fileSize: Scalars['Int']['output'];\n fileUrl?: Maybe<Scalars['String']['output']>;\n format: ImportJobFormat;\n id: Scalars['ID']['output'];\n options?: Maybe<Scalars['JSON']['output']>;\n processedKeys: Scalars['Int']['output'];\n productId: Scalars['String']['output'];\n startedAt?: Maybe<Scalars['DateTime']['output']>;\n status: ImportJobStatus;\n successfulKeys: Scalars['Int']['output'];\n totalKeys?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type ImportJobFilterInput = {\n format?: InputMaybe<ImportJobFormat>;\n productId?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<ImportJobStatus>;\n};\n\nexport enum ImportJobFormat {\n Csv = 'CSV',\n Json = 'JSON',\n Po = 'PO',\n Xliff = 'XLIFF',\n Xlsx = 'XLSX'\n}\n\nexport type ImportJobList = {\n __typename?: 'ImportJobList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<ImportJob>;\n total: Scalars['Int']['output'];\n};\n\nexport type ImportJobProgressEvent = {\n __typename?: 'ImportJobProgressEvent';\n job: ImportJob;\n percentComplete: Scalars['Float']['output'];\n processedRecords: Scalars['Int']['output'];\n totalRecords: Scalars['Int']['output'];\n};\n\nexport enum ImportJobStatus {\n Cancelled = 'CANCELLED',\n Completed = 'COMPLETED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Processing = 'PROCESSING'\n}\n\nexport type ImportSubscriberInput = {\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n email: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n platformProductId: Scalars['String']['input'];\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ImportSubscribersResult = {\n __typename?: 'ImportSubscribersResult';\n errors: Array<Scalars['String']['output']>;\n failed: Scalars['Int']['output'];\n imported: Scalars['Int']['output'];\n skipped: Scalars['Int']['output'];\n success: Scalars['Boolean']['output'];\n};\n\n/** Result of billing role initialization */\nexport type InitializeBillingRolesResult = {\n __typename?: 'InitializeBillingRolesResult';\n /** Message describing the result */\n message: Scalars['String']['output'];\n /** Whether owner was assigned the Billing Admin role */\n ownerAssigned: Scalars['Boolean']['output'];\n /** Names of roles created */\n roleNames: Array<Scalars['String']['output']>;\n /** Number of roles created */\n rolesCreated: Scalars['Int']['output'];\n /** Whether the operation was successful */\n success: Scalars['Boolean']['output'];\n};\n\n/** Result of organization role initialization */\nexport type InitializeOrganizationRolesResult = {\n __typename?: 'InitializeOrganizationRolesResult';\n /** Message describing the result */\n message: Scalars['String']['output'];\n /** Whether owner was assigned the Owner role */\n ownerAssigned: Scalars['Boolean']['output'];\n /** Names of roles created */\n roleNames: Array<Scalars['String']['output']>;\n /** Number of roles created */\n rolesCreated: Scalars['Int']['output'];\n /** Whether the operation was successful */\n success: Scalars['Boolean']['output'];\n};\n\n/** Input for initiating a payment */\nexport type InitiatePaymentInput = {\n /** For ADDON purchase: the addon ID (single addon) */\n addonId?: InputMaybe<Scalars['ID']['input']>;\n /** For ADDON purchase: multiple addon IDs (for cart checkout) */\n addonIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n /** Base amount before tax */\n amount: Scalars['Float']['input'];\n /** For PLAN purchase: enable automatic renewal when subscription expires */\n autoRenew?: InputMaybe<Scalars['Boolean']['input']>;\n /** For PLAN purchase with autoRenew: payment method ID to use for auto-renewal Must be a verified saved payment method. Required if autoRenew is true. */\n autoRenewPaymentMethodId?: InputMaybe<Scalars['ID']['input']>;\n /** Billing account ID (required for tax calculation) */\n billingAccountId: Scalars['ID']['input'];\n /** For CREDITS purchase: number of credits to purchase */\n creditAmount?: InputMaybe<Scalars['Int']['input']>;\n /** Currency code (e.g., INR, USD) */\n currency: Scalars['String']['input'];\n /** For PLAN downgrade: the active higher-tier subscription ID being replaced. Old subscription is left active until natural expiry — no cancellation, no refund. User retains old plan quotas during overlap; continues on new plan after expiry. */\n downgradeFromSubscriptionId?: InputMaybe<Scalars['ID']['input']>;\n /** For PLAN purchase: whether this is an annual subscription (12 months with discount) */\n isAnnual?: InputMaybe<Scalars['Boolean']['input']>;\n /** Optional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Order ID for external service orders (mutually exclusive with creditAmount/planId/addonId) */\n orderId?: InputMaybe<Scalars['ID']['input']>;\n /** Saved payment method ID (from our PaymentMethod table) for one-click checkout */\n paymentMethodId?: InputMaybe<Scalars['ID']['input']>;\n /** For PLAN purchase: the plan ID */\n planId?: InputMaybe<Scalars['ID']['input']>;\n /** Product ID for multi-product systems */\n productId?: InputMaybe<Scalars['String']['input']>;\n /** Promo/discount code to apply */\n promoCode?: InputMaybe<Scalars['String']['input']>;\n /** Preferred payment provider (defaults to AUTO - system chooses based on currency/region) */\n provider?: InputMaybe<PaymentProviderPreference>;\n /** Type of purchase */\n purchaseType: PurchaseType;\n /** For ADDON purchase: quantities for each addon (parallel array with addonIds) */\n quantities?: InputMaybe<Array<Scalars['Int']['input']>>;\n /** For ADDON purchase: quantity (single addon) */\n quantity?: InputMaybe<Scalars['Int']['input']>;\n /** Whether to save the card for future purchases (only for new card payments) */\n saveCard?: InputMaybe<Scalars['Boolean']['input']>;\n /** For ADDON purchase: subscription ID to attach addon to. Required if billing account has multiple active subscriptions. If only one active subscription exists, it will be auto-selected. */\n subscriptionId?: InputMaybe<Scalars['ID']['input']>;\n /** For PLAN upgrade: the subscription ID being upgraded from. If provided, this is an upgrade - old quotas will be moved to new subscription. */\n upgradeFromSubscriptionId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/** Response from initiatePayment mutation */\nexport type InitiatePaymentResponse = {\n __typename?: 'InitiatePaymentResponse';\n /** Stripe client secret (for Stripe payments) */\n clientSecret?: Maybe<Scalars['String']['output']>;\n /** Coupon code applied (if any) */\n couponCode?: Maybe<Scalars['String']['output']>;\n /** Currency */\n currency: Scalars['String']['output'];\n /** Discount amount applied (if coupon was used) */\n discountAmount?: Maybe<Scalars['Float']['output']>;\n /** Discount type (PERCENTAGE, FIXED_AMOUNT, etc.) */\n discountType?: Maybe<Scalars['String']['output']>;\n /** Error message if failed */\n error?: Maybe<Scalars['String']['output']>;\n /** Tax jurisdiction */\n jurisdiction: Scalars['String']['output'];\n /** Razorpay order ID (for Razorpay payments) */\n orderId?: Maybe<Scalars['String']['output']>;\n /** Whether payment is already complete (for saved card one-click payments) */\n paymentComplete?: Maybe<Scalars['Boolean']['output']>;\n /** Backend payment ID for status polling (use this for getPayment query) */\n paymentId?: Maybe<Scalars['ID']['output']>;\n /** Customer phone/contact for payment form prefill (required for Razorpay) */\n prefillContact?: Maybe<Scalars['String']['output']>;\n /** Customer email for payment form prefill */\n prefillEmail?: Maybe<Scalars['String']['output']>;\n /** Customer name for payment form prefill */\n prefillName?: Maybe<Scalars['String']['output']>;\n /** Payment provider used */\n provider: Scalars['String']['output'];\n /** Razorpay customer ID (for saved cards in Razorpay checkout) */\n razorpayCustomerId?: Maybe<Scalars['String']['output']>;\n /** Razorpay key ID for frontend integration */\n razorpayKeyId?: Maybe<Scalars['String']['output']>;\n /** Whether payment requires additional action (3DS authentication) */\n requiresAction?: Maybe<Scalars['Boolean']['output']>;\n /** Original amount before tax */\n subtotal: Scalars['Float']['output'];\n /** Whether the payment initiation was successful */\n success: Scalars['Boolean']['output'];\n /** Tax amount */\n taxAmount: Scalars['Float']['output'];\n /** Tax breakdown (for GST: igst or cgst+sgst) */\n taxBreakdown?: Maybe<Scalars['JSON']['output']>;\n /** Tax rate applied (as decimal, e.g., 0.18 for 18%) */\n taxRate: Scalars['Float']['output'];\n /** Tax type (GST, VAT, SALES_TAX, etc.) */\n taxType: Scalars['String']['output'];\n /** Total amount including tax */\n total: Scalars['Float']['output'];\n};\n\nexport type InstallAppInput = {\n applicationId: Scalars['ID']['input'];\n autoUpdate?: InputMaybe<Scalars['Boolean']['input']>;\n config?: InputMaybe<Scalars['JSON']['input']>;\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n scope: InstallationScope;\n userId?: InputMaybe<Scalars['ID']['input']>;\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/** Result type for installPurchasedApp mutation */\nexport type InstallPurchasedAppResult = {\n __typename?: 'InstallPurchasedAppResult';\n error?: Maybe<Scalars['String']['output']>;\n installation?: Maybe<StoreAppInstallation>;\n message?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\nexport type InstallationFilterInput = {\n organizationId?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<StoreInstallationStatus>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum InstallationScope {\n Organization = 'ORGANIZATION',\n User = 'USER',\n Workspace = 'WORKSPACE'\n}\n\nexport enum InstallationStatus {\n Active = 'ACTIVE',\n Expired = 'EXPIRED',\n Revoked = 'REVOKED',\n Suspended = 'SUSPENDED',\n Uninstalled = 'UNINSTALLED'\n}\n\nexport type InventoryAdjustment = {\n __typename?: 'InventoryAdjustment';\n afterQty: Scalars['Int']['output'];\n beforeQty: Scalars['Int']['output'];\n createdAt: Scalars['DateTime']['output'];\n delta: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n notes?: Maybe<Scalars['String']['output']>;\n performedBy: Scalars['String']['output'];\n productId: Scalars['ID']['output'];\n reason: InventoryAdjustmentReason;\n variantId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport enum InventoryAdjustmentReason {\n Adjustment = 'ADJUSTMENT',\n Damage = 'DAMAGE',\n Purchase = 'PURCHASE',\n Restock = 'RESTOCK',\n Return = 'RETURN',\n Sale = 'SALE',\n Shrinkage = 'SHRINKAGE',\n Transfer = 'TRANSFER'\n}\n\nexport type InventoryAlert = {\n __typename?: 'InventoryAlert';\n currentQty: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n productId: Scalars['ID']['output'];\n resolvedAt?: Maybe<Scalars['DateTime']['output']>;\n status: InventoryAlertStatus;\n thresholdQty?: Maybe<Scalars['Int']['output']>;\n triggeredAt: Scalars['DateTime']['output'];\n type: InventoryAlertType;\n variantId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport enum InventoryAlertStatus {\n Open = 'OPEN',\n Resolved = 'RESOLVED',\n Snoozed = 'SNOOZED'\n}\n\nexport enum InventoryAlertType {\n BackInStock = 'BACK_IN_STOCK',\n LowStock = 'LOW_STOCK',\n OutOfStock = 'OUT_OF_STOCK'\n}\n\nexport enum InvitationStatus {\n Accepted = 'ACCEPTED',\n Cancelled = 'CANCELLED',\n Expired = 'EXPIRED',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type InviteDeveloperOrgMemberInput = {\n email: Scalars['String']['input'];\n message?: InputMaybe<Scalars['String']['input']>;\n permissions?: InputMaybe<Scalars['JSON']['input']>;\n role: DeveloperOrgRole;\n userId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/** Input for inviting a member to an organization by email */\nexport type InviteOrganizationMemberInput = {\n email: Scalars['String']['input'];\n message?: InputMaybe<Scalars['String']['input']>;\n organizationId: Scalars['String']['input'];\n role?: InputMaybe<UserRole>;\n};\n\n/** Status of an organization invite */\nexport enum InviteStatus {\n Accepted = 'ACCEPTED',\n Cancelled = 'CANCELLED',\n Expired = 'EXPIRED',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type Invoice = {\n __typename?: 'Invoice';\n amountPaid: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n dueDate?: Maybe<Scalars['DateTime']['output']>;\n gatewayInvoiceId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n invoiceNumber: Scalars['String']['output'];\n items: Array<InvoiceItem>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n paidAt?: Maybe<Scalars['DateTime']['output']>;\n payment?: Maybe<Payment>;\n paymentId?: Maybe<Scalars['String']['output']>;\n status: InvoiceStatus;\n subscription?: Maybe<BillingSubscription>;\n subscriptionId?: Maybe<Scalars['String']['output']>;\n subtotal: Scalars['Float']['output'];\n tax: Scalars['Float']['output'];\n total: Scalars['Float']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type InvoiceItem = {\n __typename?: 'InvoiceItem';\n amount: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n description: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n invoice: Invoice;\n invoiceId: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n quantity: Scalars['Int']['output'];\n unitPrice: Scalars['Float']['output'];\n};\n\nexport enum InvoiceStatus {\n Draft = 'DRAFT',\n Open = 'OPEN',\n Paid = 'PAID',\n Uncollectible = 'UNCOLLECTIBLE',\n Void = 'VOID'\n}\n\nexport type InvoiceTransaction = {\n __typename?: 'InvoiceTransaction';\n amount: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n invoiceId: Scalars['String']['output'];\n transaction: Transaction;\n transactionId: Scalars['String']['output'];\n};\n\nexport type ItemOrder = {\n __typename?: 'ItemOrder';\n appliedEntitlementId?: Maybe<Scalars['String']['output']>;\n buyerId: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['String']['output'];\n itemNameAtPurchase: Scalars['String']['output'];\n itemVersionAtPurchase?: Maybe<Scalars['String']['output']>;\n status: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type ItemOrdersInput = {\n endDate?: InputMaybe<Scalars['String']['input']>;\n limit: Scalars['Int']['input'];\n page: Scalars['Int']['input'];\n startDate?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<Scalars['String']['input']>;\n storeProductId: Scalars['String']['input'];\n};\n\n/** Orders list for a specific product */\nexport type ItemOrdersList = {\n __typename?: 'ItemOrdersList';\n currency: Scalars['String']['output'];\n orders: Array<ItemOrder>;\n totalCount: Scalars['Int']['output'];\n totalEarnings: Scalars['Float']['output'];\n};\n\nexport type ItemSalesStats = {\n __typename?: 'ItemSalesStats';\n currency: Scalars['String']['output'];\n monthlyEarnings: Scalars['Float']['output'];\n monthlySales: Scalars['Int']['output'];\n storeProduct: StoreProduct;\n totalEarnings: Scalars['Float']['output'];\n totalSales: Scalars['Int']['output'];\n};\n\nexport type JobExecution = {\n __typename?: 'JobExecution';\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n configSnapshot?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n correlationId?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n duration?: Maybe<Scalars['Int']['output']>;\n errorMessage?: Maybe<Scalars['String']['output']>;\n errorStack?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n nextRetryAt?: Maybe<Scalars['DateTime']['output']>;\n output?: Maybe<Scalars['JSON']['output']>;\n retryAttempt: Scalars['Int']['output'];\n scheduleVersion?: Maybe<ScheduleVersion>;\n scheduledJobId: Scalars['String']['output'];\n scheduledTime?: Maybe<Scalars['DateTime']['output']>;\n spanId?: Maybe<Scalars['String']['output']>;\n startedAt: Scalars['DateTime']['output'];\n status: JobStatus;\n statusCode?: Maybe<Scalars['Int']['output']>;\n success: Scalars['Boolean']['output'];\n traceId?: Maybe<Scalars['String']['output']>;\n triggeredAt: Scalars['DateTime']['output'];\n versionId?: Maybe<Scalars['String']['output']>;\n willRetry: Scalars['Boolean']['output'];\n workerId?: Maybe<Scalars['String']['output']>;\n workerPod?: Maybe<Scalars['String']['output']>;\n};\n\nexport type JobExecutionConnection = {\n __typename?: 'JobExecutionConnection';\n executions: Array<JobExecution>;\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n};\n\nexport type JobFilterInput = {\n createdAfter?: InputMaybe<Scalars['DateTime']['input']>;\n createdBefore?: InputMaybe<Scalars['DateTime']['input']>;\n createdBy?: InputMaybe<Scalars['String']['input']>;\n executorType?: InputMaybe<ExecutorType>;\n nextExecutionAfter?: InputMaybe<Scalars['DateTime']['input']>;\n nextExecutionBefore?: InputMaybe<Scalars['DateTime']['input']>;\n priority?: InputMaybe<SchedulePriority>;\n scheduleType?: InputMaybe<ScheduleType>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<JobStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type JobRetryPolicyInput = {\n backoffStrategy: BackoffStrategy;\n maxRetries: Scalars['Int']['input'];\n maxRetryDelay?: InputMaybe<Scalars['Int']['input']>;\n retryDelay: Scalars['Int']['input'];\n retryOn?: InputMaybe<Scalars['JSON']['input']>;\n timeoutPerAttempt?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport enum JobStatus {\n Archived = 'ARCHIVED',\n Cancelled = 'CANCELLED',\n Completed = 'COMPLETED',\n Disabled = 'DISABLED',\n Draft = 'DRAFT',\n Failed = 'FAILED',\n Paused = 'PAUSED',\n Pending = 'PENDING',\n Running = 'RUNNING'\n}\n\nexport type JobStatusUpdate = {\n __typename?: 'JobStatusUpdate';\n lastExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n nextExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n previousStatus?: Maybe<JobStatus>;\n scheduleId: Scalars['ID']['output'];\n scheduleName?: Maybe<Scalars['String']['output']>;\n status: JobStatus;\n timestamp: Scalars['DateTime']['output'];\n};\n\nexport type JoinWaitlistInput = {\n company?: InputMaybe<Scalars['String']['input']>;\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n email: Scalars['String']['input'];\n name?: InputMaybe<Scalars['String']['input']>;\n platformProductId: Scalars['String']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type KerberosChallengeResult = {\n __typename?: 'KerberosChallengeResult';\n challengeToken: Scalars['String']['output'];\n realm: Scalars['String']['output'];\n};\n\nexport type KerberosConfig = {\n __typename?: 'KerberosConfig';\n createdAt: Scalars['DateTime']['output'];\n enabled: Scalars['Boolean']['output'];\n id: Scalars['ID']['output'];\n kdcHost: Scalars['String']['output'];\n realm: Scalars['String']['output'];\n servicePrincipal: Scalars['String']['output'];\n tenantId: Scalars['ID']['output'];\n};\n\nexport type KerberosConfigInput = {\n kdcHost: Scalars['String']['input'];\n kdcPort?: InputMaybe<Scalars['Int']['input']>;\n realm: Scalars['String']['input'];\n servicePrincipal: Scalars['String']['input'];\n};\n\n/**\n * KeyboardShortcut entity - defines a keyboard shortcut action.\n * Shortcuts can be global (all products) or product-specific.\n */\nexport type KeyboardShortcut = {\n __typename?: 'KeyboardShortcut';\n /** Category for grouping (e.g., \"Navigation\", \"Actions\", \"UI\", \"Help\") */\n category: Scalars['String']['output'];\n /** When the shortcut was created */\n createdAt: Scalars['DateTime']['output'];\n /** Extended description of what the shortcut does */\n description?: Maybe<Scalars['String']['output']>;\n /** The event name to emit when triggered (e.g., \"navigate:home\", \"open:search\") */\n eventName: Scalars['String']['output'];\n /** The unique identifier for the keyboard shortcut */\n id: Scalars['ID']['output'];\n /** Whether this shortcut is currently enabled */\n isEnabled: Scalars['Boolean']['output'];\n /** Whether this is a key sequence (e.g., \"g h\" = press g, then h) */\n isSequence: Scalars['Boolean']['output'];\n /** Human-readable label (e.g., \"Go to Home\") */\n label: Scalars['String']['output'];\n /** Mac-specific key override (e.g., \"Cmd+K\") */\n macKey?: Maybe<Scalars['String']['output']>;\n /** The associated product (if product-specific) */\n product?: Maybe<PlatformProduct>;\n /** The product this shortcut belongs to (null = global shortcut) */\n productId?: Maybe<Scalars['ID']['output']>;\n /** The key combination (e.g., \"g h\", \"Cmd+K\", \"Ctrl+Shift+P\") */\n shortcutKey: Scalars['String']['output'];\n /** Display order within category */\n sortOrder: Scalars['Int']['output'];\n /** When the shortcut was last updated */\n updatedAt: Scalars['DateTime']['output'];\n /** Windows/Linux-specific key override (e.g., \"Ctrl+K\") */\n windowsKey?: Maybe<Scalars['String']['output']>;\n};\n\nexport type KeyboardShortcutFilterInput = {\n /** Filter by category */\n category?: InputMaybe<Scalars['String']['input']>;\n /** Include global shortcuts (default: true) */\n includeGlobal?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by enabled status */\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by product ID (null = global shortcuts only) */\n productId?: InputMaybe<Scalars['ID']['input']>;\n /** Search in label, description, shortcutKey, or eventName */\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type KeyboardShortcutList = {\n __typename?: 'KeyboardShortcutList';\n /** Whether there are more shortcuts available */\n hasMore: Scalars['Boolean']['output'];\n /** List of keyboard shortcuts */\n items: Array<KeyboardShortcut>;\n /** Total count of shortcuts */\n total: Scalars['Int']['output'];\n};\n\nexport type KnowledgeBaseArticle = {\n __typename?: 'KnowledgeBaseArticle';\n archivedAt?: Maybe<Scalars['DateTime']['output']>;\n authorId: Scalars['String']['output'];\n category?: Maybe<TicketCategory>;\n categoryId?: Maybe<Scalars['String']['output']>;\n content: Scalars['String']['output'];\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n excerpt?: Maybe<Scalars['String']['output']>;\n helpfulCount: Scalars['Int']['output'];\n helpfulnessScore?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n metaDescription?: Maybe<Scalars['String']['output']>;\n notHelpfulCount: Scalars['Int']['output'];\n previousVersion?: Maybe<Scalars['String']['output']>;\n publishedAt?: Maybe<Scalars['DateTime']['output']>;\n slug: Scalars['String']['output'];\n status: ArticleStatus;\n tags: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n version: Scalars['Int']['output'];\n viewCount: Scalars['Int']['output'];\n};\n\nexport type KnowledgeBaseArticleConnection = {\n __typename?: 'KnowledgeBaseArticleConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<KnowledgeBaseArticle>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type KnowledgeBaseArticleFilterInput = {\n authorId?: InputMaybe<Scalars['String']['input']>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextFilterInput>;\n status?: InputMaybe<ArticleStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type LdapConfig = {\n __typename?: 'LDAPConfig';\n baseDN: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n enabled: Scalars['Boolean']['output'];\n host: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n port: Scalars['Int']['output'];\n searchFilter: Scalars['String']['output'];\n tenantId: Scalars['ID']['output'];\n useTLS: Scalars['Boolean']['output'];\n};\n\nexport type LdapConfigInput = {\n baseDN: Scalars['String']['input'];\n bindDN?: InputMaybe<Scalars['String']['input']>;\n bindPassword?: InputMaybe<Scalars['String']['input']>;\n host: Scalars['String']['input'];\n port?: InputMaybe<Scalars['Int']['input']>;\n searchFilter?: InputMaybe<Scalars['String']['input']>;\n useTLS?: InputMaybe<Scalars['Boolean']['input']>;\n userMapping?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type Language = {\n __typename?: 'Language';\n code: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n dateFormat: Scalars['String']['output'];\n direction: LanguageDirection;\n fallbackCode?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isDefault: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n nativeName: Scalars['String']['output'];\n pluralRules?: Maybe<Scalars['JSON']['output']>;\n region?: Maybe<Scalars['String']['output']>;\n status: LanguageStatus;\n timeFormat: Scalars['String']['output'];\n translations: Array<Translation>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum LanguageDirection {\n Ltr = 'LTR',\n Rtl = 'RTL'\n}\n\nexport type LanguageFilterInput = {\n direction?: InputMaybe<LanguageDirection>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<LanguageStatus>;\n};\n\nexport type LanguageList = {\n __typename?: 'LanguageList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Language>;\n total: Scalars['Int']['output'];\n};\n\nexport enum LanguageStatus {\n Active = 'ACTIVE',\n Deprecated = 'DEPRECATED',\n Draft = 'DRAFT'\n}\n\nexport type LicenseActivation = {\n __typename?: 'LicenseActivation';\n activatedAt: Scalars['DateTime']['output'];\n deviceId: Scalars['String']['output'];\n deviceName?: Maybe<Scalars['String']['output']>;\n entitlementId: Scalars['ID']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n lastSeenAt: Scalars['DateTime']['output'];\n platform?: Maybe<Scalars['String']['output']>;\n revokedAt?: Maybe<Scalars['DateTime']['output']>;\n revokedBy?: Maybe<Scalars['String']['output']>;\n userAgent?: Maybe<Scalars['String']['output']>;\n};\n\nexport type LicenseActivationResult = {\n __typename?: 'LicenseActivationResult';\n activation: LicenseActivation;\n entitlement: ProductEntitlement;\n offlineToken: Scalars['String']['output'];\n};\n\nexport type LicenseSeat = {\n __typename?: 'LicenseSeat';\n assignedAt: Scalars['DateTime']['output'];\n assignedBy: Scalars['String']['output'];\n assigneeEmail?: Maybe<Scalars['String']['output']>;\n assigneeUserId: Scalars['String']['output'];\n entitlementId: Scalars['ID']['output'];\n id: Scalars['ID']['output'];\n revocationReason?: Maybe<Scalars['String']['output']>;\n revokedAt?: Maybe<Scalars['DateTime']['output']>;\n revokedBy?: Maybe<Scalars['String']['output']>;\n role: LicenseSeatRole;\n};\n\nexport enum LicenseSeatRole {\n Admin = 'ADMIN',\n Member = 'MEMBER',\n Viewer = 'VIEWER'\n}\n\nexport type LicenseTransfer = {\n __typename?: 'LicenseTransfer';\n entitlementId: Scalars['ID']['output'];\n fromUserId?: Maybe<Scalars['String']['output']>;\n fromWorkspaceId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n newLicenseKey: Scalars['String']['output'];\n notes?: Maybe<Scalars['String']['output']>;\n oldLicenseKey: Scalars['String']['output'];\n reason: LicenseTransferReason;\n toUserId?: Maybe<Scalars['String']['output']>;\n toWorkspaceId?: Maybe<Scalars['String']['output']>;\n transferredAt: Scalars['DateTime']['output'];\n transferredBy: Scalars['String']['output'];\n};\n\nexport enum LicenseTransferReason {\n AdminAction = 'ADMIN_ACTION',\n Merger = 'MERGER',\n RefundReversal = 'REFUND_REVERSAL',\n UserChange = 'USER_CHANGE',\n WorkspaceChange = 'WORKSPACE_CHANGE'\n}\n\nexport type LicenseTransferResult = {\n __typename?: 'LicenseTransferResult';\n entitlement: ProductEntitlement;\n transfer: LicenseTransfer;\n};\n\nexport type LicenseUsage = {\n __typename?: 'LicenseUsage';\n currentValue: Scalars['String']['output'];\n entitlementId: Scalars['ID']['output'];\n id: Scalars['ID']['output'];\n limitValue?: Maybe<Scalars['String']['output']>;\n metricType: Scalars['String']['output'];\n period: Scalars['String']['output'];\n periodEnd: Scalars['DateTime']['output'];\n periodStart: Scalars['DateTime']['output'];\n};\n\nexport enum LicenseUsagePeriod {\n Daily = 'DAILY',\n Lifetime = 'LIFETIME',\n Monthly = 'MONTHLY'\n}\n\nexport type LicenseValidationResult = {\n __typename?: 'LicenseValidationResult';\n entitlementId?: Maybe<Scalars['ID']['output']>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n features: Array<Scalars['String']['output']>;\n productId?: Maybe<Scalars['ID']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n valid: Scalars['Boolean']['output'];\n};\n\nexport type LimitType = {\n __typename?: 'LimitType';\n type: Scalars['String']['output'];\n value: Scalars['Int']['output'];\n};\n\nexport type LinkTicketsInput = {\n fromTicketId: Scalars['String']['input'];\n linkType: LinkType;\n toTicketId: Scalars['String']['input'];\n};\n\nexport enum LinkType {\n BlockedBy = 'BLOCKED_BY',\n Blocks = 'BLOCKS',\n Child = 'CHILD',\n Duplicate = 'DUPLICATE',\n Parent = 'PARENT',\n Related = 'RELATED'\n}\n\nexport type LowStockProduct = {\n __typename?: 'LowStockProduct';\n name: Scalars['String']['output'];\n productId: Scalars['ID']['output'];\n stockQuantity: Scalars['Int']['output'];\n threshold: Scalars['Int']['output'];\n};\n\nexport enum MfaMethod {\n Email = 'EMAIL',\n Sms = 'SMS',\n Totp = 'TOTP',\n Webauthn = 'WEBAUTHN'\n}\n\nexport type MfaSetupResult = {\n __typename?: 'MFASetupResult';\n backupCodes?: Maybe<Array<Scalars['String']['output']>>;\n method: MfaMethod;\n qrCode?: Maybe<Scalars['String']['output']>;\n secret?: Maybe<Scalars['String']['output']>;\n};\n\nexport type MfaVerifyInput = {\n challengeId: Scalars['String']['input'];\n code: Scalars['String']['input'];\n method: MfaMethod;\n};\n\nexport type MagicLinkSendResult = {\n __typename?: 'MagicLinkSendResult';\n expiresIn?: Maybe<Scalars['Int']['output']>;\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\nexport type MaintenanceModeStatus = {\n __typename?: 'MaintenanceModeStatus';\n enabled: Scalars['Boolean']['output'];\n estimatedEnd?: Maybe<Scalars['DateTime']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum MediaPosition {\n Footer = 'FOOTER',\n Header = 'HEADER',\n Inline = 'INLINE',\n Overlay = 'OVERLAY',\n Sidebar = 'SIDEBAR'\n}\n\n/** Input for message attachments */\nexport type MessageAttachmentInput = {\n /** MIME type */\n mimeType?: InputMaybe<Scalars['String']['input']>;\n /** Attachment name */\n name?: InputMaybe<Scalars['String']['input']>;\n /** Attachment type (image, file, video) */\n type: Scalars['String']['input'];\n /** Attachment URL */\n url: Scalars['String']['input'];\n};\n\n/**\n * MessageDeliveryAttempt represents a single delivery attempt (transient, 7-day TTL)\n * Used for debugging and monitoring only\n */\nexport type MessageDeliveryAttempt = {\n __typename?: 'MessageDeliveryAttempt';\n /** Associated channel */\n channel: Channel;\n /** Associated channel ID */\n channelId: Scalars['ID']['output'];\n /** Message content */\n content: Scalars['String']['output'];\n /** Operation context (tenantId, userId, etc.) */\n context?: Maybe<OperationContext>;\n /** Creation timestamp */\n createdAt: Scalars['DateTime']['output'];\n /** Error message (if failed) */\n errorMessage?: Maybe<Scalars['String']['output']>;\n /** Expiration timestamp (7 days from creation) */\n expiresAt: Scalars['DateTime']['output'];\n /** Message format (text, markdown, html) */\n format?: Maybe<Scalars['String']['output']>;\n /** Unique delivery attempt ID */\n id: Scalars['ID']['output'];\n /** Next retry timestamp (if retrying) */\n nextRetryAt?: Maybe<Scalars['DateTime']['output']>;\n /** Platform-specific message options */\n platformOptions?: Maybe<Scalars['JSON']['output']>;\n /** Platform response (message ID, timestamp, etc.) */\n platformResponse?: Maybe<Scalars['JSON']['output']>;\n /** Retry count */\n retryCount: Scalars['Int']['output'];\n /** Message sent timestamp */\n sentAt?: Maybe<Scalars['DateTime']['output']>;\n /** Delivery status */\n status: DeliveryStatus;\n /** Last update timestamp */\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Message delivery result */\nexport type MessageDeliveryResult = {\n __typename?: 'MessageDeliveryResult';\n /** Delivery attempt ID (for tracking) */\n attemptId: Scalars['ID']['output'];\n /** Error message (if failed) */\n error?: Maybe<Scalars['String']['output']>;\n /** Platform message ID (if successful) */\n messageId?: Maybe<Scalars['String']['output']>;\n /** Platform metadata for downstream correlation */\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Next retry timestamp */\n nextRetryAt?: Maybe<Scalars['DateTime']['output']>;\n /** Whether delivery was successful */\n success: Scalars['Boolean']['output'];\n /** Will retry delivery */\n willRetry: Scalars['Boolean']['output'];\n};\n\nexport enum MessageType {\n AgentReply = 'AGENT_REPLY',\n CustomerReply = 'CUSTOMER_REPLY',\n InternalNote = 'INTERNAL_NOTE',\n SystemMessage = 'SYSTEM_MESSAGE'\n}\n\nexport enum MisfirePolicy {\n Coalesce = 'COALESCE',\n FireImmediately = 'FIRE_IMMEDIATELY',\n FireNextValid = 'FIRE_NEXT_VALID',\n Skip = 'SKIP'\n}\n\nexport type MonthlyEarning = {\n __typename?: 'MonthlyEarning';\n currency: Scalars['String']['output'];\n earnings: Scalars['Float']['output'];\n month: Scalars['String']['output'];\n orders: Scalars['Int']['output'];\n year: Scalars['Int']['output'];\n};\n\n/** Root mutation type */\nexport type Mutation = {\n __typename?: 'Mutation';\n /**\n * Placeholder field to allow empty Mutation type extension.\n * Must be @shareable since it exists in multiple subgraphs.\n */\n _empty?: Maybe<Scalars['String']['output']>;\n /**\n * Placeholder mutation (extended by modules)\n * @rbac(public: true, scopeType: \"global\")\n */\n _placeholder?: Maybe<Scalars['String']['output']>;\n /** Accept an organization invitation */\n acceptDeveloperOrgInvitation: DeveloperOrgMember;\n /** Accept an organization invite (must be logged in as the invited user) */\n acceptOrganizationInvite: OrganizationMember;\n /** Activate a channel */\n activateChannel: Channel;\n /** Activate a connection */\n activateConnection: ChannelConnection;\n activateLicense: LicenseActivationResult;\n activateSchedule: ScheduledJob;\n /** Activate a suspended tenant */\n activateTenant: Tenant;\n /** Activate a tour schedule */\n activateTourSchedule: TourSchedule;\n /** Activate a suspended workspace */\n activateWorkspace: Workspace;\n addAgentSkills: AgentProfile;\n /** Add apps to a collection */\n addAppsToCollection: AppCollection;\n /** Add a payment method to an organization */\n addDeveloperOrgPaymentMethod: DeveloperOrgPaymentMethod;\n /** Append a tracking event to fulfillment history (admin) */\n addOrderTrackingEvent: FulfillmentTrackingEvent;\n /** Add a member to an organization */\n addOrganizationMember: OrganizationMember;\n /** Add a payment method to a billing account */\n addPaymentMethod: PaymentMethod;\n addPayoutAccount: PayoutAccount;\n addPublisherPayoutMethod: PublisherPayoutMethod;\n addReleaseTesters: Array<ReleaseTrackUser>;\n addSubscribersToList: NewsletterList;\n addSuppression: NewsletterSuppression;\n addTicketTags: SupportTicket;\n /** Add an item to the cart (creates cart if needed) */\n addToCart: CartItemPayload;\n addToWishlist: UserWishlist;\n /** Add a new tour step */\n addTourStep: TourStep;\n addUsage: Scalars['Boolean']['output'];\n /** Add a member to a workspace */\n addWorkspaceMember: WorkspaceMember;\n adjustInventory: InventoryAdjustment;\n /** Apply a billing discount code */\n applyBillingDiscount: BillingDiscount;\n applySLAPolicy: SupportTicket;\n /** Apply a coupon to a subscription */\n applySubscriptionCoupon: DeveloperOrgSubscription;\n approveApplication: Application;\n /** Approve a payout (admin only) */\n approvePayout: DeveloperOrgPayout;\n approvePayoutRequest: PayoutRequest;\n /** Admin approves a product that's in PENDING_REVIEW, moving it to PUBLISHED. */\n approveProduct: StoreProduct;\n approvePublisher: Publisher;\n approveReview: ProductReview;\n approveTranslation: Translation;\n approveWaitlist: NewsletterWaitlist;\n /** Soft archive a billing account. Financial history is preserved and the account is removed from active billing operations. */\n archiveBillingAccount: BillingAccount;\n /** Archive a channel */\n archiveChannel: Channel;\n archiveKnowledgeBaseArticle: KnowledgeBaseArticle;\n /** Archive a notification without deleting it */\n archiveNotification: Notification;\n /** Archive multiple notifications */\n archiveNotifications: BatchOperationResult;\n archivePayoutAccount: Scalars['Boolean']['output'];\n archiveSchedule: ScheduledJob;\n /** Archive a tour (change status to ARCHIVED) */\n archiveTour: Tour;\n /** Archive a workspace */\n archiveWorkspace: Workspace;\n /**\n * Assign the \"Authenticated User\" role to a user at the global scope.\n * This should be called when a new user signs up to give them basic platform access.\n * This mutation is idempotent - calling it multiple times for the same user is safe.\n *\n * SECURITY: This mutation is restricted to service and super_admin actors only.\n * It should be called by global-auth-svc when a user signs up, not directly by users.\n */\n assignAuthenticatedUserRole: AssignAuthenticatedUserRoleResult;\n assignEntitlementSeat: ProductEntitlement;\n /** Assign a role to an actor */\n assignRoleToActor: ActorRoleAssignment;\n assignSeat: LicenseSeat;\n assignSupportTicket: SupportTicket;\n /** Attach media to a tour step */\n attachMediaToStep: TourStepMedia;\n authenticate: AuthResult;\n authenticateAPIKey: AuthResult;\n /** Authenticate an app using client credentials (OAuth2 Client Credentials flow) */\n authenticateApp: AppTokenResponse;\n /** Authenticate using HTTP Basic Auth (base64 encoded username:password) */\n authenticateBasicAuth: AuthResult;\n /** Authenticate using HTTP Digest credentials */\n authenticateDigest: AuthResult;\n /** Authenticate with Kerberos SPNEGO token */\n authenticateKerberos: AuthResult;\n /** Authenticate using LDAP credentials */\n authenticateLDAP: AuthResult;\n authenticateMagicLink: AuthResult;\n /** Complete NTLM authentication with Type 3 message */\n authenticateNTLM: AuthResult;\n authenticateOAuth: AuthResult;\n /** Complete OIDC SSO authentication by exchanging authorization code */\n authenticateOIDC: AuthPayload;\n /** Authenticate using RADIUS */\n authenticateRADIUS: AuthResult;\n authenticateSAML: AuthResult;\n /** Authenticate with wallet signature (EIP-191 personal_sign) */\n authenticateWallet: WalletAuthResult;\n /** Authenticate with a signed challenge */\n authenticateWithPublicKey: AuthResult;\n bulkArchiveSchedules: SchedulerBulkOperationResult;\n /** Bulk assign a role to multiple actors */\n bulkAssignRole: Scalars['Int']['output'];\n bulkCreateTranslationKeys: BulkOperationResult;\n bulkCreateTranslations: BulkOperationResult;\n bulkDeleteActivityLogs: Scalars['Int']['output'];\n bulkPauseSchedules: SchedulerBulkOperationResult;\n bulkResumeSchedules: SchedulerBulkOperationResult;\n /** Bulk set user's opt-in/out preference for multiple feature flags */\n bulkSetUserFeatureFlagPreferences: Array<UserFeatureFlagPreference>;\n bulkUpdateSchedules: SchedulerBulkOperationResult;\n bulkUpdateTranslations: BulkOperationResult;\n /** Cancel pending delivery */\n cancelDelivery: Scalars['Boolean']['output'];\n /** Cancel an organization invitation */\n cancelDeveloperOrgInvitation: Scalars['Boolean']['output'];\n /** Cancel a subscription */\n cancelDeveloperOrgSubscription: DeveloperOrgSubscription;\n cancelImportJob: ImportJob;\n cancelNewsletter: Newsletter;\n /** Cancel an organization invite (admin or inviter) */\n cancelOrganizationInvite: OrganizationInvite;\n /** Cancel a pending payout */\n cancelPayout: DeveloperOrgPayout;\n /** Cancel a scheduled notification */\n cancelScheduledNotification: Scalars['Boolean']['output'];\n /** Cancel a subscription - disables auto-renewal but keeps subscription active until endDate. The subscription will not renew when it expires. */\n cancelSubscription: BillingSubscription;\n changePassword: Scalars['Boolean']['output'];\n /** Check push MFA challenge status (polling) */\n checkPushMFAStatus: PushMfaStatus;\n /** Checkout and create an order from the cart */\n checkout: CheckoutPayload;\n /** Clear all items from the cart */\n clearCart: CartPayload;\n cloneSchedule: ScheduledJob;\n closeSupportTicket: SupportTicket;\n /** Complete OAuth flow with authorization code */\n completeOAuthFlow: ChannelConnection;\n /** Mark a specific step as completed */\n completeStep: TourUserProgress;\n completeSupportAttachmentUpload: SupportAttachmentFile;\n /** Mark a tour as completed for a user */\n completeTour: TourUserProgress;\n configureEntitlementSeats: ProductEntitlement;\n /** Configure Kerberos authentication for a tenant */\n configureKerberos: KerberosConfig;\n /** Configure LDAP authentication for a tenant */\n configureLDAP: LdapConfig;\n /** Configure RADIUS authentication for a tenant */\n configureRADIUS: RadiusConfig;\n /** Configure tenant settings */\n configureTenant: Tenant;\n /** Configure workspace routing (admin only) */\n configureWorkspace: Workspace;\n createAddOns: Scalars['Boolean']['output'];\n createAgentProfile: AgentProfile;\n createApp: AppCreateResponse;\n /** Create an app collection */\n createAppCollection: AppCollection;\n /** Create a review for an application */\n createAppReview: AppReview;\n createApplication: Application;\n createApplicationVersion: ApplicationVersion;\n createAutomationStep: AutomationStep;\n /** Create a new billing account for the current org (from context) */\n createBillingAccount: BillingAccount;\n /** Create a billing order for external service (e.g., store) Stores order details + GraphQL callback endpoint for payment notifications */\n createBillingOrder: CreateBillingOrderResponse;\n createCampaign: NewsletterCampaign;\n createCannedResponse: CannedResponse;\n /** Create multiple categories at once */\n createCategories: Scalars['Boolean']['output'];\n createCategory: ProductCategory;\n /** Create a new channel */\n createChannel: Channel;\n /** Create a new connection (OAuth flow or direct credentials) */\n createConnection: ChannelConnection;\n /** Create a new content page (global default or product-specific) */\n createContentPage: ProductContentPage;\n /** Create a new coupon (admin) */\n createCoupon: Coupon;\n /** Create a credit note */\n createCreditNote: CreditNote;\n /** Create a subscription */\n createDeveloperOrgSubscription: DeveloperOrgSubscription;\n /** Create a new developer organization */\n createDeveloperOrganization: DeveloperOrganization;\n createDeveloperProfile: DeveloperProfile;\n /** Create a discount code */\n createDiscount: BillingDiscount;\n createEditorialCollection: EditorialCollection;\n /** Create a new subscription entitlement (link a plan to a store item) */\n createEntitlement: SubscriptionEntitlement;\n createFAQ: Faq;\n /** Create a new feature flag (super admin only) */\n createFeatureFlag: FeatureFlag;\n createI18nModule: I18nModule;\n createI18nNamespace: I18nNamespace;\n createI18nProduct: I18nProduct;\n createImportJob: ImportJob;\n /** Create a new keyboard shortcut */\n createKeyboardShortcut: KeyboardShortcut;\n createKnowledgeBaseArticle: KnowledgeBaseArticle;\n createLanguage: Language;\n createNewsletter: Newsletter;\n createNewsletterAutomation: NewsletterAutomation;\n createNewsletterList: NewsletterList;\n createNewsletterTemplate: NewsletterTemplate;\n createNewsletterVariant: NewsletterVariant;\n createNewsletterWebhook: NewsletterWebhook;\n /** Create a notification (without triggering - use triggerNotification to send) */\n createNotification: Notification;\n /** Create a notification template */\n createNotificationTemplate: NotificationTemplate;\n /** Create a notification topic */\n createNotificationTopic: NotificationTopic;\n /** Create a new organization */\n createOrganization: Organization;\n /** Create a permission override for an actor */\n createPermissionOverride: PermissionOverride;\n createPlan: Scalars['Boolean']['output'];\n /** Create a new platform product */\n createPlatformProduct: PlatformProduct;\n /** Create an OPA policy reference */\n createPolicyReference: PolicyReference;\n createProduct: StoreProduct;\n createProductEntitlement: ProductEntitlement;\n createPromoCode: PromoCode;\n /**\n * Create a support ticket from a public/unauthenticated source (e.g. website contact form).\n * Does not require authentication.\n */\n createPublicSupportTicket: SupportTicket;\n createQuota: Scalars['Boolean']['output'];\n createRecurringBillingPlan: RecurringBillingPlan;\n /** Create/update user's referral code */\n createReferralCode: ReferralCode;\n /** Create a refund for a charge (legacy - use refund management mutations below) */\n createRefund: Refund;\n /** Create a manual refund record for the current org (from context) */\n createRefundRecord: RefundRecord;\n /** Create a refund record from a specific failed webhook */\n createRefundRecordFromWebhook?: Maybe<RefundRecord>;\n /** Create refund records from all failed webhooks */\n createRefundRecordsFromFailedWebhooks: Array<RefundRecord>;\n createRelease: ProductRelease;\n createReleaseTrack: ReleaseTrack;\n createReview: ProductReview;\n /** Create a new role */\n createRole: Role;\n /** Create a permission override for a role */\n createRolePermissionOverride: RolePermissionOverride;\n createSLAPolicy: SlaPolicy;\n createScheduleFromTemplate: ScheduledJob;\n createScheduleTemplate: ScheduleTemplate;\n createScheduledJob: ScheduledJob;\n /** Create a signed cookie session */\n createSignedCookieSession: SignedCookieResult;\n createStore: Store;\n /** Create a new store order (called when user clicks checkout) */\n createStoreOrder: StoreOrder;\n createSupportMessage: SupportMessage;\n createSupportTicket: SupportTicket;\n createTag: ProductTag;\n /** Create a tax rate */\n createTaxRate: TaxRate;\n /** Create a new tenant (requires admin privileges) */\n createTenant: Tenant;\n createTicketCategory: TicketCategory;\n createTicketFromTemplate: SupportTicket;\n createTicketTemplate: TicketTemplate;\n /** Create a new tour */\n createTour: Tour;\n /** Create a tour from a template */\n createTourFromTemplate: Tour;\n /** Create a new tour schedule */\n createTourSchedule: TourSchedule;\n /** Create a tour template */\n createTourTemplate: TourTemplate;\n createTranslation: Translation;\n createTranslationKey: TranslationKey;\n /**\n * Create complete tenant structure for a new user (tenant, org, workspace)\n * This is typically called after user email verification\n */\n createUserTenantStructure: CreateUserTenantStructureResponse;\n /**\n * Create a visibility rule for a resource.\n * Auto-registers the resource if not already registered.\n */\n createVisibilityRule: VisibilityRule;\n createWebhook: Webhook;\n /** Create a new workspace */\n createWorkspace: Workspace;\n /** Deactivate current user's account (soft disable, can be reactivated) */\n deactivateAccount: AccountActionResult;\n deactivateApp: Scalars['Boolean']['output'];\n /** Deactivate a channel */\n deactivateChannel: Channel;\n /** Deactivate a connection */\n deactivateConnection: ChannelConnection;\n /** Deactivate a coupon (admin) */\n deactivateCoupon: Coupon;\n deactivateLicense: Scalars['Boolean']['output'];\n /** Deactivate a referral code */\n deactivateReferralCode: ReferralCode;\n /** Deactivate a resource (soft-delete) */\n deactivateResource: Scalars['Boolean']['output'];\n /** Deactivate a tour schedule */\n deactivateTourSchedule: TourSchedule;\n /** Pure quota decrement — called by wspace-activity-svc after writing a UsageRecord. Only decrements QuotaAssignment.limits.value. Does NOT write back to activity-svc. Requires the quotaAssignmentId already resolved by checkQuotaExhausted. */\n decrementQuota: Scalars['Boolean']['output'];\n /**\n * Delete current user's account permanently\n * Requires password confirmation\n */\n deleteAccount: AccountActionResult;\n deleteActivityLog: Scalars['Boolean']['output'];\n deleteAgentProfile: Scalars['Boolean']['output'];\n /** Delete an app collection */\n deleteAppCollection: Scalars['Boolean']['output'];\n /** Delete a review */\n deleteAppReview: Scalars['Boolean']['output'];\n deleteApplication: Scalars['Boolean']['output'];\n deleteAutomationStep: Scalars['Boolean']['output'];\n deleteCannedResponse: Scalars['Boolean']['output'];\n deleteCategory: Scalars['Boolean']['output'];\n /** Delete a channel (soft delete) */\n deleteChannel: Scalars['Boolean']['output'];\n /** Delete a connection (removes all credentials) */\n deleteConnection: Scalars['Boolean']['output'];\n /** Delete a content page */\n deleteContentPage: Scalars['Boolean']['output'];\n /** Delete a payment method */\n deleteDeveloperOrgPaymentMethod: Scalars['Boolean']['output'];\n /** Delete a developer organization */\n deleteDeveloperOrganization: Scalars['Boolean']['output'];\n /** Delete a discount */\n deleteDiscount: Scalars['Boolean']['output'];\n /** Delete an entitlement */\n deleteEntitlement: Scalars['Boolean']['output'];\n /**\n * Delete external OIDC configuration\n * Admin only\n */\n deleteExternalOIDCConfig: AccountActionResult;\n deleteFAQ: Scalars['Boolean']['output'];\n /** Delete a feature flag (super admin only) */\n deleteFeatureFlag: Scalars['Boolean']['output'];\n deleteI18nModule: Scalars['Boolean']['output'];\n deleteI18nNamespace: Scalars['Boolean']['output'];\n deleteI18nProduct: Scalars['Boolean']['output'];\n /** Delete Kerberos configuration */\n deleteKerberosConfiguration: Scalars['Boolean']['output'];\n /** Delete a keyboard shortcut */\n deleteKeyboardShortcut: Scalars['Boolean']['output'];\n deleteKnowledgeBaseArticle: Scalars['Boolean']['output'];\n /** Delete LDAP configuration */\n deleteLDAPConfiguration: Scalars['Boolean']['output'];\n deleteLanguage: Scalars['Boolean']['output'];\n /** Delete all read notifications for authenticated user */\n deleteMyReadNotifications: Scalars['Boolean']['output'];\n deleteNewsletter: Scalars['Boolean']['output'];\n deleteNewsletterAutomation: Scalars['Boolean']['output'];\n deleteNewsletterList: Scalars['Boolean']['output'];\n deleteNewsletterTemplate: Scalars['Boolean']['output'];\n deleteNewsletterVariant: Scalars['Boolean']['output'];\n deleteNewsletterWebhook: Scalars['Boolean']['output'];\n /** Delete a single notification */\n deleteNotification: Scalars['Boolean']['output'];\n /** Delete a notification template */\n deleteNotificationTemplate: Scalars['Boolean']['output'];\n /** Delete a notification topic */\n deleteNotificationTopic: Scalars['Boolean']['output'];\n /** Delete multiple notifications by IDs */\n deleteNotifications: Scalars['Boolean']['output'];\n /** Delete notifications matching a filter */\n deleteNotificationsByFilter: Scalars['Int']['output'];\n /** Delete an organization */\n deleteOrganization: Scalars['Boolean']['output'];\n /** Delete a payment method */\n deletePaymentMethod: Scalars['Boolean']['output'];\n /** Delete a platform product */\n deletePlatformProduct: Scalars['Boolean']['output'];\n /** Delete an OPA policy reference */\n deletePolicyReference: Scalars['Boolean']['output'];\n deleteProduct: Scalars['Boolean']['output'];\n deleteProductAsset: Scalars['Boolean']['output'];\n deleteProductEntitlement: Scalars['Boolean']['output'];\n /** Delete RADIUS configuration */\n deleteRADIUSConfiguration: Scalars['Boolean']['output'];\n deleteReview: Scalars['Boolean']['output'];\n deleteReviewReply: Scalars['Boolean']['output'];\n /** Delete developer response */\n deleteReviewResponse: AppReview;\n /** Delete a role (optionally reassign members) */\n deleteRole: Scalars['Boolean']['output'];\n deleteSLAPolicy: Scalars['Boolean']['output'];\n /** Delete SSO/SAML configuration */\n deleteSSOConfig: Scalars['Boolean']['output'];\n deleteScheduleTemplate: Scalars['Boolean']['output'];\n deleteScheduledJob: Scalars['Boolean']['output'];\n deleteStore: Scalars['Boolean']['output'];\n deleteSubscriber: Scalars['Boolean']['output'];\n deleteSupportMessage: Scalars['Boolean']['output'];\n deleteSupportTicket: Scalars['Boolean']['output'];\n deleteTag: Scalars['Boolean']['output'];\n /** Delete a tax rate */\n deleteTaxRate: Scalars['Boolean']['output'];\n /** Soft delete a tenant */\n deleteTenant: Scalars['Boolean']['output'];\n deleteTicketCategory: Scalars['Boolean']['output'];\n deleteTicketTemplate: Scalars['Boolean']['output'];\n /** Delete a tour */\n deleteTour: Scalars['Boolean']['output'];\n /** Delete tour media */\n deleteTourMedia: Scalars['Boolean']['output'];\n /** Delete a tour schedule */\n deleteTourSchedule: TourSchedule;\n /** Delete a tour step */\n deleteTourStep: Scalars['Boolean']['output'];\n /** Delete a tour template */\n deleteTourTemplate: Scalars['Boolean']['output'];\n deleteTranslation: Scalars['Boolean']['output'];\n deleteTranslationKey: Scalars['Boolean']['output'];\n /** Delete a user by ID (admin only, soft delete) */\n deleteUser: DeleteUserResult;\n deleteUserLanguagePreference: Scalars['Boolean']['output'];\n /** Soft-delete a user platform connection */\n deleteUserPlatformConnection: Scalars['Boolean']['output'];\n deleteWebhook: Scalars['Boolean']['output'];\n /**\n * Deliver the same notification to multiple recipients in bulk.\n * More efficient than multiple single calls for broadcast scenarios.\n */\n deliverBulkNotification: BulkChannelDeliveryResult;\n /**\n * Deliver a notification to a single recipient via Channel service.\n * Called by global-notification-svc to deliver through platform adapters.\n */\n deliverNotification: ChannelDeliveryResult;\n deprecateApplicationVersion: ApplicationVersion;\n deprecateProduct: StoreProduct;\n /** Detach media from a tour step */\n detachMediaFromStep: Scalars['Boolean']['output'];\n disableAuthMethod: Scalars['Boolean']['output'];\n disableMFA: Scalars['Boolean']['output'];\n disableMaintenanceMode: MaintenanceModeStatus;\n disableSchedule: ScheduledJob;\n discardDLQEntry: Scalars['Boolean']['output'];\n /** Dismiss a tour for a user (with option to dismiss permanently) */\n dismissTour: TourUserProgress;\n duplicateNewsletter: Newsletter;\n /** Duplicate a tour with all its steps */\n duplicateTour: Tour;\n enableAuthMethod: Scalars['Boolean']['output'];\n enableMFA: Scalars['Boolean']['output'];\n enableMaintenanceMode: MaintenanceModeStatus;\n enrollSubscriberInAutomation: AutomationSubscriber;\n escalateSupportTicket: SupportTicket;\n /** Exchange app token for app-as-user token (Token Exchange flow) */\n exchangeToken: AppAsUserTokenResponse;\n executeJobNow: JobExecution;\n /** Feature a review */\n featureAppReview: AppReview;\n freeUpUsage: Scalars['Boolean']['output'];\n generateAPIKey: ApiKeyResult;\n generateAppAsUserToken: AppAsUserTokenResponse;\n generateAppToken: AppTokenResponse;\n /** Generate HMAC shared secret for an app */\n generateHMACSecret: HmacCredentialResult;\n /** Generate an invoice for a subscription */\n generateInvoice: Invoice;\n /**\n * Generate OIDC authorization URL for SSO login\n * Returns URL to redirect user to the IdP\n */\n generateOIDCAuthUrl: OidcAuthUrlResult;\n /** Generate passkey authentication options (for login) */\n generatePasskeyAuthenticationOptions: PasskeyAuthenticationOptions;\n /** Generate passkey registration options */\n generatePasskeyRegistrationOptions: PasskeyRegistrationOptions;\n generatePseudoLocale: PseudoLocaleResult;\n /** Generate a challenge for public key authentication */\n generatePublicKeyChallenge: PublicKeyChallengeResult;\n generateSAMLRequest: SamlRequestResult;\n /** Generate security key registration options (cross-platform authenticator) */\n generateSecurityKeyRegistrationOptions: PasskeyRegistrationOptions;\n /** Generate challenge message for wallet signature */\n generateWalletChallenge: WalletChallengeResult;\n getSupportAttachmentPartUploadUrls: Array<SupportAttachmentPresignedPart>;\n /**\n * Grant an app access to act on a specific workspace. Idempotent: re-granting\n * an ACTIVE authorization updates its scopes; re-granting a REVOKED one flips\n * it back to ACTIVE and clears the revoke fields.\n */\n grantAppWorkspaceAccess: AppWorkspaceAuthorization;\n grantCredits: CreditTransaction;\n grantDelegation: AppUserDelegation;\n haltRollout: ProductRelease;\n /** Handle delivery status update from channel service */\n handleChannelDeliveryEvent: NotificationEvent;\n /** Permanently delete a user (super admin only) */\n hardDeleteUser: DeleteUserResult;\n /** Mark webhook as ignored */\n ignoreWebhook: Scalars['Boolean']['output'];\n importSubscribers: ImportSubscribersResult;\n /**\n * Initialize billing roles for a billing account by cloning billing role templates.\n * Use this when a new billing account is created.\n *\n * Returns the number of roles created (0 if roles already exist).\n */\n initializeBillingRoles: InitializeBillingRolesResult;\n /**\n * Initialize organization roles by cloning organization role templates.\n * Use this when a new organization is created. The creator will be assigned the Owner role.\n *\n * Returns the number of roles created (0 if roles already exist).\n *\n * SECURITY: This mutation is restricted to service and super_admin actors only.\n * It should be called by global-tenant-svc when an organization is created, not directly by users.\n */\n initializeOrganizationRoles: InitializeOrganizationRolesResult;\n /** Initiate Kerberos SPNEGO authentication */\n initiateKerberosAuth: KerberosChallengeResult;\n /** Initiate NTLM authentication (returns Type 2 challenge) */\n initiateNTLMChallenge: NtlmChallengeResult;\n /** Initiate a payment for credits, plans, or addons This creates a Stripe PaymentIntent or Razorpay Order with tax included Returns client secret (Stripe) or order ID (Razorpay) for frontend to complete payment */\n initiatePayment: InitiatePaymentResponse;\n /** Install an application */\n installApp: AppInstallation;\n /**\n * Install a purchased app to a workspace.\n * Validates that the product was purchased before allowing installation.\n * If orderId is not provided, will find the most recent processed order for this product.\n */\n installPurchasedApp: InstallPurchasedAppResult;\n /** Invite a user to join an organization */\n inviteDeveloperOrgMember: DeveloperOrgInvitation;\n /** Invite a user to an organization by email */\n inviteOrganizationMember: OrganizationInvite;\n /**\n * Public endpoint — no authentication required. Email is normalized (trimmed, lowercased).\n * Must be protected by API gateway rate limiting (recommended: 5 req/min per IP).\n */\n joinWaitlist: NewsletterWaitlist;\n /** Leave an organization */\n leaveDeveloperOrganization: Scalars['Boolean']['output'];\n /**\n * Link a personal integration connection (from wspace-integrations-svc) to a bot channel.\n * Called by microfe-botlit after the user completes OAuth in microfe-integrations.\n *\n * Steps performed internally:\n * 1. Fetch IntegrationConnection data from wspace-integrations-svc via internal GQL\n * 2. Extract platform identity (slackUserId / msUserId / discordUserId / phone) from metadata\n * 3. Open a DM conversation using the bot token from ChannelConnection\n * 4. Upsert UserPlatformConnection (source=OAUTH, dmAllowed=true, dmConversationId set)\n * 5. Send welcome DM (Slack / Teams / Discord where supported)\n */\n linkIntegrationConnection: UserPlatformConnection;\n linkTickets: TicketLink;\n /** Link wallet to existing user account */\n linkWallet: Scalars['Boolean']['output'];\n /** Mark all notifications as read for authenticated user */\n markAllMyNotificationsAsRead: BatchOperationResult;\n /** Mark a single notification as read */\n markNotificationAsRead: Notification;\n /** Mark a notification as unread */\n markNotificationAsUnread: Notification;\n /** Mark multiple notifications as read */\n markNotificationsAsRead: BatchOperationResult;\n /** Mark notifications matching a filter as read */\n markNotificationsByFilterAsRead: BatchOperationResult;\n /** Mark an order as refunded (admin) */\n markOrderRefunded: StoreOrder;\n markReviewHelpful: ProductReview;\n /** Merge a guest cart into the current user's cart (after login) */\n mergeCart: CartPayload;\n mergeTickets: SupportTicket;\n /** Moderate a review (admin) */\n moderateAppReview: AppReview;\n openCircuitBreaker: CircuitBreakerState;\n /** Pause a subscription */\n pauseDeveloperOrgSubscription: DeveloperOrgSubscription;\n pauseSLA: SupportTicket;\n pauseScheduledJob: ScheduledJob;\n /** Pay an invoice using a payment method */\n payInvoice: Invoice;\n permanentlyDeleteSchedule: Scalars['Boolean']['output'];\n prepareSupportAttachmentUpload: SupportAttachmentUploadSession;\n /** Process a refund for an app sale */\n processAppSaleRefund: DeveloperOrgSale;\n processPayoutRequest: PayoutRequest;\n /** Process a refund (one-click - calls payment gateway) */\n processRefund: ProcessRefundResult;\n /** Process pending scheduled notifications (internal/cron use) */\n processScheduledNotifications: Scalars['Int']['output'];\n /** Process a webhook manually (for retry) */\n processWebhook: WebhookProcessingResult;\n /**\n * Switch a tenant to DEDICATED mode and begin provisioning.\n * Sets status to PROVISIONING until endpoint is set.\n * If endpoint is provided, sets status directly to ACTIVE.\n */\n provisionDedicatedTenant: Tenant;\n /** Public unsubscribe via HMAC-signed token from email link. No authentication required. */\n publicUnsubscribeByToken: Scalars['Boolean']['output'];\n publishApplication: Application;\n publishApplicationVersion: ApplicationVersion;\n publishFAQ: Faq;\n publishKnowledgeBaseArticle: KnowledgeBaseArticle;\n publishProduct: StoreProduct;\n /** Publish a tour (change status to PUBLISHED) */\n publishTour: Tour;\n publishTranslation: Translation;\n purchaseProduct: ProductEntitlement;\n rateArticle: KnowledgeBaseArticle;\n rateFAQ: Faq;\n /** Reactivate a deactivated account (requires valid session or re-authentication) */\n reactivateAccount: AuthResult;\n /** Reactivate a suspended installation */\n reactivateAppInstallation: AppInstallation;\n /** Reactivate a suspended member */\n reactivateDeveloperOrgMember: DeveloperOrgMember;\n reactivateProductEntitlement: ProductEntitlement;\n recordActivity: ActivityLog;\n recordAppInstallation: StoreAppInstallation;\n recordAppUninstallation: StoreAppInstallation;\n recordArticleView: KnowledgeBaseArticle;\n recordBounce: NewsletterBounce;\n recordComplaint: NewsletterComplaint;\n recordConsent: NewsletterConsent;\n recordDownload: ProductDownload;\n recordEarningEntry: EarningsEntry;\n recordFAQView: Faq;\n recordLicenseUsage: LicenseUsage;\n /** Record that a user acted on a notification action */\n recordNotificationAction: Notification;\n /** Record a sale (usually called by store service) */\n recordSale: DeveloperOrgSale;\n /** Record user progress for a tour */\n recordTourProgress: TourUserProgress;\n /** Refresh OAuth tokens manually */\n refreshConnectionTokens: ChannelConnection;\n refreshProductAssetUrl?: Maybe<Scalars['String']['output']>;\n refreshToken: AuthPayload;\n registerProductAsset: ProductAsset;\n /** Register a public key for authentication */\n registerPublicKey: PublicKeyRegistrationResult;\n registerPublisher: Publisher;\n /** Register a resource with custom RBAC configurations. */\n registerResource: Resource;\n registerSupportAttachmentPart: Scalars['Boolean']['output'];\n reinstatePublisher: Publisher;\n rejectApplication: Application;\n /** Reject an organization invitation */\n rejectDeveloperOrgInvitation: Scalars['Boolean']['output'];\n /** Reject an organization invite (must be logged in as the invited user) */\n rejectOrganizationInvite: OrganizationInvite;\n rejectPayoutRequest: PayoutRequest;\n /**\n * Admin rejects a submitted product with a mandatory reason. Publisher can\n * edit and resubmit afterwards.\n */\n rejectProduct: StoreProduct;\n rejectPublisher: Publisher;\n rejectReview: ProductReview;\n rejectWaitlist: NewsletterWaitlist;\n removeAgentSkills: AgentProfile;\n /** Remove apps from a collection */\n removeAppsFromCollection: AppCollection;\n /** Remove a member from an organization */\n removeDeveloperOrgMember: Scalars['Boolean']['output'];\n /** Remove an item from the cart */\n removeFromCart: CartPayload;\n /** Remove a waitlist entry entirely (admin operation). */\n removeFromWaitlist: Scalars['Boolean']['output'];\n removeFromWishlist: Scalars['Boolean']['output'];\n /** Remove a member from an organization */\n removeOrganizationMember: Scalars['Boolean']['output'];\n /** Remove a passkey */\n removePasskey: Scalars['Boolean']['output'];\n /** Remove a permission override */\n removePermissionOverride: Scalars['Boolean']['output'];\n /** Remove a registered public key */\n removePublicKey: Scalars['Boolean']['output'];\n /** Remove default permission for a role on a resource type */\n removeRoleDefaultPermission: Role;\n /** Remove a role from an actor */\n removeRoleFromActor: Scalars['Boolean']['output'];\n /** Remove a role permission override */\n removeRolePermissionOverride: Scalars['Boolean']['output'];\n removeSubscribersFromList: NewsletterList;\n removeSuppression: Scalars['Boolean']['output'];\n removeTicketTags: SupportTicket;\n /** Remove user's preference for a feature flag (reverts to default) */\n removeUserFeatureFlagPreference: Scalars['Boolean']['output'];\n /** Remove a visibility rule */\n removeVisibilityRule: Scalars['Boolean']['output'];\n /** Remove a workspace override, reverting to the platform default */\n removeWorkspaceFeatureFlagOverride: Scalars['Boolean']['output'];\n /** Remove a member from a workspace */\n removeWorkspaceMember: Scalars['Boolean']['output'];\n /**\n * Remove workspace metadata (membership and routing)\n * Note: This only removes metadata. Use workspaces service to delete actual workspace content.\n */\n removeWorkspaceMetadata: Scalars['Boolean']['output'];\n /** Rename a passkey */\n renamePasskey: PasskeyInfo;\n renewProductEntitlement: ProductEntitlement;\n reopenSupportTicket: SupportTicket;\n /** Reorder apps in a collection */\n reorderCollectionApps: AppCollection;\n reorderFAQs: Array<Faq>;\n reorderTicketCategories: Array<TicketCategory>;\n /** Reorder tour steps */\n reorderTourSteps: Array<TourStep>;\n /**\n * Send an email reply to a contact inquiry. The reply is sent via the notification\n * pipeline (notification-svc → channel-svc → email provider). Auto-updates status to REVIEWED.\n */\n replyToContactInquiry: ContactInquiryReplyResult;\n replyToReview: ProductReviewReply;\n /** Report a review */\n reportAppReview: AppReviewReport;\n /** Reprocess a failed webhook event */\n reprocessWebhook: WebhookProcessingResult;\n requestBillingPayout: PayoutRequest;\n /** Request a manual payout (devportal legacy alias) */\n requestDeveloperOrgPayout: DeveloperOrgPayout;\n /** Request return for an order (owner) */\n requestOrderReturn: OrderFulfillment;\n /** Request organization verification */\n requestOrgVerification: DeveloperOrganization;\n /** Request a password reset - sends reset email */\n requestPasswordReset: PasswordResetRequestResult;\n /** Request a manual payout */\n requestPayout: DeveloperOrgPayout;\n requeueFromDLQ: JobExecution;\n /** Reschedule an existing scheduled notification */\n rescheduleNotification: ScheduledNotification;\n /** Resend an organization invitation */\n resendDeveloperOrgInvitation: DeveloperOrgInvitation;\n /** Resend an organization invite notification (resets expiry, works on expired/rejected/cancelled) */\n resendOrganizationInvite: OrganizationInvite;\n resendSurvey: CustomerSatisfactionSurvey;\n resendVerificationEmail: ResendVerificationResult;\n resetCircuitBreaker: CircuitBreakerState;\n /** Reset password using token from email */\n resetPassword: Scalars['Boolean']['output'];\n /** Reset user's progress for a tour */\n resetTourProgress: TourUserProgress;\n resolveContextWidgetConversation: ContextWidgetConversationPayload;\n resolveDLQEntry: Scalars['Boolean']['output'];\n resolveInventoryAlert: InventoryAlert;\n resolveSupportTicket: SupportTicket;\n /** Respond to a review (developer) */\n respondToAppReview: AppReview;\n /** Approve or deny push MFA challenge (called from user's device) */\n respondToPushMFA: Scalars['Boolean']['output'];\n /** Restore an archived channel */\n restoreChannel: Channel;\n restoreScheduleVersion: ScheduledJob;\n restoreTemplateVersion: NewsletterTemplate;\n resubscribe: NewsletterSubscriber;\n /** Resume a paused subscription */\n resumeDeveloperOrgSubscription: DeveloperOrgSubscription;\n resumeSLA: SupportTicket;\n resumeScheduledJob: ScheduledJob;\n /** Manually retry GraphQL callback for a failed billing order (admin only) Useful for retrying after fixing issues in external service */\n retryBillingOrderCallback: RetryBillingOrderCallbackResponse;\n /** Retry a failed delivery attempt */\n retryDelivery: MessageDeliveryResult;\n retryImportJob: ImportJob;\n retryJobExecution: JobExecution;\n /** Retry a failed payout */\n retryPayout: DeveloperOrgPayout;\n /** Retry a failed refund */\n retryRefund: ProcessRefundResult;\n revertTranslation: Translation;\n reviewTranslation: Translation;\n revokeAPIKey: Scalars['Boolean']['output'];\n /**\n * Revoke all sessions except the current one.\n * Returns the number of sessions that were revoked.\n */\n revokeAllSessions: RevokeAllSessionsResult;\n /**\n * Revoke an app's access to a workspace. Returns false if the row was already\n * REVOKED or never existed.\n */\n revokeAppWorkspaceAccess: Scalars['Boolean']['output'];\n revokeConsent: NewsletterConsent;\n revokeDelegation: Scalars['Boolean']['output'];\n revokeEntitlementSeat: ProductEntitlement;\n /** Revoke an HMAC credential */\n revokeHMACCredential: Scalars['Boolean']['output'];\n revokeLicense: ProductEntitlement;\n revokeSeat: LicenseSeat;\n /**\n * Revoke (log out) a specific session by ID.\n * Returns true if the session was successfully revoked.\n */\n revokeSession: Scalars['Boolean']['output'];\n /** Revoke a signed cookie session */\n revokeSignedCookieSession: Scalars['Boolean']['output'];\n /**\n * Revoke a user's platform connection (sets dmAllowed = false, clears tokens).\n * Does NOT delete the record — keeps presence history intact.\n */\n revokeUserPlatformConnection: UserPlatformConnection;\n rollbackRelease: ProductRelease;\n rotateAPIKey: ApiKeyRotateResult;\n rotateAppSecret: AppCreateResponse;\n /** Rotate connection credentials (security) */\n rotateConnectionCredentials: ChannelConnection;\n /** Run health check on a channel */\n runChannelHealthCheck: ChannelHealthCheck;\n runMonthlyPayouts: PayoutRunLog;\n /** Save SSO/SAML configuration (creates or updates) */\n saveSSOConfig: SsoConfig;\n /** Save an existing tour as a reusable template */\n saveTourAsTemplate: TourTemplate;\n scheduleNewsletter: Newsletter;\n /** Schedule a notification for future delivery */\n scheduleNotification: ScheduledNotification;\n /**\n * Seed default feature flags across all products.\n * Creates all default flags if they don't already exist. Returns the count of newly created flags.\n * Skips flags that already exist (by key uniqueness).\n */\n seedDefaultFeatureFlags: Scalars['Int']['output'];\n /** Bulk create default shortcuts for a product */\n seedDefaultShortcuts: Scalars['Int']['output'];\n /**\n * Deprecated alias for seedDefaultFeatureFlags. Kept so existing clients\n * keep working during the rename; remove after all callers migrate.\n * @deprecated Use seedDefaultFeatureFlags instead — the seed list now covers all products, not just VibeControls.\n */\n seedVibeControlsFeatureFlags: Scalars['Int']['output'];\n selectVariantWinner: NewsletterVariant;\n sendContextWidgetMessage: SendContextWidgetMessagePayload;\n sendMagicLink: MagicLinkSendResult;\n /** Send a message to a channel */\n sendMessage: MessageDeliveryResult;\n sendNewsletter: Newsletter;\n /** Send push MFA challenge to user's device */\n sendPushMFAChallenge: PushMfaChallengeResult;\n sendSurvey: CustomerSatisfactionSurvey;\n sendTestNewsletter: TestNewsletterResult;\n setAgentAway: AgentProfile;\n setAgentOffline: AgentProfile;\n setAgentOnline: AgentProfile;\n /** Set or update billing address for a billing account */\n setBillingAddress: BillingAddress;\n /** Set a billing account as the default for an org. Only one billing account can be default per org. If another account is currently default, it will be unset. */\n setDefaultBillingAccount: BillingAccount;\n setDefaultLanguage: Language;\n /** Set a payment method as default */\n setDefaultPaymentMethod: DeveloperOrgPaymentMethod;\n setDefaultPayoutAccount: PayoutAccount;\n setEntitlementSeatLimit: ProductEntitlement;\n /** Subscribe or unsubscribe the current user from a notification topic */\n setNotificationTopicSubscription: NotificationTopicSubscription;\n /** Set default permission level for a role on a resource type */\n setRoleDefaultPermission: Role;\n /**\n * Set or update the endpoint URL for a DEDICATED tenant.\n * Transitions PROVISIONING → ACTIVE when endpoint is set.\n */\n setTenantEndpoint: Tenant;\n /** Set user's opt-in/out preference for a previewable feature flag */\n setUserFeatureFlagPreference: UserFeatureFlagPreference;\n setUserLanguagePreference: UserLanguagePreference;\n /** Set workspace-level override for a feature flag (super admin or workspace admin) */\n setWorkspaceFeatureFlagOverride: WorkspaceFeatureFlagOverride;\n setupMFA: MfaSetupResult;\n sideloadApp: StoreAppInstallation;\n signIn?: Maybe<AuthPayload>;\n signOut: Scalars['Boolean']['output'];\n signUp?: Maybe<AuthPayload>;\n /** Skip a refund (mark as not needed) */\n skipRefund: RefundRecord;\n /** Mark a specific step as skipped */\n skipStep: TourUserProgress;\n /** Mark a tour as skipped for a user */\n skipTour: TourUserProgress;\n snapshotTopCharts: Scalars['Int']['output'];\n spendCredits: SpendCreditResponse;\n /** Start a trial for an application */\n startAppTrial: AppInstallation;\n startStagedRollout: ProductRelease;\n /** Mark a tour as started for a user */\n startTour: TourUserProgress;\n submitApplication: Application;\n /**\n * Submit an application to the store for review. Awaits the store-svc\n * submit call and returns the application with the resulting store\n * submission metadata attached to `metadata.storeSubmissionStatus`.\n *\n * The target store's requiresApproval flag decides whether the submission\n * lands in PENDING_REVIEW (public default) or is auto-published (private\n * registries that trust their publishers).\n */\n submitApplicationForReview: Application;\n /**\n * Submit a contact inquiry from a public website (no authentication required).\n * Validates reCAPTCHA token server-side using the product's secret key\n * fetched from the tenant service via internal gateway.\n */\n submitContactInquiry: SubmitContactInquiryResult;\n /**\n * Submit a product to its target store for review. The store's\n * requiresApproval flag decides whether the product goes to PENDING_REVIEW\n * or is auto-published.\n */\n submitProduct: StoreProduct;\n submitPublisherVerification: Publisher;\n submitSatisfactionSurvey: CustomerSatisfactionSurvey;\n subscribe: NewsletterSubscriber;\n subscribeToStore: UserStoreSubscription;\n /** Suspend an installation (admin) */\n suspendAppInstallation: AppInstallation;\n /** Suspend a member */\n suspendDeveloperOrgMember: DeveloperOrgMember;\n suspendProductEntitlement: ProductEntitlement;\n suspendPublisher: Publisher;\n /** Suspend a tenant */\n suspendTenant: Tenant;\n /** Suspend a workspace */\n suspendWorkspace: Workspace;\n /**\n * Sync tour steps (smart update in ONE call)\n * Send all desired steps, backend handles: update existing, create new, delete removed\n */\n syncTourSteps: Array<TourStep>;\n /**\n * Sync workspace metadata from workspace layer to global layer.\n * Called by wspace-workspace-svc when a workspace is created directly via workspace layer.\n * This is the reverse of syncFromGlobal - it syncs global ← wspace.\n * Creates workspace metadata + owner membership in global-tenant-svc.\n */\n syncWorkspaceFromWspace: SyncWorkspaceFromWspaceResponse;\n /** Test connection health */\n testConnectionHealth: ConnectionTestResult;\n /** Test LDAP connection */\n testLDAPConnection: Scalars['Boolean']['output'];\n testNewsletterWebhook: NewsletterWebhookLog;\n /** Test RADIUS connection */\n testRADIUSConnection: Scalars['Boolean']['output'];\n testWebhook: WebhookTestResult;\n toggleAddOn: Scalars['Boolean']['output'];\n /** Toggle the featured state of a store product (admin) */\n toggleFeatured: Scalars['Boolean']['output'];\n /** Toggle shortcut enabled status */\n toggleKeyboardShortcut: KeyboardShortcut;\n togglePlan: Scalars['Boolean']['output'];\n /** Track a tour event */\n trackTourEvent: TourAnalytics;\n /** Batch record multiple tour analytics events */\n trackTourEvents: TourBatchAnalyticsResult;\n transferLicense: LicenseTransferResult;\n /** Transfer ownership of an organization */\n transferOrgOwnership: DeveloperOrganization;\n /** Trigger multiple notifications in batch */\n triggerBatchNotifications: BatchNotificationResult;\n /** Trigger a notification for delivery via the channel service */\n triggerNotification: Notification;\n /** Trigger notification(s) using a template. Supports single recipient or bulk delivery. */\n triggerNotificationWithTemplate: TemplateNotificationResult;\n /** Restore an archived notification */\n unarchiveNotification: Notification;\n unenrollSubscriberFromAutomation: Scalars['Boolean']['output'];\n /** Uninstall an application */\n uninstallApp: Scalars['Boolean']['output'];\n unlinkTickets: Scalars['Boolean']['output'];\n /** Unlink wallet from user account */\n unlinkWallet: Scalars['Boolean']['output'];\n unlistProduct: StoreProduct;\n unpublishFAQ: Faq;\n unpublishKnowledgeBaseArticle: KnowledgeBaseArticle;\n /** Unpublish a tour (change status back to DRAFT) */\n unpublishTour: Tour;\n unsubscribe: Scalars['Boolean']['output'];\n unsubscribeFromStore: Scalars['Boolean']['output'];\n updateAddOnDetails: Scalars['Boolean']['output'];\n updateAgentProfile: AgentProfile;\n updateAgentStatus: AgentProfile;\n updateApp: App;\n /** Update an app collection */\n updateAppCollection: AppCollection;\n /** Update installation configuration */\n updateAppInstallation: AppInstallation;\n /** Update a review */\n updateAppReview: AppReview;\n updateApplication: Application;\n updateApplicationVersion: ApplicationVersion;\n updateAutomationStep: AutomationStep;\n /** Update a billing account */\n updateBillingAccount: BillingAccount;\n updateCampaignStats: NewsletterCampaign;\n updateCannedResponse: CannedResponse;\n /** Update a cart item (quantity, workspace, etc.) */\n updateCartItem: CartItemPayload;\n /** Update cart notes */\n updateCartNotes: CartPayload;\n updateCategory: ProductCategory;\n /** Update an existing channel */\n updateChannel: Channel;\n /** Update connection metadata (not credentials) */\n updateConnection: ChannelConnection;\n /** Update the status of a contact inquiry (authenticated, for superadmins) */\n updateContactInquiryStatus: ContactInquiry;\n /** Update an existing content page */\n updateContentPage: ProductContentPage;\n /** Update a coupon (admin) */\n updateCoupon: Coupon;\n /** Update current user's profile */\n updateCurrentUserProfile: User;\n /** Update a member's role */\n updateDeveloperOrgMemberRole: DeveloperOrgMember;\n /** Update a payment method */\n updateDeveloperOrgPaymentMethod: DeveloperOrgPaymentMethod;\n /** Update a subscription */\n updateDeveloperOrgSubscription: DeveloperOrgSubscription;\n /** Update a developer organization */\n updateDeveloperOrganization: DeveloperOrganization;\n updateDeveloperProfile: DeveloperProfile;\n /** Update a discount */\n updateDiscount: BillingDiscount;\n /** Update an existing entitlement */\n updateEntitlement: SubscriptionEntitlement;\n updateFAQ: Faq;\n /** Update an existing feature flag (super admin only) */\n updateFeatureFlag: FeatureFlag;\n updateI18nModule: I18nModule;\n updateI18nNamespace: I18nNamespace;\n updateI18nProduct: I18nProduct;\n updateInstallationStatus: StoreAppInstallation;\n /** Update an existing keyboard shortcut */\n updateKeyboardShortcut: KeyboardShortcut;\n updateKnowledgeBaseArticle: KnowledgeBaseArticle;\n updateLanguage: Language;\n /**\n * Update the current user's dashboard widget layout preferences.\n * Replaces the dashboard.widgets array within preferences.\n */\n updateMyDashboardPreferences: Scalars['JSON']['output'];\n /**\n * Update the current user's general preferences.\n * Merges the provided JSON into the existing preferences field.\n */\n updateMyPreferences: UserPreference;\n updateNewsletter: Newsletter;\n updateNewsletterAutomation: NewsletterAutomation;\n updateNewsletterList: NewsletterList;\n updateNewsletterTemplate: NewsletterTemplate;\n updateNewsletterVariant: NewsletterVariant;\n updateNewsletterWebhook: NewsletterWebhook;\n /** Update a notification (only allowed for DRAFT or PENDING status) */\n updateNotification: Notification;\n /** Update a notification template */\n updateNotificationTemplate: NotificationTemplate;\n /** Update a notification topic */\n updateNotificationTopic: NotificationTopic;\n /** Update organization legal information */\n updateOrgLegalInfo: DeveloperOrganization;\n /** Update organization tax information */\n updateOrgTaxInfo: DeveloperOrganization;\n /** Update an existing organization */\n updateOrganization: Organization;\n /** Update an organization member's role */\n updateOrganizationMember: OrganizationMember;\n /** Update a payment method (set default) */\n updatePaymentMethod: PaymentMethod;\n updatePayoutAccount: PayoutAccount;\n updatePlan: Scalars['Boolean']['output'];\n /** Update an existing platform product */\n updatePlatformProduct: PlatformProduct;\n /** Update an OPA policy reference */\n updatePolicyReference: PolicyReference;\n updateProduct: StoreProduct;\n updateQuota: Scalars['Boolean']['output'];\n /** Update RBAC configuration for a scope */\n updateRbacConfig: RbacConfig;\n updateRecurringBillingPlan: RecurringBillingPlan;\n /** Update a registered resource */\n updateResource: Resource;\n updateReview: ProductReview;\n /** Update a role */\n updateRole: Role;\n updateRolloutPercentage: ProductRelease;\n updateSLAPolicy: SlaPolicy;\n updateScheduleTemplate: ScheduleTemplate;\n updateScheduledJob: ScheduledJob;\n updateStore: Store;\n /**\n * Update order payment status (called by billing service callback)\n *\n * This is a PUBLIC mutation called by the billing service after payment completion\n */\n updateStoreOrderPaymentStatus: UpdateStoreOrderPaymentStatusResponse;\n updateSubscriber: NewsletterSubscriber;\n /** Update the seat count on an active PER_SEAT subscription. Syncs quantity to the payment gateway and updates the seat quota ceiling. */\n updateSubscriptionSeats: BillingSubscription;\n updateSupportMessage: SupportMessage;\n updateSupportTicket: SupportTicket;\n updateSupportTicketStatus: SupportTicket;\n /** Update a tax rate */\n updateTaxRate: TaxRate;\n /** Update an existing tenant */\n updateTenant: Tenant;\n updateTicketCategory: TicketCategory;\n updateTicketTemplate: TicketTemplate;\n /** Update an existing tour */\n updateTour: Tour;\n /** Update tour media */\n updateTourMedia: TourMedia;\n /** Update a tour schedule */\n updateTourSchedule: TourSchedule;\n /** Update an existing tour step */\n updateTourStep: TourStep;\n /** Update a tour template */\n updateTourTemplate: TourTemplate;\n updateTranslation: Translation;\n updateTranslationKey: TranslationKey;\n /** Update a user by ID (admin only) */\n updateUser: User;\n /** Update notification preferences for a platform connection */\n updateUserPlatformConnectionNotifications: UserPlatformConnection;\n updateVariantStats: NewsletterVariant;\n updateWebhook: Webhook;\n /** Update an existing workspace */\n updateWorkspace: Workspace;\n /** Update a workspace member's role */\n updateWorkspaceMember: WorkspaceMember;\n /** Upgrade from trial to paid */\n upgradeFromTrial: AppInstallation;\n /** Upgrade organization tier */\n upgradeOrgTier: DeveloperOrganization;\n /** Upload tax form for a payment method */\n uploadTaxForm: DeveloperOrgPaymentMethod;\n /** Upload tour media */\n uploadTourMedia: TourMedia;\n upsertComplianceSettings: NewsletterComplianceSettings;\n /**\n * Create or update external OIDC configuration (Google, Microsoft, etc.)\n * Admin only\n */\n upsertExternalOIDCConfig: ExternalOidcConfiguration;\n /** Create or update fulfillment details for an order (admin) */\n upsertOrderFulfillment: OrderFulfillment;\n /**\n * Upsert a platform connection from a passively-observed webhook event (source = SEEN).\n * Used by WebhookProcessor to track users without granting DM access.\n */\n upsertSeenUser: UserPlatformConnection;\n useCannedResponse: CannedResponse;\n validateApiKey: TokenValidationResponse;\n /** Validate an HMAC signature */\n validateHMACSignature: HmacValidationResult;\n /** Validate a signed cookie */\n validateSignedCookie: SignedCookieValidation;\n validateTokens: TokenValidationResponse;\n /** Verify a billing payment method by charging a small amount (e.g., ₹1) that will be refunded */\n verifyBillingPaymentMethod: VerifyPaymentMethodResponse;\n verifyEmail: EmailVerificationResult;\n verifyMFA: AuthResult;\n /** Verify passkey authentication and login */\n verifyPasskeyAuthentication: AuthResult;\n /** Verify and complete passkey registration */\n verifyPasskeyRegistration: PasskeyRegistrationResult;\n /** Verify a payment method (micro-deposits) */\n verifyPaymentMethod: DeveloperOrgPaymentMethod;\n verifyPublisherPayoutMethod: PublisherPayoutMethod;\n /**\n * Verify a WhatsApp pairing code entered by the user in the dashboard.\n * Called by wspace-integrations-svc during its CUSTOM auth step.\n *\n * Looks up the UserPlatformConnection (source=SEEN) for the channel + phone number,\n * checks the pairing code matches and has not expired, then:\n * - Sets pairingStatus = APPROVED\n * - Sets dmAllowed = true\n * - Sets dmConversationId to the WhatsApp JID format\n * Returns true on success, throws on failure.\n */\n verifyWhatsAppPairingCode: Scalars['Boolean']['output'];\n /** Void an invoice */\n voidInvoice: Invoice;\n /** Vote on a review (helpful/not helpful) */\n voteOnAppReview: AppReviewVote;\n};\n\n\n/** Root mutation type */\nexport type MutationAcceptDeveloperOrgInvitationArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAcceptOrganizationInviteArgs = {\n inviteId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateLicenseArgs = {\n input: ActivateLicenseInput;\n};\n\n\n/** Root mutation type */\nexport type MutationActivateScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateTenantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateTourScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationActivateWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAddAgentSkillsArgs = {\n id: Scalars['ID']['input'];\n skills: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationAddAppsToCollectionArgs = {\n appIds: Array<Scalars['ID']['input']>;\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAddDeveloperOrgPaymentMethodArgs = {\n input: AddPaymentMethodInput;\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAddOrderTrackingEventArgs = {\n input: AddFulfillmentTrackingEventInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddOrganizationMemberArgs = {\n input: AddOrganizationMemberInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddPaymentMethodArgs = {\n input: CreatePaymentMethodInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddPayoutAccountArgs = {\n input: AddPayoutAccountInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddPublisherPayoutMethodArgs = {\n input: AddPayoutMethodInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddReleaseTestersArgs = {\n trackId: Scalars['ID']['input'];\n userIds: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationAddSubscribersToListArgs = {\n listId: Scalars['ID']['input'];\n subscriberIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationAddSuppressionArgs = {\n input: AddSuppressionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddTicketTagsArgs = {\n id: Scalars['ID']['input'];\n tags: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationAddToCartArgs = {\n input: AddToCartInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddToWishlistArgs = {\n notes?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAddTourStepArgs = {\n input: CreateTourStepInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAddUsageArgs = {\n billingAccountId: Scalars['ID']['input'];\n description: Scalars['String']['input'];\n hash?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n quotaName: Scalars['String']['input'];\n tags?: InputMaybe<Scalars['JSON']['input']>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n value: Scalars['Int']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAddWorkspaceMemberArgs = {\n input: AddWorkspaceMemberInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAdjustInventoryArgs = {\n input: AdjustInventoryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationApplyBillingDiscountArgs = {\n discountCode: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationApplySlaPolicyArgs = {\n policyId: Scalars['ID']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationApplySubscriptionCouponArgs = {\n couponCode: Scalars['String']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationApproveApplicationArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationApprovePayoutArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationApprovePayoutRequestArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationApproveProductArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationApprovePublisherArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationApproveReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationApproveTranslationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationApproveWaitlistArgs = {\n input: ApproveWaitlistInput;\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveBillingAccountArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n replacementDefaultBillingAccountId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveNotificationsArgs = {\n notificationIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationArchivePayoutAccountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveTourArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationArchiveWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAssignAuthenticatedUserRoleArgs = {\n userId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAssignEntitlementSeatArgs = {\n input: AssignEntitlementSeatInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAssignRoleToActorArgs = {\n input: AssignRoleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAssignSeatArgs = {\n input: AssignSeatInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAssignSupportTicketArgs = {\n assignedTo: Scalars['String']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAttachMediaToStepArgs = {\n input: AttachMediaToStepInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateArgs = {\n input: AuthenticateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateApiKeyArgs = {\n input: ApiKeyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateAppArgs = {\n input: AuthenticateAppInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateBasicAuthArgs = {\n credentials: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateDigestArgs = {\n cnonce?: InputMaybe<Scalars['String']['input']>;\n nc?: InputMaybe<Scalars['String']['input']>;\n nonce: Scalars['String']['input'];\n opaque: Scalars['String']['input'];\n qop?: InputMaybe<Scalars['String']['input']>;\n realm: Scalars['String']['input'];\n response: Scalars['String']['input'];\n uri: Scalars['String']['input'];\n username: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateKerberosArgs = {\n spnegoToken: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateLdapArgs = {\n password: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n username: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateMagicLinkArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateNtlmArgs = {\n authenticateMessage: Scalars['String']['input'];\n challengeId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateOAuthArgs = {\n input: OAuthInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateOidcArgs = {\n input: OidcCallbackInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateRadiusArgs = {\n password: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n username: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateSamlArgs = {\n input: SamlInput;\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateWalletArgs = {\n message: Scalars['String']['input'];\n signature: Scalars['String']['input'];\n walletAddress: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationAuthenticateWithPublicKeyArgs = {\n challenge: Scalars['String']['input'];\n keyId: Scalars['ID']['input'];\n signature: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationBulkArchiveSchedulesArgs = {\n filter: BulkOperationFilter;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkAssignRoleArgs = {\n actorIds: Array<Scalars['String']['input']>;\n actorType: ActorType;\n roleId: Scalars['ID']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationBulkCreateTranslationKeysArgs = {\n keys: Array<CreateTranslationKeyInput>;\n productId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationBulkCreateTranslationsArgs = {\n translations: Array<BulkTranslationInput>;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkDeleteActivityLogsArgs = {\n ids: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkPauseSchedulesArgs = {\n filter: BulkOperationFilter;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkResumeSchedulesArgs = {\n filter: BulkOperationFilter;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkSetUserFeatureFlagPreferencesArgs = {\n input: BulkSetUserFeatureFlagPreferenceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkUpdateSchedulesArgs = {\n filter: BulkOperationFilter;\n updates: UpdateScheduledJobInput;\n};\n\n\n/** Root mutation type */\nexport type MutationBulkUpdateTranslationsArgs = {\n translations: Array<BulkTranslationInput>;\n};\n\n\n/** Root mutation type */\nexport type MutationCancelDeliveryArgs = {\n attemptId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelDeveloperOrgInvitationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelDeveloperOrgSubscriptionArgs = {\n cancelImmediately?: InputMaybe<Scalars['Boolean']['input']>;\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCancelImportJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelNewsletterArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelOrganizationInviteArgs = {\n inviteId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelPayoutArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCancelScheduledNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCancelSubscriptionArgs = {\n input: CancelSubscriptionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationChangePasswordArgs = {\n input: ChangePasswordInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCheckPushMfaStatusArgs = {\n challengeId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCheckoutArgs = {\n input: CheckoutInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCloneScheduleArgs = {\n newOrganizationId?: InputMaybe<Scalars['ID']['input']>;\n overrides?: InputMaybe<CreateScheduledJobInput>;\n sourceId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCloseSupportTicketArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCompleteOAuthFlowArgs = {\n authCode: Scalars['String']['input'];\n channelId: Scalars['ID']['input'];\n state: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCompleteStepArgs = {\n stepId: Scalars['ID']['input'];\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCompleteSupportAttachmentUploadArgs = {\n folderId: Scalars['ID']['input'];\n sessionId: Scalars['ID']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCompleteTourArgs = {\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureEntitlementSeatsArgs = {\n entitlementId: Scalars['ID']['input'];\n maxSeats: Scalars['Int']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureKerberosArgs = {\n input: KerberosConfigInput;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureLdapArgs = {\n input: LdapConfigInput;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureRadiusArgs = {\n input: RadiusConfigInput;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureTenantArgs = {\n id: Scalars['ID']['input'];\n input: ConfigureTenantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationConfigureWorkspaceArgs = {\n id: Scalars['ID']['input'];\n input: ConfigureWorkspaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAddOnsArgs = {\n input: CreateAddOnsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAgentProfileArgs = {\n input: CreateAgentProfileInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAppArgs = {\n input: CreateAppInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAppCollectionArgs = {\n input: CreateAppCollectionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAppReviewArgs = {\n applicationId: Scalars['ID']['input'];\n input: CreateAppReviewInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateApplicationArgs = {\n input: CreateApplicationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateApplicationVersionArgs = {\n applicationId: Scalars['ID']['input'];\n input: CreateApplicationVersionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateAutomationStepArgs = {\n input: CreateAutomationStepInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateBillingAccountArgs = {\n input: CreateBillingAccountInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateBillingOrderArgs = {\n input: CreateBillingOrderInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCampaignArgs = {\n input: CreateCampaignInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCannedResponseArgs = {\n input: CreateCannedResponseInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCategoriesArgs = {\n names: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCategoryArgs = {\n input: CreateCategoryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateChannelArgs = {\n input: CreateChannelInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateConnectionArgs = {\n input: CreateConnectionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateContentPageArgs = {\n input: CreateContentPageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCouponArgs = {\n input: CreateCouponInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateCreditNoteArgs = {\n amount: Scalars['Float']['input'];\n billingAccountId: Scalars['ID']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n invoiceId?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateDeveloperOrgSubscriptionArgs = {\n input: CreateSubscriptionInput;\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateDeveloperOrganizationArgs = {\n input: CreateDeveloperOrganizationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateDeveloperProfileArgs = {\n input: CreateDeveloperProfileInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateDiscountArgs = {\n code: Scalars['String']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n maxUses?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n type: Scalars['String']['input'];\n validFrom: Scalars['DateTime']['input'];\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n value: Scalars['Float']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateEditorialCollectionArgs = {\n input: CreateEditorialCollectionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateEntitlementArgs = {\n input: CreateEntitlementInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateFaqArgs = {\n input: CreateFaqInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateFeatureFlagArgs = {\n input: CreateFeatureFlagInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateI18nModuleArgs = {\n input: CreateI18nModuleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateI18nNamespaceArgs = {\n input: CreateI18nNamespaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateI18nProductArgs = {\n input: CreateI18nProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateImportJobArgs = {\n input: CreateImportJobInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateKeyboardShortcutArgs = {\n input: CreateKeyboardShortcutInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateKnowledgeBaseArticleArgs = {\n input: CreateKnowledgeBaseArticleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateLanguageArgs = {\n input: CreateLanguageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterArgs = {\n input: CreateNewsletterInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterAutomationArgs = {\n input: CreateAutomationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterListArgs = {\n input: CreateNewsletterListInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterTemplateArgs = {\n input: CreateNewsletterTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterVariantArgs = {\n input: CreateVariantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNewsletterWebhookArgs = {\n input: CreateNewsletterWebhookInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNotificationArgs = {\n input: CreateNotificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNotificationTemplateArgs = {\n input: CreateTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateNotificationTopicArgs = {\n input: CreateNotificationTopicInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateOrganizationArgs = {\n input: CreateOrganizationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePermissionOverrideArgs = {\n input: CreatePermissionOverrideInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePlanArgs = {\n input: CreatePlanInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePlatformProductArgs = {\n input: CreatePlatformProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePolicyReferenceArgs = {\n input: CreatePolicyReferenceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateProductArgs = {\n input: CreateProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateProductEntitlementArgs = {\n input: CreateProductEntitlementInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePromoCodeArgs = {\n input: CreatePromoCodeInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreatePublicSupportTicketArgs = {\n input: CreatePublicSupportTicketInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateQuotaArgs = {\n input: CreateQuotaInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRecurringBillingPlanArgs = {\n input: CreateRecurringBillingInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateReferralCodeArgs = {\n input: CreateReferralCodeInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRefundArgs = {\n amount: Scalars['Float']['input'];\n chargeId: Scalars['ID']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRefundRecordArgs = {\n amount: Scalars['Float']['input'];\n billingAccountId?: InputMaybe<Scalars['String']['input']>;\n currency: Scalars['String']['input'];\n gatewayOrderId?: InputMaybe<Scalars['String']['input']>;\n gatewayPaymentId: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n notes?: InputMaybe<Scalars['String']['input']>;\n provider: Scalars['String']['input'];\n purchaseDetail?: InputMaybe<Scalars['String']['input']>;\n purchaseType?: InputMaybe<Scalars['String']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n transactionId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRefundRecordFromWebhookArgs = {\n webhookLogId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateReleaseArgs = {\n input: CreateReleaseInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateReleaseTrackArgs = {\n input: CreateReleaseTrackInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateReviewArgs = {\n input: CreateReviewInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRoleArgs = {\n input: CreateRoleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateRolePermissionOverrideArgs = {\n input: CreateRolePermissionOverrideInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateSlaPolicyArgs = {\n input: CreateSlaPolicyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateScheduleFromTemplateArgs = {\n overrides?: InputMaybe<CreateScheduledJobInput>;\n templateId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateScheduleTemplateArgs = {\n input: CreateScheduleTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateScheduledJobArgs = {\n input: CreateScheduledJobInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateSignedCookieSessionArgs = {\n rememberMe?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateStoreArgs = {\n input: CreateStoreInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateStoreOrderArgs = {\n input: CreateStoreOrderInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateSupportMessageArgs = {\n input: CreateSupportMessageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateSupportTicketArgs = {\n input: CreateSupportTicketInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTagArgs = {\n input: CreateTagInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTaxRateArgs = {\n active?: InputMaybe<Scalars['Boolean']['input']>;\n country: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n rate: Scalars['Float']['input'];\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTenantArgs = {\n input: CreateTenantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTicketCategoryArgs = {\n input: CreateTicketCategoryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTicketFromTemplateArgs = {\n overrides?: InputMaybe<CreateSupportTicketInput>;\n templateId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTicketTemplateArgs = {\n input: CreateTicketTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTourArgs = {\n input: CreateTourInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTourFromTemplateArgs = {\n templateId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTourScheduleArgs = {\n input: CreateTourScheduleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTourTemplateArgs = {\n input: CreateTourTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTranslationArgs = {\n input: CreateTranslationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateTranslationKeyArgs = {\n input: CreateTranslationKeyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateUserTenantStructureArgs = {\n input: CreateUserTenantStructureInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateVisibilityRuleArgs = {\n input: CreateVisibilityRuleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateWebhookArgs = {\n applicationId: Scalars['ID']['input'];\n input: CreateWebhookInput;\n};\n\n\n/** Root mutation type */\nexport type MutationCreateWorkspaceArgs = {\n input: CreateWorkspaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateAccountArgs = {\n password: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateAppArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateCouponArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateLicenseArgs = {\n deviceId: Scalars['String']['input'];\n licenseKey: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateReferralCodeArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateResourceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeactivateTourScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDecrementQuotaArgs = {\n amount: Scalars['Int']['input'];\n billingAccountId: Scalars['ID']['input'];\n quotaAssignmentId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteAccountArgs = {\n confirmPhrase: Scalars['String']['input'];\n password: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteActivityLogArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteAgentProfileArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteAppCollectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteAppReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteAutomationStepArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteCannedResponseArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteCategoryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteContentPageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteDeveloperOrgPaymentMethodArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteDeveloperOrganizationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteDiscountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteExternalOidcConfigArgs = {\n identifier: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteFaqArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteFeatureFlagArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteI18nModuleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteI18nNamespaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteI18nProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteKerberosConfigurationArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteKeyboardShortcutArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteLdapConfigurationArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteLanguageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterAutomationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterListArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterVariantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNewsletterWebhookArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNotificationTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNotificationTopicArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNotificationsArgs = {\n notificationIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteNotificationsByFilterArgs = {\n filter: NotificationFilterInput;\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteOrganizationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeletePaymentMethodArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeletePlatformProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeletePolicyReferenceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteProductAssetArgs = {\n assetId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteProductEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteRadiusConfigurationArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteReviewReplyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteReviewResponseArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteRoleArgs = {\n id: Scalars['ID']['input'];\n reassignToRoleId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteSlaPolicyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteSsoConfigArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteScheduleTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteScheduledJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteStoreArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteSubscriberArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteSupportMessageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteSupportTicketArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTagArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTaxRateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTenantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTicketCategoryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTicketTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTourArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTourMediaArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTourScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTourStepArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTourTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTranslationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteTranslationKeyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteUserArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteUserLanguagePreferenceArgs = {\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteUserPlatformConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeleteWebhookArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeliverBulkNotificationArgs = {\n input: BulkChannelDeliveryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationDeliverNotificationArgs = {\n input: ChannelDeliveryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationDeprecateApplicationVersionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDeprecateProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDetachMediaFromStepArgs = {\n mediaId: Scalars['ID']['input'];\n tourStepId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDisableAuthMethodArgs = {\n authType: AuthType;\n};\n\n\n/** Root mutation type */\nexport type MutationDisableScheduleArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationDiscardDlqEntryArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationDismissTourArgs = {\n permanently?: InputMaybe<Scalars['Boolean']['input']>;\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationDuplicateNewsletterArgs = {\n id: Scalars['ID']['input'];\n newSlug: Scalars['String']['input'];\n newTitle?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationDuplicateTourArgs = {\n id: Scalars['ID']['input'];\n newName?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationEnableAuthMethodArgs = {\n authType: AuthType;\n config?: InputMaybe<AuthMethodConfigInput>;\n};\n\n\n/** Root mutation type */\nexport type MutationEnableMfaArgs = {\n code: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationEnableMaintenanceModeArgs = {\n duration?: InputMaybe<Scalars['Int']['input']>;\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationEnrollSubscriberInAutomationArgs = {\n automationId: Scalars['ID']['input'];\n subscriberId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationEscalateSupportTicketArgs = {\n escalateTo?: InputMaybe<Scalars['String']['input']>;\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationExchangeTokenArgs = {\n input: ExchangeTokenInput;\n};\n\n\n/** Root mutation type */\nexport type MutationExecuteJobNowArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationFeatureAppReviewArgs = {\n featured: Scalars['Boolean']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationFreeUpUsageArgs = {\n billingAccountId: Scalars['ID']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n hash?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n quotaName: Scalars['String']['input'];\n tags?: InputMaybe<Scalars['JSON']['input']>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n value: Scalars['Int']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateApiKeyArgs = {\n input: GenerateApiKeyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateAppAsUserTokenArgs = {\n input: GenerateAppAsUserTokenInput;\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateAppTokenArgs = {\n input: GenerateAppTokenInput;\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateHmacSecretArgs = {\n algorithm?: InputMaybe<Scalars['String']['input']>;\n appId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateInvoiceArgs = {\n subscriptionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateOidcAuthUrlArgs = {\n state?: InputMaybe<Scalars['String']['input']>;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGeneratePasskeyAuthenticationOptionsArgs = {\n email?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationGeneratePseudoLocaleArgs = {\n options?: InputMaybe<PseudoLocaleOptionsInput>;\n productCode: Scalars['String']['input'];\n sourceLocale?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationGeneratePublicKeyChallengeArgs = {\n keyId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateSamlRequestArgs = {\n relayState?: InputMaybe<Scalars['String']['input']>;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGenerateWalletChallengeArgs = {\n chain?: InputMaybe<Scalars['String']['input']>;\n walletAddress: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGetSupportAttachmentPartUploadUrlsArgs = {\n partNumbers: Array<Scalars['Int']['input']>;\n sessionId: Scalars['ID']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationGrantAppWorkspaceAccessArgs = {\n input: GrantAppWorkspaceAccessInput;\n};\n\n\n/** Root mutation type */\nexport type MutationGrantCreditsArgs = {\n input: GrantCreditsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationGrantDelegationArgs = {\n input: GrantDelegationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationHaltRolloutArgs = {\n reason: Scalars['String']['input'];\n releaseId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationHandleChannelDeliveryEventArgs = {\n input: ChannelDeliveryEventInput;\n};\n\n\n/** Root mutation type */\nexport type MutationHardDeleteUserArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationIgnoreWebhookArgs = {\n eventId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationImportSubscribersArgs = {\n subscribers: Array<ImportSubscriberInput>;\n};\n\n\n/** Root mutation type */\nexport type MutationInitializeBillingRolesArgs = {\n billingAccountId: Scalars['String']['input'];\n ownerId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInitializeOrganizationRolesArgs = {\n organizationId: Scalars['String']['input'];\n ownerId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInitiateKerberosAuthArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInitiateNtlmChallengeArgs = {\n negotiateMessage: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInitiatePaymentArgs = {\n input: InitiatePaymentInput;\n};\n\n\n/** Root mutation type */\nexport type MutationInstallAppArgs = {\n input: InstallAppInput;\n};\n\n\n/** Root mutation type */\nexport type MutationInstallPurchasedAppArgs = {\n orderId?: InputMaybe<Scalars['ID']['input']>;\n productId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInviteDeveloperOrgMemberArgs = {\n input: InviteDeveloperOrgMemberInput;\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationInviteOrganizationMemberArgs = {\n input: InviteOrganizationMemberInput;\n};\n\n\n/** Root mutation type */\nexport type MutationJoinWaitlistArgs = {\n input: JoinWaitlistInput;\n};\n\n\n/** Root mutation type */\nexport type MutationLeaveDeveloperOrganizationArgs = {\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationLinkIntegrationConnectionArgs = {\n channelId: Scalars['ID']['input'];\n integrationConnectionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationLinkTicketsArgs = {\n input: LinkTicketsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationLinkWalletArgs = {\n message: Scalars['String']['input'];\n signature: Scalars['String']['input'];\n walletAddress: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationMarkNotificationAsReadArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationMarkNotificationAsUnreadArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationMarkNotificationsAsReadArgs = {\n notificationIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationMarkNotificationsByFilterAsReadArgs = {\n filter: NotificationReadFilterInput;\n};\n\n\n/** Root mutation type */\nexport type MutationMarkOrderRefundedArgs = {\n orderId: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationMarkReviewHelpfulArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationMergeCartArgs = {\n guestSessionId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationMergeTicketsArgs = {\n sourceIds: Array<Scalars['ID']['input']>;\n targetId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationModerateAppReviewArgs = {\n id: Scalars['ID']['input'];\n note?: InputMaybe<Scalars['String']['input']>;\n rejectionReason?: InputMaybe<Scalars['String']['input']>;\n status: AppReviewStatus;\n};\n\n\n/** Root mutation type */\nexport type MutationOpenCircuitBreakerArgs = {\n scope: Scalars['String']['input'];\n scopeValue: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPauseDeveloperOrgSubscriptionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPauseSlaArgs = {\n reason?: InputMaybe<Scalars['String']['input']>;\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPauseScheduledJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPayInvoiceArgs = {\n invoiceId: Scalars['ID']['input'];\n paymentMethodId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPermanentlyDeleteScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPrepareSupportAttachmentUploadArgs = {\n input: PrepareSupportAttachmentUploadInput;\n};\n\n\n/** Root mutation type */\nexport type MutationProcessAppSaleRefundArgs = {\n amount?: InputMaybe<Scalars['Float']['input']>;\n reason: Scalars['String']['input'];\n saleId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationProcessPayoutRequestArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationProcessRefundArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationProcessScheduledNotificationsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationProcessWebhookArgs = {\n eventId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationProvisionDedicatedTenantArgs = {\n input: ProvisionDedicatedTenantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationPublicUnsubscribeByTokenArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishApplicationVersionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishFaqArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishTourArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPublishTranslationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationPurchaseProductArgs = {\n paymentMethodId: Scalars['String']['input'];\n productId: Scalars['String']['input'];\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRateArticleArgs = {\n helpful: Scalars['Boolean']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRateFaqArgs = {\n helpful: Scalars['Boolean']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReactivateAccountArgs = {\n email: Scalars['String']['input'];\n password: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReactivateAppInstallationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReactivateDeveloperOrgMemberArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReactivateProductEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRecordActivityArgs = {\n input: RecordActivityInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordAppInstallationArgs = {\n input: RecordAppInstallationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordAppUninstallationArgs = {\n productId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRecordArticleViewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRecordBounceArgs = {\n input: RecordBounceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordComplaintArgs = {\n input: RecordComplaintInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordConsentArgs = {\n input: RecordConsentInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordDownloadArgs = {\n ipAddress?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordEarningEntryArgs = {\n input: RecordEarningEntryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordFaqViewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRecordLicenseUsageArgs = {\n input: RecordUsageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordNotificationActionArgs = {\n input: RecordNotificationActionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordSaleArgs = {\n input: RecordSaleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRecordTourProgressArgs = {\n input: RecordTourProgressInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRefreshConnectionTokensArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRefreshProductAssetUrlArgs = {\n assetId: Scalars['ID']['input'];\n expiresInSeconds?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRefreshTokenArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRegisterProductAssetArgs = {\n input: RegisterProductAssetInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRegisterPublicKeyArgs = {\n keyType: Scalars['String']['input'];\n name?: InputMaybe<Scalars['String']['input']>;\n publicKey: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRegisterPublisherArgs = {\n input: RegisterPublisherInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRegisterResourceArgs = {\n input: RegisterResourceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRegisterSupportAttachmentPartArgs = {\n input: RegisterSupportAttachmentPartInput;\n};\n\n\n/** Root mutation type */\nexport type MutationReinstatePublisherArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectApplicationArgs = {\n id: Scalars['ID']['input'];\n notes: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectDeveloperOrgInvitationArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectOrganizationInviteArgs = {\n inviteId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectPayoutRequestArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectProductArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectPublisherArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRejectWaitlistArgs = {\n input: RejectWaitlistInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveAgentSkillsArgs = {\n id: Scalars['ID']['input'];\n skills: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveAppsFromCollectionArgs = {\n appIds: Array<Scalars['ID']['input']>;\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveDeveloperOrgMemberArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveFromCartArgs = {\n cartItemId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveFromWaitlistArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveFromWishlistArgs = {\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveOrganizationMemberArgs = {\n organizationId: Scalars['String']['input'];\n userId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemovePasskeyArgs = {\n credentialId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemovePermissionOverrideArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemovePublicKeyArgs = {\n keyId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveRoleDefaultPermissionArgs = {\n resourceType: Scalars['String']['input'];\n roleId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveRoleFromActorArgs = {\n assignmentId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveRolePermissionOverrideArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveSubscribersFromListArgs = {\n listId: Scalars['ID']['input'];\n subscriberIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveSuppressionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveTicketTagsArgs = {\n id: Scalars['ID']['input'];\n tags: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveUserFeatureFlagPreferenceArgs = {\n featureFlagId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveVisibilityRuleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveWorkspaceFeatureFlagOverrideArgs = {\n featureFlagId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveWorkspaceMemberArgs = {\n userId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRemoveWorkspaceMetadataArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRenamePasskeyArgs = {\n credentialId: Scalars['String']['input'];\n name: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRenewProductEntitlementArgs = {\n expiresAt: Scalars['DateTime']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReopenSupportTicketArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReorderCollectionAppsArgs = {\n appIds: Array<Scalars['ID']['input']>;\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReorderFaQsArgs = {\n faqIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationReorderTicketCategoriesArgs = {\n categoryIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationReorderTourStepsArgs = {\n stepIds: Array<Scalars['ID']['input']>;\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReplyToContactInquiryArgs = {\n id: Scalars['ID']['input'];\n message: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReplyToReviewArgs = {\n input: CreateReviewReplyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationReportAppReviewArgs = {\n details?: InputMaybe<Scalars['String']['input']>;\n reason: Scalars['String']['input'];\n reviewId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReprocessWebhookArgs = {\n eventId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRequestBillingPayoutArgs = {\n input: RequestPayoutInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRequestDeveloperOrgPayoutArgs = {\n organizationId: Scalars['ID']['input'];\n paymentMethodId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRequestOrderReturnArgs = {\n input: RequestOrderReturnInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRequestOrgVerificationArgs = {\n id: Scalars['ID']['input'];\n method: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRequestPasswordResetArgs = {\n email: Scalars['String']['input'];\n recaptchaToken?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRequestPayoutArgs = {\n organizationId: Scalars['ID']['input'];\n paymentMethodId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRequeueFromDlqArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRescheduleNotificationArgs = {\n input: RescheduleNotificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationResendDeveloperOrgInvitationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResendOrganizationInviteArgs = {\n inviteId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResendSurveyArgs = {\n surveyId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResendVerificationEmailArgs = {\n email: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResetCircuitBreakerArgs = {\n scope: Scalars['String']['input'];\n scopeValue: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResetPasswordArgs = {\n newPassword: Scalars['String']['input'];\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResetTourProgressArgs = {\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResolveContextWidgetConversationArgs = {\n input: ResolveContextWidgetConversationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationResolveDlqEntryArgs = {\n id: Scalars['ID']['input'];\n resolution: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResolveInventoryAlertArgs = {\n alertId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResolveSupportTicketArgs = {\n id: Scalars['ID']['input'];\n resolution?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRespondToAppReviewArgs = {\n id: Scalars['ID']['input'];\n response: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRespondToPushMfaArgs = {\n approved: Scalars['Boolean']['input'];\n challengeId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRestoreChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRestoreScheduleVersionArgs = {\n scheduleId: Scalars['ID']['input'];\n versionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRestoreTemplateVersionArgs = {\n templateId: Scalars['ID']['input'];\n version: Scalars['Int']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResubscribeArgs = {\n email: Scalars['String']['input'];\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationResumeDeveloperOrgSubscriptionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResumeSlaArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationResumeScheduledJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryBillingOrderCallbackArgs = {\n orderId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryDeliveryArgs = {\n attemptId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryImportJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryJobExecutionArgs = {\n executionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryPayoutArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRetryRefundArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevertTranslationArgs = {\n id: Scalars['ID']['input'];\n versionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationReviewTranslationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeApiKeyArgs = {\n keyId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeAppWorkspaceAccessArgs = {\n input: RevokeAppWorkspaceAccessInput;\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeConsentArgs = {\n consentId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeDelegationArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeEntitlementSeatArgs = {\n assigneeId: Scalars['String']['input'];\n entitlementId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeHmacCredentialArgs = {\n credentialId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeLicenseArgs = {\n entitlementId: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeSeatArgs = {\n reason?: InputMaybe<Scalars['String']['input']>;\n seatId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeSessionArgs = {\n sessionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeSignedCookieSessionArgs = {\n sessionId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRevokeUserPlatformConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRollbackReleaseArgs = {\n releaseId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRotateApiKeyArgs = {\n keyId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRotateAppSecretArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRotateConnectionCredentialsArgs = {\n id: Scalars['ID']['input'];\n newCredentials: Scalars['JSON']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRunChannelHealthCheckArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationRunMonthlyPayoutsArgs = {\n period: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSaveSsoConfigArgs = {\n input: SsoConfigInput;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSaveTourAsTemplateArgs = {\n input: SaveTourAsTemplateInput;\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationScheduleNewsletterArgs = {\n id: Scalars['ID']['input'];\n scheduledFor: Scalars['DateTime']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationScheduleNotificationArgs = {\n input: ScheduleNotificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSeedDefaultShortcutsArgs = {\n productId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSelectVariantWinnerArgs = {\n variantId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSendContextWidgetMessageArgs = {\n input: SendContextWidgetMessageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSendMagicLinkArgs = {\n context?: InputMaybe<AuthContext>;\n email: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSendMessageArgs = {\n input: SendMessageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSendNewsletterArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSendPushMfaChallengeArgs = {\n deviceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSendSurveyArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSendTestNewsletterArgs = {\n id: Scalars['ID']['input'];\n testEmails: Array<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSetAgentAwayArgs = {\n message?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSetBillingAddressArgs = {\n input: SetBillingAddressInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetDefaultBillingAccountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetDefaultLanguageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetDefaultPaymentMethodArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetDefaultPayoutAccountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetEntitlementSeatLimitArgs = {\n entitlementId: Scalars['ID']['input'];\n maxSeats: Scalars['Int']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetNotificationTopicSubscriptionArgs = {\n input: SetNotificationTopicSubscriptionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetRoleDefaultPermissionArgs = {\n input: SetRoleDefaultPermissionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetTenantEndpointArgs = {\n endpoint: Scalars['String']['input'];\n tenantId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSetUserFeatureFlagPreferenceArgs = {\n input: SetUserFeatureFlagPreferenceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetUserLanguagePreferenceArgs = {\n input: SetUserLanguagePreferenceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetWorkspaceFeatureFlagOverrideArgs = {\n input: SetWorkspaceFeatureFlagOverrideInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSetupMfaArgs = {\n method: MfaMethod;\n};\n\n\n/** Root mutation type */\nexport type MutationSideloadAppArgs = {\n input: SideloadAppInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSignInArgs = {\n input: SignInInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSignUpArgs = {\n input: SignUpInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSkipRefundArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSkipStepArgs = {\n stepId: Scalars['ID']['input'];\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSkipTourArgs = {\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSnapshotTopChartsArgs = {\n window?: InputMaybe<ChartWindow>;\n};\n\n\n/** Root mutation type */\nexport type MutationSpendCreditsArgs = {\n input: SpendCreditsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationStartAppTrialArgs = {\n installationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationStartStagedRolloutArgs = {\n initialPercentage?: InputMaybe<Scalars['Int']['input']>;\n releaseId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationStartTourArgs = {\n deviceType?: InputMaybe<DeviceType>;\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitApplicationArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitApplicationForReviewArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitContactInquiryArgs = {\n input: SubmitContactInquiryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitProductArgs = {\n id: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitPublisherVerificationArgs = {\n input: SubmitPublisherVerificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSubmitSatisfactionSurveyArgs = {\n input: SubmitSatisfactionSurveyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSubscribeArgs = {\n input: SubscribeInput;\n};\n\n\n/** Root mutation type */\nexport type MutationSubscribeToStoreArgs = {\n storeId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendAppInstallationArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendDeveloperOrgMemberArgs = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendProductEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendPublisherArgs = {\n id: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendTenantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSuspendWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSyncTourStepsArgs = {\n steps: Array<SyncTourStepInput>;\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationSyncWorkspaceFromWspaceArgs = {\n input: SyncWorkspaceFromWspaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationTestConnectionHealthArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTestLdapConnectionArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTestNewsletterWebhookArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTestRadiusConnectionArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTestWebhookArgs = {\n eventType: Scalars['String']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationToggleAddOnArgs = {\n id: Scalars['ID']['input'];\n status: Scalars['Boolean']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationToggleFeaturedArgs = {\n state: Scalars['Boolean']['input'];\n storeProductId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationToggleKeyboardShortcutArgs = {\n id: Scalars['ID']['input'];\n isEnabled: Scalars['Boolean']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTogglePlanArgs = {\n planID: Scalars['ID']['input'];\n status: Scalars['Boolean']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTrackTourEventArgs = {\n input: RecordTourAnalyticsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationTrackTourEventsArgs = {\n events: Array<RecordTourAnalyticsInput>;\n};\n\n\n/** Root mutation type */\nexport type MutationTransferLicenseArgs = {\n input: TransferLicenseInput;\n};\n\n\n/** Root mutation type */\nexport type MutationTransferOrgOwnershipArgs = {\n newOwnerId: Scalars['ID']['input'];\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationTriggerBatchNotificationsArgs = {\n input: TriggerBatchNotificationsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationTriggerNotificationArgs = {\n input: TriggerNotificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationTriggerNotificationWithTemplateArgs = {\n input: TriggerNotificationWithTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUnarchiveNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnenrollSubscriberFromAutomationArgs = {\n automationId: Scalars['ID']['input'];\n subscriberId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUninstallAppArgs = {\n feedback?: InputMaybe<Scalars['String']['input']>;\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUnlinkTicketsArgs = {\n linkId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnlinkWalletArgs = {\n walletAddress: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnlistProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnpublishFaqArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnpublishKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnpublishTourArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUnsubscribeArgs = {\n email: Scalars['String']['input'];\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUnsubscribeFromStoreArgs = {\n storeId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAddOnDetailsArgs = {\n input: UpdateAddOnsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAgentProfileArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAgentProfileInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAgentStatusArgs = {\n input: UpdateAgentStatusInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAppArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAppInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAppCollectionArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAppCollectionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAppInstallationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAppInstallationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAppReviewArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAppReviewInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateApplicationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateApplicationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateApplicationVersionArgs = {\n id: Scalars['ID']['input'];\n input: UpdateApplicationVersionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateAutomationStepArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAutomationStepInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateBillingAccountArgs = {\n input: UpdateBillingAccountInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCampaignStatsArgs = {\n id: Scalars['ID']['input'];\n input: UpdateCampaignStatsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCannedResponseArgs = {\n id: Scalars['ID']['input'];\n input: UpdateCannedResponseInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCartItemArgs = {\n input: UpdateCartItemInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCartNotesArgs = {\n notes: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCategoryArgs = {\n id: Scalars['ID']['input'];\n input: UpdateCategoryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateChannelArgs = {\n id: Scalars['ID']['input'];\n input: UpdateChannelInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateConnectionArgs = {\n id: Scalars['ID']['input'];\n input: UpdateConnectionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateContactInquiryStatusArgs = {\n id: Scalars['ID']['input'];\n input: UpdateContactInquiryStatusInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateContentPageArgs = {\n id: Scalars['ID']['input'];\n input: UpdateContentPageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCouponArgs = {\n id: Scalars['ID']['input'];\n input: UpdateCouponInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateCurrentUserProfileArgs = {\n input: UpdateUserInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDeveloperOrgMemberRoleArgs = {\n id: Scalars['ID']['input'];\n permissions?: InputMaybe<Scalars['JSON']['input']>;\n role: DeveloperOrgRole;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDeveloperOrgPaymentMethodArgs = {\n id: Scalars['ID']['input'];\n input: UpdatePaymentMethodInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDeveloperOrgSubscriptionArgs = {\n id: Scalars['ID']['input'];\n input: UpdateSubscriptionInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDeveloperOrganizationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateDeveloperOrganizationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDeveloperProfileArgs = {\n input: UpdateDeveloperProfileInput;\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateDiscountArgs = {\n id: Scalars['ID']['input'];\n maxUses?: InputMaybe<Scalars['Int']['input']>;\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateEntitlementArgs = {\n input: UpdateEntitlementInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateFaqArgs = {\n id: Scalars['ID']['input'];\n input: UpdateFaqInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateFeatureFlagArgs = {\n id: Scalars['ID']['input'];\n input: UpdateFeatureFlagInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateI18nModuleArgs = {\n id: Scalars['ID']['input'];\n input: UpdateI18nModuleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateI18nNamespaceArgs = {\n id: Scalars['ID']['input'];\n input: UpdateI18nNamespaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateI18nProductArgs = {\n id: Scalars['ID']['input'];\n input: UpdateI18nProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateInstallationStatusArgs = {\n id: Scalars['ID']['input'];\n status: StoreInstallationStatus;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateKeyboardShortcutArgs = {\n id: Scalars['ID']['input'];\n input: UpdateKeyboardShortcutInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n input: UpdateKnowledgeBaseArticleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateLanguageArgs = {\n id: Scalars['ID']['input'];\n input: UpdateLanguageInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateMyDashboardPreferencesArgs = {\n input: UpdateDashboardPreferencesInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateMyPreferencesArgs = {\n input: Scalars['JSON']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNewsletterInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterAutomationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateAutomationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterListArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNewsletterListInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterTemplateArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNewsletterTemplateInput;\n saveVersion?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterVariantArgs = {\n id: Scalars['ID']['input'];\n input: UpdateVariantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNewsletterWebhookArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNewsletterWebhookInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNotificationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNotificationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNotificationTemplateArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateNotificationTopicArgs = {\n id: Scalars['ID']['input'];\n input: UpdateNotificationTopicInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateOrgLegalInfoArgs = {\n id: Scalars['ID']['input'];\n input: UpdateOrgLegalInfoInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateOrgTaxInfoArgs = {\n id: Scalars['ID']['input'];\n input: UpdateOrgTaxInfoInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateOrganizationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateOrganizationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateOrganizationMemberArgs = {\n input: UpdateOrganizationMemberInput;\n organizationId: Scalars['String']['input'];\n userId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdatePaymentMethodArgs = {\n id: Scalars['ID']['input'];\n isDefault: Scalars['Boolean']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdatePayoutAccountArgs = {\n id: Scalars['ID']['input'];\n input: UpdatePayoutAccountInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdatePlanArgs = {\n input: UpdatePlanInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdatePlatformProductArgs = {\n id: Scalars['ID']['input'];\n input: UpdatePlatformProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdatePolicyReferenceArgs = {\n id: Scalars['ID']['input'];\n input: UpdatePolicyReferenceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateProductArgs = {\n input: UpdateProductInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateQuotaArgs = {\n input: UpdateQuotaInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateRbacConfigArgs = {\n input: UpdateRbacConfigInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateRecurringBillingPlanArgs = {\n input: UpdateRecurringBillingInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateResourceArgs = {\n id: Scalars['ID']['input'];\n input: UpdateResourceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateReviewArgs = {\n id: Scalars['ID']['input'];\n input: UpdateReviewInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateRoleArgs = {\n id: Scalars['ID']['input'];\n input: UpdateRoleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateRolloutPercentageArgs = {\n newPercentage: Scalars['Int']['input'];\n releaseId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSlaPolicyArgs = {\n id: Scalars['ID']['input'];\n input: UpdateSlaPolicyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateScheduleTemplateArgs = {\n id: Scalars['ID']['input'];\n input: UpdateScheduleTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateScheduledJobArgs = {\n id: Scalars['ID']['input'];\n input: UpdateScheduledJobInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateStoreArgs = {\n id: Scalars['ID']['input'];\n input: UpdateStoreInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateStoreOrderPaymentStatusArgs = {\n billingAccountId: Scalars['ID']['input'];\n currency?: InputMaybe<Scalars['String']['input']>;\n failureReason?: InputMaybe<Scalars['String']['input']>;\n isAutoRenew?: InputMaybe<Scalars['Boolean']['input']>;\n jurisdiction?: InputMaybe<Scalars['String']['input']>;\n orderId: Scalars['ID']['input'];\n paidAmount?: InputMaybe<Scalars['Float']['input']>;\n paymentId?: InputMaybe<Scalars['String']['input']>;\n provider?: InputMaybe<Scalars['String']['input']>;\n providerSubscriptions?: InputMaybe<Scalars['String']['input']>;\n status: Scalars['String']['input'];\n subtotal?: InputMaybe<Scalars['Float']['input']>;\n taxAmount?: InputMaybe<Scalars['Float']['input']>;\n taxRate?: InputMaybe<Scalars['Float']['input']>;\n taxType?: InputMaybe<Scalars['String']['input']>;\n transactionId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSubscriberArgs = {\n id: Scalars['ID']['input'];\n input: UpdateSubscriberInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSubscriptionSeatsArgs = {\n input: UpdateSubscriptionSeatsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSupportMessageArgs = {\n id: Scalars['ID']['input'];\n message: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSupportTicketArgs = {\n id: Scalars['ID']['input'];\n input: UpdateSupportTicketInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateSupportTicketStatusArgs = {\n id: Scalars['ID']['input'];\n status: SupportTicketStatus;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTaxRateArgs = {\n active?: InputMaybe<Scalars['Boolean']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n id: Scalars['ID']['input'];\n rate?: InputMaybe<Scalars['Float']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTenantArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTenantInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTicketCategoryArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTicketCategoryInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTicketTemplateArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTicketTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTourArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTourInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTourMediaArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTourMediaInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTourScheduleArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTourScheduleInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTourStepArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTourStepInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTourTemplateArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTourTemplateInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTranslationArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTranslationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateTranslationKeyArgs = {\n id: Scalars['ID']['input'];\n input: UpdateTranslationKeyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateUserArgs = {\n id: Scalars['ID']['input'];\n input: AdminUpdateUserInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateUserPlatformConnectionNotificationsArgs = {\n id: Scalars['ID']['input'];\n notificationsEnabled: Scalars['Boolean']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateVariantStatsArgs = {\n id: Scalars['ID']['input'];\n input: UpdateVariantStatsInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateWebhookArgs = {\n id: Scalars['ID']['input'];\n input: UpdateWebhookInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateWorkspaceArgs = {\n id: Scalars['ID']['input'];\n input: UpdateWorkspaceInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpdateWorkspaceMemberArgs = {\n input: UpdateWorkspaceMemberInput;\n userId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpgradeFromTrialArgs = {\n installationId: Scalars['ID']['input'];\n planId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpgradeOrgTierArgs = {\n id: Scalars['ID']['input'];\n tier: DeveloperOrgTier;\n};\n\n\n/** Root mutation type */\nexport type MutationUploadTaxFormArgs = {\n formType: Scalars['String']['input'];\n formUrl: Scalars['String']['input'];\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUploadTourMediaArgs = {\n input: CreateTourMediaInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpsertComplianceSettingsArgs = {\n input: UpsertComplianceSettingsInput;\n platformProductId: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpsertExternalOidcConfigArgs = {\n input: ExternalOidcConfigurationInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUpsertOrderFulfillmentArgs = {\n input: UpsertOrderFulfillmentInput;\n orderId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationUpsertSeenUserArgs = {\n input: UpsertSeenUserInput;\n};\n\n\n/** Root mutation type */\nexport type MutationUseCannedResponseArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationValidateApiKeyArgs = {\n apiKey: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationValidateHmacSignatureArgs = {\n algorithm?: InputMaybe<Scalars['String']['input']>;\n appId: Scalars['ID']['input'];\n body: Scalars['String']['input'];\n signature: Scalars['String']['input'];\n timestamp: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationValidateSignedCookieArgs = {\n cookieValue: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationValidateTokensArgs = {\n input: ValidateTokensInput;\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyBillingPaymentMethodArgs = {\n input: VerifyPaymentMethodInput;\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyEmailArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyMfaArgs = {\n input: MfaVerifyInput;\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyPasskeyAuthenticationArgs = {\n authenticatorData: Scalars['String']['input'];\n clientDataJSON: Scalars['String']['input'];\n credentialId: Scalars['String']['input'];\n signature: Scalars['String']['input'];\n userHandle?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyPasskeyRegistrationArgs = {\n attestationObject: Scalars['String']['input'];\n clientDataJSON: Scalars['String']['input'];\n credentialId: Scalars['String']['input'];\n name?: InputMaybe<Scalars['String']['input']>;\n transports?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyPaymentMethodArgs = {\n amounts: Array<Scalars['Float']['input']>;\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyPublisherPayoutMethodArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationVerifyWhatsAppPairingCodeArgs = {\n channelId: Scalars['ID']['input'];\n pairingCode: Scalars['String']['input'];\n phoneNumber: Scalars['String']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationVoidInvoiceArgs = {\n invoiceId: Scalars['ID']['input'];\n};\n\n\n/** Root mutation type */\nexport type MutationVoteOnAppReviewArgs = {\n isHelpful: Scalars['Boolean']['input'];\n reviewId: Scalars['ID']['input'];\n};\n\n/** Lightweight result for myRoles query - returns only role information */\nexport type MyRolesResult = {\n __typename?: 'MyRolesResult';\n /** Whether the actor has admin-level access in this scope */\n isAdmin: Scalars['Boolean']['output'];\n /** Whether the actor is the owner of this scope */\n isOwner: Scalars['Boolean']['output'];\n /** Roles assigned to the actor */\n roles: Array<RoleInfo>;\n};\n\nexport type NtlmChallengeResult = {\n __typename?: 'NTLMChallengeResult';\n challenge: Scalars['String']['output'];\n challengeId: Scalars['ID']['output'];\n};\n\nexport type Newsletter = {\n __typename?: 'Newsletter';\n clickRate?: Maybe<Scalars['Float']['output']>;\n content: Scalars['String']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n openRate?: Maybe<Scalars['Float']['output']>;\n plans?: Maybe<Scalars['JSON']['output']>;\n platformProductId: Scalars['String']['output'];\n previewText?: Maybe<Scalars['String']['output']>;\n products?: Maybe<Scalars['JSON']['output']>;\n recipientCount: Scalars['Int']['output'];\n recipientType: NewsletterRecipientType;\n scheduledFor?: Maybe<Scalars['DateTime']['output']>;\n segmentConfig?: Maybe<Scalars['JSON']['output']>;\n sentAt?: Maybe<Scalars['DateTime']['output']>;\n slug: Scalars['String']['output'];\n status: NewsletterStatus;\n subject: Scalars['String']['output'];\n title: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type NewsletterAutomation = {\n __typename?: 'NewsletterAutomation';\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n platformProductId: Scalars['String']['output'];\n subscriberCount: Scalars['Int']['output'];\n trigger: Scalars['JSON']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type NewsletterBounce = {\n __typename?: 'NewsletterBounce';\n bounceType: BounceType;\n bouncedAt: Scalars['DateTime']['output'];\n campaignId: Scalars['String']['output'];\n diagnosticCode?: Maybe<Scalars['String']['output']>;\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n reason?: Maybe<Scalars['String']['output']>;\n subscriberId: Scalars['String']['output'];\n};\n\nexport type NewsletterCampaign = {\n __typename?: 'NewsletterCampaign';\n bounceCount: Scalars['Int']['output'];\n clickCount: Scalars['Int']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n newsletterId: Scalars['String']['output'];\n openCount: Scalars['Int']['output'];\n segment?: Maybe<Scalars['String']['output']>;\n sentCount: Scalars['Int']['output'];\n subject: Scalars['String']['output'];\n};\n\nexport type NewsletterComplaint = {\n __typename?: 'NewsletterComplaint';\n campaignId: Scalars['String']['output'];\n complainedAt: Scalars['DateTime']['output'];\n complaintType?: Maybe<Scalars['String']['output']>;\n email: Scalars['String']['output'];\n feedbackType?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n subscriberId: Scalars['String']['output'];\n};\n\nexport type NewsletterComplianceSettings = {\n __typename?: 'NewsletterComplianceSettings';\n allowResubscribe: Scalars['Boolean']['output'];\n analyticsRetention: Scalars['Int']['output'];\n collectReasons: Scalars['Boolean']['output'];\n doubleOptIn: Scalars['Boolean']['output'];\n id: Scalars['ID']['output'];\n inactiveCleanup: Scalars['Int']['output'];\n physicalAddress?: Maybe<Scalars['String']['output']>;\n platformProductId: Scalars['String']['output'];\n privacyPolicyUrl?: Maybe<Scalars['String']['output']>;\n unsubscribeUrl?: Maybe<Scalars['String']['output']>;\n};\n\nexport type NewsletterConsent = {\n __typename?: 'NewsletterConsent';\n consentType: Scalars['String']['output'];\n granted: Scalars['Boolean']['output'];\n grantedAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n revokedAt?: Maybe<Scalars['DateTime']['output']>;\n source?: Maybe<Scalars['String']['output']>;\n subscriberId: Scalars['String']['output'];\n userAgent?: Maybe<Scalars['String']['output']>;\n};\n\n/**\n * Newsletter-specific context output type.\n * Returns the stored context for each record.\n * Module-specific to avoid federation conflicts with OperationContext in other subgraphs.\n */\nexport type NewsletterContext = {\n __typename?: 'NewsletterContext';\n /** Additional custom context as JSON */\n custom?: Maybe<Scalars['JSON']['output']>;\n /** Organization ID for organization-level scoping */\n organizationId?: Maybe<Scalars['ID']['output']>;\n /** Product ID for product-level scoping */\n productId?: Maybe<Scalars['ID']['output']>;\n /** Project ID for project-level scoping */\n projectId?: Maybe<Scalars['ID']['output']>;\n /** Tenant ID for tenant-level scoping */\n tenantId?: Maybe<Scalars['ID']['output']>;\n /** User ID for user-level scoping */\n userId?: Maybe<Scalars['ID']['output']>;\n /** Workspace ID for workspace-level scoping */\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\n/**\n * Newsletter context filter input for querying records by context.\n * Supports exact match filtering on context fields.\n */\nexport type NewsletterContextFilterInput = {\n /** Filter by organization ID */\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by product ID */\n productId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by project ID */\n projectId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by tenant ID */\n tenantId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by user ID */\n userId?: InputMaybe<Scalars['ID']['input']>;\n /** Filter by workspace ID */\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/**\n * Newsletter context input for filtering and scoping data.\n * All fields are optional and can be extended as needed.\n */\nexport type NewsletterContextInput = {\n /** Additional custom context as JSON */\n custom?: InputMaybe<Scalars['JSON']['input']>;\n /** Organization ID for organization-level scoping */\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n /** Product ID for product-level scoping */\n productId?: InputMaybe<Scalars['ID']['input']>;\n /** Project ID for project-level scoping */\n projectId?: InputMaybe<Scalars['ID']['input']>;\n /** Tenant ID for tenant-level scoping */\n tenantId?: InputMaybe<Scalars['ID']['input']>;\n /** User ID for user-level scoping */\n userId?: InputMaybe<Scalars['ID']['input']>;\n /** Workspace ID for workspace-level scoping */\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport enum NewsletterExportFormat {\n Csv = 'CSV',\n Json = 'JSON',\n Po = 'PO',\n Xliff = 'XLIFF',\n Xlsx = 'XLSX'\n}\n\nexport type NewsletterFilterInput = {\n /** Filter by newsletter context (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextFilterInput>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<NewsletterStatus>;\n};\n\nexport type NewsletterList = {\n __typename?: 'NewsletterList';\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n platformProductId: Scalars['String']['output'];\n subscriberCount: Scalars['Int']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type NewsletterListFilterInput = {\n context?: InputMaybe<NewsletterContextFilterInput>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type NewsletterPaginationInput = {\n cursor?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type NewsletterRecipientEstimate = {\n __typename?: 'NewsletterRecipientEstimate';\n breakdown?: Maybe<Scalars['JSON']['output']>;\n estimatedCount: Scalars['Int']['output'];\n recipientType: NewsletterRecipientType;\n};\n\nexport enum NewsletterRecipientType {\n All = 'ALL',\n Plan = 'PLAN',\n Product = 'PRODUCT',\n Segment = 'SEGMENT'\n}\n\nexport type NewsletterStats = {\n __typename?: 'NewsletterStats';\n averageClickRate?: Maybe<Scalars['Float']['output']>;\n averageOpenRate?: Maybe<Scalars['Float']['output']>;\n totalNewsletters: Scalars['Int']['output'];\n totalSent: Scalars['Int']['output'];\n totalSubscribers: Scalars['Int']['output'];\n};\n\nexport enum NewsletterStatus {\n Canceled = 'CANCELED',\n Draft = 'DRAFT',\n Scheduled = 'SCHEDULED',\n Sent = 'SENT'\n}\n\nexport type NewsletterSubscriber = {\n __typename?: 'NewsletterSubscriber';\n /** True when the latest subscribe attempt matched an existing active subscriber. */\n alreadySubscribed: Scalars['Boolean']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: Maybe<NewsletterContext>;\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n platformProductId: Scalars['String']['output'];\n status: NewsletterSubscriptionStatus;\n subscribed: Scalars['Boolean']['output'];\n subscribedAt: Scalars['DateTime']['output'];\n unsubscribedAt?: Maybe<Scalars['DateTime']['output']>;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum NewsletterSubscriptionStatus {\n Active = 'ACTIVE',\n Paused = 'PAUSED',\n Unsubscribed = 'UNSUBSCRIBED'\n}\n\nexport type NewsletterSuppression = {\n __typename?: 'NewsletterSuppression';\n addedAt: Scalars['DateTime']['output'];\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n platformProductId: Scalars['String']['output'];\n reason: Scalars['String']['output'];\n source?: Maybe<Scalars['String']['output']>;\n};\n\nexport type NewsletterTemplate = {\n __typename?: 'NewsletterTemplate';\n category?: Maybe<Scalars['String']['output']>;\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n html: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n isPublic: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n platformProductId: Scalars['String']['output'];\n thumbnail?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n version: Scalars['Int']['output'];\n};\n\nexport type NewsletterTemplateFilterInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<NewsletterContextFilterInput>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type NewsletterTemplateVersion = {\n __typename?: 'NewsletterTemplateVersion';\n changes?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n html: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n templateId: Scalars['String']['output'];\n version: Scalars['Int']['output'];\n};\n\nexport type NewsletterVariant = {\n __typename?: 'NewsletterVariant';\n clickCount: Scalars['Int']['output'];\n clickRate?: Maybe<Scalars['Float']['output']>;\n content: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n isWinner: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n newsletterId: Scalars['String']['output'];\n openCount: Scalars['Int']['output'];\n openRate?: Maybe<Scalars['Float']['output']>;\n percentage: Scalars['Int']['output'];\n sentCount: Scalars['Int']['output'];\n subject: Scalars['String']['output'];\n};\n\nexport type NewsletterWaitlist = {\n __typename?: 'NewsletterWaitlist';\n company?: Maybe<Scalars['String']['output']>;\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n name?: Maybe<Scalars['String']['output']>;\n platformProductId: Scalars['String']['output'];\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n processedBy?: Maybe<Scalars['String']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n rejectionReason?: Maybe<Scalars['String']['output']>;\n status: NewsletterWaitlistStatus;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum NewsletterWaitlistStatus {\n Approved = 'APPROVED',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\nexport type NewsletterWebhook = {\n __typename?: 'NewsletterWebhook';\n context?: Maybe<NewsletterContext>;\n createdAt: Scalars['DateTime']['output'];\n enabled: Scalars['Boolean']['output'];\n events: Array<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n platformProductId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n url: Scalars['String']['output'];\n};\n\nexport type NewsletterWebhookLog = {\n __typename?: 'NewsletterWebhookLog';\n attemptCount: Scalars['Int']['output'];\n createdAt: Scalars['DateTime']['output'];\n deliveredAt?: Maybe<Scalars['DateTime']['output']>;\n event: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n payload: Scalars['JSON']['output'];\n response?: Maybe<Scalars['String']['output']>;\n statusCode?: Maybe<Scalars['Int']['output']>;\n webhookId: Scalars['String']['output'];\n};\n\nexport type Notification = {\n __typename?: 'Notification';\n actions: Array<NotificationAction>;\n appName?: Maybe<Scalars['String']['output']>;\n archivedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Platform type used for delivery (EMAIL, SMS, etc.) */\n channel: NotificationChannel;\n /** Channel instance ID from channel service (if used) */\n channelId?: Maybe<Scalars['ID']['output']>;\n channelServiceRef?: Maybe<Scalars['String']['output']>;\n clickedAt?: Maybe<Scalars['DateTime']['output']>;\n createdAt: Scalars['DateTime']['output'];\n data?: Maybe<Scalars['JSON']['output']>;\n deliveredAt?: Maybe<Scalars['DateTime']['output']>;\n deliveryStatus?: Maybe<NotificationDeliveryStatus>;\n email?: Maybe<Scalars['Boolean']['output']>;\n errorCode?: Maybe<Scalars['String']['output']>;\n errorMessage?: Maybe<Scalars['String']['output']>;\n events: Array<NotificationEvent>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n externalId?: Maybe<Scalars['String']['output']>;\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n htmlMessage?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isRead: Scalars['Boolean']['output'];\n media: Array<NotificationMedia>;\n message: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n openedAt?: Maybe<Scalars['DateTime']['output']>;\n priority: NotificationPriority;\n readAt?: Maybe<Scalars['DateTime']['output']>;\n recipientEmail?: Maybe<Scalars['String']['output']>;\n recipientPhone?: Maybe<Scalars['String']['output']>;\n recipientToken?: Maybe<Scalars['String']['output']>;\n redirectUrl?: Maybe<Scalars['String']['output']>;\n scheduledFor?: Maybe<Scalars['DateTime']['output']>;\n scheduledNotification?: Maybe<ScheduledNotification>;\n sentAt?: Maybe<Scalars['DateTime']['output']>;\n sms?: Maybe<Scalars['Boolean']['output']>;\n status: NotificationStatus;\n subject?: Maybe<Scalars['String']['output']>;\n templateId?: Maybe<Scalars['ID']['output']>;\n templateVersion?: Maybe<Scalars['Int']['output']>;\n timezone?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n topic?: Maybe<NotificationTopic>;\n topicId?: Maybe<Scalars['ID']['output']>;\n trackClicks: Scalars['Boolean']['output'];\n trackOpens: Scalars['Boolean']['output'];\n triggerStatus: TriggerStatus;\n triggeredAt?: Maybe<Scalars['DateTime']['output']>;\n type: NotificationType;\n updatedAt: Scalars['DateTime']['output'];\n user?: Maybe<User>;\n userId: Scalars['ID']['output'];\n};\n\nexport type NotificationAction = {\n __typename?: 'NotificationAction';\n actionType?: Maybe<Scalars['String']['output']>;\n id: Scalars['String']['output'];\n label: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n style?: Maybe<Scalars['String']['output']>;\n url: Scalars['String']['output'];\n};\n\nexport type NotificationActionInput = {\n actionType?: InputMaybe<Scalars['String']['input']>;\n id?: InputMaybe<Scalars['String']['input']>;\n label: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n style?: InputMaybe<Scalars['String']['input']>;\n url: Scalars['String']['input'];\n};\n\nexport type NotificationBatchResult = {\n __typename?: 'NotificationBatchResult';\n batchId: Scalars['String']['output'];\n results: Scalars['JSON']['output'];\n totalFailed: Scalars['Int']['output'];\n totalRequested: Scalars['Int']['output'];\n totalTriggered: Scalars['Int']['output'];\n};\n\nexport enum NotificationChannel {\n Discord = 'DISCORD',\n Email = 'EMAIL',\n InApp = 'IN_APP',\n Push = 'PUSH',\n Slack = 'SLACK',\n Sms = 'SMS',\n Teams = 'TEAMS',\n Telegram = 'TELEGRAM',\n Webhook = 'WEBHOOK',\n Whatsapp = 'WHATSAPP'\n}\n\nexport type NotificationChannelCounts = {\n __typename?: 'NotificationChannelCounts';\n discord: Scalars['Int']['output'];\n email: Scalars['Int']['output'];\n inApp: Scalars['Int']['output'];\n push: Scalars['Int']['output'];\n slack: Scalars['Int']['output'];\n sms: Scalars['Int']['output'];\n teams: Scalars['Int']['output'];\n telegram: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n webhook: Scalars['Int']['output'];\n whatsapp: Scalars['Int']['output'];\n};\n\nexport enum NotificationDeliveryStatus {\n Bounced = 'BOUNCED',\n Clicked = 'CLICKED',\n Complained = 'COMPLAINED',\n Delivered = 'DELIVERED',\n Delivering = 'DELIVERING',\n Failed = 'FAILED',\n Opened = 'OPENED',\n Pending = 'PENDING',\n Processing = 'PROCESSING',\n Queued = 'QUEUED',\n Retrying = 'RETRYING',\n Sent = 'SENT',\n Unsubscribed = 'UNSUBSCRIBED'\n}\n\nexport type NotificationEvent = {\n __typename?: 'NotificationEvent';\n channelServiceEventId?: Maybe<Scalars['String']['output']>;\n deliveryStatus?: Maybe<NotificationDeliveryStatus>;\n details?: Maybe<Scalars['JSON']['output']>;\n eventType: NotificationEventType;\n externalId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n notificationId: Scalars['ID']['output'];\n timestamp: Scalars['DateTime']['output'];\n};\n\nexport enum NotificationEventType {\n Bounced = 'BOUNCED',\n Cancelled = 'CANCELLED',\n Clicked = 'CLICKED',\n Complained = 'COMPLAINED',\n Created = 'CREATED',\n Delivered = 'DELIVERED',\n Expired = 'EXPIRED',\n Failed = 'FAILED',\n Opened = 'OPENED',\n Retry = 'RETRY',\n Scheduled = 'SCHEDULED',\n Sent = 'SENT',\n Triggered = 'TRIGGERED',\n Unsubscribed = 'UNSUBSCRIBED'\n}\n\nexport type NotificationFilterInput = {\n appName?: InputMaybe<Scalars['String']['input']>;\n archived?: InputMaybe<Scalars['Boolean']['input']>;\n channel?: InputMaybe<NotificationChannel>;\n deliveryStatus?: InputMaybe<NotificationDeliveryStatus>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n isRead?: InputMaybe<Scalars['Boolean']['input']>;\n priority?: InputMaybe<NotificationPriority>;\n search?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<NotificationStatus>;\n topicId?: InputMaybe<Scalars['ID']['input']>;\n triggerStatus?: InputMaybe<TriggerStatus>;\n type?: InputMaybe<NotificationType>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport type NotificationList = {\n __typename?: 'NotificationList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Notification>;\n total: Scalars['Int']['output'];\n};\n\nexport type NotificationMedia = {\n __typename?: 'NotificationMedia';\n contentType?: Maybe<Scalars['String']['output']>;\n kind?: Maybe<Scalars['String']['output']>;\n label?: Maybe<Scalars['String']['output']>;\n thumbnailUrl?: Maybe<Scalars['String']['output']>;\n url: Scalars['String']['output'];\n};\n\nexport type NotificationMediaInput = {\n contentType?: InputMaybe<Scalars['String']['input']>;\n kind?: InputMaybe<Scalars['String']['input']>;\n label?: InputMaybe<Scalars['String']['input']>;\n thumbnailUrl?: InputMaybe<Scalars['String']['input']>;\n url: Scalars['String']['input'];\n};\n\nexport type NotificationPaginationInput = {\n cursor?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport enum NotificationPriority {\n High = 'HIGH',\n Low = 'LOW',\n Medium = 'MEDIUM',\n Urgent = 'URGENT'\n}\n\nexport type NotificationReadFilterInput = {\n appName?: InputMaybe<Scalars['String']['input']>;\n channel?: InputMaybe<NotificationChannel>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n type?: InputMaybe<NotificationType>;\n userId: Scalars['ID']['input'];\n};\n\nexport type NotificationStats = {\n __typename?: 'NotificationStats';\n byChannel: Scalars['JSON']['output'];\n byType: Scalars['JSON']['output'];\n cancelled: Scalars['Int']['output'];\n delivered: Scalars['Int']['output'];\n failed: Scalars['Int']['output'];\n pending: Scalars['Int']['output'];\n scheduled: Scalars['Int']['output'];\n sent: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n triggered: Scalars['Int']['output'];\n};\n\nexport enum NotificationStatus {\n Cancelled = 'CANCELLED',\n Delivered = 'DELIVERED',\n Draft = 'DRAFT',\n Expired = 'EXPIRED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Read = 'READ',\n Scheduled = 'SCHEDULED',\n Sent = 'SENT',\n Triggered = 'TRIGGERED'\n}\n\nexport type NotificationTemplate = {\n __typename?: 'NotificationTemplate';\n bodyTemplate: Scalars['String']['output'];\n /** Default delivery channel for this template */\n channel: NotificationChannel;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['ID']['output'];\n description?: Maybe<Scalars['String']['output']>;\n enabled: Scalars['Boolean']['output'];\n htmlTemplate?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n locale: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n onBehalfOf: Scalars['ID']['output'];\n slug: Scalars['String']['output'];\n subject?: Maybe<Scalars['String']['output']>;\n type: NotificationType;\n updatedAt: Scalars['DateTime']['output'];\n variables: Scalars['JSON']['output'];\n version: Scalars['Int']['output'];\n};\n\nexport type NotificationTemplateList = {\n __typename?: 'NotificationTemplateList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<NotificationTemplate>;\n total: Scalars['Int']['output'];\n};\n\nexport type NotificationTopic = {\n __typename?: 'NotificationTopic';\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n mySubscription?: Maybe<NotificationTopicSubscription>;\n name: Scalars['String']['output'];\n slug: Scalars['String']['output'];\n subscriberCount?: Maybe<Scalars['Int']['output']>;\n type: NotificationType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type NotificationTopicFilterInput = {\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport type NotificationTopicList = {\n __typename?: 'NotificationTopicList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<NotificationTopic>;\n total: Scalars['Int']['output'];\n};\n\nexport type NotificationTopicSubscription = {\n __typename?: 'NotificationTopicSubscription';\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n subscribed: Scalars['Boolean']['output'];\n topic?: Maybe<NotificationTopic>;\n topicId: Scalars['ID']['output'];\n unsubscribedAt?: Maybe<Scalars['DateTime']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport enum NotificationType {\n Alert = 'ALERT',\n Marketing = 'MARKETING',\n System = 'SYSTEM',\n Transactional = 'TRANSACTIONAL'\n}\n\n/** OAuth authorization URL response */\nexport type OAuthAuthorizationUrl = {\n __typename?: 'OAuthAuthorizationUrl';\n /** URL expires at */\n expiresAt: Scalars['DateTime']['output'];\n /** State parameter for CSRF protection */\n state: Scalars['String']['output'];\n /** Authorization URL to redirect user to */\n url: Scalars['String']['output'];\n};\n\nexport type OAuthInput = {\n code: Scalars['String']['input'];\n provider: Scalars['String']['input'];\n redirectUri?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Result for OIDC authorization URL generation */\nexport type OidcAuthUrlResult = {\n __typename?: 'OIDCAuthUrlResult';\n authUrl: Scalars['String']['output'];\n codeVerifier: Scalars['String']['output'];\n nonce: Scalars['String']['output'];\n relayState?: Maybe<Scalars['String']['output']>;\n state: Scalars['String']['output'];\n};\n\n/** Input for OIDC SSO callback */\nexport type OidcCallbackInput = {\n code: Scalars['String']['input'];\n codeVerifier: Scalars['String']['input'];\n nonce: Scalars['String']['input'];\n state: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n};\n\n/** OIDC Provider Configuration (Discovery Endpoint Response) */\nexport type OidcConfig = {\n __typename?: 'OIDCConfig';\n authorizationEndpoint: Scalars['String']['output'];\n grantTypesSupported?: Maybe<Array<Scalars['String']['output']>>;\n issuer: Scalars['String']['output'];\n jwksUri: Scalars['String']['output'];\n registrationEndpoint?: Maybe<Scalars['String']['output']>;\n responseTypesSupported?: Maybe<Array<Scalars['String']['output']>>;\n scopesSupported?: Maybe<Array<Scalars['String']['output']>>;\n tokenEndpoint: Scalars['String']['output'];\n userinfoEndpoint?: Maybe<Scalars['String']['output']>;\n};\n\nexport type OidcHybridConfig = {\n __typename?: 'OIDCHybridConfig';\n authorizationEndpoint: Scalars['String']['output'];\n supportedGrantTypes: Array<Scalars['String']['output']>;\n supportedResponseTypes: Array<Scalars['String']['output']>;\n};\n\n/** Operation context output type. Returns the stored context for each record. */\nexport type OperationContext = {\n __typename?: 'OperationContext';\n /** App ID for app-level scoping */\n appId?: Maybe<Scalars['ID']['output']>;\n /** Additional custom context as JSON */\n custom?: Maybe<Scalars['JSON']['output']>;\n /** Organization ID for organization-level scoping */\n organizationId?: Maybe<Scalars['ID']['output']>;\n /** Project ID for project-level scoping */\n projectId?: Maybe<Scalars['ID']['output']>;\n /** Tenant ID for tenant-level scoping */\n tenantId?: Maybe<Scalars['ID']['output']>;\n /** User ID for user-level scoping */\n userId?: Maybe<Scalars['ID']['output']>;\n /** Workspace ID for workspace-level scoping */\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\n/** Order estimate for checkout preview */\nexport type OrderEstimate = {\n __typename?: 'OrderEstimate';\n /** Available shipping methods for physical items */\n availableShippingMethods: Array<ShippingMethod>;\n /** Currency */\n currency: Scalars['String']['output'];\n /** Digital items subtotal */\n digitalSubtotal: Scalars['Float']['output'];\n /** Physical items subtotal */\n physicalSubtotal: Scalars['Float']['output'];\n /** Shipping cost estimate */\n shippingCost?: Maybe<Scalars['Float']['output']>;\n /** Subtotal before shipping and tax */\n subtotal: Scalars['Float']['output'];\n /** Tax amount estimate */\n taxAmount?: Maybe<Scalars['Float']['output']>;\n /** Total amount */\n total: Scalars['Float']['output'];\n};\n\n/** Input for calculating order estimate */\nexport type OrderEstimateInput = {\n /** Shipping address for physical items (required if cart has physical items) */\n shippingAddressId?: InputMaybe<Scalars['String']['input']>;\n /** Selected shipping method ID */\n shippingMethodId?: InputMaybe<Scalars['String']['input']>;\n /** Target workspace for digital items */\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Order fulfillment tracking for physical orders */\nexport type OrderFulfillment = {\n __typename?: 'OrderFulfillment';\n /** When order was cancelled */\n cancelledAt?: Maybe<Scalars['DateTime']['output']>;\n /** Shipping carrier name */\n carrier?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** When package was delivered */\n deliveredAt?: Maybe<Scalars['DateTime']['output']>;\n /** Estimated delivery date */\n estimatedDeliveryDate?: Maybe<Scalars['DateTime']['output']>;\n /** When delivery failed */\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Reason for delivery failure */\n failureReason?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n /** When package entered transit */\n inTransitAt?: Maybe<Scalars['DateTime']['output']>;\n /** When shipping label was created */\n labelCreatedAt?: Maybe<Scalars['DateTime']['output']>;\n /** URL to shipping label PDF */\n labelUrl?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Internal notes */\n notes?: Maybe<Scalars['String']['output']>;\n order?: Maybe<StoreOrder>;\n orderId: Scalars['String']['output'];\n /** When package went out for delivery */\n outForDeliveryAt?: Maybe<Scalars['DateTime']['output']>;\n /** Package height */\n packageHeight?: Maybe<Scalars['Float']['output']>;\n /** Package length */\n packageLength?: Maybe<Scalars['Float']['output']>;\n /** Package weight */\n packageWeight?: Maybe<Scalars['Float']['output']>;\n /** Package width */\n packageWidth?: Maybe<Scalars['Float']['output']>;\n /** When order was processed */\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Reason for return */\n returnReason?: Maybe<Scalars['String']['output']>;\n /** When package was returned */\n returnedAt?: Maybe<Scalars['DateTime']['output']>;\n /** When order was shipped */\n shippedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Whether signature is required on delivery */\n signatureRequired: Scalars['Boolean']['output'];\n /** URL to signature image */\n signatureUrl?: Maybe<Scalars['String']['output']>;\n /** Name of person who signed */\n signedBy?: Maybe<Scalars['String']['output']>;\n /** Current fulfillment status */\n status: FulfillmentStatus;\n /** Tracking event history */\n trackingEvents: Array<FulfillmentTrackingEvent>;\n /** Tracking number from carrier */\n trackingNumber?: Maybe<Scalars['String']['output']>;\n /** Full tracking URL */\n trackingUrl?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Shipping estimate for a selected method and destination */\nexport type OrderShippingEstimate = {\n __typename?: 'OrderShippingEstimate';\n carrier?: Maybe<Scalars['String']['output']>;\n cost: Scalars['Float']['output'];\n currency: Scalars['String']['output'];\n estimatedDeliveryDate?: Maybe<Scalars['DateTime']['output']>;\n estimatedMaxDays?: Maybe<Scalars['Int']['output']>;\n estimatedMinDays?: Maybe<Scalars['Int']['output']>;\n itemCount: Scalars['Int']['output'];\n methodName: Scalars['String']['output'];\n orderId: Scalars['ID']['output'];\n shippingMethodId: Scalars['String']['output'];\n totalWeightKg: Scalars['Float']['output'];\n};\n\n/** Input for estimating shipping cost for an order */\nexport type OrderShippingEstimateInput = {\n /** Destination country code (ISO 3166-1 alpha-2) */\n destinationCountry: Scalars['String']['input'];\n /** Optional destination postal code */\n destinationPostalCode?: InputMaybe<Scalars['String']['input']>;\n /** Store order ID */\n orderId: Scalars['ID']['input'];\n /** Shipping method to evaluate */\n shippingMethodId: Scalars['String']['input'];\n};\n\nexport enum OrderStatus {\n Failed = 'FAILED',\n Pending = 'PENDING',\n Processed = 'PROCESSED',\n Refunded = 'REFUNDED'\n}\n\n/**\n * Organization type stub - represents an organization entity from another service\n * This service doesn't own the Organization model, but references it\n */\nexport type Organization = {\n __typename?: 'Organization';\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n /** Pending invites for this organization */\n invites: Array<OrganizationInvite>;\n logo?: Maybe<Scalars['String']['output']>;\n /** Member count */\n memberCount: Scalars['Int']['output'];\n /** Members of this organization */\n memberships: Array<OrganizationMember>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n settings?: Maybe<Scalars['JSON']['output']>;\n slug: Scalars['String']['output'];\n status: Scalars['String']['output'];\n tenant: Tenant;\n tenantId: Scalars['String']['output'];\n type: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n website?: Maybe<Scalars['String']['output']>;\n /** Workspace count */\n workspaceCount: Scalars['Int']['output'];\n /** Workspaces belonging to this organization */\n workspaces: Array<Workspace>;\n};\n\n/** Filter input for querying organizations */\nexport type OrganizationFilterInput = {\n search?: InputMaybe<Scalars['String']['input']>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Organization invite — represents a pending invitation to join an organization */\nexport type OrganizationInvite = {\n __typename?: 'OrganizationInvite';\n createdAt: Scalars['DateTime']['output'];\n email: Scalars['String']['output'];\n expiresAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n invitedBy: Scalars['String']['output'];\n invitedUserId?: Maybe<Scalars['String']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n organization: Organization;\n organizationId: Scalars['String']['output'];\n respondedAt?: Maybe<Scalars['DateTime']['output']>;\n role: UserRole;\n status: InviteStatus;\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Filter for listing invites */\nexport type OrganizationInviteFilterInput = {\n status?: InputMaybe<InviteStatus>;\n};\n\n/** Paginated list of organization invites */\nexport type OrganizationInviteList = {\n __typename?: 'OrganizationInviteList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<OrganizationInvite>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\n/** Paginated list of organizations */\nexport type OrganizationList = {\n __typename?: 'OrganizationList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Organization>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\n/** Organization member with role and join information */\nexport type OrganizationMember = {\n __typename?: 'OrganizationMember';\n id: Scalars['ID']['output'];\n invitedBy?: Maybe<Scalars['String']['output']>;\n joinedAt: Scalars['DateTime']['output'];\n organization: Organization;\n organizationId: Scalars['String']['output'];\n role: UserRole;\n userId: Scalars['String']['output'];\n};\n\n/** Paginated list of organization members */\nexport type OrganizationMemberList = {\n __typename?: 'OrganizationMemberList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<OrganizationMember>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\nexport type OrganizationScheduleQuotas = {\n __typename?: 'OrganizationScheduleQuotas';\n currentActiveSchedules: Scalars['Int']['output'];\n currentExecutionsThisHour: Scalars['Int']['output'];\n maxActiveSchedules: Scalars['Int']['output'];\n maxScheduleExecutionsPerHour: Scalars['Int']['output'];\n nearingLimit: Scalars['Boolean']['output'];\n utilizationPercentage: Scalars['Float']['output'];\n};\n\n/** Override types for permission exceptions */\nexport enum OverrideType {\n /** Explicitly deny permission (overrides grant) */\n Deny = 'DENY',\n /** Explicitly grant permission (overrides denial) */\n Grant = 'GRANT'\n}\n\nexport type PageInfo = {\n __typename?: 'PageInfo';\n endCursor?: Maybe<Scalars['String']['output']>;\n hasNextPage: Scalars['Boolean']['output'];\n hasPreviousPage: Scalars['Boolean']['output'];\n startCursor?: Maybe<Scalars['String']['output']>;\n};\n\n/** Response type for getTransactionsByBillingAccount query Contains basic billing account info and paginated transactions */\nexport type PaginatedBillingAccountTransactions = {\n __typename?: 'PaginatedBillingAccountTransactions';\n /** Billing-specific email (for invoices) */\n billingEmail?: Maybe<Scalars['String']['output']>;\n /** When the billing account was created */\n createdAt: Scalars['DateTime']['output'];\n /** Credits available */\n creditAmount: Scalars['Float']['output'];\n /** Default currency */\n currency: Scalars['String']['output'];\n /** Billing account email */\n email?: Maybe<Scalars['String']['output']>;\n /** Whether there are more transactions after current page */\n hasMore: Scalars['Boolean']['output'];\n /** Billing account ID */\n id: Scalars['ID']['output'];\n /** Whether the billing account is active */\n isActive: Scalars['Boolean']['output'];\n /** Billing account name */\n name: Scalars['String']['output'];\n /** Current page number (0-indexed) */\n page: Scalars['Int']['output'];\n /** Number of items per page */\n pageSize: Scalars['Int']['output'];\n /** Tax ID / VAT number */\n taxId?: Maybe<Scalars['String']['output']>;\n /** Total count of transactions */\n totalCount: Scalars['Int']['output'];\n /** List of transactions for current page */\n transactions: Array<Transaction>;\n};\n\nexport type PaginatedCreditTransactions = {\n __typename?: 'PaginatedCreditTransactions';\n creditTransactions: Array<CreditTransaction>;\n hasMore: Scalars['Boolean']['output'];\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n totalCount: Scalars['Int']['output'];\n};\n\n/** Paginated products result */\nexport type PaginatedProducts = {\n __typename?: 'PaginatedProducts';\n products: Array<StoreProduct>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type PaginatedQuotaAssignments = {\n __typename?: 'PaginatedQuotaAssignments';\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n quotaAssignments: Array<QuotaAssignment>;\n totalCount: Scalars['Int']['output'];\n totalPages: Scalars['Int']['output'];\n};\n\nexport type PaginatedQuotaAssignmentsWithAnalytics = {\n __typename?: 'PaginatedQuotaAssignmentsWithAnalytics';\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n quotaAssignments: Array<QuotaAssignmentWithAnalytics>;\n totalCount: Scalars['Int']['output'];\n totalPages: Scalars['Int']['output'];\n};\n\n/** Paginated refund records response */\nexport type PaginatedRefundRecords = {\n __typename?: 'PaginatedRefundRecords';\n hasMore: Scalars['Boolean']['output'];\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n records: Array<RefundRecord>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type PaginatedResponse = {\n __typename?: 'PaginatedResponse';\n /** Whether there are more items available */\n hasMore: Scalars['Boolean']['output'];\n /** Items per page limit */\n limit: Scalars['Int']['output'];\n /** Current page number */\n page: Scalars['Int']['output'];\n /** Total count of items matching the filter */\n total: Scalars['Int']['output'];\n};\n\nexport type PaginatedSubscriptions = {\n __typename?: 'PaginatedSubscriptions';\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n subscriptions: Array<BillingSubscription>;\n totalCount: Scalars['Int']['output'];\n totalPages: Scalars['Int']['output'];\n};\n\nexport type PaginatedUsages = {\n __typename?: 'PaginatedUsages';\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n totalCount: Scalars['Int']['output'];\n totalPages: Scalars['Int']['output'];\n usages: Array<Usage>;\n};\n\n/** Pagination input */\nexport type PaginationInput = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Status of a Bundle-2 pairing code flow (WhatsApp / Discord). */\nexport enum PairingStatus {\n /** User approved the pairing code in the dashboard — dmAllowed set to true. */\n Approved = 'APPROVED',\n /** Pairing code expired before the user approved it — a new code must be requested. */\n Expired = 'EXPIRED',\n /** Pairing code generated and sent to user; waiting for dashboard approval. */\n Pending = 'PENDING'\n}\n\nexport enum PartnerTier {\n Premier = 'PREMIER',\n Registered = 'REGISTERED',\n Select = 'SELECT'\n}\n\nexport type PasskeyAuthenticationOptions = {\n __typename?: 'PasskeyAuthenticationOptions';\n allowCredentials?: Maybe<Scalars['JSON']['output']>;\n challenge: Scalars['String']['output'];\n rpId: Scalars['String']['output'];\n timeout: Scalars['Int']['output'];\n userVerification: Scalars['String']['output'];\n};\n\nexport type PasskeyInfo = {\n __typename?: 'PasskeyInfo';\n backedUp: Scalars['Boolean']['output'];\n createdAt: Scalars['DateTime']['output'];\n credentialId: Scalars['String']['output'];\n deviceType?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n lastUsedAt?: Maybe<Scalars['DateTime']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PasskeyRegistrationOptions = {\n __typename?: 'PasskeyRegistrationOptions';\n attestation: Scalars['String']['output'];\n authenticatorSelection: Scalars['JSON']['output'];\n challenge: Scalars['String']['output'];\n excludeCredentials?: Maybe<Scalars['JSON']['output']>;\n pubKeyCredParams: Scalars['JSON']['output'];\n rp: Scalars['JSON']['output'];\n timeout: Scalars['Int']['output'];\n user: Scalars['JSON']['output'];\n};\n\nexport type PasskeyRegistrationResult = {\n __typename?: 'PasskeyRegistrationResult';\n credentialId?: Maybe<Scalars['String']['output']>;\n message?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\nexport type PasswordResetRequestResult = {\n __typename?: 'PasswordResetRequestResult';\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\nexport type Payment = {\n __typename?: 'Payment';\n amount: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n failureReason?: Maybe<Scalars['String']['output']>;\n gatewayOrderId?: Maybe<Scalars['String']['output']>;\n gatewayPaymentId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n invoice?: Maybe<Invoice>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n method: PaymentMethodType;\n orgId: Scalars['String']['output'];\n paidAt?: Maybe<Scalars['DateTime']['output']>;\n provider?: Maybe<Scalars['String']['output']>;\n status: PaymentStatus;\n transactionId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type PaymentFailure = {\n __typename?: 'PaymentFailure';\n code?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n message?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n paymentId?: Maybe<Scalars['String']['output']>;\n reason: Scalars['String']['output'];\n};\n\nexport type PaymentMethod = {\n __typename?: 'PaymentMethod';\n billingAccount?: Maybe<BillingAccount>;\n billingAccountId?: Maybe<Scalars['String']['output']>;\n brand?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n expiryMonth?: Maybe<Scalars['Int']['output']>;\n expiryYear?: Maybe<Scalars['Int']['output']>;\n id: Scalars['ID']['output'];\n isDefault: Scalars['Boolean']['output'];\n isVerified: Scalars['Boolean']['output'];\n last4?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n razorpayCustomerId?: Maybe<Scalars['String']['output']>;\n razorpayPaymentMethodId?: Maybe<Scalars['String']['output']>;\n stripeCustomerId?: Maybe<Scalars['String']['output']>;\n stripePaymentMethodId?: Maybe<Scalars['String']['output']>;\n transactions: Array<Transaction>;\n type: PaymentMethodType;\n updatedAt: Scalars['DateTime']['output'];\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport enum PaymentMethodStatus {\n Disabled = 'DISABLED',\n FailedVerification = 'FAILED_VERIFICATION',\n PendingVerification = 'PENDING_VERIFICATION',\n Verified = 'VERIFIED'\n}\n\nexport enum PaymentMethodType {\n BankTransfer = 'BANK_TRANSFER',\n CreditCard = 'CREDIT_CARD',\n Crypto = 'CRYPTO',\n DebitCard = 'DEBIT_CARD',\n Netbanking = 'NETBANKING',\n Paypal = 'PAYPAL',\n Wallet = 'WALLET'\n}\n\n/** Payment provider configuration for frontend integration Contains only public keys safe to expose to the client */\nexport type PaymentProviderConfig = {\n __typename?: 'PaymentProviderConfig';\n /** Whether Razorpay is configured and available */\n razorpayEnabled: Scalars['Boolean']['output'];\n /** Razorpay key ID for frontend SDK */\n razorpayKeyId?: Maybe<Scalars['String']['output']>;\n /** Whether Stripe is configured and available */\n stripeEnabled: Scalars['Boolean']['output'];\n /** Stripe publishable key for frontend SDK */\n stripePublishableKey?: Maybe<Scalars['String']['output']>;\n};\n\n/** Preferred payment provider */\nexport enum PaymentProviderPreference {\n Auto = 'AUTO',\n Razorpay = 'RAZORPAY',\n Stripe = 'STRIPE'\n}\n\nexport enum PaymentStatus {\n Canceled = 'CANCELED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Refunded = 'REFUNDED',\n Succeeded = 'SUCCEEDED'\n}\n\nexport type PayoutAccount = {\n __typename?: 'PayoutAccount';\n accountDetails?: Maybe<Scalars['JSON']['output']>;\n accountLast4?: Maybe<Scalars['String']['output']>;\n billingAccountId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n displayName?: Maybe<Scalars['String']['output']>;\n externalAccountId?: Maybe<Scalars['String']['output']>;\n externalContactId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n isDefault: Scalars['Boolean']['output'];\n label: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n ownerUserId?: Maybe<Scalars['String']['output']>;\n providerPreference: PayoutProvider;\n status: PayoutAccountStatus;\n type: PayoutAccountType;\n updatedAt: Scalars['DateTime']['output'];\n verificationMethod?: Maybe<Scalars['String']['output']>;\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport enum PayoutAccountStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED',\n FailedVerification = 'FAILED_VERIFICATION',\n PendingVerification = 'PENDING_VERIFICATION'\n}\n\nexport enum PayoutAccountType {\n BankAccount = 'BANK_ACCOUNT',\n Upi = 'UPI',\n Wallet = 'WALLET'\n}\n\nexport type PayoutAdminSummary = {\n __typename?: 'PayoutAdminSummary';\n failedCount: Scalars['Int']['output'];\n pendingCount: Scalars['Int']['output'];\n providerBreakdown: Array<PayoutProviderBreakdown>;\n statusBreakdown: Array<PayoutStatusBreakdown>;\n totalPaidAmount: Scalars['Float']['output'];\n totalProcessingAmount: Scalars['Float']['output'];\n totalRequestedAmount: Scalars['Float']['output'];\n};\n\nexport enum PayoutMethodType {\n BankTransfer = 'BANK_TRANSFER',\n Paypal = 'PAYPAL',\n RazorpayX = 'RAZORPAY_X',\n StripeConnect = 'STRIPE_CONNECT'\n}\n\nexport enum PayoutProvider {\n Auto = 'AUTO',\n Manual = 'MANUAL',\n Razorpay = 'RAZORPAY',\n Stripe = 'STRIPE'\n}\n\nexport type PayoutProviderBreakdown = {\n __typename?: 'PayoutProviderBreakdown';\n count: Scalars['Int']['output'];\n provider: PayoutProvider;\n totalAmount: Scalars['Float']['output'];\n};\n\nexport type PayoutRequest = {\n __typename?: 'PayoutRequest';\n approvedAmount?: Maybe<Scalars['Float']['output']>;\n billingAccountId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n earningsEntries: Array<EarningsEntry>;\n externalReference?: Maybe<Scalars['String']['output']>;\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n failureReason?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n internalNotes?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n paidAt?: Maybe<Scalars['DateTime']['output']>;\n payoutAccount?: Maybe<PayoutAccount>;\n payoutAccountId?: Maybe<Scalars['ID']['output']>;\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n provider: PayoutProvider;\n requestedAmount: Scalars['Float']['output'];\n requesterUserId?: Maybe<Scalars['String']['output']>;\n status: PayoutRequestStatus;\n updatedAt: Scalars['DateTime']['output'];\n userNotes?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PayoutRequestConnection = {\n __typename?: 'PayoutRequestConnection';\n hasMore: Scalars['Boolean']['output'];\n items: Array<PayoutRequest>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type PayoutRequestFilterInput = {\n billingAccountId?: InputMaybe<Scalars['ID']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n provider?: InputMaybe<PayoutProvider>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<PayoutRequestStatus>;\n};\n\nexport enum PayoutRequestStatus {\n Approved = 'APPROVED',\n Canceled = 'CANCELED',\n Failed = 'FAILED',\n Paid = 'PAID',\n Processing = 'PROCESSING',\n Rejected = 'REJECTED',\n Requested = 'REQUESTED'\n}\n\nexport type PayoutRunLog = {\n __typename?: 'PayoutRunLog';\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n period: Scalars['String']['output'];\n processedAt: Scalars['DateTime']['output'];\n publishersCount: Scalars['Int']['output'];\n status: Scalars['String']['output'];\n totalAmount: Scalars['Float']['output'];\n};\n\nexport enum PayoutStatus {\n Cancelled = 'CANCELLED',\n Completed = 'COMPLETED',\n Failed = 'FAILED',\n OnHold = 'ON_HOLD',\n Pending = 'PENDING',\n Processing = 'PROCESSING',\n Scheduled = 'SCHEDULED'\n}\n\nexport type PayoutStatusBreakdown = {\n __typename?: 'PayoutStatusBreakdown';\n count: Scalars['Int']['output'];\n status: PayoutRequestStatus;\n totalAmount: Scalars['Float']['output'];\n};\n\nexport type PeakUsage = {\n __typename?: 'PeakUsage';\n /** Highest usage in a single day */\n maxDailyUsage: Scalars['Float']['output'];\n /** Date of peak usage */\n peakDate: Scalars['String']['output'];\n /** Peak usage hour (0-23) */\n peakHour?: Maybe<Scalars['Int']['output']>;\n};\n\n/** Permission audit log entry */\nexport type PermissionAuditLog = {\n __typename?: 'PermissionAuditLog';\n action: Scalars['String']['output'];\n actorId: Scalars['String']['output'];\n actorType: ActorType;\n allowed: Scalars['Boolean']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n decisionPath: Scalars['String']['output'];\n evaluatedAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n opaInput?: Maybe<Scalars['JSON']['output']>;\n opaOutput?: Maybe<Scalars['JSON']['output']>;\n resourceId?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n};\n\n/** Input for checking a single permission */\nexport type PermissionCheckInput = {\n /** Action being performed */\n action: Scalars['String']['input'];\n /** Opaque actor ID from auth-svc */\n actorId: Scalars['String']['input'];\n /** Type of actor */\n actorType: ActorType;\n /** Optional: Additional attributes for OPA policies */\n attributes?: InputMaybe<Scalars['JSON']['input']>;\n /** Optional: Specific resource ID */\n resourceId?: InputMaybe<Scalars['String']['input']>;\n /** Resource type being accessed */\n resourceType: Scalars['String']['input'];\n /** Scope ID - tenantId for global layer */\n scopeId: Scalars['String']['input'];\n};\n\n/** Result of permission check */\nexport type PermissionCheckResult = {\n __typename?: 'PermissionCheckResult';\n /** Whether the action is allowed */\n allowed: Scalars['Boolean']['output'];\n /** Path taken to reach the decision (for debugging) */\n decisionPath: Scalars['String']['output'];\n opaPolicy?: Maybe<Scalars['String']['output']>;\n overrideType?: Maybe<Scalars['String']['output']>;\n /** Additional details about the decision */\n roleLevel?: Maybe<Scalars['String']['output']>;\n roleName?: Maybe<Scalars['String']['output']>;\n};\n\n/** Actor-level permission override (exception to role-based permissions) */\nexport type PermissionOverride = {\n __typename?: 'PermissionOverride';\n action: Scalars['String']['output'];\n actorId: Scalars['String']['output'];\n actorType: ActorType;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n onBehalfOf?: Maybe<Scalars['String']['output']>;\n overrideType: OverrideType;\n priority: Scalars['Int']['output'];\n reason?: Maybe<Scalars['String']['output']>;\n /** Optional: Scope to specific resource instance */\n resourceId?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n validFrom?: Maybe<Scalars['DateTime']['output']>;\n validUntil?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport type Plan = {\n __typename?: 'Plan';\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp when the plan was created. */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** The currency in which the plan is priced. Defaults to 'USD'. */\n currency?: Maybe<Scalars['String']['output']>;\n /** Prices for all supported currencies with beautiful rounding. Example: { \"USD\": 2.00, \"INR\": 199, \"EUR\": 1.99, \"GBP\": 1.79 } */\n currencyPrices?: Maybe<Scalars['JSON']['output']>;\n /** The duration for which the plan is valid (e.g., monthly, yearly). Defaults to 'monthly'. */\n duration?: Maybe<PlanDuration>;\n /** A list of features provided by this plan, such as quotas or special services. */\n features?: Maybe<Array<Maybe<SubscriptionFeatures>>>;\n /** Geography-specific price overrides. The billing account's country/state/region plus currency decide whether one of these overrides applies. */\n geoPricingOverrides: Array<GeoPricingOverride>;\n /** The unique identifier for the Plan, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** Indicates whether the plan is currently active. */\n isActive?: Maybe<Scalars['Boolean']['output']>;\n /** The offers that user get with plan on the store */\n itemEntitlements?: Maybe<Array<Maybe<SubscriptionEntitlement>>>;\n /** Maximum seats allowed (null = unlimited). */\n maxSeats?: Maybe<Scalars['Int']['output']>;\n /** Minimum seats required for this plan (e.g. 5 for Team tier). Null means no minimum. */\n minSeats?: Maybe<Scalars['Int']['output']>;\n /** The name of the plan (e.g., 'Basic', 'Pro', 'Enterprise'). */\n name?: Maybe<Scalars['String']['output']>;\n /** The price of the plan. */\n price?: Maybe<Scalars['Float']['output']>;\n /** Historical record of price changes for this plan */\n priceHistory: Array<PlanPriceHistory>;\n /** Per-seat rate used when pricingModel is PER_SEAT. Total charge = pricePerSeat × seatCount. */\n pricePerSeat?: Maybe<Scalars['Float']['output']>;\n /** Whether this plan bills at a flat rate or per seat. PER_SEAT plans pass seatCount as quantity to Stripe/Razorpay. */\n pricingModel?: Maybe<PlanPricingModel>;\n /** Which product the plan belongs to (reference to product microservice) */\n productID?: Maybe<Scalars['String']['output']>;\n /** The list of subscriptions associated with this plan. */\n subscriptions?: Maybe<Array<Maybe<BillingSubscription>>>;\n /** The timestamp when the plan was last updated. */\n updatedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport enum PlanDuration {\n Monthly = 'monthly',\n Yearly = 'yearly'\n}\n\n/** Tracks historical price changes for a Plan. A new record is created whenever a plan's price is updated. */\nexport type PlanPriceHistory = {\n __typename?: 'PlanPriceHistory';\n /** Who made the price change (actor ID) */\n changedBy?: Maybe<Scalars['String']['output']>;\n /** When the price change was recorded */\n createdAt: Scalars['DateTime']['output'];\n /** The currency of the price change */\n currency: Scalars['String']['output'];\n /** Unique identifier */\n id: Scalars['ID']['output'];\n /** The new price after the change */\n newPrice: Scalars['Float']['output'];\n /** The previous price before the change */\n oldPrice: Scalars['Float']['output'];\n /** The plan this price change belongs to */\n planId: Scalars['String']['output'];\n /** Optional reason for the price change */\n reason?: Maybe<Scalars['String']['output']>;\n};\n\n/** Determines how a plan is billed — flat rate or multiplied by seat count. */\nexport enum PlanPricingModel {\n /** Fixed price regardless of user count (e.g. Free tier, flat addons) */\n FlatRate = 'FLAT_RATE',\n /** Price × seatCount per billing cycle. Maps to quantity on Stripe/Razorpay subscription items. */\n PerSeat = 'PER_SEAT'\n}\n\nexport type PlanQuotaInput = {\n quantity: Scalars['Int']['input'];\n quotaId: Scalars['ID']['input'];\n};\n\n/**\n * PlatformProduct entity - resolvable via Federation Gateway.\n * Other services can reference PlatformProduct by id or slug.\n */\nexport type PlatformProduct = {\n __typename?: 'PlatformProduct';\n /** Number of active users */\n activeUsers: Scalars['Int']['output'];\n /** Total API calls made to this product */\n apiCalls: Scalars['Int']['output'];\n /** Apple App Store URL */\n appStoreUrl?: Maybe<Scalars['String']['output']>;\n /** Product application URL */\n appUrl?: Maybe<Scalars['String']['output']>;\n /** Physical contact address */\n contactAddress?: Maybe<Scalars['String']['output']>;\n /** Primary contact email */\n contactEmail?: Maybe<Scalars['String']['output']>;\n /** Contact phone number */\n contactPhone?: Maybe<Scalars['String']['output']>;\n /** Content pages associated with this product */\n contentPages: Array<ProductContentPage>;\n /** When the product was created */\n createdAt: Scalars['DateTime']['output'];\n /** Product description */\n description?: Maybe<Scalars['String']['output']>;\n /** Product documentation URL */\n docsUrl?: Maybe<Scalars['String']['output']>;\n /** GitHub repository URL */\n githubUrl?: Maybe<Scalars['String']['output']>;\n /** The unique identifier for the platform product */\n id: Scalars['ID']['output'];\n /** URL to the product logo */\n logoUrl?: Maybe<Scalars['String']['output']>;\n /** Additional metadata (JSON: tagline, businessDomain, category, company, pricingRange, etc.) */\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** The product name */\n name: Scalars['String']['output'];\n /** Email for contact form notifications (fallback: contactEmail) */\n notificationEmail?: Maybe<Scalars['String']['output']>;\n /** Open Graph image URL */\n ogImage?: Maybe<Scalars['String']['output']>;\n /** Google Play Store URL */\n playStoreUrl?: Maybe<Scalars['String']['output']>;\n /**\n * reCAPTCHA secret key (server-side) for backend verification.\n * Only accessible via internal gateway (platformProduct query requires auth).\n * The publicProduct query does NOT resolve this field.\n */\n recaptchaSecretKey?: Maybe<Scalars['String']['output']>;\n /** reCAPTCHA site key (public) for frontend verification */\n recaptchaSiteKey?: Maybe<Scalars['String']['output']>;\n /** Rybbit analytics site ID for this product */\n rybbitSiteId?: Maybe<Scalars['String']['output']>;\n /** SEO meta description */\n seoDescription?: Maybe<Scalars['String']['output']>;\n /** SEO keywords (comma-separated) */\n seoKeywords?: Maybe<Scalars['String']['output']>;\n /** SEO page title */\n seoTitle?: Maybe<Scalars['String']['output']>;\n /** Unique slug for URL-friendly identification */\n slug: Scalars['String']['output'];\n /** Social media links (JSON: { twitter, github, discord, linkedin, youtube, instagram, ... }) */\n socialLinks?: Maybe<Scalars['JSON']['output']>;\n /** Current status of the product */\n status: PlatformProductStatus;\n /** Status page URL */\n statusPageUrl?: Maybe<Scalars['String']['output']>;\n /** Storage used in GB */\n storageGB: Scalars['Float']['output'];\n /** Support email address */\n supportEmail?: Maybe<Scalars['String']['output']>;\n /** Number of tenants using this product */\n tenantCount: Scalars['Int']['output'];\n /** When the product was last updated */\n updatedAt: Scalars['DateTime']['output'];\n /** Uptime percentage */\n uptime: Scalars['Float']['output'];\n /** Product website URL */\n website?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PlatformProductFilterInput = {\n /** Search in name, slug, or description */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by product status */\n status?: InputMaybe<PlatformProductStatus>;\n};\n\nexport type PlatformProductList = {\n __typename?: 'PlatformProductList';\n /** Whether there are more products available */\n hasMore: Scalars['Boolean']['output'];\n /** List of platform products */\n items: Array<PlatformProduct>;\n /** Total count of products */\n total: Scalars['Int']['output'];\n};\n\n/** Aggregate statistics about platform products */\nexport type PlatformProductStats = {\n __typename?: 'PlatformProductStats';\n /** Number of active (released) products */\n active: Scalars['Int']['output'];\n /** Number of coming soon (unreleased) products */\n comingSoon: Scalars['Int']['output'];\n /** Number of draft products */\n draft: Scalars['Int']['output'];\n /** Total number of products */\n total: Scalars['Int']['output'];\n /** Number of waitlist-gated products */\n waitlist: Scalars['Int']['output'];\n};\n\nexport enum PlatformProductStatus {\n Active = 'ACTIVE',\n ComingSoon = 'COMING_SOON',\n Draft = 'DRAFT',\n Waitlist = 'WAITLIST'\n}\n\n/** OPA policy reference */\nexport type PolicyReference = {\n __typename?: 'PolicyReference';\n action: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n opaPackage: Scalars['String']['output'];\n priority: Scalars['Int']['output'];\n resourceType: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type PolicyReferenceFilterInput = {\n action?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type PrepareSupportAttachmentUploadInput = {\n extension: Scalars['String']['input'];\n fileName: Scalars['String']['input'];\n fileSize: Scalars['BigInt']['input'];\n mimeType: Scalars['String']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\n/** Price range in results */\nexport type PriceRange = {\n __typename?: 'PriceRange';\n max: Scalars['Float']['output'];\n min: Scalars['Float']['output'];\n};\n\nexport enum PricingModel {\n Free = 'FREE',\n PaidOnetime = 'PAID_ONETIME',\n Subscription = 'SUBSCRIPTION'\n}\n\nexport type PriorityBreakdown = {\n __typename?: 'PriorityBreakdown';\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n priority: SupportTicketPriority;\n};\n\n/** Result of processing a refund */\nexport type ProcessRefundResult = {\n __typename?: 'ProcessRefundResult';\n error?: Maybe<Scalars['String']['output']>;\n gatewayRefundId?: Maybe<Scalars['String']['output']>;\n refundRecord?: Maybe<RefundRecord>;\n success: Scalars['Boolean']['output'];\n};\n\n/** Reason describing why a user does or does not have product access */\nexport enum ProductAccessReason {\n InternalDomainAccess = 'INTERNAL_DOMAIN_ACCESS',\n NoAccess = 'NO_ACCESS',\n ProductActive = 'PRODUCT_ACTIVE',\n ProductDraft = 'PRODUCT_DRAFT',\n SuperAdminAccess = 'SUPER_ADMIN_ACCESS',\n WaitlistApproved = 'WAITLIST_APPROVED',\n WaitlistNotJoined = 'WAITLIST_NOT_JOINED',\n WaitlistPending = 'WAITLIST_PENDING',\n WaitlistRejected = 'WAITLIST_REJECTED'\n}\n\n/** Result of checking whether the current user can access a specific product */\nexport type ProductAccessResult = {\n __typename?: 'ProductAccessResult';\n hasAccess: Scalars['Boolean']['output'];\n product?: Maybe<PlatformProduct>;\n reason: ProductAccessReason;\n};\n\nexport type ProductAsset = {\n __typename?: 'ProductAsset';\n caption?: Maybe<Scalars['String']['output']>;\n checksum?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n downloadUrl?: Maybe<Scalars['String']['output']>;\n fileName: Scalars['String']['output'];\n fileType: ProductAssetType;\n filesSvcId?: Maybe<Scalars['ID']['output']>;\n id: Scalars['ID']['output'];\n isCurrent: Scalars['Boolean']['output'];\n locale?: Maybe<Scalars['String']['output']>;\n mimeType: Scalars['String']['output'];\n orderIndex: Scalars['Int']['output'];\n productId: Scalars['ID']['output'];\n sizeBytes: Scalars['String']['output'];\n storageKey?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n uploadedBy: Scalars['String']['output'];\n version?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum ProductAssetType {\n Banner = 'BANNER',\n FeatureGraphic = 'FEATURE_GRAPHIC',\n Icon = 'ICON',\n Logo = 'LOGO',\n Manifest = 'MANIFEST',\n Screenshot = 'SCREENSHOT',\n Thumbnail = 'THUMBNAIL',\n Video = 'VIDEO',\n Zip = 'ZIP'\n}\n\nexport type ProductCategory = {\n __typename?: 'ProductCategory';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n icon?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n parentId?: Maybe<Scalars['String']['output']>;\n slug: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type ProductChartSnapshot = {\n __typename?: 'ProductChartSnapshot';\n category?: Maybe<Scalars['String']['output']>;\n chart: ChartType;\n country?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n productId: Scalars['ID']['output'];\n rank: Scalars['Int']['output'];\n score: Scalars['Float']['output'];\n snapshotAt: Scalars['DateTime']['output'];\n storeId?: Maybe<Scalars['ID']['output']>;\n window: Scalars['String']['output'];\n};\n\n/**\n * A content page (privacy policy, terms of service, etc.) stored in markdown format.\n * Supports global defaults (productId = null) and per-product overrides.\n */\nexport type ProductContentPage = {\n __typename?: 'ProductContentPage';\n content: Scalars['String']['output'];\n contentFormat: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n isPublished: Scalars['Boolean']['output'];\n lastUpdated: Scalars['DateTime']['output'];\n product?: Maybe<PlatformProduct>;\n productId?: Maybe<Scalars['String']['output']>;\n seoDescription?: Maybe<Scalars['String']['output']>;\n seoKeywords?: Maybe<Scalars['String']['output']>;\n seoTitle?: Maybe<Scalars['String']['output']>;\n slug: Scalars['String']['output'];\n sortOrder: Scalars['Int']['output'];\n title: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n version: Scalars['Int']['output'];\n /** Access control: PUBLIC (no auth), AUTHENTICATED (requires login), INTERNAL (admin only) */\n visibility: ContentVisibility;\n};\n\nexport type ProductContentPageList = {\n __typename?: 'ProductContentPageList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<ProductContentPage>;\n total: Scalars['Int']['output'];\n};\n\nexport type ProductDownload = {\n __typename?: 'ProductDownload';\n context?: Maybe<Scalars['JSON']['output']>;\n downloadedAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n productId: Scalars['String']['output'];\n userId: Scalars['String']['output'];\n version?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ProductEntitlement = {\n __typename?: 'ProductEntitlement';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n licenseKey?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n organizationId?: Maybe<Scalars['String']['output']>;\n product: StoreProduct;\n productId: Scalars['String']['output'];\n purchasedBy: Scalars['String']['output'];\n status: EntitlementStatus;\n updatedAt: Scalars['DateTime']['output'];\n workspaceId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type ProductFilterInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n inStock?: InputMaybe<Scalars['Boolean']['input']>;\n maxPrice?: InputMaybe<Scalars['Float']['input']>;\n minPrice?: InputMaybe<Scalars['Float']['input']>;\n nature?: InputMaybe<ProductNature>;\n publisherId?: InputMaybe<Scalars['String']['input']>;\n requiresShipping?: InputMaybe<Scalars['Boolean']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<ProductStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n type?: InputMaybe<ProductType>;\n};\n\nexport enum ProductNature {\n Digital = 'DIGITAL',\n Physical = 'PHYSICAL'\n}\n\n/** Rating distribution for filter refinement (product ratings) */\nexport type ProductRatingDistribution = {\n __typename?: 'ProductRatingDistribution';\n fiveStars: Scalars['Int']['output'];\n fourStars: Scalars['Int']['output'];\n oneStar: Scalars['Int']['output'];\n threeStars: Scalars['Int']['output'];\n twoStars: Scalars['Int']['output'];\n};\n\nexport type ProductRelease = {\n __typename?: 'ProductRelease';\n bundleAssetId?: Maybe<Scalars['ID']['output']>;\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n countries: Array<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n haltedAt?: Maybe<Scalars['DateTime']['output']>;\n haltedReason?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n manifestAssetId?: Maybe<Scalars['ID']['output']>;\n productId: Scalars['ID']['output'];\n releaseNotes?: Maybe<Scalars['JSON']['output']>;\n reviewNotes?: Maybe<Scalars['String']['output']>;\n reviewedAt?: Maybe<Scalars['DateTime']['output']>;\n rolledBackAt?: Maybe<Scalars['DateTime']['output']>;\n rolloutPercentage: Scalars['Int']['output'];\n startedAt?: Maybe<Scalars['DateTime']['output']>;\n status: ReleaseStatus;\n trackId: Scalars['ID']['output'];\n version: Scalars['String']['output'];\n};\n\nexport type ProductReleaseAuditEvent = {\n __typename?: 'ProductReleaseAuditEvent';\n actorId: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n eventType: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n notes?: Maybe<Scalars['String']['output']>;\n releaseId: Scalars['ID']['output'];\n};\n\nexport type ProductReview = {\n __typename?: 'ProductReview';\n comment?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n helpful: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n product: StoreProduct;\n productId: Scalars['String']['output'];\n rating: Scalars['Int']['output'];\n status: ReviewStatus;\n title?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n verifiedPurchase: Scalars['Boolean']['output'];\n};\n\nexport type ProductReviewReply = {\n __typename?: 'ProductReviewReply';\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n productId: Scalars['ID']['output'];\n replierId: Scalars['String']['output'];\n replierType: Scalars['String']['output'];\n replyText: Scalars['String']['output'];\n reviewId: Scalars['ID']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum ProductStatus {\n Archived = 'ARCHIVED',\n Deprecated = 'DEPRECATED',\n Draft = 'DRAFT',\n PendingReview = 'PENDING_REVIEW',\n Published = 'PUBLISHED',\n Rejected = 'REJECTED',\n Unlisted = 'UNLISTED'\n}\n\nexport type ProductTag = {\n __typename?: 'ProductTag';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n name: Scalars['String']['output'];\n slug: Scalars['String']['output'];\n};\n\nexport type ProductTourStatistics = {\n __typename?: 'ProductTourStatistics';\n averageCompletionRate: Scalars['Float']['output'];\n productId: Scalars['String']['output'];\n publishedTours: Scalars['Int']['output'];\n totalCompletions: Scalars['Int']['output'];\n totalSkips: Scalars['Int']['output'];\n totalTours: Scalars['Int']['output'];\n totalViews: Scalars['Int']['output'];\n tourBreakdown: Array<TourStatSummary>;\n};\n\nexport enum ProductType {\n Accessory = 'ACCESSORY',\n Agent = 'AGENT',\n App = 'APP',\n Apparel = 'APPAREL',\n Book = 'BOOK',\n Botapp = 'BOTAPP',\n Collectible = 'COLLECTIBLE',\n Component = 'COMPONENT',\n Console = 'CONSOLE',\n Consumable = 'CONSUMABLE',\n Dashboard = 'DASHBOARD',\n Datasink = 'DATASINK',\n Equipment = 'EQUIPMENT',\n Extension = 'EXTENSION',\n Hardware = 'HARDWARE',\n Integration = 'INTEGRATION',\n Merchandise = 'MERCHANDISE',\n Node = 'NODE',\n Parser = 'PARSER',\n Plugin = 'PLUGIN',\n Template = 'TEMPLATE',\n Theme = 'THEME',\n Vibemodule = 'VIBEMODULE',\n Widget = 'WIDGET',\n Workflow = 'WORKFLOW'\n}\n\n/** Product variant for physical products (e.g., size, color combinations) */\nexport type ProductVariant = {\n __typename?: 'ProductVariant';\n /** Original price for showing discounts */\n compareAtPrice?: Maybe<Scalars['Float']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** Sort order for display */\n displayOrder: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n /** Images specific to this variant */\n imageUrls: Array<Scalars['String']['output']>;\n /** Whether this variant is available for purchase */\n isActive: Scalars['Boolean']['output'];\n /** Low stock alert threshold */\n lowStockThreshold?: Maybe<Scalars['Int']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Display name for the variant (e.g., \"Large / Blue\") */\n name: Scalars['String']['output'];\n /** Variant options as JSON (e.g., {\"size\": \"L\", \"color\": \"Blue\"}) */\n options: Scalars['JSON']['output'];\n /** Override price for this variant (null = use base product price) */\n price?: Maybe<Scalars['Float']['output']>;\n /** Stock Keeping Unit for this variant */\n sku?: Maybe<Scalars['String']['output']>;\n /** Stock quantity for this specific variant */\n stockQuantity: Scalars['Int']['output'];\n storeProduct?: Maybe<StoreProduct>;\n storeProductId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n /** Variant-specific weight */\n weight?: Maybe<Scalars['Float']['output']>;\n /** Weight unit for this variant */\n weightUnit?: Maybe<WeightUnit>;\n};\n\nexport type PromoCode = {\n __typename?: 'PromoCode';\n applicableProductIds: Array<Scalars['ID']['output']>;\n code: Scalars['String']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n maxRedemptions?: Maybe<Scalars['Int']['output']>;\n minOrderAmount?: Maybe<Scalars['Float']['output']>;\n redemptionsCount: Scalars['Int']['output'];\n startsAt?: Maybe<Scalars['DateTime']['output']>;\n storeId?: Maybe<Scalars['ID']['output']>;\n type: PromoCodeType;\n value: Scalars['Float']['output'];\n};\n\nexport enum PromoCodeType {\n AmountOff = 'AMOUNT_OFF',\n FreeTrialExtension = 'FREE_TRIAL_EXTENSION',\n PercentOff = 'PERCENT_OFF'\n}\n\nexport type PromoCodeValidationResult = {\n __typename?: 'PromoCodeValidationResult';\n discount?: Maybe<Scalars['Float']['output']>;\n promoCode?: Maybe<PromoCode>;\n reason?: Maybe<Scalars['String']['output']>;\n valid: Scalars['Boolean']['output'];\n};\n\n/** Input for provisioning a dedicated tenant */\nexport type ProvisionDedicatedTenantInput = {\n customDomain?: InputMaybe<Scalars['String']['input']>;\n endpoint?: InputMaybe<Scalars['String']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n tenantId: Scalars['ID']['input'];\n};\n\nexport type PseudoLocaleOptionsInput = {\n accents?: InputMaybe<Scalars['Boolean']['input']>;\n brackets?: InputMaybe<Scalars['Boolean']['input']>;\n expansion?: InputMaybe<Scalars['Boolean']['input']>;\n expansionFactor?: InputMaybe<Scalars['Float']['input']>;\n mirror?: InputMaybe<Scalars['Boolean']['input']>;\n preserveHtml?: InputMaybe<Scalars['Boolean']['input']>;\n preservePlaceholders?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type PseudoLocaleResult = {\n __typename?: 'PseudoLocaleResult';\n errors: Array<Scalars['String']['output']>;\n keysProcessed: Scalars['Int']['output'];\n locale: Scalars['String']['output'];\n translationsCreated: Scalars['Int']['output'];\n};\n\nexport type PseudoLocaleStats = {\n __typename?: 'PseudoLocaleStats';\n coverage: Scalars['Float']['output'];\n pseudoTranslations: Scalars['Int']['output'];\n totalKeys: Scalars['Int']['output'];\n};\n\nexport type PublicKeyChallengeResult = {\n __typename?: 'PublicKeyChallengeResult';\n challenge: Scalars['String']['output'];\n expiresAt: Scalars['DateTime']['output'];\n};\n\nexport type PublicKeyInfo = {\n __typename?: 'PublicKeyInfo';\n createdAt: Scalars['DateTime']['output'];\n fingerprint: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n keyType: Scalars['String']['output'];\n name?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PublicKeyRegistrationResult = {\n __typename?: 'PublicKeyRegistrationResult';\n fingerprint: Scalars['String']['output'];\n keyId: Scalars['ID']['output'];\n};\n\nexport type Publisher = {\n __typename?: 'Publisher';\n bio?: Maybe<Scalars['String']['output']>;\n contactEmail?: Maybe<Scalars['String']['output']>;\n contactPhone?: Maybe<Scalars['String']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n country?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n email: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n isVerified: Scalars['Boolean']['output'];\n legalName?: Maybe<Scalars['String']['output']>;\n logoUrl?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n productCount: Scalars['Int']['output'];\n products: Array<StoreProduct>;\n rejectionReason?: Maybe<Scalars['String']['output']>;\n supportUrl?: Maybe<Scalars['String']['output']>;\n suspensionReason?: Maybe<Scalars['String']['output']>;\n taxId?: Maybe<Scalars['String']['output']>;\n tier: PublisherTier;\n totalEarnings: Scalars['Float']['output'];\n totalSales: Scalars['Int']['output'];\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n verificationReviewedAt?: Maybe<Scalars['DateTime']['output']>;\n verificationReviewedBy?: Maybe<Scalars['String']['output']>;\n verificationStatus: PublisherVerificationStatus;\n verificationSubmittedAt?: Maybe<Scalars['DateTime']['output']>;\n websiteUrl?: Maybe<Scalars['String']['output']>;\n};\n\nexport type PublisherPayoutMethod = {\n __typename?: 'PublisherPayoutMethod';\n createdAt: Scalars['DateTime']['output'];\n externalAccountId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isDefault: Scalars['Boolean']['output'];\n publisherId: Scalars['ID']['output'];\n status: Scalars['String']['output'];\n type: PayoutMethodType;\n verifiedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport enum PublisherTier {\n Enterprise = 'ENTERPRISE',\n Individual = 'INDIVIDUAL',\n Organization = 'ORGANIZATION'\n}\n\nexport type PublisherVerificationDocumentInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n filesSvcId: Scalars['ID']['input'];\n type: Scalars['String']['input'];\n};\n\nexport enum PublisherVerificationStatus {\n PendingVerification = 'PENDING_VERIFICATION',\n Rejected = 'REJECTED',\n Suspended = 'SUSPENDED',\n Unverified = 'UNVERIFIED',\n Verified = 'VERIFIED'\n}\n\n/** Type of purchase for payment initiation */\nexport enum PurchaseType {\n Addon = 'ADDON',\n Credits = 'CREDITS',\n Order = 'ORDER',\n Plan = 'PLAN'\n}\n\nexport type PushMfaChallengeResult = {\n __typename?: 'PushMFAChallengeResult';\n challengeId: Scalars['ID']['output'];\n expiresAt: Scalars['DateTime']['output'];\n message: Scalars['String']['output'];\n};\n\nexport type PushMfaStatus = {\n __typename?: 'PushMFAStatus';\n approved?: Maybe<Scalars['Boolean']['output']>;\n challengeId: Scalars['ID']['output'];\n status: Scalars['String']['output'];\n};\n\n/** Root query type */\nexport type Query = {\n __typename?: 'Query';\n /**\n * Placeholder field to allow empty Query type extension.\n * Must be @shareable since it exists in multiple subgraphs.\n */\n _empty?: Maybe<Scalars['String']['output']>;\n /**\n * Health check for the service\n * @rbac(public: true, scopeType: \"global\")\n */\n _health: Scalars['String']['output'];\n _newsletterSubscriptionsPlaceholder?: Maybe<Scalars['String']['output']>;\n /** Get action definitions for a resource type */\n actionDefinitions: Array<ActionDefinition>;\n /** Get all active schedules (for background processing) */\n activeSchedules: Array<TourSchedule>;\n /**\n * Get all active sessions for the current user.\n * The `isCurrent` field indicates which session belongs to this request.\n */\n activeSessions: Array<Session>;\n activityLog?: Maybe<ActivityLog>;\n activityLogs: ActivityLogConnection;\n /** Get permission overrides for an actor in a scope */\n actorPermissionOverrides: Array<PermissionOverride>;\n /** Get full RBAC summary for a specific actor */\n actorRbacSummary: ActorRbacSummary;\n /** Get role assignments for an actor in a scope */\n actorRoleAssignments: Array<ActorRoleAssignment>;\n /** List actors with RBAC context in a scope */\n actors: Array<ActorRbacSummary>;\n adminPayoutRequests: PayoutRequestConnection;\n adminPayoutSummary: PayoutAdminSummary;\n agentAvailability: AgentAvailability;\n agentLeaderboard: AgentLeaderboard;\n agentPerformance: AgentPerformance;\n agentProfile?: Maybe<AgentProfile>;\n agentProfileByUserId?: Maybe<AgentProfile>;\n agentProfiles: AgentProfileConnection;\n app?: Maybe<App>;\n /** List API keys for a specific app */\n appApiKeys: Array<ApiKey>;\n /** Get a collection by ID */\n appCollection?: Maybe<AppCollection>;\n /** Get a collection by slug */\n appCollectionBySlug?: Maybe<AppCollection>;\n /** List app collections */\n appCollections: AppCollectionConnection;\n /** Get an installation by ID */\n appInstallation?: Maybe<AppInstallation>;\n /** List installations for an application */\n appInstallations: AppInstallationConnection;\n /** Get a review by ID */\n appReview?: Maybe<AppReview>;\n /** Get review summary for an application */\n appReviewSummary: ReviewSummary;\n /** List reviews for an application */\n appReviews: AppReviewConnection;\n /** List all ACTIVE workspace authorizations for an app. */\n appWorkspaceAuthorizations: Array<AppWorkspaceAuthorization>;\n application?: Maybe<Application>;\n applicationAnalytics: Array<ApplicationAnalytics>;\n applications: ApplicationConnection;\n /** Get approved products with pagination (admin) */\n approvedProducts: PaginatedProducts;\n /**\n * Internal: get all approved waitlist entries for an email.\n * Used by tenant-svc for product access checks.\n */\n approvedWaitlistProducts: Array<NewsletterWaitlist>;\n appsActingAsCurrentUser: Array<App>;\n auditLogs: AuditLogConnection;\n authMethodConfig?: Maybe<AuthMethodConfig>;\n authStrategiesHealth: Array<AuthStrategyHealth>;\n automationSteps: Array<AutomationStep>;\n automationSubscribers: Array<AutomationSubscriber>;\n availableAgents: Array<AgentProfile>;\n availableAuthMethods: Array<AuthMethod>;\n /**\n * Get available preview features the user can opt-in to within a workspace.\n * Returns only flags that are previewable, active, and allowed by workspace admin.\n */\n availableFeaturePreviews: Array<FeatureFlag>;\n bounceStats: BounceStats;\n /** Browse products with filters */\n browseProducts: Array<StoreProduct>;\n /**\n * Browse store products with unified filtering, sorting, and pagination.\n * Search is treated as a filter - all filters combine with AND logic.\n *\n * Example usage:\n * ```graphql\n * query {\n * browseStore(input: {\n * filter: {\n * search: \"ai notification\"\n * type: NODE\n * pricingModel: FREE\n * minRating: 4.0\n * compatibleWith: \"workspaces\"\n * }\n * sortBy: RELEVANCE\n * pagination: { limit: 20, offset: 0 }\n * }) {\n * products { id name rating downloads }\n * totalCount\n * hasMore\n * facets { categories { value count } }\n * }\n * }\n * ```\n */\n browseStore: BrowseStoreResult;\n /** Calculate tax for a purchase (preview without creating payment) Used by checkout to show tax breakdown before payment */\n calculateTax: TaxCalculationResult;\n campaign?: Maybe<NewsletterCampaign>;\n campaignBounces: Array<NewsletterBounce>;\n campaignComplaints: Array<NewsletterComplaint>;\n campaigns: Array<NewsletterCampaign>;\n cannedResponse?: Maybe<CannedResponse>;\n cannedResponseByShortcut?: Maybe<CannedResponse>;\n cannedResponses: CannedResponseConnection;\n /** Get a cart by ID (admin or owner only) */\n cart?: Maybe<Cart>;\n /** Get available shipping options for the current cart */\n cartShippingOptions: Array<ShippingMethod>;\n categories: Array<ProductCategory>;\n category?: Maybe<ProductCategory>;\n categoryBySlug?: Maybe<ProductCategory>;\n /** Check channel health */\n checkChannelHealth: ChannelHealthCheck;\n checkEntitlement?: Maybe<ProductEntitlement>;\n /** Check if an actor has permission to perform an action */\n checkPermission: PermissionCheckResult;\n /** Check multiple permissions at once (max 50) */\n checkPermissions: Array<PermissionCheckResult>;\n /** Check if a plan has an entitlement for a specific store item */\n checkPlanEntitlement?: Maybe<SubscriptionEntitlement>;\n /**\n * Check if the current user can access a specific product.\n * Returns access status and reason.\n */\n checkProductAccess: ProductAccessResult;\n checkQuotaExhausted: QuotaCheckResult;\n /** Check if an actor can see a resource */\n checkVisibility: VisibilityCheckResult;\n circuitBreakerState?: Maybe<CircuitBreakerState>;\n circuitBreakerStates: Array<CircuitBreakerState>;\n circuitBreakerStatus?: Maybe<CircuitBreakerState>;\n compareVariants: VariantComparisonResult;\n complaintStats: ComplaintStats;\n /**\n * Returns compliance-related audit events (consent changes, suppressions, bounces, complaints)\n * for a given platform product, sorted by most recent first.\n */\n complianceAuditLog: Array<ComplianceAuditLogEntry>;\n complianceSettings?: Maybe<NewsletterComplianceSettings>;\n /** Get all contact inquiries with filtering (authenticated, for superadmins) */\n contactInquiries: ContactInquiryList;\n /** Get a single contact inquiry by ID (authenticated, for superadmins) */\n contactInquiry?: Maybe<ContactInquiry>;\n /** Get a single content page by ID */\n contentPage?: Maybe<ProductContentPage>;\n /**\n * Get a content page by slug and optional product ID.\n * If productId is null, returns the global default page.\n */\n contentPageBySlug?: Maybe<ProductContentPage>;\n /** List content pages with optional filtering by product */\n contentPages: ProductContentPageList;\n /** Convert an amount from one currency to another (uses live exchange rates) Default fromCurrency is USD */\n convertCurrency: CurrencyConversion;\n currentUser?: Maybe<User>;\n currentUserApps: Array<App>;\n currentUserDelegations: Array<AppUserDelegation>;\n /** List delegations where current user granted access to apps */\n currentUserGrantedDelegations: Array<AppUserDelegation>;\n customerSatisfactionSurvey?: Maybe<CustomerSatisfactionSurvey>;\n customerSatisfactionSurveys: CustomerSatisfactionSurveyConnection;\n deadLetterQueueEntries: DeadLetterQueueConnection;\n deadLetterQueueEntry?: Maybe<DeadLetterQueue>;\n defaultSLAPolicy?: Maybe<SlaPolicy>;\n /** Get developer earnings dashboard */\n developerEarnings: DeveloperEarnings;\n /** Get organization invitation by ID */\n developerOrgInvitation?: Maybe<DeveloperOrgInvitation>;\n /** Get invitation by token (for accepting) */\n developerOrgInvitationByToken?: Maybe<DeveloperOrgInvitation>;\n /** List pending invitations for an organization */\n developerOrgInvitations: DeveloperOrgInvitationConnection;\n /** Get organization member by ID */\n developerOrgMember?: Maybe<DeveloperOrgMember>;\n /** List members of an organization */\n developerOrgMembers: DeveloperOrgMemberConnection;\n /** Get a payment method by ID */\n developerOrgPaymentMethod?: Maybe<DeveloperOrgPaymentMethod>;\n /** List payment methods for an organization */\n developerOrgPaymentMethods: Array<DeveloperOrgPaymentMethod>;\n /** Get a payout by ID */\n developerOrgPayout?: Maybe<DeveloperOrgPayout>;\n /** List payouts for an organization */\n developerOrgPayouts: DeveloperOrgPayoutConnection;\n /** Get revenue analytics for an organization */\n developerOrgRevenueAnalytics: Array<DeveloperOrgRevenueAnalytics>;\n /** Get revenue dashboard summary */\n developerOrgRevenueSummary: RevenueSummary;\n /** Get a sale by ID */\n developerOrgSale?: Maybe<DeveloperOrgSale>;\n /** List sales for an organization */\n developerOrgSales: DeveloperOrgSaleConnection;\n /** Get a subscription by ID */\n developerOrgSubscription?: Maybe<DeveloperOrgSubscription>;\n /** List subscriptions for an organization */\n developerOrgSubscriptions: DeveloperOrgSubscriptionConnection;\n /** Get a developer organization by ID */\n developerOrganization?: Maybe<DeveloperOrganization>;\n /** Get a developer organization by slug */\n developerOrganizationBySlug?: Maybe<DeveloperOrganization>;\n /** List developer organizations with filters */\n developerOrganizations: DeveloperOrganizationConnection;\n developerProfile?: Maybe<DeveloperProfile>;\n editorialCollections: Array<EditorialCollection>;\n /** Get effective permissions for an actor in a scope */\n effectivePermissions: EffectivePermissions;\n entitlement?: Maybe<ProductEntitlement>;\n /** List devices currently activated against an entitlement. */\n entitlementActivations: Array<LicenseActivation>;\n entitlementSeatSummary: EntitlementSeatSummary;\n /** List seats assigned to an entitlement (enterprise). */\n entitlementSeats: Array<LicenseSeat>;\n /** Read metered usage for an entitlement. */\n entitlementUsage: Array<LicenseUsage>;\n entitlements: Array<ProductEntitlement>;\n estimateNewsletterRecipients: NewsletterRecipientEstimate;\n /** Estimate shipping for an order with a specific method */\n estimateOrderShipping: OrderShippingEstimate;\n /**\n * Evaluate feature flags for the current actor in a workspace context.\n * Used by frontend providers for bulk flag evaluation.\n * Returns OpenFeature-compatible ResolutionDetails for each flag.\n */\n evaluateFeatureFlags: FeatureFlagBulkEvaluation;\n exportSubscribers: Array<ExportSubscriber>;\n exportTranslations: TranslationsExport;\n faq?: Maybe<Faq>;\n faqs: FaqConnection;\n faqsByCategory: Array<Faq>;\n /** Get a feature flag by ID (super admin only) */\n featureFlag?: Maybe<FeatureFlag>;\n /** Get a feature flag by key (super admin only) */\n featureFlagByKey?: Maybe<FeatureFlag>;\n /** List feature flags with optional filtering (super admin only) */\n featureFlags: FeatureFlagList;\n featuredProducts: Array<StoreProduct>;\n /**\n * Get available filter options for a given context.\n * Useful for populating filter dropdowns in UI.\n */\n filterOptions: FilterOptionsResult;\n /** Get active subscriptions for a billing account (optimized for dashboard) Only returns subscriptions with status = 'active' */\n getActiveSubscriptions: Array<BillingSubscription>;\n /** Get the price change history for a specific addon */\n getAddonPriceHistory: Array<AddonPriceHistory>;\n /** Get all addons, optionally limited to a specific count */\n getAllAddOns: Array<Addon>;\n getAllPlans: Array<Plan>;\n getAllQuotas: Array<Quota>;\n getAllQuotasAssignment: PaginatedQuotaAssignments;\n getAllQuotasOfSub: Array<QuotaAssignment>;\n getAllRecurringBillingPlans: Array<RecurringBillingPlan>;\n /** Get available tags and resource types for filtering */\n getAvailableTagsAndResourceTypes: TagsAndResourceTypes;\n /** Get a billing account by ID */\n getBillingAccount?: Maybe<BillingAccount>;\n getBillingAccountCreditTransactions: PaginatedCreditTransactions;\n /** Get usage summary for all quotas of a billing account. Returns both subscription (PRODUCT_SPECIFIC) and pooled quotas. If productId is provided, filters subscription quotas by that product. */\n getBillingAccountQuotasSummary: BillingAccountQuotasSummary;\n /** Get all billing accounts for the current org (from context) */\n getBillingAccountsByOrg: Array<BillingAccount>;\n /** Get billing address for a billing account */\n getBillingAddress?: Maybe<BillingAddress>;\n /** Get billing notifications for the current org (from context) */\n getBillingNotifications: Array<BillingNotification>;\n /** Get a billing order by ID */\n getBillingOrder?: Maybe<BillingOrder>;\n /** Get a channel by ID */\n getChannel?: Maybe<Channel>;\n /** Get recent delivery attempts for a channel */\n getChannelDeliveryAttempts: Array<MessageDeliveryAttempt>;\n /** Get channel statistics */\n getChannelStats: ChannelStats;\n /** Get recent webhook events for a channel */\n getChannelWebhookEvents: Array<WebhookEvent>;\n /** Get all channels with optional filtering */\n getChannels: ChannelList;\n /** Get channels by organization ID */\n getChannelsByOrganization: ChannelList;\n /** Get channels by platform */\n getChannelsByPlatform: ChannelList;\n /**\n * Get channels for failover (sorted by priority, ascending).\n * Returns channels for a platform that are enabled for failover.\n * Used by delivery logic for priority-based fallback.\n */\n getChannelsForFailover: Array<Channel>;\n /** Get a charge by ID */\n getCharge?: Maybe<Charge>;\n /** Get all charges for the current org (from context), optionally filtered by status */\n getCharges: Array<Charge>;\n /**\n * Get a connection by ID\n * NOTE: Credentials are never returned in queries\n */\n getConnection?: Maybe<ChannelConnection>;\n /** Get connection by channel ID */\n getConnectionByChannel?: Maybe<ChannelConnection>;\n /** Get connection status summary */\n getConnectionStatus: ConnectionStatus;\n /** Get all connections for an organization */\n getConnectionsByOrganization: Array<ChannelConnection>;\n getCostOfCredits: CreditCost;\n /** Get a coupon by ID */\n getCoupon?: Maybe<Coupon>;\n /** Get a coupon by code */\n getCouponByCode?: Maybe<Coupon>;\n /** Get coupon usage history */\n getCouponUsageHistory: CouponUsageListResponse;\n /** Get credit notes for the current org (from context) */\n getCreditNotes: Array<CreditNote>;\n getCreditTransactionDetails: CreditTransaction;\n /** Get the default/first billing account for the current org (from context) */\n getDefaultBillingAccount?: Maybe<BillingAccount>;\n /** Get the default billing account for a specific organization by orgId. Returns the billing account where isDefault = true for the given orgId. If no default is set, returns the first active billing account. Used by gateway for automatic billing account resolution in usage tracking. */\n getDefaultBillingAccountByOrgId?: Maybe<BillingAccount>;\n /** Get the default payment method for a billing account */\n getDefaultPaymentMethod?: Maybe<PaymentMethod>;\n /** Get delivery attempt by ID */\n getDeliveryAttempt?: Maybe<MessageDeliveryAttempt>;\n /** Get delivery statistics for a channel */\n getDeliveryStats: DeliveryStats;\n /** Get a discount by ID */\n getDiscount?: Maybe<BillingDiscount>;\n /** Get a discount by code */\n getDiscountByCode?: Maybe<BillingDiscount>;\n /** Get all discounts */\n getDiscounts: Array<BillingDiscount>;\n /** Get a specific entitlement by ID */\n getEntitlement?: Maybe<SubscriptionEntitlement>;\n /** Get external OIDC configuration for a tenant (Google, Microsoft, etc.) */\n getExternalOIDCConfig?: Maybe<ExternalOidcConfiguration>;\n /** Get billing orders with failed callbacks (admin only) Useful for monitoring and manual retry */\n getFailedBillingOrderCallbacks: FailedBillingOrderCallbacksResponse;\n /** Get failed delivery attempts for retry */\n getFailedDeliveryAttempts: Array<MessageDeliveryAttempt>;\n /** Get failed webhook events for retry */\n getFailedWebhookEvents: Array<WebhookEvent>;\n /** Get an invoice by ID */\n getInvoice?: Maybe<Invoice>;\n /** Get an invoice by number */\n getInvoiceByNumber?: Maybe<Invoice>;\n /** Get all invoices for the current org (from context), optionally filtered by status */\n getInvoices: Array<Invoice>;\n /** Get all entitlements for a specific store item */\n getItemEntitlements: Array<SubscriptionEntitlement>;\n /** Get user's referral code (creates one if doesn't exist) */\n getMyReferralCode: ReferralCode;\n /** Get OAuth authorization URL for a platform */\n getOAuthAuthorizationUrl: OAuthAuthorizationUrl;\n /** Get OIDC provider configuration (discovery endpoint) */\n getOIDCConfig?: Maybe<OidcConfig>;\n /** Get paginated subscriptions for a billing account */\n getPaginatedSubscriptions: PaginatedSubscriptions;\n /** Get a payment by ID */\n getPayment?: Maybe<Payment>;\n /** Get payment failures for the current org (from context) */\n getPaymentFailures: Array<PaymentFailure>;\n /** Get payment methods for a billing account */\n getPaymentMethods: Array<PaymentMethod>;\n /** Get payment provider configuration for frontend integration Returns public keys only (safe to expose to client) */\n getPaymentProviderConfig: PaymentProviderConfig;\n /** Get all payments for the current org (from context), optionally filtered by status */\n getPayments: Array<Payment>;\n /** Get pending refund records (shortcut for admin dashboard) */\n getPendingRefunds: PaginatedRefundRecords;\n getPlan: Plan;\n /** Get all entitlements for a specific plan */\n getPlanEntitlements: Array<SubscriptionEntitlement>;\n /** Get the price change history for a specific plan */\n getPlanPriceHistory: Array<PlanPriceHistory>;\n /** Get usage analytics for a specific quota assignment */\n getQuotaAnalytics: QuotaUsageAnalytics;\n /** Enhanced quota assignment query with analytics, pagination and filtering */\n getQuotaAssignmentsWithAnalytics: PaginatedQuotaAssignmentsWithAnalytics;\n getQuotaUsageAndLimit: QuotaUsageAndLimit;\n getQuotaUsageDetails?: Maybe<PaginatedUsages>;\n getRecurringBillingPlan?: Maybe<RecurringBillingPlan>;\n getRecurringBillingPlansByType: Array<RecurringBillingPlan>;\n /** Get referral code by code */\n getReferralCodeByCode?: Maybe<ReferralCode>;\n /** Get a single refund record by ID */\n getRefundRecord?: Maybe<RefundRecord>;\n /** Get refund records with filters and pagination (for admin dashboard). Uses orgId from context by default. Super admins can override with orgIdFilter. */\n getRefundRecords: PaginatedRefundRecords;\n /** Get refund statistics (counts and amounts) */\n getRefundStats: RefundStats;\n /** Get SSO/SAML configuration for a tenant */\n getSSOConfig?: Maybe<SsoConfig>;\n getSelectedAddons: Array<Addon>;\n /** Get a single store order by ID (verifies ownership or admin access) */\n getStoreOrder?: Maybe<StoreOrder>;\n /** Get all orders for a billing account */\n getStoreOrdersByBillingAccount: Array<StoreOrder>;\n /** Get all orders for a user (admin only) */\n getStoreOrdersByUser: Array<StoreOrder>;\n /** Get a subscription by ID */\n getSubscription?: Maybe<BillingSubscription>;\n /** Enhanced subscription overview with better pagination and filtering @param includeExpired - Include past/canceled/expired subscriptions (default: false) @param onlyExpired - Only fetch past subscriptions for lazy loading (default: false) @param searchQuery - Search quotas by name in database (case-insensitive) */\n getSubscriptionUsageOverview?: Maybe<Array<SubscriptionWithQuotas>>;\n getSubscriptionUsages: SubscriptionQuotaUsageWithFilter;\n /** Get tax rates */\n getTaxRates: Array<TaxRate>;\n /** Get transactions for a billing account with basic account info (paginated) */\n getTransactionsByBillingAccount: PaginatedBillingAccountTransactions;\n /** Get failed webhooks that haven't been converted to refund records yet */\n getUnprocessedFailedWebhooks: Array<BillingWebhookLog>;\n /** Get usage summary across all quota assignments */\n getUsageDashboard: UsageDashboard;\n /** Get a user platform connection by ID */\n getUserPlatformConnection?: Maybe<UserPlatformConnection>;\n /** Get a user platform connection by external user ID + channel ID */\n getUserPlatformConnectionByExternalId?: Maybe<UserPlatformConnection>;\n /** Get webhook event by ID */\n getWebhookEvent?: Maybe<WebhookEvent>;\n /** Get webhook statistics for a channel */\n getWebhookStats: WebhookStats;\n /** Health check endpoint */\n health: HealthStatus;\n /**\n * Get grouped products for homepage.\n * Optionally filter by compatible product (e.g., \"bigconsole\", \"fluidgrids\").\n */\n homeGroupedProducts: GroupedStoreProducts;\n homepageSections: Array<HomepageSection>;\n i18nModule?: Maybe<I18nModule>;\n i18nModules: I18nModuleList;\n i18nNamespace?: Maybe<I18nNamespace>;\n i18nNamespaces: I18nNamespaceList;\n i18nProduct?: Maybe<I18nProduct>;\n i18nProductByName?: Maybe<I18nProduct>;\n i18nProducts: I18nProductList;\n importJob?: Maybe<ImportJob>;\n importJobs: ImportJobList;\n /** Initiate HTTP Digest auth challenge */\n initiateDigestChallenge: DigestChallengeResult;\n inventoryAdjustments: Array<InventoryAdjustment>;\n /**\n * Fast check for a single (app, workspace) pair. Used by wspace-auth-svc via\n * the internal global gateway before issuing a workspace token to an app\n * actor. Public (no actor RBAC) because the internal gateway is the only\n * caller and it trusts the x-actor-* headers it injects.\n */\n isAppAuthorizedForWorkspace: Scalars['Boolean']['output'];\n isAppInstalled?: Maybe<StoreAppInstallation>;\n isEmailSuppressed: Scalars['Boolean']['output'];\n jobExecution?: Maybe<JobExecution>;\n jobExecutions: JobExecutionConnection;\n /** Get a single keyboard shortcut by ID */\n keyboardShortcut?: Maybe<KeyboardShortcut>;\n /** Get all keyboard shortcuts with optional filtering */\n keyboardShortcuts: KeyboardShortcutList;\n knowledgeBaseArticle?: Maybe<KnowledgeBaseArticle>;\n knowledgeBaseArticleBySlug?: Maybe<KnowledgeBaseArticle>;\n knowledgeBaseArticles: KnowledgeBaseArticleConnection;\n language?: Maybe<Language>;\n languageByCode?: Maybe<Language>;\n languages: LanguageList;\n /** List coupons with optional filters */\n listCoupons: CouponsListResponse;\n /** List all referral codes (admin) */\n listReferralCodes: ReferralCodesListResponse;\n /** List all platform connections for a channel */\n listUserPlatformConnectionsByChannel: Array<UserPlatformConnection>;\n /** List all platform connections for an organization */\n listUserPlatformConnectionsByOrganization: Array<UserPlatformConnection>;\n /** List all platform connections for a given internal user */\n listUserPlatformConnectionsByUser: Array<UserPlatformConnection>;\n lowStockProducts: Array<LowStockProduct>;\n /**\n * Returns products the current user can access based on their actor type,\n * email domain, and waitlist approval status. Used by app shells for nav.\n */\n myAccessibleProducts: PlatformProductList;\n myActivityLogs: ActivityLogConnection;\n myAgentProfile?: Maybe<AgentProfile>;\n /** List API keys for current user's apps */\n myApiKeys: Array<ApiKey>;\n /** Get my installations */\n myAppInstallations: AppInstallationConnection;\n /** Get my review for an application */\n myAppReview?: Maybe<AppReview>;\n /**\n * Get all workspaces the actor is authorized to access\n * Returns list with basic routing details (name, workspaceId, publicUrl)\n */\n myAuthorizedWorkspaces: WorkspaceRoutingList;\n /** Get the current user's active cart */\n myCart?: Maybe<Cart>;\n /**\n * Get the current user's dashboard widget layout preferences.\n * Returns the dashboard configuration JSON from preferences,\n * or null if no customization has been saved (frontend uses defaults).\n */\n myDashboardPreferences?: Maybe<Scalars['JSON']['output']>;\n /** Get my developer organizations (where I'm a member) */\n myDeveloperOrganizations: Array<DeveloperOrganization>;\n myDeveloperProfile?: Maybe<DeveloperProfile>;\n myDownloads: Array<ProductDownload>;\n myEarningsEntries: EarningsEntryConnection;\n myEarningsSummary: EarningsSummary;\n myEntitlements: Array<ProductEntitlement>;\n /** Get notification counts grouped by app name for authenticated user */\n myNotificationCountsByApp: Scalars['JSON']['output'];\n /** Get notification counts by channel for authenticated user */\n myNotificationCountsByChannel: NotificationChannelCounts;\n /** Get all orders for the authenticated user */\n myOrders: Array<StoreOrder>;\n /** Get invites for the current authenticated user (invitee view) */\n myOrganizationInvites: OrganizationInviteList;\n /** Get organizations where the current user is a member */\n myOrganizations: OrganizationList;\n /** List user's registered passkeys */\n myPasskeys: Array<PasskeyInfo>;\n myPayoutAccounts: Array<PayoutAccount>;\n myPayoutRequests: PayoutRequestConnection;\n /** Get my pending invitations */\n myPendingInvitations: Array<DeveloperOrgInvitation>;\n /**\n * Get current user's permissions in a scope (self-service).\n * Returns full permission details including roles, permission strings, and cache TTL.\n */\n myPermissions: EffectivePermissions;\n /**\n * Get the current user's full preferences record.\n * Creates a default record if none exists.\n */\n myPreferences?: Maybe<UserPreference>;\n /** List user's registered public keys */\n myPublicKeys: Array<PublicKeyInfo>;\n /** Get the current user's publisher profile, or null if none exists yet. */\n myPublisher?: Maybe<Publisher>;\n myReviews: Array<ProductReview>;\n /**\n * Get current user's roles in a scope (lightweight, self-service).\n * Use this for quick role checks without fetching full permissions.\n */\n myRoles: MyRolesResult;\n myStoreAppInstallations: StoreAppInstallationConnection;\n /** Stores the current user is subscribed to (auto-includes public stores). */\n mySubscribedStores: Array<Store>;\n mySupportTickets: SupportTicketConnection;\n mySurveys: CustomerSatisfactionSurveyConnection;\n /** Get tenants associated with the current user */\n myTenants: TenantList;\n /** Get unread notification count for authenticated user */\n myUnreadNotificationCount: Scalars['Int']['output'];\n /**\n * Get the current authenticated user's platform connection for a given channel.\n * Uses the actor's internal user ID from request context — no internalUserId\n * argument needed. Returns null if the user has not connected this channel.\n */\n myUserPlatformConnection?: Maybe<UserPlatformConnection>;\n /**\n * Public: check waitlist status by email + product. Returns null if not on waitlist.\n * Rate-limited at API gateway level.\n */\n myWaitlistStatus?: Maybe<NewsletterWaitlist>;\n /** List user's linked wallets */\n myWallets: Array<WalletInfo>;\n myWishlist: Array<UserWishlist>;\n /**\n * Get workspaces where the current user is a member\n * Self-service query - returns only the authenticated user's workspaces\n */\n myWorkspaces: WorkspaceList;\n newsletter?: Maybe<Newsletter>;\n newsletterAutomation?: Maybe<NewsletterAutomation>;\n newsletterAutomations: Array<NewsletterAutomation>;\n newsletterBySlug?: Maybe<Newsletter>;\n newsletterList?: Maybe<NewsletterList>;\n newsletterLists: Array<NewsletterList>;\n newsletterStats: NewsletterStats;\n newsletterTemplate?: Maybe<NewsletterTemplate>;\n newsletterTemplateVersions: Array<NewsletterTemplateVersion>;\n newsletterTemplates: Array<NewsletterTemplate>;\n newsletterVariant?: Maybe<NewsletterVariant>;\n newsletterVariants: Array<NewsletterVariant>;\n newsletterWebhook?: Maybe<NewsletterWebhook>;\n newsletterWebhooks: Array<NewsletterWebhook>;\n newsletters: Array<Newsletter>;\n /** Get a single notification by ID */\n notification?: Maybe<Notification>;\n /** Get notification events/history for a specific notification */\n notificationEvents: Array<NotificationEvent>;\n /** Get notification statistics */\n notificationStats: NotificationStats;\n /** Get a notification template by slug and optional locale */\n notificationTemplate?: Maybe<NotificationTemplate>;\n /** List notification templates with filtering and pagination */\n notificationTemplates: NotificationTemplateList;\n /** Get a single notification topic by id or slug */\n notificationTopic?: Maybe<NotificationTopic>;\n /** List notification topics with filtering and pagination */\n notificationTopics: NotificationTopicList;\n /** List notifications with filtering and pagination */\n notifications: NotificationList;\n /** Get OIDC Hybrid flow configuration */\n oidcHybridConfig: OidcHybridConfig;\n openInventoryAlerts: Array<InventoryAlert>;\n /** Get order estimate for checkout preview */\n orderEstimate?: Maybe<OrderEstimate>;\n /** Get fulfillment details for an order */\n orderFulfillment?: Maybe<OrderFulfillment>;\n /** Get a single organization by ID */\n organization?: Maybe<Organization>;\n /** Get an organization by slug within a tenant */\n organizationBySlug?: Maybe<Organization>;\n /** Get pending invites for an organization (admin view) */\n organizationInvites: OrganizationInviteList;\n /** Get members of an organization */\n organizationMembers: OrganizationMemberList;\n organizationScheduleQuotas: OrganizationScheduleQuotas;\n /** List all organizations with optional filtering and pagination */\n organizations: OrganizationList;\n payoutRunHistory: Array<PayoutRunLog>;\n /** Publishers awaiting verification review (admin queue). */\n pendingPublishers: Array<Publisher>;\n /** Admin queue: products awaiting review. */\n pendingReviewProducts: PaginatedProducts;\n /** Get pending scheduled notifications that are due for triggering */\n pendingScheduledNotifications: Array<ScheduledNotification>;\n pendingSurveys: CustomerSatisfactionSurveyConnection;\n /** Get permission check audit log */\n permissionAuditLog: Array<PermissionAuditLog>;\n /** Get a single platform product by ID */\n platformProduct?: Maybe<PlatformProduct>;\n /** Get a single platform product by slug */\n platformProductBySlug?: Maybe<PlatformProduct>;\n /** Get aggregate statistics about platform products by status */\n platformProductStats: PlatformProductStats;\n /** Get all platform products with optional filtering */\n platformProducts: PlatformProductList;\n /** Get a configured OPA policy reference by ID */\n policyReference?: Maybe<PolicyReference>;\n /** Get configured OPA policy references */\n policyReferences: Array<PolicyReference>;\n popularArticles: Array<KnowledgeBaseArticle>;\n popularCannedResponses: Array<CannedResponse>;\n popularFAQs: Array<Faq>;\n previewSchedule: SchedulePreview;\n product?: Maybe<StoreProduct>;\n /** List assets linked to a product. */\n productAssets: Array<ProductAsset>;\n productBySlug?: Maybe<StoreProduct>;\n productDownloads: Array<ProductDownload>;\n productInstallations: StoreAppInstallationConnection;\n /** Get orders for a specific store product */\n productOrders: ItemOrdersList;\n productReleases: Array<ProductRelease>;\n productReviews: Array<ProductReview>;\n /** Get shortcuts for a specific product (includes global shortcuts) */\n productShortcuts: Array<KeyboardShortcut>;\n /** Get product-level tour statistics */\n productTourStatistics: ProductTourStatistics;\n products: Array<StoreProduct>;\n pseudoLocaleStats: PseudoLocaleStats;\n /** Get all active addons for a specific product (public, no authentication required). Used by product website pricing pages. Only returns active addons. */\n publicAddons: Array<Addon>;\n /**\n * Get a public content page by slug and optional product ID.\n * Only returns pages with visibility=PUBLIC and isPublished=true.\n */\n publicContentPage?: Maybe<ProductContentPage>;\n /**\n * List public content pages for a product.\n * Only returns pages with visibility=PUBLIC and isPublished=true.\n */\n publicContentPages: ProductContentPageList;\n /** Get all active plans for a specific product (public, no authentication required). Used by product website pricing pages. Only returns active plans with their features. */\n publicPlans: Array<Plan>;\n /**\n * Get a platform product by slug (public, no auth required).\n * Returns only ACTIVE or WAITLIST products.\n * Does NOT expose sensitive fields like recaptchaSecretKey.\n */\n publicProduct?: Maybe<PlatformProduct>;\n /**\n * Get all platform products (public, no auth required).\n * Returns only ACTIVE or WAITLIST products (WAITLIST products are visible for waitlist signup).\n */\n publicProducts: PlatformProductList;\n /**\n * Resolve a public content page for a product with template variable replacement.\n * Only returns pages with visibility=PUBLIC and isPublished=true.\n */\n publicResolvedContentPage?: Maybe<ProductContentPage>;\n publicScheduleTemplates: ScheduleTemplateConnection;\n publishedProducts: Array<StoreProduct>;\n /** Get RBAC analytics for a scope within a date range */\n rbacAnalytics: RbacAnalytics;\n /** Get RBAC configuration change history */\n rbacChangeHistory: Array<RbacChangeLog>;\n /** Get RBAC configuration for a scope */\n rbacConfig: Array<RbacConfig>;\n /** Get a specific RBAC configuration value */\n rbacConfigValue?: Maybe<RbacConfig>;\n recentArticles: Array<KnowledgeBaseArticle>;\n releaseAuditEvents: Array<ProductReleaseAuditEvent>;\n releaseTracks: Array<ReleaseTrack>;\n /**\n * Resolve the effective content page for a product.\n * Returns the product-specific page if it exists, otherwise the global default.\n * Template variables in content (e.g. {{productName}}) are replaced with product data.\n */\n resolvedContentPage?: Maybe<ProductContentPage>;\n /** Get a specific registered resource by ID */\n resource?: Maybe<Resource>;\n /** Get the resource tree (hierarchy) for a scope */\n resourceTree: Array<Resource>;\n /** Get all resource types with their actions */\n resourceTypes: Array<Scalars['String']['output']>;\n /** Get registered resources with custom RBAC configurations. */\n resources: Array<Resource>;\n review?: Maybe<ProductReview>;\n reviewReplies: Array<ProductReviewReply>;\n /** Get a role by ID */\n role?: Maybe<Role>;\n /** Get actors assigned to a role */\n roleMembers: Array<ActorRoleAssignment>;\n /** List roles in a scope */\n roles: Array<Role>;\n satisfactionMetrics: SatisfactionMetrics;\n scheduleTemplate?: Maybe<ScheduleTemplate>;\n scheduleTemplates: ScheduleTemplateConnection;\n scheduleVersionHistory: Array<ScheduleVersion>;\n scheduledJob?: Maybe<ScheduledJob>;\n scheduledJobs: ScheduledJobConnection;\n /** Get a single scheduled notification by ID */\n scheduledNotification?: Maybe<ScheduledNotification>;\n /** List scheduled notifications with filtering and pagination */\n scheduledNotifications: ScheduledNotificationList;\n schedulerMetrics: SchedulerMetrics;\n schedulerPrometheusMetrics: Scalars['String']['output'];\n searchCannedResponses: Array<CannedResponse>;\n /** Search channels by name */\n searchChannels: Array<Channel>;\n searchFAQs: Array<Faq>;\n searchKnowledgeBase: Array<KnowledgeBaseArticle>;\n searchProducts: Array<StoreProduct>;\n /**\n * Get search suggestions for autocomplete.\n * Returns suggestions from product names, tags, categories, and authors.\n * Uses trigram matching for fuzzy search.\n */\n searchSuggestions: Array<SearchSuggestion>;\n searchTicketTemplates: Array<TicketTemplate>;\n searchTickets: Array<SupportTicket>;\n /** Get all shortcut categories */\n shortcutCategories: Array<Scalars['String']['output']>;\n slaPolicies: SlaPolicyConnection;\n slaPolicy?: Maybe<SlaPolicy>;\n slaReport: SlaReport;\n /** Fetch a store by id or slug. */\n store?: Maybe<Store>;\n storeAppInstallation?: Maybe<StoreAppInstallation>;\n /** Get store dashboard stats (admin) */\n storeDashboard: StoreDashboardOutput;\n /**\n * Get detailed product information for the app details page.\n * Includes product data, reviews, related products, publisher info, and version history.\n * Automatically increments view count.\n *\n * Example usage:\n * ```graphql\n * query {\n * storeProductDetails(input: { id: \"product-123\" }) {\n * product { id name description manifest rating downloads }\n * reviews { id rating comment }\n * relatedProducts { id name icon }\n * publisher { id name isVerified }\n * versions { id version status }\n * userReview { id rating }\n * isPurchased\n * }\n * }\n * ```\n */\n storeProductDetails: StoreProductDetailsResult;\n /** List all stores the caller can see. */\n stores: Array<Store>;\n subscriber?: Maybe<NewsletterSubscriber>;\n subscriberByEmail?: Maybe<NewsletterSubscriber>;\n subscriberConsents: Array<NewsletterConsent>;\n subscriberCount: Scalars['Int']['output'];\n subscribers: Array<NewsletterSubscriber>;\n supportAnalytics: SupportAnalytics;\n supportAttachment: SupportAttachmentFile;\n supportMessage?: Maybe<SupportMessage>;\n supportMessages: Array<SupportMessage>;\n supportStats: SupportStats;\n supportTicket?: Maybe<SupportTicket>;\n supportTicketByNumber?: Maybe<SupportTicket>;\n supportTickets: SupportTicketConnection;\n suppressions: Array<NewsletterSuppression>;\n surveyByTicket?: Maybe<CustomerSatisfactionSurvey>;\n tag?: Maybe<ProductTag>;\n tagBySlug?: Maybe<ProductTag>;\n tags: Array<ProductTag>;\n /** Get a single tenant by ID */\n tenant?: Maybe<Tenant>;\n /** Get a tenant by slug */\n tenantBySlug?: Maybe<Tenant>;\n /**\n * Get tenant routing info by ID.\n * Lightweight query for gateway routing decisions.\n * Returns type (SHARED/DEDICATED), endpoint, and status.\n */\n tenantRoutingInfo?: Maybe<TenantRoutingInfo>;\n /** List all tenants with optional filtering and pagination */\n tenants: TenantList;\n /** Test a connection's health */\n testConnection: ConnectionTestResult;\n ticketCategories: TicketCategoryConnection;\n ticketCategory?: Maybe<TicketCategory>;\n ticketCategoryBySlug?: Maybe<TicketCategory>;\n ticketSLAStatus?: Maybe<SlaStatus>;\n ticketTemplate?: Maybe<TicketTemplate>;\n ticketTemplates: TicketTemplateConnection;\n ticketTemplatesByCategory: Array<TicketTemplate>;\n ticketTrends: Array<TicketTrend>;\n tokenInfo?: Maybe<TokenValidationResponse>;\n topCharts: Array<ProductChartSnapshot>;\n /** Get a single tour by ID */\n tour?: Maybe<Tour>;\n /** Get analytics for a tour */\n tourAnalytics: TourAnalyticsAggregation;\n /** Get a tour by its unique slug */\n tourBySlug?: Maybe<Tour>;\n /** Get all tour media */\n tourMedia: Array<TourMedia>;\n /** Get a tour schedule by ID */\n tourSchedule?: Maybe<TourSchedule>;\n /** Get all schedules for a tour */\n tourSchedules: Array<TourSchedule>;\n /** Get step-level analytics for a tour */\n tourStepAnalytics: Array<TourStepAnalytics>;\n /** Get a single tour template */\n tourTemplate?: Maybe<TourTemplate>;\n /** Get tour templates */\n tourTemplates: Array<TourTemplate>;\n /** Get a user's progress for a specific tour */\n tourUserProgress?: Maybe<TourUserProgress>;\n /** Get all user progress for a tour */\n tourUserProgressList: Array<TourUserProgress>;\n /** Get tours with optional filtering and pagination */\n tours: ToursResponse;\n /**\n * Get tours for a specific context (product/module/page)\n * This is used by frontend SDKs to fetch relevant tours\n */\n toursForContext: Array<Tour>;\n translation?: Maybe<Translation>;\n translationAudit: TranslationAuditList;\n translationByKey?: Maybe<Translation>;\n translationCoverage: Array<TranslationCoverage>;\n translationKey?: Maybe<TranslationKey>;\n translationKeyByKey?: Maybe<TranslationKey>;\n translationKeys: TranslationKeyList;\n translationStats: Scalars['JSON']['output'];\n translations: TranslationList;\n /**\n * Get popular/trending search terms.\n * Useful for showing suggestions when search input is empty.\n */\n trendingSearches: Array<Scalars['String']['output']>;\n /** Get a user by ID (admin only) */\n user?: Maybe<User>;\n /** Get total count of users (for analytics) */\n userCount: Scalars['Int']['output'];\n /** Get a user's feature flag preferences in a workspace */\n userFeatureFlagPreferences: Array<UserFeatureFlagPreference>;\n userLanguagePreference?: Maybe<UserLanguagePreference>;\n /** Check if the current user has reviewed a specific product */\n userReviewForProduct?: Maybe<ProductReview>;\n /** Get all of a user's progress across tours */\n userTourProgresses: Array<TourUserProgress>;\n /** List users with filtering and pagination (admin only) */\n users: UserConnection;\n /** Validate a coupon code for a specific order */\n validateCoupon: ValidateCouponResponse;\n /**\n * Validate a license key without modifying state. Used by vibecontrols\n * agents + wspace services to check license validity before plugin load.\n */\n validateLicense: LicenseValidationResult;\n validatePromoCode: PromoCodeValidationResult;\n /** Get visibility rules for a resource */\n visibilityRules: Array<VisibilityRule>;\n waitlist: Array<NewsletterWaitlist>;\n waitlistEntry?: Maybe<NewsletterWaitlist>;\n webhook?: Maybe<Webhook>;\n webhookDeliveries: WebhookDeliveryConnection;\n webhookDelivery?: Maybe<WebhookDelivery>;\n webhookLogs: Array<NewsletterWebhookLog>;\n webhooks: Array<Webhook>;\n /** Get a single workspace by ID */\n workspace?: Maybe<Workspace>;\n /** Get workspace-level analytics summary */\n workspaceAnalyticsSummary: WorkspaceTourAnalyticsSummary;\n /** Get a workspace by slug within a tenant */\n workspaceBySlug?: Maybe<Workspace>;\n /** Get workspace overrides for a specific workspace */\n workspaceFeatureFlagOverrides: Array<WorkspaceFeatureFlagOverride>;\n /** Get members of a workspace */\n workspaceMembers: WorkspaceMemberList;\n /**\n * Get public details of a workspace by ID\n * Returns public info if actor is authorized\n */\n workspacePublicDetails?: Maybe<WorkspacePublicDetails>;\n /**\n * Get workspace routing info by ID\n * Returns workspace name, endpoint (publicUrl), region for routing purposes\n * Requires actor to be a member of the workspace\n */\n workspaceRouting?: Maybe<WorkspaceRouting>;\n /** Get workspace store orders with pagination */\n workspaceStoreOrders: StoreOrdersResult;\n /** List all workspaces with optional filtering and pagination */\n workspaces: WorkspaceList;\n};\n\n\n/** Root query type */\nexport type QueryActionDefinitionsArgs = {\n resourceType: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryActivityLogArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryActivityLogsArgs = {\n filter?: InputMaybe<ActivityFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryActorPermissionOverridesArgs = {\n actorId: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryActorRbacSummaryArgs = {\n actorId: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryActorRoleAssignmentsArgs = {\n actorId: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryActorsArgs = {\n filter?: InputMaybe<ActorFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAdminPayoutRequestsArgs = {\n filter?: InputMaybe<PayoutRequestFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAdminPayoutSummaryArgs = {\n filter?: InputMaybe<PayoutRequestFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryAgentLeaderboardArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n period?: InputMaybe<TimePeriod>;\n};\n\n\n/** Root query type */\nexport type QueryAgentPerformanceArgs = {\n filter: AgentPerformanceFilterInput;\n};\n\n\n/** Root query type */\nexport type QueryAgentProfileArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAgentProfileByUserIdArgs = {\n userId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAgentProfilesArgs = {\n filter?: InputMaybe<AgentProfileFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAppArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppApiKeysArgs = {\n appId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppCollectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppCollectionBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppCollectionsArgs = {\n collectionType?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isFeatured?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAppInstallationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppInstallationsArgs = {\n applicationId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n scope?: InputMaybe<InstallationScope>;\n status?: InputMaybe<InstallationStatus>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAppReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppReviewSummaryArgs = {\n applicationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAppReviewsArgs = {\n applicationId: Scalars['ID']['input'];\n isVerifiedPurchase?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n rating?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<AppReviewStatus>;\n};\n\n\n/** Root query type */\nexport type QueryAppWorkspaceAuthorizationsArgs = {\n appId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryApplicationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryApplicationAnalyticsArgs = {\n applicationId: Scalars['ID']['input'];\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n period: Scalars['String']['input'];\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryApplicationsArgs = {\n developerId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n status?: InputMaybe<AppStatus>;\n visibility?: InputMaybe<AppVisibility>;\n};\n\n\n/** Root query type */\nexport type QueryApprovedProductsArgs = {\n filterItemType?: InputMaybe<Scalars['String']['input']>;\n limit: Scalars['Int']['input'];\n offset: Scalars['Int']['input'];\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryApprovedWaitlistProductsArgs = {\n email: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAuditLogsArgs = {\n actorId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n resource?: InputMaybe<Scalars['String']['input']>;\n resourceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAuthMethodConfigArgs = {\n authType: AuthType;\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAutomationStepsArgs = {\n automationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryAutomationSubscribersArgs = {\n automationId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<AutomationStatus>;\n};\n\n\n/** Root query type */\nexport type QueryAvailableAgentsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n skills?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n\n/** Root query type */\nexport type QueryAvailableAuthMethodsArgs = {\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryAvailableFeaturePreviewsArgs = {\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryBounceStatsArgs = {\n campaignId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryBrowseProductsArgs = {\n input: BrowseProductsInput;\n};\n\n\n/** Root query type */\nexport type QueryBrowseStoreArgs = {\n input: BrowseStoreInput;\n};\n\n\n/** Root query type */\nexport type QueryCalculateTaxArgs = {\n input: CalculateTaxInput;\n};\n\n\n/** Root query type */\nexport type QueryCampaignArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCampaignBouncesArgs = {\n bounceType?: InputMaybe<BounceType>;\n campaignId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryCampaignComplaintsArgs = {\n campaignId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryCampaignsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n newsletterId?: InputMaybe<Scalars['String']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryCannedResponseArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCannedResponseByShortcutArgs = {\n shortcut: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCannedResponsesArgs = {\n filter?: InputMaybe<CannedResponseFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryCartArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCartShippingOptionsArgs = {\n addressId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCategoryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCategoryBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCheckChannelHealthArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCheckEntitlementArgs = {\n productId: Scalars['String']['input'];\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryCheckPermissionArgs = {\n input: PermissionCheckInput;\n};\n\n\n/** Root query type */\nexport type QueryCheckPermissionsArgs = {\n inputs: Array<PermissionCheckInput>;\n};\n\n\n/** Root query type */\nexport type QueryCheckPlanEntitlementArgs = {\n itemId: Scalars['ID']['input'];\n planId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCheckProductAccessArgs = {\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCheckQuotaExhaustedArgs = {\n billingAccountId: Scalars['ID']['input'];\n productId?: InputMaybe<Scalars['String']['input']>;\n quotaName: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCheckVisibilityArgs = {\n input: VisibilityCheckInput;\n};\n\n\n/** Root query type */\nexport type QueryCircuitBreakerStateArgs = {\n scope: Scalars['String']['input'];\n scopeValue: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCompareVariantsArgs = {\n newsletterId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryComplaintStatsArgs = {\n campaignId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryComplianceAuditLogArgs = {\n days?: InputMaybe<Scalars['Int']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n platformProductId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryComplianceSettingsArgs = {\n platformProductId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryContactInquiriesArgs = {\n filter?: InputMaybe<ContactInquiryFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryContactInquiryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryContentPageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryContentPageBySlugArgs = {\n productId?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryContentPagesArgs = {\n filter?: InputMaybe<ContentPageFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryConvertCurrencyArgs = {\n amount: Scalars['Float']['input'];\n fromCurrency?: InputMaybe<Scalars['String']['input']>;\n toCurrency: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCustomerSatisfactionSurveyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryCustomerSatisfactionSurveysArgs = {\n filter?: InputMaybe<CustomerSatisfactionSurveyFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryDeadLetterQueueEntriesArgs = {\n filter?: InputMaybe<JobFilterInput>;\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryDeadLetterQueueEntryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDefaultSlaPolicyArgs = {\n priority: SupportTicketPriority;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperEarningsArgs = {\n input?: InputMaybe<DeveloperEarningsInput>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgInvitationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgInvitationByTokenArgs = {\n token: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgInvitationsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['ID']['input'];\n status?: InputMaybe<InvitationStatus>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgMemberArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgMembersArgs = {\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['ID']['input'];\n role?: InputMaybe<DeveloperOrgRole>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgPaymentMethodArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgPaymentMethodsArgs = {\n organizationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgPayoutArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgPayoutsArgs = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['ID']['input'];\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<PayoutStatus>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgRevenueAnalyticsArgs = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n organizationId: Scalars['ID']['input'];\n period: Scalars['String']['input'];\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgRevenueSummaryArgs = {\n organizationId: Scalars['ID']['input'];\n period: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgSaleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgSalesArgs = {\n applicationId?: InputMaybe<Scalars['ID']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n isPaidOut?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['ID']['input'];\n pricingModel?: InputMaybe<DevPortalPricingModel>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<SaleStatus>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgSubscriptionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrgSubscriptionsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['ID']['input'];\n status?: InputMaybe<DevPortalSubscriptionStatus>;\n subscriptionType?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrganizationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrganizationBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryDeveloperOrganizationsArgs = {\n isCertified?: InputMaybe<Scalars['Boolean']['input']>;\n isVerified?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n partnerTier?: InputMaybe<PartnerTier>;\n tier?: InputMaybe<DeveloperOrgTier>;\n};\n\n\n/** Root query type */\nexport type QueryDeveloperProfileArgs = {\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEditorialCollectionsArgs = {\n storeId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryEffectivePermissionsArgs = {\n actorId: Scalars['String']['input'];\n actorType: ActorType;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEntitlementActivationsArgs = {\n entitlementId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEntitlementSeatSummaryArgs = {\n entitlementId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEntitlementSeatsArgs = {\n entitlementId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryEntitlementUsageArgs = {\n entitlementId: Scalars['ID']['input'];\n metricType?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryEntitlementsArgs = {\n status?: InputMaybe<EntitlementStatus>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryEstimateNewsletterRecipientsArgs = {\n id: Scalars['ID']['input'];\n plans?: InputMaybe<Array<Scalars['String']['input']>>;\n products?: InputMaybe<Array<Scalars['String']['input']>>;\n recipientType: NewsletterRecipientType;\n segmentConfig?: InputMaybe<Scalars['JSON']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryEstimateOrderShippingArgs = {\n input: OrderShippingEstimateInput;\n};\n\n\n/** Root query type */\nexport type QueryEvaluateFeatureFlagsArgs = {\n input: EvaluateFeatureFlagsInput;\n};\n\n\n/** Root query type */\nexport type QueryExportSubscribersArgs = {\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n subscribed?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryExportTranslationsArgs = {\n format: ImportJobFormat;\n languageCode?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryFaqArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryFaqsArgs = {\n filter?: InputMaybe<FaqFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryFaqsByCategoryArgs = {\n category: FaqCategory;\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryFeatureFlagArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryFeatureFlagByKeyArgs = {\n key: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryFeatureFlagsArgs = {\n filter?: InputMaybe<FeatureFlagFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryFeaturedProductsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryFilterOptionsArgs = {\n type?: InputMaybe<ProductType>;\n withProducts?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetActiveSubscriptionsArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetAddonPriceHistoryArgs = {\n addonId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetAllAddOnsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetAllQuotasAssignmentArgs = {\n amountMax?: InputMaybe<Scalars['Float']['input']>;\n amountMin?: InputMaybe<Scalars['Float']['input']>;\n billingAccountId: Scalars['ID']['input'];\n fromDate?: InputMaybe<Scalars['DateTime']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n sortBy?: InputMaybe<Scalars['String']['input']>;\n sortOrder?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<Array<QuotaStatus>>;\n toDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetAllQuotasOfSubArgs = {\n subscriptionId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetAllRecurringBillingPlansArgs = {\n entityType?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetAvailableTagsAndResourceTypesArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetBillingAccountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetBillingAccountCreditTransactionsArgs = {\n billingAccountID: Scalars['ID']['input'];\n days: Scalars['Int']['input'];\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetBillingAccountQuotasSummaryArgs = {\n billingAccountId: Scalars['ID']['input'];\n productId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetBillingAddressArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetBillingOrderArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetChannelArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetChannelDeliveryAttemptsArgs = {\n channelId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetChannelStatsArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetChannelWebhookEventsArgs = {\n channelId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetChannelsArgs = {\n filter?: InputMaybe<ChannelFilterInput>;\n pagination?: InputMaybe<ChannelPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryGetChannelsByOrganizationArgs = {\n organizationId: Scalars['ID']['input'];\n pagination?: InputMaybe<ChannelPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryGetChannelsByPlatformArgs = {\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n pagination?: InputMaybe<ChannelPaginationInput>;\n platform: ChannelPlatform;\n};\n\n\n/** Root query type */\nexport type QueryGetChannelsForFailoverArgs = {\n organizationId: Scalars['ID']['input'];\n platform: ChannelPlatform;\n};\n\n\n/** Root query type */\nexport type QueryGetChargeArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetChargesArgs = {\n status?: InputMaybe<ChargeStatus>;\n};\n\n\n/** Root query type */\nexport type QueryGetConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetConnectionByChannelArgs = {\n channelId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetConnectionStatusArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetConnectionsByOrganizationArgs = {\n organizationId: Scalars['ID']['input'];\n pagination?: InputMaybe<ChannelPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryGetCostOfCreditsArgs = {\n creditAmount: Scalars['Float']['input'];\n currency: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetCouponArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetCouponByCodeArgs = {\n code: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetCouponUsageHistoryArgs = {\n couponId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetCreditTransactionDetailsArgs = {\n creditTransactionID: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetDefaultBillingAccountByOrgIdArgs = {\n orgId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetDefaultPaymentMethodArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetDeliveryAttemptArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetDeliveryStatsArgs = {\n channelId: Scalars['ID']['input'];\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetDiscountArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetDiscountByCodeArgs = {\n code: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetEntitlementArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetExternalOidcConfigArgs = {\n identifier: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetFailedBillingOrderCallbacksArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetFailedDeliveryAttemptsArgs = {\n channelId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetFailedWebhookEventsArgs = {\n channelId?: InputMaybe<Scalars['ID']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetInvoiceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetInvoiceByNumberArgs = {\n invoiceNumber: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetInvoicesArgs = {\n status?: InputMaybe<InvoiceStatus>;\n};\n\n\n/** Root query type */\nexport type QueryGetItemEntitlementsArgs = {\n itemId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetOAuthAuthorizationUrlArgs = {\n platform: ChannelPlatform;\n redirectUri: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetPaginatedSubscriptionsArgs = {\n billingAccountId: Scalars['ID']['input'];\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetPaymentArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetPaymentMethodsArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetPaymentsArgs = {\n status?: InputMaybe<PaymentStatus>;\n};\n\n\n/** Root query type */\nexport type QueryGetPendingRefundsArgs = {\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetPlanArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetPlanEntitlementsArgs = {\n planId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetPlanPriceHistoryArgs = {\n planId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetQuotaAnalyticsArgs = {\n period?: InputMaybe<AnalyticsPeriod>;\n quotaAssignmentId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetQuotaAssignmentsWithAnalyticsArgs = {\n amountMax?: InputMaybe<Scalars['Float']['input']>;\n amountMin?: InputMaybe<Scalars['Float']['input']>;\n billingAccountId: Scalars['ID']['input'];\n fromDate?: InputMaybe<Scalars['DateTime']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n sortBy?: InputMaybe<Scalars['String']['input']>;\n sortOrder?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<Array<QuotaStatus>>;\n toDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetQuotaUsageAndLimitArgs = {\n billingAccountId: Scalars['ID']['input'];\n productId?: InputMaybe<Scalars['String']['input']>;\n quotaName: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetQuotaUsageDetailsArgs = {\n amountMax?: InputMaybe<Scalars['Float']['input']>;\n amountMin?: InputMaybe<Scalars['Float']['input']>;\n entity?: InputMaybe<Scalars['String']['input']>;\n fromDate?: InputMaybe<Scalars['DateTime']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n quotaAssignmentId: Scalars['ID']['input'];\n resourceType?: InputMaybe<Scalars['String']['input']>;\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n sortBy?: InputMaybe<Scalars['String']['input']>;\n sortOrder?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n toDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetRecurringBillingPlanArgs = {\n currency: Scalars['String']['input'];\n entityId: Scalars['String']['input'];\n entityType: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetRecurringBillingPlansByTypeArgs = {\n entityType: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetReferralCodeByCodeArgs = {\n code: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetRefundRecordArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetRefundRecordsArgs = {\n billingAccountId?: InputMaybe<Scalars['String']['input']>;\n fromDate?: InputMaybe<Scalars['DateTime']['input']>;\n orgIdFilter?: InputMaybe<Scalars['String']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n provider?: InputMaybe<Scalars['String']['input']>;\n source?: InputMaybe<RefundSource>;\n status?: InputMaybe<RefundRecordStatus>;\n toDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetSsoConfigArgs = {\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetSelectedAddonsArgs = {\n addonIDs: Array<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetStoreOrderArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetStoreOrdersByBillingAccountArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetStoreOrdersByUserArgs = {\n userId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetSubscriptionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetSubscriptionUsageOverviewArgs = {\n billingAccountId: Scalars['ID']['input'];\n includeExpired?: InputMaybe<Scalars['Boolean']['input']>;\n onlyExpired?: InputMaybe<Scalars['Boolean']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetSubscriptionUsagesArgs = {\n billingAccountId: Scalars['ID']['input'];\n entity?: InputMaybe<Scalars['String']['input']>;\n fromDate?: InputMaybe<Scalars['DateTime']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n pageSize?: InputMaybe<Scalars['Int']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n searchQuery?: InputMaybe<Scalars['String']['input']>;\n toDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetTaxRatesArgs = {\n active?: InputMaybe<Scalars['Boolean']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetTransactionsByBillingAccountArgs = {\n billingAccountId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryGetUsageDashboardArgs = {\n billingAccountId: Scalars['ID']['input'];\n period?: InputMaybe<AnalyticsPeriod>;\n};\n\n\n/** Root query type */\nexport type QueryGetUserPlatformConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetUserPlatformConnectionByExternalIdArgs = {\n channelId: Scalars['ID']['input'];\n externalUserId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetWebhookEventArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryGetWebhookStatsArgs = {\n channelId: Scalars['ID']['input'];\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryHomeGroupedProductsArgs = {\n compatibleWith?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryHomepageSectionsArgs = {\n storeId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryI18nModuleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryI18nModulesArgs = {\n filter?: InputMaybe<I18nModuleFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryI18nNamespaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryI18nNamespacesArgs = {\n filter?: InputMaybe<I18nNamespaceFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryI18nProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryI18nProductByNameArgs = {\n name: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryI18nProductsArgs = {\n filter?: InputMaybe<I18nProductFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryImportJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryImportJobsArgs = {\n filter?: InputMaybe<ImportJobFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryInitiateDigestChallengeArgs = {\n realm?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryInventoryAdjustmentsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryIsAppAuthorizedForWorkspaceArgs = {\n appId: Scalars['ID']['input'];\n workspaceId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryIsAppInstalledArgs = {\n productId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryIsEmailSuppressedArgs = {\n email: Scalars['String']['input'];\n platformProductId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryJobExecutionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryJobExecutionsArgs = {\n jobId: Scalars['ID']['input'];\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryKeyboardShortcutArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryKeyboardShortcutsArgs = {\n filter?: InputMaybe<KeyboardShortcutFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryKnowledgeBaseArticleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryKnowledgeBaseArticleBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryKnowledgeBaseArticlesArgs = {\n filter?: InputMaybe<KnowledgeBaseArticleFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryLanguageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryLanguageByCodeArgs = {\n code: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryLanguagesArgs = {\n filter?: InputMaybe<LanguageFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryListCouponsArgs = {\n filter?: InputMaybe<CouponFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryListReferralCodesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryListUserPlatformConnectionsByChannelArgs = {\n channelId: Scalars['ID']['input'];\n filter?: InputMaybe<UserPlatformConnectionFilterInput>;\n pagination?: InputMaybe<ChannelPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryListUserPlatformConnectionsByOrganizationArgs = {\n filter?: InputMaybe<UserPlatformConnectionFilterInput>;\n organizationId: Scalars['ID']['input'];\n pagination?: InputMaybe<ChannelPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryListUserPlatformConnectionsByUserArgs = {\n filter?: InputMaybe<UserPlatformConnectionFilterInput>;\n internalUserId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryLowStockProductsArgs = {\n storeId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyAccessibleProductsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyActivityLogsArgs = {\n filter?: InputMaybe<ActivityFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyAppInstallationsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<InstallationStatus>;\n};\n\n\n/** Root query type */\nexport type QueryMyAppReviewArgs = {\n applicationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyAuthorizedWorkspacesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyEarningsEntriesArgs = {\n billingAccountId: Scalars['ID']['input'];\n filter?: InputMaybe<EarningsEntryFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyEarningsSummaryArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyOrganizationInvitesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n status?: InputMaybe<InviteStatus>;\n};\n\n\n/** Root query type */\nexport type QueryMyOrganizationsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyPayoutAccountsArgs = {\n billingAccountId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyPayoutRequestsArgs = {\n billingAccountId: Scalars['ID']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyPermissionsArgs = {\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyRolesArgs = {\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyStoreAppInstallationsArgs = {\n filter?: InputMaybe<InstallationFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMySupportTicketsArgs = {\n filter?: InputMaybe<SupportTicketFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMySurveysArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyTenantsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryMyUnreadNotificationCountArgs = {\n filter?: InputMaybe<NotificationFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryMyUserPlatformConnectionArgs = {\n channelId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyWaitlistStatusArgs = {\n email: Scalars['String']['input'];\n platformProductId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryMyWorkspacesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNewsletterArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterAutomationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterAutomationsArgs = {\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNewsletterBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterListArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterListsArgs = {\n filter?: InputMaybe<NewsletterListFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNewsletterTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterTemplateVersionsArgs = {\n templateId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterTemplatesArgs = {\n filter?: InputMaybe<NewsletterTemplateFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNewsletterVariantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterVariantsArgs = {\n newsletterId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterWebhookArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNewsletterWebhooksArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNewslettersArgs = {\n filter?: InputMaybe<NewsletterFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNotificationEventsArgs = {\n notificationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNotificationStatsArgs = {\n filter?: InputMaybe<NotificationFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryNotificationTemplateArgs = {\n locale?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryNotificationTemplatesArgs = {\n filter?: InputMaybe<TemplateFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNotificationTopicArgs = {\n id?: InputMaybe<Scalars['ID']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNotificationTopicsArgs = {\n filter?: InputMaybe<NotificationTopicFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryNotificationsArgs = {\n filter?: InputMaybe<NotificationFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryOpenInventoryAlertsArgs = {\n storeId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryOrderEstimateArgs = {\n input: OrderEstimateInput;\n};\n\n\n/** Root query type */\nexport type QueryOrderFulfillmentArgs = {\n orderId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryOrganizationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryOrganizationBySlugArgs = {\n slug: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryOrganizationInvitesArgs = {\n filter?: InputMaybe<OrganizationInviteFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryOrganizationMembersArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n organizationId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryOrganizationsArgs = {\n filter?: InputMaybe<OrganizationFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPendingPublishersArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPendingReviewProductsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n storeId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPendingScheduledNotificationsArgs = {\n before?: InputMaybe<Scalars['DateTime']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPendingSurveysArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPermissionAuditLogArgs = {\n filter?: InputMaybe<AuditLogFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPlatformProductArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPlatformProductBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPlatformProductsArgs = {\n filter?: InputMaybe<PlatformProductFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPolicyReferenceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPolicyReferencesArgs = {\n filter?: InputMaybe<PolicyReferenceFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryPopularArticlesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPopularCannedResponsesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPopularFaQsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPreviewScheduleArgs = {\n count?: InputMaybe<Scalars['Int']['input']>;\n cronExpression?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n interval?: InputMaybe<Scalars['Int']['input']>;\n intervalUnit?: InputMaybe<Scalars['String']['input']>;\n rrule?: InputMaybe<Scalars['String']['input']>;\n scheduleType: ScheduleType;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryProductArgs = {\n billingAccountId?: InputMaybe<Scalars['ID']['input']>;\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductAssetsArgs = {\n fileType?: InputMaybe<ProductAssetType>;\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductDownloadsArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductInstallationsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n productId: Scalars['String']['input'];\n status?: InputMaybe<StoreInstallationStatus>;\n};\n\n\n/** Root query type */\nexport type QueryProductOrdersArgs = {\n input: ItemOrdersInput;\n};\n\n\n/** Root query type */\nexport type QueryProductReleasesArgs = {\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductReviewsArgs = {\n productId: Scalars['String']['input'];\n status?: InputMaybe<ReviewStatus>;\n};\n\n\n/** Root query type */\nexport type QueryProductShortcutsArgs = {\n category?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductTourStatisticsArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryProductsArgs = {\n filter?: InputMaybe<ProductFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPseudoLocaleStatsArgs = {\n productCode: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicAddonsArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicContentPageArgs = {\n productId?: InputMaybe<Scalars['String']['input']>;\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicContentPagesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicPlansArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicProductArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicProductsArgs = {\n filter?: InputMaybe<PlatformProductFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryPublicResolvedContentPageArgs = {\n productId: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryPublicScheduleTemplatesArgs = {\n filter?: InputMaybe<ScheduleTemplateFilterInput>;\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryPublishedProductsArgs = {\n category?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<ProductType>;\n};\n\n\n/** Root query type */\nexport type QueryRbacAnalyticsArgs = {\n dateRange?: InputMaybe<AnalyticsDateRangeInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRbacChangeHistoryArgs = {\n filter?: InputMaybe<ChangeLogFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRbacConfigArgs = {\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRbacConfigValueArgs = {\n key: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRecentArticlesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryReleaseAuditEventsArgs = {\n releaseId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryReleaseTracksArgs = {\n productId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryResolvedContentPageArgs = {\n productId: Scalars['String']['input'];\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryResourceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryResourceTreeArgs = {\n resourceType?: InputMaybe<Scalars['String']['input']>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryResourcesArgs = {\n filter?: InputMaybe<ResourceFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryReviewArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryReviewRepliesArgs = {\n reviewId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRoleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRoleMembersArgs = {\n pagination?: InputMaybe<PaginationInput>;\n roleId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryRolesArgs = {\n filter?: InputMaybe<RoleFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySatisfactionMetricsArgs = {\n filter?: InputMaybe<SatisfactionMetricsFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryScheduleTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryScheduleTemplatesArgs = {\n filter?: InputMaybe<ScheduleTemplateFilterInput>;\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryScheduleVersionHistoryArgs = {\n scheduleId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryScheduledJobArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryScheduledJobsArgs = {\n filter?: InputMaybe<JobFilterInput>;\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryScheduledNotificationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryScheduledNotificationsArgs = {\n filter?: InputMaybe<ScheduledNotificationFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySearchCannedResponsesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchChannelsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchFaQsArgs = {\n category?: InputMaybe<FaqCategory>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchKnowledgeBaseArgs = {\n categoryId?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchProductsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchSuggestionsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n types?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n\n/** Root query type */\nexport type QuerySearchTicketTemplatesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySearchTicketsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n query: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySlaPoliciesArgs = {\n filter?: InputMaybe<SlaPolicyFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySlaPolicyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySlaReportArgs = {\n filter?: InputMaybe<SlaReportFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryStoreArgs = {\n id?: InputMaybe<Scalars['ID']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryStoreAppInstallationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryStoreProductDetailsArgs = {\n input: StoreProductDetailsInput;\n};\n\n\n/** Root query type */\nexport type QueryStoresArgs = {\n search?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<StoreType>;\n};\n\n\n/** Root query type */\nexport type QuerySubscriberArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySubscriberByEmailArgs = {\n email: Scalars['String']['input'];\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySubscriberConsentsArgs = {\n subscriberId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySubscriberCountArgs = {\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n subscribed?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySubscribersArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n subscribed?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySupportAnalyticsArgs = {\n filter?: InputMaybe<AnalyticsFilterInput>;\n};\n\n\n/** Root query type */\nexport type QuerySupportAttachmentArgs = {\n fileId: Scalars['ID']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySupportMessageArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySupportMessagesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n ticketId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySupportStatsArgs = {\n filter?: InputMaybe<SupportTicketFilterInput>;\n};\n\n\n/** Root query type */\nexport type QuerySupportTicketArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySupportTicketByNumberArgs = {\n ticketNumber: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QuerySupportTicketsArgs = {\n filter?: InputMaybe<SupportTicketFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySuppressionsArgs = {\n filter?: InputMaybe<SuppressionFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QuerySurveyByTicketArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTagArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTagBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTenantArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTenantBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTenantRoutingInfoArgs = {\n tenantId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTenantsArgs = {\n filter?: InputMaybe<TenantFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTestConnectionArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTicketCategoriesArgs = {\n filter?: InputMaybe<TicketCategoryFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTicketCategoryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTicketCategoryBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTicketSlaStatusArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTicketTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTicketTemplatesArgs = {\n filter?: InputMaybe<TicketTemplateFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTicketTemplatesByCategoryArgs = {\n category: SupportTicketCategory;\n limit?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTicketTrendsArgs = {\n filter?: InputMaybe<AnalyticsFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryTopChartsArgs = {\n input: TopChartsInput;\n};\n\n\n/** Root query type */\nexport type QueryTourArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourAnalyticsArgs = {\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourBySlugArgs = {\n slug: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourScheduleArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourSchedulesArgs = {\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourStepAnalyticsArgs = {\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourTemplateArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourTemplatesArgs = {\n category?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTourUserProgressArgs = {\n tourId: Scalars['ID']['input'];\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTourUserProgressListArgs = {\n tourId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryToursArgs = {\n filters?: InputMaybe<TourFilters>;\n pagination?: InputMaybe<TourPagination>;\n};\n\n\n/** Root query type */\nexport type QueryToursForContextArgs = {\n context: TourContextInput;\n};\n\n\n/** Root query type */\nexport type QueryTranslationArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationAuditArgs = {\n keyId: Scalars['String']['input'];\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTranslationByKeyArgs = {\n keyId: Scalars['String']['input'];\n languageCode: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationCoverageArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationKeyArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationKeyByKeyArgs = {\n key: Scalars['String']['input'];\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationKeysArgs = {\n filter?: InputMaybe<TranslationKeyFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTranslationStatsArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryTranslationsArgs = {\n filter?: InputMaybe<TranslationFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryTrendingSearchesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n type?: InputMaybe<ProductType>;\n};\n\n\n/** Root query type */\nexport type QueryUserArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryUserFeatureFlagPreferencesArgs = {\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryUserLanguagePreferenceArgs = {\n userId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryUserReviewForProductArgs = {\n productId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryUserTourProgressesArgs = {\n userId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryUsersArgs = {\n filter?: InputMaybe<UserFilterInput>;\n pagination?: InputMaybe<PaginationInput>;\n};\n\n\n/** Root query type */\nexport type QueryValidateCouponArgs = {\n input: ValidateCouponInput;\n};\n\n\n/** Root query type */\nexport type QueryValidateLicenseArgs = {\n licenseKey: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryValidatePromoCodeArgs = {\n code: Scalars['String']['input'];\n orderAmount: Scalars['Float']['input'];\n productIds: Array<Scalars['ID']['input']>;\n};\n\n\n/** Root query type */\nexport type QueryVisibilityRulesArgs = {\n resourceIdentifier: Scalars['String']['input'];\n resourceType: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWaitlistArgs = {\n filter?: InputMaybe<WaitlistFilterInput>;\n};\n\n\n/** Root query type */\nexport type QueryWaitlistEntryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWebhookArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWebhookDeliveriesArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n webhookId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWebhookDeliveryArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWebhookLogsArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n webhookId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWebhooksArgs = {\n applicationId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceArgs = {\n id: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceBySlugArgs = {\n slug: Scalars['String']['input'];\n tenantId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceFeatureFlagOverridesArgs = {\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceMembersArgs = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n workspaceId: Scalars['String']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspacePublicDetailsArgs = {\n workspaceId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceRoutingArgs = {\n workspaceId: Scalars['ID']['input'];\n};\n\n\n/** Root query type */\nexport type QueryWorkspaceStoreOrdersArgs = {\n billingAccountId: Scalars['ID']['input'];\n limit: Scalars['Int']['input'];\n page: Scalars['Int']['input'];\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<OrderStatus>;\n};\n\n\n/** Root query type */\nexport type QueryWorkspacesArgs = {\n filter?: InputMaybe<WorkspaceFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type Quota = {\n __typename?: 'Quota';\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp when the quota was created. */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** The unique identifier for the Quota, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** A Quota is active or not */\n isActive?: Maybe<Scalars['Boolean']['output']>;\n /** A JSON object defining the limits associated with the quota, such as message limits, bot creation limits, etc. */\n limits?: Maybe<Scalars['JSON']['output']>;\n /** The name of the quota, used for identification purposes. */\n name?: Maybe<Scalars['String']['output']>;\n /** Defines whether this quota template is pooled (shared across products) or product-specific. */\n quotaType?: Maybe<QuotaType>;\n /** When does usage reset for assignments of this quota? NEVER = static limit (seats, agents, storage cap) DAILY = resets each day at midnight UTC (API requests/day, AI sessions/day) MONTHLY = resets at the start of each billing cycle */\n resetPeriod?: Maybe<QuotaResetPeriod>;\n /** A Quota is reusable or not (e.g., bot,seats). */\n reusable?: Maybe<Scalars['Boolean']['output']>;\n /** The subscriptions that include this quota. SubscriptionFeatures represent features and quotas associated with subscriptions. */\n subscriptions?: Maybe<Array<Maybe<SubscriptionFeatures>>>;\n /** The timestamp when the quota was last updated. */\n updatedAt?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport type QuotaAssignment = {\n __typename?: 'QuotaAssignment';\n /** The billing account associated with this quota assignment (for POOLED quotas). */\n billingAccount?: Maybe<BillingAccount>;\n /** The unique identifier for the billing account associated with this quota assignment (for POOLED quotas). */\n billingAccountId?: Maybe<Scalars['ID']['output']>;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp when the quota assignment was created. */\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n /** Current usage sum for this quota assignment. */\n currentUsageSum?: Maybe<Scalars['Float']['output']>;\n /** The end time when the quota assignment expires. */\n endtime?: Maybe<Scalars['DateTime']['output']>;\n /** The unique identifier for the QuotaAssignment, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** When limits were last restored to their original value by the reset job. Null means this assignment has never been reset in-place. The daily QuotaResetWorkflow uses this to find assignments that need resetting. */\n lastResetAt?: Maybe<Scalars['DateTime']['output']>;\n /** A JSON object defining the limits associated with the assigned quota (e.g., data caps, usage limits). */\n limits?: Maybe<Scalars['JSON']['output']>;\n /** The name of the quota assigned. */\n name?: Maybe<Scalars['String']['output']>;\n /** The type of quota - POOLED (billing account level) or PRODUCT_SPECIFIC (subscription level). */\n quotaType?: Maybe<QuotaType>;\n /** Copied from parent Quota.resetPeriod at creation. Tells the reset job how often limits.value should be restored. DAILY = restore every midnight UTC. */\n resetPeriod?: Maybe<QuotaResetPeriod>;\n /** A Quota is reusable or not (e.g., bot,seats). */\n reusable?: Maybe<Scalars['Boolean']['output']>;\n /** The subscription associated with this quota assignment (for PRODUCT_SPECIFIC quotas). */\n subscription?: Maybe<BillingSubscription>;\n /** The unique identifier for the subscription associated with this quota assignment (for PRODUCT_SPECIFIC quotas). */\n subscriptionId?: Maybe<Scalars['ID']['output']>;\n /** Total usage count for this quota assignment. */\n totalUsageCount?: Maybe<Scalars['Int']['output']>;\n /** Usage analytics for this quota assignment. */\n usageAnalytics?: Maybe<QuotaUsageAnalytics>;\n /** The usages associated with this quota assignment. For paginated results, use getQuotaUsageDetails query. */\n usages?: Maybe<Array<Maybe<Usage>>>;\n};\n\nexport type QuotaAssignmentSummary = {\n __typename?: 'QuotaAssignmentSummary';\n createdAt?: Maybe<Scalars['DateTime']['output']>;\n currentUsageSum?: Maybe<Scalars['Int']['output']>;\n endtime?: Maybe<Scalars['DateTime']['output']>;\n id?: Maybe<Scalars['ID']['output']>;\n limits?: Maybe<Scalars['JSON']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n usageCount?: Maybe<Scalars['Int']['output']>;\n usages?: Maybe<Array<Maybe<Usage>>>;\n};\n\n/** Summary of a single quota assignment with usage details */\nexport type QuotaAssignmentUsageSummary = {\n __typename?: 'QuotaAssignmentUsageSummary';\n createdAt: Scalars['DateTime']['output'];\n endtime: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n /** Original limit value */\n limit: Scalars['Float']['output'];\n /** Current remaining limit (limit - used) */\n limitLeft: Scalars['Float']['output'];\n name: Scalars['String']['output'];\n /** Whether this quota has no limit (non-numeric type) */\n noLimit: Scalars['Boolean']['output'];\n quotaType: QuotaType;\n reusable: Scalars['Boolean']['output'];\n /** Subscription ID if PRODUCT_SPECIFIC */\n subscriptionId?: Maybe<Scalars['ID']['output']>;\n /** Usage percentage (used / limit * 100) */\n usagePercentage: Scalars['Float']['output'];\n /** Total usage amount (sum of all usage records) */\n used: Scalars['Float']['output'];\n};\n\nexport type QuotaAssignmentWithAnalytics = {\n __typename?: 'QuotaAssignmentWithAnalytics';\n /** Analytics and insights */\n analytics: QuotaUsageAnalytics;\n billingAccountId?: Maybe<Scalars['ID']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currentUsageSum: Scalars['Float']['output'];\n endtime: Scalars['DateTime']['output'];\n healthScore: Scalars['Float']['output'];\n /** Basic quota assignment information */\n id: Scalars['ID']['output'];\n limitLeft: Scalars['Float']['output'];\n limits: Scalars['JSON']['output'];\n name: Scalars['String']['output'];\n quotaType: QuotaType;\n reusable: Scalars['Boolean']['output'];\n /** Status indicators */\n status: QuotaStatus;\n subscriptionId?: Maybe<Scalars['ID']['output']>;\n /** Usage summary information */\n totalUsageCount: Scalars['Int']['output'];\n usagePercentage: Scalars['Float']['output'];\n};\n\nexport type QuotaCheckResult = {\n __typename?: 'QuotaCheckResult';\n limitLeft: Scalars['Int']['output'];\n noLimit: Scalars['Boolean']['output'];\n quotaAssignmentId: Scalars['ID']['output'];\n};\n\nexport enum QuotaEntityType {\n Project = 'project',\n Workspace = 'workspace'\n}\n\nexport type QuotaLimit = {\n __typename?: 'QuotaLimit';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n lastResetAt?: Maybe<Scalars['DateTime']['output']>;\n limit: Scalars['Int']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n orgId: Scalars['String']['output'];\n resetPeriod?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n used: Scalars['Int']['output'];\n};\n\nexport enum QuotaResetPeriod {\n /** Resets every day at midnight UTC (API requests/day, AI sessions/day) */\n Daily = 'DAILY',\n /** Resets at the start of each billing cycle */\n Monthly = 'MONTHLY',\n /** Never resets — static limits (seats, agents, storage cap) */\n Never = 'NEVER'\n}\n\nexport enum QuotaStatus {\n Critical = 'CRITICAL',\n Exhausted = 'EXHAUSTED',\n Healthy = 'HEALTHY',\n Inactive = 'INACTIVE',\n Warning = 'WARNING'\n}\n\nexport enum QuotaType {\n Pooled = 'POOLED',\n ProductSpecific = 'PRODUCT_SPECIFIC'\n}\n\nexport type QuotaUsageAnalytics = {\n __typename?: 'QuotaUsageAnalytics';\n /** Daily usage over the last 30 days */\n dailyUsage: Array<DailyUsage>;\n /** Peak usage information */\n peakUsage?: Maybe<PeakUsage>;\n /** Usage trends and predictions */\n trends?: Maybe<UsageTrends>;\n /** Usage by resource type */\n usageByType: Array<UsageByType>;\n};\n\nexport type QuotaUsageAndLimit = {\n __typename?: 'QuotaUsageAndLimit';\n limit: Scalars['Int']['output'];\n limitLeft: Scalars['Int']['output'];\n noLimit: Scalars['Boolean']['output'];\n};\n\nexport type QuotaUsageSummary = {\n __typename?: 'QuotaUsageSummary';\n limit: Scalars['Float']['output'];\n percentage: Scalars['Float']['output'];\n quotaId: Scalars['ID']['output'];\n quotaName: Scalars['String']['output'];\n status: QuotaStatus;\n usage: Scalars['Float']['output'];\n};\n\nexport type RadiusConfig = {\n __typename?: 'RADIUSConfig';\n createdAt: Scalars['DateTime']['output'];\n enabled: Scalars['Boolean']['output'];\n host: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n port: Scalars['Int']['output'];\n protocol: Scalars['String']['output'];\n tenantId: Scalars['ID']['output'];\n};\n\nexport type RadiusConfigInput = {\n host: Scalars['String']['input'];\n port?: InputMaybe<Scalars['Int']['input']>;\n protocol?: InputMaybe<Scalars['String']['input']>;\n retries?: InputMaybe<Scalars['Int']['input']>;\n sharedSecret: Scalars['String']['input'];\n timeout?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type RatingDistribution = {\n __typename?: 'RatingDistribution';\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n rating: Scalars['Int']['output'];\n};\n\n/** RBAC analytics summary */\nexport type RbacAnalytics = {\n __typename?: 'RbacAnalytics';\n allowedChecks: Scalars['Int']['output'];\n approvalRate: Scalars['Float']['output'];\n deniedChecks: Scalars['Int']['output'];\n scopeId: Scalars['String']['output'];\n topActions: Array<ActionCount>;\n topActors: Array<ActorCount>;\n totalAssignments: Scalars['Int']['output'];\n totalChecks: Scalars['Int']['output'];\n totalOverrides: Scalars['Int']['output'];\n totalResources: Scalars['Int']['output'];\n totalRoles: Scalars['Int']['output'];\n totalVisibilityRules: Scalars['Int']['output'];\n};\n\n/** RBAC configuration change log entry */\nexport type RbacChangeLog = {\n __typename?: 'RbacChangeLog';\n changeType: RbacChangeType;\n changedAt: Scalars['DateTime']['output'];\n changedBy: Scalars['String']['output'];\n description: Scalars['String']['output'];\n details?: Maybe<Scalars['JSON']['output']>;\n entityId: Scalars['String']['output'];\n entityType: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n scopeId: Scalars['String']['output'];\n};\n\n/** Types of RBAC configuration changes for audit log */\nexport enum RbacChangeType {\n ActorOverrideCreated = 'ACTOR_OVERRIDE_CREATED',\n ActorOverrideRemoved = 'ACTOR_OVERRIDE_REMOVED',\n ConfigUpdated = 'CONFIG_UPDATED',\n DefaultPermissionRemoved = 'DEFAULT_PERMISSION_REMOVED',\n DefaultPermissionSet = 'DEFAULT_PERMISSION_SET',\n ResourceDeactivated = 'RESOURCE_DEACTIVATED',\n ResourceRegistered = 'RESOURCE_REGISTERED',\n ResourceUpdated = 'RESOURCE_UPDATED',\n RoleAssigned = 'ROLE_ASSIGNED',\n RoleCreated = 'ROLE_CREATED',\n RoleDeleted = 'ROLE_DELETED',\n RoleOverrideCreated = 'ROLE_OVERRIDE_CREATED',\n RoleOverrideRemoved = 'ROLE_OVERRIDE_REMOVED',\n RoleRemoved = 'ROLE_REMOVED',\n RoleUpdated = 'ROLE_UPDATED',\n VisibilityRuleCreated = 'VISIBILITY_RULE_CREATED',\n VisibilityRuleRemoved = 'VISIBILITY_RULE_REMOVED',\n VisibilityRuleUpdated = 'VISIBILITY_RULE_UPDATED'\n}\n\n/** RBAC configuration key-value pair */\nexport type RbacConfig = {\n __typename?: 'RbacConfig';\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n key: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n value: Scalars['String']['output'];\n valueType: Scalars['String']['output'];\n};\n\nexport type RecipientInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n locale?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n pushToken?: InputMaybe<Scalars['String']['input']>;\n slackUserId?: InputMaybe<Scalars['String']['input']>;\n teamsUserId?: InputMaybe<Scalars['String']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n webhookUrl?: InputMaybe<Scalars['String']['input']>;\n whatsappNumber?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordActivityInput = {\n action: Scalars['String']['input'];\n actorId?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n ipAddress?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n resource: Scalars['String']['input'];\n resourceId?: InputMaybe<Scalars['String']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n userAgent?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordAppInstallationInput = {\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n organizationId?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n version?: InputMaybe<Scalars['String']['input']>;\n workspaceId: Scalars['String']['input'];\n workspaceName?: InputMaybe<Scalars['String']['input']>;\n workspaceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordBounceInput = {\n bounceType: BounceType;\n campaignId: Scalars['ID']['input'];\n diagnosticCode?: InputMaybe<Scalars['String']['input']>;\n email: Scalars['String']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n subscriberId: Scalars['ID']['input'];\n};\n\nexport type RecordComplaintInput = {\n campaignId: Scalars['ID']['input'];\n complaintType?: InputMaybe<Scalars['String']['input']>;\n email: Scalars['String']['input'];\n feedbackType?: InputMaybe<Scalars['String']['input']>;\n subscriberId: Scalars['ID']['input'];\n};\n\nexport type RecordConsentInput = {\n consentType: Scalars['String']['input'];\n granted: Scalars['Boolean']['input'];\n ipAddress?: InputMaybe<Scalars['String']['input']>;\n source?: InputMaybe<Scalars['String']['input']>;\n subscriberId: Scalars['ID']['input'];\n userAgent?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordEarningEntryInput = {\n amount: Scalars['Float']['input'];\n availableAt?: InputMaybe<Scalars['DateTime']['input']>;\n billingAccountId: Scalars['ID']['input'];\n currency: Scalars['String']['input'];\n description?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n ownerUserId?: InputMaybe<Scalars['String']['input']>;\n sourceCategory: EarningsSourceCategory;\n sourceEventId?: InputMaybe<Scalars['String']['input']>;\n sourceReferenceId?: InputMaybe<Scalars['String']['input']>;\n sourceSubcategory?: InputMaybe<Scalars['String']['input']>;\n unitType?: InputMaybe<EarningUnitType>;\n};\n\nexport type RecordNotificationActionInput = {\n actionId?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n notificationId: Scalars['ID']['input'];\n};\n\nexport type RecordSaleInput = {\n applicationId: Scalars['ID']['input'];\n buyerOrgId?: InputMaybe<Scalars['ID']['input']>;\n buyerTenantId?: InputMaybe<Scalars['ID']['input']>;\n buyerUserId: Scalars['ID']['input'];\n buyerWorkspaceId?: InputMaybe<Scalars['ID']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n discountAmount?: InputMaybe<Scalars['Float']['input']>;\n discountCode?: InputMaybe<Scalars['String']['input']>;\n grossAmount: Scalars['Float']['input'];\n installationScope: Scalars['String']['input'];\n isRenewal?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n organizationId: Scalars['ID']['input'];\n planId?: InputMaybe<Scalars['ID']['input']>;\n planName?: InputMaybe<Scalars['String']['input']>;\n platformFeeRate: Scalars['Float']['input'];\n previousSaleId?: InputMaybe<Scalars['ID']['input']>;\n pricingModel: DevPortalPricingModel;\n storeOrderId?: InputMaybe<Scalars['ID']['input']>;\n storeProductId?: InputMaybe<Scalars['ID']['input']>;\n subscriptionPeriodEnd?: InputMaybe<Scalars['DateTime']['input']>;\n subscriptionPeriodStart?: InputMaybe<Scalars['DateTime']['input']>;\n taxAmount?: InputMaybe<Scalars['Float']['input']>;\n taxCountry?: InputMaybe<Scalars['String']['input']>;\n taxRate?: InputMaybe<Scalars['Float']['input']>;\n taxRegion?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordTourAnalyticsInput = {\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n deviceType?: InputMaybe<DeviceType>;\n duration?: InputMaybe<Scalars['Int']['input']>;\n eventType: TourAnalyticsEventType;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n moduleId?: InputMaybe<Scalars['String']['input']>;\n pageId?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n sessionId?: InputMaybe<Scalars['String']['input']>;\n stepId?: InputMaybe<Scalars['String']['input']>;\n stepOrder?: InputMaybe<Scalars['Int']['input']>;\n tourId: Scalars['String']['input'];\n userAgent?: InputMaybe<Scalars['String']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RecordTourProgressInput = {\n completedSteps?: InputMaybe<Scalars['JSON']['input']>;\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n currentStepId?: InputMaybe<Scalars['String']['input']>;\n currentStepOrder?: InputMaybe<Scalars['Int']['input']>;\n deviceType?: InputMaybe<DeviceType>;\n sessionId?: InputMaybe<Scalars['String']['input']>;\n skippedSteps?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<TourUserStatus>;\n tourId: Scalars['String']['input'];\n userId: Scalars['String']['input'];\n};\n\nexport type RecordUsageInput = {\n amount: Scalars['String']['input'];\n licenseKey: Scalars['String']['input'];\n metricType: Scalars['String']['input'];\n period?: InputMaybe<LicenseUsagePeriod>;\n};\n\nexport type RecurringBillingPlan = {\n __typename?: 'RecurringBillingPlan';\n amount: Scalars['Float']['output'];\n createdAt: Scalars['String']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n entityId: Scalars['String']['output'];\n entityType: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n interval: Scalars['String']['output'];\n intervalCount: Scalars['Int']['output'];\n isActive: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n razorpayPlanId?: Maybe<Scalars['String']['output']>;\n stripePriceId?: Maybe<Scalars['String']['output']>;\n stripeProductId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['String']['output'];\n};\n\nexport type ReferralCode = {\n __typename?: 'ReferralCode';\n code: Scalars['String']['output'];\n coupon?: Maybe<Coupon>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n onBehalfOf: Scalars['String']['output'];\n orgId: Scalars['String']['output'];\n refereeDiscountType?: Maybe<CouponType>;\n refereeDiscountValue?: Maybe<Scalars['Float']['output']>;\n referrerRewardCredits?: Maybe<Scalars['Float']['output']>;\n referrerRewardType: ReferralRewardType;\n referrerRewardValue: Scalars['Float']['output'];\n totalReferrals: Scalars['Int']['output'];\n totalRevenueAmount: Scalars['Float']['output'];\n totalRewardsEarned: Scalars['Float']['output'];\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n validFrom: Scalars['DateTime']['output'];\n validUntil?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport type ReferralCodesListResponse = {\n __typename?: 'ReferralCodesListResponse';\n codes: Array<ReferralCode>;\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n};\n\nexport enum ReferralRewardType {\n Credits = 'CREDITS',\n FixedAmount = 'FIXED_AMOUNT',\n Percentage = 'PERCENTAGE'\n}\n\nexport type ReferralUsage = {\n __typename?: 'ReferralUsage';\n convertedAt?: Maybe<Scalars['DateTime']['output']>;\n createdBy: Scalars['String']['output'];\n currency: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n onBehalfOf: Scalars['String']['output'];\n orderAmount: Scalars['Float']['output'];\n orderId?: Maybe<Scalars['String']['output']>;\n refereeDiscountAmount: Scalars['Float']['output'];\n referralCode: ReferralCode;\n referredAt: Scalars['DateTime']['output'];\n referredUserId: Scalars['String']['output'];\n referrerRewardAmount: Scalars['Float']['output'];\n referrerUserId: Scalars['String']['output'];\n rewardPaid: Scalars['Boolean']['output'];\n rewardPaidAt?: Maybe<Scalars['DateTime']['output']>;\n transactionId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type Refund = {\n __typename?: 'Refund';\n amount: Scalars['Float']['output'];\n charge: Charge;\n chargeId: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n gatewayRefundId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n provider?: Maybe<Scalars['String']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n status: RefundStatus;\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Refund record - tracks all refunds (manual and from failed webhooks) */\nexport type RefundRecord = {\n __typename?: 'RefundRecord';\n amount: Scalars['Float']['output'];\n billingAccountId?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n errorMessage?: Maybe<Scalars['String']['output']>;\n gatewayOrderId?: Maybe<Scalars['String']['output']>;\n gatewayPaymentId: Scalars['String']['output'];\n gatewayRefundId?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n notes?: Maybe<Scalars['String']['output']>;\n orgId: Scalars['String']['output'];\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n processedBy?: Maybe<Scalars['String']['output']>;\n provider: Scalars['String']['output'];\n purchaseDetail?: Maybe<Scalars['String']['output']>;\n purchaseType?: Maybe<Scalars['String']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n retryCount: Scalars['Int']['output'];\n source: RefundSource;\n status: RefundRecordStatus;\n transaction?: Maybe<Transaction>;\n transactionId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n webhookLog?: Maybe<BillingWebhookLog>;\n webhookLogId?: Maybe<Scalars['String']['output']>;\n};\n\n/** Status of a refund record (for tracking refund requests) */\nexport enum RefundRecordStatus {\n Completed = 'COMPLETED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Processing = 'PROCESSING',\n Skipped = 'SKIPPED'\n}\n\n/** Source of a refund request */\nexport enum RefundSource {\n DuplicatePayment = 'DUPLICATE_PAYMENT',\n Manual = 'MANUAL',\n SubscriptionCancel = 'SUBSCRIPTION_CANCEL',\n WebhookRecovery = 'WEBHOOK_RECOVERY'\n}\n\n/** Refund statistics */\nexport type RefundStats = {\n __typename?: 'RefundStats';\n completed: Scalars['Int']['output'];\n failed: Scalars['Int']['output'];\n pending: Scalars['Int']['output'];\n processing: Scalars['Int']['output'];\n skipped: Scalars['Int']['output'];\n totalCompletedAmount: Scalars['Float']['output'];\n totalPendingAmount: Scalars['Float']['output'];\n};\n\nexport enum RefundStatus {\n Canceled = 'CANCELED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Succeeded = 'SUCCEEDED'\n}\n\nexport type RegisterProductAssetInput = {\n caption?: InputMaybe<Scalars['String']['input']>;\n fileName?: InputMaybe<Scalars['String']['input']>;\n fileType: ProductAssetType;\n /**\n * File ID returned from wspace-files-svc's completeUpload mutation.\n * The browser uploads the file directly to files-svc, then calls this\n * mutation to link it to the product.\n */\n filesSvcId: Scalars['ID']['input'];\n locale?: InputMaybe<Scalars['String']['input']>;\n /**\n * If true (default), marks previous assets of the same fileType+locale as\n * no longer current. Set to false to keep multiple live copies (e.g. when\n * building a screenshot gallery).\n */\n makeCurrent?: InputMaybe<Scalars['Boolean']['input']>;\n mimeType?: InputMaybe<Scalars['String']['input']>;\n orderIndex?: InputMaybe<Scalars['Int']['input']>;\n productId: Scalars['ID']['input'];\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RegisterPublisherInput = {\n bio?: InputMaybe<Scalars['String']['input']>;\n contactEmail?: InputMaybe<Scalars['String']['input']>;\n contactPhone?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n email: Scalars['String']['input'];\n legalName?: InputMaybe<Scalars['String']['input']>;\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n name: Scalars['String']['input'];\n supportUrl?: InputMaybe<Scalars['String']['input']>;\n tier?: InputMaybe<PublisherTier>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for registering a resource with custom RBAC configurations */\nexport type RegisterResourceInput = {\n identifier: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n ownerId?: InputMaybe<Scalars['String']['input']>;\n ownerType?: InputMaybe<ActorType>;\n parentResourceId?: InputMaybe<Scalars['String']['input']>;\n resourceType: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\nexport type RegisterSupportAttachmentPartInput = {\n etag: Scalars['String']['input'];\n partNumber: Scalars['Int']['input'];\n sessionId: Scalars['ID']['input'];\n ticketId: Scalars['ID']['input'];\n};\n\nexport type RejectWaitlistInput = {\n id: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum ReleaseStatus {\n Draft = 'DRAFT',\n Halted = 'HALTED',\n Live = 'LIVE',\n Ready = 'READY',\n Rejected = 'REJECTED',\n Reviewing = 'REVIEWING',\n RolledBack = 'ROLLED_BACK',\n RollingOut = 'ROLLING_OUT'\n}\n\nexport type ReleaseTrack = {\n __typename?: 'ReleaseTrack';\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n name: Scalars['String']['output'];\n productId: Scalars['ID']['output'];\n type: ReleaseTrackType;\n};\n\nexport enum ReleaseTrackType {\n ClosedTesting = 'CLOSED_TESTING',\n Internal = 'INTERNAL',\n OpenTesting = 'OPEN_TESTING',\n Production = 'PRODUCTION'\n}\n\nexport type ReleaseTrackUser = {\n __typename?: 'ReleaseTrackUser';\n addedAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n removedAt?: Maybe<Scalars['DateTime']['output']>;\n trackId: Scalars['ID']['output'];\n userId: Scalars['String']['output'];\n};\n\n/** Input for requesting a return */\nexport type RequestOrderReturnInput = {\n notes?: InputMaybe<Scalars['String']['input']>;\n orderId: Scalars['ID']['input'];\n reason: Scalars['String']['input'];\n};\n\nexport type RequestPayoutInput = {\n amount: Scalars['Float']['input'];\n billingAccountId: Scalars['ID']['input'];\n currency: Scalars['String']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n payoutAccountId: Scalars['ID']['input'];\n};\n\nexport type RescheduleNotificationInput = {\n scheduledFor: Scalars['DateTime']['input'];\n scheduledNotificationId: Scalars['ID']['input'];\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type ResendVerificationResult = {\n __typename?: 'ResendVerificationResult';\n message: Scalars['String']['output'];\n success: Scalars['Boolean']['output'];\n};\n\nexport type ResolveContextWidgetConversationInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n sourceContext: WidgetConversationSourceContextInput;\n title?: InputMaybe<Scalars['String']['input']>;\n workspaceId: Scalars['ID']['input'];\n};\n\n/**\n * Registered resource with custom permission configurations.\n * Resources are only registered when they have non-default permissions\n * (overrides, visibility rules, or scoped assignments).\n */\nexport type Resource = {\n __typename?: 'Resource';\n children: Array<Resource>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n identifier: Scalars['String']['output'];\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name?: Maybe<Scalars['String']['output']>;\n ownerId?: Maybe<Scalars['String']['output']>;\n ownerType?: Maybe<ActorType>;\n parent?: Maybe<Resource>;\n parentResourceId?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n visibilityRules: Array<VisibilityRule>;\n};\n\n/** Filter for querying resources */\nexport type ResourceFilterInput = {\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n ownerId?: InputMaybe<Scalars['String']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type RetryBillingOrderCallbackResponse = {\n __typename?: 'RetryBillingOrderCallbackResponse';\n error?: Maybe<Scalars['String']['output']>;\n order?: Maybe<BillingOrder>;\n success: Scalars['Boolean']['output'];\n};\n\n/** Revenue summary for dashboard */\nexport type RevenueSummary = {\n __typename?: 'RevenueSummary';\n nextPayoutAmount?: Maybe<Scalars['Float']['output']>;\n nextPayoutDate?: Maybe<Scalars['DateTime']['output']>;\n pendingBalance: Scalars['Float']['output'];\n period: Scalars['String']['output'];\n revenueByGeo?: Maybe<Scalars['JSON']['output']>;\n revenueByPricingModel?: Maybe<Scalars['JSON']['output']>;\n topApps: Array<AppRevenueSummary>;\n totalGrossRevenue: Scalars['Float']['output'];\n totalNetRevenue: Scalars['Float']['output'];\n totalNewCustomers: Scalars['Int']['output'];\n totalPlatformFees: Scalars['Float']['output'];\n totalRefunds: Scalars['Float']['output'];\n totalRefundsCount: Scalars['Int']['output'];\n totalSales: Scalars['Int']['output'];\n};\n\nexport enum ReviewStatus {\n Approved = 'APPROVED',\n ChangesRequested = 'CHANGES_REQUESTED',\n InProgress = 'IN_PROGRESS',\n Pending = 'PENDING',\n Rejected = 'REJECTED'\n}\n\n/** Review summary for an application */\nexport type ReviewSummary = {\n __typename?: 'ReviewSummary';\n applicationId: Scalars['ID']['output'];\n averageRating: Scalars['Float']['output'];\n featuredReviewsCount: Scalars['Int']['output'];\n ratingDistribution: AppRatingDistribution;\n totalReviews: Scalars['Int']['output'];\n verifiedPurchaseCount: Scalars['Int']['output'];\n};\n\n/** Result of revoking all sessions */\nexport type RevokeAllSessionsResult = {\n __typename?: 'RevokeAllSessionsResult';\n /** Number of sessions that were revoked */\n revokedCount: Scalars['Int']['output'];\n success: Scalars['Boolean']['output'];\n};\n\nexport type RevokeAppWorkspaceAccessInput = {\n appId: Scalars['ID']['input'];\n reason?: InputMaybe<Scalars['String']['input']>;\n workspaceId: Scalars['ID']['input'];\n};\n\n/** Role - Convention-based with resource type mappings */\nexport type Role = {\n __typename?: 'Role';\n /** Actors assigned this role */\n actorAssignments: Array<ActorRoleAssignment>;\n /** Child roles in hierarchy */\n children: Array<Role>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n /** Default permission levels per resource type */\n defaultPermissions: Array<RoleDefaultPermission>;\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isSystem: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n onBehalfOf?: Maybe<Scalars['String']['output']>;\n /** Parent role in hierarchy */\n parent?: Maybe<Role>;\n /** Role-level permission overrides */\n permissionOverrides: Array<RolePermissionOverride>;\n priority: Scalars['Int']['output'];\n scopeId: Scalars['String']['output'];\n scopeType: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Maps role to default permission level per resource type */\nexport type RoleDefaultPermission = {\n __typename?: 'RoleDefaultPermission';\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n level: RoleLevel;\n onBehalfOf?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n roleId: Scalars['String']['output'];\n};\n\n/** Filter for querying roles */\nexport type RoleFilterInput = {\n includeSystem?: InputMaybe<Scalars['Boolean']['input']>;\n parentId?: InputMaybe<Scalars['ID']['input']>;\n scopeId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Basic role information */\nexport type RoleInfo = {\n __typename?: 'RoleInfo';\n id: Scalars['ID']['output'];\n name: Scalars['String']['output'];\n priority: Scalars['Int']['output'];\n};\n\n/** Role permission levels for resource types */\nexport enum RoleLevel {\n /** Full access to resource type */\n Admin = 'ADMIN',\n /** Read + Write access */\n Editor = 'EDITOR',\n /** No default access (must be explicitly granted) */\n None = 'NONE',\n /** Read-only access */\n Viewer = 'VIEWER'\n}\n\n/** Role-level permission override for specific resources */\nexport type RolePermissionOverride = {\n __typename?: 'RolePermissionOverride';\n action: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n onBehalfOf?: Maybe<Scalars['String']['output']>;\n overrideType: OverrideType;\n priority: Scalars['Int']['output'];\n reason?: Maybe<Scalars['String']['output']>;\n /** Optional: Scope to specific resource instance */\n resourceId?: Maybe<Scalars['String']['output']>;\n resourceType: Scalars['String']['output'];\n /** The role this override applies to */\n role: Role;\n roleId: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n validFrom?: Maybe<Scalars['DateTime']['output']>;\n validUntil?: Maybe<Scalars['DateTime']['output']>;\n};\n\nexport type SamlInput = {\n relayState?: InputMaybe<Scalars['String']['input']>;\n samlResponse: Scalars['String']['input'];\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SamlRequestResult = {\n __typename?: 'SAMLRequestResult';\n requestId: Scalars['String']['output'];\n samlRequest: Scalars['String']['output'];\n ssoUrl: Scalars['String']['output'];\n};\n\nexport enum SlaBreachStatus {\n Breached = 'BREACHED',\n None = 'NONE',\n Warning_50 = 'WARNING_50',\n Warning_75 = 'WARNING_75',\n Warning_90 = 'WARNING_90'\n}\n\nexport type SlaPolicy = {\n __typename?: 'SLAPolicy';\n businessHours?: Maybe<Scalars['JSON']['output']>;\n categoryId?: Maybe<Scalars['String']['output']>;\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n escalationRules?: Maybe<Scalars['JSON']['output']>;\n firstResponseMinutes: Scalars['Int']['output'];\n holidays?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n isDefault: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n priority: SupportTicketPriority;\n resolutionMinutes: Scalars['Int']['output'];\n tenantId?: Maybe<Scalars['String']['output']>;\n timezone: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type SlaPolicyConnection = {\n __typename?: 'SLAPolicyConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<SlaPolicy>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type SlaPolicyFilterInput = {\n categoryId?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextFilterInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n};\n\nexport type SlaPriorityBreakdown = {\n __typename?: 'SLAPriorityBreakdown';\n averageFirstResponseMinutes?: Maybe<Scalars['Float']['output']>;\n averageResolutionMinutes?: Maybe<Scalars['Float']['output']>;\n firstResponseCompliance: Scalars['Float']['output'];\n priority: SupportTicketPriority;\n resolutionCompliance: Scalars['Float']['output'];\n totalTickets: Scalars['Int']['output'];\n};\n\nexport type SlaReport = {\n __typename?: 'SLAReport';\n averageFirstResponseMinutes?: Maybe<Scalars['Float']['output']>;\n averageResolutionMinutes?: Maybe<Scalars['Float']['output']>;\n breachRate: Scalars['Float']['output'];\n byPriority: Array<SlaPriorityBreakdown>;\n endDate: Scalars['DateTime']['output'];\n firstResponseCompliance: Scalars['Float']['output'];\n period: TimePeriod;\n resolutionCompliance: Scalars['Float']['output'];\n startDate: Scalars['DateTime']['output'];\n ticketsWithSLA: Scalars['Int']['output'];\n totalBreaches: Scalars['Int']['output'];\n totalTickets: Scalars['Int']['output'];\n};\n\nexport type SlaReportFilterInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n period?: InputMaybe<TimePeriod>;\n priority?: InputMaybe<SupportTicketPriority>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SlaStatus = {\n __typename?: 'SLAStatus';\n breachStatus: SlaBreachStatus;\n escalationLevel: Scalars['Int']['output'];\n firstResponseAt?: Maybe<Scalars['DateTime']['output']>;\n firstResponseDue?: Maybe<Scalars['DateTime']['output']>;\n firstResponseMet?: Maybe<Scalars['Boolean']['output']>;\n firstResponseTimeRemaining?: Maybe<Scalars['Int']['output']>;\n isPaused: Scalars['Boolean']['output'];\n pausedAt?: Maybe<Scalars['DateTime']['output']>;\n policy?: Maybe<SlaPolicy>;\n policyId?: Maybe<Scalars['String']['output']>;\n resolutionDue?: Maybe<Scalars['DateTime']['output']>;\n resolutionMet?: Maybe<Scalars['Boolean']['output']>;\n resolutionTimeRemaining?: Maybe<Scalars['Int']['output']>;\n resolvedAt?: Maybe<Scalars['DateTime']['output']>;\n ticketId: Scalars['String']['output'];\n totalPausedSeconds: Scalars['Int']['output'];\n};\n\n/** SSO/SAML Configuration */\nexport type SsoConfig = {\n __typename?: 'SSOConfig';\n certificate: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n enabled: Scalars['Boolean']['output'];\n entityId: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n identifier: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n sloUrl?: Maybe<Scalars['String']['output']>;\n ssoUrl: Scalars['String']['output'];\n tenantId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Input for creating or updating SSO/SAML configuration */\nexport type SsoConfigInput = {\n certificate: Scalars['String']['input'];\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n entityId: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n sloUrl?: InputMaybe<Scalars['String']['input']>;\n ssoUrl: Scalars['String']['input'];\n};\n\nexport enum SaleStatus {\n Cancelled = 'CANCELLED',\n Chargeback = 'CHARGEBACK',\n Completed = 'COMPLETED',\n Disputed = 'DISPUTED',\n PartialRefund = 'PARTIAL_REFUND',\n Pending = 'PENDING',\n Refunded = 'REFUNDED'\n}\n\nexport type SatisfactionMetrics = {\n __typename?: 'SatisfactionMetrics';\n averageRating?: Maybe<Scalars['Float']['output']>;\n csatScore?: Maybe<Scalars['Float']['output']>;\n endDate: Scalars['DateTime']['output'];\n feedbackBreakdown: Array<FeedbackBreakdown>;\n npsScore?: Maybe<Scalars['Float']['output']>;\n period: TimePeriod;\n ratingDistribution: Array<RatingDistribution>;\n responseRate: Scalars['Float']['output'];\n startDate: Scalars['DateTime']['output'];\n totalResponses: Scalars['Int']['output'];\n totalSurveysSent: Scalars['Int']['output'];\n trendData: Array<SatisfactionTrend>;\n};\n\nexport type SatisfactionMetricsFilterInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n groupBy?: InputMaybe<TrendGroupBy>;\n period?: InputMaybe<TimePeriod>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SatisfactionTrend = {\n __typename?: 'SatisfactionTrend';\n averageRating?: Maybe<Scalars['Float']['output']>;\n csatScore?: Maybe<Scalars['Float']['output']>;\n date: Scalars['DateTime']['output'];\n responseCount: Scalars['Int']['output'];\n};\n\nexport type SaveTourAsTemplateInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n name: Scalars['String']['input'];\n};\n\nexport type ScheduleNotificationInput = {\n /** Or create a new notification to schedule */\n notification?: InputMaybe<CreateNotificationInput>;\n /** ID of an existing notification to schedule */\n notificationId?: InputMaybe<Scalars['ID']['input']>;\n /** When to trigger the notification */\n scheduledFor: Scalars['DateTime']['input'];\n /** Timezone for scheduling (e.g., 'America/New_York') */\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SchedulePreview = {\n __typename?: 'SchedulePreview';\n count: Scalars['Int']['output'];\n endDate: Scalars['DateTime']['output'];\n nextExecutions: Array<Scalars['DateTime']['output']>;\n startDate: Scalars['DateTime']['output'];\n};\n\nexport enum SchedulePriority {\n Critical = 'CRITICAL',\n High = 'HIGH',\n Low = 'LOW',\n Normal = 'NORMAL'\n}\n\nexport type ScheduleTemplate = {\n __typename?: 'ScheduleTemplate';\n businessCalendarId?: Maybe<Scalars['String']['output']>;\n category?: Maybe<Scalars['String']['output']>;\n circuitBreaker?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n executorConfig: Scalars['JSON']['output'];\n executorType: ExecutorType;\n failurePolicy?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n isPublic: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n organizationId: Scalars['String']['output'];\n payloadTemplate?: Maybe<Scalars['JSON']['output']>;\n retryPolicy?: Maybe<Scalars['JSON']['output']>;\n scheduleConfig: Scalars['JSON']['output'];\n scheduleType: ScheduleType;\n updatedAt: Scalars['DateTime']['output'];\n usageCount: Scalars['Int']['output'];\n};\n\nexport type ScheduleTemplateConnection = {\n __typename?: 'ScheduleTemplateConnection';\n hasMore: Scalars['Boolean']['output'];\n templates: Array<ScheduleTemplate>;\n total: Scalars['Int']['output'];\n};\n\nexport type ScheduleTemplateFilterInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n createdBy?: InputMaybe<Scalars['String']['input']>;\n executorType?: InputMaybe<ExecutorType>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n scheduleType?: InputMaybe<ScheduleType>;\n search?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum ScheduleType {\n Cron = 'CRON',\n FixedInterval = 'FIXED_INTERVAL',\n OneTime = 'ONE_TIME',\n Rrule = 'RRULE',\n Windowed = 'WINDOWED'\n}\n\nexport type ScheduleVersion = {\n __typename?: 'ScheduleVersion';\n changeReason?: Maybe<Scalars['String']['output']>;\n changedBy: Scalars['String']['output'];\n changedFields: Array<Scalars['String']['output']>;\n config: Scalars['JSON']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n executions: JobExecutionConnection;\n id: Scalars['ID']['output'];\n schedule?: Maybe<ScheduledJob>;\n scheduleId: Scalars['String']['output'];\n version: Scalars['Int']['output'];\n};\n\n\nexport type ScheduleVersionExecutionsArgs = {\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\nexport type ScheduledJob = {\n __typename?: 'ScheduledJob';\n actionId?: Maybe<Scalars['String']['output']>;\n archivedAt?: Maybe<Scalars['DateTime']['output']>;\n autoDisableAfter?: Maybe<Scalars['Int']['output']>;\n backoffStrategy: BackoffStrategy;\n businessCalendarId?: Maybe<Scalars['String']['output']>;\n circuitBreaker?: Maybe<Scalars['JSON']['output']>;\n consecutiveFailures: Scalars['Int']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n cronExpression?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n endDate?: Maybe<Scalars['DateTime']['output']>;\n executions: JobExecutionConnection;\n executorConfig?: Maybe<Scalars['JSON']['output']>;\n executorType?: Maybe<ExecutorType>;\n failurePolicy?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n interval?: Maybe<Scalars['JSON']['output']>;\n lastExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n lastFailureAt?: Maybe<Scalars['DateTime']['output']>;\n maxOccurrences?: Maybe<Scalars['Int']['output']>;\n maxRetries: Scalars['Int']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n misfirePolicy: MisfirePolicy;\n misfireThreshold: Scalars['Int']['output'];\n name?: Maybe<Scalars['String']['output']>;\n nextExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n organizationId: Scalars['String']['output'];\n payloadTemplate?: Maybe<Scalars['JSON']['output']>;\n priority: SchedulePriority;\n retryCount: Scalars['Int']['output'];\n retryDelay: Scalars['Int']['output'];\n retryPolicy: Scalars['JSON']['output'];\n rrule?: Maybe<Scalars['String']['output']>;\n scheduleType: ScheduleType;\n scheduledAt?: Maybe<Scalars['DateTime']['output']>;\n secrets?: Maybe<Scalars['JSON']['output']>;\n startDate?: Maybe<Scalars['DateTime']['output']>;\n status: JobStatus;\n tags: Array<Scalars['String']['output']>;\n timeWindows?: Maybe<Scalars['JSON']['output']>;\n timezone: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n version: Scalars['Int']['output'];\n versions: Array<ScheduleVersion>;\n};\n\n\nexport type ScheduledJobExecutionsArgs = {\n pagination?: InputMaybe<SchedulerPaginationInput>;\n};\n\nexport type ScheduledJobConnection = {\n __typename?: 'ScheduledJobConnection';\n hasMore: Scalars['Boolean']['output'];\n jobs: Array<ScheduledJob>;\n total: Scalars['Int']['output'];\n};\n\nexport type ScheduledNotification = {\n __typename?: 'ScheduledNotification';\n createdAt: Scalars['DateTime']['output'];\n errorMessage?: Maybe<Scalars['String']['output']>;\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n maxRetries: Scalars['Int']['output'];\n notification: Notification;\n notificationId: Scalars['ID']['output'];\n retryCount: Scalars['Int']['output'];\n scheduledFor: Scalars['DateTime']['output'];\n status: ScheduledNotificationStatus;\n timezone?: Maybe<Scalars['String']['output']>;\n triggeredAt?: Maybe<Scalars['DateTime']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type ScheduledNotificationFilterInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<ScheduledNotificationStatus>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport type ScheduledNotificationList = {\n __typename?: 'ScheduledNotificationList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<ScheduledNotification>;\n total: Scalars['Int']['output'];\n};\n\nexport enum ScheduledNotificationStatus {\n Cancelled = 'CANCELLED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Triggered = 'TRIGGERED'\n}\n\nexport type SchedulerBulkOperationError = {\n __typename?: 'SchedulerBulkOperationError';\n error: Scalars['String']['output'];\n scheduleId: Scalars['String']['output'];\n};\n\nexport type SchedulerBulkOperationResult = {\n __typename?: 'SchedulerBulkOperationResult';\n affected: Scalars['Int']['output'];\n errors: Array<SchedulerBulkOperationError>;\n scheduleIds: Array<Scalars['String']['output']>;\n};\n\nexport type SchedulerMetrics = {\n __typename?: 'SchedulerMetrics';\n avgExecutionDuration: Scalars['Float']['output'];\n avgScanDuration?: Maybe<Scalars['Float']['output']>;\n circuitBreakerStates: Scalars['JSON']['output'];\n dlqByStatus: Scalars['JSON']['output'];\n dlqEntries: Scalars['Int']['output'];\n dueJobs: Scalars['Int']['output'];\n executionSuccessRate: Scalars['Float']['output'];\n failedExecutions: Scalars['Int']['output'];\n healthScore: Scalars['Float']['output'];\n lastScanTime?: Maybe<Scalars['DateTime']['output']>;\n maxExecutionDuration: Scalars['Float']['output'];\n minExecutionDuration: Scalars['Float']['output'];\n overdueJobs: Scalars['Int']['output'];\n pendingJobs: Scalars['Int']['output'];\n queueDepth: Scalars['Int']['output'];\n runningJobs: Scalars['Int']['output'];\n schedulesByExecutor: Scalars['JSON']['output'];\n schedulesByStatus: Scalars['JSON']['output'];\n schedulesByType: Scalars['JSON']['output'];\n successfulExecutions: Scalars['Int']['output'];\n totalExecutions: Scalars['Int']['output'];\n totalSchedules: Scalars['Int']['output'];\n uptime: Scalars['Float']['output'];\n workerMetrics: Scalars['JSON']['output'];\n};\n\nexport type SchedulerMetricsUpdate = {\n __typename?: 'SchedulerMetricsUpdate';\n activeSchedules: Scalars['Int']['output'];\n averageScanDuration: Scalars['Float']['output'];\n completedToday: Scalars['Int']['output'];\n failedToday: Scalars['Int']['output'];\n lastScanAt?: Maybe<Scalars['DateTime']['output']>;\n pendingSchedules: Scalars['Int']['output'];\n runningSchedules: Scalars['Int']['output'];\n timestamp: Scalars['DateTime']['output'];\n totalSchedules: Scalars['Int']['output'];\n};\n\nexport type SchedulerPaginationInput = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Search suggestion for autocomplete */\nexport type SearchSuggestion = {\n __typename?: 'SearchSuggestion';\n /** Number of matching products */\n count: Scalars['Int']['output'];\n /** Highlighted term with match markers */\n highlight?: Maybe<Scalars['String']['output']>;\n /** Suggested search term */\n term: Scalars['String']['output'];\n /** Type of suggestion (product_name, tag, category, author) */\n type: Scalars['String']['output'];\n};\n\nexport type SendContextWidgetMessageInput = {\n attachments?: InputMaybe<Array<WidgetMessageAttachmentInput>>;\n content: Scalars['JSON']['input'];\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n isAnonymous?: InputMaybe<Scalars['Boolean']['input']>;\n mentionUserIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n parentMessageId?: InputMaybe<Scalars['ID']['input']>;\n sourceContext: WidgetConversationSourceContextInput;\n type?: InputMaybe<Scalars['String']['input']>;\n workspaceId: Scalars['ID']['input'];\n};\n\nexport type SendContextWidgetMessagePayload = {\n __typename?: 'SendContextWidgetMessagePayload';\n conversationId?: Maybe<Scalars['ID']['output']>;\n error?: Maybe<Scalars['String']['output']>;\n messageId?: Maybe<Scalars['ID']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\n/** Input for sending a message to a channel (for bot conversations) */\nexport type SendMessageInput = {\n /** Attachments (images, files, etc.) */\n attachments?: InputMaybe<Array<MessageAttachmentInput>>;\n /** Channel ID (the bot channel to send through) */\n channelId: Scalars['ID']['input'];\n /** Message content (text, markdown, etc.) */\n content: Scalars['String']['input'];\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /** Message format (text, markdown, html) */\n format?: InputMaybe<Scalars['String']['input']>;\n /** Organization ID (for multi-tenant context) */\n organizationId: Scalars['ID']['input'];\n /** Platform-specific options (Slack blocks, Teams adaptive cards, etc.) */\n platformOptions?: InputMaybe<Scalars['JSON']['input']>;\n /** Recipient (platform-specific conversation/channel ID - e.g., Slack DM conversation ID) */\n recipient: Scalars['String']['input'];\n /** Thread ID (for threaded replies in Slack, Teams, etc.) */\n threadId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** An active user session (login instance) */\nexport type Session = {\n __typename?: 'Session';\n createdAt: Scalars['DateTime']['output'];\n expiresAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n /** Whether this session is the one making the current request */\n isCurrent: Scalars['Boolean']['output'];\n lastActivityAt: Scalars['DateTime']['output'];\n location?: Maybe<Scalars['String']['output']>;\n status: SessionStatus;\n userAgent?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum SessionStatus {\n Active = 'ACTIVE',\n Expired = 'EXPIRED',\n Revoked = 'REVOKED'\n}\n\nexport type SetBillingAddressInput = {\n /** Billing account ID to associate with */\n billingAccountId: Scalars['ID']['input'];\n /** City */\n city: Scalars['String']['input'];\n /** Country */\n country: Scalars['String']['input'];\n /** Address line 1 */\n line1: Scalars['String']['input'];\n /** Address line 2 */\n line2?: InputMaybe<Scalars['String']['input']>;\n /** Additional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Postal/ZIP code */\n postalCode: Scalars['String']['input'];\n /** State/Province */\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SetNotificationTopicSubscriptionInput = {\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n subscribed: Scalars['Boolean']['input'];\n topicId: Scalars['ID']['input'];\n};\n\n/** Input for setting role default permission */\nexport type SetRoleDefaultPermissionInput = {\n level: RoleLevel;\n resourceType: Scalars['String']['input'];\n roleId: Scalars['ID']['input'];\n};\n\nexport type SetUserFeatureFlagPreferenceInput = {\n enabled: Scalars['Boolean']['input'];\n featureFlagId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\nexport type SetUserLanguagePreferenceInput = {\n /** ISO 3166-1 alpha-2 country code (e.g., IN, US, DE) */\n country?: InputMaybe<Scalars['String']['input']>;\n /** ISO 4217 currency code (e.g., INR, USD, EUR) */\n currency?: InputMaybe<Scalars['String']['input']>;\n dateFormat?: InputMaybe<Scalars['String']['input']>;\n languageCode: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n numberFormat?: InputMaybe<Scalars['String']['input']>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n timeFormat?: InputMaybe<Scalars['String']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n userId: Scalars['ID']['input'];\n};\n\nexport type SetWorkspaceFeatureFlagOverrideInput = {\n allowUserOptIn?: InputMaybe<Scalars['Boolean']['input']>;\n enabled: Scalars['Boolean']['input'];\n featureFlagId: Scalars['String']['input'];\n workspaceId: Scalars['String']['input'];\n};\n\n/** Shipping address for physical product delivery */\nexport type ShippingAddress = {\n __typename?: 'ShippingAddress';\n /** Street address line 1 */\n addressLine1: Scalars['String']['output'];\n /** Street address line 2 (apt, suite, etc.) */\n addressLine2?: Maybe<Scalars['String']['output']>;\n /** City name */\n city: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n /** Country ISO 3166-1 alpha-2 code (e.g., \"US\", \"IN\") */\n country: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n /** Contact email */\n email?: Maybe<Scalars['String']['output']>;\n /** Recipient full name */\n fullName: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n /** Delivery instructions */\n instructions?: Maybe<Scalars['String']['output']>;\n /** Whether this is the user's default address */\n isDefault: Scalars['Boolean']['output'];\n /** Whether the address has been validated */\n isVerified: Scalars['Boolean']['output'];\n /** Address label (e.g., \"Home\", \"Office\") */\n label?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Contact phone number */\n phone?: Maybe<Scalars['String']['output']>;\n /** Postal/ZIP code */\n postalCode: Scalars['String']['output'];\n /** State/Province/Region */\n state?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n};\n\n/** Available shipping method */\nexport type ShippingMethod = {\n __typename?: 'ShippingMethod';\n /** Countries where this method is available (ISO codes) */\n availableCountries: Array<Scalars['String']['output']>;\n /** Base shipping cost */\n baseCost: Scalars['Float']['output'];\n /** Carrier name (e.g., \"FedEx\", \"UPS\") */\n carrier?: Maybe<Scalars['String']['output']>;\n /** Carrier's internal service ID */\n carrierServiceId?: Maybe<Scalars['String']['output']>;\n /** Unique code (e.g., \"standard\", \"express\") */\n code: Scalars['String']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n /** Additional cost per item */\n costPerItem?: Maybe<Scalars['Float']['output']>;\n /** Additional cost per kilogram */\n costPerKg?: Maybe<Scalars['Float']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** Currency for the cost */\n currency: Scalars['String']['output'];\n /** Description of the shipping method */\n description?: Maybe<Scalars['String']['output']>;\n /** Display order */\n displayOrder: Scalars['Int']['output'];\n /** Maximum estimated delivery days */\n estimatedMaxDays?: Maybe<Scalars['Int']['output']>;\n /** Minimum estimated delivery days */\n estimatedMinDays?: Maybe<Scalars['Int']['output']>;\n /** Countries excluded from this method (ISO codes) */\n excludedCountries: Array<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n /** Whether this method is currently available */\n isActive: Scalars['Boolean']['output'];\n /** Maximum dimensions as JSON */\n maxDimensions?: Maybe<Scalars['JSON']['output']>;\n /** Maximum package weight in kg */\n maxWeight?: Maybe<Scalars['Float']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Display name (e.g., \"Standard Shipping\") */\n name: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/** Shipping rate within a zone */\nexport type ShippingRate = {\n __typename?: 'ShippingRate';\n /** Base cost for this rate */\n baseCost: Scalars['Float']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** Currency for the rate */\n currency: Scalars['String']['output'];\n /** Display order */\n displayOrder: Scalars['Int']['output'];\n /** Maximum estimated delivery days */\n estimatedMaxDays?: Maybe<Scalars['Int']['output']>;\n /** Minimum estimated delivery days */\n estimatedMinDays?: Maybe<Scalars['Int']['output']>;\n /** Minimum order amount for free shipping */\n freeShippingMinOrderAmount?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n /** Whether this rate is active */\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Rate name (e.g., \"Standard\", \"Express\") */\n name: Scalars['String']['output'];\n shippingZone?: Maybe<ShippingZone>;\n shippingZoneId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n /** Weight-based pricing tiers as JSON */\n weightTiers?: Maybe<Scalars['JSON']['output']>;\n};\n\n/** Shipping zone for rate calculation */\nexport type ShippingZone = {\n __typename?: 'ShippingZone';\n context?: Maybe<Scalars['JSON']['output']>;\n /** Countries in this zone (ISO codes) */\n countries: Array<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n /** Whether this zone is active */\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Zone name (e.g., \"Domestic\", \"International\") */\n name: Scalars['String']['output'];\n /** Shipping rates for this zone */\n rates: Array<ShippingRate>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type SideloadAppInput = {\n manifest: Scalars['JSON']['input'];\n organizationId?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n source?: InputMaybe<Scalars['String']['input']>;\n version?: InputMaybe<Scalars['String']['input']>;\n workspaceId: Scalars['String']['input'];\n workspaceName?: InputMaybe<Scalars['String']['input']>;\n workspaceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SignInInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n password: Scalars['String']['input'];\n recaptchaToken?: InputMaybe<Scalars['String']['input']>;\n rememberMe?: InputMaybe<Scalars['Boolean']['input']>;\n username?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SignUpInput = {\n email: Scalars['String']['input'];\n firstName?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n password: Scalars['String']['input'];\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n recaptchaToken?: InputMaybe<Scalars['String']['input']>;\n username: Scalars['String']['input'];\n};\n\nexport type SignedCookieResult = {\n __typename?: 'SignedCookieResult';\n cookieName: Scalars['String']['output'];\n cookieValue: Scalars['String']['output'];\n httpOnly: Scalars['Boolean']['output'];\n maxAge: Scalars['Int']['output'];\n path: Scalars['String']['output'];\n sameSite: Scalars['String']['output'];\n secure: Scalars['Boolean']['output'];\n};\n\nexport type SignedCookieValidation = {\n __typename?: 'SignedCookieValidation';\n error?: Maybe<Scalars['String']['output']>;\n expiresAt?: Maybe<Scalars['DateTime']['output']>;\n sessionId?: Maybe<Scalars['ID']['output']>;\n userId?: Maybe<Scalars['ID']['output']>;\n valid: Scalars['Boolean']['output'];\n};\n\n/** Common sort input */\nexport type SortInput = {\n /** Field to sort by */\n field: Scalars['String']['input'];\n /** Sort direction */\n order?: InputMaybe<SortOrder>;\n};\n\n/** Sort order for queries */\nexport enum SortOrder {\n Asc = 'ASC',\n Desc = 'DESC'\n}\n\nexport type SourceBreakdown = {\n __typename?: 'SourceBreakdown';\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n source: TicketSource;\n};\n\nexport type SpendCreditResponse = {\n __typename?: 'SpendCreditResponse';\n creditTransactionID: Scalars['String']['output'];\n};\n\nexport type SpendCreditsInput = {\n addOnIds?: InputMaybe<Array<InputMaybe<AddOnInputPayment>>>;\n billingAccountId: Scalars['String']['input'];\n /** For plan downgrades — the active higher-tier subscription ID. Old subscription's auto-renewal is cancelled so it won't charge again; it stays active until natural expiry and then the new plan continues. */\n downgradeFromSubscriptionId?: InputMaybe<Scalars['String']['input']>;\n isAnnual?: InputMaybe<Scalars['Boolean']['input']>;\n /** Order ID to purchase using credits (for store orders, etc.) */\n orderId?: InputMaybe<Scalars['String']['input']>;\n planId?: InputMaybe<Scalars['String']['input']>;\n /** Number of seats for PER_SEAT plans. Stored on the created subscription. Credits required = pricePerSeat × seatCount × creditsPerUSD (instead of plan.price). Ignored for FLAT_RATE plans. */\n seatCount?: InputMaybe<Scalars['Int']['input']>;\n /** For addon purchases - the subscription ID to attach addons to. Required if billing account has multiple active subscriptions. If only one active subscription exists, it will be auto-selected. */\n subscriptionId?: InputMaybe<Scalars['String']['input']>;\n /** For plan upgrades - the subscription ID to upgrade from. Old quotas will be moved to the new subscription. */\n upgradeFromSubscriptionId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Store = {\n __typename?: 'Store';\n allowUnverifiedPublishers: Scalars['Boolean']['output'];\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isPublic: Scalars['Boolean']['output'];\n logoUrl?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n requiresApproval: Scalars['Boolean']['output'];\n slug: Scalars['String']['output'];\n tenantId?: Maybe<Scalars['ID']['output']>;\n type: StoreType;\n updatedAt: Scalars['DateTime']['output'];\n websiteUrl?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StoreAppInstallation = {\n __typename?: 'StoreAppInstallation';\n context?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n installedAt: Scalars['DateTime']['output'];\n installedById: Scalars['String']['output'];\n manifest?: Maybe<Scalars['JSON']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n organizationId?: Maybe<Scalars['String']['output']>;\n productId: Scalars['String']['output'];\n status: StoreInstallationStatus;\n uninstalledAt?: Maybe<Scalars['DateTime']['output']>;\n uninstalledById?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n version?: Maybe<Scalars['String']['output']>;\n workspaceId: Scalars['String']['output'];\n workspaceName?: Maybe<Scalars['String']['output']>;\n workspaceType?: Maybe<Scalars['String']['output']>;\n};\n\nexport type StoreAppInstallationConnection = {\n __typename?: 'StoreAppInstallationConnection';\n hasMore: Scalars['Boolean']['output'];\n items: Array<StoreAppInstallation>;\n total: Scalars['Int']['output'];\n};\n\n/** Dashboard output for store admin */\nexport type StoreDashboardOutput = {\n __typename?: 'StoreDashboardOutput';\n topUnpublishedItems: Array<TopUnpublishedItem>;\n totalStoreProducts: Scalars['Int']['output'];\n totalUsers: Scalars['Int']['output'];\n};\n\n/** Filter facets for UI refinement options */\nexport type StoreFacets = {\n __typename?: 'StoreFacets';\n /** Available categories with counts */\n categories: Array<FacetCount>;\n /** Available licenses with counts */\n licenses: Array<FacetCount>;\n /** Price range in results */\n priceRange?: Maybe<PriceRange>;\n /** Available pricing models with counts */\n pricingModels: Array<FacetCount>;\n /** Rating distribution */\n ratingDistribution?: Maybe<ProductRatingDistribution>;\n /** Available subtypes with counts */\n subTypes: Array<FacetCount>;\n /** Available types with counts */\n types: Array<FacetCount>;\n};\n\n/**\n * Unified filter input for browsing/searching store products.\n * All filters combine with AND logic - search is treated as a filter.\n */\nexport type StoreFilterInput = {\n /** Filter by author name (partial match) */\n authorName?: InputMaybe<Scalars['String']['input']>;\n /** Filter by brand (physical products) */\n brand?: InputMaybe<Scalars['String']['input']>;\n /** Filter by multiple categories (OR within this filter) */\n categories?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Filter by exact category match (e.g., \"Customer Support\", \"Notification\") */\n category?: InputMaybe<Scalars['String']['input']>;\n /**\n * Filter by compatible product (e.g., \"workspaces\", \"fluidgrids\", \"bigconsole\")\n * Products must be compatible with this product.\n */\n compatibleWith?: InputMaybe<Scalars['String']['input']>;\n /** Filter only featured products */\n featured?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter products that are in stock (physical products) */\n inStock?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by license type (e.g., \"MIT\", \"Apache-2.0\") */\n license?: InputMaybe<Scalars['String']['input']>;\n /** Filter by multiple licenses (OR within this filter) */\n licenses?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Filter by maximum price (inclusive) */\n maxPrice?: InputMaybe<Scalars['Float']['input']>;\n /** Filter by minimum download count */\n minDownloads?: InputMaybe<Scalars['Int']['input']>;\n /** Filter by minimum platform version compatibility */\n minPlatformVersion?: InputMaybe<Scalars['String']['input']>;\n /** Filter by minimum price (inclusive) */\n minPrice?: InputMaybe<Scalars['Float']['input']>;\n /** Filter by minimum rating (1.0 - 5.0, inclusive) */\n minRating?: InputMaybe<Scalars['Float']['input']>;\n /** Filter by nature: DIGITAL or PHYSICAL */\n nature?: InputMaybe<ProductNature>;\n /** Filter by pricing model (FREE, PAID_ONETIME, SUBSCRIPTION) */\n pricingModel?: InputMaybe<PricingModel>;\n /** Filter by multiple pricing models (OR within this filter) */\n pricingModels?: InputMaybe<Array<PricingModel>>;\n /** Filter by publisher ID */\n publisherId?: InputMaybe<Scalars['String']['input']>;\n /** Filter products that require shipping */\n requiresShipping?: InputMaybe<Scalars['Boolean']['input']>;\n /**\n * Full-text search query. Searches across:\n * - name (highest priority)\n * - description\n * - tags\n * - authorName, category (lowest priority)\n * Uses PostgreSQL tsvector with weighted ranking.\n */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by product status (defaults to PUBLISHED for consumer queries) */\n status?: InputMaybe<ProductStatus>;\n /**\n * Filter by type-specific subtype.\n * Examples:\n * - For AGENT: \"task_automation\", \"conversational\", \"research\"\n * - For NODE: \"action\", \"trigger\", \"integration\", \"ai\"\n * - For WIDGET: \"chart\", \"metric\", \"table\", \"map\"\n */\n subType?: InputMaybe<Scalars['String']['input']>;\n /** Filter by multiple subtypes (OR within this filter) */\n subTypes?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Filter by tags - products must have ALL specified tags (AND logic) */\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Filter by tags - products must have ANY of specified tags (OR logic) */\n tagsAny?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Filter by product type (AGENT, NODE, WIDGET, WORKFLOW, etc.) */\n type?: InputMaybe<ProductType>;\n /** Filter by multiple product types (OR within this filter) */\n types?: InputMaybe<Array<ProductType>>;\n /** Filter by required integration (e.g., \"slack\", \"sendgrid\") */\n usesIntegration?: InputMaybe<Scalars['String']['input']>;\n /** Filter by multiple integrations - must use ALL (AND logic) */\n usesIntegrations?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport enum StoreInstallationStatus {\n Active = 'ACTIVE',\n Failed = 'FAILED',\n Inactive = 'INACTIVE',\n Installing = 'INSTALLING',\n Pending = 'PENDING',\n Uninstalled = 'UNINSTALLED'\n}\n\n/** StoreItem entity reference. The actual StoreItem is defined in the Store service. In Federation 2 setup, this will be marked with @key directive. For now, this is a reference type that returns the itemId for the Gateway to resolve. */\nexport type StoreItem = {\n __typename?: 'StoreItem';\n /** The unique identifier for the store item */\n id: Scalars['ID']['output'];\n};\n\n/** Line item representing a single product in an order */\nexport type StoreLineItemInput = {\n /** Item type (DIGITAL, PHYSICAL, or BUNDLE). Defaults to DIGITAL if not provided. */\n itemType?: InputMaybe<Scalars['String']['input']>;\n /** Product name at time of purchase (for historical accuracy) */\n name: Scalars['String']['input'];\n /** Pricing model for subscription awareness (FREE, PAID_ONETIME, SUBSCRIPTION) */\n pricingModel?: InputMaybe<Scalars['String']['input']>;\n /** Store product ID */\n productId: Scalars['String']['input'];\n /** Quantity of this item */\n quantity: Scalars['Int']['input'];\n /** Subtotal for this line item (unitPrice * quantity) */\n subtotal: Scalars['Float']['input'];\n /** Unit price for one item (before quantity) */\n unitPrice: Scalars['Float']['input'];\n /** Product variant ID if applicable */\n variantId?: InputMaybe<Scalars['String']['input']>;\n /** Product version at time of purchase */\n version?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** External entity stub for StoreOrder from store-svc. Federation gateway will resolve full StoreOrder data from store-svc. Used by: BillingAccount.storeOrders (if extended), Transaction.storeOrder */\nexport type StoreOrder = {\n __typename?: 'StoreOrder';\n appliedEntitlementId?: Maybe<Scalars['String']['output']>;\n /** Billing account for payment */\n billingAccountId: Scalars['String']['output'];\n /** Billing order ID (link to billing service order) */\n billingOrderId?: Maybe<Scalars['String']['output']>;\n /** Context JSON (must include workspace_id) */\n context: Scalars['JSON']['output'];\n createdAt: Scalars['DateTime']['output'];\n /**\n * Currency captured when the store order was created.\n * Billing may still convert at payment time, but this is the canonical\n * order currency for checkout display and reconciliation.\n */\n currency: Scalars['String']['output'];\n /** Fulfillment tracking for physical orders */\n fulfillment?: Maybe<OrderFulfillment>;\n id: Scalars['ID']['output'];\n /** Array of line items in this order */\n lineItems: Scalars['JSON']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** When order was fulfilled (null if not yet processed) */\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n /** When payment was completed (null if still pending) */\n purchasedAt?: Maybe<Scalars['DateTime']['output']>;\n status: OrderStatus;\n /**\n * Total product cost (sum of line items)\n * Note: Currency, tax, and final billing amount handled by billing service\n */\n total: Scalars['Float']['output'];\n transaction?: Maybe<Transaction>;\n /** Transaction ID from billing service (set after payment) */\n transactionId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n /** User who made the purchase */\n userId: Scalars['String']['output'];\n};\n\n/** Paginated store orders result */\nexport type StoreOrdersResult = {\n __typename?: 'StoreOrdersResult';\n orders: Array<StoreOrder>;\n total: Scalars['Int']['output'];\n};\n\n/** Pagination input for store queries */\nexport type StorePaginationInput = {\n /** Cursor for cursor-based pagination (alternative to offset) */\n cursor?: InputMaybe<Scalars['String']['input']>;\n /** Number of items to return (default: 20, max: 100) */\n limit?: InputMaybe<Scalars['Int']['input']>;\n /** Number of items to skip (for offset pagination) */\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** External entity stub for StoreProduct from store-svc. Federation gateway will resolve full StoreProduct data from store-svc. Used by: SubscriptionEntitlement.storeProduct */\nexport type StoreProduct = {\n __typename?: 'StoreProduct';\n /** Allow orders when out of stock (physical products) */\n allowBackorder?: Maybe<Scalars['Boolean']['output']>;\n /** Author/publisher display name (from manifest.author.name) */\n authorName?: Maybe<Scalars['String']['output']>;\n /** Brand name (physical products) */\n brand?: Maybe<Scalars['String']['output']>;\n category?: Maybe<Scalars['String']['output']>;\n /**\n * Compatible products (from manifest.compatibility.products)\n * Examples: [\"fluidgrids\", \"workspaces\", \"bigconsole\", \"botlit\"]\n */\n compatibleProducts: Array<Scalars['String']['output']>;\n content?: Maybe<Scalars['JSON']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n /** Country of origin ISO code (physical products) */\n countryOfOrigin?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n /** Dimension unit (CENTIMETER, INCH, METER) */\n dimensionUnit?: Maybe<DimensionUnit>;\n documentationUrl?: Maybe<Scalars['String']['output']>;\n downloads: Scalars['Int']['output'];\n entitlements: Array<ProductEntitlement>;\n featured: Scalars['Boolean']['output'];\n /** Product height (physical products) */\n height?: Maybe<Scalars['Float']['output']>;\n icon?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n /**\n * Integration dependencies (from manifest.dependencies.integrations)\n * Examples: [\"slack\", \"sendgrid\", \"zendesk\", \"salesforce\"]\n */\n integrationDeps: Array<Scalars['String']['output']>;\n /**\n * Whether this product is already purchased by the current billing account.\n * Computed field based on billingAccountId context.\n */\n isPurchased?: Maybe<Scalars['Boolean']['output']>;\n /** Product length (physical products) */\n length?: Maybe<Scalars['Float']['output']>;\n /** License type (from manifest.license, e.g., \"MIT\", \"Apache-2.0\") */\n license?: Maybe<Scalars['String']['output']>;\n longDescription?: Maybe<Scalars['String']['output']>;\n /** Alert threshold for low stock (physical products) */\n lowStockThreshold?: Maybe<Scalars['Int']['output']>;\n /** Complete manifest.json stored as JSON (source of truth from DevPortal) */\n manifest?: Maybe<Scalars['JSON']['output']>;\n /** Manifest schema version (e.g., \"1.0\") */\n manifestVersion?: Maybe<Scalars['String']['output']>;\n /** Manufacturer name (physical products) */\n manufacturer?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Minimum platform version required (from manifest.compatibility.minVersion) */\n minPlatformVersion?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n /** Nature of the product - DIGITAL (downloadable) or PHYSICAL (requires shipping) */\n nature: ProductNature;\n orders: Array<StoreOrder>;\n price: Scalars['Float']['output'];\n pricingModel: PricingModel;\n productId?: Maybe<Scalars['String']['output']>;\n publishedAt?: Maybe<Scalars['DateTime']['output']>;\n publisher?: Maybe<Publisher>;\n publisherId: Scalars['String']['output'];\n rating?: Maybe<Scalars['Float']['output']>;\n rejectedReason?: Maybe<Scalars['String']['output']>;\n repositoryUrl?: Maybe<Scalars['String']['output']>;\n /**\n * Required permissions (from manifest.permissions)\n * Examples: [\"network.outbound\", \"database.write\", \"notification.email\"]\n */\n requiredPermissions: Array<Scalars['String']['output']>;\n /** Whether this product requires shipping (physical products) */\n requiresShipping?: Maybe<Scalars['Boolean']['output']>;\n /** Return policy details (physical products) */\n returnPolicy?: Maybe<Scalars['String']['output']>;\n reviewCount: Scalars['Int']['output'];\n reviewNotes?: Maybe<Scalars['String']['output']>;\n reviewedAt?: Maybe<Scalars['DateTime']['output']>;\n reviewedBy?: Maybe<Scalars['String']['output']>;\n reviews: Array<ProductReview>;\n screenshots: Array<Scalars['String']['output']>;\n /** Stock Keeping Unit - unique identifier for inventory (physical products) */\n sku?: Maybe<Scalars['String']['output']>;\n slug: Scalars['String']['output'];\n status: ProductStatus;\n /** Current stock quantity (physical products) */\n stockQuantity?: Maybe<Scalars['Int']['output']>;\n storeId?: Maybe<Scalars['ID']['output']>;\n /**\n * Type-specific subtype from manifest.json.\n * Examples:\n * - Agent: task_automation, conversational, research, code_assistant\n * - Node: action, transform, trigger, logic, integration, data, notification, ai\n * - Widget: chart, metric, table, map, form, text, custom\n */\n subType?: Maybe<Scalars['String']['output']>;\n submittedAt?: Maybe<Scalars['DateTime']['output']>;\n submittedBy?: Maybe<Scalars['String']['output']>;\n subscriptionEntitlements: Array<StoreSubscriptionEntitlement>;\n tags: Array<Scalars['String']['output']>;\n /** Whether to track inventory levels (physical products) */\n trackInventory?: Maybe<Scalars['Boolean']['output']>;\n type: ProductType;\n updatedAt: Scalars['DateTime']['output'];\n /** Product variants (for physical products with size/color options) */\n variants: Array<ProductVariant>;\n videoUrls: Array<Scalars['String']['output']>;\n viewCount: Scalars['Int']['output'];\n /** Warranty information (physical products) */\n warrantyInfo?: Maybe<Scalars['String']['output']>;\n /** Product weight (physical products) */\n weight?: Maybe<Scalars['Float']['output']>;\n /** Weight unit (GRAM, KILOGRAM, OUNCE, POUND) */\n weightUnit?: Maybe<WeightUnit>;\n /** Product width (physical products) */\n width?: Maybe<Scalars['Float']['output']>;\n zipFileUrl?: Maybe<Scalars['String']['output']>;\n};\n\n/** Input for fetching store product details */\nexport type StoreProductDetailsInput = {\n /** Product ID (required if slug not provided) */\n id?: InputMaybe<Scalars['ID']['input']>;\n /** Include related products (default: true) */\n includeRelated?: InputMaybe<Scalars['Boolean']['input']>;\n /** Include reviews in response (default: true) */\n includeReviews?: InputMaybe<Scalars['Boolean']['input']>;\n /** Include version history (default: true) */\n includeVersions?: InputMaybe<Scalars['Boolean']['input']>;\n /** Maximum number of related products (default: 6) */\n relatedLimit?: InputMaybe<Scalars['Int']['input']>;\n /** Maximum number of reviews to return (default: 10) */\n reviewsLimit?: InputMaybe<Scalars['Int']['input']>;\n /** Product slug (required if id not provided) */\n slug?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Comprehensive result for product details page */\nexport type StoreProductDetailsResult = {\n __typename?: 'StoreProductDetailsResult';\n /** Whether current user has purchased this product */\n isPurchased: Scalars['Boolean']['output'];\n /** The store product with all details */\n product: StoreProduct;\n /** Publisher/author information */\n publisher?: Maybe<Publisher>;\n /** Rating breakdown by stars */\n ratingDistribution?: Maybe<ProductRatingDistribution>;\n /** Related products based on category and tags */\n relatedProducts: Array<StoreProduct>;\n /** Product reviews (sorted by helpful count, then date) */\n reviews: Array<ProductReview>;\n /** Total number of reviews for pagination */\n reviewsCount: Scalars['Int']['output'];\n /** Current user's entitlement (if any) */\n userEntitlement?: Maybe<ProductEntitlement>;\n /** Current user's review (if any) */\n userReview?: Maybe<ProductReview>;\n};\n\n/** Sort options for store products */\nexport enum StoreSortBy {\n Downloads = 'DOWNLOADS',\n Featured = 'FEATURED',\n NameAsc = 'NAME_ASC',\n NameDesc = 'NAME_DESC',\n Newest = 'NEWEST',\n Oldest = 'OLDEST',\n PriceHigh = 'PRICE_HIGH',\n PriceLow = 'PRICE_LOW',\n Rating = 'RATING',\n Relevance = 'RELEVANCE'\n}\n\n/** Links a store product to a subscription plan for entitlements */\nexport type StoreSubscriptionEntitlement = {\n __typename?: 'StoreSubscriptionEntitlement';\n accessType: EntitlementAccessType;\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n discountPercentage?: Maybe<Scalars['Float']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n planId: Scalars['String']['output'];\n storeProduct?: Maybe<StoreProduct>;\n storeProductId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type StoreSubscriptionEntitlementInput = {\n accessType: EntitlementAccessType;\n discountPercentage?: InputMaybe<Scalars['Float']['input']>;\n planId: Scalars['String']['input'];\n};\n\nexport enum StoreType {\n Enterprise = 'ENTERPRISE',\n Private = 'PRIVATE',\n Public = 'PUBLIC'\n}\n\n/**\n * Input for submitting a contact inquiry from a public website.\n * reCAPTCHA token is required for bot protection.\n */\nexport type SubmitContactInquiryInput = {\n /** Company name (optional) */\n company?: InputMaybe<Scalars['String']['input']>;\n /** Email address for follow-up */\n email: Scalars['String']['input'];\n /** Detailed message */\n message: Scalars['String']['input'];\n /** Extra metadata (browser info, referrer URL, etc.) */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Full name of the person submitting the inquiry */\n name: Scalars['String']['input'];\n /** Platform product ID (identifies which product website the form was submitted from) */\n productId?: InputMaybe<Scalars['String']['input']>;\n /** reCAPTCHA token for bot protection (verified server-side using product's secret key) */\n recaptchaToken: Scalars['String']['input'];\n /** Subject of the inquiry */\n subject: Scalars['String']['input'];\n};\n\nexport type SubmitContactInquiryResult = {\n __typename?: 'SubmitContactInquiryResult';\n /** The created inquiry (if successful) */\n inquiry?: Maybe<ContactInquiry>;\n /** Error message (if failed) */\n message?: Maybe<Scalars['String']['output']>;\n /** Whether the submission was successful */\n success: Scalars['Boolean']['output'];\n};\n\nexport type SubmitPublisherVerificationInput = {\n contactEmail: Scalars['String']['input'];\n contactPhone?: InputMaybe<Scalars['String']['input']>;\n country: Scalars['String']['input'];\n documents: Array<PublisherVerificationDocumentInput>;\n legalName: Scalars['String']['input'];\n supportUrl?: InputMaybe<Scalars['String']['input']>;\n taxId: Scalars['String']['input'];\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type SubmitSatisfactionSurveyInput = {\n comment?: InputMaybe<Scalars['String']['input']>;\n feedbackType?: InputMaybe<FeedbackCategory>;\n rating: Scalars['Int']['input'];\n surveyId: Scalars['ID']['input'];\n};\n\nexport type SubscribeInput = {\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n email: Scalars['String']['input'];\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n platformProductId: Scalars['String']['input'];\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type Subscription = {\n __typename?: 'Subscription';\n _emptyBilling?: Maybe<Scalars['String']['output']>;\n _emptyDevportal?: Maybe<Scalars['String']['output']>;\n _emptyI18n?: Maybe<Scalars['String']['output']>;\n /**\n * Placeholder field to allow empty Subscription type extension.\n * Each module has a unique placeholder to avoid naming conflicts across subgraphs.\n */\n _emptyNewsletter?: Maybe<Scalars['String']['output']>;\n /** Placeholder for federation compatibility (deprecated) */\n _emptyNotification?: Maybe<Scalars['String']['output']>;\n /**\n * Placeholder field to allow empty Subscription type extension.\n * Each module has a unique placeholder to avoid naming conflicts across subgraphs.\n */\n _emptySupport?: Maybe<Scalars['String']['output']>;\n _emptyTours?: Maybe<Scalars['String']['output']>;\n /**\n * Placeholder subscription (extended by modules)\n * @rbac(public: true, scopeType: \"global\")\n */\n _placeholder?: Maybe<Scalars['String']['output']>;\n agentStatusChanged: AgentProfile;\n /**\n * Subscribe to channel health changes.\n * Emits when a channel's connectionHealth status changes (HEALTHY → DEGRADED, etc.)\n *\n * Use cases:\n * - Real-time dashboard updates showing channel health\n * - Alerting systems monitoring channel availability\n * - Auto-failover logic reacting to health degradation\n */\n channelHealthChanged: ChannelHealthUpdate;\n coverageChanged: CoverageChangeEvent;\n dependencyTriggered: DependencyTriggeredUpdate;\n executionUpdated: ExecutionUpdate;\n importJobProgress: ImportJobProgressEvent;\n jobStatusUpdated: JobStatusUpdate;\n metricsUpdated: SchedulerMetricsUpdate;\n newTicketInQueue: SupportTicket;\n /** Subscribe to new notifications for the authenticated user */\n notificationReceived?: Maybe<Notification>;\n /**\n * Subscribe to delivery status updates for a notification.\n * Useful for real-time tracking of delivery progress.\n */\n onDeliveryStatusUpdate: ChannelDeliveryStatusUpdate;\n ticketMessageAdded: SupportMessage;\n ticketUpdated: SupportTicket;\n translationStatusChanged: TranslationStatusEvent;\n translationUpdated: TranslationUpdateEvent;\n /** Subscribe to unread count changes for the authenticated user */\n unreadCountUpdated?: Maybe<Scalars['Int']['output']>;\n};\n\n\nexport type SubscriptionChannelHealthChangedArgs = {\n organizationId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionCoverageChangedArgs = {\n productCode: Scalars['String']['input'];\n};\n\n\nexport type SubscriptionDependencyTriggeredArgs = {\n scheduleId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\nexport type SubscriptionExecutionUpdatedArgs = {\n executionId?: InputMaybe<Scalars['ID']['input']>;\n scheduleId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\nexport type SubscriptionImportJobProgressArgs = {\n jobId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionJobStatusUpdatedArgs = {\n scheduleId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n\nexport type SubscriptionNewTicketInQueueArgs = {\n priority?: InputMaybe<SupportTicketPriority>;\n};\n\n\nexport type SubscriptionNotificationReceivedArgs = {\n userId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionOnDeliveryStatusUpdateArgs = {\n notificationId: Scalars['ID']['input'];\n organizationId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionTicketMessageAddedArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionTicketUpdatedArgs = {\n ticketId: Scalars['ID']['input'];\n};\n\n\nexport type SubscriptionTranslationStatusChangedArgs = {\n productCode?: InputMaybe<Scalars['String']['input']>;\n};\n\n\nexport type SubscriptionTranslationUpdatedArgs = {\n languageCode?: InputMaybe<Scalars['String']['input']>;\n moduleCode?: InputMaybe<Scalars['String']['input']>;\n namespaceCode?: InputMaybe<Scalars['String']['input']>;\n productCode?: InputMaybe<Scalars['String']['input']>;\n};\n\n\nexport type SubscriptionUnreadCountUpdatedArgs = {\n userId: Scalars['ID']['input'];\n};\n\n/** SubscriptionEntitlement defines what store items a plan grants access to. This allows plans to provide discounts or free access to store items. */\nexport type SubscriptionEntitlement = {\n __typename?: 'SubscriptionEntitlement';\n /** The type of access granted (FREE_ACCESS or DISCOUNT) */\n accessType: EntitlementAccessType;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** When the entitlement was created */\n createdAt: Scalars['DateTime']['output'];\n /** Discount percentage if accessType is DISCOUNT (0-100) */\n discountPercentage?: Maybe<Scalars['Float']['output']>;\n /** Unique identifier */\n id: Scalars['ID']['output'];\n /** Reference to the store item entity (resolved via Federation) */\n item?: Maybe<StoreItem>;\n /** Reference to the store item (external entity from Store service) Resolved via Federation 2 Gateway */\n itemId: Scalars['String']['output'];\n /** The plan that grants this entitlement */\n plan: Plan;\n /** Reference to the plan that grants this entitlement */\n planId: Scalars['String']['output'];\n /** When the entitlement was last updated */\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type SubscriptionFeatures = {\n __typename?: 'SubscriptionFeatures';\n addon?: Maybe<Addon>;\n addonId?: Maybe<Scalars['ID']['output']>;\n context?: Maybe<Scalars['JSON']['output']>;\n id?: Maybe<Scalars['ID']['output']>;\n plan?: Maybe<Plan>;\n planId?: Maybe<Scalars['ID']['output']>;\n quota?: Maybe<Quota>;\n quotaId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport type SubscriptionHistory = {\n __typename?: 'SubscriptionHistory';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n fromStatus: SubscriptionStatus;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n reason?: Maybe<Scalars['String']['output']>;\n subscription: BillingSubscription;\n subscriptionId: Scalars['ID']['output'];\n toStatus: SubscriptionStatus;\n};\n\nexport enum SubscriptionInterval {\n Daily = 'DAILY',\n Monthly = 'MONTHLY',\n Weekly = 'WEEKLY',\n Yearly = 'YEARLY'\n}\n\nexport type SubscriptionQuotaUsageWithFilter = {\n __typename?: 'SubscriptionQuotaUsageWithFilter';\n page: Scalars['Int']['output'];\n pageSize: Scalars['Int']['output'];\n totalCount: Scalars['Int']['output'];\n totalPages: Scalars['Int']['output'];\n usages: Array<Usage>;\n};\n\nexport enum SubscriptionStatus {\n Active = 'active',\n Canceled = 'canceled',\n Expired = 'expired',\n Incomplete = 'incomplete',\n IncompleteExpired = 'incomplete_expired',\n PastDue = 'past_due',\n Paused = 'paused',\n Trialing = 'trialing',\n Upgraded = 'upgraded'\n}\n\nexport type SubscriptionWithQuotas = {\n __typename?: 'SubscriptionWithQuotas';\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['String']['output'];\n quotas: Array<QuotaAssignmentSummary>;\n status: SubscriptionStatus;\n};\n\nexport type SupportAnalytics = {\n __typename?: 'SupportAnalytics';\n categoryBreakdown: Array<CategoryBreakdown>;\n priorityBreakdown: Array<PriorityBreakdown>;\n sourceBreakdown: Array<SourceBreakdown>;\n stats: SupportStats;\n ticketTrends: Array<TicketTrend>;\n};\n\nexport type SupportAttachmentFile = {\n __typename?: 'SupportAttachmentFile';\n downloadUrl: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n mimeType: Scalars['String']['output'];\n name: Scalars['String']['output'];\n size: Scalars['BigInt']['output'];\n};\n\nexport type SupportAttachmentPresignedPart = {\n __typename?: 'SupportAttachmentPresignedPart';\n partNumber: Scalars['Int']['output'];\n url: Scalars['String']['output'];\n};\n\nexport type SupportAttachmentUploadSession = {\n __typename?: 'SupportAttachmentUploadSession';\n folderId: Scalars['ID']['output'];\n folderPath: Scalars['String']['output'];\n partSize: Scalars['Int']['output'];\n presignedUrls: Array<SupportAttachmentPresignedPart>;\n sessionId: Scalars['ID']['output'];\n totalParts: Scalars['Int']['output'];\n uploadType: Scalars['String']['output'];\n uploadUrl?: Maybe<Scalars['String']['output']>;\n};\n\n/**\n * Support-specific context output type.\n * Returns the stored context for each record.\n * Uses a unique type name to avoid federation conflicts with other services.\n */\nexport type SupportContext = {\n __typename?: 'SupportContext';\n custom?: Maybe<Scalars['JSON']['output']>;\n organizationId?: Maybe<Scalars['ID']['output']>;\n productId?: Maybe<Scalars['ID']['output']>;\n projectId?: Maybe<Scalars['ID']['output']>;\n tenantId?: Maybe<Scalars['ID']['output']>;\n userId?: Maybe<Scalars['ID']['output']>;\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\n/**\n * Context filter input for querying records by context.\n * Supports exact match filtering on context fields.\n * Note: tenantId filtering is applied automatically from context.tenant?.id.\n */\nexport type SupportContextFilterInput = {\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n productId?: InputMaybe<Scalars['ID']['input']>;\n projectId?: InputMaybe<Scalars['ID']['input']>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\n/**\n * Support context input for filtering and scoping data.\n * All fields are optional and can be extended as needed.\n * Note: tenantId is derived from context.tenant?.id (gateway header), not from client input.\n */\nexport type SupportContextInput = {\n custom?: InputMaybe<Scalars['JSON']['input']>;\n organizationId?: InputMaybe<Scalars['ID']['input']>;\n productId?: InputMaybe<Scalars['ID']['input']>;\n projectId?: InputMaybe<Scalars['ID']['input']>;\n userId?: InputMaybe<Scalars['ID']['input']>;\n workspaceId?: InputMaybe<Scalars['ID']['input']>;\n};\n\nexport enum SupportExportFormat {\n Csv = 'CSV',\n Json = 'JSON',\n Po = 'PO',\n Xliff = 'XLIFF',\n Xlsx = 'XLSX'\n}\n\nexport type SupportMessage = {\n __typename?: 'SupportMessage';\n attachmentCount: Scalars['Int']['output'];\n attachments: Array<Scalars['String']['output']>;\n authorId: Scalars['String']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, projectId, etc.) */\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n isInternal: Scalars['Boolean']['output'];\n message: Scalars['String']['output'];\n ticket: SupportTicket;\n ticketId: Scalars['String']['output'];\n type: MessageType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type SupportPaginationInput = {\n cursor?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n page?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type SupportStats = {\n __typename?: 'SupportStats';\n averageFirstResponseTimeHours?: Maybe<Scalars['Float']['output']>;\n averageResolutionTimeHours?: Maybe<Scalars['Float']['output']>;\n closedTickets: Scalars['Int']['output'];\n inProgressTickets: Scalars['Int']['output'];\n newTickets: Scalars['Int']['output'];\n openTickets: Scalars['Int']['output'];\n reopenedTickets: Scalars['Int']['output'];\n resolvedTickets: Scalars['Int']['output'];\n slaComplianceRate?: Maybe<Scalars['Float']['output']>;\n totalTickets: Scalars['Int']['output'];\n waitingOnCustomerTickets: Scalars['Int']['output'];\n};\n\nexport type SupportTicket = {\n __typename?: 'SupportTicket';\n assignedTo?: Maybe<Scalars['String']['output']>;\n category?: Maybe<SupportTicketCategory>;\n categoryId?: Maybe<Scalars['String']['output']>;\n closedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Contextual IDs for filtering and scoping (workspaceId, userId, projectId, etc.) */\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n customFields?: Maybe<Scalars['JSON']['output']>;\n description: Scalars['String']['output'];\n dueAt?: Maybe<Scalars['DateTime']['output']>;\n escalationLevel: Scalars['Int']['output'];\n firstResponseAt?: Maybe<Scalars['DateTime']['output']>;\n firstResponseDue?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n linkedTickets: Array<TicketLink>;\n messages: Array<SupportMessage>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n priority: SupportTicketPriority;\n reopenedAt?: Maybe<Scalars['DateTime']['output']>;\n resolutionDue?: Maybe<Scalars['DateTime']['output']>;\n resolvedAt?: Maybe<Scalars['DateTime']['output']>;\n slaBreachStatus: SlaBreachStatus;\n slaPausedAt?: Maybe<Scalars['DateTime']['output']>;\n slaPausedSeconds: Scalars['Int']['output'];\n slaPolicy?: Maybe<SlaPolicy>;\n slaPolicyId?: Maybe<Scalars['String']['output']>;\n source: TicketSource;\n status: SupportTicketStatus;\n subject: Scalars['String']['output'];\n surveys: Array<CustomerSatisfactionSurvey>;\n tags: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n ticketCategory?: Maybe<TicketCategory>;\n ticketNumber: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n user: User;\n userId: Scalars['String']['output'];\n workspaceId?: Maybe<Scalars['String']['output']>;\n};\n\nexport enum SupportTicketCategory {\n BillingAccount = 'BILLING_ACCOUNT',\n BugReport = 'BUG_REPORT',\n FeatureRequest = 'FEATURE_REQUEST',\n GeneralSupport = 'GENERAL_SUPPORT',\n TechnicalSupport = 'TECHNICAL_SUPPORT'\n}\n\nexport type SupportTicketConnection = {\n __typename?: 'SupportTicketConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<SupportTicket>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type SupportTicketFilterInput = {\n assignedTo?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<SupportTicketCategory>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n /** Filter by operation context (workspaceId, userId, projectId, etc.) */\n context?: InputMaybe<SupportContextFilterInput>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n priorities?: InputMaybe<Array<SupportTicketPriority>>;\n priority?: InputMaybe<SupportTicketPriority>;\n slaBreachStatus?: InputMaybe<SlaBreachStatus>;\n source?: InputMaybe<TicketSource>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<SupportTicketStatus>;\n statuses?: InputMaybe<Array<SupportTicketStatus>>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n userId?: InputMaybe<Scalars['String']['input']>;\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport enum SupportTicketPriority {\n Critical = 'CRITICAL',\n High = 'HIGH',\n Low = 'LOW',\n Normal = 'NORMAL'\n}\n\nexport enum SupportTicketStatus {\n Closed = 'CLOSED',\n InProgress = 'IN_PROGRESS',\n New = 'NEW',\n Reopened = 'REOPENED',\n Resolved = 'RESOLVED',\n WaitingCustomer = 'WAITING_CUSTOMER'\n}\n\nexport type SuppressionFilterInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n reason?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for syncing channel users */\nexport type SyncChannelUsersInput = {\n /** Channel ID */\n channelId: Scalars['ID']['input'];\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /** Force refresh (ignore cache) */\n forceRefresh?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type SyncTourStepInput = {\n actions?: InputMaybe<Scalars['JSON']['input']>;\n content: Scalars['String']['input'];\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n customData?: InputMaybe<Scalars['JSON']['input']>;\n id?: InputMaybe<Scalars['ID']['input']>;\n placement: TourStepPlacement;\n requireInteraction?: InputMaybe<Scalars['Boolean']['input']>;\n skipConditions?: InputMaybe<Scalars['JSON']['input']>;\n stepOrder: Scalars['Int']['input'];\n targetSelector: Scalars['String']['input'];\n targetSelectorDesktop?: InputMaybe<Scalars['String']['input']>;\n targetSelectorMobile?: InputMaybe<Scalars['String']['input']>;\n targetSelectorTablet?: InputMaybe<Scalars['String']['input']>;\n title: Scalars['String']['input'];\n waitForEvent?: InputMaybe<Scalars['String']['input']>;\n waitForSelector?: InputMaybe<Scalars['String']['input']>;\n waitForTimeout?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Input for syncing workspace from workspace layer to global layer\n * Called by wspace-workspace-svc after creating a workspace directly\n */\nexport type SyncWorkspaceFromWspaceInput = {\n /** Workspace name */\n name: Scalars['String']['input'];\n /** Organization ID */\n organizationId: Scalars['String']['input'];\n /** User ID of workspace creator/owner */\n ownerId: Scalars['String']['input'];\n /** Tenant ID */\n tenantId: Scalars['String']['input'];\n /** Workspace type (maps to PERSONAL, TEAM, ENTERPRISE) */\n type?: InputMaybe<Scalars['String']['input']>;\n /** Workspace ID (must match the ID from workspace layer) */\n workspaceId: Scalars['ID']['input'];\n};\n\n/** Response for syncWorkspaceFromWspace mutation */\nexport type SyncWorkspaceFromWspaceResponse = {\n __typename?: 'SyncWorkspaceFromWspaceResponse';\n message?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n workspaceId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TagsAndResourceTypes = {\n __typename?: 'TagsAndResourceTypes';\n /** Available resource types from usage records */\n resourceTypes: Array<Scalars['String']['output']>;\n /** Available tags from usage records */\n tags: Array<Scalars['String']['output']>;\n};\n\n/** Result of tax calculation */\nexport type TaxCalculationResult = {\n __typename?: 'TaxCalculationResult';\n /** Jurisdiction code (IN, US, EU, etc.) */\n jurisdiction: Scalars['String']['output'];\n /** Original amount before tax */\n subtotal: Scalars['Float']['output'];\n /** Calculated tax amount (in target currency) */\n taxAmount: Scalars['Float']['output'];\n /** Tax breakdown (e.g., IGST, CGST+SGST) */\n taxBreakdown?: Maybe<Scalars['JSON']['output']>;\n /** Tax rate as decimal (e.g., 0.18 for 18%) */\n taxRate: Scalars['Float']['output'];\n /** Tax type (GST, VAT, SALES_TAX, NONE) */\n taxType: Scalars['String']['output'];\n /** Total amount including tax */\n total: Scalars['Float']['output'];\n};\n\nexport type TaxRate = {\n __typename?: 'TaxRate';\n active: Scalars['Boolean']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n country: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n rate: Scalars['Float']['output'];\n state?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type TemplateFilterInput = {\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n locale?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport type TemplateNotificationResult = {\n __typename?: 'TemplateNotificationResult';\n /** The created notification objects */\n notifications: Array<Notification>;\n /** Number of notifications that failed */\n totalFailed: Scalars['Int']['output'];\n /** Total number of recipients requested */\n totalRequested: Scalars['Int']['output'];\n /** Number of notifications successfully triggered */\n totalTriggered: Scalars['Int']['output'];\n};\n\n/**\n * Tenant type stub - represents a tenant entity from the tenant service\n * This service doesn't own the Tenant model, but references it\n */\nexport type Tenant = {\n __typename?: 'Tenant';\n config?: Maybe<TenantConfig>;\n createdAt: Scalars['DateTime']['output'];\n customDomain?: Maybe<Scalars['String']['output']>;\n /**\n * Service routing endpoint for dedicated tenants\n * For SHARED tenants, this is null (uses default service)\n * For DEDICATED tenants, this points to the dedicated service instance\n */\n endpoint?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n /** Organizations belonging to this tenant */\n organizations: Array<Organization>;\n slug: Scalars['String']['output'];\n status: TenantStatus;\n type: TenantType;\n updatedAt: Scalars['DateTime']['output'];\n /** Workspaces belonging to this tenant */\n workspaces: Array<Workspace>;\n};\n\n/** Tenant configuration for regional settings, branding, and features */\nexport type TenantConfig = {\n __typename?: 'TenantConfig';\n complianceRegion?: Maybe<Scalars['String']['output']>;\n customBranding?: Maybe<Scalars['JSON']['output']>;\n dataResidency?: Maybe<Scalars['String']['output']>;\n features?: Maybe<Scalars['JSON']['output']>;\n region?: Maybe<Scalars['String']['output']>;\n};\n\n/** Filter input for querying tenants */\nexport type TenantFilterInput = {\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<TenantStatus>;\n type?: InputMaybe<TenantType>;\n};\n\n/** Paginated list of tenants */\nexport type TenantList = {\n __typename?: 'TenantList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Tenant>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\n/**\n * Lightweight tenant routing info used by gateways to decide\n * whether to proxy requests to a dedicated tenant endpoint.\n */\nexport type TenantRoutingInfo = {\n __typename?: 'TenantRoutingInfo';\n endpoint?: Maybe<Scalars['String']['output']>;\n status: TenantStatus;\n tenantId: Scalars['ID']['output'];\n type: TenantType;\n};\n\n/** Tenant status for lifecycle management */\nexport enum TenantStatus {\n Active = 'ACTIVE',\n Deleted = 'DELETED',\n Provisioning = 'PROVISIONING',\n Suspended = 'SUSPENDED'\n}\n\n/** Multi-tenancy tenant type - determines isolation model */\nexport enum TenantType {\n Dedicated = 'DEDICATED',\n Shared = 'SHARED'\n}\n\nexport type TestNewsletterResult = {\n __typename?: 'TestNewsletterResult';\n sentCount: Scalars['Int']['output'];\n sentTo: Array<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\nexport type TicketCategory = {\n __typename?: 'TicketCategory';\n articleCount: Scalars['Int']['output'];\n articles: Array<KnowledgeBaseArticle>;\n children: Array<TicketCategory>;\n color?: Maybe<Scalars['String']['output']>;\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n displayOrder: Scalars['Int']['output'];\n icon?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n parent?: Maybe<TicketCategory>;\n parentId?: Maybe<Scalars['String']['output']>;\n slaOverride?: Maybe<Scalars['JSON']['output']>;\n slug: Scalars['String']['output'];\n tenantId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type TicketCategoryConnection = {\n __typename?: 'TicketCategoryConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<TicketCategory>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type TicketCategoryFilterInput = {\n context?: InputMaybe<SupportContextFilterInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n parentId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type TicketLink = {\n __typename?: 'TicketLink';\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n fromTicket: SupportTicket;\n fromTicketId: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n linkType: LinkType;\n toTicket: SupportTicket;\n toTicketId: Scalars['String']['output'];\n};\n\nexport enum TicketSource {\n Api = 'API',\n Email = 'EMAIL',\n Import = 'IMPORT',\n InApp = 'IN_APP',\n Phone = 'PHONE',\n Website = 'WEBSITE'\n}\n\nexport type TicketTemplate = {\n __typename?: 'TicketTemplate';\n body: Scalars['String']['output'];\n category: SupportTicketCategory;\n context?: Maybe<SupportContext>;\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n name: Scalars['String']['output'];\n priority: SupportTicketPriority;\n subject: Scalars['String']['output'];\n tags: Array<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type TicketTemplateConnection = {\n __typename?: 'TicketTemplateConnection';\n hasMore: Scalars['Boolean']['output'];\n nodes: Array<TicketTemplate>;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type TicketTemplateFilterInput = {\n category?: InputMaybe<SupportTicketCategory>;\n context?: InputMaybe<SupportContextFilterInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type TicketTrend = {\n __typename?: 'TicketTrend';\n count: Scalars['Int']['output'];\n date: Scalars['DateTime']['output'];\n groupBy: TrendGroupBy;\n};\n\nexport enum TimePeriod {\n Custom = 'CUSTOM',\n Last_7Days = 'LAST_7_DAYS',\n Last_30Days = 'LAST_30_DAYS',\n Last_90Days = 'LAST_90_DAYS',\n LastYear = 'LAST_YEAR'\n}\n\nexport type TokenValidationError = {\n __typename?: 'TokenValidationError';\n code: Scalars['String']['output'];\n message: Scalars['String']['output'];\n};\n\nexport type TokenValidationResponse = {\n __typename?: 'TokenValidationResponse';\n allowedWorkspaceIds?: Maybe<Array<Scalars['String']['output']>>;\n appId?: Maybe<Scalars['String']['output']>;\n delegationId?: Maybe<Scalars['String']['output']>;\n email?: Maybe<Scalars['String']['output']>;\n error?: Maybe<TokenValidationError>;\n expiresAt?: Maybe<Scalars['Int']['output']>;\n role?: Maybe<Scalars['String']['output']>;\n scopes?: Maybe<Array<Scalars['String']['output']>>;\n tokenType?: Maybe<Scalars['String']['output']>;\n userId?: Maybe<Scalars['String']['output']>;\n valid: Scalars['Boolean']['output'];\n};\n\nexport type TopChartsInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n chart: ChartType;\n country?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n window?: InputMaybe<ChartWindow>;\n};\n\nexport type TopUnpublishedItem = {\n __typename?: 'TopUnpublishedItem';\n author: Scalars['String']['output'];\n id: Scalars['String']['output'];\n thumbnail?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n type: Scalars['String']['output'];\n};\n\nexport type Tour = {\n __typename?: 'Tour';\n analytics?: Maybe<Array<TourAnalytics>>;\n completionCount: Scalars['Int']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n desktopConfig?: Maybe<Scalars['JSON']['output']>;\n displayOrder: Scalars['Int']['output'];\n endDate?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n mobileConfig?: Maybe<Scalars['JSON']['output']>;\n moduleId?: Maybe<Scalars['String']['output']>;\n name: Scalars['String']['output'];\n pageId?: Maybe<Scalars['String']['output']>;\n priority: Scalars['Int']['output'];\n productId: Scalars['String']['output'];\n schedules?: Maybe<Array<TourSchedule>>;\n skipCount: Scalars['Int']['output'];\n slug: Scalars['String']['output'];\n startDate?: Maybe<Scalars['DateTime']['output']>;\n status: TourStatus;\n steps: Array<TourStep>;\n tabletConfig?: Maybe<Scalars['JSON']['output']>;\n triggerConfig?: Maybe<Scalars['JSON']['output']>;\n triggerType: TourTriggerType;\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n userProgress?: Maybe<Array<TourUserProgress>>;\n version: Scalars['Int']['output'];\n viewCount: Scalars['Int']['output'];\n};\n\nexport type TourAnalytics = {\n __typename?: 'TourAnalytics';\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n deviceType?: Maybe<DeviceType>;\n duration?: Maybe<Scalars['Int']['output']>;\n eventType: TourAnalyticsEventType;\n id: Scalars['ID']['output'];\n ipHash?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n moduleId?: Maybe<Scalars['String']['output']>;\n pageId?: Maybe<Scalars['String']['output']>;\n productId?: Maybe<Scalars['String']['output']>;\n sessionId?: Maybe<Scalars['String']['output']>;\n stepId?: Maybe<Scalars['String']['output']>;\n stepOrder?: Maybe<Scalars['Int']['output']>;\n timestamp: Scalars['DateTime']['output'];\n tour: Tour;\n tourId: Scalars['String']['output'];\n userAgent?: Maybe<Scalars['String']['output']>;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TourAnalyticsAggregation = {\n __typename?: 'TourAnalyticsAggregation';\n averageCompletionRate: Scalars['Float']['output'];\n averageDuration: Scalars['Float']['output'];\n byDeviceType: Array<DeviceTypeStats>;\n byEventType: Array<TourEventTypeStats>;\n totalCompletions: Scalars['Int']['output'];\n totalSkips: Scalars['Int']['output'];\n totalViews: Scalars['Int']['output'];\n};\n\nexport enum TourAnalyticsEventType {\n Interaction = 'INTERACTION',\n StepCompleted = 'STEP_COMPLETED',\n StepSkipped = 'STEP_SKIPPED',\n StepViewed = 'STEP_VIEWED',\n TourCompleted = 'TOUR_COMPLETED',\n TourDismissed = 'TOUR_DISMISSED',\n TourSkipped = 'TOUR_SKIPPED',\n TourStarted = 'TOUR_STARTED'\n}\n\nexport type TourBatchAnalyticsResult = {\n __typename?: 'TourBatchAnalyticsResult';\n events: Array<TourAnalytics>;\n failedCount: Scalars['Int']['output'];\n successCount: Scalars['Int']['output'];\n};\n\nexport type TourContextInput = {\n deviceType?: InputMaybe<DeviceType>;\n moduleId?: InputMaybe<Scalars['String']['input']>;\n pageId?: InputMaybe<Scalars['String']['input']>;\n productId: Scalars['String']['input'];\n};\n\nexport type TourEventTypeStats = {\n __typename?: 'TourEventTypeStats';\n count: Scalars['Int']['output'];\n eventType: TourAnalyticsEventType;\n};\n\nexport type TourFilters = {\n /** Filter by operation context (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextFilterInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n moduleId?: InputMaybe<Scalars['String']['input']>;\n pageId?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<TourStatus>;\n triggerType?: InputMaybe<TourTriggerType>;\n};\n\nexport type TourMedia = {\n __typename?: 'TourMedia';\n altText?: Maybe<Scalars['String']['output']>;\n caption?: Maybe<Scalars['String']['output']>;\n cdnUrl?: Maybe<Scalars['String']['output']>;\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n description?: Maybe<Scalars['String']['output']>;\n duration?: Maybe<Scalars['Int']['output']>;\n height?: Maybe<Scalars['Int']['output']>;\n id: Scalars['ID']['output'];\n isPublic: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n mimeType: Scalars['String']['output'];\n name: Scalars['String']['output'];\n size: Scalars['Int']['output'];\n storagePath: Scalars['String']['output'];\n storageUrl: Scalars['String']['output'];\n tourSteps?: Maybe<Array<TourStepMedia>>;\n transcript?: Maybe<Scalars['String']['output']>;\n type: TourMediaType;\n updatedAt: Scalars['DateTime']['output'];\n uploadedBy?: Maybe<Scalars['String']['output']>;\n width?: Maybe<Scalars['Int']['output']>;\n};\n\nexport enum TourMediaType {\n Audio = 'AUDIO',\n Document = 'DOCUMENT',\n Image = 'IMAGE',\n Video = 'VIDEO'\n}\n\nexport type TourPagination = {\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type TourSchedule = {\n __typename?: 'TourSchedule';\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n endDate?: Maybe<Scalars['DateTime']['output']>;\n executionCount: Scalars['Int']['output'];\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n lastExecutedAt?: Maybe<Scalars['DateTime']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n nextExecutionAt?: Maybe<Scalars['DateTime']['output']>;\n recurrenceRule?: Maybe<Scalars['String']['output']>;\n startDate: Scalars['DateTime']['output'];\n timezone: Scalars['String']['output'];\n tour: Tour;\n tourId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport type TourStatSummary = {\n __typename?: 'TourStatSummary';\n completionCount: Scalars['Int']['output'];\n completionRate: Scalars['Float']['output'];\n skipCount: Scalars['Int']['output'];\n tourId: Scalars['String']['output'];\n tourName: Scalars['String']['output'];\n viewCount: Scalars['Int']['output'];\n};\n\nexport enum TourStatus {\n Archived = 'ARCHIVED',\n Draft = 'DRAFT',\n Published = 'PUBLISHED',\n Scheduled = 'SCHEDULED'\n}\n\nexport type TourStep = {\n __typename?: 'TourStep';\n actions?: Maybe<Scalars['JSON']['output']>;\n content: Scalars['String']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n customData?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n media?: Maybe<Array<TourStepMedia>>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n placement: TourStepPlacement;\n requireInteraction: Scalars['Boolean']['output'];\n skipConditions?: Maybe<Scalars['JSON']['output']>;\n stepOrder: Scalars['Int']['output'];\n targetSelector?: Maybe<Scalars['String']['output']>;\n targetSelectorDesktop?: Maybe<Scalars['String']['output']>;\n targetSelectorMobile?: Maybe<Scalars['String']['output']>;\n targetSelectorTablet?: Maybe<Scalars['String']['output']>;\n title: Scalars['String']['output'];\n tour: Tour;\n tourId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n waitForEvent?: Maybe<Scalars['String']['output']>;\n waitForSelector?: Maybe<Scalars['String']['output']>;\n waitForTimeout?: Maybe<Scalars['Int']['output']>;\n};\n\nexport type TourStepAnalytics = {\n __typename?: 'TourStepAnalytics';\n averageDuration: Scalars['Float']['output'];\n completionCount: Scalars['Int']['output'];\n skipCount: Scalars['Int']['output'];\n stepId: Scalars['String']['output'];\n viewCount: Scalars['Int']['output'];\n};\n\nexport type TourStepMedia = {\n __typename?: 'TourStepMedia';\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n media: TourMedia;\n mediaId: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n position: MediaPosition;\n tourStep: TourStep;\n tourStepId: Scalars['String']['output'];\n};\n\nexport enum TourStepPlacement {\n Auto = 'AUTO',\n Bottom = 'BOTTOM',\n Center = 'CENTER',\n Left = 'LEFT',\n Right = 'RIGHT',\n Top = 'TOP'\n}\n\nexport type TourTemplate = {\n __typename?: 'TourTemplate';\n category?: Maybe<Scalars['String']['output']>;\n config: Scalars['JSON']['output'];\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isPremium: Scalars['Boolean']['output'];\n isPublic: Scalars['Boolean']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n slug: Scalars['String']['output'];\n tags: Array<Scalars['String']['output']>;\n thumbnail?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n useCount: Scalars['Int']['output'];\n};\n\nexport enum TourTriggerType {\n AutoAlways = 'AUTO_ALWAYS',\n AutoFirstVisit = 'AUTO_FIRST_VISIT',\n Manual = 'MANUAL',\n OnEvent = 'ON_EVENT',\n Scheduled = 'SCHEDULED'\n}\n\nexport type TourUserProgress = {\n __typename?: 'TourUserProgress';\n completedAt?: Maybe<Scalars['DateTime']['output']>;\n completedSteps?: Maybe<Scalars['JSON']['output']>;\n /** Contextual IDs for filtering and scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: Maybe<ToursContext>;\n createdAt: Scalars['DateTime']['output'];\n currentStepId?: Maybe<Scalars['String']['output']>;\n currentStepOrder?: Maybe<Scalars['Int']['output']>;\n deviceType?: Maybe<DeviceType>;\n id: Scalars['ID']['output'];\n lastViewedAt?: Maybe<Scalars['DateTime']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n sessionId?: Maybe<Scalars['String']['output']>;\n skippedSteps?: Maybe<Scalars['JSON']['output']>;\n startedAt?: Maybe<Scalars['DateTime']['output']>;\n status: TourUserStatus;\n tour: Tour;\n tourId: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n};\n\nexport enum TourUserStatus {\n Completed = 'COMPLETED',\n Dismissed = 'DISMISSED',\n InProgress = 'IN_PROGRESS',\n NotStarted = 'NOT_STARTED',\n Skipped = 'SKIPPED'\n}\n\n/**\n * Tours-specific context output type.\n * Returns the stored context for each record.\n * Uses a unique type name to avoid federation conflicts with other services.\n * Must be @shareable since context types may exist in multiple subgraphs.\n */\nexport type ToursContext = {\n __typename?: 'ToursContext';\n /** Additional custom context as JSON */\n custom?: Maybe<Scalars['JSON']['output']>;\n /** Module ID for module-level scoping */\n moduleId?: Maybe<Scalars['ID']['output']>;\n /** Organization ID for organization-level scoping */\n organizationId?: Maybe<Scalars['ID']['output']>;\n /** Page ID for page-level scoping */\n pageId?: Maybe<Scalars['ID']['output']>;\n /** Product ID for product-level scoping */\n productId?: Maybe<Scalars['ID']['output']>;\n /** Project ID for project-level scoping */\n projectId?: Maybe<Scalars['ID']['output']>;\n /** User ID for user-level scoping */\n userId?: Maybe<Scalars['ID']['output']>;\n /** Workspace ID for workspace-level scoping */\n workspaceId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport type ToursPaginationInput = {\n cursor?: InputMaybe<Scalars['String']['input']>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n /** Page number for page-based pagination */\n page?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type ToursResponse = {\n __typename?: 'ToursResponse';\n hasMore: Scalars['Boolean']['output'];\n total: Scalars['Int']['output'];\n tours: Array<Tour>;\n};\n\n/** Transaction entity - resolvable via Federation Gateway. Other services (e.g., store-svc) can reference Transaction by id. */\nexport type Transaction = {\n __typename?: 'Transaction';\n amount: Scalars['Float']['output'];\n billingAccountId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n currency: Scalars['String']['output'];\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n razorpayPaymentId?: Maybe<Scalars['String']['output']>;\n status: TransactionStatus;\n stripePaymentId?: Maybe<Scalars['String']['output']>;\n type: TransactionType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum TransactionStatus {\n Failed = 'failed',\n Pending = 'pending',\n Success = 'success'\n}\n\nexport enum TransactionType {\n Adjustment = 'adjustment',\n Payment = 'payment',\n Refund = 'refund'\n}\n\nexport type TransferLicenseInput = {\n entitlementId: Scalars['ID']['input'];\n notes?: InputMaybe<Scalars['String']['input']>;\n reason: LicenseTransferReason;\n toUserId: Scalars['String']['input'];\n toWorkspaceId: Scalars['String']['input'];\n};\n\nexport type Translation = {\n __typename?: 'Translation';\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n key: TranslationKey;\n keyId: Scalars['String']['output'];\n language: Language;\n languageCode: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n notes?: Maybe<Scalars['String']['output']>;\n pluralForms?: Maybe<Scalars['JSON']['output']>;\n publishedAt?: Maybe<Scalars['DateTime']['output']>;\n publishedBy?: Maybe<Scalars['String']['output']>;\n reviewedAt?: Maybe<Scalars['DateTime']['output']>;\n reviewedBy?: Maybe<Scalars['String']['output']>;\n status: TranslationStatus;\n tenantId?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n value: Scalars['String']['output'];\n versions: Array<TranslationVersion>;\n};\n\nexport type TranslationAudit = {\n __typename?: 'TranslationAudit';\n action: Scalars['String']['output'];\n changes: Scalars['JSON']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n ipAddress?: Maybe<Scalars['String']['output']>;\n key: TranslationKey;\n keyId: Scalars['String']['output'];\n languageCode?: Maybe<Scalars['String']['output']>;\n metadata?: Maybe<Scalars['JSON']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n userAgent?: Maybe<Scalars['String']['output']>;\n userId: Scalars['String']['output'];\n};\n\nexport type TranslationAuditList = {\n __typename?: 'TranslationAuditList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<TranslationAudit>;\n total: Scalars['Int']['output'];\n};\n\nexport type TranslationCoverage = {\n __typename?: 'TranslationCoverage';\n coverage: Scalars['Float']['output'];\n languageCode: Scalars['String']['output'];\n missingKeys: Array<Scalars['String']['output']>;\n totalKeys: Scalars['Int']['output'];\n translatedKeys: Scalars['Int']['output'];\n};\n\nexport type TranslationFilterInput = {\n keyId?: InputMaybe<Scalars['String']['input']>;\n languageCode?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<TranslationStatus>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type TranslationKey = {\n __typename?: 'TranslationKey';\n characterLimit?: Maybe<Scalars['Int']['output']>;\n context?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n defaultValue?: Maybe<Scalars['String']['output']>;\n description?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isPlural: Scalars['Boolean']['output'];\n key: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n namespace?: Maybe<I18nNamespace>;\n namespaceId?: Maybe<Scalars['String']['output']>;\n placeholders?: Maybe<Scalars['JSON']['output']>;\n product: I18nProduct;\n productId: Scalars['String']['output'];\n status: TranslationKeyStatus;\n tags: Array<Scalars['String']['output']>;\n translations: Array<Translation>;\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n versions: Array<TranslationVersion>;\n};\n\nexport type TranslationKeyFilterInput = {\n namespaceId?: InputMaybe<Scalars['String']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<TranslationKeyStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type TranslationKeyList = {\n __typename?: 'TranslationKeyList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<TranslationKey>;\n total: Scalars['Int']['output'];\n};\n\nexport enum TranslationKeyStatus {\n Active = 'ACTIVE',\n Deleted = 'DELETED',\n Deprecated = 'DEPRECATED'\n}\n\nexport type TranslationList = {\n __typename?: 'TranslationList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Translation>;\n total: Scalars['Int']['output'];\n};\n\nexport enum TranslationStatus {\n Approved = 'APPROVED',\n Draft = 'DRAFT',\n PendingReview = 'PENDING_REVIEW',\n Published = 'PUBLISHED'\n}\n\nexport type TranslationStatusEvent = {\n __typename?: 'TranslationStatusEvent';\n newStatus: TranslationStatus;\n previousStatus: TranslationStatus;\n timestamp: Scalars['DateTime']['output'];\n translation: Translation;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TranslationUpdateEvent = {\n __typename?: 'TranslationUpdateEvent';\n action: Scalars['String']['output'];\n timestamp: Scalars['DateTime']['output'];\n translation: Translation;\n userId?: Maybe<Scalars['String']['output']>;\n};\n\nexport type TranslationVersion = {\n __typename?: 'TranslationVersion';\n changeReason?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n createdBy?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n key: TranslationKey;\n keyId: Scalars['String']['output'];\n languageCode: Scalars['String']['output'];\n pluralForms?: Maybe<Scalars['JSON']['output']>;\n translation?: Maybe<Translation>;\n translationId?: Maybe<Scalars['String']['output']>;\n value: Scalars['String']['output'];\n version: Scalars['Int']['output'];\n};\n\nexport type TranslationsExport = {\n __typename?: 'TranslationsExport';\n expiresAt: Scalars['DateTime']['output'];\n format: Scalars['String']['output'];\n url: Scalars['String']['output'];\n};\n\nexport enum TrendGroupBy {\n Day = 'DAY',\n Hour = 'HOUR',\n Month = 'MONTH',\n Week = 'WEEK'\n}\n\nexport type TriggerBatchNotificationsInput = {\n /** Size of each batch */\n batchSize?: InputMaybe<Scalars['Int']['input']>;\n /** Delay between batches in milliseconds */\n delayBetweenBatches?: InputMaybe<Scalars['Int']['input']>;\n /** List of notification IDs to trigger */\n notificationIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n /** Or list of new notifications to create and trigger */\n notifications?: InputMaybe<Array<CreateNotificationInput>>;\n /** Default priority for batch */\n priority?: InputMaybe<NotificationPriority>;\n /** Optionally schedule all notifications instead of sending immediately */\n scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type TriggerNotificationInput = {\n /** Specific channel instance ID from channel service (takes precedence) */\n channelId?: InputMaybe<Scalars['ID']['input']>;\n /** Channels to deliver to (deprecated - use channelId or platform instead) */\n channels?: InputMaybe<Array<NotificationChannel>>;\n /** Also deliver as in-app notification alongside the primary platform */\n includeInApp?: InputMaybe<Scalars['Boolean']['input']>;\n /** Or create and trigger a new notification */\n notification?: InputMaybe<CreateNotificationInput>;\n /** ID of an existing notification to trigger */\n notificationId?: InputMaybe<Scalars['ID']['input']>;\n /** Platform type for auto-failover (EMAIL, SMS, etc.) */\n platform?: InputMaybe<NotificationChannel>;\n /** User IDs for in-app notifications (required when includeInApp is true) */\n userIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n};\n\nexport type TriggerNotificationWithTemplateInput = {\n actions?: InputMaybe<Array<NotificationActionInput>>;\n /** Specific channel instance ID from channel service (takes precedence) */\n channelId?: InputMaybe<Scalars['ID']['input']>;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n /** Also deliver as in-app notification alongside the primary platform */\n includeInApp?: InputMaybe<Scalars['Boolean']['input']>;\n media?: InputMaybe<Array<NotificationMediaInput>>;\n /** Platform type for auto-failover (EMAIL, SMS, etc.) - used if channelId not provided */\n platform?: InputMaybe<NotificationChannel>;\n priority?: InputMaybe<NotificationPriority>;\n /** Single recipient (use this OR recipients, not both) */\n recipient?: InputMaybe<RecipientInput>;\n /** Multiple recipients for bulk delivery (use this OR recipient, not both) */\n recipients?: InputMaybe<Array<RecipientInput>>;\n redirectUrl?: InputMaybe<Scalars['String']['input']>;\n /** Optionally schedule for later delivery */\n scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;\n templateSlug: Scalars['String']['input'];\n timezone?: InputMaybe<Scalars['String']['input']>;\n topicId?: InputMaybe<Scalars['ID']['input']>;\n trackClicks?: InputMaybe<Scalars['Boolean']['input']>;\n trackOpens?: InputMaybe<Scalars['Boolean']['input']>;\n /** User IDs for in-app notifications (required when includeInApp is true) */\n userIds?: InputMaybe<Array<Scalars['ID']['input']>>;\n variables: Scalars['JSON']['input'];\n};\n\nexport enum TriggerStatus {\n Cancelled = 'CANCELLED',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Triggered = 'TRIGGERED'\n}\n\nexport type UnreadCountResult = {\n __typename?: 'UnreadCountResult';\n count: Scalars['Int']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport type UpdateAgentProfileInput = {\n autoAssign?: InputMaybe<Scalars['Boolean']['input']>;\n context?: InputMaybe<SupportContextInput>;\n maxChats?: InputMaybe<Scalars['Int']['input']>;\n maxTickets?: InputMaybe<Scalars['Int']['input']>;\n skills?: InputMaybe<Array<Scalars['String']['input']>>;\n teams?: InputMaybe<Array<Scalars['String']['input']>>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n workingHours?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type UpdateAgentStatusInput = {\n status: AgentStatus;\n statusMessage?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateAppCollectionInput = {\n bannerUrl?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n endsAt?: InputMaybe<Scalars['DateTime']['input']>;\n iconUrl?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isFeatured?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n startsAt?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\nexport type UpdateAppInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n redirectUris?: InputMaybe<Array<Scalars['String']['input']>>;\n scopes?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type UpdateAppInstallationInput = {\n autoUpdate?: InputMaybe<Scalars['Boolean']['input']>;\n config?: InputMaybe<Scalars['JSON']['input']>;\n currentVersion?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateAppReviewInput = {\n body?: InputMaybe<Scalars['String']['input']>;\n rating?: InputMaybe<Scalars['Int']['input']>;\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateApplicationInput = {\n /** Opaque reference to auth-svc App ID (links this application to an OAuth app) */\n appId?: InputMaybe<Scalars['ID']['input']>;\n appType?: InputMaybe<AppType>;\n bannerUrl?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n config?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n developerOrganizationId?: InputMaybe<Scalars['ID']['input']>;\n documentationUrl?: InputMaybe<Scalars['String']['input']>;\n githubUrl?: InputMaybe<Scalars['String']['input']>;\n iconUrl?: InputMaybe<Scalars['String']['input']>;\n keywords?: InputMaybe<Array<Scalars['String']['input']>>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n pricingDetails?: InputMaybe<Scalars['JSON']['input']>;\n pricingType?: InputMaybe<Scalars['String']['input']>;\n privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;\n requiresApproval?: InputMaybe<Scalars['Boolean']['input']>;\n screenshots?: InputMaybe<Scalars['JSON']['input']>;\n shortDescription?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n supportUrl?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n termsOfServiceUrl?: InputMaybe<Scalars['String']['input']>;\n videoUrl?: InputMaybe<Scalars['String']['input']>;\n visibility?: InputMaybe<AppVisibility>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateApplicationVersionInput = {\n changelog?: InputMaybe<Scalars['String']['input']>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n releaseNotes?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateAutomationInput = {\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n trigger?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type UpdateAutomationStepInput = {\n config?: InputMaybe<Scalars['JSON']['input']>;\n stepType?: InputMaybe<AutomationStepType>;\n};\n\nexport type UpdateBillingAccountInput = {\n /** Billing-specific email */\n billingEmail?: InputMaybe<Scalars['String']['input']>;\n /** Contact phone number */\n contactNumber?: InputMaybe<Scalars['String']['input']>;\n /** Default currency */\n currency?: InputMaybe<Scalars['String']['input']>;\n /** Contact email */\n email?: InputMaybe<Scalars['String']['input']>;\n /** ID of the billing account to update */\n id: Scalars['ID']['input'];\n /** Whether the billing account is active */\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n /** Additional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Name of the billing account */\n name?: InputMaybe<Scalars['String']['input']>;\n /** Tax ID / VAT number */\n taxId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCampaignStatsInput = {\n bounceCount?: InputMaybe<Scalars['Int']['input']>;\n clickCount?: InputMaybe<Scalars['Int']['input']>;\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n openCount?: InputMaybe<Scalars['Int']['input']>;\n sentCount?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UpdateCannedResponseInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n content?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n shortcut?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating a cart item */\nexport type UpdateCartItemInput = {\n /** Cart item ID to update */\n cartItemId: Scalars['String']['input'];\n /** New quantity */\n quantity?: InputMaybe<Scalars['Int']['input']>;\n /** New target workspace (for digital products) */\n workspaceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateCategoryInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parentId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating an existing channel */\nexport type UpdateChannelInput = {\n /** Specific adapter type */\n adapterType?: InputMaybe<AdapterType>;\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /** Description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Channel name */\n name?: InputMaybe<Scalars['String']['input']>;\n /** Platform configuration */\n platformConfig?: InputMaybe<Scalars['JSON']['input']>;\n /** Priority for fallback ordering (lower = higher priority) */\n priority?: InputMaybe<Scalars['Int']['input']>;\n /** Channel status */\n status?: InputMaybe<ChannelStatus>;\n};\n\n/** Input for updating a connection (credentials, metadata, etc.) */\nexport type UpdateConnectionInput = {\n /** Operation context for scoping */\n context?: InputMaybe<ContextInput>;\n /**\n * Platform-specific credentials (API keys, tokens, etc.)\n * Will be encrypted before storage.\n */\n credentials?: InputMaybe<Scalars['JSON']['input']>;\n /** Connection status */\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n /** Platform-specific metadata (non-sensitive) */\n platformMetadata?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type UpdateContactInquiryStatusInput = {\n /** If converting to ticket, the ticket ID */\n convertedTicketId?: InputMaybe<Scalars['String']['input']>;\n /** New status for the inquiry */\n status: ContactInquiryStatus;\n};\n\nexport type UpdateContentPageInput = {\n content?: InputMaybe<Scalars['String']['input']>;\n contentFormat?: InputMaybe<Scalars['String']['input']>;\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n seoDescription?: InputMaybe<Scalars['String']['input']>;\n seoKeywords?: InputMaybe<Scalars['String']['input']>;\n seoTitle?: InputMaybe<Scalars['String']['input']>;\n sortOrder?: InputMaybe<Scalars['Int']['input']>;\n title?: InputMaybe<Scalars['String']['input']>;\n visibility?: InputMaybe<ContentVisibility>;\n};\n\nexport type UpdateCouponInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n maxTotalUses?: InputMaybe<Scalars['Int']['input']>;\n maxUsesPerUser?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<CouponStatus>;\n validUntil?: InputMaybe<Scalars['DateTime']['input']>;\n};\n\n/** Input for updating dashboard layout preferences. */\nexport type UpdateDashboardPreferencesInput = {\n /** Complete list of widget configurations */\n widgets: Array<DashboardWidgetInput>;\n};\n\nexport type UpdateDeveloperOrganizationInput = {\n bannerUrl?: InputMaybe<Scalars['String']['input']>;\n contactEmail?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n settings?: InputMaybe<Scalars['JSON']['input']>;\n supportEmail?: InputMaybe<Scalars['String']['input']>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateDeveloperProfileInput = {\n bio?: InputMaybe<Scalars['String']['input']>;\n companyName?: InputMaybe<Scalars['String']['input']>;\n emailNotifications?: InputMaybe<Scalars['Boolean']['input']>;\n githubUsername?: InputMaybe<Scalars['String']['input']>;\n linkedinUrl?: InputMaybe<Scalars['String']['input']>;\n marketingEmails?: InputMaybe<Scalars['Boolean']['input']>;\n twitterUsername?: InputMaybe<Scalars['String']['input']>;\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating a subscription entitlement */\nexport type UpdateEntitlementInput = {\n /** The type of access (FREE_ACCESS or DISCOUNT) */\n accessType?: InputMaybe<EntitlementAccessType>;\n /** Discount percentage (0-100) */\n discountPercentage?: InputMaybe<Scalars['Float']['input']>;\n /** The entitlement ID to update */\n id: Scalars['ID']['input'];\n};\n\nexport type UpdateFaqInput = {\n answer?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<FaqCategory>;\n context?: InputMaybe<SupportContextInput>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n isPublished?: InputMaybe<Scalars['Boolean']['input']>;\n question?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type UpdateFeatureFlagInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n defaultValue?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n flagType?: InputMaybe<FeatureFlagType>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n previewable?: InputMaybe<Scalars['Boolean']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<FeatureFlagStatus>;\n};\n\nexport type UpdateI18nModuleInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<I18nModuleStatus>;\n};\n\nexport type UpdateI18nNamespaceInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<I18nNamespaceStatus>;\n};\n\nexport type UpdateI18nProductInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n displayName?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<I18nProductStatus>;\n};\n\nexport type UpdateKeyboardShortcutInput = {\n /** Category for grouping */\n category?: InputMaybe<Scalars['String']['input']>;\n /** Extended description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Event name to emit */\n eventName?: InputMaybe<Scalars['String']['input']>;\n /** Whether shortcut is enabled */\n isEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n /** Whether this is a key sequence */\n isSequence?: InputMaybe<Scalars['Boolean']['input']>;\n /** Display label */\n label?: InputMaybe<Scalars['String']['input']>;\n /** Mac-specific key override */\n macKey?: InputMaybe<Scalars['String']['input']>;\n /** Key combination */\n shortcutKey?: InputMaybe<Scalars['String']['input']>;\n /** Display order */\n sortOrder?: InputMaybe<Scalars['Int']['input']>;\n /** Windows/Linux-specific key override */\n windowsKey?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateKnowledgeBaseArticleInput = {\n categoryId?: InputMaybe<Scalars['String']['input']>;\n content?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n excerpt?: InputMaybe<Scalars['String']['input']>;\n metaDescription?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<ArticleStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateLanguageInput = {\n dateFormat?: InputMaybe<Scalars['String']['input']>;\n direction?: InputMaybe<LanguageDirection>;\n fallbackCode?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n nativeName?: InputMaybe<Scalars['String']['input']>;\n pluralRules?: InputMaybe<Scalars['JSON']['input']>;\n region?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<LanguageStatus>;\n timeFormat?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateNewsletterInput = {\n content?: InputMaybe<Scalars['String']['input']>;\n /** Newsletter context for scoping (workspaceId, userId, productId, tenantId, etc.) */\n context?: InputMaybe<NewsletterContextInput>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n plans?: InputMaybe<Scalars['JSON']['input']>;\n previewText?: InputMaybe<Scalars['String']['input']>;\n products?: InputMaybe<Scalars['JSON']['input']>;\n recipientType?: InputMaybe<NewsletterRecipientType>;\n scheduledFor?: InputMaybe<Scalars['DateTime']['input']>;\n segmentConfig?: InputMaybe<Scalars['JSON']['input']>;\n subject?: InputMaybe<Scalars['String']['input']>;\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateNewsletterListInput = {\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateNewsletterTemplateInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<NewsletterContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n html?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n thumbnail?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateNewsletterWebhookInput = {\n context?: InputMaybe<NewsletterContextInput>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n events?: InputMaybe<Array<Scalars['String']['input']>>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n url?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateNotificationInput = {\n actions?: InputMaybe<Array<NotificationActionInput>>;\n appName?: InputMaybe<Scalars['String']['input']>;\n body?: InputMaybe<Scalars['String']['input']>;\n data?: InputMaybe<Scalars['JSON']['input']>;\n expiresAt?: InputMaybe<Scalars['DateTime']['input']>;\n htmlBody?: InputMaybe<Scalars['String']['input']>;\n media?: InputMaybe<Array<NotificationMediaInput>>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<NotificationPriority>;\n recipient?: InputMaybe<RecipientInput>;\n redirectUrl?: InputMaybe<Scalars['String']['input']>;\n subject?: InputMaybe<Scalars['String']['input']>;\n topicId?: InputMaybe<Scalars['ID']['input']>;\n trackClicks?: InputMaybe<Scalars['Boolean']['input']>;\n trackOpens?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type UpdateNotificationTopicInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<NotificationType>;\n};\n\nexport type UpdateOrgLegalInfoInput = {\n legalAddress?: InputMaybe<Scalars['JSON']['input']>;\n legalEntityName?: InputMaybe<Scalars['String']['input']>;\n legalEntityType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateOrgTaxInfoInput = {\n taxCountry?: InputMaybe<Scalars['String']['input']>;\n taxFormType?: InputMaybe<Scalars['String']['input']>;\n taxId?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating an existing organization */\nexport type UpdateOrganizationInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n logo?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n settings?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<Scalars['String']['input']>;\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating an organization member's role */\nexport type UpdateOrganizationMemberInput = {\n role: UserRole;\n};\n\nexport type UpdatePaymentMethodInput = {\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdatePayoutAccountInput = {\n accountHolderName?: InputMaybe<Scalars['String']['input']>;\n accountNumber?: InputMaybe<Scalars['String']['input']>;\n bankName?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n iban?: InputMaybe<Scalars['String']['input']>;\n ifsc?: InputMaybe<Scalars['String']['input']>;\n label?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n providerPreference?: InputMaybe<PayoutProvider>;\n routingNumber?: InputMaybe<Scalars['String']['input']>;\n swift?: InputMaybe<Scalars['String']['input']>;\n upiId?: InputMaybe<Scalars['String']['input']>;\n walletHandle?: InputMaybe<Scalars['String']['input']>;\n walletProvider?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdatePhysicalProductInput = {\n allowBackorder?: InputMaybe<Scalars['Boolean']['input']>;\n brand?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n countryOfOrigin?: InputMaybe<Scalars['String']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n dimensionUnit?: InputMaybe<DimensionUnit>;\n height?: InputMaybe<Scalars['Float']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n length?: InputMaybe<Scalars['Float']['input']>;\n longDescription?: InputMaybe<Scalars['String']['input']>;\n lowStockThreshold?: InputMaybe<Scalars['Int']['input']>;\n manufacturer?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n price?: InputMaybe<Scalars['Float']['input']>;\n requiresShipping?: InputMaybe<Scalars['Boolean']['input']>;\n returnPolicy?: InputMaybe<Scalars['String']['input']>;\n screenshots?: InputMaybe<Array<Scalars['String']['input']>>;\n sku?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<ProductStatus>;\n stockQuantity?: InputMaybe<Scalars['Int']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n trackInventory?: InputMaybe<Scalars['Boolean']['input']>;\n warrantyInfo?: InputMaybe<Scalars['String']['input']>;\n weight?: InputMaybe<Scalars['Float']['input']>;\n weightUnit?: InputMaybe<WeightUnit>;\n width?: InputMaybe<Scalars['Float']['input']>;\n};\n\nexport type UpdatePlatformProductInput = {\n /** Number of active users */\n activeUsers?: InputMaybe<Scalars['Int']['input']>;\n /** Total API calls */\n apiCalls?: InputMaybe<Scalars['Int']['input']>;\n appStoreUrl?: InputMaybe<Scalars['String']['input']>;\n /** Application URL */\n appUrl?: InputMaybe<Scalars['String']['input']>;\n contactAddress?: InputMaybe<Scalars['String']['input']>;\n contactEmail?: InputMaybe<Scalars['String']['input']>;\n contactPhone?: InputMaybe<Scalars['String']['input']>;\n /** Product description */\n description?: InputMaybe<Scalars['String']['input']>;\n /** Documentation URL */\n docsUrl?: InputMaybe<Scalars['String']['input']>;\n /** GitHub repository URL */\n githubUrl?: InputMaybe<Scalars['String']['input']>;\n /** Logo URL */\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Product name */\n name?: InputMaybe<Scalars['String']['input']>;\n notificationEmail?: InputMaybe<Scalars['String']['input']>;\n ogImage?: InputMaybe<Scalars['String']['input']>;\n playStoreUrl?: InputMaybe<Scalars['String']['input']>;\n recaptchaSecretKey?: InputMaybe<Scalars['String']['input']>;\n recaptchaSiteKey?: InputMaybe<Scalars['String']['input']>;\n rybbitSiteId?: InputMaybe<Scalars['String']['input']>;\n seoDescription?: InputMaybe<Scalars['String']['input']>;\n seoKeywords?: InputMaybe<Scalars['String']['input']>;\n seoTitle?: InputMaybe<Scalars['String']['input']>;\n socialLinks?: InputMaybe<Scalars['JSON']['input']>;\n /** Product status */\n status?: InputMaybe<PlatformProductStatus>;\n /** Status page URL */\n statusPageUrl?: InputMaybe<Scalars['String']['input']>;\n /** Storage in GB */\n storageGB?: InputMaybe<Scalars['Float']['input']>;\n supportEmail?: InputMaybe<Scalars['String']['input']>;\n /** Number of tenants */\n tenantCount?: InputMaybe<Scalars['Int']['input']>;\n /** Uptime percentage */\n uptime?: InputMaybe<Scalars['Float']['input']>;\n /** Website URL */\n website?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdatePolicyReferenceInput = {\n action?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n opaPackage?: InputMaybe<Scalars['String']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n resourceType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateProductInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n content?: InputMaybe<Scalars['JSON']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n documentationUrl?: InputMaybe<Scalars['String']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n id: Scalars['ID']['input'];\n longDescription?: InputMaybe<Scalars['String']['input']>;\n manifest?: InputMaybe<Scalars['JSON']['input']>;\n manifestVersion?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n price?: InputMaybe<Scalars['Float']['input']>;\n pricingModel?: InputMaybe<PricingModel>;\n productId?: InputMaybe<Scalars['String']['input']>;\n repositoryUrl?: InputMaybe<Scalars['String']['input']>;\n screenshots?: InputMaybe<Array<Scalars['String']['input']>>;\n slug?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<ProductStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n videoUrls?: InputMaybe<Array<Scalars['String']['input']>>;\n zipFileUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateProductVariantInput = {\n compareAtPrice?: InputMaybe<Scalars['Float']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n imageUrls?: InputMaybe<Array<Scalars['String']['input']>>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n lowStockThreshold?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n options?: InputMaybe<Scalars['JSON']['input']>;\n price?: InputMaybe<Scalars['Float']['input']>;\n sku?: InputMaybe<Scalars['String']['input']>;\n stockQuantity?: InputMaybe<Scalars['Int']['input']>;\n weight?: InputMaybe<Scalars['Float']['input']>;\n weightUnit?: InputMaybe<WeightUnit>;\n};\n\n/** Input for updating RBAC configuration */\nexport type UpdateRbacConfigInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n key: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n value: Scalars['String']['input'];\n valueType?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateRecurringBillingInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n id: Scalars['ID']['input'];\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating a registered resource */\nexport type UpdateResourceInput = {\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n ownerId?: InputMaybe<Scalars['String']['input']>;\n ownerType?: InputMaybe<ActorType>;\n parentResourceId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateReviewInput = {\n comment?: InputMaybe<Scalars['String']['input']>;\n rating?: InputMaybe<Scalars['Int']['input']>;\n title?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating a role */\nexport type UpdateRoleInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parentId?: InputMaybe<Scalars['ID']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UpdateSlaPolicyInput = {\n businessHours?: InputMaybe<Scalars['JSON']['input']>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n escalationRules?: InputMaybe<Scalars['JSON']['input']>;\n firstResponseMinutes?: InputMaybe<Scalars['Int']['input']>;\n holidays?: InputMaybe<Scalars['JSON']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n resolutionMinutes?: InputMaybe<Scalars['Int']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateScheduleTemplateInput = {\n businessCalendarId?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<Scalars['String']['input']>;\n circuitBreaker?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n executorConfig?: InputMaybe<Scalars['JSON']['input']>;\n failurePolicy?: InputMaybe<Scalars['JSON']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payloadTemplate?: InputMaybe<Scalars['JSON']['input']>;\n retryPolicy?: InputMaybe<Scalars['JSON']['input']>;\n scheduleConfig?: InputMaybe<Scalars['JSON']['input']>;\n};\n\nexport type UpdateScheduledJobInput = {\n actionId?: InputMaybe<Scalars['String']['input']>;\n autoDisableAfter?: InputMaybe<Scalars['Int']['input']>;\n businessCalendarId?: InputMaybe<Scalars['String']['input']>;\n changeReason?: InputMaybe<Scalars['String']['input']>;\n circuitBreaker?: InputMaybe<Scalars['JSON']['input']>;\n cronExpression?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n executorConfig?: InputMaybe<Scalars['JSON']['input']>;\n executorType?: InputMaybe<ExecutorType>;\n failurePolicy?: InputMaybe<Scalars['JSON']['input']>;\n interval?: InputMaybe<Scalars['Int']['input']>;\n intervalUnit?: InputMaybe<Scalars['String']['input']>;\n maxOccurrences?: InputMaybe<Scalars['Int']['input']>;\n maxRetries?: InputMaybe<Scalars['Int']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n misfirePolicy?: InputMaybe<MisfirePolicy>;\n misfireThreshold?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n payloadTemplate?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<SchedulePriority>;\n retryDelay?: InputMaybe<Scalars['Int']['input']>;\n retryPolicy?: InputMaybe<Scalars['JSON']['input']>;\n rrule?: InputMaybe<Scalars['String']['input']>;\n scheduledAt?: InputMaybe<Scalars['DateTime']['input']>;\n secrets?: InputMaybe<Scalars['JSON']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<JobStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n timeWindows?: InputMaybe<Scalars['JSON']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateShippingAddressInput = {\n addressLine1?: InputMaybe<Scalars['String']['input']>;\n addressLine2?: InputMaybe<Scalars['String']['input']>;\n city?: InputMaybe<Scalars['String']['input']>;\n country?: InputMaybe<Scalars['String']['input']>;\n email?: InputMaybe<Scalars['String']['input']>;\n fullName?: InputMaybe<Scalars['String']['input']>;\n instructions?: InputMaybe<Scalars['String']['input']>;\n isDefault?: InputMaybe<Scalars['Boolean']['input']>;\n label?: InputMaybe<Scalars['String']['input']>;\n phone?: InputMaybe<Scalars['String']['input']>;\n postalCode?: InputMaybe<Scalars['String']['input']>;\n state?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateShippingMethodInput = {\n availableCountries?: InputMaybe<Array<Scalars['String']['input']>>;\n baseCost?: InputMaybe<Scalars['Float']['input']>;\n carrier?: InputMaybe<Scalars['String']['input']>;\n carrierServiceId?: InputMaybe<Scalars['String']['input']>;\n costPerItem?: InputMaybe<Scalars['Float']['input']>;\n costPerKg?: InputMaybe<Scalars['Float']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n estimatedMaxDays?: InputMaybe<Scalars['Int']['input']>;\n estimatedMinDays?: InputMaybe<Scalars['Int']['input']>;\n excludedCountries?: InputMaybe<Array<Scalars['String']['input']>>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n maxDimensions?: InputMaybe<Scalars['JSON']['input']>;\n maxWeight?: InputMaybe<Scalars['Float']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateStoreInput = {\n allowUnverifiedPublishers?: InputMaybe<Scalars['Boolean']['input']>;\n currency?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n logoUrl?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n requiresApproval?: InputMaybe<Scalars['Boolean']['input']>;\n websiteUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Response for updateStoreOrderPaymentStatus callback */\nexport type UpdateStoreOrderPaymentStatusResponse = {\n __typename?: 'UpdateStoreOrderPaymentStatusResponse';\n /** Message describing the result */\n message: Scalars['String']['output'];\n /** Whether the update was successful */\n success: Scalars['Boolean']['output'];\n};\n\nexport type UpdateSubscriberInput = {\n /** Optional operation context overrides for admin-managed subscriber updates */\n context?: InputMaybe<NewsletterContextInput>;\n email?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n userId?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateSubscriptionInput = {\n planId?: InputMaybe<Scalars['ID']['input']>;\n planName?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateSubscriptionSeatsInput = {\n /** New seat count. Must be >= plan.minSeats. Applied immediately on Stripe (with proration) and at next cycle on Razorpay (proration delta charged as a separate one-time order). */\n seatCount: Scalars['Int']['input'];\n subscriptionId: Scalars['ID']['input'];\n};\n\nexport type UpdateSupportTicketInput = {\n assignedTo?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<SupportTicketCategory>;\n categoryId?: InputMaybe<Scalars['String']['input']>;\n /** Operation context for scoping (workspaceId, userId, projectId, etc.) */\n context?: InputMaybe<SupportContextInput>;\n customFields?: InputMaybe<Scalars['JSON']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n subject?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type UpdateTemplateInput = {\n bodyTemplate?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n enabled?: InputMaybe<Scalars['Boolean']['input']>;\n htmlTemplate?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n subject?: InputMaybe<Scalars['String']['input']>;\n variables?: InputMaybe<Scalars['JSON']['input']>;\n};\n\n/** Input for updating an existing tenant */\nexport type UpdateTenantInput = {\n config?: InputMaybe<Scalars['JSON']['input']>;\n customDomain?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateTicketCategoryInput = {\n color?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n icon?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n parentId?: InputMaybe<Scalars['String']['input']>;\n slaOverride?: InputMaybe<Scalars['JSON']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateTicketTemplateInput = {\n body?: InputMaybe<Scalars['String']['input']>;\n category?: InputMaybe<SupportTicketCategory>;\n context?: InputMaybe<SupportContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n priority?: InputMaybe<SupportTicketPriority>;\n subject?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\nexport type UpdateTourInput = {\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n desktopConfig?: InputMaybe<Scalars['JSON']['input']>;\n displayOrder?: InputMaybe<Scalars['Int']['input']>;\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n mobileConfig?: InputMaybe<Scalars['JSON']['input']>;\n moduleId?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n pageId?: InputMaybe<Scalars['String']['input']>;\n priority?: InputMaybe<Scalars['Int']['input']>;\n productId?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n status?: InputMaybe<TourStatus>;\n tabletConfig?: InputMaybe<Scalars['JSON']['input']>;\n triggerConfig?: InputMaybe<Scalars['JSON']['input']>;\n triggerType?: InputMaybe<TourTriggerType>;\n};\n\nexport type UpdateTourMediaInput = {\n altText?: InputMaybe<Scalars['String']['input']>;\n caption?: InputMaybe<Scalars['String']['input']>;\n cdnUrl?: InputMaybe<Scalars['String']['input']>;\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n transcript?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<TourMediaType>;\n};\n\nexport type UpdateTourScheduleInput = {\n endDate?: InputMaybe<Scalars['DateTime']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n recurrenceRule?: InputMaybe<Scalars['String']['input']>;\n startDate?: InputMaybe<Scalars['DateTime']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateTourStepInput = {\n actions?: InputMaybe<Scalars['JSON']['input']>;\n content?: InputMaybe<Scalars['String']['input']>;\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n customData?: InputMaybe<Scalars['JSON']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n placement?: InputMaybe<TourStepPlacement>;\n requireInteraction?: InputMaybe<Scalars['Boolean']['input']>;\n skipConditions?: InputMaybe<Scalars['JSON']['input']>;\n stepOrder?: InputMaybe<Scalars['Int']['input']>;\n targetSelector?: InputMaybe<Scalars['String']['input']>;\n targetSelectorDesktop?: InputMaybe<Scalars['String']['input']>;\n targetSelectorMobile?: InputMaybe<Scalars['String']['input']>;\n targetSelectorTablet?: InputMaybe<Scalars['String']['input']>;\n title?: InputMaybe<Scalars['String']['input']>;\n waitForEvent?: InputMaybe<Scalars['String']['input']>;\n waitForSelector?: InputMaybe<Scalars['String']['input']>;\n waitForTimeout?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UpdateTourTemplateInput = {\n category?: InputMaybe<Scalars['String']['input']>;\n config?: InputMaybe<Scalars['JSON']['input']>;\n /** Operation context for scoping (workspaceId, userId, productId, moduleId, etc.) */\n context?: InputMaybe<ContextInput>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPremium?: InputMaybe<Scalars['Boolean']['input']>;\n isPublic?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n slug?: InputMaybe<Scalars['String']['input']>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n thumbnail?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateTranslationInput = {\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n notes?: InputMaybe<Scalars['String']['input']>;\n pluralForms?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<TranslationStatus>;\n value?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateTranslationKeyInput = {\n characterLimit?: InputMaybe<Scalars['Int']['input']>;\n context?: InputMaybe<Scalars['String']['input']>;\n defaultValue?: InputMaybe<Scalars['String']['input']>;\n description?: InputMaybe<Scalars['String']['input']>;\n isPlural?: InputMaybe<Scalars['Boolean']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n placeholders?: InputMaybe<Scalars['JSON']['input']>;\n status?: InputMaybe<TranslationKeyStatus>;\n tags?: InputMaybe<Array<Scalars['String']['input']>>;\n};\n\n/** Input for updating user profile information */\nexport type UpdateUserInput = {\n firstName?: InputMaybe<Scalars['String']['input']>;\n language?: InputMaybe<Scalars['String']['input']>;\n lastName?: InputMaybe<Scalars['String']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n timezone?: InputMaybe<Scalars['String']['input']>;\n username?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateVariantInput = {\n content?: InputMaybe<Scalars['String']['input']>;\n percentage?: InputMaybe<Scalars['Int']['input']>;\n subject?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UpdateVariantStatsInput = {\n clickCount?: InputMaybe<Scalars['Int']['input']>;\n openCount?: InputMaybe<Scalars['Int']['input']>;\n sentCount?: InputMaybe<Scalars['Int']['input']>;\n};\n\nexport type UpdateWebhookInput = {\n description?: InputMaybe<Scalars['String']['input']>;\n events?: InputMaybe<Array<Scalars['String']['input']>>;\n filters?: InputMaybe<Scalars['JSON']['input']>;\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n maxRetries?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n retryEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n url?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating an existing workspace */\nexport type UpdateWorkspaceInput = {\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for updating a workspace member's role */\nexport type UpdateWorkspaceMemberInput = {\n role: UserRole;\n};\n\nexport type UpsertComplianceSettingsInput = {\n allowResubscribe?: InputMaybe<Scalars['Boolean']['input']>;\n analyticsRetention?: InputMaybe<Scalars['Int']['input']>;\n collectReasons?: InputMaybe<Scalars['Boolean']['input']>;\n doubleOptIn?: InputMaybe<Scalars['Boolean']['input']>;\n inactiveCleanup?: InputMaybe<Scalars['Int']['input']>;\n physicalAddress?: InputMaybe<Scalars['String']['input']>;\n privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;\n unsubscribeUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for upserting fulfillment details */\nexport type UpsertOrderFulfillmentInput = {\n carrier?: InputMaybe<Scalars['String']['input']>;\n context?: InputMaybe<Scalars['JSON']['input']>;\n estimatedDeliveryDate?: InputMaybe<Scalars['DateTime']['input']>;\n failureReason?: InputMaybe<Scalars['String']['input']>;\n labelUrl?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n notes?: InputMaybe<Scalars['String']['input']>;\n packageHeight?: InputMaybe<Scalars['Float']['input']>;\n packageLength?: InputMaybe<Scalars['Float']['input']>;\n packageWeight?: InputMaybe<Scalars['Float']['input']>;\n packageWidth?: InputMaybe<Scalars['Float']['input']>;\n returnReason?: InputMaybe<Scalars['String']['input']>;\n signatureRequired?: InputMaybe<Scalars['Boolean']['input']>;\n signatureUrl?: InputMaybe<Scalars['String']['input']>;\n signedBy?: InputMaybe<Scalars['String']['input']>;\n status: FulfillmentStatus;\n trackingNumber?: InputMaybe<Scalars['String']['input']>;\n trackingUrl?: InputMaybe<Scalars['String']['input']>;\n};\n\n/** Input for upserting a passively-observed (SEEN) user from a webhook event */\nexport type UpsertSeenUserInput = {\n /** Channel ID this event was received on */\n channelId: Scalars['ID']['input'];\n /** Operation context */\n context?: InputMaybe<ContextInput>;\n /** Platform avatar URL */\n externalAvatarUrl?: InputMaybe<Scalars['String']['input']>;\n /** Platform display name */\n externalDisplayName?: InputMaybe<Scalars['String']['input']>;\n /** Platform email */\n externalEmail?: InputMaybe<Scalars['String']['input']>;\n /** Extra platform metadata */\n externalMetadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Platform-specific user ID */\n externalUserId: Scalars['String']['input'];\n /** Platform username / handle */\n externalUsername?: InputMaybe<Scalars['String']['input']>;\n /** Organization ID */\n organizationId: Scalars['ID']['input'];\n /** Platform the event came from */\n platform: ChannelPlatform;\n};\n\nexport type Usage = {\n __typename?: 'Usage';\n /** The amount of the resource that has been consumed. */\n amount?: Maybe<Scalars['Float']['output']>;\n /** Additional context */\n context?: Maybe<Scalars['JSON']['output']>;\n /** The description of the resource that has been consumed. */\n description?: Maybe<Scalars['String']['output']>;\n /** The unique identifier for the Usage, automatically generated as a UUID. */\n id?: Maybe<Scalars['ID']['output']>;\n /** The timestamp when the usage was last updated. */\n lastUpdated?: Maybe<Scalars['DateTime']['output']>;\n /** The unique identifier for the product associated with this usage. */\n productId?: Maybe<Scalars['String']['output']>;\n /** The quota assignment being tracked by this usage record. */\n quotaAssignment?: Maybe<QuotaAssignment>;\n /** The unique identifier for the associated quota assignment. */\n quotaAssignmentId?: Maybe<Scalars['ID']['output']>;\n /** tags to filter the usage ! */\n tags?: Maybe<Scalars['JSON']['output']>;\n /** The timestamp for when this usage record was created. */\n timestamp?: Maybe<Scalars['DateTime']['output']>;\n /** The user who created this usage record. */\n user?: Maybe<User>;\n /** The unique identifier for the user who created this usage record. */\n userId?: Maybe<Scalars['ID']['output']>;\n};\n\nexport type UsageActivity = {\n __typename?: 'UsageActivity';\n amount: Scalars['Float']['output'];\n description: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n quotaName: Scalars['String']['output'];\n tags?: Maybe<Scalars['JSON']['output']>;\n timestamp: Scalars['DateTime']['output'];\n};\n\nexport type UsageByType = {\n __typename?: 'UsageByType';\n count: Scalars['Int']['output'];\n percentage: Scalars['Float']['output'];\n resourceType: Scalars['String']['output'];\n usage: Scalars['Float']['output'];\n};\n\nexport type UsageDashboard = {\n __typename?: 'UsageDashboard';\n activeQuotas: Scalars['Int']['output'];\n criticalQuotas: Scalars['Int']['output'];\n exhaustedQuotas: Scalars['Int']['output'];\n /** Health overview */\n healthyQuotas: Scalars['Int']['output'];\n /** Usage trends */\n overallTrends: UsageTrends;\n /** Recent activities */\n recentActivities: Array<UsageActivity>;\n /** Top usage categories */\n topUsageByQuota: Array<QuotaUsageSummary>;\n totalQuotas: Scalars['Int']['output'];\n /** Overall usage statistics */\n totalUsage: Scalars['Float']['output'];\n warningQuotas: Scalars['Int']['output'];\n};\n\nexport enum UsageMetricType {\n ApiCalls = 'API_CALLS',\n Bandwidth = 'BANDWIDTH',\n ComputeHours = 'COMPUTE_HOURS',\n Custom = 'CUSTOM',\n Requests = 'REQUESTS',\n Storage = 'STORAGE',\n Transactions = 'TRANSACTIONS',\n Users = 'USERS'\n}\n\nexport type UsageRecord = {\n __typename?: 'UsageRecord';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n metricType: UsageMetricType;\n orgId: Scalars['String']['output'];\n quantity: Scalars['Int']['output'];\n subscriptionId?: Maybe<Scalars['String']['output']>;\n timestamp: Scalars['DateTime']['output'];\n totalCost?: Maybe<Scalars['Float']['output']>;\n unitCost?: Maybe<Scalars['Float']['output']>;\n};\n\nexport type UsageTrends = {\n __typename?: 'UsageTrends';\n /** Average daily usage */\n averageDailyUsage?: Maybe<Scalars['Float']['output']>;\n /** Growth rate percentage over last period */\n growthRate?: Maybe<Scalars['Float']['output']>;\n /** Predicted usage for next period */\n predictedUsage?: Maybe<Scalars['Float']['output']>;\n};\n\n/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */\nexport type User = {\n __typename?: 'User';\n /** Tickets assigned to this user (if support agent) */\n assignedTickets: SupportTicketConnection;\n createdAt: Scalars['DateTime']['output'];\n defaultWorkspaceId?: Maybe<Scalars['String']['output']>;\n email: Scalars['String']['output'];\n emailVerified: Scalars['Boolean']['output'];\n firstName?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n isAdmin: Scalars['Boolean']['output'];\n /** Whether this user is a support agent */\n isSupportAgent: Scalars['Boolean']['output'];\n lastLoginAt?: Maybe<Scalars['DateTime']['output']>;\n lastName?: Maybe<Scalars['String']['output']>;\n mfaEnabled: Scalars['Boolean']['output'];\n name?: Maybe<Scalars['String']['output']>;\n notifications: Array<Notification>;\n phoneNumber?: Maybe<Scalars['String']['output']>;\n role: Scalars['String']['output'];\n status: Scalars['String']['output'];\n tenantId?: Maybe<Scalars['String']['output']>;\n /** Tickets created by this user */\n tickets: SupportTicketConnection;\n updatedAt: Scalars['DateTime']['output'];\n username: Scalars['String']['output'];\n};\n\n\n/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */\nexport type UserAssignedTicketsArgs = {\n filter?: InputMaybe<SupportTicketFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n\n/** User type stub - represents a user entity from the auth/user service This service doesn't own the User model, but references it in usage tracking Federation gateway will resolve full User data from auth/user service. */\nexport type UserTicketsArgs = {\n filter?: InputMaybe<SupportTicketFilterInput>;\n limit?: InputMaybe<Scalars['Int']['input']>;\n offset?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/** Paginated list of users */\nexport type UserConnection = {\n __typename?: 'UserConnection';\n hasMore: Scalars['Boolean']['output'];\n totalCount: Scalars['Int']['output'];\n users: Array<User>;\n};\n\n/** User's opt-in/out preference for a previewable feature flag in a workspace. */\nexport type UserFeatureFlagPreference = {\n __typename?: 'UserFeatureFlagPreference';\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n enabled: Scalars['Boolean']['output'];\n featureFlag: FeatureFlag;\n featureFlagId: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n userId: Scalars['String']['output'];\n workspaceId: Scalars['String']['output'];\n};\n\n/** Filter input for listing users */\nexport type UserFilterInput = {\n email?: InputMaybe<Scalars['String']['input']>;\n role?: InputMaybe<UserRole>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<UserStatus>;\n username?: InputMaybe<Scalars['String']['input']>;\n};\n\nexport type UserLanguagePreference = {\n __typename?: 'UserLanguagePreference';\n /** ISO 3166-1 alpha-2 country code (e.g., IN, US, DE) */\n country?: Maybe<Scalars['String']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** ISO 4217 currency code (e.g., INR, USD, EUR) */\n currency?: Maybe<Scalars['String']['output']>;\n dateFormat?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n language?: Maybe<Language>;\n languageCode: Scalars['String']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n numberFormat?: Maybe<Scalars['String']['output']>;\n tenantId?: Maybe<Scalars['String']['output']>;\n timeFormat?: Maybe<Scalars['String']['output']>;\n timezone?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n};\n\n/**\n * UserPlatformConnection represents a verified user identity on a communication platform.\n * It serves as the DM authorization allowlist and notification delivery target.\n * Replaces the former ChannelUser model.\n */\nexport type UserPlatformConnection = {\n __typename?: 'UserPlatformConnection';\n /**\n * Whether the user has a valid DM conversation target\n * (dmAllowed = true AND dmConversationId is set)\n */\n canReceiveDm: Scalars['Boolean']['output'];\n /** Associated channel */\n channel: Channel;\n /** Associated channel ID */\n channelId: Scalars['ID']['output'];\n /** When the user explicitly connected (OAuth / pairing approval) */\n connectedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Operation context */\n context?: Maybe<OperationContext>;\n /** Creation timestamp */\n createdAt: Scalars['DateTime']['output'];\n /** Custom status message (if set by user) */\n customStatus?: Maybe<Scalars['String']['output']>;\n /** When this record was soft-deleted (null = active) */\n deletedAt?: Maybe<Scalars['DateTime']['output']>;\n /**\n * Whether DMs to/from this user are allowed.\n * Only true when source = OAUTH or PAIRED; never for SEEN.\n */\n dmAllowed: Scalars['Boolean']['output'];\n /**\n * Platform-specific DM conversation ID.\n * Slack: D0A1B2C3 | Teams: conversation reference JSON |\n * WhatsApp: JID | Discord: N/A | Google Chat: space name\n */\n dmConversationId?: Maybe<Scalars['String']['output']>;\n /** Platform avatar URL */\n externalAvatarUrl?: Maybe<Scalars['String']['output']>;\n /** Platform display name */\n externalDisplayName?: Maybe<Scalars['String']['output']>;\n /** Platform email address */\n externalEmail?: Maybe<Scalars['String']['output']>;\n /** Extra platform-specific user data */\n externalMetadata?: Maybe<Scalars['JSON']['output']>;\n /** Platform-specific user ID (Slack: U12345, WhatsApp: +15551234567, etc.) */\n externalUserId: Scalars['String']['output'];\n /** Platform username / handle (@username) */\n externalUsername?: Maybe<Scalars['String']['output']>;\n /** Unique connection ID */\n id: Scalars['ID']['output'];\n /**\n * Opaque reference to the IntegrationConnection in wspace-integrations-svc\n * that holds this user's personal OAuth token. Set after the user completes\n * the OAuth flow in microfe-integrations and clicks \"Link to bot channel\".\n * Null for connections created via the legacy Slack OAuth flow.\n */\n integrationConnectionId?: Maybe<Scalars['ID']['output']>;\n /** Internal Botlit user ID (opaque reference) */\n internalUserId?: Maybe<Scalars['ID']['output']>;\n /** Whether this connection record is active (not soft-deleted) */\n isActive: Scalars['Boolean']['output'];\n /** Whether the user's OAuth token has expired */\n isTokenExpired: Scalars['Boolean']['output'];\n /** Last time the user was seen active */\n lastActiveAt?: Maybe<Scalars['DateTime']['output']>;\n /** Last time this record was synced from the platform */\n lastSyncedAt: Scalars['DateTime']['output'];\n /** Whether outbound notifications are enabled for this user */\n notificationsEnabled: Scalars['Boolean']['output'];\n /** Organization ID */\n organizationId: Scalars['ID']['output'];\n /** When pairing was approved */\n pairingApprovedAt?: Maybe<Scalars['DateTime']['output']>;\n /**\n * 8-character pairing code (WhatsApp / Discord only).\n * Only present when pairingStatus = PENDING.\n */\n pairingCode?: Maybe<Scalars['String']['output']>;\n /** When the pairing code expires (1-hour TTL from generation) */\n pairingCodeExpiresAt?: Maybe<Scalars['DateTime']['output']>;\n /** Current pairing status */\n pairingStatus?: Maybe<PairingStatus>;\n /** Platform permissions for this user */\n permissions: Array<Scalars['String']['output']>;\n /** Communication platform */\n platform: ChannelPlatform;\n /** Current presence status on the platform */\n presenceStatus: UserPresenceStatus;\n /** Platform roles assigned to this user */\n roles: Array<Scalars['String']['output']>;\n /** How the connection was established */\n source: UserPlatformSource;\n /** Last update timestamp */\n updatedAt: Scalars['DateTime']['output'];\n /**\n * User's personal OAuth token expiry (AES-256-GCM encrypted at rest)\n * NOTE: The token itself is never returned by queries; only the expiry is exposed.\n */\n userTokenExpiresAt?: Maybe<Scalars['DateTime']['output']>;\n /** Scopes granted by the user's personal OAuth token */\n userTokenScope?: Maybe<Scalars['String']['output']>;\n};\n\n/** Filter input for querying user platform connections */\nexport type UserPlatformConnectionFilterInput = {\n /** Filter by operation context */\n context?: InputMaybe<ContextFilterInput>;\n /** Only return connections where dmAllowed = true */\n dmAllowed?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by active status */\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n /** Only return connections where notificationsEnabled = true */\n notificationsEnabled?: InputMaybe<Scalars['Boolean']['input']>;\n /** Filter by platform */\n platform?: InputMaybe<ChannelPlatform>;\n /** Filter by presence status */\n presenceStatus?: InputMaybe<UserPresenceStatus>;\n /** Search by display name, username, or email */\n search?: InputMaybe<Scalars['String']['input']>;\n /** Filter by connection source */\n source?: InputMaybe<UserPlatformSource>;\n};\n\n/**\n * How a UserPlatformConnection was established.\n * Controls whether dmAllowed can be set to true.\n */\nexport enum UserPlatformSource {\n /** Bulk-imported user record (e.g. from CSV or directory sync). */\n Import = 'IMPORT',\n /** Admin manually added the user (back-office operation). */\n Manual = 'MANUAL',\n /**\n * Connected via dashboard OAuth flow (Slack, Teams, Google Chat).\n * Grants dmAllowed = true immediately after token exchange.\n */\n Oauth = 'OAUTH',\n /**\n * Connected via pairing code (WhatsApp, Discord).\n * Grants dmAllowed = true once the user approves the pairing code in the dashboard.\n */\n Paired = 'PAIRED',\n /**\n * Passively observed from an inbound webhook event.\n * Never grants dmAllowed = true automatically.\n */\n Seen = 'SEEN'\n}\n\n/**\n * User preference record storing theme, notification settings,\n * dashboard customization, and other user-specific configuration.\n */\nexport type UserPreference = {\n __typename?: 'UserPreference';\n accessibility?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n notifications?: Maybe<Scalars['JSON']['output']>;\n preferences?: Maybe<Scalars['JSON']['output']>;\n privacy?: Maybe<Scalars['JSON']['output']>;\n theme: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n userId: Scalars['String']['output'];\n};\n\n/**\n * User presence status on the communication platform.\n * Synced from platform webhooks or periodic polling.\n */\nexport enum UserPresenceStatus {\n /** User is away or idle */\n Away = 'AWAY',\n /** User is in Do Not Disturb mode */\n Dnd = 'DND',\n /** User is offline */\n Offline = 'OFFLINE',\n /** User is currently online and active */\n Online = 'ONLINE'\n}\n\n/** User role for access control across the platform */\nexport enum UserRole {\n Guest = 'GUEST',\n Member = 'MEMBER',\n OrgAdmin = 'ORG_ADMIN',\n SuperAdmin = 'SUPER_ADMIN',\n TenantAdmin = 'TENANT_ADMIN',\n WorkspaceAdmin = 'WORKSPACE_ADMIN'\n}\n\nexport enum UserStatus {\n Active = 'ACTIVE',\n Deleted = 'DELETED',\n Inactive = 'INACTIVE',\n Suspended = 'SUSPENDED'\n}\n\nexport type UserStoreSubscription = {\n __typename?: 'UserStoreSubscription';\n id: Scalars['ID']['output'];\n role: Scalars['String']['output'];\n store: Store;\n storeId: Scalars['ID']['output'];\n subscribedAt: Scalars['DateTime']['output'];\n userId: Scalars['ID']['output'];\n};\n\nexport type UserWishlist = {\n __typename?: 'UserWishlist';\n addedAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n notes?: Maybe<Scalars['String']['output']>;\n productId: Scalars['ID']['output'];\n userId: Scalars['String']['output'];\n};\n\nexport type ValidateCouponInput = {\n /** Order amount before discount */\n amount: Scalars['Float']['input'];\n /** Coupon code to validate */\n code: Scalars['String']['input'];\n /** Currency */\n currency: Scalars['String']['input'];\n /** Optional: product IDs being purchased */\n productIds?: InputMaybe<Array<Scalars['String']['input']>>;\n /** Optional: service IDs being purchased */\n serviceIds?: InputMaybe<Array<Scalars['String']['input']>>;\n /** User ID trying to use the coupon */\n userId: Scalars['String']['input'];\n};\n\nexport type ValidateCouponResponse = {\n __typename?: 'ValidateCouponResponse';\n /** The coupon details if valid */\n coupon?: Maybe<Coupon>;\n /** Calculated discount amount for the given order amount */\n discountAmount?: Maybe<Scalars['Float']['output']>;\n /** Error message if invalid */\n error?: Maybe<Scalars['String']['output']>;\n /** Final amount after discount */\n finalAmount?: Maybe<Scalars['Float']['output']>;\n /** Detailed validation messages */\n messages: Array<Scalars['String']['output']>;\n /** Whether the coupon is valid and can be applied */\n valid: Scalars['Boolean']['output'];\n};\n\nexport type ValidateTokensInput = {\n apiKey?: InputMaybe<Scalars['String']['input']>;\n authToken: Scalars['String']['input'];\n};\n\nexport type VariantComparisonResult = {\n __typename?: 'VariantComparisonResult';\n confidence?: Maybe<Scalars['Float']['output']>;\n significant: Scalars['Boolean']['output'];\n variants: Array<NewsletterVariant>;\n winner?: Maybe<NewsletterVariant>;\n};\n\n/** Predefined variant option types (e.g., Size, Color, Material) */\nexport type VariantOptionType = {\n __typename?: 'VariantOptionType';\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n /** Display label (e.g., \"Size\", \"Color\") */\n displayName: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n /** Internal name (e.g., \"size\", \"color\") */\n name: Scalars['String']['output'];\n updatedAt: Scalars['DateTime']['output'];\n /** Available values for this option type */\n values: Array<Scalars['String']['output']>;\n};\n\n/** Input for verifying a payment method with a small charge */\nexport type VerifyPaymentMethodInput = {\n /** Billing account ID to associate the payment method with */\n billingAccountId: Scalars['ID']['input'];\n /** Currency for verification charge (INR, USD, EUR) */\n currency: Scalars['String']['input'];\n /** Additional metadata */\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n /** Payment provider (STRIPE or RAZORPAY) */\n provider?: InputMaybe<PaymentProviderPreference>;\n /** Set as default payment method after verification */\n setAsDefault?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\n/** Response from payment method verification */\nexport type VerifyPaymentMethodResponse = {\n __typename?: 'VerifyPaymentMethodResponse';\n /** Verification amount (e.g., 1 for ₹1) */\n amount: Scalars['Float']['output'];\n /** Stripe client secret (for Stripe Elements) */\n clientSecret?: Maybe<Scalars['String']['output']>;\n /** Currency (INR, USD, EUR) */\n currency: Scalars['String']['output'];\n /** Error message if failed */\n error?: Maybe<Scalars['String']['output']>;\n /** Razorpay order ID (for Razorpay SDK) */\n orderId?: Maybe<Scalars['String']['output']>;\n /** Customer phone/contact for payment form prefill */\n prefillContact?: Maybe<Scalars['String']['output']>;\n /** Customer email for payment form prefill */\n prefillEmail?: Maybe<Scalars['String']['output']>;\n /** Customer name for payment form prefill */\n prefillName?: Maybe<Scalars['String']['output']>;\n /** Payment provider used (STRIPE or RAZORPAY) */\n provider: Scalars['String']['output'];\n /** Razorpay customer ID (for showing saved cards) */\n razorpayCustomerId?: Maybe<Scalars['String']['output']>;\n /** Razorpay key ID for frontend integration */\n razorpayKeyId?: Maybe<Scalars['String']['output']>;\n /** Whether the verification was initiated successfully */\n success: Scalars['Boolean']['output'];\n};\n\n/** Input for checking resource visibility */\nexport type VisibilityCheckInput = {\n actorId: Scalars['String']['input'];\n actorType: ActorType;\n resourceIdentifier: Scalars['String']['input'];\n resourceType: Scalars['String']['input'];\n scopeId: Scalars['String']['input'];\n};\n\n/** Visibility check result */\nexport type VisibilityCheckResult = {\n __typename?: 'VisibilityCheckResult';\n reason: Scalars['String']['output'];\n visible: Scalars['Boolean']['output'];\n};\n\n/** Visibility rule controlling who can see a resource */\nexport type VisibilityRule = {\n __typename?: 'VisibilityRule';\n conditions?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n priority: Scalars['Int']['output'];\n resourceId: Scalars['String']['output'];\n resourceType: Scalars['String']['output'];\n scopeId: Scalars['String']['output'];\n targetId?: Maybe<Scalars['String']['output']>;\n targetType?: Maybe<Scalars['String']['output']>;\n updatedAt: Scalars['DateTime']['output'];\n visibilityType: VisibilityType;\n};\n\n/** Types of visibility rules for resources */\nexport enum VisibilityType {\n /** Custom conditions (JSON-based) */\n Custom = 'CUSTOM',\n /** Visible to specific group members */\n Group = 'GROUP',\n /** Visible only to owner */\n Private = 'PRIVATE',\n /** Visible to all tenant members */\n Public = 'PUBLIC',\n /** Visible to actors with specific role */\n Role = 'ROLE'\n}\n\nexport type WaitlistFilterInput = {\n platformProductId?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<NewsletterWaitlistStatus>;\n};\n\nexport type WalletAuthResult = {\n __typename?: 'WalletAuthResult';\n accessToken?: Maybe<Scalars['String']['output']>;\n expiresIn?: Maybe<Scalars['Int']['output']>;\n isNewUser?: Maybe<Scalars['Boolean']['output']>;\n refreshToken?: Maybe<Scalars['String']['output']>;\n success: Scalars['Boolean']['output'];\n user?: Maybe<User>;\n walletAddress: Scalars['String']['output'];\n};\n\nexport type WalletChallengeResult = {\n __typename?: 'WalletChallengeResult';\n expiresAt: Scalars['DateTime']['output'];\n message: Scalars['String']['output'];\n nonce: Scalars['String']['output'];\n};\n\nexport type WalletInfo = {\n __typename?: 'WalletInfo';\n chain: Scalars['String']['output'];\n createdAt: Scalars['DateTime']['output'];\n id: Scalars['ID']['output'];\n lastUsedAt?: Maybe<Scalars['DateTime']['output']>;\n verified: Scalars['Boolean']['output'];\n walletAddress: Scalars['String']['output'];\n};\n\nexport type Webhook = {\n __typename?: 'Webhook';\n application: Application;\n applicationId: Scalars['ID']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n deliveries: Array<WebhookDelivery>;\n description?: Maybe<Scalars['String']['output']>;\n events: Array<Scalars['String']['output']>;\n failureCount: Scalars['Int']['output'];\n filters?: Maybe<Scalars['JSON']['output']>;\n id: Scalars['ID']['output'];\n isActive: Scalars['Boolean']['output'];\n lastFailureAt?: Maybe<Scalars['DateTime']['output']>;\n lastFailureReason?: Maybe<Scalars['String']['output']>;\n lastSuccessAt?: Maybe<Scalars['DateTime']['output']>;\n lastTriggeredAt?: Maybe<Scalars['DateTime']['output']>;\n maxRetries: Scalars['Int']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n retryDelay: Scalars['Int']['output'];\n retryEnabled: Scalars['Boolean']['output'];\n secret: Scalars['String']['output'];\n status: WebhookStatus;\n successCount: Scalars['Int']['output'];\n updatedAt: Scalars['DateTime']['output'];\n url: Scalars['String']['output'];\n};\n\nexport type WebhookDelivery = {\n __typename?: 'WebhookDelivery';\n attemptNumber: Scalars['Int']['output'];\n context?: Maybe<Scalars['JSON']['output']>;\n createdAt: Scalars['DateTime']['output'];\n deliveredAt?: Maybe<Scalars['DateTime']['output']>;\n errorCode?: Maybe<Scalars['String']['output']>;\n errorMessage?: Maybe<Scalars['String']['output']>;\n eventId: Scalars['String']['output'];\n eventType: Scalars['String']['output'];\n failedAt?: Maybe<Scalars['DateTime']['output']>;\n id: Scalars['ID']['output'];\n metadata?: Maybe<Scalars['JSON']['output']>;\n nextRetryAt?: Maybe<Scalars['DateTime']['output']>;\n payload: Scalars['JSON']['output'];\n requestBody?: Maybe<Scalars['JSON']['output']>;\n requestHeaders?: Maybe<Scalars['JSON']['output']>;\n responseBody?: Maybe<Scalars['String']['output']>;\n responseHeaders?: Maybe<Scalars['JSON']['output']>;\n responseStatus?: Maybe<Scalars['Int']['output']>;\n status: WebhookDeliveryStatus;\n updatedAt: Scalars['DateTime']['output'];\n webhook: Webhook;\n webhookId: Scalars['ID']['output'];\n};\n\nexport type WebhookDeliveryConnection = {\n __typename?: 'WebhookDeliveryConnection';\n edges: Array<WebhookDeliveryEdge>;\n pageInfo: PageInfo;\n totalCount: Scalars['Int']['output'];\n};\n\nexport type WebhookDeliveryEdge = {\n __typename?: 'WebhookDeliveryEdge';\n cursor: Scalars['String']['output'];\n node: WebhookDelivery;\n};\n\nexport enum WebhookDeliveryStatus {\n Delivered = 'DELIVERED',\n Delivering = 'DELIVERING',\n Failed = 'FAILED',\n Pending = 'PENDING',\n Retrying = 'RETRYING'\n}\n\n/**\n * WebhookEvent represents a received webhook (transient, 7-day TTL)\n * Used for debugging and monitoring only\n */\nexport type WebhookEvent = {\n __typename?: 'WebhookEvent';\n /** Associated channel */\n channel: Channel;\n /** Associated channel ID */\n channelId: Scalars['ID']['output'];\n /** Operation context (tenantId, userId, etc.) */\n context?: Maybe<OperationContext>;\n /** Creation timestamp (when webhook was received) */\n createdAt: Scalars['DateTime']['output'];\n /** Error message (if failed) */\n errorMessage?: Maybe<Scalars['String']['output']>;\n /** Platform event type (message.channels, reaction_added, etc.) */\n eventType: Scalars['String']['output'];\n /** Expiration timestamp (7 days from creation) */\n expiresAt: Scalars['DateTime']['output'];\n /** Unique webhook event ID */\n id: Scalars['ID']['output'];\n /** Whether this is a duplicate event */\n isDuplicate: Scalars['Boolean']['output'];\n /** Original webhook event ID (if duplicate) */\n originalEventId?: Maybe<Scalars['ID']['output']>;\n /** Raw webhook payload */\n payload: Scalars['JSON']['output'];\n /** Processed at timestamp */\n processedAt?: Maybe<Scalars['DateTime']['output']>;\n /** Processing result */\n processingResult?: Maybe<Scalars['JSON']['output']>;\n /** Webhook signature (for verification) */\n signature?: Maybe<Scalars['String']['output']>;\n /** Processing status */\n status: WebhookProcessingStatus;\n /** Last update timestamp */\n updatedAt: Scalars['DateTime']['output'];\n};\n\nexport enum WebhookEventType {\n CampaignBounced = 'CAMPAIGN_BOUNCED',\n CampaignClicked = 'CAMPAIGN_CLICKED',\n CampaignComplained = 'CAMPAIGN_COMPLAINED',\n CampaignOpened = 'CAMPAIGN_OPENED',\n NewsletterCanceled = 'NEWSLETTER_CANCELED',\n NewsletterCreated = 'NEWSLETTER_CREATED',\n NewsletterScheduled = 'NEWSLETTER_SCHEDULED',\n NewsletterSent = 'NEWSLETTER_SENT',\n SubscriberAdded = 'SUBSCRIBER_ADDED',\n SubscriberResubscribed = 'SUBSCRIBER_RESUBSCRIBED',\n SubscriberUnsubscribed = 'SUBSCRIBER_UNSUBSCRIBED'\n}\n\n/** Webhook processing result */\nexport type WebhookProcessingResult = {\n __typename?: 'WebhookProcessingResult';\n /** Error message (if failed) */\n error?: Maybe<Scalars['String']['output']>;\n /** Webhook event ID */\n eventId: Scalars['ID']['output'];\n /** Processing time (ms) */\n processingTimeMs?: Maybe<Scalars['Int']['output']>;\n /** Processing status */\n status: WebhookProcessingStatus;\n /** Whether processing was successful */\n success: Scalars['Boolean']['output'];\n /** Number of workflow triggers executed */\n triggersExecuted: Scalars['Int']['output'];\n};\n\n/** Webhook event processing status */\nexport enum WebhookProcessingStatus {\n /** Successfully processed */\n Completed = 'COMPLETED',\n /** Processing failed */\n Failed = 'FAILED',\n /** Webhook ignored (duplicate, invalid signature) */\n Ignored = 'IGNORED',\n /** Webhook received, pending processing */\n Pending = 'PENDING',\n /** Currently processing */\n Processing = 'PROCESSING'\n}\n\n/** Webhook statistics */\nexport type WebhookStats = {\n __typename?: 'WebhookStats';\n /** Average processing time (ms) */\n avgProcessingTimeMs: Scalars['Int']['output'];\n /** Channel ID */\n channelId: Scalars['ID']['output'];\n /** Date range end */\n endDate: Scalars['DateTime']['output'];\n /** Failed processing */\n failedProcessing: Scalars['Int']['output'];\n /** Ignored (duplicate, invalid signature) */\n ignored: Scalars['Int']['output'];\n /** Date range start */\n startDate: Scalars['DateTime']['output'];\n /** Successfully processed */\n successfullyProcessed: Scalars['Int']['output'];\n /** Total webhooks received */\n totalReceived: Scalars['Int']['output'];\n};\n\nexport enum WebhookStatus {\n Active = 'ACTIVE',\n Disabled = 'DISABLED',\n Failed = 'FAILED',\n Paused = 'PAUSED'\n}\n\nexport type WebhookTestResult = {\n __typename?: 'WebhookTestResult';\n error?: Maybe<Scalars['String']['output']>;\n response?: Maybe<Scalars['String']['output']>;\n statusCode?: Maybe<Scalars['Int']['output']>;\n success: Scalars['Boolean']['output'];\n};\n\nexport enum WeightUnit {\n Gram = 'GRAM',\n Kilogram = 'KILOGRAM',\n Ounce = 'OUNCE',\n Pound = 'POUND'\n}\n\nexport type WidgetConversationSourceContextInput = {\n activeTab?: InputMaybe<Scalars['String']['input']>;\n contextHref: Scalars['String']['input'];\n contextTitle?: InputMaybe<Scalars['String']['input']>;\n entityId?: InputMaybe<Scalars['ID']['input']>;\n entityType?: InputMaybe<Scalars['String']['input']>;\n metadata?: InputMaybe<Scalars['JSON']['input']>;\n pagePath: Scalars['String']['input'];\n product: Scalars['String']['input'];\n threadKey: Scalars['String']['input'];\n widgetKey: Scalars['String']['input'];\n};\n\nexport type WidgetMessageAttachmentInput = {\n downloadUrl?: InputMaybe<Scalars['String']['input']>;\n duration?: InputMaybe<Scalars['Int']['input']>;\n fileId: Scalars['ID']['input'];\n fileName?: InputMaybe<Scalars['String']['input']>;\n fileSize?: InputMaybe<Scalars['Int']['input']>;\n height?: InputMaybe<Scalars['Int']['input']>;\n mimeType?: InputMaybe<Scalars['String']['input']>;\n thumbnail?: InputMaybe<Scalars['String']['input']>;\n width?: InputMaybe<Scalars['Int']['input']>;\n};\n\n/**\n * Workspace type stub - represents a workspace entity from the workspace service\n * This service doesn't own the Workspace model, but references it\n */\nexport type Workspace = {\n __typename?: 'Workspace';\n createdAt: Scalars['DateTime']['output'];\n /**\n * Service routing endpoint for dedicated tenants\n * For SHARED tenants, this is null (uses default workspace service)\n * For DEDICATED tenants, this points to the dedicated workspace service instance\n */\n endpoint?: Maybe<Scalars['String']['output']>;\n id: Scalars['ID']['output'];\n /** Member count */\n memberCount: Scalars['Int']['output'];\n /** Members of this workspace */\n members: Array<WorkspaceMember>;\n /** Routing metadata only (NOT workspace internals) */\n metadata?: Maybe<Scalars['JSON']['output']>;\n name: Scalars['String']['output'];\n organization?: Maybe<Organization>;\n organizationId?: Maybe<Scalars['String']['output']>;\n /** Data residency region for compliance */\n region?: Maybe<Scalars['String']['output']>;\n slug: Scalars['String']['output'];\n status: WorkspaceStatus;\n tenant: Tenant;\n tenantId: Scalars['String']['output'];\n type: WorkspaceType;\n updatedAt: Scalars['DateTime']['output'];\n};\n\n/**\n * Workspace-level override for a feature flag.\n * Workspace admins can disable flags or control user opt-in for their workspace.\n */\nexport type WorkspaceFeatureFlagOverride = {\n __typename?: 'WorkspaceFeatureFlagOverride';\n allowUserOptIn: Scalars['Boolean']['output'];\n createdAt: Scalars['DateTime']['output'];\n createdBy: Scalars['String']['output'];\n enabled: Scalars['Boolean']['output'];\n featureFlag: FeatureFlag;\n featureFlagId: Scalars['String']['output'];\n id: Scalars['ID']['output'];\n updatedAt: Scalars['DateTime']['output'];\n updatedBy?: Maybe<Scalars['String']['output']>;\n workspaceId: Scalars['String']['output'];\n};\n\n/** Filter input for querying workspaces */\nexport type WorkspaceFilterInput = {\n organizationId?: InputMaybe<Scalars['String']['input']>;\n search?: InputMaybe<Scalars['String']['input']>;\n status?: InputMaybe<WorkspaceStatus>;\n tenantId?: InputMaybe<Scalars['String']['input']>;\n type?: InputMaybe<WorkspaceType>;\n};\n\n/** Paginated list of workspaces */\nexport type WorkspaceList = {\n __typename?: 'WorkspaceList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<Workspace>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\n/** Workspace member with role and join information */\nexport type WorkspaceMember = {\n __typename?: 'WorkspaceMember';\n id: Scalars['ID']['output'];\n invitedBy?: Maybe<Scalars['String']['output']>;\n joinedAt: Scalars['DateTime']['output'];\n role: UserRole;\n userId: Scalars['String']['output'];\n workspace: Workspace;\n workspaceId: Scalars['String']['output'];\n};\n\n/** Paginated list of workspace members */\nexport type WorkspaceMemberList = {\n __typename?: 'WorkspaceMemberList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<WorkspaceMember>;\n limit: Scalars['Int']['output'];\n offset: Scalars['Int']['output'];\n total: Scalars['Int']['output'];\n};\n\n/** Public workspace details available to authorized actors */\nexport type WorkspacePublicDetails = {\n __typename?: 'WorkspacePublicDetails';\n id: Scalars['ID']['output'];\n name: Scalars['String']['output'];\n publicUrl: Scalars['String']['output'];\n slug: Scalars['String']['output'];\n status: WorkspaceStatus;\n type: WorkspaceType;\n};\n\n/** Workspace routing information for API gateway routing */\nexport type WorkspaceRouting = {\n __typename?: 'WorkspaceRouting';\n name: Scalars['String']['output'];\n publicUrl: Scalars['String']['output'];\n region?: Maybe<Scalars['String']['output']>;\n tenantId: Scalars['String']['output'];\n workspaceId: Scalars['ID']['output'];\n};\n\n/** Paginated list of workspace routing info */\nexport type WorkspaceRoutingList = {\n __typename?: 'WorkspaceRoutingList';\n hasMore: Scalars['Boolean']['output'];\n items: Array<WorkspaceRouting>;\n total: Scalars['Int']['output'];\n};\n\n/** Workspace status for lifecycle management */\nexport enum WorkspaceStatus {\n Active = 'ACTIVE',\n Archived = 'ARCHIVED',\n Deleted = 'DELETED',\n Suspended = 'SUSPENDED'\n}\n\nexport type WorkspaceTourAnalyticsSummary = {\n __typename?: 'WorkspaceTourAnalyticsSummary';\n overallCompletionRate: Scalars['Float']['output'];\n publishedTours: Scalars['Int']['output'];\n totalCompletions: Scalars['Int']['output'];\n totalTours: Scalars['Int']['output'];\n totalViews: Scalars['Int']['output'];\n};\n\n/** Workspace type determines the workspace tier and capabilities */\nexport enum WorkspaceType {\n Enterprise = 'ENTERPRISE',\n Personal = 'PERSONAL',\n Team = 'TEAM'\n}\n\nexport type AddonQuotaInput = {\n quantity: Scalars['Int']['input'];\n quotaId: Scalars['ID']['input'];\n};\n\nexport type CreateAddOnsInput = {\n currency: Scalars['String']['input'];\n duration: PlanDuration;\n geoPricingOverrides?: InputMaybe<Array<GeoPricingOverrideInput>>;\n name: Scalars['String']['input'];\n price: Scalars['Float']['input'];\n productId: Scalars['String']['input'];\n quotas: Array<AddonQuotaInput>;\n};\n\nexport type CreatePlanInput = {\n currency?: InputMaybe<Scalars['String']['input']>;\n /** Default USD */\n duration: PlanDuration;\n geoPricingOverrides?: InputMaybe<Array<GeoPricingOverrideInput>>;\n maxSeats?: InputMaybe<Scalars['Int']['input']>;\n minSeats?: InputMaybe<Scalars['Int']['input']>;\n name: Scalars['String']['input'];\n price: Scalars['Float']['input'];\n pricePerSeat?: InputMaybe<Scalars['Float']['input']>;\n pricingModel?: InputMaybe<PlanPricingModel>;\n productId?: InputMaybe<Scalars['String']['input']>;\n quotas: Array<PlanQuotaInput>;\n};\n\nexport type CreateQuotaInput = {\n limits: Scalars['JSON']['input'];\n name: Scalars['String']['input'];\n quotaType?: InputMaybe<QuotaType>;\n resetPeriod?: InputMaybe<QuotaResetPeriod>;\n reusable: Scalars['Boolean']['input'];\n};\n\nexport type UpdateAddOnsInput = {\n currency?: InputMaybe<Scalars['String']['input']>;\n duration?: InputMaybe<PlanDuration>;\n geoPricingOverrides?: InputMaybe<Array<GeoPricingOverrideInput>>;\n id: Scalars['String']['input'];\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n price?: InputMaybe<Scalars['Float']['input']>;\n quotas: Array<AddonQuotaInput>;\n};\n\nexport type UpdatePlanInput = {\n currency?: InputMaybe<Scalars['String']['input']>;\n /** Default USD */\n duration?: InputMaybe<PlanDuration>;\n geoPricingOverrides?: InputMaybe<Array<GeoPricingOverrideInput>>;\n id: Scalars['String']['input'];\n isActive?: InputMaybe<Scalars['Boolean']['input']>;\n maxSeats?: InputMaybe<Scalars['Int']['input']>;\n minSeats?: InputMaybe<Scalars['Int']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n price?: InputMaybe<Scalars['Float']['input']>;\n pricePerSeat?: InputMaybe<Scalars['Float']['input']>;\n pricingModel?: InputMaybe<PlanPricingModel>;\n quotas: Array<PlanQuotaInput>;\n};\n\nexport type UpdateQuotaInput = {\n id: Scalars['String']['input'];\n isActive: Scalars['Boolean']['input'];\n limits?: InputMaybe<Scalars['JSON']['input']>;\n name?: InputMaybe<Scalars['String']['input']>;\n resetPeriod?: InputMaybe<QuotaResetPeriod>;\n reusable?: InputMaybe<Scalars['Boolean']['input']>;\n};\n\nexport type UserRegisterInput = {\n email: Scalars['String']['input'];\n name: Scalars['String']['input'];\n password: Scalars['String']['input'];\n phoneNumber?: InputMaybe<Scalars['String']['input']>;\n username: Scalars['String']['input'];\n};\n"],"mappings":";AAmgKA,IAAY,IAAL,yBAAA,GAAA;QACL,EAAA,SAAA,UACA,EAAA,WAAA;KACD,EAq3jBW,IAAL,yBAAA,GAAA;QACL,EAAA,SAAA,UACA,EAAA,UAAA,WACA,EAAA,WAAA,YACA,EAAA,YAAA;KACD,EA2iBW,IAAL,yBAAA,GAAA;QACL,EAAA,SAAA,UACA,EAAA,WAAA,YACA,EAAA,UAAA,WACA,EAAA,YAAA;KACD"}