@burdenoff/microfe-billing 2026.510.114

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 (636) hide show
  1. package/README.md +12 -0
  2. package/dist/billing/BillingAdminRoutes.d.ts +6 -0
  3. package/dist/billing/BillingAdminRoutes.d.ts.map +1 -0
  4. package/dist/billing/BillingAdminRoutes.js +359 -0
  5. package/dist/billing/BillingAdminRoutes.js.map +1 -0
  6. package/dist/billing/BillingRoot.d.ts +37 -0
  7. package/dist/billing/BillingRoot.d.ts.map +1 -0
  8. package/dist/billing/BillingRoot.js +190 -0
  9. package/dist/billing/BillingRoot.js.map +1 -0
  10. package/dist/billing/BillingUserRoutes.d.ts +7 -0
  11. package/dist/billing/BillingUserRoutes.d.ts.map +1 -0
  12. package/dist/billing/BillingUserRoutes.js +479 -0
  13. package/dist/billing/BillingUserRoutes.js.map +1 -0
  14. package/dist/billing/constants/permissions.d.ts +18 -0
  15. package/dist/billing/constants/permissions.d.ts.map +1 -0
  16. package/dist/billing/hooks/useBillingAccountSelection.d.ts +36 -0
  17. package/dist/billing/hooks/useBillingAccountSelection.d.ts.map +1 -0
  18. package/dist/billing/hooks/useBillingAccountSelection.js +81 -0
  19. package/dist/billing/hooks/useBillingAccountSelection.js.map +1 -0
  20. package/dist/billing/hooks/useBillingEventEmitter.d.ts +8 -0
  21. package/dist/billing/hooks/useBillingEventEmitter.d.ts.map +1 -0
  22. package/dist/billing/hooks/useBillingEventEmitter.js +15 -0
  23. package/dist/billing/hooks/useBillingEventEmitter.js.map +1 -0
  24. package/dist/billing/hooks/useBillingNavigate.d.ts +30 -0
  25. package/dist/billing/hooks/useBillingNavigate.d.ts.map +1 -0
  26. package/dist/billing/hooks/useBillingNavigate.js +23 -0
  27. package/dist/billing/hooks/useBillingNavigate.js.map +1 -0
  28. package/dist/billing/hooks/useBillingPermissions.d.ts +94 -0
  29. package/dist/billing/hooks/useBillingPermissions.d.ts.map +1 -0
  30. package/dist/billing/hooks/useBillingPermissions.js +78 -0
  31. package/dist/billing/hooks/useBillingPermissions.js.map +1 -0
  32. package/dist/billing/hooks/useDefaultBillingCurrency.d.ts +14 -0
  33. package/dist/billing/hooks/useDefaultBillingCurrency.d.ts.map +1 -0
  34. package/dist/billing/hooks/useDefaultBillingCurrency.js +23 -0
  35. package/dist/billing/hooks/useDefaultBillingCurrency.js.map +1 -0
  36. package/dist/billing/index.d.ts +31 -0
  37. package/dist/billing/index.d.ts.map +1 -0
  38. package/dist/billing/lib/native-purchases.d.ts +51 -0
  39. package/dist/billing/lib/native-purchases.d.ts.map +1 -0
  40. package/dist/billing/lib/native-purchases.js +44 -0
  41. package/dist/billing/lib/native-purchases.js.map +1 -0
  42. package/dist/billing/modules/addons/components/FloatingCartDrawer.d.ts +4 -0
  43. package/dist/billing/modules/addons/components/FloatingCartDrawer.d.ts.map +1 -0
  44. package/dist/billing/modules/addons/components/FloatingCartDrawer.js +179 -0
  45. package/dist/billing/modules/addons/components/FloatingCartDrawer.js.map +1 -0
  46. package/dist/billing/modules/addons/components/index.d.ts +5 -0
  47. package/dist/billing/modules/addons/components/index.d.ts.map +1 -0
  48. package/dist/billing/modules/addons/hooks/index.d.ts +6 -0
  49. package/dist/billing/modules/addons/hooks/index.d.ts.map +1 -0
  50. package/dist/billing/modules/addons/hooks/index.js +1 -0
  51. package/dist/billing/modules/addons/hooks/useAddons.d.ts +55 -0
  52. package/dist/billing/modules/addons/hooks/useAddons.d.ts.map +1 -0
  53. package/dist/billing/modules/addons/hooks/useAddons.js +77 -0
  54. package/dist/billing/modules/addons/hooks/useAddons.js.map +1 -0
  55. package/dist/billing/modules/addons/index.d.ts +7 -0
  56. package/dist/billing/modules/addons/index.d.ts.map +1 -0
  57. package/dist/billing/modules/addons/index.js +10 -0
  58. package/dist/billing/modules/addons/pages/AddonBrowseDetailPage.d.ts +4 -0
  59. package/dist/billing/modules/addons/pages/AddonBrowseDetailPage.d.ts.map +1 -0
  60. package/dist/billing/modules/addons/pages/AddonBrowseDetailPage.js +266 -0
  61. package/dist/billing/modules/addons/pages/AddonBrowseDetailPage.js.map +1 -0
  62. package/dist/billing/modules/addons/pages/AddonCreatePage.d.ts +4 -0
  63. package/dist/billing/modules/addons/pages/AddonCreatePage.d.ts.map +1 -0
  64. package/dist/billing/modules/addons/pages/AddonCreatePage.js +369 -0
  65. package/dist/billing/modules/addons/pages/AddonCreatePage.js.map +1 -0
  66. package/dist/billing/modules/addons/pages/AddonDetailPage.d.ts +4 -0
  67. package/dist/billing/modules/addons/pages/AddonDetailPage.d.ts.map +1 -0
  68. package/dist/billing/modules/addons/pages/AddonDetailPage.js +280 -0
  69. package/dist/billing/modules/addons/pages/AddonDetailPage.js.map +1 -0
  70. package/dist/billing/modules/addons/pages/AddonEditPage.d.ts +4 -0
  71. package/dist/billing/modules/addons/pages/AddonEditPage.d.ts.map +1 -0
  72. package/dist/billing/modules/addons/pages/AddonEditPage.js +396 -0
  73. package/dist/billing/modules/addons/pages/AddonEditPage.js.map +1 -0
  74. package/dist/billing/modules/addons/pages/AddonsBrowsePage.d.ts +4 -0
  75. package/dist/billing/modules/addons/pages/AddonsBrowsePage.d.ts.map +1 -0
  76. package/dist/billing/modules/addons/pages/AddonsBrowsePage.js +582 -0
  77. package/dist/billing/modules/addons/pages/AddonsBrowsePage.js.map +1 -0
  78. package/dist/billing/modules/addons/pages/AddonsListPage.d.ts +4 -0
  79. package/dist/billing/modules/addons/pages/AddonsListPage.d.ts.map +1 -0
  80. package/dist/billing/modules/addons/pages/AddonsListPage.js +744 -0
  81. package/dist/billing/modules/addons/pages/AddonsListPage.js.map +1 -0
  82. package/dist/billing/modules/addons/pages/index.d.ts +11 -0
  83. package/dist/billing/modules/addons/pages/index.d.ts.map +1 -0
  84. package/dist/billing/modules/addons/pages/index.js +6 -0
  85. package/dist/billing/modules/addons/store/addonCartStore.d.ts +38 -0
  86. package/dist/billing/modules/addons/store/addonCartStore.d.ts.map +1 -0
  87. package/dist/billing/modules/addons/store/addonCartStore.js +74 -0
  88. package/dist/billing/modules/addons/store/addonCartStore.js.map +1 -0
  89. package/dist/billing/modules/affiliate/api.d.ts +101 -0
  90. package/dist/billing/modules/affiliate/api.d.ts.map +1 -0
  91. package/dist/billing/modules/affiliate/api.js +38 -0
  92. package/dist/billing/modules/affiliate/api.js.map +1 -0
  93. package/dist/billing/modules/affiliate/index.d.ts +2 -0
  94. package/dist/billing/modules/affiliate/index.d.ts.map +1 -0
  95. package/dist/billing/modules/affiliate/index.js +2 -0
  96. package/dist/billing/modules/affiliate/pages/AffiliateDashboardPage.d.ts +4 -0
  97. package/dist/billing/modules/affiliate/pages/AffiliateDashboardPage.d.ts.map +1 -0
  98. package/dist/billing/modules/affiliate/pages/AffiliateDashboardPage.js +464 -0
  99. package/dist/billing/modules/affiliate/pages/AffiliateDashboardPage.js.map +1 -0
  100. package/dist/billing/modules/analytics/index.d.ts +5 -0
  101. package/dist/billing/modules/analytics/index.d.ts.map +1 -0
  102. package/dist/billing/modules/analytics/index.js +3 -0
  103. package/dist/billing/modules/analytics/pages/AnalyticsPage.d.ts +4 -0
  104. package/dist/billing/modules/analytics/pages/AnalyticsPage.d.ts.map +1 -0
  105. package/dist/billing/modules/analytics/pages/AnalyticsPage.js +469 -0
  106. package/dist/billing/modules/analytics/pages/AnalyticsPage.js.map +1 -0
  107. package/dist/billing/modules/analytics/pages/index.d.ts +5 -0
  108. package/dist/billing/modules/analytics/pages/index.d.ts.map +1 -0
  109. package/dist/billing/modules/analytics/pages/index.js +1 -0
  110. package/dist/billing/modules/billing/hooks/index.d.ts +10 -0
  111. package/dist/billing/modules/billing/hooks/index.d.ts.map +1 -0
  112. package/dist/billing/modules/billing/hooks/index.js +4 -0
  113. package/dist/billing/modules/billing/hooks/useInvoices.d.ts +67 -0
  114. package/dist/billing/modules/billing/hooks/useInvoices.d.ts.map +1 -0
  115. package/dist/billing/modules/billing/hooks/useInvoices.js +87 -0
  116. package/dist/billing/modules/billing/hooks/useInvoices.js.map +1 -0
  117. package/dist/billing/modules/billing/hooks/usePayments.d.ts +62 -0
  118. package/dist/billing/modules/billing/hooks/usePayments.d.ts.map +1 -0
  119. package/dist/billing/modules/billing/hooks/usePayments.js +3 -0
  120. package/dist/billing/modules/billing/hooks/useRefunds.d.ts +191 -0
  121. package/dist/billing/modules/billing/hooks/useRefunds.d.ts.map +1 -0
  122. package/dist/billing/modules/billing/hooks/useRefunds.js +162 -0
  123. package/dist/billing/modules/billing/hooks/useRefunds.js.map +1 -0
  124. package/dist/billing/modules/billing/hooks/useTransactions.d.ts +41 -0
  125. package/dist/billing/modules/billing/hooks/useTransactions.d.ts.map +1 -0
  126. package/dist/billing/modules/billing/hooks/useTransactions.js +55 -0
  127. package/dist/billing/modules/billing/hooks/useTransactions.js.map +1 -0
  128. package/dist/billing/modules/billing/index.d.ts +7 -0
  129. package/dist/billing/modules/billing/index.d.ts.map +1 -0
  130. package/dist/billing/modules/billing/index.js +11 -0
  131. package/dist/billing/modules/billing/pages/InvoiceDetailPage.d.ts +4 -0
  132. package/dist/billing/modules/billing/pages/InvoiceDetailPage.d.ts.map +1 -0
  133. package/dist/billing/modules/billing/pages/InvoiceDetailPage.js +631 -0
  134. package/dist/billing/modules/billing/pages/InvoiceDetailPage.js.map +1 -0
  135. package/dist/billing/modules/billing/pages/InvoicesListPage.d.ts +4 -0
  136. package/dist/billing/modules/billing/pages/InvoicesListPage.d.ts.map +1 -0
  137. package/dist/billing/modules/billing/pages/InvoicesListPage.js +382 -0
  138. package/dist/billing/modules/billing/pages/InvoicesListPage.js.map +1 -0
  139. package/dist/billing/modules/billing/pages/PaymentMethodsPage.d.ts +4 -0
  140. package/dist/billing/modules/billing/pages/PaymentMethodsPage.d.ts.map +1 -0
  141. package/dist/billing/modules/billing/pages/PaymentMethodsPage.js +147 -0
  142. package/dist/billing/modules/billing/pages/PaymentMethodsPage.js.map +1 -0
  143. package/dist/billing/modules/billing/pages/RefundsPage.d.ts +4 -0
  144. package/dist/billing/modules/billing/pages/RefundsPage.d.ts.map +1 -0
  145. package/dist/billing/modules/billing/pages/RefundsPage.js +1074 -0
  146. package/dist/billing/modules/billing/pages/RefundsPage.js.map +1 -0
  147. package/dist/billing/modules/billing/pages/TransactionsPage.d.ts +4 -0
  148. package/dist/billing/modules/billing/pages/TransactionsPage.d.ts.map +1 -0
  149. package/dist/billing/modules/billing/pages/TransactionsPage.js +587 -0
  150. package/dist/billing/modules/billing/pages/TransactionsPage.js.map +1 -0
  151. package/dist/billing/modules/billing/pages/index.d.ts +10 -0
  152. package/dist/billing/modules/billing/pages/index.d.ts.map +1 -0
  153. package/dist/billing/modules/billing/pages/index.js +5 -0
  154. package/dist/billing/modules/checkout/components/AutoPayToggle.d.ts +14 -0
  155. package/dist/billing/modules/checkout/components/AutoPayToggle.d.ts.map +1 -0
  156. package/dist/billing/modules/checkout/components/AutoPayToggle.js +3 -0
  157. package/dist/billing/modules/checkout/components/BillingAccountSelector.d.ts +14 -0
  158. package/dist/billing/modules/checkout/components/BillingAccountSelector.d.ts.map +1 -0
  159. package/dist/billing/modules/checkout/components/BillingAccountSelector.js +151 -0
  160. package/dist/billing/modules/checkout/components/BillingAccountSelector.js.map +1 -0
  161. package/dist/billing/modules/checkout/components/CompactAutoPayToggle.d.ts +14 -0
  162. package/dist/billing/modules/checkout/components/CompactAutoPayToggle.d.ts.map +1 -0
  163. package/dist/billing/modules/checkout/components/CompactAutoPayToggle.js +4 -0
  164. package/dist/billing/modules/checkout/components/CreditsAmountInput.d.ts +14 -0
  165. package/dist/billing/modules/checkout/components/CreditsAmountInput.d.ts.map +1 -0
  166. package/dist/billing/modules/checkout/components/CreditsAmountInput.js +130 -0
  167. package/dist/billing/modules/checkout/components/CreditsAmountInput.js.map +1 -0
  168. package/dist/billing/modules/checkout/components/CreditsPaymentOption.d.ts +16 -0
  169. package/dist/billing/modules/checkout/components/CreditsPaymentOption.d.ts.map +1 -0
  170. package/dist/billing/modules/checkout/components/CreditsPaymentOption.js +5 -0
  171. package/dist/billing/modules/checkout/components/CurrencySelector.d.ts +19 -0
  172. package/dist/billing/modules/checkout/components/CurrencySelector.d.ts.map +1 -0
  173. package/dist/billing/modules/checkout/components/CurrencySelector.js +5 -0
  174. package/dist/billing/modules/checkout/components/NativeCheckoutView.d.ts +14 -0
  175. package/dist/billing/modules/checkout/components/NativeCheckoutView.d.ts.map +1 -0
  176. package/dist/billing/modules/checkout/components/NativeCheckoutView.js +273 -0
  177. package/dist/billing/modules/checkout/components/NativeCheckoutView.js.map +1 -0
  178. package/dist/billing/modules/checkout/components/OrderSummary.d.ts +22 -0
  179. package/dist/billing/modules/checkout/components/OrderSummary.d.ts.map +1 -0
  180. package/dist/billing/modules/checkout/components/OrderSummary.js +293 -0
  181. package/dist/billing/modules/checkout/components/OrderSummary.js.map +1 -0
  182. package/dist/billing/modules/checkout/components/PaymentProviderSelector.d.ts +19 -0
  183. package/dist/billing/modules/checkout/components/PaymentProviderSelector.d.ts.map +1 -0
  184. package/dist/billing/modules/checkout/components/PaymentProviderSelector.js +3 -0
  185. package/dist/billing/modules/checkout/components/PromoCodeInput.d.ts +19 -0
  186. package/dist/billing/modules/checkout/components/PromoCodeInput.d.ts.map +1 -0
  187. package/dist/billing/modules/checkout/components/PromoCodeInput.js +102 -0
  188. package/dist/billing/modules/checkout/components/PromoCodeInput.js.map +1 -0
  189. package/dist/billing/modules/checkout/components/RazorpayPaymentButton.d.ts +25 -0
  190. package/dist/billing/modules/checkout/components/RazorpayPaymentButton.d.ts.map +1 -0
  191. package/dist/billing/modules/checkout/components/RazorpayPaymentButton.js +169 -0
  192. package/dist/billing/modules/checkout/components/RazorpayPaymentButton.js.map +1 -0
  193. package/dist/billing/modules/checkout/components/SavedCardSelector.d.ts +13 -0
  194. package/dist/billing/modules/checkout/components/SavedCardSelector.d.ts.map +1 -0
  195. package/dist/billing/modules/checkout/components/SavedCardSelector.js +4 -0
  196. package/dist/billing/modules/checkout/components/SimpleAutoPayToggle.d.ts +13 -0
  197. package/dist/billing/modules/checkout/components/SimpleAutoPayToggle.d.ts.map +1 -0
  198. package/dist/billing/modules/checkout/components/SimpleAutoPayToggle.js +78 -0
  199. package/dist/billing/modules/checkout/components/SimpleAutoPayToggle.js.map +1 -0
  200. package/dist/billing/modules/checkout/components/StripePaymentForm.d.ts +16 -0
  201. package/dist/billing/modules/checkout/components/StripePaymentForm.d.ts.map +1 -0
  202. package/dist/billing/modules/checkout/components/StripePaymentForm.js +253 -0
  203. package/dist/billing/modules/checkout/components/StripePaymentForm.js.map +1 -0
  204. package/dist/billing/modules/checkout/components/SubscriptionSelector.d.ts +26 -0
  205. package/dist/billing/modules/checkout/components/SubscriptionSelector.d.ts.map +1 -0
  206. package/dist/billing/modules/checkout/components/SubscriptionSelector.js +84 -0
  207. package/dist/billing/modules/checkout/components/SubscriptionSelector.js.map +1 -0
  208. package/dist/billing/modules/checkout/components/UnifiedPaymentMethodSelector.d.ts +23 -0
  209. package/dist/billing/modules/checkout/components/UnifiedPaymentMethodSelector.d.ts.map +1 -0
  210. package/dist/billing/modules/checkout/components/UnifiedPaymentMethodSelector.js +229 -0
  211. package/dist/billing/modules/checkout/components/UnifiedPaymentMethodSelector.js.map +1 -0
  212. package/dist/billing/modules/checkout/components/index.d.ts +20 -0
  213. package/dist/billing/modules/checkout/components/index.d.ts.map +1 -0
  214. package/dist/billing/modules/checkout/components/index.js +16 -0
  215. package/dist/billing/modules/checkout/graphql/index.d.ts +6 -0
  216. package/dist/billing/modules/checkout/graphql/index.d.ts.map +1 -0
  217. package/dist/billing/modules/checkout/hooks/index.d.ts +9 -0
  218. package/dist/billing/modules/checkout/hooks/index.d.ts.map +1 -0
  219. package/dist/billing/modules/checkout/hooks/index.js +4 -0
  220. package/dist/billing/modules/checkout/hooks/useCheckout.d.ts +69 -0
  221. package/dist/billing/modules/checkout/hooks/useCheckout.d.ts.map +1 -0
  222. package/dist/billing/modules/checkout/hooks/useCheckout.js +377 -0
  223. package/dist/billing/modules/checkout/hooks/useCheckout.js.map +1 -0
  224. package/dist/billing/modules/checkout/hooks/useNativeCheckout.d.ts +26 -0
  225. package/dist/billing/modules/checkout/hooks/useNativeCheckout.d.ts.map +1 -0
  226. package/dist/billing/modules/checkout/hooks/useNativeCheckout.js +88 -0
  227. package/dist/billing/modules/checkout/hooks/useNativeCheckout.js.map +1 -0
  228. package/dist/billing/modules/checkout/hooks/usePaymentProviders.d.ts +19 -0
  229. package/dist/billing/modules/checkout/hooks/usePaymentProviders.d.ts.map +1 -0
  230. package/dist/billing/modules/checkout/hooks/usePaymentProviders.js +16 -0
  231. package/dist/billing/modules/checkout/hooks/usePaymentProviders.js.map +1 -0
  232. package/dist/billing/modules/checkout/hooks/usePaymentStatusPolling.d.ts +59 -0
  233. package/dist/billing/modules/checkout/hooks/usePaymentStatusPolling.d.ts.map +1 -0
  234. package/dist/billing/modules/checkout/hooks/usePaymentStatusPolling.js +107 -0
  235. package/dist/billing/modules/checkout/hooks/usePaymentStatusPolling.js.map +1 -0
  236. package/dist/billing/modules/checkout/index.d.ts +24 -0
  237. package/dist/billing/modules/checkout/index.d.ts.map +1 -0
  238. package/dist/billing/modules/checkout/index.js +19 -0
  239. package/dist/billing/modules/checkout/pages/CheckoutPage.d.ts +4 -0
  240. package/dist/billing/modules/checkout/pages/CheckoutPage.d.ts.map +1 -0
  241. package/dist/billing/modules/checkout/pages/CheckoutPage.js +1248 -0
  242. package/dist/billing/modules/checkout/pages/CheckoutPage.js.map +1 -0
  243. package/dist/billing/modules/checkout/pages/index.d.ts +5 -0
  244. package/dist/billing/modules/checkout/pages/index.d.ts.map +1 -0
  245. package/dist/billing/modules/checkout/pages/index.js +1 -0
  246. package/dist/billing/modules/checkout/types/index.d.ts +270 -0
  247. package/dist/billing/modules/checkout/types/index.d.ts.map +1 -0
  248. package/dist/billing/modules/checkout/utils/storeOrder.d.ts +20 -0
  249. package/dist/billing/modules/checkout/utils/storeOrder.d.ts.map +1 -0
  250. package/dist/billing/modules/checkout/utils/storeOrder.js +27 -0
  251. package/dist/billing/modules/checkout/utils/storeOrder.js.map +1 -0
  252. package/dist/billing/modules/coupons/index.d.ts +5 -0
  253. package/dist/billing/modules/coupons/index.d.ts.map +1 -0
  254. package/dist/billing/modules/coupons/index.js +6 -0
  255. package/dist/billing/modules/coupons/pages/CouponDetailPage.d.ts +4 -0
  256. package/dist/billing/modules/coupons/pages/CouponDetailPage.d.ts.map +1 -0
  257. package/dist/billing/modules/coupons/pages/CouponDetailPage.js +489 -0
  258. package/dist/billing/modules/coupons/pages/CouponDetailPage.js.map +1 -0
  259. package/dist/billing/modules/coupons/pages/CouponsListPage.d.ts +4 -0
  260. package/dist/billing/modules/coupons/pages/CouponsListPage.d.ts.map +1 -0
  261. package/dist/billing/modules/coupons/pages/CouponsListPage.js +544 -0
  262. package/dist/billing/modules/coupons/pages/CouponsListPage.js.map +1 -0
  263. package/dist/billing/modules/coupons/pages/CreateCouponPage.d.ts +4 -0
  264. package/dist/billing/modules/coupons/pages/CreateCouponPage.d.ts.map +1 -0
  265. package/dist/billing/modules/coupons/pages/CreateCouponPage.js +421 -0
  266. package/dist/billing/modules/coupons/pages/CreateCouponPage.js.map +1 -0
  267. package/dist/billing/modules/coupons/pages/EditCouponPage.d.ts +4 -0
  268. package/dist/billing/modules/coupons/pages/EditCouponPage.d.ts.map +1 -0
  269. package/dist/billing/modules/coupons/pages/EditCouponPage.js +379 -0
  270. package/dist/billing/modules/coupons/pages/EditCouponPage.js.map +1 -0
  271. package/dist/billing/modules/coupons/pages/index.d.ts +8 -0
  272. package/dist/billing/modules/coupons/pages/index.d.ts.map +1 -0
  273. package/dist/billing/modules/coupons/pages/index.js +4 -0
  274. package/dist/billing/modules/credits/hooks/index.d.ts +5 -0
  275. package/dist/billing/modules/credits/hooks/index.d.ts.map +1 -0
  276. package/dist/billing/modules/credits/hooks/index.js +1 -0
  277. package/dist/billing/modules/credits/hooks/useCredits.d.ts +75 -0
  278. package/dist/billing/modules/credits/hooks/useCredits.d.ts.map +1 -0
  279. package/dist/billing/modules/credits/hooks/useCredits.js +78 -0
  280. package/dist/billing/modules/credits/hooks/useCredits.js.map +1 -0
  281. package/dist/billing/modules/credits/index.d.ts +6 -0
  282. package/dist/billing/modules/credits/index.d.ts.map +1 -0
  283. package/dist/billing/modules/credits/index.js +8 -0
  284. package/dist/billing/modules/credits/pages/AdminCreditsPage.d.ts +4 -0
  285. package/dist/billing/modules/credits/pages/AdminCreditsPage.d.ts.map +1 -0
  286. package/dist/billing/modules/credits/pages/AdminCreditsPage.js +140 -0
  287. package/dist/billing/modules/credits/pages/AdminCreditsPage.js.map +1 -0
  288. package/dist/billing/modules/credits/pages/CreditTransactionsPage.d.ts +4 -0
  289. package/dist/billing/modules/credits/pages/CreditTransactionsPage.d.ts.map +1 -0
  290. package/dist/billing/modules/credits/pages/CreditTransactionsPage.js +331 -0
  291. package/dist/billing/modules/credits/pages/CreditTransactionsPage.js.map +1 -0
  292. package/dist/billing/modules/credits/pages/CreditWithdrawalPage.d.ts +4 -0
  293. package/dist/billing/modules/credits/pages/CreditWithdrawalPage.d.ts.map +1 -0
  294. package/dist/billing/modules/credits/pages/CreditWithdrawalPage.js +770 -0
  295. package/dist/billing/modules/credits/pages/CreditWithdrawalPage.js.map +1 -0
  296. package/dist/billing/modules/credits/pages/CreditsPage.d.ts +4 -0
  297. package/dist/billing/modules/credits/pages/CreditsPage.d.ts.map +1 -0
  298. package/dist/billing/modules/credits/pages/CreditsPage.js +324 -0
  299. package/dist/billing/modules/credits/pages/CreditsPage.js.map +1 -0
  300. package/dist/billing/modules/credits/pages/index.d.ts +8 -0
  301. package/dist/billing/modules/credits/pages/index.d.ts.map +1 -0
  302. package/dist/billing/modules/credits/pages/index.js +4 -0
  303. package/dist/billing/modules/dashboard/components/ActiveSubscriptionCard.d.ts +14 -0
  304. package/dist/billing/modules/dashboard/components/ActiveSubscriptionCard.d.ts.map +1 -0
  305. package/dist/billing/modules/dashboard/components/ActiveSubscriptionCard.js +185 -0
  306. package/dist/billing/modules/dashboard/components/ActiveSubscriptionCard.js.map +1 -0
  307. package/dist/billing/modules/dashboard/components/AddPaymentMethodModal.d.ts +111 -0
  308. package/dist/billing/modules/dashboard/components/AddPaymentMethodModal.d.ts.map +1 -0
  309. package/dist/billing/modules/dashboard/components/AddPaymentMethodModal.js +388 -0
  310. package/dist/billing/modules/dashboard/components/AddPaymentMethodModal.js.map +1 -0
  311. package/dist/billing/modules/dashboard/components/BillingAccountCard.d.ts +16 -0
  312. package/dist/billing/modules/dashboard/components/BillingAccountCard.d.ts.map +1 -0
  313. package/dist/billing/modules/dashboard/components/BillingAccountCard.js +146 -0
  314. package/dist/billing/modules/dashboard/components/BillingAccountCard.js.map +1 -0
  315. package/dist/billing/modules/dashboard/components/CreateBillingAccountModal.d.ts +13 -0
  316. package/dist/billing/modules/dashboard/components/CreateBillingAccountModal.d.ts.map +1 -0
  317. package/dist/billing/modules/dashboard/components/CreateBillingAccountModal.js +1044 -0
  318. package/dist/billing/modules/dashboard/components/CreateBillingAccountModal.js.map +1 -0
  319. package/dist/billing/modules/dashboard/components/PaymentMethodsSection.d.ts +15 -0
  320. package/dist/billing/modules/dashboard/components/PaymentMethodsSection.d.ts.map +1 -0
  321. package/dist/billing/modules/dashboard/components/PaymentMethodsSection.js +216 -0
  322. package/dist/billing/modules/dashboard/components/PaymentMethodsSection.js.map +1 -0
  323. package/dist/billing/modules/dashboard/components/RecommendedAddonsSection.d.ts +27 -0
  324. package/dist/billing/modules/dashboard/components/RecommendedAddonsSection.d.ts.map +1 -0
  325. package/dist/billing/modules/dashboard/components/RecommendedAddonsSection.js +193 -0
  326. package/dist/billing/modules/dashboard/components/RecommendedAddonsSection.js.map +1 -0
  327. package/dist/billing/modules/dashboard/components/index.d.ts +10 -0
  328. package/dist/billing/modules/dashboard/components/index.d.ts.map +1 -0
  329. package/dist/billing/modules/dashboard/components/index.js +6 -0
  330. package/dist/billing/modules/dashboard/hooks/index.d.ts +6 -0
  331. package/dist/billing/modules/dashboard/hooks/index.d.ts.map +1 -0
  332. package/dist/billing/modules/dashboard/hooks/index.js +2 -0
  333. package/dist/billing/modules/dashboard/hooks/useBillingOverviewData.d.ts +17 -0
  334. package/dist/billing/modules/dashboard/hooks/useBillingOverviewData.d.ts.map +1 -0
  335. package/dist/billing/modules/dashboard/hooks/useBillingOverviewData.js +42 -0
  336. package/dist/billing/modules/dashboard/hooks/useBillingOverviewData.js.map +1 -0
  337. package/dist/billing/modules/dashboard/hooks/useDashboard.d.ts +145 -0
  338. package/dist/billing/modules/dashboard/hooks/useDashboard.d.ts.map +1 -0
  339. package/dist/billing/modules/dashboard/hooks/useDashboard.js +118 -0
  340. package/dist/billing/modules/dashboard/hooks/useDashboard.js.map +1 -0
  341. package/dist/billing/modules/dashboard/index.d.ts +8 -0
  342. package/dist/billing/modules/dashboard/index.d.ts.map +1 -0
  343. package/dist/billing/modules/dashboard/index.js +12 -0
  344. package/dist/billing/modules/dashboard/pages/OverviewPage.d.ts +4 -0
  345. package/dist/billing/modules/dashboard/pages/OverviewPage.d.ts.map +1 -0
  346. package/dist/billing/modules/dashboard/pages/OverviewPage.js +478 -0
  347. package/dist/billing/modules/dashboard/pages/OverviewPage.js.map +1 -0
  348. package/dist/billing/modules/dashboard/pages/index.d.ts +5 -0
  349. package/dist/billing/modules/dashboard/pages/index.d.ts.map +1 -0
  350. package/dist/billing/modules/dashboard/pages/index.js +1 -0
  351. package/dist/billing/modules/discounts/index.d.ts +6 -0
  352. package/dist/billing/modules/discounts/index.d.ts.map +1 -0
  353. package/dist/billing/modules/discounts/index.js +3 -0
  354. package/dist/billing/modules/discounts/pages/DiscountsListPage.d.ts +4 -0
  355. package/dist/billing/modules/discounts/pages/DiscountsListPage.d.ts.map +1 -0
  356. package/dist/billing/modules/discounts/pages/DiscountsListPage.js +1009 -0
  357. package/dist/billing/modules/discounts/pages/DiscountsListPage.js.map +1 -0
  358. package/dist/billing/modules/discounts/pages/index.d.ts +6 -0
  359. package/dist/billing/modules/discounts/pages/index.d.ts.map +1 -0
  360. package/dist/billing/modules/discounts/pages/index.js +1 -0
  361. package/dist/billing/modules/earnings/api.d.ts +131 -0
  362. package/dist/billing/modules/earnings/api.d.ts.map +1 -0
  363. package/dist/billing/modules/earnings/api.js +122 -0
  364. package/dist/billing/modules/earnings/api.js.map +1 -0
  365. package/dist/billing/modules/earnings/index.d.ts +4 -0
  366. package/dist/billing/modules/earnings/index.d.ts.map +1 -0
  367. package/dist/billing/modules/earnings/index.js +4 -0
  368. package/dist/billing/modules/earnings/pages/EarningsPage.d.ts +4 -0
  369. package/dist/billing/modules/earnings/pages/EarningsPage.d.ts.map +1 -0
  370. package/dist/billing/modules/earnings/pages/EarningsPage.js +435 -0
  371. package/dist/billing/modules/earnings/pages/EarningsPage.js.map +1 -0
  372. package/dist/billing/modules/earnings/pages/PayoutAdminPage.d.ts +4 -0
  373. package/dist/billing/modules/earnings/pages/PayoutAdminPage.d.ts.map +1 -0
  374. package/dist/billing/modules/earnings/pages/PayoutAdminPage.js +273 -0
  375. package/dist/billing/modules/earnings/pages/PayoutAdminPage.js.map +1 -0
  376. package/dist/billing/modules/earnings/pages/PayoutsPage.d.ts +4 -0
  377. package/dist/billing/modules/earnings/pages/PayoutsPage.d.ts.map +1 -0
  378. package/dist/billing/modules/earnings/pages/PayoutsPage.js +480 -0
  379. package/dist/billing/modules/earnings/pages/PayoutsPage.js.map +1 -0
  380. package/dist/billing/modules/plans/hooks/index.d.ts +7 -0
  381. package/dist/billing/modules/plans/hooks/index.d.ts.map +1 -0
  382. package/dist/billing/modules/plans/hooks/index.js +2 -0
  383. package/dist/billing/modules/plans/hooks/usePlans.d.ts +46 -0
  384. package/dist/billing/modules/plans/hooks/usePlans.d.ts.map +1 -0
  385. package/dist/billing/modules/plans/hooks/usePlans.js +77 -0
  386. package/dist/billing/modules/plans/hooks/usePlans.js.map +1 -0
  387. package/dist/billing/modules/plans/hooks/useQuotas.d.ts +27 -0
  388. package/dist/billing/modules/plans/hooks/useQuotas.d.ts.map +1 -0
  389. package/dist/billing/modules/plans/hooks/useQuotas.js +21 -0
  390. package/dist/billing/modules/plans/hooks/useQuotas.js.map +1 -0
  391. package/dist/billing/modules/plans/index.d.ts +7 -0
  392. package/dist/billing/modules/plans/index.d.ts.map +1 -0
  393. package/dist/billing/modules/plans/index.js +11 -0
  394. package/dist/billing/modules/plans/pages/PlanBrowseDetailPage.d.ts +4 -0
  395. package/dist/billing/modules/plans/pages/PlanBrowseDetailPage.d.ts.map +1 -0
  396. package/dist/billing/modules/plans/pages/PlanBrowseDetailPage.js +264 -0
  397. package/dist/billing/modules/plans/pages/PlanBrowseDetailPage.js.map +1 -0
  398. package/dist/billing/modules/plans/pages/PlanCreatePage.d.ts +4 -0
  399. package/dist/billing/modules/plans/pages/PlanCreatePage.d.ts.map +1 -0
  400. package/dist/billing/modules/plans/pages/PlanCreatePage.js +368 -0
  401. package/dist/billing/modules/plans/pages/PlanCreatePage.js.map +1 -0
  402. package/dist/billing/modules/plans/pages/PlanDetailPage.d.ts +4 -0
  403. package/dist/billing/modules/plans/pages/PlanDetailPage.d.ts.map +1 -0
  404. package/dist/billing/modules/plans/pages/PlanDetailPage.js +356 -0
  405. package/dist/billing/modules/plans/pages/PlanDetailPage.js.map +1 -0
  406. package/dist/billing/modules/plans/pages/PlanEditPage.d.ts +4 -0
  407. package/dist/billing/modules/plans/pages/PlanEditPage.d.ts.map +1 -0
  408. package/dist/billing/modules/plans/pages/PlanEditPage.js +395 -0
  409. package/dist/billing/modules/plans/pages/PlanEditPage.js.map +1 -0
  410. package/dist/billing/modules/plans/pages/PlansBrowsePage.d.ts +4 -0
  411. package/dist/billing/modules/plans/pages/PlansBrowsePage.d.ts.map +1 -0
  412. package/dist/billing/modules/plans/pages/PlansBrowsePage.js +314 -0
  413. package/dist/billing/modules/plans/pages/PlansBrowsePage.js.map +1 -0
  414. package/dist/billing/modules/plans/pages/PlansListPage.d.ts +4 -0
  415. package/dist/billing/modules/plans/pages/PlansListPage.d.ts.map +1 -0
  416. package/dist/billing/modules/plans/pages/PlansListPage.js +438 -0
  417. package/dist/billing/modules/plans/pages/PlansListPage.js.map +1 -0
  418. package/dist/billing/modules/plans/pages/index.d.ts +11 -0
  419. package/dist/billing/modules/plans/pages/index.d.ts.map +1 -0
  420. package/dist/billing/modules/plans/pages/index.js +6 -0
  421. package/dist/billing/modules/quota/hooks/index.d.ts +6 -0
  422. package/dist/billing/modules/quota/hooks/index.d.ts.map +1 -0
  423. package/dist/billing/modules/quota/hooks/index.js +2 -0
  424. package/dist/billing/modules/quota/hooks/useQuota.d.ts +102 -0
  425. package/dist/billing/modules/quota/hooks/useQuota.d.ts.map +1 -0
  426. package/dist/billing/modules/quota/hooks/useQuota.js +63 -0
  427. package/dist/billing/modules/quota/hooks/useQuota.js.map +1 -0
  428. package/dist/billing/modules/quota/hooks/useQuotaTemplates.d.ts +39 -0
  429. package/dist/billing/modules/quota/hooks/useQuotaTemplates.d.ts.map +1 -0
  430. package/dist/billing/modules/quota/hooks/useQuotaTemplates.js +67 -0
  431. package/dist/billing/modules/quota/hooks/useQuotaTemplates.js.map +1 -0
  432. package/dist/billing/modules/quota/index.d.ts +6 -0
  433. package/dist/billing/modules/quota/index.d.ts.map +1 -0
  434. package/dist/billing/modules/quota/index.js +10 -0
  435. package/dist/billing/modules/quota/pages/QuotaPage.d.ts +4 -0
  436. package/dist/billing/modules/quota/pages/QuotaPage.d.ts.map +1 -0
  437. package/dist/billing/modules/quota/pages/QuotaPage.js +337 -0
  438. package/dist/billing/modules/quota/pages/QuotaPage.js.map +1 -0
  439. package/dist/billing/modules/quota/pages/QuotaTemplateCreatePage.d.ts +4 -0
  440. package/dist/billing/modules/quota/pages/QuotaTemplateCreatePage.d.ts.map +1 -0
  441. package/dist/billing/modules/quota/pages/QuotaTemplateCreatePage.js +273 -0
  442. package/dist/billing/modules/quota/pages/QuotaTemplateCreatePage.js.map +1 -0
  443. package/dist/billing/modules/quota/pages/QuotaTemplateDetailPage.d.ts +4 -0
  444. package/dist/billing/modules/quota/pages/QuotaTemplateDetailPage.d.ts.map +1 -0
  445. package/dist/billing/modules/quota/pages/QuotaTemplateDetailPage.js +272 -0
  446. package/dist/billing/modules/quota/pages/QuotaTemplateDetailPage.js.map +1 -0
  447. package/dist/billing/modules/quota/pages/QuotaTemplateEditPage.d.ts +4 -0
  448. package/dist/billing/modules/quota/pages/QuotaTemplateEditPage.d.ts.map +1 -0
  449. package/dist/billing/modules/quota/pages/QuotaTemplateEditPage.js +316 -0
  450. package/dist/billing/modules/quota/pages/QuotaTemplateEditPage.js.map +1 -0
  451. package/dist/billing/modules/quota/pages/QuotaTemplatesListPage.d.ts +4 -0
  452. package/dist/billing/modules/quota/pages/QuotaTemplatesListPage.d.ts.map +1 -0
  453. package/dist/billing/modules/quota/pages/QuotaTemplatesListPage.js +401 -0
  454. package/dist/billing/modules/quota/pages/QuotaTemplatesListPage.js.map +1 -0
  455. package/dist/billing/modules/quota/pages/index.d.ts +9 -0
  456. package/dist/billing/modules/quota/pages/index.d.ts.map +1 -0
  457. package/dist/billing/modules/quota/pages/index.js +5 -0
  458. package/dist/billing/modules/settings/index.d.ts +5 -0
  459. package/dist/billing/modules/settings/index.d.ts.map +1 -0
  460. package/dist/billing/modules/settings/index.js +4 -0
  461. package/dist/billing/modules/settings/pages/SettingsPage.d.ts +4 -0
  462. package/dist/billing/modules/settings/pages/SettingsPage.d.ts.map +1 -0
  463. package/dist/billing/modules/settings/pages/SettingsPage.js +632 -0
  464. package/dist/billing/modules/settings/pages/SettingsPage.js.map +1 -0
  465. package/dist/billing/modules/settings/pages/TeamPermissionsPage.d.ts +4 -0
  466. package/dist/billing/modules/settings/pages/TeamPermissionsPage.d.ts.map +1 -0
  467. package/dist/billing/modules/settings/pages/TeamPermissionsPage.js +270 -0
  468. package/dist/billing/modules/settings/pages/TeamPermissionsPage.js.map +1 -0
  469. package/dist/billing/modules/settings/pages/index.d.ts +6 -0
  470. package/dist/billing/modules/settings/pages/index.d.ts.map +1 -0
  471. package/dist/billing/modules/settings/pages/index.js +2 -0
  472. package/dist/billing/modules/store/graphql/index.d.ts +6 -0
  473. package/dist/billing/modules/store/graphql/index.d.ts.map +1 -0
  474. package/dist/billing/modules/store/graphql/index.js +1 -0
  475. package/dist/billing/modules/store/index.d.ts +6 -0
  476. package/dist/billing/modules/store/index.d.ts.map +1 -0
  477. package/dist/billing/modules/store/index.js +3 -0
  478. package/dist/billing/modules/store/pages/StoreCheckoutPage.d.ts +11 -0
  479. package/dist/billing/modules/store/pages/StoreCheckoutPage.d.ts.map +1 -0
  480. package/dist/billing/modules/store/pages/StoreCheckoutPage.js +18 -0
  481. package/dist/billing/modules/store/pages/StoreCheckoutPage.js.map +1 -0
  482. package/dist/billing/modules/subscriptions/components/ManageSeatsModal.d.ts +12 -0
  483. package/dist/billing/modules/subscriptions/components/ManageSeatsModal.d.ts.map +1 -0
  484. package/dist/billing/modules/subscriptions/components/ManageSeatsModal.js +167 -0
  485. package/dist/billing/modules/subscriptions/components/ManageSeatsModal.js.map +1 -0
  486. package/dist/billing/modules/subscriptions/hooks/index.d.ts +6 -0
  487. package/dist/billing/modules/subscriptions/hooks/index.d.ts.map +1 -0
  488. package/dist/billing/modules/subscriptions/hooks/index.js +1 -0
  489. package/dist/billing/modules/subscriptions/hooks/useSubscriptions.d.ts +92 -0
  490. package/dist/billing/modules/subscriptions/hooks/useSubscriptions.d.ts.map +1 -0
  491. package/dist/billing/modules/subscriptions/hooks/useSubscriptions.js +136 -0
  492. package/dist/billing/modules/subscriptions/hooks/useSubscriptions.js.map +1 -0
  493. package/dist/billing/modules/subscriptions/index.d.ts +7 -0
  494. package/dist/billing/modules/subscriptions/index.d.ts.map +1 -0
  495. package/dist/billing/modules/subscriptions/index.js +7 -0
  496. package/dist/billing/modules/subscriptions/pages/SubscriptionDetailPage.d.ts +4 -0
  497. package/dist/billing/modules/subscriptions/pages/SubscriptionDetailPage.d.ts.map +1 -0
  498. package/dist/billing/modules/subscriptions/pages/SubscriptionDetailPage.js +551 -0
  499. package/dist/billing/modules/subscriptions/pages/SubscriptionDetailPage.js.map +1 -0
  500. package/dist/billing/modules/subscriptions/pages/SubscriptionsListPage.d.ts +4 -0
  501. package/dist/billing/modules/subscriptions/pages/SubscriptionsListPage.d.ts.map +1 -0
  502. package/dist/billing/modules/subscriptions/pages/SubscriptionsListPage.js +529 -0
  503. package/dist/billing/modules/subscriptions/pages/SubscriptionsListPage.js.map +1 -0
  504. package/dist/billing/modules/subscriptions/pages/UpgradeSubscriptionPage.d.ts +4 -0
  505. package/dist/billing/modules/subscriptions/pages/UpgradeSubscriptionPage.d.ts.map +1 -0
  506. package/dist/billing/modules/subscriptions/pages/UpgradeSubscriptionPage.js +430 -0
  507. package/dist/billing/modules/subscriptions/pages/UpgradeSubscriptionPage.js.map +1 -0
  508. package/dist/billing/modules/subscriptions/pages/index.d.ts +8 -0
  509. package/dist/billing/modules/subscriptions/pages/index.d.ts.map +1 -0
  510. package/dist/billing/modules/subscriptions/pages/index.js +3 -0
  511. package/dist/billing/modules/usage/hooks/index.d.ts +6 -0
  512. package/dist/billing/modules/usage/hooks/index.d.ts.map +1 -0
  513. package/dist/billing/modules/usage/hooks/index.js +1 -0
  514. package/dist/billing/modules/usage/hooks/useUsage.d.ts +203 -0
  515. package/dist/billing/modules/usage/hooks/useUsage.d.ts.map +1 -0
  516. package/dist/billing/modules/usage/hooks/useUsage.js +271 -0
  517. package/dist/billing/modules/usage/hooks/useUsage.js.map +1 -0
  518. package/dist/billing/modules/usage/index.d.ts +6 -0
  519. package/dist/billing/modules/usage/index.d.ts.map +1 -0
  520. package/dist/billing/modules/usage/index.js +5 -0
  521. package/dist/billing/modules/usage/pages/UsagePage.d.ts +4 -0
  522. package/dist/billing/modules/usage/pages/UsagePage.d.ts.map +1 -0
  523. package/dist/billing/modules/usage/pages/UsagePage.js +817 -0
  524. package/dist/billing/modules/usage/pages/UsagePage.js.map +1 -0
  525. package/dist/billing/modules/usage/pages/index.d.ts +5 -0
  526. package/dist/billing/modules/usage/pages/index.d.ts.map +1 -0
  527. package/dist/billing/modules/usage/pages/index.js +1 -0
  528. package/dist/billing/providers/BillingProvider.d.ts +16 -0
  529. package/dist/billing/providers/BillingProvider.d.ts.map +1 -0
  530. package/dist/billing/providers/BillingProvider.js +40 -0
  531. package/dist/billing/providers/BillingProvider.js.map +1 -0
  532. package/dist/billing/shared/components/AccessDenied.d.ts +8 -0
  533. package/dist/billing/shared/components/AccessDenied.d.ts.map +1 -0
  534. package/dist/billing/shared/components/AccessDenied.js +44 -0
  535. package/dist/billing/shared/components/AccessDenied.js.map +1 -0
  536. package/dist/billing/shared/components/CurrencyPriceOverridesEditor.d.ts +11 -0
  537. package/dist/billing/shared/components/CurrencyPriceOverridesEditor.d.ts.map +1 -0
  538. package/dist/billing/shared/components/CurrencyPriceOverridesEditor.js +230 -0
  539. package/dist/billing/shared/components/CurrencyPriceOverridesEditor.js.map +1 -0
  540. package/dist/billing/shared/components/EmptyState.d.ts +11 -0
  541. package/dist/billing/shared/components/EmptyState.d.ts.map +1 -0
  542. package/dist/billing/shared/components/EmptyState.js +27 -0
  543. package/dist/billing/shared/components/EmptyState.js.map +1 -0
  544. package/dist/billing/shared/components/GeoPricingOverridesEditor.d.ts +11 -0
  545. package/dist/billing/shared/components/GeoPricingOverridesEditor.d.ts.map +1 -0
  546. package/dist/billing/shared/components/GeoPricingOverridesEditor.js +1 -0
  547. package/dist/billing/shared/components/PageHeader.d.ts +11 -0
  548. package/dist/billing/shared/components/PageHeader.d.ts.map +1 -0
  549. package/dist/billing/shared/components/PageHeader.js +25 -0
  550. package/dist/billing/shared/components/PageHeader.js.map +1 -0
  551. package/dist/billing/shared/components/ServerError.d.ts +11 -0
  552. package/dist/billing/shared/components/ServerError.d.ts.map +1 -0
  553. package/dist/billing/shared/components/ServerError.js +75 -0
  554. package/dist/billing/shared/components/ServerError.js.map +1 -0
  555. package/dist/billing/shared/components/StatCard.d.ts +15 -0
  556. package/dist/billing/shared/components/StatCard.d.ts.map +1 -0
  557. package/dist/billing/shared/components/StatCard.js +37 -0
  558. package/dist/billing/shared/components/StatCard.js.map +1 -0
  559. package/dist/billing/shared/components/index.d.ts +11 -0
  560. package/dist/billing/shared/components/index.d.ts.map +1 -0
  561. package/dist/billing/shared/components/index.js +7 -0
  562. package/dist/billing/shared/index.d.ts +8 -0
  563. package/dist/billing/shared/index.d.ts.map +1 -0
  564. package/dist/billing/shared/types/graphql.d.ts +926 -0
  565. package/dist/billing/shared/types/graphql.d.ts.map +1 -0
  566. package/dist/billing/shared/types/graphql.js +30 -0
  567. package/dist/billing/shared/types/graphql.js.map +1 -0
  568. package/dist/billing/shared/types/index.d.ts +96 -0
  569. package/dist/billing/shared/types/index.d.ts.map +1 -0
  570. package/dist/billing/shared/utils/directActivityGraphql.d.ts +13 -0
  571. package/dist/billing/shared/utils/directActivityGraphql.d.ts.map +1 -0
  572. package/dist/billing/shared/utils/directActivityGraphql.js +2 -0
  573. package/dist/billing/shared/utils/directBillingGraphql.d.ts +13 -0
  574. package/dist/billing/shared/utils/directBillingGraphql.d.ts.map +1 -0
  575. package/dist/billing/shared/utils/directBillingGraphql.js +22 -0
  576. package/dist/billing/shared/utils/directBillingGraphql.js.map +1 -0
  577. package/dist/billing/shared/utils/error.d.ts +30 -0
  578. package/dist/billing/shared/utils/error.d.ts.map +1 -0
  579. package/dist/billing/shared/utils/error.js +16 -0
  580. package/dist/billing/shared/utils/error.js.map +1 -0
  581. package/dist/billing/shared/utils/format.d.ts +28 -0
  582. package/dist/billing/shared/utils/format.d.ts.map +1 -0
  583. package/dist/billing/shared/utils/format.js +65 -0
  584. package/dist/billing/shared/utils/format.js.map +1 -0
  585. package/dist/billing/shared/utils/gatewayGraphql.d.ts +15 -0
  586. package/dist/billing/shared/utils/gatewayGraphql.d.ts.map +1 -0
  587. package/dist/billing/shared/utils/gatewayGraphql.js +27 -0
  588. package/dist/billing/shared/utils/gatewayGraphql.js.map +1 -0
  589. package/dist/billing/shared/utils/index.d.ts +13 -0
  590. package/dist/billing/shared/utils/index.d.ts.map +1 -0
  591. package/dist/billing/shared/utils/index.js +8 -0
  592. package/dist/billing/shared/utils/navigation.d.ts +2 -0
  593. package/dist/billing/shared/utils/navigation.d.ts.map +1 -0
  594. package/dist/billing/shared/utils/navigation.js +8 -0
  595. package/dist/billing/shared/utils/navigation.js.map +1 -0
  596. package/dist/billing/shared/utils/paymentTheme.d.ts +18 -0
  597. package/dist/billing/shared/utils/paymentTheme.d.ts.map +1 -0
  598. package/dist/billing/shared/utils/paymentTheme.js +32 -0
  599. package/dist/billing/shared/utils/paymentTheme.js.map +1 -0
  600. package/dist/billing/shared/utils/status.d.ts +28 -0
  601. package/dist/billing/shared/utils/status.d.ts.map +1 -0
  602. package/dist/billing/shared/utils/status.js +57 -0
  603. package/dist/billing/shared/utils/status.js.map +1 -0
  604. package/dist/billing/shared/utils/tokens.d.ts +156 -0
  605. package/dist/billing/shared/utils/tokens.d.ts.map +1 -0
  606. package/dist/billing/shared/utils/tokens.js +128 -0
  607. package/dist/billing/shared/utils/tokens.js.map +1 -0
  608. package/dist/billing/types/index.d.ts +268 -0
  609. package/dist/billing/types/index.d.ts.map +1 -0
  610. package/dist/billing/utils/index.d.ts +128 -0
  611. package/dist/billing/utils/index.d.ts.map +1 -0
  612. package/dist/dev/main.d.ts +2 -0
  613. package/dist/dev/main.d.ts.map +1 -0
  614. package/dist/generated/global-operations.d.ts +9544 -0
  615. package/dist/generated/global-operations.d.ts.map +1 -0
  616. package/dist/generated/global-operations.js +3542 -0
  617. package/dist/generated/global-operations.js.map +1 -0
  618. package/dist/generated/global-types.d.ts +22208 -0
  619. package/dist/generated/global-types.d.ts.map +1 -0
  620. package/dist/generated/global-types.js +12 -0
  621. package/dist/generated/global-types.js.map +1 -0
  622. package/dist/generated/wspace-operations.d.ts +61 -0
  623. package/dist/generated/wspace-operations.d.ts.map +1 -0
  624. package/dist/generated/wspace-operations.js +35 -0
  625. package/dist/generated/wspace-operations.js.map +1 -0
  626. package/dist/generated/wspace-types.d.ts +48578 -0
  627. package/dist/generated/wspace-types.d.ts.map +1 -0
  628. package/dist/index.d.ts +8 -0
  629. package/dist/index.d.ts.map +1 -0
  630. package/dist/index.js +2 -0
  631. package/dist/node_modules/@capacitor/core/dist/index.js +270 -0
  632. package/dist/node_modules/@capacitor/core/dist/index.js.map +1 -0
  633. package/dist/utils/nativeBridge.d.ts +3 -0
  634. package/dist/utils/nativeBridge.d.ts.map +1 -0
  635. package/dist/utils/nativeBridge.js +2 -0
  636. package/package.json +112 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"global-operations.js","names":[],"sources":["../../src/generated/global-operations.ts"],"sourcesContent":["// @ts-nocheck\nimport * as Types from './global-types';\n\nimport { gql } from '@apollo/client';\nimport * as Apollo from '@apollo/client';\nimport * as ApolloReactHooks from '@apollo/client/react';\nconst defaultOptions = {} as const;\nexport type AddonFieldsFragment = { __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null };\n\nexport type AddonSubscriptionFieldsFragment = { __typename?: 'AddonSubscription', id?: string | null, addonId?: string | null, currentSubscriptionId?: string | null, quantity?: number | null, startDate?: string | null, endDate?: string | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, addon?: { __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null } | null };\n\nexport type AddonWithFeaturesFieldsFragment = { __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null };\n\nexport type CreateAddOnsMutationVariables = Types.Exact<{\n input: Types.CreateAddOnsInput;\n}>;\n\n\nexport type CreateAddOnsMutation = { __typename?: 'Mutation', createAddOns: boolean };\n\nexport type ToggleAddOnMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n status: Types.Scalars['Boolean']['input'];\n}>;\n\n\nexport type ToggleAddOnMutation = { __typename?: 'Mutation', toggleAddOn: boolean };\n\nexport type UpdateAddOnDetailsMutationVariables = Types.Exact<{\n input: Types.UpdateAddOnsInput;\n}>;\n\n\nexport type UpdateAddOnDetailsMutation = { __typename?: 'Mutation', updateAddOnDetails: boolean };\n\nexport type GetAllAddOnsQueryVariables = Types.Exact<{\n filter?: Types.InputMaybe<Types.AddonsFilter>;\n}>;\n\n\nexport type GetAllAddOnsQuery = { __typename?: 'Query', getAllAddOns: Array<{ __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null }> };\n\nexport type GetSelectedAddonsQueryVariables = Types.Exact<{\n addonIDs: Array<Types.Scalars['String']['input']> | Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetSelectedAddonsQuery = { __typename?: 'Query', getSelectedAddons: Array<{ __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null }> };\n\nexport type GetBillingAnalyticsPageDataQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAnalyticsPageDataQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null, subscriptions?: Array<{ __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, seatCount?: number | null, startDate: string, endDate: string, canceledAt?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null } | null> | null }>, getPayments: Array<{ __typename?: 'Payment', id: string, amount: number, currency: string, status: Types.PaymentStatus, provider?: string | null, paidAt?: string | null, createdAt: string }> };\n\nexport type ChargeFieldsFragment = { __typename?: 'Charge', id: string, orgId: string, amount: number, currency: string, status: Types.ChargeStatus, description?: string | null, provider?: string | null, gatewayChargeId?: string | null, gatewayPaymentId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, refunds: Array<{ __typename?: 'Refund', id: string, chargeId: string, amount: number, currency: string, status: Types.RefundStatus, reason?: string | null, provider?: string | null, gatewayRefundId?: string | null, processedAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> };\n\nexport type InvoiceFieldsFragment = { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type InvoiceItemFieldsFragment = { __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null };\n\nexport type InvoiceWithItemsFieldsFragment = { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null };\n\nexport type PaymentFieldsFragment = { __typename?: 'Payment', id: string, orgId: string, transactionId?: string | null, amount: number, currency: string, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, gatewayPaymentId?: string | null, gatewayOrderId?: string | null, failureReason?: string | null, paidAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type PaymentMethodFieldsFragment = { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripeCustomerId?: string | null, stripePaymentMethodId?: string | null, razorpayCustomerId?: string | null, razorpayPaymentMethodId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type RefundFieldsFragment = { __typename?: 'Refund', id: string, chargeId: string, amount: number, currency: string, status: Types.RefundStatus, reason?: string | null, provider?: string | null, gatewayRefundId?: string | null, processedAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type RefundRecordFieldsFragment = { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type RefundRecordWithRelationsFieldsFragment = { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, webhookLog?: { __typename?: 'BillingWebhookLog', id: string, event: string, provider: string, payload: Record<string, unknown>, processed: boolean, error?: string | null, createdAt: string } | null, transaction?: { __typename?: 'Transaction', id: string, amount: number, currency: string, status: Types.TransactionStatus, type: Types.TransactionType, description?: string | null, createdAt: string } | null };\n\nexport type AddPaymentMethodMutationVariables = Types.Exact<{\n input: Types.CreatePaymentMethodInput;\n}>;\n\n\nexport type AddPaymentMethodMutation = { __typename?: 'Mutation', addPaymentMethod: { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripeCustomerId?: string | null, stripePaymentMethodId?: string | null, razorpayCustomerId?: string | null, razorpayPaymentMethodId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type CreateRefundMutationVariables = Types.Exact<{\n chargeId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n amount: Types.Scalars['Float']['input'];\n reason?: Types.InputMaybe<Types.Scalars['String']['input']>;\n currency?: Types.InputMaybe<Types.Scalars['String']['input']>;\n metadata?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type CreateRefundMutation = { __typename?: 'Mutation', createRefund: { __typename?: 'Refund', id: string, chargeId: string, amount: number, currency: string, status: Types.RefundStatus, reason?: string | null, provider?: string | null, gatewayRefundId?: string | null, processedAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type CreateRefundRecordMutationVariables = Types.Exact<{\n billingAccountId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n provider: Types.Scalars['String']['input'];\n gatewayPaymentId: Types.Scalars['String']['input'];\n gatewayOrderId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n amount: Types.Scalars['Float']['input'];\n currency: Types.Scalars['String']['input'];\n purchaseType?: Types.InputMaybe<Types.Scalars['String']['input']>;\n purchaseDetail?: Types.InputMaybe<Types.Scalars['String']['input']>;\n reason?: Types.InputMaybe<Types.Scalars['String']['input']>;\n notes?: Types.InputMaybe<Types.Scalars['String']['input']>;\n transactionId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n metadata?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type CreateRefundRecordMutation = { __typename?: 'Mutation', createRefundRecord: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type CreateRefundRecordFromWebhookMutationVariables = Types.Exact<{\n webhookLogId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type CreateRefundRecordFromWebhookMutation = { __typename?: 'Mutation', createRefundRecordFromWebhook?: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } | null };\n\nexport type CreateRefundRecordsFromFailedWebhooksMutationVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type CreateRefundRecordsFromFailedWebhooksMutation = { __typename?: 'Mutation', createRefundRecordsFromFailedWebhooks: Array<{ __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> };\n\nexport type DeletePaymentMethodMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeletePaymentMethodMutation = { __typename?: 'Mutation', deletePaymentMethod: boolean };\n\nexport type GenerateInvoiceMutationVariables = Types.Exact<{\n subscriptionId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GenerateInvoiceMutation = { __typename?: 'Mutation', generateInvoice: { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null } };\n\nexport type PayInvoiceMutationVariables = Types.Exact<{\n invoiceId: Types.Scalars['ID']['input'];\n paymentMethodId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type PayInvoiceMutation = { __typename?: 'Mutation', payInvoice: { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null } };\n\nexport type ProcessRefundMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n notes?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type ProcessRefundMutation = { __typename?: 'Mutation', processRefund: { __typename?: 'ProcessRefundResult', success: boolean, gatewayRefundId?: string | null, error?: string | null, refundRecord?: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } | null } };\n\nexport type RetryRefundMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type RetryRefundMutation = { __typename?: 'Mutation', retryRefund: { __typename?: 'ProcessRefundResult', success: boolean, gatewayRefundId?: string | null, error?: string | null, refundRecord?: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } | null } };\n\nexport type SkipRefundMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n reason: Types.Scalars['String']['input'];\n}>;\n\n\nexport type SkipRefundMutation = { __typename?: 'Mutation', skipRefund: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type UpdatePaymentMethodMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n isDefault: Types.Scalars['Boolean']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type UpdatePaymentMethodMutation = { __typename?: 'Mutation', updatePaymentMethod: { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripeCustomerId?: string | null, stripePaymentMethodId?: string | null, razorpayCustomerId?: string | null, razorpayPaymentMethodId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type VoidInvoiceMutationVariables = Types.Exact<{\n invoiceId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type VoidInvoiceMutation = { __typename?: 'Mutation', voidInvoice: { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type GetChargeQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetChargeQuery = { __typename?: 'Query', getCharge?: { __typename?: 'Charge', id: string, orgId: string, amount: number, currency: string, status: Types.ChargeStatus, description?: string | null, provider?: string | null, gatewayChargeId?: string | null, gatewayPaymentId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, refunds: Array<{ __typename?: 'Refund', id: string, chargeId: string, amount: number, currency: string, status: Types.RefundStatus, reason?: string | null, provider?: string | null, gatewayRefundId?: string | null, processedAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> } | null };\n\nexport type GetChargesQueryVariables = Types.Exact<{\n status?: Types.InputMaybe<Types.ChargeStatus>;\n}>;\n\n\nexport type GetChargesQuery = { __typename?: 'Query', getCharges: Array<{ __typename?: 'Charge', id: string, orgId: string, amount: number, currency: string, status: Types.ChargeStatus, description?: string | null, provider?: string | null, gatewayChargeId?: string | null, gatewayPaymentId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, refunds: Array<{ __typename?: 'Refund', id: string, chargeId: string, amount: number, currency: string, status: Types.RefundStatus, reason?: string | null, provider?: string | null, gatewayRefundId?: string | null, processedAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> }> };\n\nexport type GetDefaultPaymentMethodQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetDefaultPaymentMethodQuery = { __typename?: 'Query', getDefaultPaymentMethod?: { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripeCustomerId?: string | null, stripePaymentMethodId?: string | null, razorpayCustomerId?: string | null, razorpayPaymentMethodId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string } | null };\n\nexport type GetInvoiceQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetInvoiceQuery = { __typename?: 'Query', getInvoice?: { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null } | null };\n\nexport type GetInvoiceByNumberQueryVariables = Types.Exact<{\n invoiceNumber: Types.Scalars['String']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetInvoiceByNumberQuery = { __typename?: 'Query', getInvoiceByNumber?: { __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null } | null };\n\nexport type GetInvoicesQueryVariables = Types.Exact<{\n status?: Types.InputMaybe<Types.InvoiceStatus>;\n billingAccountId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n}>;\n\n\nexport type GetInvoicesQuery = { __typename?: 'Query', getInvoices: Array<{ __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null }> };\n\nexport type GetPaginatedInvoicesQueryVariables = Types.Exact<{\n status?: Types.InputMaybe<Types.InvoiceStatus>;\n billingAccountId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetPaginatedInvoicesQuery = { __typename?: 'Query', getPaginatedInvoices: { __typename?: 'PaginatedInvoices', totalCount: number, hasMore: boolean, page: number, pageSize: number, totalPages: number, invoices: Array<{ __typename?: 'Invoice', id: string, orgId: string, billingAccountId?: string | null, subscriptionId?: string | null, paymentId?: string | null, invoiceNumber: string, status: Types.InvoiceStatus, subtotal: number, tax: number, total: number, amountPaid: number, currency: string, dueDate?: string | null, paidAt?: string | null, gatewayInvoiceId?: string | null, invoiceUrl?: string | null, pdfUrl?: string | null, itemDescription?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }>, subscription?: { __typename?: 'BillingSubscription', id: string, status: Types.SubscriptionStatus, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null } | null } | null, payment?: { __typename?: 'Payment', id: string, amount: number, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, paidAt?: string | null } | null }> } };\n\nexport type GetPaymentQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPaymentQuery = { __typename?: 'Query', getPayment?: { __typename?: 'Payment', id: string, orgId: string, transactionId?: string | null, amount: number, currency: string, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, gatewayPaymentId?: string | null, gatewayOrderId?: string | null, failureReason?: string | null, paidAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, invoice?: { __typename?: 'Invoice', id: string, invoiceNumber: string, total: number, items: Array<{ __typename?: 'InvoiceItem', id: string, invoiceId: string, description: string, quantity: number, unitPrice: number, amount: number, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null }> } | null } | null };\n\nexport type GetPaymentMethodsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPaymentMethodsQuery = { __typename?: 'Query', getPaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripeCustomerId?: string | null, stripePaymentMethodId?: string | null, razorpayCustomerId?: string | null, razorpayPaymentMethodId?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> };\n\nexport type GetPaymentsQueryVariables = Types.Exact<{\n status?: Types.InputMaybe<Types.PaymentStatus>;\n}>;\n\n\nexport type GetPaymentsQuery = { __typename?: 'Query', getPayments: Array<{ __typename?: 'Payment', id: string, orgId: string, transactionId?: string | null, amount: number, currency: string, status: Types.PaymentStatus, method: Types.PaymentMethodType, provider?: string | null, gatewayPaymentId?: string | null, gatewayOrderId?: string | null, failureReason?: string | null, paidAt?: string | null, context?: Record<string, unknown> | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, invoice?: { __typename?: 'Invoice', id: string, invoiceNumber: string, total: number } | null }> };\n\nexport type GetPendingRefundsQueryVariables = Types.Exact<{\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetPendingRefundsQuery = { __typename?: 'Query', getPendingRefunds: { __typename?: 'PaginatedRefundRecords', totalCount: number, hasMore: boolean, page: number, pageSize: number, records: Array<{ __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> } };\n\nexport type GetRefundRecordQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetRefundRecordQuery = { __typename?: 'Query', getRefundRecord?: { __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, webhookLog?: { __typename?: 'BillingWebhookLog', id: string, event: string, provider: string, payload: Record<string, unknown>, processed: boolean, error?: string | null, createdAt: string } | null, transaction?: { __typename?: 'Transaction', id: string, amount: number, currency: string, status: Types.TransactionStatus, type: Types.TransactionType, description?: string | null, createdAt: string } | null } | null };\n\nexport type GetRefundRecordsQueryVariables = Types.Exact<{\n status?: Types.InputMaybe<Types.RefundRecordStatus>;\n source?: Types.InputMaybe<Types.RefundSource>;\n provider?: Types.InputMaybe<Types.Scalars['String']['input']>;\n orgIdFilter?: Types.InputMaybe<Types.Scalars['String']['input']>;\n billingAccountId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n fromDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n toDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetRefundRecordsQuery = { __typename?: 'Query', getRefundRecords: { __typename?: 'PaginatedRefundRecords', totalCount: number, hasMore: boolean, page: number, pageSize: number, records: Array<{ __typename?: 'RefundRecord', id: string, orgId: string, billingAccountId?: string | null, source: Types.RefundSource, status: Types.RefundRecordStatus, provider: string, gatewayPaymentId: string, gatewayOrderId?: string | null, amount: number, currency: string, purchaseType?: string | null, purchaseDetail?: string | null, reason?: string | null, notes?: string | null, webhookLogId?: string | null, transactionId?: string | null, processedBy?: string | null, processedAt?: string | null, gatewayRefundId?: string | null, errorMessage?: string | null, retryCount: number, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> } };\n\nexport type GetRefundStatsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetRefundStatsQuery = { __typename?: 'Query', getRefundStats: { __typename?: 'RefundStats', pending: number, processing: number, completed: number, failed: number, skipped: number, totalPendingAmount: number, totalCompletedAmount: number } };\n\nexport type GetTransactionQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetTransactionQuery = { __typename?: 'Query', getTransaction?: { __typename?: 'Transaction', id: string, billingAccountId: string, amount: number, currency: string, status: Types.TransactionStatus, type: Types.TransactionType, description?: string | null, razorpayPaymentId?: string | null, stripePaymentId?: string | null, metadata?: Record<string, unknown> | null, createdAt: string } | null };\n\nexport type GetTransactionsByBillingAccountQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetTransactionsByBillingAccountQuery = { __typename?: 'Query', getTransactionsByBillingAccount: { __typename?: 'PaginatedBillingAccountTransactions', id: string, name: string, email?: string | null, billingEmail?: string | null, currency: string, creditAmount: number, isActive: boolean, taxId?: string | null, createdAt: string, totalCount: number, hasMore: boolean, page: number, pageSize: number, transactions: Array<{ __typename?: 'Transaction', id: string, billingAccountId: string, amount: number, currency: string, status: Types.TransactionStatus, type: Types.TransactionType, description?: string | null, razorpayPaymentId?: string | null, stripePaymentId?: string | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> } };\n\nexport type GetUnprocessedFailedWebhooksQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetUnprocessedFailedWebhooksQuery = { __typename?: 'Query', getUnprocessedFailedWebhooks: Array<{ __typename?: 'BillingWebhookLog', id: string, event: string, provider: string, payload: Record<string, unknown>, processed: boolean, error?: string | null, createdAt: string }> };\n\nexport type InitiatePaymentCheckoutMutationVariables = Types.Exact<{\n input: Types.InitiatePaymentInput;\n}>;\n\n\nexport type InitiatePaymentCheckoutMutation = { __typename?: 'Mutation', initiatePayment: { __typename?: 'InitiatePaymentResponse', success: boolean, provider: string, paymentId?: string | null, clientSecret?: string | null, orderId?: string | null, razorpayKeyId?: string | null, razorpayCustomerId?: string | null, subtotal: number, taxAmount: number, taxRate: number, total: number, taxType: string, jurisdiction: string, taxBreakdown?: Record<string, unknown> | null, currency: string, requiresAction?: boolean | null, paymentComplete?: boolean | null, prefillName?: string | null, prefillEmail?: string | null, prefillContact?: string | null, error?: string | null } };\n\nexport type SpendCreditsCheckoutMutationVariables = Types.Exact<{\n input: Types.SpendCreditsInput;\n}>;\n\n\nexport type SpendCreditsCheckoutMutation = { __typename?: 'Mutation', spendCredits: { __typename?: 'SpendCreditResponse', creditTransactionID: string } };\n\nexport type CalculateTaxQueryVariables = Types.Exact<{\n input: Types.CalculateTaxInput;\n}>;\n\n\nexport type CalculateTaxQuery = { __typename?: 'Query', calculateTax: { __typename?: 'TaxCalculationResult', subtotal: number, taxAmount: number, taxRate: number, total: number, taxType: string, jurisdiction: string, taxBreakdown?: Record<string, unknown> | null } };\n\nexport type ConvertCurrencyQueryVariables = Types.Exact<{\n amount: Types.Scalars['Float']['input'];\n toCurrency: Types.Scalars['String']['input'];\n fromCurrency?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type ConvertCurrencyQuery = { __typename?: 'Query', convertCurrency: { __typename?: 'CurrencyConversion', amount: number, fromCurrency: string, toCurrency: string, exchangeRate: number } };\n\nexport type GetActiveSubscriptionsCheckoutQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetActiveSubscriptionsCheckoutQuery = { __typename?: 'Query', getActiveSubscriptions: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, nextBillingDate?: string | null, paymentGateway?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null }> };\n\nexport type GetSelectedAddonCheckoutQueryVariables = Types.Exact<{\n addonIDs: Array<Types.Scalars['String']['input']> | Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetSelectedAddonCheckoutQuery = { __typename?: 'Query', getSelectedAddons: Array<{ __typename?: 'Addon', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null } | null } | null> | null }> };\n\nexport type GetBillingAccountsCheckoutQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAccountsCheckoutQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, billingAddresses?: Array<{ __typename?: 'BillingAddress', id: string, country: string, state?: string | null, city: string } | null> | null }> };\n\nexport type GetCostOfCreditsCheckoutQueryVariables = Types.Exact<{\n creditAmount: Types.Scalars['Float']['input'];\n currency: Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetCostOfCreditsCheckoutQuery = { __typename?: 'Query', getCostOfCredits: { __typename?: 'CreditCost', amount: number } };\n\nexport type GetCreditTransactionStatusQueryVariables = Types.Exact<{\n creditTransactionID: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetCreditTransactionStatusQuery = { __typename?: 'Query', getCreditTransactionDetails: { __typename?: 'CreditTransaction', id: string, status: Types.CreditTransactionStatus, type: Types.CreditTransactionType, amount: number, billingAccountId: string, transactionId?: string | null, productId: string, entityId?: string | null, entityType?: string | null, createdAt: string } };\n\nexport type GetDefaultBillingAccountCheckoutQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetDefaultBillingAccountCheckoutQuery = { __typename?: 'Query', getDefaultBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null } | null };\n\nexport type GetDiscountByCodeQueryVariables = Types.Exact<{\n code: Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetDiscountByCodeQuery = { __typename?: 'Query', getDiscountByCode?: { __typename?: 'BillingDiscount', id: string, code: string, type: string, value: number, currency?: string | null, maxUses?: number | null, usedCount: number, validFrom: string, validUntil?: string | null } | null };\n\nexport type GetPaymentMethodsCheckoutQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPaymentMethodsCheckoutQuery = { __typename?: 'Query', getPaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, type: Types.PaymentMethodType, isDefault: boolean, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, brand?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, isVerified: boolean, createdAt: string }> };\n\nexport type GetPaymentProviderConfigCheckoutQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetPaymentProviderConfigCheckoutQuery = { __typename?: 'Query', getPaymentProviderConfig: { __typename?: 'PaymentProviderConfig', stripeEnabled: boolean, stripePublishableKey?: string | null, razorpayEnabled: boolean, razorpayKeyId?: string | null } };\n\nexport type GetPaymentStatusQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPaymentStatusQuery = { __typename?: 'Query', getPayment?: { __typename?: 'Payment', id: string, status: Types.PaymentStatus, amount: number, currency: string, paidAt?: string | null, failureReason?: string | null, transactionId?: string | null, gatewayPaymentId?: string | null } | null };\n\nexport type GetPlanCheckoutQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPlanCheckoutQuery = { __typename?: 'Query', getPlan: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, context?: Record<string, unknown> | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null } | null } | null> | null } };\n\nexport type GetStoreOrderCheckoutQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetStoreOrderCheckoutQuery = { __typename?: 'Query', getStoreOrder?: { __typename?: 'StoreOrder', id: string, billingAccountId: string, billingOrderId?: string | null, currency: string, status: Types.OrderStatus, transactionId?: string | null, total: number, lineItems: Record<string, unknown>, appliedEntitlementId?: string | null, purchasedAt?: string | null, processedAt?: string | null, createdAt: string, updatedAt: string } | null };\n\nexport type CreateCouponMutationVariables = Types.Exact<{\n input: Types.CreateCouponInput;\n}>;\n\n\nexport type CreateCouponMutation = { __typename?: 'Mutation', createCoupon: { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, restrictedToUserIds: Array<string>, applicableProducts: Array<string>, applicableServices: Array<string>, excludedProducts: Array<string>, excludedServices: Array<string>, campaignName?: string | null, createdAt: string, updatedAt: string } };\n\nexport type DeactivateCouponMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeactivateCouponMutation = { __typename?: 'Mutation', deactivateCoupon: { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, restrictedToUserIds: Array<string>, applicableProducts: Array<string>, applicableServices: Array<string>, excludedProducts: Array<string>, excludedServices: Array<string>, campaignId?: string | null, campaignName?: string | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, createdBy: string, onBehalfOf: string } };\n\nexport type UpdateCouponMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n input: Types.UpdateCouponInput;\n}>;\n\n\nexport type UpdateCouponMutation = { __typename?: 'Mutation', updateCoupon: { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, restrictedToUserIds: Array<string>, applicableProducts: Array<string>, applicableServices: Array<string>, excludedProducts: Array<string>, excludedServices: Array<string>, campaignId?: string | null, campaignName?: string | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, createdBy: string, onBehalfOf: string } };\n\nexport type GetCouponQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetCouponQuery = { __typename?: 'Query', getCoupon?: { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, restrictedToUserIds: Array<string>, applicableProducts: Array<string>, applicableServices: Array<string>, excludedProducts: Array<string>, excludedServices: Array<string>, campaignId?: string | null, campaignName?: string | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, createdBy: string, onBehalfOf: string } | null };\n\nexport type GetCouponUsageHistoryQueryVariables = Types.Exact<{\n couponId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n userId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetCouponUsageHistoryQuery = { __typename?: 'Query', getCouponUsageHistory: { __typename?: 'CouponUsageListResponse', total: number, hasMore: boolean, usages: Array<{ __typename?: 'CouponUsage', id: string, userId: string, orderId?: string | null, transactionId?: string | null, discountType: Types.CouponType, discountValue: number, originalAmount: number, finalAmount: number, currency: string, usedAt: string }> } };\n\nexport type ListCouponsQueryVariables = Types.Exact<{\n filter?: Types.InputMaybe<Types.CouponFilterInput>;\n limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n offset?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type ListCouponsQuery = { __typename?: 'Query', listCoupons: { __typename?: 'CouponsListResponse', hasMore: boolean, total: number, coupons: Array<{ __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, campaignName?: string | null, createdAt: string, updatedAt: string }> } };\n\nexport type ValidateCouponQueryVariables = Types.Exact<{\n input: Types.ValidateCouponInput;\n}>;\n\n\nexport type ValidateCouponQuery = { __typename?: 'Query', validateCoupon: { __typename?: 'ValidateCouponResponse', valid: boolean, discountAmount?: number | null, error?: string | null, coupon?: { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, type: Types.CouponType, value: number, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null } | null } };\n\nexport type CreditNoteFieldsFragment = { __typename?: 'CreditNote', id: string, orgId: string, invoiceId?: string | null, number: string, amount: number, currency: string, reason?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type CreditTransactionFieldsFragment = { __typename?: 'CreditTransaction', id: string, billingAccountId: string, productId: string, amount: number, type: Types.CreditTransactionType, status: Types.CreditTransactionStatus, entityType?: string | null, entityId?: string | null, transactionId?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type CreateCreditNoteMutationVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n amount: Types.Scalars['Float']['input'];\n reason?: Types.InputMaybe<Types.Scalars['String']['input']>;\n invoiceId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n currency?: Types.InputMaybe<Types.Scalars['String']['input']>;\n metadata?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type CreateCreditNoteMutation = { __typename?: 'Mutation', createCreditNote: { __typename?: 'CreditNote', id: string, orgId: string, invoiceId?: string | null, number: string, amount: number, currency: string, reason?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type GrantCreditsMutationVariables = Types.Exact<{\n input: Types.GrantCreditsInput;\n}>;\n\n\nexport type GrantCreditsMutation = { __typename?: 'Mutation', grantCredits: { __typename?: 'CreditTransaction', id: string, amount: number, status: Types.CreditTransactionStatus, type: Types.CreditTransactionType, billingAccountId: string, productId: string, entityType?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type RequestCreditWithdrawalMutationVariables = Types.Exact<{\n input: Types.RequestCreditWithdrawalInput;\n}>;\n\n\nexport type RequestCreditWithdrawalMutation = { __typename?: 'Mutation', requestCreditWithdrawal: { __typename?: 'PayoutRequest', id: string, status: Types.PayoutRequestStatus, requestedAmount: number, currency: string } };\n\nexport type CreditWithdrawalHistoryQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type CreditWithdrawalHistoryQuery = { __typename?: 'Query', myPayoutRequests: { __typename?: 'PayoutRequestConnection', items: Array<{ __typename?: 'PayoutRequest', id: string, requestedAmount: number, approvedAmount?: number | null, currency: string, provider: Types.PayoutProvider, status: Types.PayoutRequestStatus, externalReference?: string | null, failureReason?: string | null, userNotes?: string | null, createdAt: string, processedAt?: string | null, paidAt?: string | null, payoutAccount?: { __typename?: 'PayoutAccount', id: string, label: string, type: Types.PayoutAccountType, displayName?: string | null, accountLast4?: string | null, currency: string } | null }> } };\n\nexport type GetBillingAccountCreditTransactionsQueryVariables = Types.Exact<{\n billingAccountID: Types.Scalars['ID']['input'];\n days: Types.Scalars['Int']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetBillingAccountCreditTransactionsQuery = { __typename?: 'Query', getBillingAccountCreditTransactions: { __typename?: 'PaginatedCreditTransactions', page: number, pageSize: number, totalCount: number, hasMore: boolean, creditTransactions: Array<{ __typename?: 'CreditTransaction', id: string, billingAccountId: string, productId: string, amount: number, type: Types.CreditTransactionType, status: Types.CreditTransactionStatus, entityType?: string | null, entityId?: string | null, transactionId?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, billingAccount: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null }, transaction?: { __typename?: 'Transaction', id: string, amount: number, currency: string, type: Types.TransactionType, status: Types.TransactionStatus } | null }> } };\n\nexport type GetCostOfCreditsQueryVariables = Types.Exact<{\n creditAmount: Types.Scalars['Float']['input'];\n currency: Types.Scalars['String']['input'];\n}>;\n\n\nexport type GetCostOfCreditsQuery = { __typename?: 'Query', getCostOfCredits: { __typename?: 'CreditCost', amount: number } };\n\nexport type GetCreditBalanceByTypeQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetCreditBalanceByTypeQuery = { __typename?: 'Query', getCreditBalanceByType: { __typename?: 'CreditBalanceByType', purchased: number, earned: number, granted: number, withdrawable: number, total: number } };\n\nexport type GetCreditNotesQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetCreditNotesQuery = { __typename?: 'Query', getCreditNotes: Array<{ __typename?: 'CreditNote', id: string, orgId: string, invoiceId?: string | null, number: string, amount: number, currency: string, reason?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> };\n\nexport type GetCreditTransactionDetailsQueryVariables = Types.Exact<{\n creditTransactionID: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetCreditTransactionDetailsQuery = { __typename?: 'Query', getCreditTransactionDetails: { __typename?: 'CreditTransaction', id: string, billingAccountId: string, productId: string, amount: number, type: Types.CreditTransactionType, status: Types.CreditTransactionStatus, entityType?: string | null, entityId?: string | null, transactionId?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, billingAccount: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, creditAmount?: number | null, currency?: string | null }, transaction?: { __typename?: 'Transaction', id: string, amount: number, currency: string, type: Types.TransactionType, status: Types.TransactionStatus, description?: string | null, createdAt: string } | null } };\n\nexport type ActiveSubscriptionFieldsFragment = { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, nextBillingDate?: string | null, paymentGateway?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null };\n\nexport type BillingAccountFieldsFragment = { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null };\n\nexport type BillingAddressFieldsFragment = { __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string };\n\nexport type CreditTransactionSummaryFieldsFragment = { __typename?: 'CreditTransaction', id: string, billingAccountId: string, productId: string, amount: number, type: Types.CreditTransactionType, status: Types.CreditTransactionStatus, entityType?: string | null, entityId?: string | null, createdAt: string };\n\nexport type DashboardPaymentMethodFieldsFragment = { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string };\n\nexport type TransactionSummaryFieldsFragment = { __typename?: 'Transaction', id: string, billingAccountId: string, amount: number, currency: string, status: Types.TransactionStatus, type: Types.TransactionType, description?: string | null, createdAt: string };\n\nexport type AddPaymentMethodDashboardMutationVariables = Types.Exact<{\n input: Types.CreatePaymentMethodInput;\n}>;\n\n\nexport type AddPaymentMethodDashboardMutation = { __typename?: 'Mutation', addPaymentMethod: { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } };\n\nexport type CreateBillingAccountMutationVariables = Types.Exact<{\n input: Types.CreateBillingAccountInput;\n}>;\n\n\nexport type CreateBillingAccountMutation = { __typename?: 'Mutation', createBillingAccount: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null } };\n\nexport type DeletePaymentMethodDashboardMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeletePaymentMethodDashboardMutation = { __typename?: 'Mutation', deletePaymentMethod: boolean };\n\nexport type InitiatePaymentMutationVariables = Types.Exact<{\n input: Types.InitiatePaymentInput;\n}>;\n\n\nexport type InitiatePaymentMutation = { __typename?: 'Mutation', initiatePayment: { __typename?: 'InitiatePaymentResponse', success: boolean, provider: string, clientSecret?: string | null, orderId?: string | null, razorpayKeyId?: string | null, subtotal: number, taxAmount: number, taxRate: number, taxType: string, taxBreakdown?: Record<string, unknown> | null, jurisdiction: string, total: number, currency: string, error?: string | null } };\n\nexport type SetBillingAddressMutationVariables = Types.Exact<{\n input: Types.SetBillingAddressInput;\n}>;\n\n\nexport type SetBillingAddressMutation = { __typename?: 'Mutation', setBillingAddress: { __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } };\n\nexport type SetDefaultBillingAccountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type SetDefaultBillingAccountMutation = { __typename?: 'Mutation', setDefaultBillingAccount: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null } };\n\nexport type SpendCreditsMutationVariables = Types.Exact<{\n input: Types.SpendCreditsInput;\n}>;\n\n\nexport type SpendCreditsMutation = { __typename?: 'Mutation', spendCredits: { __typename?: 'SpendCreditResponse', creditTransactionID: string } };\n\nexport type UpdateBillingAccountMutationVariables = Types.Exact<{\n input: Types.UpdateBillingAccountInput;\n}>;\n\n\nexport type UpdateBillingAccountMutation = { __typename?: 'Mutation', updateBillingAccount: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null } };\n\nexport type UpdatePaymentMethodDashboardMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n isDefault: Types.Scalars['Boolean']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type UpdatePaymentMethodDashboardMutation = { __typename?: 'Mutation', updatePaymentMethod: { __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } };\n\nexport type VerifyPaymentMethodMutationVariables = Types.Exact<{\n input: Types.VerifyPaymentMethodInput;\n}>;\n\n\nexport type VerifyPaymentMethodMutation = { __typename?: 'Mutation', verifyBillingPaymentMethod: { __typename?: 'VerifyPaymentMethodResponse', success: boolean, provider: string, orderId?: string | null, razorpayKeyId?: string | null, razorpayCustomerId?: string | null, clientSecret?: string | null, amount: number, currency: string, prefillName?: string | null, prefillEmail?: string | null, prefillContact?: string | null, error?: string | null } };\n\nexport type GetActiveSubscriptionsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetActiveSubscriptionsQuery = { __typename?: 'Query', getActiveSubscriptions: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, nextBillingDate?: string | null, paymentGateway?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null }> };\n\nexport type GetAvailablePlansQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetAvailablePlansQuery = { __typename?: 'Query', getAllPlans: Array<{ __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null } | null } | null> | null }> };\n\nexport type GetBillingAccountDashboardQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetBillingAccountDashboardQuery = { __typename?: 'Query', getBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } | null> | null, billingAddresses?: Array<{ __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } | null> | null } | null };\n\nexport type GetBillingAccountsByOrgQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAccountsByOrgQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null }> };\n\nexport type GetBillingAddressQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetBillingAddressQuery = { __typename?: 'Query', getBillingAddress?: { __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } | null };\n\nexport type GetBillingOverviewQueryVariables = Types.Exact<{\n addonsFilter?: Types.InputMaybe<Types.AddonsFilter>;\n}>;\n\n\nexport type GetBillingOverviewQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null }>, getDefaultBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } | null> | null, billingAddresses?: Array<{ __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } | null> | null, subscriptions?: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, nextBillingDate?: string | null, paymentGateway?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null } | null> | null } | null, getAllAddOns: Array<{ __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null } | null } | null> | null }> };\n\nexport type GetBillingOverviewAccountQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetBillingOverviewAccountQuery = { __typename?: 'Query', getBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } | null> | null, billingAddresses?: Array<{ __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } | null> | null, subscriptions?: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, nextBillingDate?: string | null, paymentGateway?: string | null, createdAt: string, plan?: { __typename?: 'Plan', id?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, productID?: string | null } | null } | null> | null } | null };\n\nexport type GetCreditTransactionsSummaryQueryVariables = Types.Exact<{\n billingAccountID: Types.Scalars['ID']['input'];\n days: Types.Scalars['Int']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetCreditTransactionsSummaryQuery = { __typename?: 'Query', getBillingAccountCreditTransactions: { __typename?: 'PaginatedCreditTransactions', totalCount: number, hasMore: boolean, page: number, pageSize: number, creditTransactions: Array<{ __typename?: 'CreditTransaction', id: string, billingAccountId: string, productId: string, amount: number, type: Types.CreditTransactionType, status: Types.CreditTransactionStatus, entityType?: string | null, entityId?: string | null, createdAt: string }> } };\n\nexport type GetDefaultBillingAccountDashboardQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetDefaultBillingAccountDashboardQuery = { __typename?: 'Query', getDefaultBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, defaultPaymentMethod?: string | null, taxId?: string | null, isActive?: boolean | null, isDefault?: boolean | null, createdAt?: string | null, updatedAt?: string | null, paymentMethods?: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string } | null> | null, billingAddresses?: Array<{ __typename?: 'BillingAddress', id: string, orgId: string, billingAccountId?: string | null, line1: string, line2?: string | null, city: string, state?: string | null, postalCode: string, country: string, createdAt: string, updatedAt: string } | null> | null } | null };\n\nexport type GetPaymentMethodsDashboardQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPaymentMethodsDashboardQuery = { __typename?: 'Query', getPaymentMethods: Array<{ __typename?: 'PaymentMethod', id: string, orgId: string, billingAccountId?: string | null, type: Types.PaymentMethodType, brand?: string | null, last4?: string | null, expiryMonth?: number | null, expiryYear?: number | null, isDefault: boolean, isVerified: boolean, verifiedAt?: string | null, stripePaymentMethodId?: string | null, razorpayPaymentMethodId?: string | null, createdAt: string, updatedAt: string }> };\n\nexport type GetPaymentProviderConfigQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetPaymentProviderConfigQuery = { __typename?: 'Query', getPaymentProviderConfig: { __typename?: 'PaymentProviderConfig', stripeEnabled: boolean, stripePublishableKey?: string | null, razorpayEnabled: boolean, razorpayKeyId?: string | null } };\n\nexport type GetRecommendedAddonsQueryVariables = Types.Exact<{\n limit?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetRecommendedAddonsQuery = { __typename?: 'Query', getAllAddOns: Array<{ __typename?: 'Addon', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null } | null } | null> | null }> };\n\nexport type CreateDiscountMutationVariables = Types.Exact<{\n code: Types.Scalars['String']['input'];\n type: Types.Scalars['String']['input'];\n value: Types.Scalars['Float']['input'];\n currency?: Types.InputMaybe<Types.Scalars['String']['input']>;\n maxUses?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n validFrom: Types.Scalars['DateTime']['input'];\n validUntil?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n metadata?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type CreateDiscountMutation = { __typename?: 'Mutation', createDiscount: { __typename?: 'BillingDiscount', id: string, code: string, type: string, value: number, currency?: string | null, maxUses?: number | null, usedCount: number, validFrom: string, validUntil?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type DeleteDiscountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeleteDiscountMutation = { __typename?: 'Mutation', deleteDiscount: boolean };\n\nexport type UpdateDiscountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n maxUses?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n validUntil?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n}>;\n\n\nexport type UpdateDiscountMutation = { __typename?: 'Mutation', updateDiscount: { __typename?: 'BillingDiscount', id: string, code: string, type: string, value: number, currency?: string | null, maxUses?: number | null, usedCount: number, validFrom: string, validUntil?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type GetDiscountsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetDiscountsQuery = { __typename?: 'Query', getDiscounts: Array<{ __typename?: 'BillingDiscount', id: string, code: string, type: string, value: number, currency?: string | null, maxUses?: number | null, usedCount: number, validFrom: string, validUntil?: string | null, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string }> };\n\nexport type AddPayoutAccountMutationVariables = Types.Exact<{\n input: Types.AddPayoutAccountInput;\n}>;\n\n\nexport type AddPayoutAccountMutation = { __typename?: 'Mutation', addPayoutAccount: { __typename?: 'PayoutAccount', id: string } };\n\nexport type ApprovePayoutRequestMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n notes?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type ApprovePayoutRequestMutation = { __typename?: 'Mutation', approvePayoutRequest: { __typename?: 'PayoutRequest', id: string } };\n\nexport type ArchivePayoutAccountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type ArchivePayoutAccountMutation = { __typename?: 'Mutation', archivePayoutAccount: boolean };\n\nexport type ProcessPayoutRequestMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type ProcessPayoutRequestMutation = { __typename?: 'Mutation', processPayoutRequest: { __typename?: 'PayoutRequest', id: string } };\n\nexport type RejectPayoutRequestMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n reason: Types.Scalars['String']['input'];\n}>;\n\n\nexport type RejectPayoutRequestMutation = { __typename?: 'Mutation', rejectPayoutRequest: { __typename?: 'PayoutRequest', id: string } };\n\nexport type SetDefaultPayoutAccountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type SetDefaultPayoutAccountMutation = { __typename?: 'Mutation', setDefaultPayoutAccount: { __typename?: 'PayoutAccount', id: string } };\n\nexport type UpdatePayoutAccountMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n input: Types.UpdatePayoutAccountInput;\n}>;\n\n\nexport type UpdatePayoutAccountMutation = { __typename?: 'Mutation', updatePayoutAccount: { __typename?: 'PayoutAccount', id: string } };\n\nexport type AdminPayoutRequestsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type AdminPayoutRequestsQuery = { __typename?: 'Query', adminPayoutRequests: { __typename?: 'PayoutRequestConnection', items: Array<{ __typename?: 'PayoutRequest', id: string, requestedAmount: number, approvedAmount?: number | null, currency: string, provider: Types.PayoutProvider, status: Types.PayoutRequestStatus, externalReference?: string | null, failureReason?: string | null, internalNotes?: string | null, userNotes?: string | null, createdAt: string, processedAt?: string | null, paidAt?: string | null, payoutAccount?: { __typename?: 'PayoutAccount', id: string, label: string, type: Types.PayoutAccountType, providerPreference: Types.PayoutProvider, status: Types.PayoutAccountStatus, displayName?: string | null, accountLast4?: string | null, country?: string | null, currency: string, isDefault: boolean } | null }> } };\n\nexport type AdminPayoutSummaryQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type AdminPayoutSummaryQuery = { __typename?: 'Query', adminPayoutSummary: { __typename?: 'PayoutAdminSummary', totalRequestedAmount: number, totalProcessingAmount: number, totalPaidAmount: number, pendingCount: number, failedCount: number, statusBreakdown: Array<{ __typename?: 'PayoutStatusBreakdown', status: Types.PayoutRequestStatus, count: number, totalAmount: number }>, providerBreakdown: Array<{ __typename?: 'PayoutProviderBreakdown', provider: Types.PayoutProvider, count: number, totalAmount: number }> } };\n\nexport type BillingDeveloperPortalRevenueQueryVariables = Types.Exact<{\n organizationId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type BillingDeveloperPortalRevenueQuery = { __typename?: 'Query', developerOrgRevenueSummary: { __typename?: 'RevenueSummary', totalGrossRevenue: number, totalNetRevenue: number, totalPlatformFees: number, totalRefunds: number, totalRefundsCount: number, totalSales: number, pendingBalance: number, nextPayoutDate?: string | null, nextPayoutAmount?: number | null }, developerOrgSales: { __typename?: 'DeveloperOrgSaleConnection', edges: Array<{ __typename?: 'DeveloperOrgSaleEdge', node: { __typename?: 'DeveloperOrgSale', id: string, grossAmount: number, netAmount: number, currency: string, pricingModel: Types.DevPortalPricingModel, status: Types.SaleStatus, purchasedAt: string, application: { __typename?: 'Application', id: string, name: string, slug: string } } }> }, developerOrgPayouts: { __typename?: 'DeveloperOrgPayoutConnection', edges: Array<{ __typename?: 'DeveloperOrgPayoutEdge', node: { __typename?: 'DeveloperOrgPayout', id: string, periodLabel?: string | null, netAmount: number, currency: string, status: Types.PayoutStatus, scheduledAt?: string | null, completedAt?: string | null } }> } };\n\nexport type MyEarningsEntriesQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type MyEarningsEntriesQuery = { __typename?: 'Query', myEarningsEntries: { __typename?: 'EarningsEntryConnection', items: Array<{ __typename?: 'EarningsEntry', id: string, sourceCategory: Types.EarningsSourceCategory, sourceSubcategory?: string | null, description?: string | null, unitType: Types.EarningUnitType, amount: number, currency: string, status: Types.EarningsEntryStatus, createdAt: string }> } };\n\nexport type MyEarningsSummaryQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type MyEarningsSummaryQuery = { __typename?: 'Query', myEarningsSummary: { __typename?: 'EarningsSummary', totalLifetimeAmount: number, availableAmount: number, reservedAmount: number, paidAmount: number, pendingAmount: number, moneyAmount: number, creditsAmount: number, categoryBreakdown: Array<{ __typename?: 'EarningsCategoryBreakdown', category: Types.EarningsSourceCategory, amount: number, count: number }> } };\n\nexport type MyPayoutAccountsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type MyPayoutAccountsQuery = { __typename?: 'Query', myPayoutAccounts: Array<{ __typename?: 'PayoutAccount', id: string, label: string, type: Types.PayoutAccountType, providerPreference: Types.PayoutProvider, status: Types.PayoutAccountStatus, displayName?: string | null, accountLast4?: string | null, country?: string | null, currency: string, isDefault: boolean }> };\n\nexport type MyPayoutRequestsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type MyPayoutRequestsQuery = { __typename?: 'Query', myPayoutRequests: { __typename?: 'PayoutRequestConnection', items: Array<{ __typename?: 'PayoutRequest', id: string, requestedAmount: number, approvedAmount?: number | null, currency: string, provider: Types.PayoutProvider, status: Types.PayoutRequestStatus, externalReference?: string | null, failureReason?: string | null, internalNotes?: string | null, userNotes?: string | null, createdAt: string, processedAt?: string | null, paidAt?: string | null, payoutAccount?: { __typename?: 'PayoutAccount', id: string, label: string, type: Types.PayoutAccountType, providerPreference: Types.PayoutProvider, status: Types.PayoutAccountStatus, displayName?: string | null, accountLast4?: string | null, country?: string | null, currency: string, isDefault: boolean } | null }> } };\n\nexport type CouponFieldsFragment = { __typename?: 'Coupon', id: string, code: string, name: string, description?: string | null, scope: Types.CouponScope, status: Types.CouponStatus, type: Types.CouponType, value: number, currency?: string | null, minPurchaseAmount?: number | null, maxDiscountAmount?: number | null, maxTotalUses?: number | null, maxUsesPerUser: number, currentUses: number, validFrom: string, validUntil?: string | null, restrictedToUserIds: Array<string>, applicableProducts: Array<string>, applicableServices: Array<string>, excludedProducts: Array<string>, excludedServices: Array<string>, campaignId?: string | null, campaignName?: string | null, metadata?: Record<string, unknown> | null, createdAt: string, updatedAt: string, createdBy: string, onBehalfOf: string };\n\nexport type PlanFieldsFragment = { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, pricingModel?: Types.PlanPricingModel | null, pricePerSeat?: number | null, minSeats?: number | null, maxSeats?: number | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null };\n\nexport type PlanWithFeaturesFieldsFragment = { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, pricingModel?: Types.PlanPricingModel | null, pricePerSeat?: number | null, minSeats?: number | null, maxSeats?: number | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null, itemEntitlements?: Array<{ __typename?: 'SubscriptionEntitlement', id: string, itemId: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null } | null> | null };\n\nexport type QuotaFieldsFragment = { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, resetPeriod?: Types.QuotaResetPeriod | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null };\n\nexport type CreateEntitlementMutationVariables = Types.Exact<{\n input: Types.CreateEntitlementInput;\n}>;\n\n\nexport type CreateEntitlementMutation = { __typename?: 'Mutation', createEntitlement: { __typename?: 'SubscriptionEntitlement', id: string, planId: string, itemId: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null, createdAt: string } };\n\nexport type CreatePlanMutationVariables = Types.Exact<{\n input: Types.CreatePlanInput;\n}>;\n\n\nexport type CreatePlanMutation = { __typename?: 'Mutation', createPlan: boolean };\n\nexport type CreateQuotaMutationVariables = Types.Exact<{\n input: Types.CreateQuotaInput;\n}>;\n\n\nexport type CreateQuotaMutation = { __typename?: 'Mutation', createQuota: boolean };\n\nexport type DeleteEntitlementMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type DeleteEntitlementMutation = { __typename?: 'Mutation', deleteEntitlement: boolean };\n\nexport type TogglePlanMutationVariables = Types.Exact<{\n planID: Types.Scalars['ID']['input'];\n status: Types.Scalars['Boolean']['input'];\n}>;\n\n\nexport type TogglePlanMutation = { __typename?: 'Mutation', togglePlan: boolean };\n\nexport type UpdateEntitlementMutationVariables = Types.Exact<{\n input: Types.UpdateEntitlementInput;\n}>;\n\n\nexport type UpdateEntitlementMutation = { __typename?: 'Mutation', updateEntitlement: { __typename?: 'SubscriptionEntitlement', id: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null, updatedAt: string } };\n\nexport type UpdatePlanMutationVariables = Types.Exact<{\n input: Types.UpdatePlanInput;\n}>;\n\n\nexport type UpdatePlanMutation = { __typename?: 'Mutation', updatePlan: boolean };\n\nexport type UpdateQuotaMutationVariables = Types.Exact<{\n input: Types.UpdateQuotaInput;\n}>;\n\n\nexport type UpdateQuotaMutation = { __typename?: 'Mutation', updateQuota: boolean };\n\nexport type CheckPlanEntitlementQueryVariables = Types.Exact<{\n planId: Types.Scalars['ID']['input'];\n itemId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type CheckPlanEntitlementQuery = { __typename?: 'Query', checkPlanEntitlement?: { __typename?: 'SubscriptionEntitlement', id: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null } | null };\n\nexport type GetAllPlansQueryVariables = Types.Exact<{\n filter?: Types.InputMaybe<Types.PlansFilter>;\n}>;\n\n\nexport type GetAllPlansQuery = { __typename?: 'Query', getAllPlans: Array<{ __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, pricingModel?: Types.PlanPricingModel | null, pricePerSeat?: number | null, minSeats?: number | null, maxSeats?: number | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null, itemEntitlements?: Array<{ __typename?: 'SubscriptionEntitlement', id: string, itemId: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null } | null> | null }> };\n\nexport type GetAllQuotasQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetAllQuotasQuery = { __typename?: 'Query', getAllQuotas: Array<{ __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, resetPeriod?: Types.QuotaResetPeriod | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null }> };\n\nexport type GetPlanQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPlanQuery = { __typename?: 'Query', getPlan: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, currencyPrices?: Record<string, unknown> | null, duration?: Types.PlanDuration | null, pricingModel?: Types.PlanPricingModel | null, pricePerSeat?: number | null, minSeats?: number | null, maxSeats?: number | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null, features?: Array<{ __typename?: 'SubscriptionFeatures', id?: string | null, quotaId?: string | null, quota?: { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, reusable?: boolean | null, quotaType?: Types.QuotaType | null } | null } | null> | null, itemEntitlements?: Array<{ __typename?: 'SubscriptionEntitlement', id: string, itemId: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null } | null> | null } };\n\nexport type GetPlanEntitlementsQueryVariables = Types.Exact<{\n planId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetPlanEntitlementsQuery = { __typename?: 'Query', getPlanEntitlements: Array<{ __typename?: 'SubscriptionEntitlement', id: string, planId: string, itemId: string, accessType: Types.EntitlementAccessType, discountPercentage?: number | null, createdAt: string, updatedAt: string }> };\n\nexport type QuotaAssignmentFieldsFragment = { __typename?: 'QuotaAssignment', id?: string | null, billingAccountId?: string | null, subscriptionId?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, currentUsageSum?: number | null, totalUsageCount?: number | null, endtime?: string | null, context?: Record<string, unknown> | null, createdAt?: string | null };\n\nexport type QuotaAssignmentWithAnalyticsFieldsFragment = { __typename?: 'QuotaAssignmentWithAnalytics', id: string, billingAccountId?: string | null, subscriptionId?: string | null, name: string, limits: Record<string, unknown>, quotaType: Types.QuotaType, reusable: boolean, currentUsageSum: number, totalUsageCount: number, status: Types.QuotaStatus, healthScore: number, usagePercentage: number, limitLeft: number, endtime: string, createdAt: string, analytics: { __typename?: 'QuotaUsageAnalytics', dailyUsage: Array<{ __typename?: 'DailyUsage', date: string, usage: number, count: number }>, usageByType: Array<{ __typename?: 'UsageByType', resourceType: string, usage: number, count: number, percentage: number }>, peakUsage?: { __typename?: 'PeakUsage', peakDate: string, maxDailyUsage: number, peakHour?: number | null } | null, trends?: { __typename?: 'UsageTrends', averageDailyUsage?: number | null, growthRate?: number | null, predictedUsage?: number | null } | null } };\n\nexport type QuotaTemplateFieldsFragment = { __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, resetPeriod?: Types.QuotaResetPeriod | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null };\n\nexport type QuotaUsageAnalyticsFieldsFragment = { __typename?: 'QuotaUsageAnalytics', dailyUsage: Array<{ __typename?: 'DailyUsage', date: string, usage: number, count: number }>, usageByType: Array<{ __typename?: 'UsageByType', resourceType: string, usage: number, count: number, percentage: number }>, peakUsage?: { __typename?: 'PeakUsage', peakDate: string, maxDailyUsage: number, peakHour?: number | null } | null, trends?: { __typename?: 'UsageTrends', averageDailyUsage?: number | null, growthRate?: number | null, predictedUsage?: number | null } | null };\n\nexport type AddUsageMutationVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n quotaName: Types.Scalars['String']['input'];\n value: Types.Scalars['Int']['input'];\n description: Types.Scalars['String']['input'];\n userId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n hash?: Types.InputMaybe<Types.Scalars['String']['input']>;\n tags?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type AddUsageMutation = { __typename?: 'Mutation', addUsage: boolean };\n\nexport type CreateQuotaTemplateMutationVariables = Types.Exact<{\n input: Types.CreateQuotaInput;\n}>;\n\n\nexport type CreateQuotaTemplateMutation = { __typename?: 'Mutation', createQuota: boolean };\n\nexport type FreeUpUsageMutationVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n quotaName: Types.Scalars['String']['input'];\n value: Types.Scalars['Int']['input'];\n description?: Types.InputMaybe<Types.Scalars['String']['input']>;\n userId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n hash?: Types.InputMaybe<Types.Scalars['String']['input']>;\n tags?: Types.InputMaybe<Types.Scalars['JSON']['input']>;\n}>;\n\n\nexport type FreeUpUsageMutation = { __typename?: 'Mutation', freeUpUsage: boolean };\n\nexport type UpdateQuotaTemplateMutationVariables = Types.Exact<{\n input: Types.UpdateQuotaInput;\n}>;\n\n\nexport type UpdateQuotaTemplateMutation = { __typename?: 'Mutation', updateQuota: boolean };\n\nexport type CheckQuotaExhaustedQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n quotaName: Types.Scalars['String']['input'];\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type CheckQuotaExhaustedQuery = { __typename?: 'Query', checkQuotaExhausted: { __typename?: 'QuotaCheckResult', limitLeft: number, noLimit: boolean } };\n\nexport type GetAllQuotaTemplatesQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetAllQuotaTemplatesQuery = { __typename?: 'Query', getAllQuotas: Array<{ __typename?: 'Quota', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, resetPeriod?: Types.QuotaResetPeriod | null, isActive?: boolean | null, context?: Record<string, unknown> | null, createdAt?: string | null, updatedAt?: string | null }> };\n\nexport type GetAllQuotasAssignmentQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n searchQuery?: Types.InputMaybe<Types.Scalars['String']['input']>;\n status?: Types.InputMaybe<Array<Types.QuotaStatus> | Types.QuotaStatus>;\n fromDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n toDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n sortBy?: Types.InputMaybe<Types.Scalars['String']['input']>;\n sortOrder?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetAllQuotasAssignmentQuery = { __typename?: 'Query', getAllQuotasAssignment: { __typename?: 'PaginatedQuotaAssignments', page: number, pageSize: number, totalCount: number, totalPages: number, quotaAssignments: Array<{ __typename?: 'QuotaAssignment', id?: string | null, billingAccountId?: string | null, subscriptionId?: string | null, name?: string | null, limits?: Record<string, unknown> | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null, currentUsageSum?: number | null, totalUsageCount?: number | null, endtime?: string | null, context?: Record<string, unknown> | null, createdAt?: string | null }> } };\n\nexport type GetBillingAccountQuotasSummaryQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetBillingAccountQuotasSummaryQuery = { __typename?: 'Query', getBillingAccountQuotasSummary: { __typename?: 'BillingAccountQuotasSummary', billingAccountId: string, totalUsage: number, totalLimit: number, pooledQuotas: Array<{ __typename?: 'QuotaAssignmentUsageSummary', id: string, name: string, quotaType: Types.QuotaType, reusable: boolean, limit: number, limitLeft: number, used: number, usagePercentage: number, noLimit: boolean, createdAt: string, endtime: string }>, subscriptionQuotas: Array<{ __typename?: 'QuotaAssignmentUsageSummary', id: string, name: string, quotaType: Types.QuotaType, reusable: boolean, limit: number, limitLeft: number, used: number, usagePercentage: number, noLimit: boolean, subscriptionId?: string | null, createdAt: string, endtime: string }> } };\n\nexport type GetQuotaAnalyticsQueryVariables = Types.Exact<{\n quotaAssignmentId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n period?: Types.InputMaybe<Types.AnalyticsPeriod>;\n}>;\n\n\nexport type GetQuotaAnalyticsQuery = { __typename?: 'Query', getQuotaAnalytics: { __typename?: 'QuotaUsageAnalytics', dailyUsage: Array<{ __typename?: 'DailyUsage', date: string, usage: number, count: number }>, usageByType: Array<{ __typename?: 'UsageByType', resourceType: string, usage: number, count: number, percentage: number }>, peakUsage?: { __typename?: 'PeakUsage', peakDate: string, maxDailyUsage: number, peakHour?: number | null } | null, trends?: { __typename?: 'UsageTrends', averageDailyUsage?: number | null, growthRate?: number | null, predictedUsage?: number | null } | null } };\n\nexport type GetQuotaAssignmentsWithAnalyticsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n searchQuery?: Types.InputMaybe<Types.Scalars['String']['input']>;\n status?: Types.InputMaybe<Array<Types.QuotaStatus> | Types.QuotaStatus>;\n fromDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n toDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n sortBy?: Types.InputMaybe<Types.Scalars['String']['input']>;\n sortOrder?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetQuotaAssignmentsWithAnalyticsQuery = { __typename?: 'Query', getQuotaAssignmentsWithAnalytics: { __typename?: 'PaginatedQuotaAssignmentsWithAnalytics', page: number, pageSize: number, totalCount: number, totalPages: number, quotaAssignments: Array<{ __typename?: 'QuotaAssignmentWithAnalytics', id: string, billingAccountId?: string | null, subscriptionId?: string | null, name: string, limits: Record<string, unknown>, quotaType: Types.QuotaType, reusable: boolean, currentUsageSum: number, totalUsageCount: number, status: Types.QuotaStatus, healthScore: number, usagePercentage: number, limitLeft: number, endtime: string, createdAt: string, analytics: { __typename?: 'QuotaUsageAnalytics', dailyUsage: Array<{ __typename?: 'DailyUsage', date: string, usage: number, count: number }>, usageByType: Array<{ __typename?: 'UsageByType', resourceType: string, usage: number, count: number, percentage: number }>, peakUsage?: { __typename?: 'PeakUsage', peakDate: string, maxDailyUsage: number, peakHour?: number | null } | null, trends?: { __typename?: 'UsageTrends', averageDailyUsage?: number | null, growthRate?: number | null, predictedUsage?: number | null } | null } }> } };\n\nexport type GetQuotaUsageAndLimitQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n quotaName: Types.Scalars['String']['input'];\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetQuotaUsageAndLimitQuery = { __typename?: 'Query', getQuotaUsageAndLimit: { __typename?: 'QuotaUsageAndLimit', limit: number, limitLeft: number, noLimit: boolean } };\n\nexport type ArchiveBillingAccountSettingsMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n reason?: Types.InputMaybe<Types.Scalars['String']['input']>;\n replacementDefaultBillingAccountId?: Types.InputMaybe<Types.Scalars['ID']['input']>;\n}>;\n\n\nexport type ArchiveBillingAccountSettingsMutation = { __typename?: 'Mutation', archiveBillingAccount: { __typename?: 'BillingAccount', id?: string | null, isActive?: boolean | null, isDefault?: boolean | null } };\n\nexport type SetDefaultBillingAccountSettingsMutationVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type SetDefaultBillingAccountSettingsMutation = { __typename?: 'Mutation', setDefaultBillingAccount: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, isActive?: boolean | null, isDefault?: boolean | null, updatedAt?: string | null } };\n\nexport type UpdateBillingAccountSettingsMutationVariables = Types.Exact<{\n input: Types.UpdateBillingAccountInput;\n}>;\n\n\nexport type UpdateBillingAccountSettingsMutation = { __typename?: 'Mutation', updateBillingAccount: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, taxId?: string | null, currency?: string | null, isActive?: boolean | null, isDefault?: boolean | null, updatedAt?: string | null } };\n\nexport type GetBillingAccountSettingsQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetBillingAccountSettingsQuery = { __typename?: 'Query', getBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, isDefault?: boolean | null, taxId?: string | null, createdAt?: string | null, updatedAt?: string | null } | null };\n\nexport type GetBillingAccountsSettingsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAccountsSettingsQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, isActive?: boolean | null, isDefault?: boolean | null }> };\n\nexport type GetDefaultBillingAccountSettingsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetDefaultBillingAccountSettingsQuery = { __typename?: 'Query', getDefaultBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, isDefault?: boolean | null, taxId?: string | null, createdAt?: string | null, updatedAt?: string | null } | null };\n\nexport type SubscriptionFieldsFragment = { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string };\n\nexport type SubscriptionFullFieldsFragment = { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, billingAccount?: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null } | null, addonSubscriptions: Array<{ __typename?: 'AddonSubscription', id?: string | null, addonId?: string | null, quantity?: number | null, startDate?: string | null, endDate?: string | null, addon?: { __typename?: 'Addon', id?: string | null, name?: string | null, price?: number | null, currency?: string | null } | null }>, quotas: Array<{ __typename?: 'QuotaAssignment', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, currentUsageSum?: number | null, endtime?: string | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null }>, transactions: Array<{ __typename?: 'Transaction', id: string, amount: number, currency: string, type: Types.TransactionType, status: Types.TransactionStatus, createdAt: string }>, history: Array<{ __typename?: 'SubscriptionHistory', id: string, fromStatus: Types.SubscriptionStatus, toStatus: Types.SubscriptionStatus, reason?: string | null, createdAt: string }>, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null };\n\nexport type SubscriptionWithPlanFieldsFragment = { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null };\n\nexport type UpdateSubscriptionSeatsMutationVariables = Types.Exact<{\n input: Types.UpdateSubscriptionSeatsInput;\n}>;\n\n\nexport type UpdateSubscriptionSeatsMutation = { __typename?: 'Mutation', updateSubscriptionSeats: { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type CancelSubscriptionMutationVariables = Types.Exact<{\n input: Types.CancelSubscriptionInput;\n}>;\n\n\nexport type CancelSubscriptionMutation = { __typename?: 'Mutation', cancelSubscription: { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string } };\n\nexport type CreateBillingAccountSubscriptionsMutationVariables = Types.Exact<{\n input: Types.CreateBillingAccountInput;\n}>;\n\n\nexport type CreateBillingAccountSubscriptionsMutation = { __typename?: 'Mutation', createBillingAccount: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, currency?: string | null, isActive?: boolean | null, createdAt?: string | null } };\n\nexport type InitiatePaymentSubscriptionsMutationVariables = Types.Exact<{\n input: Types.InitiatePaymentInput;\n}>;\n\n\nexport type InitiatePaymentSubscriptionsMutation = { __typename?: 'Mutation', initiatePayment: { __typename?: 'InitiatePaymentResponse', success: boolean, provider: string, clientSecret?: string | null, orderId?: string | null, razorpayKeyId?: string | null, subtotal: number, taxAmount: number, taxRate: number, taxType: string, taxBreakdown?: Record<string, unknown> | null, jurisdiction: string, total: number, currency: string, error?: string | null } };\n\nexport type SpendCreditsSubscriptionsMutationVariables = Types.Exact<{\n input: Types.SpendCreditsInput;\n}>;\n\n\nexport type SpendCreditsSubscriptionsMutation = { __typename?: 'Mutation', spendCredits: { __typename?: 'SpendCreditResponse', creditTransactionID: string } };\n\nexport type UpdateBillingAccountSubscriptionsMutationVariables = Types.Exact<{\n input: Types.UpdateBillingAccountInput;\n}>;\n\n\nexport type UpdateBillingAccountSubscriptionsMutation = { __typename?: 'Mutation', updateBillingAccount: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, taxId?: string | null, isActive?: boolean | null, updatedAt?: string | null } };\n\nexport type GetBillingAccountQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetBillingAccountQuery = { __typename?: 'Query', getBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, stripeCustomerId?: string | null, razorpayCustomerId?: string | null, taxId?: string | null, createdAt?: string | null, updatedAt?: string | null, subscriptions?: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null } | null> | null } | null };\n\nexport type GetBillingAccountsForSubscriptionsQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAccountsForSubscriptionsQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null }> };\n\nexport type GetDefaultBillingAccountQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetDefaultBillingAccountQuery = { __typename?: 'Query', getDefaultBillingAccount?: { __typename?: 'BillingAccount', id?: string | null, orgId?: string | null, name?: string | null, email?: string | null, billingEmail?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, createdAt?: string | null, subscriptions?: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null } | null> | null } | null };\n\nexport type GetPaginatedSubscriptionsQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetPaginatedSubscriptionsQuery = { __typename?: 'Query', getPaginatedSubscriptions: { __typename?: 'PaginatedSubscriptions', totalCount: number, page: number, pageSize: number, totalPages: number, subscriptions: Array<{ __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, addonSubscriptions: Array<{ __typename?: 'AddonSubscription', id?: string | null, addonId?: string | null, quantity?: number | null }>, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null }> } };\n\nexport type GetSubscriptionQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetSubscriptionQuery = { __typename?: 'Query', getSubscription?: { __typename?: 'BillingSubscription', id: string, billingAccountId: string, planId: string, status: Types.SubscriptionStatus, startDate: string, endDate: string, autoRenewal?: boolean | null, recurrence: boolean, seatCount?: number | null, lastSeatChangeAt?: string | null, lastBillingDate?: string | null, nextBillingDate?: string | null, lastRenewalDate?: string | null, canceledAt?: string | null, canceledBy?: string | null, cancellationReason?: string | null, stripeSubscriptionId?: string | null, razorpaySubscriptionId?: string | null, paymentGateway?: string | null, context?: Record<string, unknown> | null, createdAt: string, updatedAt: string, billingAccount?: { __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null } | null, addonSubscriptions: Array<{ __typename?: 'AddonSubscription', id?: string | null, addonId?: string | null, quantity?: number | null, startDate?: string | null, endDate?: string | null, addon?: { __typename?: 'Addon', id?: string | null, name?: string | null, price?: number | null, currency?: string | null } | null }>, quotas: Array<{ __typename?: 'QuotaAssignment', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, currentUsageSum?: number | null, endtime?: string | null, quotaType?: Types.QuotaType | null, reusable?: boolean | null }>, transactions: Array<{ __typename?: 'Transaction', id: string, amount: number, currency: string, type: Types.TransactionType, status: Types.TransactionStatus, createdAt: string }>, history: Array<{ __typename?: 'SubscriptionHistory', id: string, fromStatus: Types.SubscriptionStatus, toStatus: Types.SubscriptionStatus, reason?: string | null, createdAt: string }>, plan?: { __typename?: 'Plan', id?: string | null, productID?: string | null, name?: string | null, price?: number | null, currency?: string | null, duration?: Types.PlanDuration | null, isActive?: boolean | null } | null } | null };\n\nexport type GetSubscriptionUsageOverviewQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetSubscriptionUsageOverviewQuery = { __typename?: 'Query', getSubscriptionUsageOverview?: Array<{ __typename?: 'SubscriptionWithQuotas', id: string, status: Types.SubscriptionStatus, createdAt: string, quotas: Array<{ __typename?: 'QuotaAssignmentSummary', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, currentUsageSum?: number | null, usageCount?: number | null, endtime?: string | null }> }> | null };\n\nexport type QuotaUsageSummaryFieldsFragment = { __typename?: 'QuotaUsageSummary', quotaId: string, quotaName: string, usage: number, limit: number, percentage: number, status: Types.QuotaStatus };\n\nexport type UsageActivityFieldsFragment = { __typename?: 'UsageActivity', id: string, quotaName: string, amount: number, description: string, tags?: Record<string, unknown> | null, timestamp: string };\n\nexport type UsageDashboardFieldsFragment = { __typename?: 'UsageDashboard', totalQuotas: number, healthyQuotas: number, warningQuotas: number, criticalQuotas: number, exhaustedQuotas: number };\n\nexport type UsageFieldsFragment = { __typename?: 'Usage', id?: string | null, quotaAssignmentId?: string | null, userId?: string | null, productId?: string | null, amount?: number | null, description?: string | null, tags?: Record<string, unknown> | null, timestamp?: string | null, lastUpdated?: string | null, context?: Record<string, unknown> | null };\n\nexport type UsageRecordFieldsFragment = { __typename?: 'UsageRecord', id: string, orgId: string, subscriptionId?: string | null, metricType: Types.UsageMetricType, quantity: number, unitCost?: number | null, totalCost?: number | null, timestamp: string, metadata?: Record<string, unknown> | null, context?: Record<string, unknown> | null, createdAt: string };\n\nexport type UsageTrendsFieldsFragment = { __typename?: 'UsageTrends', averageDailyUsage?: number | null, growthRate?: number | null, predictedUsage?: number | null };\n\nexport type GetBillingAccountQuotasSummaryForUsageQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n productId?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetBillingAccountQuotasSummaryForUsageQuery = { __typename?: 'Query', getBillingAccountQuotasSummary: { __typename?: 'BillingAccountQuotasSummary', billingAccountId: string, totalLimit: number, totalUsage: number, pooledQuotas: Array<{ __typename?: 'QuotaAssignmentUsageSummary', id: string, name: string, quotaType: Types.QuotaType, reusable: boolean, limit: number, limitLeft: number, used: number, usagePercentage: number, noLimit: boolean, createdAt: string, endtime: string }> } };\n\nexport type GetBillingAccountsForUsageQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetBillingAccountsForUsageQuery = { __typename?: 'Query', getBillingAccountsByOrg: Array<{ __typename?: 'BillingAccount', id?: string | null, name?: string | null, email?: string | null, currency?: string | null, creditAmount?: number | null, isActive?: boolean | null, isDefault?: boolean | null }> };\n\nexport type GetPastSubscriptionsWithQuotasQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n searchQuery?: Types.InputMaybe<Types.Scalars['String']['input']>;\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n}>;\n\n\nexport type GetPastSubscriptionsWithQuotasQuery = { __typename?: 'Query', getSubscriptionUsageOverview?: Array<{ __typename?: 'SubscriptionWithQuotas', id: string, status: Types.SubscriptionStatus, createdAt: string, quotas: Array<{ __typename?: 'QuotaAssignmentSummary', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, currentUsageSum?: number | null, usageCount?: number | null, createdAt?: string | null, endtime?: string | null }> }> | null };\n\nexport type GetQuotaAnalyticsForUsageQueryVariables = Types.Exact<{\n quotaAssignmentId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n period?: Types.InputMaybe<Types.AnalyticsPeriod>;\n}>;\n\n\nexport type GetQuotaAnalyticsForUsageQuery = { __typename?: 'Query', getQuotaAnalytics: { __typename?: 'QuotaUsageAnalytics', dailyUsage: Array<{ __typename?: 'DailyUsage', date: string, usage: number, count: number }>, usageByType: Array<{ __typename?: 'UsageByType', resourceType: string, usage: number, count: number, percentage: number }>, trends?: { __typename?: 'UsageTrends', growthRate?: number | null, predictedUsage?: number | null, averageDailyUsage?: number | null } | null, peakUsage?: { __typename?: 'PeakUsage', maxDailyUsage: number, peakDate: string, peakHour?: number | null } | null } };\n\nexport type GetQuotaUsageDetailsQueryVariables = Types.Exact<{\n quotaAssignmentId: Types.Scalars['ID']['input'];\n billingAccountId: Types.Scalars['ID']['input'];\n page?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n pageSize?: Types.InputMaybe<Types.Scalars['Int']['input']>;\n fromDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n toDate?: Types.InputMaybe<Types.Scalars['DateTime']['input']>;\n sortBy?: Types.InputMaybe<Types.Scalars['String']['input']>;\n sortOrder?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetQuotaUsageDetailsQuery = { __typename?: 'Query', getQuotaUsageDetails?: { __typename?: 'PaginatedUsages', totalCount: number, page: number, pageSize: number, totalPages: number, usages: Array<{ __typename?: 'Usage', id?: string | null, amount?: number | null, description?: string | null, tags?: Record<string, unknown> | null, productId?: string | null, userId?: string | null, timestamp?: string | null, lastUpdated?: string | null }> } | null };\n\nexport type GetSubscriptionsWithQuotasQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n searchQuery?: Types.InputMaybe<Types.Scalars['String']['input']>;\n}>;\n\n\nexport type GetSubscriptionsWithQuotasQuery = { __typename?: 'Query', getSubscriptionUsageOverview?: Array<{ __typename?: 'SubscriptionWithQuotas', id: string, status: Types.SubscriptionStatus, createdAt: string, quotas: Array<{ __typename?: 'QuotaAssignmentSummary', id?: string | null, name?: string | null, limits?: Record<string, unknown> | null, currentUsageSum?: number | null, usageCount?: number | null, createdAt?: string | null, endtime?: string | null }> }> | null };\n\nexport type GetUsageDashboardQueryVariables = Types.Exact<{\n billingAccountId: Types.Scalars['ID']['input'];\n period?: Types.InputMaybe<Types.AnalyticsPeriod>;\n}>;\n\n\nexport type GetUsageDashboardQuery = { __typename?: 'Query', getUsageDashboard: { __typename?: 'UsageDashboard', totalQuotas: number, healthyQuotas: number, warningQuotas: number, criticalQuotas: number, exhaustedQuotas: number } };\n\nexport type GetMyOrdersQueryVariables = Types.Exact<{ [key: string]: never; }>;\n\n\nexport type GetMyOrdersQuery = { __typename?: 'Query', myOrders: Array<{ __typename?: 'StoreOrder', id: string, billingAccountId: string, status: Types.OrderStatus, transactionId?: string | null, total: number, lineItems: Record<string, unknown>, appliedEntitlementId?: string | null, purchasedAt?: string | null, processedAt?: string | null, createdAt: string, updatedAt: string }> };\n\nexport type GetStoreOrderQueryVariables = Types.Exact<{\n id: Types.Scalars['ID']['input'];\n}>;\n\n\nexport type GetStoreOrderQuery = { __typename?: 'Query', getStoreOrder?: { __typename?: 'StoreOrder', id: string, billingAccountId: string, status: Types.OrderStatus, transactionId?: string | null, total: number, lineItems: Record<string, unknown>, appliedEntitlementId?: string | null, purchasedAt?: string | null, processedAt?: string | null, createdAt: string, updatedAt: string } | null };\n\nexport const AddonFieldsFragmentDoc = gql`\n fragment AddonFields on Addon {\n id\n productID\n name\n price\n currency\n currencyPrices\n duration\n isActive\n context\n createdAt\n updatedAt\n}\n `;\nexport const AddonSubscriptionFieldsFragmentDoc = gql`\n fragment AddonSubscriptionFields on AddonSubscription {\n id\n addonId\n currentSubscriptionId\n quantity\n startDate\n endDate\n context\n createdAt\n updatedAt\n addon {\n ...AddonFields\n }\n}\n ${AddonFieldsFragmentDoc}`;\nexport const AddonWithFeaturesFieldsFragmentDoc = gql`\n fragment AddonWithFeaturesFields on Addon {\n ...AddonFields\n features {\n id\n quotaId\n quota {\n id\n name\n limits\n reusable\n quotaType\n }\n }\n}\n ${AddonFieldsFragmentDoc}`;\nexport const RefundFieldsFragmentDoc = gql`\n fragment RefundFields on Refund {\n id\n chargeId\n amount\n currency\n status\n reason\n provider\n gatewayRefundId\n processedAt\n context\n metadata\n createdAt\n updatedAt\n}\n `;\nexport const ChargeFieldsFragmentDoc = gql`\n fragment ChargeFields on Charge {\n id\n orgId\n amount\n currency\n status\n description\n provider\n gatewayChargeId\n gatewayPaymentId\n context\n metadata\n createdAt\n updatedAt\n refunds {\n ...RefundFields\n }\n}\n ${RefundFieldsFragmentDoc}`;\nexport const InvoiceFieldsFragmentDoc = gql`\n fragment InvoiceFields on Invoice {\n id\n orgId\n billingAccountId\n subscriptionId\n paymentId\n invoiceNumber\n status\n subtotal\n tax\n total\n amountPaid\n currency\n dueDate\n paidAt\n gatewayInvoiceId\n invoiceUrl\n pdfUrl\n itemDescription\n context\n metadata\n createdAt\n updatedAt\n}\n `;\nexport const InvoiceItemFieldsFragmentDoc = gql`\n fragment InvoiceItemFields on InvoiceItem {\n id\n invoiceId\n description\n quantity\n unitPrice\n amount\n context\n metadata\n}\n `;\nexport const InvoiceWithItemsFieldsFragmentDoc = gql`\n fragment InvoiceWithItemsFields on Invoice {\n ...InvoiceFields\n items {\n ...InvoiceItemFields\n }\n subscription {\n id\n status\n plan {\n id\n name\n }\n }\n payment {\n id\n amount\n status\n method\n provider\n paidAt\n }\n}\n ${InvoiceFieldsFragmentDoc}\n${InvoiceItemFieldsFragmentDoc}`;\nexport const PaymentFieldsFragmentDoc = gql`\n fragment PaymentFields on Payment {\n id\n orgId\n transactionId\n amount\n currency\n status\n method\n provider\n gatewayPaymentId\n gatewayOrderId\n failureReason\n paidAt\n context\n metadata\n createdAt\n updatedAt\n}\n `;\nexport const PaymentMethodFieldsFragmentDoc = gql`\n fragment PaymentMethodFields on PaymentMethod {\n id\n orgId\n billingAccountId\n type\n brand\n last4\n expiryMonth\n expiryYear\n isDefault\n isVerified\n verifiedAt\n stripeCustomerId\n stripePaymentMethodId\n razorpayCustomerId\n razorpayPaymentMethodId\n context\n metadata\n createdAt\n updatedAt\n}\n `;\nexport const RefundRecordFieldsFragmentDoc = gql`\n fragment RefundRecordFields on RefundRecord {\n id\n orgId\n billingAccountId\n source\n status\n provider\n gatewayPaymentId\n gatewayOrderId\n amount\n currency\n purchaseType\n purchaseDetail\n reason\n notes\n webhookLogId\n transactionId\n processedBy\n processedAt\n gatewayRefundId\n errorMessage\n retryCount\n metadata\n createdAt\n updatedAt\n}\n `;\nexport const RefundRecordWithRelationsFieldsFragmentDoc = gql`\n fragment RefundRecordWithRelationsFields on RefundRecord {\n ...RefundRecordFields\n webhookLog {\n id\n event\n provider\n payload\n processed\n error\n createdAt\n }\n transaction {\n id\n amount\n currency\n status\n type\n description\n createdAt\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport const CreditNoteFieldsFragmentDoc = gql`\n fragment CreditNoteFields on CreditNote {\n id\n orgId\n invoiceId\n number\n amount\n currency\n reason\n metadata\n context\n createdAt\n updatedAt\n}\n `;\nexport const CreditTransactionFieldsFragmentDoc = gql`\n fragment CreditTransactionFields on CreditTransaction {\n id\n billingAccountId\n productId\n amount\n type\n status\n entityType\n entityId\n transactionId\n context\n createdAt\n updatedAt\n}\n `;\nexport const ActiveSubscriptionFieldsFragmentDoc = gql`\n fragment ActiveSubscriptionFields on BillingSubscription {\n id\n billingAccountId\n planId\n status\n startDate\n endDate\n autoRenewal\n recurrence\n seatCount\n nextBillingDate\n paymentGateway\n createdAt\n plan {\n id\n name\n price\n currency\n duration\n isActive\n productID\n }\n}\n `;\nexport const BillingAccountFieldsFragmentDoc = gql`\n fragment BillingAccountFields on BillingAccount {\n id\n orgId\n name\n email\n billingEmail\n currency\n creditAmount\n stripeCustomerId\n razorpayCustomerId\n defaultPaymentMethod\n taxId\n isActive\n isDefault\n createdAt\n updatedAt\n}\n `;\nexport const BillingAddressFieldsFragmentDoc = gql`\n fragment BillingAddressFields on BillingAddress {\n id\n orgId\n billingAccountId\n line1\n line2\n city\n state\n postalCode\n country\n createdAt\n updatedAt\n}\n `;\nexport const CreditTransactionSummaryFieldsFragmentDoc = gql`\n fragment CreditTransactionSummaryFields on CreditTransaction {\n id\n billingAccountId\n productId\n amount\n type\n status\n entityType\n entityId\n createdAt\n}\n `;\nexport const DashboardPaymentMethodFieldsFragmentDoc = gql`\n fragment DashboardPaymentMethodFields on PaymentMethod {\n id\n orgId\n billingAccountId\n type\n brand\n last4\n expiryMonth\n expiryYear\n isDefault\n isVerified\n verifiedAt\n stripePaymentMethodId\n razorpayPaymentMethodId\n createdAt\n updatedAt\n}\n `;\nexport const TransactionSummaryFieldsFragmentDoc = gql`\n fragment TransactionSummaryFields on Transaction {\n id\n billingAccountId\n amount\n currency\n status\n type\n description\n createdAt\n}\n `;\nexport const CouponFieldsFragmentDoc = gql`\n fragment CouponFields on Coupon {\n id\n code\n name\n description\n scope\n status\n type\n value\n currency\n minPurchaseAmount\n maxDiscountAmount\n maxTotalUses\n maxUsesPerUser\n currentUses\n validFrom\n validUntil\n restrictedToUserIds\n applicableProducts\n applicableServices\n excludedProducts\n excludedServices\n campaignId\n campaignName\n metadata\n createdAt\n updatedAt\n createdBy\n onBehalfOf\n}\n `;\nexport const PlanFieldsFragmentDoc = gql`\n fragment PlanFields on Plan {\n id\n productID\n name\n price\n currency\n currencyPrices\n duration\n pricingModel\n pricePerSeat\n minSeats\n maxSeats\n isActive\n context\n createdAt\n updatedAt\n}\n `;\nexport const PlanWithFeaturesFieldsFragmentDoc = gql`\n fragment PlanWithFeaturesFields on Plan {\n ...PlanFields\n features {\n id\n quotaId\n quota {\n id\n name\n limits\n reusable\n quotaType\n }\n }\n itemEntitlements {\n id\n itemId\n accessType\n discountPercentage\n }\n}\n ${PlanFieldsFragmentDoc}`;\nexport const QuotaFieldsFragmentDoc = gql`\n fragment QuotaFields on Quota {\n id\n name\n limits\n quotaType\n reusable\n resetPeriod\n isActive\n context\n createdAt\n updatedAt\n}\n `;\nexport const QuotaAssignmentFieldsFragmentDoc = gql`\n fragment QuotaAssignmentFields on QuotaAssignment {\n id\n billingAccountId\n subscriptionId\n name\n limits\n quotaType\n reusable\n currentUsageSum\n totalUsageCount\n endtime\n context\n createdAt\n}\n `;\nexport const QuotaUsageAnalyticsFieldsFragmentDoc = gql`\n fragment QuotaUsageAnalyticsFields on QuotaUsageAnalytics {\n dailyUsage {\n date\n usage\n count\n }\n usageByType {\n resourceType\n usage\n count\n percentage\n }\n peakUsage {\n peakDate\n maxDailyUsage\n peakHour\n }\n trends {\n averageDailyUsage\n growthRate\n predictedUsage\n }\n}\n `;\nexport const QuotaAssignmentWithAnalyticsFieldsFragmentDoc = gql`\n fragment QuotaAssignmentWithAnalyticsFields on QuotaAssignmentWithAnalytics {\n id\n billingAccountId\n subscriptionId\n name\n limits\n quotaType\n reusable\n currentUsageSum\n totalUsageCount\n status\n healthScore\n usagePercentage\n limitLeft\n endtime\n createdAt\n analytics {\n ...QuotaUsageAnalyticsFields\n }\n}\n ${QuotaUsageAnalyticsFieldsFragmentDoc}`;\nexport const QuotaTemplateFieldsFragmentDoc = gql`\n fragment QuotaTemplateFields on Quota {\n id\n name\n limits\n quotaType\n reusable\n resetPeriod\n isActive\n context\n createdAt\n updatedAt\n}\n `;\nexport const SubscriptionFieldsFragmentDoc = gql`\n fragment SubscriptionFields on BillingSubscription {\n id\n billingAccountId\n planId\n status\n startDate\n endDate\n autoRenewal\n recurrence\n seatCount\n lastSeatChangeAt\n lastBillingDate\n nextBillingDate\n lastRenewalDate\n canceledAt\n canceledBy\n cancellationReason\n stripeSubscriptionId\n razorpaySubscriptionId\n paymentGateway\n context\n createdAt\n updatedAt\n}\n `;\nexport const SubscriptionWithPlanFieldsFragmentDoc = gql`\n fragment SubscriptionWithPlanFields on BillingSubscription {\n ...SubscriptionFields\n plan {\n id\n productID\n name\n price\n currency\n duration\n isActive\n }\n}\n ${SubscriptionFieldsFragmentDoc}`;\nexport const SubscriptionFullFieldsFragmentDoc = gql`\n fragment SubscriptionFullFields on BillingSubscription {\n ...SubscriptionWithPlanFields\n billingAccount {\n id\n name\n email\n currency\n }\n addonSubscriptions {\n id\n addonId\n quantity\n startDate\n endDate\n addon {\n id\n name\n price\n currency\n }\n }\n quotas {\n id\n name\n limits\n currentUsageSum\n endtime\n quotaType\n reusable\n }\n transactions {\n id\n amount\n currency\n type\n status\n createdAt\n }\n history {\n id\n fromStatus\n toStatus\n reason\n createdAt\n }\n}\n ${SubscriptionWithPlanFieldsFragmentDoc}`;\nexport const QuotaUsageSummaryFieldsFragmentDoc = gql`\n fragment QuotaUsageSummaryFields on QuotaUsageSummary {\n quotaId\n quotaName\n usage\n limit\n percentage\n status\n}\n `;\nexport const UsageActivityFieldsFragmentDoc = gql`\n fragment UsageActivityFields on UsageActivity {\n id\n quotaName\n amount\n description\n tags\n timestamp\n}\n `;\nexport const UsageDashboardFieldsFragmentDoc = gql`\n fragment UsageDashboardFields on UsageDashboard {\n totalQuotas\n healthyQuotas\n warningQuotas\n criticalQuotas\n exhaustedQuotas\n}\n `;\nexport const UsageFieldsFragmentDoc = gql`\n fragment UsageFields on Usage {\n id\n quotaAssignmentId\n userId\n productId\n amount\n description\n tags\n timestamp\n lastUpdated\n context\n}\n `;\nexport const UsageRecordFieldsFragmentDoc = gql`\n fragment UsageRecordFields on UsageRecord {\n id\n orgId\n subscriptionId\n metricType\n quantity\n unitCost\n totalCost\n timestamp\n metadata\n context\n createdAt\n}\n `;\nexport const UsageTrendsFieldsFragmentDoc = gql`\n fragment UsageTrendsFields on UsageTrends {\n averageDailyUsage\n growthRate\n predictedUsage\n}\n `;\nexport const CreateAddOnsDocument = gql`\n mutation CreateAddOns($input: createAddOnsInput!) {\n createAddOns(input: $input)\n}\n `;\nexport type CreateAddOnsMutationFn = Apollo.MutationFunction<Types.CreateAddOnsMutation, Types.CreateAddOnsMutationVariables>;\n\n/**\n * __useCreateAddOnsMutation__\n *\n * To run a mutation, you first call `useCreateAddOnsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateAddOnsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createAddOnsMutation, { data, loading, error }] = useCreateAddOnsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateAddOnsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateAddOnsMutation, Types.CreateAddOnsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateAddOnsMutation, Types.CreateAddOnsMutationVariables>(CreateAddOnsDocument, options);\n }\nexport type CreateAddOnsMutationHookResult = ReturnType<typeof useCreateAddOnsMutation>;\nexport type CreateAddOnsMutationResult = Apollo.MutationResult<Types.CreateAddOnsMutation>;\nexport type CreateAddOnsMutationOptions = Apollo.BaseMutationOptions<Types.CreateAddOnsMutation, Types.CreateAddOnsMutationVariables>;\nexport const ToggleAddOnDocument = gql`\n mutation ToggleAddOn($id: ID!, $status: Boolean!) {\n toggleAddOn(id: $id, status: $status)\n}\n `;\nexport type ToggleAddOnMutationFn = Apollo.MutationFunction<Types.ToggleAddOnMutation, Types.ToggleAddOnMutationVariables>;\n\n/**\n * __useToggleAddOnMutation__\n *\n * To run a mutation, you first call `useToggleAddOnMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useToggleAddOnMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [toggleAddOnMutation, { data, loading, error }] = useToggleAddOnMutation({\n * variables: {\n * id: // value for 'id'\n * status: // value for 'status'\n * },\n * });\n */\nexport function useToggleAddOnMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ToggleAddOnMutation, Types.ToggleAddOnMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ToggleAddOnMutation, Types.ToggleAddOnMutationVariables>(ToggleAddOnDocument, options);\n }\nexport type ToggleAddOnMutationHookResult = ReturnType<typeof useToggleAddOnMutation>;\nexport type ToggleAddOnMutationResult = Apollo.MutationResult<Types.ToggleAddOnMutation>;\nexport type ToggleAddOnMutationOptions = Apollo.BaseMutationOptions<Types.ToggleAddOnMutation, Types.ToggleAddOnMutationVariables>;\nexport const UpdateAddOnDetailsDocument = gql`\n mutation UpdateAddOnDetails($input: updateAddOnsInput!) {\n updateAddOnDetails(input: $input)\n}\n `;\nexport type UpdateAddOnDetailsMutationFn = Apollo.MutationFunction<Types.UpdateAddOnDetailsMutation, Types.UpdateAddOnDetailsMutationVariables>;\n\n/**\n * __useUpdateAddOnDetailsMutation__\n *\n * To run a mutation, you first call `useUpdateAddOnDetailsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateAddOnDetailsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateAddOnDetailsMutation, { data, loading, error }] = useUpdateAddOnDetailsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateAddOnDetailsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateAddOnDetailsMutation, Types.UpdateAddOnDetailsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateAddOnDetailsMutation, Types.UpdateAddOnDetailsMutationVariables>(UpdateAddOnDetailsDocument, options);\n }\nexport type UpdateAddOnDetailsMutationHookResult = ReturnType<typeof useUpdateAddOnDetailsMutation>;\nexport type UpdateAddOnDetailsMutationResult = Apollo.MutationResult<Types.UpdateAddOnDetailsMutation>;\nexport type UpdateAddOnDetailsMutationOptions = Apollo.BaseMutationOptions<Types.UpdateAddOnDetailsMutation, Types.UpdateAddOnDetailsMutationVariables>;\nexport const GetAllAddOnsDocument = gql`\n query GetAllAddOns($filter: AddonsFilter) {\n getAllAddOns(filter: $filter) {\n ...AddonWithFeaturesFields\n }\n}\n ${AddonWithFeaturesFieldsFragmentDoc}`;\n\n/**\n * __useGetAllAddOnsQuery__\n *\n * To run a query within a React component, call `useGetAllAddOnsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAllAddOnsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAllAddOnsQuery({\n * variables: {\n * filter: // value for 'filter'\n * },\n * });\n */\nexport function useGetAllAddOnsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>(GetAllAddOnsDocument, options);\n }\nexport function useGetAllAddOnsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>(GetAllAddOnsDocument, options);\n }\n// @ts-ignore\nexport function useGetAllAddOnsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>;\nexport function useGetAllAddOnsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllAddOnsQuery | undefined, Types.GetAllAddOnsQueryVariables>;\nexport function useGetAllAddOnsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>(GetAllAddOnsDocument, options);\n }\nexport type GetAllAddOnsQueryHookResult = ReturnType<typeof useGetAllAddOnsQuery>;\nexport type GetAllAddOnsLazyQueryHookResult = ReturnType<typeof useGetAllAddOnsLazyQuery>;\nexport type GetAllAddOnsSuspenseQueryHookResult = ReturnType<typeof useGetAllAddOnsSuspenseQuery>;\nexport type GetAllAddOnsQueryResult = Apollo.QueryResult<Types.GetAllAddOnsQuery, Types.GetAllAddOnsQueryVariables>;\nexport const GetSelectedAddonsDocument = gql`\n query GetSelectedAddons($addonIDs: [String!]!) {\n getSelectedAddons(addonIDs: $addonIDs) {\n ...AddonWithFeaturesFields\n }\n}\n ${AddonWithFeaturesFieldsFragmentDoc}`;\n\n/**\n * __useGetSelectedAddonsQuery__\n *\n * To run a query within a React component, call `useGetSelectedAddonsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetSelectedAddonsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetSelectedAddonsQuery({\n * variables: {\n * addonIDs: // value for 'addonIDs'\n * },\n * });\n */\nexport function useGetSelectedAddonsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables> & ({ variables: Types.GetSelectedAddonsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>(GetSelectedAddonsDocument, options);\n }\nexport function useGetSelectedAddonsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>(GetSelectedAddonsDocument, options);\n }\n// @ts-ignore\nexport function useGetSelectedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>;\nexport function useGetSelectedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSelectedAddonsQuery | undefined, Types.GetSelectedAddonsQueryVariables>;\nexport function useGetSelectedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>(GetSelectedAddonsDocument, options);\n }\nexport type GetSelectedAddonsQueryHookResult = ReturnType<typeof useGetSelectedAddonsQuery>;\nexport type GetSelectedAddonsLazyQueryHookResult = ReturnType<typeof useGetSelectedAddonsLazyQuery>;\nexport type GetSelectedAddonsSuspenseQueryHookResult = ReturnType<typeof useGetSelectedAddonsSuspenseQuery>;\nexport type GetSelectedAddonsQueryResult = Apollo.QueryResult<Types.GetSelectedAddonsQuery, Types.GetSelectedAddonsQueryVariables>;\nexport const GetBillingAnalyticsPageDataDocument = gql`\n query GetBillingAnalyticsPageData {\n getBillingAccountsByOrg {\n ...BillingAccountFields\n subscriptions {\n id\n status\n seatCount\n startDate\n endDate\n canceledAt\n createdAt\n plan {\n id\n name\n price\n currency\n duration\n isActive\n productID\n }\n }\n }\n getPayments(status: SUCCEEDED) {\n id\n amount\n currency\n status\n provider\n paidAt\n createdAt\n }\n}\n ${BillingAccountFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAnalyticsPageDataQuery__\n *\n * To run a query within a React component, call `useGetBillingAnalyticsPageDataQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAnalyticsPageDataQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAnalyticsPageDataQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAnalyticsPageDataQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>(GetBillingAnalyticsPageDataDocument, options);\n }\nexport function useGetBillingAnalyticsPageDataLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>(GetBillingAnalyticsPageDataDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAnalyticsPageDataSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>;\nexport function useGetBillingAnalyticsPageDataSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAnalyticsPageDataQuery | undefined, Types.GetBillingAnalyticsPageDataQueryVariables>;\nexport function useGetBillingAnalyticsPageDataSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>(GetBillingAnalyticsPageDataDocument, options);\n }\nexport type GetBillingAnalyticsPageDataQueryHookResult = ReturnType<typeof useGetBillingAnalyticsPageDataQuery>;\nexport type GetBillingAnalyticsPageDataLazyQueryHookResult = ReturnType<typeof useGetBillingAnalyticsPageDataLazyQuery>;\nexport type GetBillingAnalyticsPageDataSuspenseQueryHookResult = ReturnType<typeof useGetBillingAnalyticsPageDataSuspenseQuery>;\nexport type GetBillingAnalyticsPageDataQueryResult = Apollo.QueryResult<Types.GetBillingAnalyticsPageDataQuery, Types.GetBillingAnalyticsPageDataQueryVariables>;\nexport const AddPaymentMethodDocument = gql`\n mutation AddPaymentMethod($input: CreatePaymentMethodInput!) {\n addPaymentMethod(input: $input) {\n ...PaymentMethodFields\n }\n}\n ${PaymentMethodFieldsFragmentDoc}`;\nexport type AddPaymentMethodMutationFn = Apollo.MutationFunction<Types.AddPaymentMethodMutation, Types.AddPaymentMethodMutationVariables>;\n\n/**\n * __useAddPaymentMethodMutation__\n *\n * To run a mutation, you first call `useAddPaymentMethodMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddPaymentMethodMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addPaymentMethodMutation, { data, loading, error }] = useAddPaymentMethodMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useAddPaymentMethodMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddPaymentMethodMutation, Types.AddPaymentMethodMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.AddPaymentMethodMutation, Types.AddPaymentMethodMutationVariables>(AddPaymentMethodDocument, options);\n }\nexport type AddPaymentMethodMutationHookResult = ReturnType<typeof useAddPaymentMethodMutation>;\nexport type AddPaymentMethodMutationResult = Apollo.MutationResult<Types.AddPaymentMethodMutation>;\nexport type AddPaymentMethodMutationOptions = Apollo.BaseMutationOptions<Types.AddPaymentMethodMutation, Types.AddPaymentMethodMutationVariables>;\nexport const CreateRefundDocument = gql`\n mutation CreateRefund($chargeId: ID!, $billingAccountId: ID!, $amount: Float!, $reason: String, $currency: String, $metadata: JSON) {\n createRefund(\n chargeId: $chargeId\n billingAccountId: $billingAccountId\n amount: $amount\n reason: $reason\n currency: $currency\n metadata: $metadata\n ) {\n ...RefundFields\n }\n}\n ${RefundFieldsFragmentDoc}`;\nexport type CreateRefundMutationFn = Apollo.MutationFunction<Types.CreateRefundMutation, Types.CreateRefundMutationVariables>;\n\n/**\n * __useCreateRefundMutation__\n *\n * To run a mutation, you first call `useCreateRefundMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateRefundMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createRefundMutation, { data, loading, error }] = useCreateRefundMutation({\n * variables: {\n * chargeId: // value for 'chargeId'\n * billingAccountId: // value for 'billingAccountId'\n * amount: // value for 'amount'\n * reason: // value for 'reason'\n * currency: // value for 'currency'\n * metadata: // value for 'metadata'\n * },\n * });\n */\nexport function useCreateRefundMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRefundMutation, Types.CreateRefundMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateRefundMutation, Types.CreateRefundMutationVariables>(CreateRefundDocument, options);\n }\nexport type CreateRefundMutationHookResult = ReturnType<typeof useCreateRefundMutation>;\nexport type CreateRefundMutationResult = Apollo.MutationResult<Types.CreateRefundMutation>;\nexport type CreateRefundMutationOptions = Apollo.BaseMutationOptions<Types.CreateRefundMutation, Types.CreateRefundMutationVariables>;\nexport const CreateRefundRecordDocument = gql`\n mutation CreateRefundRecord($billingAccountId: String, $provider: String!, $gatewayPaymentId: String!, $gatewayOrderId: String, $amount: Float!, $currency: String!, $purchaseType: String, $purchaseDetail: String, $reason: String, $notes: String, $transactionId: String, $metadata: JSON) {\n createRefundRecord(\n billingAccountId: $billingAccountId\n provider: $provider\n gatewayPaymentId: $gatewayPaymentId\n gatewayOrderId: $gatewayOrderId\n amount: $amount\n currency: $currency\n purchaseType: $purchaseType\n purchaseDetail: $purchaseDetail\n reason: $reason\n notes: $notes\n transactionId: $transactionId\n metadata: $metadata\n ) {\n ...RefundRecordFields\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type CreateRefundRecordMutationFn = Apollo.MutationFunction<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>;\n\n/**\n * __useCreateRefundRecordMutation__\n *\n * To run a mutation, you first call `useCreateRefundRecordMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateRefundRecordMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createRefundRecordMutation, { data, loading, error }] = useCreateRefundRecordMutation({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * provider: // value for 'provider'\n * gatewayPaymentId: // value for 'gatewayPaymentId'\n * gatewayOrderId: // value for 'gatewayOrderId'\n * amount: // value for 'amount'\n * currency: // value for 'currency'\n * purchaseType: // value for 'purchaseType'\n * purchaseDetail: // value for 'purchaseDetail'\n * reason: // value for 'reason'\n * notes: // value for 'notes'\n * transactionId: // value for 'transactionId'\n * metadata: // value for 'metadata'\n * },\n * });\n */\nexport function useCreateRefundRecordMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>(CreateRefundRecordDocument, options);\n }\nexport type CreateRefundRecordMutationHookResult = ReturnType<typeof useCreateRefundRecordMutation>;\nexport type CreateRefundRecordMutationResult = Apollo.MutationResult<Types.CreateRefundRecordMutation>;\nexport type CreateRefundRecordMutationOptions = Apollo.BaseMutationOptions<Types.CreateRefundRecordMutation, Types.CreateRefundRecordMutationVariables>;\nexport const CreateRefundRecordFromWebhookDocument = gql`\n mutation CreateRefundRecordFromWebhook($webhookLogId: ID!) {\n createRefundRecordFromWebhook(webhookLogId: $webhookLogId) {\n ...RefundRecordFields\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type CreateRefundRecordFromWebhookMutationFn = Apollo.MutationFunction<Types.CreateRefundRecordFromWebhookMutation, Types.CreateRefundRecordFromWebhookMutationVariables>;\n\n/**\n * __useCreateRefundRecordFromWebhookMutation__\n *\n * To run a mutation, you first call `useCreateRefundRecordFromWebhookMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateRefundRecordFromWebhookMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createRefundRecordFromWebhookMutation, { data, loading, error }] = useCreateRefundRecordFromWebhookMutation({\n * variables: {\n * webhookLogId: // value for 'webhookLogId'\n * },\n * });\n */\nexport function useCreateRefundRecordFromWebhookMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRefundRecordFromWebhookMutation, Types.CreateRefundRecordFromWebhookMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateRefundRecordFromWebhookMutation, Types.CreateRefundRecordFromWebhookMutationVariables>(CreateRefundRecordFromWebhookDocument, options);\n }\nexport type CreateRefundRecordFromWebhookMutationHookResult = ReturnType<typeof useCreateRefundRecordFromWebhookMutation>;\nexport type CreateRefundRecordFromWebhookMutationResult = Apollo.MutationResult<Types.CreateRefundRecordFromWebhookMutation>;\nexport type CreateRefundRecordFromWebhookMutationOptions = Apollo.BaseMutationOptions<Types.CreateRefundRecordFromWebhookMutation, Types.CreateRefundRecordFromWebhookMutationVariables>;\nexport const CreateRefundRecordsFromFailedWebhooksDocument = gql`\n mutation CreateRefundRecordsFromFailedWebhooks {\n createRefundRecordsFromFailedWebhooks {\n ...RefundRecordFields\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type CreateRefundRecordsFromFailedWebhooksMutationFn = Apollo.MutationFunction<Types.CreateRefundRecordsFromFailedWebhooksMutation, Types.CreateRefundRecordsFromFailedWebhooksMutationVariables>;\n\n/**\n * __useCreateRefundRecordsFromFailedWebhooksMutation__\n *\n * To run a mutation, you first call `useCreateRefundRecordsFromFailedWebhooksMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateRefundRecordsFromFailedWebhooksMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createRefundRecordsFromFailedWebhooksMutation, { data, loading, error }] = useCreateRefundRecordsFromFailedWebhooksMutation({\n * variables: {\n * },\n * });\n */\nexport function useCreateRefundRecordsFromFailedWebhooksMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateRefundRecordsFromFailedWebhooksMutation, Types.CreateRefundRecordsFromFailedWebhooksMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateRefundRecordsFromFailedWebhooksMutation, Types.CreateRefundRecordsFromFailedWebhooksMutationVariables>(CreateRefundRecordsFromFailedWebhooksDocument, options);\n }\nexport type CreateRefundRecordsFromFailedWebhooksMutationHookResult = ReturnType<typeof useCreateRefundRecordsFromFailedWebhooksMutation>;\nexport type CreateRefundRecordsFromFailedWebhooksMutationResult = Apollo.MutationResult<Types.CreateRefundRecordsFromFailedWebhooksMutation>;\nexport type CreateRefundRecordsFromFailedWebhooksMutationOptions = Apollo.BaseMutationOptions<Types.CreateRefundRecordsFromFailedWebhooksMutation, Types.CreateRefundRecordsFromFailedWebhooksMutationVariables>;\nexport const DeletePaymentMethodDocument = gql`\n mutation DeletePaymentMethod($id: ID!, $billingAccountId: ID!) {\n deletePaymentMethod(id: $id, billingAccountId: $billingAccountId)\n}\n `;\nexport type DeletePaymentMethodMutationFn = Apollo.MutationFunction<Types.DeletePaymentMethodMutation, Types.DeletePaymentMethodMutationVariables>;\n\n/**\n * __useDeletePaymentMethodMutation__\n *\n * To run a mutation, you first call `useDeletePaymentMethodMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeletePaymentMethodMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deletePaymentMethodMutation, { data, loading, error }] = useDeletePaymentMethodMutation({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useDeletePaymentMethodMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeletePaymentMethodMutation, Types.DeletePaymentMethodMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeletePaymentMethodMutation, Types.DeletePaymentMethodMutationVariables>(DeletePaymentMethodDocument, options);\n }\nexport type DeletePaymentMethodMutationHookResult = ReturnType<typeof useDeletePaymentMethodMutation>;\nexport type DeletePaymentMethodMutationResult = Apollo.MutationResult<Types.DeletePaymentMethodMutation>;\nexport type DeletePaymentMethodMutationOptions = Apollo.BaseMutationOptions<Types.DeletePaymentMethodMutation, Types.DeletePaymentMethodMutationVariables>;\nexport const GenerateInvoiceDocument = gql`\n mutation GenerateInvoice($subscriptionId: ID!, $billingAccountId: ID!) {\n generateInvoice(\n subscriptionId: $subscriptionId\n billingAccountId: $billingAccountId\n ) {\n ...InvoiceWithItemsFields\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\nexport type GenerateInvoiceMutationFn = Apollo.MutationFunction<Types.GenerateInvoiceMutation, Types.GenerateInvoiceMutationVariables>;\n\n/**\n * __useGenerateInvoiceMutation__\n *\n * To run a mutation, you first call `useGenerateInvoiceMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useGenerateInvoiceMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [generateInvoiceMutation, { data, loading, error }] = useGenerateInvoiceMutation({\n * variables: {\n * subscriptionId: // value for 'subscriptionId'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGenerateInvoiceMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.GenerateInvoiceMutation, Types.GenerateInvoiceMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.GenerateInvoiceMutation, Types.GenerateInvoiceMutationVariables>(GenerateInvoiceDocument, options);\n }\nexport type GenerateInvoiceMutationHookResult = ReturnType<typeof useGenerateInvoiceMutation>;\nexport type GenerateInvoiceMutationResult = Apollo.MutationResult<Types.GenerateInvoiceMutation>;\nexport type GenerateInvoiceMutationOptions = Apollo.BaseMutationOptions<Types.GenerateInvoiceMutation, Types.GenerateInvoiceMutationVariables>;\nexport const PayInvoiceDocument = gql`\n mutation PayInvoice($invoiceId: ID!, $paymentMethodId: ID!, $billingAccountId: ID!) {\n payInvoice(\n invoiceId: $invoiceId\n paymentMethodId: $paymentMethodId\n billingAccountId: $billingAccountId\n ) {\n ...InvoiceWithItemsFields\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\nexport type PayInvoiceMutationFn = Apollo.MutationFunction<Types.PayInvoiceMutation, Types.PayInvoiceMutationVariables>;\n\n/**\n * __usePayInvoiceMutation__\n *\n * To run a mutation, you first call `usePayInvoiceMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `usePayInvoiceMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [payInvoiceMutation, { data, loading, error }] = usePayInvoiceMutation({\n * variables: {\n * invoiceId: // value for 'invoiceId'\n * paymentMethodId: // value for 'paymentMethodId'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function usePayInvoiceMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.PayInvoiceMutation, Types.PayInvoiceMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.PayInvoiceMutation, Types.PayInvoiceMutationVariables>(PayInvoiceDocument, options);\n }\nexport type PayInvoiceMutationHookResult = ReturnType<typeof usePayInvoiceMutation>;\nexport type PayInvoiceMutationResult = Apollo.MutationResult<Types.PayInvoiceMutation>;\nexport type PayInvoiceMutationOptions = Apollo.BaseMutationOptions<Types.PayInvoiceMutation, Types.PayInvoiceMutationVariables>;\nexport const ProcessRefundDocument = gql`\n mutation ProcessRefund($id: ID!, $notes: String) {\n processRefund(id: $id, notes: $notes) {\n success\n refundRecord {\n ...RefundRecordFields\n }\n gatewayRefundId\n error\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type ProcessRefundMutationFn = Apollo.MutationFunction<Types.ProcessRefundMutation, Types.ProcessRefundMutationVariables>;\n\n/**\n * __useProcessRefundMutation__\n *\n * To run a mutation, you first call `useProcessRefundMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useProcessRefundMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [processRefundMutation, { data, loading, error }] = useProcessRefundMutation({\n * variables: {\n * id: // value for 'id'\n * notes: // value for 'notes'\n * },\n * });\n */\nexport function useProcessRefundMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ProcessRefundMutation, Types.ProcessRefundMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ProcessRefundMutation, Types.ProcessRefundMutationVariables>(ProcessRefundDocument, options);\n }\nexport type ProcessRefundMutationHookResult = ReturnType<typeof useProcessRefundMutation>;\nexport type ProcessRefundMutationResult = Apollo.MutationResult<Types.ProcessRefundMutation>;\nexport type ProcessRefundMutationOptions = Apollo.BaseMutationOptions<Types.ProcessRefundMutation, Types.ProcessRefundMutationVariables>;\nexport const RetryRefundDocument = gql`\n mutation RetryRefund($id: ID!) {\n retryRefund(id: $id) {\n success\n refundRecord {\n ...RefundRecordFields\n }\n gatewayRefundId\n error\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type RetryRefundMutationFn = Apollo.MutationFunction<Types.RetryRefundMutation, Types.RetryRefundMutationVariables>;\n\n/**\n * __useRetryRefundMutation__\n *\n * To run a mutation, you first call `useRetryRefundMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useRetryRefundMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [retryRefundMutation, { data, loading, error }] = useRetryRefundMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useRetryRefundMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RetryRefundMutation, Types.RetryRefundMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.RetryRefundMutation, Types.RetryRefundMutationVariables>(RetryRefundDocument, options);\n }\nexport type RetryRefundMutationHookResult = ReturnType<typeof useRetryRefundMutation>;\nexport type RetryRefundMutationResult = Apollo.MutationResult<Types.RetryRefundMutation>;\nexport type RetryRefundMutationOptions = Apollo.BaseMutationOptions<Types.RetryRefundMutation, Types.RetryRefundMutationVariables>;\nexport const SkipRefundDocument = gql`\n mutation SkipRefund($id: ID!, $reason: String!) {\n skipRefund(id: $id, reason: $reason) {\n ...RefundRecordFields\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\nexport type SkipRefundMutationFn = Apollo.MutationFunction<Types.SkipRefundMutation, Types.SkipRefundMutationVariables>;\n\n/**\n * __useSkipRefundMutation__\n *\n * To run a mutation, you first call `useSkipRefundMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSkipRefundMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [skipRefundMutation, { data, loading, error }] = useSkipRefundMutation({\n * variables: {\n * id: // value for 'id'\n * reason: // value for 'reason'\n * },\n * });\n */\nexport function useSkipRefundMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SkipRefundMutation, Types.SkipRefundMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SkipRefundMutation, Types.SkipRefundMutationVariables>(SkipRefundDocument, options);\n }\nexport type SkipRefundMutationHookResult = ReturnType<typeof useSkipRefundMutation>;\nexport type SkipRefundMutationResult = Apollo.MutationResult<Types.SkipRefundMutation>;\nexport type SkipRefundMutationOptions = Apollo.BaseMutationOptions<Types.SkipRefundMutation, Types.SkipRefundMutationVariables>;\nexport const UpdatePaymentMethodDocument = gql`\n mutation UpdatePaymentMethod($id: ID!, $isDefault: Boolean!, $billingAccountId: ID!) {\n updatePaymentMethod(\n id: $id\n isDefault: $isDefault\n billingAccountId: $billingAccountId\n ) {\n ...PaymentMethodFields\n }\n}\n ${PaymentMethodFieldsFragmentDoc}`;\nexport type UpdatePaymentMethodMutationFn = Apollo.MutationFunction<Types.UpdatePaymentMethodMutation, Types.UpdatePaymentMethodMutationVariables>;\n\n/**\n * __useUpdatePaymentMethodMutation__\n *\n * To run a mutation, you first call `useUpdatePaymentMethodMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdatePaymentMethodMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updatePaymentMethodMutation, { data, loading, error }] = useUpdatePaymentMethodMutation({\n * variables: {\n * id: // value for 'id'\n * isDefault: // value for 'isDefault'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useUpdatePaymentMethodMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdatePaymentMethodMutation, Types.UpdatePaymentMethodMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdatePaymentMethodMutation, Types.UpdatePaymentMethodMutationVariables>(UpdatePaymentMethodDocument, options);\n }\nexport type UpdatePaymentMethodMutationHookResult = ReturnType<typeof useUpdatePaymentMethodMutation>;\nexport type UpdatePaymentMethodMutationResult = Apollo.MutationResult<Types.UpdatePaymentMethodMutation>;\nexport type UpdatePaymentMethodMutationOptions = Apollo.BaseMutationOptions<Types.UpdatePaymentMethodMutation, Types.UpdatePaymentMethodMutationVariables>;\nexport const VoidInvoiceDocument = gql`\n mutation VoidInvoice($invoiceId: ID!, $billingAccountId: ID!) {\n voidInvoice(invoiceId: $invoiceId, billingAccountId: $billingAccountId) {\n ...InvoiceFields\n }\n}\n ${InvoiceFieldsFragmentDoc}`;\nexport type VoidInvoiceMutationFn = Apollo.MutationFunction<Types.VoidInvoiceMutation, Types.VoidInvoiceMutationVariables>;\n\n/**\n * __useVoidInvoiceMutation__\n *\n * To run a mutation, you first call `useVoidInvoiceMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useVoidInvoiceMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [voidInvoiceMutation, { data, loading, error }] = useVoidInvoiceMutation({\n * variables: {\n * invoiceId: // value for 'invoiceId'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useVoidInvoiceMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.VoidInvoiceMutation, Types.VoidInvoiceMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.VoidInvoiceMutation, Types.VoidInvoiceMutationVariables>(VoidInvoiceDocument, options);\n }\nexport type VoidInvoiceMutationHookResult = ReturnType<typeof useVoidInvoiceMutation>;\nexport type VoidInvoiceMutationResult = Apollo.MutationResult<Types.VoidInvoiceMutation>;\nexport type VoidInvoiceMutationOptions = Apollo.BaseMutationOptions<Types.VoidInvoiceMutation, Types.VoidInvoiceMutationVariables>;\nexport const GetChargeDocument = gql`\n query GetCharge($id: ID!, $billingAccountId: ID!) {\n getCharge(id: $id, billingAccountId: $billingAccountId) {\n ...ChargeFields\n }\n}\n ${ChargeFieldsFragmentDoc}`;\n\n/**\n * __useGetChargeQuery__\n *\n * To run a query within a React component, call `useGetChargeQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetChargeQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetChargeQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetChargeQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetChargeQuery, Types.GetChargeQueryVariables> & ({ variables: Types.GetChargeQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetChargeQuery, Types.GetChargeQueryVariables>(GetChargeDocument, options);\n }\nexport function useGetChargeLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetChargeQuery, Types.GetChargeQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetChargeQuery, Types.GetChargeQueryVariables>(GetChargeDocument, options);\n }\n// @ts-ignore\nexport function useGetChargeSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargeQuery, Types.GetChargeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetChargeQuery, Types.GetChargeQueryVariables>;\nexport function useGetChargeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargeQuery, Types.GetChargeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetChargeQuery | undefined, Types.GetChargeQueryVariables>;\nexport function useGetChargeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargeQuery, Types.GetChargeQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetChargeQuery, Types.GetChargeQueryVariables>(GetChargeDocument, options);\n }\nexport type GetChargeQueryHookResult = ReturnType<typeof useGetChargeQuery>;\nexport type GetChargeLazyQueryHookResult = ReturnType<typeof useGetChargeLazyQuery>;\nexport type GetChargeSuspenseQueryHookResult = ReturnType<typeof useGetChargeSuspenseQuery>;\nexport type GetChargeQueryResult = Apollo.QueryResult<Types.GetChargeQuery, Types.GetChargeQueryVariables>;\nexport const GetChargesDocument = gql`\n query GetCharges($status: ChargeStatus) {\n getCharges(status: $status) {\n ...ChargeFields\n }\n}\n ${ChargeFieldsFragmentDoc}`;\n\n/**\n * __useGetChargesQuery__\n *\n * To run a query within a React component, call `useGetChargesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetChargesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetChargesQuery({\n * variables: {\n * status: // value for 'status'\n * },\n * });\n */\nexport function useGetChargesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetChargesQuery, Types.GetChargesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetChargesQuery, Types.GetChargesQueryVariables>(GetChargesDocument, options);\n }\nexport function useGetChargesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetChargesQuery, Types.GetChargesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetChargesQuery, Types.GetChargesQueryVariables>(GetChargesDocument, options);\n }\n// @ts-ignore\nexport function useGetChargesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargesQuery, Types.GetChargesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetChargesQuery, Types.GetChargesQueryVariables>;\nexport function useGetChargesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargesQuery, Types.GetChargesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetChargesQuery | undefined, Types.GetChargesQueryVariables>;\nexport function useGetChargesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetChargesQuery, Types.GetChargesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetChargesQuery, Types.GetChargesQueryVariables>(GetChargesDocument, options);\n }\nexport type GetChargesQueryHookResult = ReturnType<typeof useGetChargesQuery>;\nexport type GetChargesLazyQueryHookResult = ReturnType<typeof useGetChargesLazyQuery>;\nexport type GetChargesSuspenseQueryHookResult = ReturnType<typeof useGetChargesSuspenseQuery>;\nexport type GetChargesQueryResult = Apollo.QueryResult<Types.GetChargesQuery, Types.GetChargesQueryVariables>;\nexport const GetDefaultPaymentMethodDocument = gql`\n query GetDefaultPaymentMethod($billingAccountId: ID!) {\n getDefaultPaymentMethod(billingAccountId: $billingAccountId) {\n ...PaymentMethodFields\n }\n}\n ${PaymentMethodFieldsFragmentDoc}`;\n\n/**\n * __useGetDefaultPaymentMethodQuery__\n *\n * To run a query within a React component, call `useGetDefaultPaymentMethodQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDefaultPaymentMethodQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDefaultPaymentMethodQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetDefaultPaymentMethodQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables> & ({ variables: Types.GetDefaultPaymentMethodQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>(GetDefaultPaymentMethodDocument, options);\n }\nexport function useGetDefaultPaymentMethodLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>(GetDefaultPaymentMethodDocument, options);\n }\n// @ts-ignore\nexport function useGetDefaultPaymentMethodSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>;\nexport function useGetDefaultPaymentMethodSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultPaymentMethodQuery | undefined, Types.GetDefaultPaymentMethodQueryVariables>;\nexport function useGetDefaultPaymentMethodSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>(GetDefaultPaymentMethodDocument, options);\n }\nexport type GetDefaultPaymentMethodQueryHookResult = ReturnType<typeof useGetDefaultPaymentMethodQuery>;\nexport type GetDefaultPaymentMethodLazyQueryHookResult = ReturnType<typeof useGetDefaultPaymentMethodLazyQuery>;\nexport type GetDefaultPaymentMethodSuspenseQueryHookResult = ReturnType<typeof useGetDefaultPaymentMethodSuspenseQuery>;\nexport type GetDefaultPaymentMethodQueryResult = Apollo.QueryResult<Types.GetDefaultPaymentMethodQuery, Types.GetDefaultPaymentMethodQueryVariables>;\nexport const GetInvoiceDocument = gql`\n query GetInvoice($id: ID!, $billingAccountId: ID!) {\n getInvoice(id: $id, billingAccountId: $billingAccountId) {\n ...InvoiceWithItemsFields\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\n\n/**\n * __useGetInvoiceQuery__\n *\n * To run a query within a React component, call `useGetInvoiceQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetInvoiceQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetInvoiceQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetInvoiceQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables> & ({ variables: Types.GetInvoiceQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>(GetInvoiceDocument, options);\n }\nexport function useGetInvoiceLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>(GetInvoiceDocument, options);\n }\n// @ts-ignore\nexport function useGetInvoiceSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>;\nexport function useGetInvoiceSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoiceQuery | undefined, Types.GetInvoiceQueryVariables>;\nexport function useGetInvoiceSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>(GetInvoiceDocument, options);\n }\nexport type GetInvoiceQueryHookResult = ReturnType<typeof useGetInvoiceQuery>;\nexport type GetInvoiceLazyQueryHookResult = ReturnType<typeof useGetInvoiceLazyQuery>;\nexport type GetInvoiceSuspenseQueryHookResult = ReturnType<typeof useGetInvoiceSuspenseQuery>;\nexport type GetInvoiceQueryResult = Apollo.QueryResult<Types.GetInvoiceQuery, Types.GetInvoiceQueryVariables>;\nexport const GetInvoiceByNumberDocument = gql`\n query GetInvoiceByNumber($invoiceNumber: String!, $billingAccountId: ID!) {\n getInvoiceByNumber(\n invoiceNumber: $invoiceNumber\n billingAccountId: $billingAccountId\n ) {\n ...InvoiceWithItemsFields\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\n\n/**\n * __useGetInvoiceByNumberQuery__\n *\n * To run a query within a React component, call `useGetInvoiceByNumberQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetInvoiceByNumberQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetInvoiceByNumberQuery({\n * variables: {\n * invoiceNumber: // value for 'invoiceNumber'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetInvoiceByNumberQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables> & ({ variables: Types.GetInvoiceByNumberQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>(GetInvoiceByNumberDocument, options);\n }\nexport function useGetInvoiceByNumberLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>(GetInvoiceByNumberDocument, options);\n }\n// @ts-ignore\nexport function useGetInvoiceByNumberSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>;\nexport function useGetInvoiceByNumberSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoiceByNumberQuery | undefined, Types.GetInvoiceByNumberQueryVariables>;\nexport function useGetInvoiceByNumberSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>(GetInvoiceByNumberDocument, options);\n }\nexport type GetInvoiceByNumberQueryHookResult = ReturnType<typeof useGetInvoiceByNumberQuery>;\nexport type GetInvoiceByNumberLazyQueryHookResult = ReturnType<typeof useGetInvoiceByNumberLazyQuery>;\nexport type GetInvoiceByNumberSuspenseQueryHookResult = ReturnType<typeof useGetInvoiceByNumberSuspenseQuery>;\nexport type GetInvoiceByNumberQueryResult = Apollo.QueryResult<Types.GetInvoiceByNumberQuery, Types.GetInvoiceByNumberQueryVariables>;\nexport const GetInvoicesDocument = gql`\n query GetInvoices($status: InvoiceStatus, $billingAccountId: ID) {\n getInvoices(status: $status, billingAccountId: $billingAccountId) {\n ...InvoiceWithItemsFields\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\n\n/**\n * __useGetInvoicesQuery__\n *\n * To run a query within a React component, call `useGetInvoicesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetInvoicesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetInvoicesQuery({\n * variables: {\n * status: // value for 'status'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetInvoicesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>(GetInvoicesDocument, options);\n }\nexport function useGetInvoicesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>(GetInvoicesDocument, options);\n }\n// @ts-ignore\nexport function useGetInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>;\nexport function useGetInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetInvoicesQuery | undefined, Types.GetInvoicesQueryVariables>;\nexport function useGetInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>(GetInvoicesDocument, options);\n }\nexport type GetInvoicesQueryHookResult = ReturnType<typeof useGetInvoicesQuery>;\nexport type GetInvoicesLazyQueryHookResult = ReturnType<typeof useGetInvoicesLazyQuery>;\nexport type GetInvoicesSuspenseQueryHookResult = ReturnType<typeof useGetInvoicesSuspenseQuery>;\nexport type GetInvoicesQueryResult = Apollo.QueryResult<Types.GetInvoicesQuery, Types.GetInvoicesQueryVariables>;\nexport const GetPaginatedInvoicesDocument = gql`\n query GetPaginatedInvoices($status: InvoiceStatus, $billingAccountId: ID, $page: Int, $pageSize: Int) {\n getPaginatedInvoices(\n status: $status\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n ) {\n invoices {\n ...InvoiceWithItemsFields\n }\n totalCount\n hasMore\n page\n pageSize\n totalPages\n }\n}\n ${InvoiceWithItemsFieldsFragmentDoc}`;\n\n/**\n * __useGetPaginatedInvoicesQuery__\n *\n * To run a query within a React component, call `useGetPaginatedInvoicesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaginatedInvoicesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaginatedInvoicesQuery({\n * variables: {\n * status: // value for 'status'\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetPaginatedInvoicesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>(GetPaginatedInvoicesDocument, options);\n }\nexport function useGetPaginatedInvoicesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>(GetPaginatedInvoicesDocument, options);\n }\n// @ts-ignore\nexport function useGetPaginatedInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>;\nexport function useGetPaginatedInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaginatedInvoicesQuery | undefined, Types.GetPaginatedInvoicesQueryVariables>;\nexport function useGetPaginatedInvoicesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>(GetPaginatedInvoicesDocument, options);\n }\nexport type GetPaginatedInvoicesQueryHookResult = ReturnType<typeof useGetPaginatedInvoicesQuery>;\nexport type GetPaginatedInvoicesLazyQueryHookResult = ReturnType<typeof useGetPaginatedInvoicesLazyQuery>;\nexport type GetPaginatedInvoicesSuspenseQueryHookResult = ReturnType<typeof useGetPaginatedInvoicesSuspenseQuery>;\nexport type GetPaginatedInvoicesQueryResult = Apollo.QueryResult<Types.GetPaginatedInvoicesQuery, Types.GetPaginatedInvoicesQueryVariables>;\nexport const GetPaymentDocument = gql`\n query GetPayment($id: ID!, $billingAccountId: ID!) {\n getPayment(id: $id, billingAccountId: $billingAccountId) {\n ...PaymentFields\n invoice {\n id\n invoiceNumber\n total\n items {\n ...InvoiceItemFields\n }\n }\n }\n}\n ${PaymentFieldsFragmentDoc}\n${InvoiceItemFieldsFragmentDoc}`;\n\n/**\n * __useGetPaymentQuery__\n *\n * To run a query within a React component, call `useGetPaymentQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetPaymentQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaymentQuery, Types.GetPaymentQueryVariables> & ({ variables: Types.GetPaymentQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>(GetPaymentDocument, options);\n }\nexport function useGetPaymentLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>(GetPaymentDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>;\nexport function useGetPaymentSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentQuery | undefined, Types.GetPaymentQueryVariables>;\nexport function useGetPaymentSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>(GetPaymentDocument, options);\n }\nexport type GetPaymentQueryHookResult = ReturnType<typeof useGetPaymentQuery>;\nexport type GetPaymentLazyQueryHookResult = ReturnType<typeof useGetPaymentLazyQuery>;\nexport type GetPaymentSuspenseQueryHookResult = ReturnType<typeof useGetPaymentSuspenseQuery>;\nexport type GetPaymentQueryResult = Apollo.QueryResult<Types.GetPaymentQuery, Types.GetPaymentQueryVariables>;\nexport const GetPaymentMethodsDocument = gql`\n query GetPaymentMethods($billingAccountId: ID!) {\n getPaymentMethods(billingAccountId: $billingAccountId) {\n ...PaymentMethodFields\n }\n}\n ${PaymentMethodFieldsFragmentDoc}`;\n\n/**\n * __useGetPaymentMethodsQuery__\n *\n * To run a query within a React component, call `useGetPaymentMethodsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentMethodsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentMethodsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetPaymentMethodsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables> & ({ variables: Types.GetPaymentMethodsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>(GetPaymentMethodsDocument, options);\n }\nexport function useGetPaymentMethodsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>(GetPaymentMethodsDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentMethodsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>;\nexport function useGetPaymentMethodsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsQuery | undefined, Types.GetPaymentMethodsQueryVariables>;\nexport function useGetPaymentMethodsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>(GetPaymentMethodsDocument, options);\n }\nexport type GetPaymentMethodsQueryHookResult = ReturnType<typeof useGetPaymentMethodsQuery>;\nexport type GetPaymentMethodsLazyQueryHookResult = ReturnType<typeof useGetPaymentMethodsLazyQuery>;\nexport type GetPaymentMethodsSuspenseQueryHookResult = ReturnType<typeof useGetPaymentMethodsSuspenseQuery>;\nexport type GetPaymentMethodsQueryResult = Apollo.QueryResult<Types.GetPaymentMethodsQuery, Types.GetPaymentMethodsQueryVariables>;\nexport const GetPaymentsDocument = gql`\n query GetPayments($status: PaymentStatus) {\n getPayments(status: $status) {\n ...PaymentFields\n invoice {\n id\n invoiceNumber\n total\n }\n }\n}\n ${PaymentFieldsFragmentDoc}`;\n\n/**\n * __useGetPaymentsQuery__\n *\n * To run a query within a React component, call `useGetPaymentsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentsQuery({\n * variables: {\n * status: // value for 'status'\n * },\n * });\n */\nexport function useGetPaymentsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>(GetPaymentsDocument, options);\n }\nexport function useGetPaymentsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>(GetPaymentsDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>;\nexport function useGetPaymentsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentsQuery | undefined, Types.GetPaymentsQueryVariables>;\nexport function useGetPaymentsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>(GetPaymentsDocument, options);\n }\nexport type GetPaymentsQueryHookResult = ReturnType<typeof useGetPaymentsQuery>;\nexport type GetPaymentsLazyQueryHookResult = ReturnType<typeof useGetPaymentsLazyQuery>;\nexport type GetPaymentsSuspenseQueryHookResult = ReturnType<typeof useGetPaymentsSuspenseQuery>;\nexport type GetPaymentsQueryResult = Apollo.QueryResult<Types.GetPaymentsQuery, Types.GetPaymentsQueryVariables>;\nexport const GetPendingRefundsDocument = gql`\n query GetPendingRefunds($page: Int, $pageSize: Int) {\n getPendingRefunds(page: $page, pageSize: $pageSize) {\n records {\n ...RefundRecordFields\n }\n totalCount\n hasMore\n page\n pageSize\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\n\n/**\n * __useGetPendingRefundsQuery__\n *\n * To run a query within a React component, call `useGetPendingRefundsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPendingRefundsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPendingRefundsQuery({\n * variables: {\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetPendingRefundsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>(GetPendingRefundsDocument, options);\n }\nexport function useGetPendingRefundsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>(GetPendingRefundsDocument, options);\n }\n// @ts-ignore\nexport function useGetPendingRefundsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>;\nexport function useGetPendingRefundsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPendingRefundsQuery | undefined, Types.GetPendingRefundsQueryVariables>;\nexport function useGetPendingRefundsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>(GetPendingRefundsDocument, options);\n }\nexport type GetPendingRefundsQueryHookResult = ReturnType<typeof useGetPendingRefundsQuery>;\nexport type GetPendingRefundsLazyQueryHookResult = ReturnType<typeof useGetPendingRefundsLazyQuery>;\nexport type GetPendingRefundsSuspenseQueryHookResult = ReturnType<typeof useGetPendingRefundsSuspenseQuery>;\nexport type GetPendingRefundsQueryResult = Apollo.QueryResult<Types.GetPendingRefundsQuery, Types.GetPendingRefundsQueryVariables>;\nexport const GetRefundRecordDocument = gql`\n query GetRefundRecord($id: ID!) {\n getRefundRecord(id: $id) {\n ...RefundRecordWithRelationsFields\n }\n}\n ${RefundRecordWithRelationsFieldsFragmentDoc}`;\n\n/**\n * __useGetRefundRecordQuery__\n *\n * To run a query within a React component, call `useGetRefundRecordQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetRefundRecordQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetRefundRecordQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetRefundRecordQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables> & ({ variables: Types.GetRefundRecordQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>(GetRefundRecordDocument, options);\n }\nexport function useGetRefundRecordLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>(GetRefundRecordDocument, options);\n }\n// @ts-ignore\nexport function useGetRefundRecordSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>;\nexport function useGetRefundRecordSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundRecordQuery | undefined, Types.GetRefundRecordQueryVariables>;\nexport function useGetRefundRecordSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>(GetRefundRecordDocument, options);\n }\nexport type GetRefundRecordQueryHookResult = ReturnType<typeof useGetRefundRecordQuery>;\nexport type GetRefundRecordLazyQueryHookResult = ReturnType<typeof useGetRefundRecordLazyQuery>;\nexport type GetRefundRecordSuspenseQueryHookResult = ReturnType<typeof useGetRefundRecordSuspenseQuery>;\nexport type GetRefundRecordQueryResult = Apollo.QueryResult<Types.GetRefundRecordQuery, Types.GetRefundRecordQueryVariables>;\nexport const GetRefundRecordsDocument = gql`\n query GetRefundRecords($status: RefundRecordStatus, $source: RefundSource, $provider: String, $orgIdFilter: String, $billingAccountId: String, $fromDate: DateTime, $toDate: DateTime, $page: Int, $pageSize: Int) {\n getRefundRecords(\n status: $status\n source: $source\n provider: $provider\n orgIdFilter: $orgIdFilter\n billingAccountId: $billingAccountId\n fromDate: $fromDate\n toDate: $toDate\n page: $page\n pageSize: $pageSize\n ) {\n records {\n ...RefundRecordFields\n }\n totalCount\n hasMore\n page\n pageSize\n }\n}\n ${RefundRecordFieldsFragmentDoc}`;\n\n/**\n * __useGetRefundRecordsQuery__\n *\n * To run a query within a React component, call `useGetRefundRecordsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetRefundRecordsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetRefundRecordsQuery({\n * variables: {\n * status: // value for 'status'\n * source: // value for 'source'\n * provider: // value for 'provider'\n * orgIdFilter: // value for 'orgIdFilter'\n * billingAccountId: // value for 'billingAccountId'\n * fromDate: // value for 'fromDate'\n * toDate: // value for 'toDate'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetRefundRecordsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>(GetRefundRecordsDocument, options);\n }\nexport function useGetRefundRecordsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>(GetRefundRecordsDocument, options);\n }\n// @ts-ignore\nexport function useGetRefundRecordsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>;\nexport function useGetRefundRecordsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundRecordsQuery | undefined, Types.GetRefundRecordsQueryVariables>;\nexport function useGetRefundRecordsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>(GetRefundRecordsDocument, options);\n }\nexport type GetRefundRecordsQueryHookResult = ReturnType<typeof useGetRefundRecordsQuery>;\nexport type GetRefundRecordsLazyQueryHookResult = ReturnType<typeof useGetRefundRecordsLazyQuery>;\nexport type GetRefundRecordsSuspenseQueryHookResult = ReturnType<typeof useGetRefundRecordsSuspenseQuery>;\nexport type GetRefundRecordsQueryResult = Apollo.QueryResult<Types.GetRefundRecordsQuery, Types.GetRefundRecordsQueryVariables>;\nexport const GetRefundStatsDocument = gql`\n query GetRefundStats {\n getRefundStats {\n pending\n processing\n completed\n failed\n skipped\n totalPendingAmount\n totalCompletedAmount\n }\n}\n `;\n\n/**\n * __useGetRefundStatsQuery__\n *\n * To run a query within a React component, call `useGetRefundStatsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetRefundStatsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetRefundStatsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetRefundStatsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>(GetRefundStatsDocument, options);\n }\nexport function useGetRefundStatsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>(GetRefundStatsDocument, options);\n }\n// @ts-ignore\nexport function useGetRefundStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>;\nexport function useGetRefundStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRefundStatsQuery | undefined, Types.GetRefundStatsQueryVariables>;\nexport function useGetRefundStatsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>(GetRefundStatsDocument, options);\n }\nexport type GetRefundStatsQueryHookResult = ReturnType<typeof useGetRefundStatsQuery>;\nexport type GetRefundStatsLazyQueryHookResult = ReturnType<typeof useGetRefundStatsLazyQuery>;\nexport type GetRefundStatsSuspenseQueryHookResult = ReturnType<typeof useGetRefundStatsSuspenseQuery>;\nexport type GetRefundStatsQueryResult = Apollo.QueryResult<Types.GetRefundStatsQuery, Types.GetRefundStatsQueryVariables>;\nexport const GetTransactionDocument = gql`\n query GetTransaction($id: ID!, $billingAccountId: ID!) {\n getTransaction(id: $id, billingAccountId: $billingAccountId) {\n id\n billingAccountId\n amount\n currency\n status\n type\n description\n razorpayPaymentId\n stripePaymentId\n metadata\n createdAt\n }\n}\n `;\n\n/**\n * __useGetTransactionQuery__\n *\n * To run a query within a React component, call `useGetTransactionQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetTransactionQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetTransactionQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetTransactionQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetTransactionQuery, Types.GetTransactionQueryVariables> & ({ variables: Types.GetTransactionQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>(GetTransactionDocument, options);\n }\nexport function useGetTransactionLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>(GetTransactionDocument, options);\n }\n// @ts-ignore\nexport function useGetTransactionSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>;\nexport function useGetTransactionSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTransactionQuery | undefined, Types.GetTransactionQueryVariables>;\nexport function useGetTransactionSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>(GetTransactionDocument, options);\n }\nexport type GetTransactionQueryHookResult = ReturnType<typeof useGetTransactionQuery>;\nexport type GetTransactionLazyQueryHookResult = ReturnType<typeof useGetTransactionLazyQuery>;\nexport type GetTransactionSuspenseQueryHookResult = ReturnType<typeof useGetTransactionSuspenseQuery>;\nexport type GetTransactionQueryResult = Apollo.QueryResult<Types.GetTransactionQuery, Types.GetTransactionQueryVariables>;\nexport const GetTransactionsByBillingAccountDocument = gql`\n query GetTransactionsByBillingAccount($billingAccountId: ID!, $limit: Int, $offset: Int) {\n getTransactionsByBillingAccount(\n billingAccountId: $billingAccountId\n limit: $limit\n offset: $offset\n ) {\n id\n name\n email\n billingEmail\n currency\n creditAmount\n isActive\n taxId\n createdAt\n transactions {\n id\n billingAccountId\n amount\n currency\n status\n type\n description\n razorpayPaymentId\n stripePaymentId\n metadata\n createdAt\n updatedAt\n }\n totalCount\n hasMore\n page\n pageSize\n }\n}\n `;\n\n/**\n * __useGetTransactionsByBillingAccountQuery__\n *\n * To run a query within a React component, call `useGetTransactionsByBillingAccountQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetTransactionsByBillingAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetTransactionsByBillingAccountQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * limit: // value for 'limit'\n * offset: // value for 'offset'\n * },\n * });\n */\nexport function useGetTransactionsByBillingAccountQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables> & ({ variables: Types.GetTransactionsByBillingAccountQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>(GetTransactionsByBillingAccountDocument, options);\n }\nexport function useGetTransactionsByBillingAccountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>(GetTransactionsByBillingAccountDocument, options);\n }\n// @ts-ignore\nexport function useGetTransactionsByBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>;\nexport function useGetTransactionsByBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetTransactionsByBillingAccountQuery | undefined, Types.GetTransactionsByBillingAccountQueryVariables>;\nexport function useGetTransactionsByBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>(GetTransactionsByBillingAccountDocument, options);\n }\nexport type GetTransactionsByBillingAccountQueryHookResult = ReturnType<typeof useGetTransactionsByBillingAccountQuery>;\nexport type GetTransactionsByBillingAccountLazyQueryHookResult = ReturnType<typeof useGetTransactionsByBillingAccountLazyQuery>;\nexport type GetTransactionsByBillingAccountSuspenseQueryHookResult = ReturnType<typeof useGetTransactionsByBillingAccountSuspenseQuery>;\nexport type GetTransactionsByBillingAccountQueryResult = Apollo.QueryResult<Types.GetTransactionsByBillingAccountQuery, Types.GetTransactionsByBillingAccountQueryVariables>;\nexport const GetUnprocessedFailedWebhooksDocument = gql`\n query GetUnprocessedFailedWebhooks {\n getUnprocessedFailedWebhooks {\n id\n event\n provider\n payload\n processed\n error\n createdAt\n }\n}\n `;\n\n/**\n * __useGetUnprocessedFailedWebhooksQuery__\n *\n * To run a query within a React component, call `useGetUnprocessedFailedWebhooksQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetUnprocessedFailedWebhooksQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetUnprocessedFailedWebhooksQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetUnprocessedFailedWebhooksQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>(GetUnprocessedFailedWebhooksDocument, options);\n }\nexport function useGetUnprocessedFailedWebhooksLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>(GetUnprocessedFailedWebhooksDocument, options);\n }\n// @ts-ignore\nexport function useGetUnprocessedFailedWebhooksSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>;\nexport function useGetUnprocessedFailedWebhooksSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUnprocessedFailedWebhooksQuery | undefined, Types.GetUnprocessedFailedWebhooksQueryVariables>;\nexport function useGetUnprocessedFailedWebhooksSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>(GetUnprocessedFailedWebhooksDocument, options);\n }\nexport type GetUnprocessedFailedWebhooksQueryHookResult = ReturnType<typeof useGetUnprocessedFailedWebhooksQuery>;\nexport type GetUnprocessedFailedWebhooksLazyQueryHookResult = ReturnType<typeof useGetUnprocessedFailedWebhooksLazyQuery>;\nexport type GetUnprocessedFailedWebhooksSuspenseQueryHookResult = ReturnType<typeof useGetUnprocessedFailedWebhooksSuspenseQuery>;\nexport type GetUnprocessedFailedWebhooksQueryResult = Apollo.QueryResult<Types.GetUnprocessedFailedWebhooksQuery, Types.GetUnprocessedFailedWebhooksQueryVariables>;\nexport const InitiatePaymentCheckoutDocument = gql`\n mutation InitiatePaymentCheckout($input: InitiatePaymentInput!) {\n initiatePayment(input: $input) {\n success\n provider\n paymentId\n clientSecret\n orderId\n razorpayKeyId\n razorpayCustomerId\n subtotal\n taxAmount\n taxRate\n total\n taxType\n jurisdiction\n taxBreakdown\n currency\n requiresAction\n paymentComplete\n prefillName\n prefillEmail\n prefillContact\n error\n }\n}\n `;\nexport type InitiatePaymentCheckoutMutationFn = Apollo.MutationFunction<Types.InitiatePaymentCheckoutMutation, Types.InitiatePaymentCheckoutMutationVariables>;\n\n/**\n * __useInitiatePaymentCheckoutMutation__\n *\n * To run a mutation, you first call `useInitiatePaymentCheckoutMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useInitiatePaymentCheckoutMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [initiatePaymentCheckoutMutation, { data, loading, error }] = useInitiatePaymentCheckoutMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useInitiatePaymentCheckoutMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.InitiatePaymentCheckoutMutation, Types.InitiatePaymentCheckoutMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.InitiatePaymentCheckoutMutation, Types.InitiatePaymentCheckoutMutationVariables>(InitiatePaymentCheckoutDocument, options);\n }\nexport type InitiatePaymentCheckoutMutationHookResult = ReturnType<typeof useInitiatePaymentCheckoutMutation>;\nexport type InitiatePaymentCheckoutMutationResult = Apollo.MutationResult<Types.InitiatePaymentCheckoutMutation>;\nexport type InitiatePaymentCheckoutMutationOptions = Apollo.BaseMutationOptions<Types.InitiatePaymentCheckoutMutation, Types.InitiatePaymentCheckoutMutationVariables>;\nexport const SpendCreditsCheckoutDocument = gql`\n mutation SpendCreditsCheckout($input: SpendCreditsInput!) {\n spendCredits(input: $input) {\n creditTransactionID\n }\n}\n `;\nexport type SpendCreditsCheckoutMutationFn = Apollo.MutationFunction<Types.SpendCreditsCheckoutMutation, Types.SpendCreditsCheckoutMutationVariables>;\n\n/**\n * __useSpendCreditsCheckoutMutation__\n *\n * To run a mutation, you first call `useSpendCreditsCheckoutMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSpendCreditsCheckoutMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [spendCreditsCheckoutMutation, { data, loading, error }] = useSpendCreditsCheckoutMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useSpendCreditsCheckoutMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SpendCreditsCheckoutMutation, Types.SpendCreditsCheckoutMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SpendCreditsCheckoutMutation, Types.SpendCreditsCheckoutMutationVariables>(SpendCreditsCheckoutDocument, options);\n }\nexport type SpendCreditsCheckoutMutationHookResult = ReturnType<typeof useSpendCreditsCheckoutMutation>;\nexport type SpendCreditsCheckoutMutationResult = Apollo.MutationResult<Types.SpendCreditsCheckoutMutation>;\nexport type SpendCreditsCheckoutMutationOptions = Apollo.BaseMutationOptions<Types.SpendCreditsCheckoutMutation, Types.SpendCreditsCheckoutMutationVariables>;\nexport const CalculateTaxDocument = gql`\n query CalculateTax($input: CalculateTaxInput!) {\n calculateTax(input: $input) {\n subtotal\n taxAmount\n taxRate\n total\n taxType\n jurisdiction\n taxBreakdown\n }\n}\n `;\n\n/**\n * __useCalculateTaxQuery__\n *\n * To run a query within a React component, call `useCalculateTaxQuery` and pass it any options that fit your needs.\n * When your component renders, `useCalculateTaxQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCalculateTaxQuery({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCalculateTaxQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables> & ({ variables: Types.CalculateTaxQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>(CalculateTaxDocument, options);\n }\nexport function useCalculateTaxLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>(CalculateTaxDocument, options);\n }\n// @ts-ignore\nexport function useCalculateTaxSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>;\nexport function useCalculateTaxSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CalculateTaxQuery | undefined, Types.CalculateTaxQueryVariables>;\nexport function useCalculateTaxSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>(CalculateTaxDocument, options);\n }\nexport type CalculateTaxQueryHookResult = ReturnType<typeof useCalculateTaxQuery>;\nexport type CalculateTaxLazyQueryHookResult = ReturnType<typeof useCalculateTaxLazyQuery>;\nexport type CalculateTaxSuspenseQueryHookResult = ReturnType<typeof useCalculateTaxSuspenseQuery>;\nexport type CalculateTaxQueryResult = Apollo.QueryResult<Types.CalculateTaxQuery, Types.CalculateTaxQueryVariables>;\nexport const ConvertCurrencyDocument = gql`\n query ConvertCurrency($amount: Float!, $toCurrency: String!, $fromCurrency: String) {\n convertCurrency(\n amount: $amount\n toCurrency: $toCurrency\n fromCurrency: $fromCurrency\n ) {\n amount\n fromCurrency\n toCurrency\n exchangeRate\n }\n}\n `;\n\n/**\n * __useConvertCurrencyQuery__\n *\n * To run a query within a React component, call `useConvertCurrencyQuery` and pass it any options that fit your needs.\n * When your component renders, `useConvertCurrencyQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useConvertCurrencyQuery({\n * variables: {\n * amount: // value for 'amount'\n * toCurrency: // value for 'toCurrency'\n * fromCurrency: // value for 'fromCurrency'\n * },\n * });\n */\nexport function useConvertCurrencyQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables> & ({ variables: Types.ConvertCurrencyQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>(ConvertCurrencyDocument, options);\n }\nexport function useConvertCurrencyLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>(ConvertCurrencyDocument, options);\n }\n// @ts-ignore\nexport function useConvertCurrencySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>;\nexport function useConvertCurrencySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ConvertCurrencyQuery | undefined, Types.ConvertCurrencyQueryVariables>;\nexport function useConvertCurrencySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>(ConvertCurrencyDocument, options);\n }\nexport type ConvertCurrencyQueryHookResult = ReturnType<typeof useConvertCurrencyQuery>;\nexport type ConvertCurrencyLazyQueryHookResult = ReturnType<typeof useConvertCurrencyLazyQuery>;\nexport type ConvertCurrencySuspenseQueryHookResult = ReturnType<typeof useConvertCurrencySuspenseQuery>;\nexport type ConvertCurrencyQueryResult = Apollo.QueryResult<Types.ConvertCurrencyQuery, Types.ConvertCurrencyQueryVariables>;\nexport const GetActiveSubscriptionsCheckoutDocument = gql`\n query GetActiveSubscriptionsCheckout($billingAccountId: ID!) {\n getActiveSubscriptions(billingAccountId: $billingAccountId) {\n id\n billingAccountId\n planId\n status\n startDate\n endDate\n autoRenewal\n recurrence\n nextBillingDate\n paymentGateway\n createdAt\n plan {\n id\n name\n price\n currency\n duration\n isActive\n productID\n }\n }\n}\n `;\n\n/**\n * __useGetActiveSubscriptionsCheckoutQuery__\n *\n * To run a query within a React component, call `useGetActiveSubscriptionsCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetActiveSubscriptionsCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetActiveSubscriptionsCheckoutQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetActiveSubscriptionsCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables> & ({ variables: Types.GetActiveSubscriptionsCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>(GetActiveSubscriptionsCheckoutDocument, options);\n }\nexport function useGetActiveSubscriptionsCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>(GetActiveSubscriptionsCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetActiveSubscriptionsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>;\nexport function useGetActiveSubscriptionsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSubscriptionsCheckoutQuery | undefined, Types.GetActiveSubscriptionsCheckoutQueryVariables>;\nexport function useGetActiveSubscriptionsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>(GetActiveSubscriptionsCheckoutDocument, options);\n }\nexport type GetActiveSubscriptionsCheckoutQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsCheckoutQuery>;\nexport type GetActiveSubscriptionsCheckoutLazyQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsCheckoutLazyQuery>;\nexport type GetActiveSubscriptionsCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsCheckoutSuspenseQuery>;\nexport type GetActiveSubscriptionsCheckoutQueryResult = Apollo.QueryResult<Types.GetActiveSubscriptionsCheckoutQuery, Types.GetActiveSubscriptionsCheckoutQueryVariables>;\nexport const GetSelectedAddonCheckoutDocument = gql`\n query GetSelectedAddonCheckout($addonIDs: [String!]!) {\n getSelectedAddons(addonIDs: $addonIDs) {\n id\n name\n price\n currency\n currencyPrices\n duration\n isActive\n context\n features {\n id\n quotaId\n quota {\n id\n name\n limits\n }\n }\n }\n}\n `;\n\n/**\n * __useGetSelectedAddonCheckoutQuery__\n *\n * To run a query within a React component, call `useGetSelectedAddonCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetSelectedAddonCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetSelectedAddonCheckoutQuery({\n * variables: {\n * addonIDs: // value for 'addonIDs'\n * },\n * });\n */\nexport function useGetSelectedAddonCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables> & ({ variables: Types.GetSelectedAddonCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>(GetSelectedAddonCheckoutDocument, options);\n }\nexport function useGetSelectedAddonCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>(GetSelectedAddonCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetSelectedAddonCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>;\nexport function useGetSelectedAddonCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSelectedAddonCheckoutQuery | undefined, Types.GetSelectedAddonCheckoutQueryVariables>;\nexport function useGetSelectedAddonCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>(GetSelectedAddonCheckoutDocument, options);\n }\nexport type GetSelectedAddonCheckoutQueryHookResult = ReturnType<typeof useGetSelectedAddonCheckoutQuery>;\nexport type GetSelectedAddonCheckoutLazyQueryHookResult = ReturnType<typeof useGetSelectedAddonCheckoutLazyQuery>;\nexport type GetSelectedAddonCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetSelectedAddonCheckoutSuspenseQuery>;\nexport type GetSelectedAddonCheckoutQueryResult = Apollo.QueryResult<Types.GetSelectedAddonCheckoutQuery, Types.GetSelectedAddonCheckoutQueryVariables>;\nexport const GetBillingAccountsCheckoutDocument = gql`\n query GetBillingAccountsCheckout {\n getBillingAccountsByOrg {\n id\n name\n email\n currency\n creditAmount\n isActive\n billingAddresses {\n id\n country\n state\n city\n }\n }\n}\n `;\n\n/**\n * __useGetBillingAccountsCheckoutQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountsCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountsCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountsCheckoutQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAccountsCheckoutQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>(GetBillingAccountsCheckoutDocument, options);\n }\nexport function useGetBillingAccountsCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>(GetBillingAccountsCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>;\nexport function useGetBillingAccountsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsCheckoutQuery | undefined, Types.GetBillingAccountsCheckoutQueryVariables>;\nexport function useGetBillingAccountsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>(GetBillingAccountsCheckoutDocument, options);\n }\nexport type GetBillingAccountsCheckoutQueryHookResult = ReturnType<typeof useGetBillingAccountsCheckoutQuery>;\nexport type GetBillingAccountsCheckoutLazyQueryHookResult = ReturnType<typeof useGetBillingAccountsCheckoutLazyQuery>;\nexport type GetBillingAccountsCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountsCheckoutSuspenseQuery>;\nexport type GetBillingAccountsCheckoutQueryResult = Apollo.QueryResult<Types.GetBillingAccountsCheckoutQuery, Types.GetBillingAccountsCheckoutQueryVariables>;\nexport const GetCostOfCreditsCheckoutDocument = gql`\n query GetCostOfCreditsCheckout($creditAmount: Float!, $currency: String!) {\n getCostOfCredits(creditAmount: $creditAmount, currency: $currency) {\n amount\n }\n}\n `;\n\n/**\n * __useGetCostOfCreditsCheckoutQuery__\n *\n * To run a query within a React component, call `useGetCostOfCreditsCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCostOfCreditsCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCostOfCreditsCheckoutQuery({\n * variables: {\n * creditAmount: // value for 'creditAmount'\n * currency: // value for 'currency'\n * },\n * });\n */\nexport function useGetCostOfCreditsCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables> & ({ variables: Types.GetCostOfCreditsCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>(GetCostOfCreditsCheckoutDocument, options);\n }\nexport function useGetCostOfCreditsCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>(GetCostOfCreditsCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetCostOfCreditsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>;\nexport function useGetCostOfCreditsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCostOfCreditsCheckoutQuery | undefined, Types.GetCostOfCreditsCheckoutQueryVariables>;\nexport function useGetCostOfCreditsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>(GetCostOfCreditsCheckoutDocument, options);\n }\nexport type GetCostOfCreditsCheckoutQueryHookResult = ReturnType<typeof useGetCostOfCreditsCheckoutQuery>;\nexport type GetCostOfCreditsCheckoutLazyQueryHookResult = ReturnType<typeof useGetCostOfCreditsCheckoutLazyQuery>;\nexport type GetCostOfCreditsCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetCostOfCreditsCheckoutSuspenseQuery>;\nexport type GetCostOfCreditsCheckoutQueryResult = Apollo.QueryResult<Types.GetCostOfCreditsCheckoutQuery, Types.GetCostOfCreditsCheckoutQueryVariables>;\nexport const GetCreditTransactionStatusDocument = gql`\n query GetCreditTransactionStatus($creditTransactionID: ID!, $billingAccountId: ID!) {\n getCreditTransactionDetails(\n creditTransactionID: $creditTransactionID\n billingAccountId: $billingAccountId\n ) {\n id\n status\n type\n amount\n billingAccountId\n transactionId\n productId\n entityId\n entityType\n createdAt\n }\n}\n `;\n\n/**\n * __useGetCreditTransactionStatusQuery__\n *\n * To run a query within a React component, call `useGetCreditTransactionStatusQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCreditTransactionStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCreditTransactionStatusQuery({\n * variables: {\n * creditTransactionID: // value for 'creditTransactionID'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetCreditTransactionStatusQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables> & ({ variables: Types.GetCreditTransactionStatusQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>(GetCreditTransactionStatusDocument, options);\n }\nexport function useGetCreditTransactionStatusLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>(GetCreditTransactionStatusDocument, options);\n }\n// @ts-ignore\nexport function useGetCreditTransactionStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>;\nexport function useGetCreditTransactionStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionStatusQuery | undefined, Types.GetCreditTransactionStatusQueryVariables>;\nexport function useGetCreditTransactionStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>(GetCreditTransactionStatusDocument, options);\n }\nexport type GetCreditTransactionStatusQueryHookResult = ReturnType<typeof useGetCreditTransactionStatusQuery>;\nexport type GetCreditTransactionStatusLazyQueryHookResult = ReturnType<typeof useGetCreditTransactionStatusLazyQuery>;\nexport type GetCreditTransactionStatusSuspenseQueryHookResult = ReturnType<typeof useGetCreditTransactionStatusSuspenseQuery>;\nexport type GetCreditTransactionStatusQueryResult = Apollo.QueryResult<Types.GetCreditTransactionStatusQuery, Types.GetCreditTransactionStatusQueryVariables>;\nexport const GetDefaultBillingAccountCheckoutDocument = gql`\n query GetDefaultBillingAccountCheckout {\n getDefaultBillingAccount {\n id\n name\n email\n currency\n creditAmount\n isActive\n }\n}\n `;\n\n/**\n * __useGetDefaultBillingAccountCheckoutQuery__\n *\n * To run a query within a React component, call `useGetDefaultBillingAccountCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDefaultBillingAccountCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDefaultBillingAccountCheckoutQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetDefaultBillingAccountCheckoutQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>(GetDefaultBillingAccountCheckoutDocument, options);\n }\nexport function useGetDefaultBillingAccountCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>(GetDefaultBillingAccountCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetDefaultBillingAccountCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>;\nexport function useGetDefaultBillingAccountCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountCheckoutQuery | undefined, Types.GetDefaultBillingAccountCheckoutQueryVariables>;\nexport function useGetDefaultBillingAccountCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>(GetDefaultBillingAccountCheckoutDocument, options);\n }\nexport type GetDefaultBillingAccountCheckoutQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountCheckoutQuery>;\nexport type GetDefaultBillingAccountCheckoutLazyQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountCheckoutLazyQuery>;\nexport type GetDefaultBillingAccountCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountCheckoutSuspenseQuery>;\nexport type GetDefaultBillingAccountCheckoutQueryResult = Apollo.QueryResult<Types.GetDefaultBillingAccountCheckoutQuery, Types.GetDefaultBillingAccountCheckoutQueryVariables>;\nexport const GetDiscountByCodeDocument = gql`\n query GetDiscountByCode($code: String!) {\n getDiscountByCode(code: $code) {\n id\n code\n type\n value\n currency\n maxUses\n usedCount\n validFrom\n validUntil\n }\n}\n `;\n\n/**\n * __useGetDiscountByCodeQuery__\n *\n * To run a query within a React component, call `useGetDiscountByCodeQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDiscountByCodeQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDiscountByCodeQuery({\n * variables: {\n * code: // value for 'code'\n * },\n * });\n */\nexport function useGetDiscountByCodeQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables> & ({ variables: Types.GetDiscountByCodeQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>(GetDiscountByCodeDocument, options);\n }\nexport function useGetDiscountByCodeLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>(GetDiscountByCodeDocument, options);\n }\n// @ts-ignore\nexport function useGetDiscountByCodeSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>;\nexport function useGetDiscountByCodeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDiscountByCodeQuery | undefined, Types.GetDiscountByCodeQueryVariables>;\nexport function useGetDiscountByCodeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>(GetDiscountByCodeDocument, options);\n }\nexport type GetDiscountByCodeQueryHookResult = ReturnType<typeof useGetDiscountByCodeQuery>;\nexport type GetDiscountByCodeLazyQueryHookResult = ReturnType<typeof useGetDiscountByCodeLazyQuery>;\nexport type GetDiscountByCodeSuspenseQueryHookResult = ReturnType<typeof useGetDiscountByCodeSuspenseQuery>;\nexport type GetDiscountByCodeQueryResult = Apollo.QueryResult<Types.GetDiscountByCodeQuery, Types.GetDiscountByCodeQueryVariables>;\nexport const GetPaymentMethodsCheckoutDocument = gql`\n query GetPaymentMethodsCheckout($billingAccountId: ID!) {\n getPaymentMethods(billingAccountId: $billingAccountId) {\n id\n type\n isDefault\n last4\n expiryMonth\n expiryYear\n brand\n stripePaymentMethodId\n razorpayPaymentMethodId\n isVerified\n createdAt\n }\n}\n `;\n\n/**\n * __useGetPaymentMethodsCheckoutQuery__\n *\n * To run a query within a React component, call `useGetPaymentMethodsCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentMethodsCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentMethodsCheckoutQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetPaymentMethodsCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables> & ({ variables: Types.GetPaymentMethodsCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>(GetPaymentMethodsCheckoutDocument, options);\n }\nexport function useGetPaymentMethodsCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>(GetPaymentMethodsCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentMethodsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>;\nexport function useGetPaymentMethodsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsCheckoutQuery | undefined, Types.GetPaymentMethodsCheckoutQueryVariables>;\nexport function useGetPaymentMethodsCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>(GetPaymentMethodsCheckoutDocument, options);\n }\nexport type GetPaymentMethodsCheckoutQueryHookResult = ReturnType<typeof useGetPaymentMethodsCheckoutQuery>;\nexport type GetPaymentMethodsCheckoutLazyQueryHookResult = ReturnType<typeof useGetPaymentMethodsCheckoutLazyQuery>;\nexport type GetPaymentMethodsCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetPaymentMethodsCheckoutSuspenseQuery>;\nexport type GetPaymentMethodsCheckoutQueryResult = Apollo.QueryResult<Types.GetPaymentMethodsCheckoutQuery, Types.GetPaymentMethodsCheckoutQueryVariables>;\nexport const GetPaymentProviderConfigCheckoutDocument = gql`\n query GetPaymentProviderConfigCheckout {\n getPaymentProviderConfig {\n stripeEnabled\n stripePublishableKey\n razorpayEnabled\n razorpayKeyId\n }\n}\n `;\n\n/**\n * __useGetPaymentProviderConfigCheckoutQuery__\n *\n * To run a query within a React component, call `useGetPaymentProviderConfigCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentProviderConfigCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentProviderConfigCheckoutQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetPaymentProviderConfigCheckoutQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>(GetPaymentProviderConfigCheckoutDocument, options);\n }\nexport function useGetPaymentProviderConfigCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>(GetPaymentProviderConfigCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentProviderConfigCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>;\nexport function useGetPaymentProviderConfigCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentProviderConfigCheckoutQuery | undefined, Types.GetPaymentProviderConfigCheckoutQueryVariables>;\nexport function useGetPaymentProviderConfigCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>(GetPaymentProviderConfigCheckoutDocument, options);\n }\nexport type GetPaymentProviderConfigCheckoutQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigCheckoutQuery>;\nexport type GetPaymentProviderConfigCheckoutLazyQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigCheckoutLazyQuery>;\nexport type GetPaymentProviderConfigCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigCheckoutSuspenseQuery>;\nexport type GetPaymentProviderConfigCheckoutQueryResult = Apollo.QueryResult<Types.GetPaymentProviderConfigCheckoutQuery, Types.GetPaymentProviderConfigCheckoutQueryVariables>;\nexport const GetPaymentStatusDocument = gql`\n query GetPaymentStatus($id: ID!, $billingAccountId: ID!) {\n getPayment(id: $id, billingAccountId: $billingAccountId) {\n id\n status\n amount\n currency\n paidAt\n failureReason\n transactionId\n gatewayPaymentId\n }\n}\n `;\n\n/**\n * __useGetPaymentStatusQuery__\n *\n * To run a query within a React component, call `useGetPaymentStatusQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentStatusQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentStatusQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetPaymentStatusQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables> & ({ variables: Types.GetPaymentStatusQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>(GetPaymentStatusDocument, options);\n }\nexport function useGetPaymentStatusLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>(GetPaymentStatusDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>;\nexport function useGetPaymentStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentStatusQuery | undefined, Types.GetPaymentStatusQueryVariables>;\nexport function useGetPaymentStatusSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>(GetPaymentStatusDocument, options);\n }\nexport type GetPaymentStatusQueryHookResult = ReturnType<typeof useGetPaymentStatusQuery>;\nexport type GetPaymentStatusLazyQueryHookResult = ReturnType<typeof useGetPaymentStatusLazyQuery>;\nexport type GetPaymentStatusSuspenseQueryHookResult = ReturnType<typeof useGetPaymentStatusSuspenseQuery>;\nexport type GetPaymentStatusQueryResult = Apollo.QueryResult<Types.GetPaymentStatusQuery, Types.GetPaymentStatusQueryVariables>;\nexport const GetPlanCheckoutDocument = gql`\n query GetPlanCheckout($id: ID!) {\n getPlan(id: $id) {\n id\n name\n price\n currency\n currencyPrices\n duration\n isActive\n context\n features {\n id\n quotaId\n quota {\n id\n name\n limits\n }\n }\n }\n}\n `;\n\n/**\n * __useGetPlanCheckoutQuery__\n *\n * To run a query within a React component, call `useGetPlanCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPlanCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPlanCheckoutQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetPlanCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables> & ({ variables: Types.GetPlanCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>(GetPlanCheckoutDocument, options);\n }\nexport function useGetPlanCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>(GetPlanCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetPlanCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>;\nexport function useGetPlanCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanCheckoutQuery | undefined, Types.GetPlanCheckoutQueryVariables>;\nexport function useGetPlanCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>(GetPlanCheckoutDocument, options);\n }\nexport type GetPlanCheckoutQueryHookResult = ReturnType<typeof useGetPlanCheckoutQuery>;\nexport type GetPlanCheckoutLazyQueryHookResult = ReturnType<typeof useGetPlanCheckoutLazyQuery>;\nexport type GetPlanCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetPlanCheckoutSuspenseQuery>;\nexport type GetPlanCheckoutQueryResult = Apollo.QueryResult<Types.GetPlanCheckoutQuery, Types.GetPlanCheckoutQueryVariables>;\nexport const GetStoreOrderCheckoutDocument = gql`\n query GetStoreOrderCheckout($id: ID!) {\n getStoreOrder(id: $id) {\n id\n billingAccountId\n billingOrderId\n currency\n status\n transactionId\n total\n lineItems\n appliedEntitlementId\n purchasedAt\n processedAt\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetStoreOrderCheckoutQuery__\n *\n * To run a query within a React component, call `useGetStoreOrderCheckoutQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetStoreOrderCheckoutQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetStoreOrderCheckoutQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetStoreOrderCheckoutQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables> & ({ variables: Types.GetStoreOrderCheckoutQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>(GetStoreOrderCheckoutDocument, options);\n }\nexport function useGetStoreOrderCheckoutLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>(GetStoreOrderCheckoutDocument, options);\n }\n// @ts-ignore\nexport function useGetStoreOrderCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>;\nexport function useGetStoreOrderCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreOrderCheckoutQuery | undefined, Types.GetStoreOrderCheckoutQueryVariables>;\nexport function useGetStoreOrderCheckoutSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>(GetStoreOrderCheckoutDocument, options);\n }\nexport type GetStoreOrderCheckoutQueryHookResult = ReturnType<typeof useGetStoreOrderCheckoutQuery>;\nexport type GetStoreOrderCheckoutLazyQueryHookResult = ReturnType<typeof useGetStoreOrderCheckoutLazyQuery>;\nexport type GetStoreOrderCheckoutSuspenseQueryHookResult = ReturnType<typeof useGetStoreOrderCheckoutSuspenseQuery>;\nexport type GetStoreOrderCheckoutQueryResult = Apollo.QueryResult<Types.GetStoreOrderCheckoutQuery, Types.GetStoreOrderCheckoutQueryVariables>;\nexport const CreateCouponDocument = gql`\n mutation CreateCoupon($input: CreateCouponInput!) {\n createCoupon(input: $input) {\n id\n code\n name\n description\n scope\n status\n type\n value\n currency\n minPurchaseAmount\n maxDiscountAmount\n maxTotalUses\n maxUsesPerUser\n currentUses\n validFrom\n validUntil\n restrictedToUserIds\n applicableProducts\n applicableServices\n excludedProducts\n excludedServices\n campaignName\n createdAt\n updatedAt\n }\n}\n `;\nexport type CreateCouponMutationFn = Apollo.MutationFunction<Types.CreateCouponMutation, Types.CreateCouponMutationVariables>;\n\n/**\n * __useCreateCouponMutation__\n *\n * To run a mutation, you first call `useCreateCouponMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateCouponMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createCouponMutation, { data, loading, error }] = useCreateCouponMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateCouponMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateCouponMutation, Types.CreateCouponMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateCouponMutation, Types.CreateCouponMutationVariables>(CreateCouponDocument, options);\n }\nexport type CreateCouponMutationHookResult = ReturnType<typeof useCreateCouponMutation>;\nexport type CreateCouponMutationResult = Apollo.MutationResult<Types.CreateCouponMutation>;\nexport type CreateCouponMutationOptions = Apollo.BaseMutationOptions<Types.CreateCouponMutation, Types.CreateCouponMutationVariables>;\nexport const DeactivateCouponDocument = gql`\n mutation DeactivateCoupon($id: ID!) {\n deactivateCoupon(id: $id) {\n ...CouponFields\n }\n}\n ${CouponFieldsFragmentDoc}`;\nexport type DeactivateCouponMutationFn = Apollo.MutationFunction<Types.DeactivateCouponMutation, Types.DeactivateCouponMutationVariables>;\n\n/**\n * __useDeactivateCouponMutation__\n *\n * To run a mutation, you first call `useDeactivateCouponMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeactivateCouponMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deactivateCouponMutation, { data, loading, error }] = useDeactivateCouponMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useDeactivateCouponMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeactivateCouponMutation, Types.DeactivateCouponMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeactivateCouponMutation, Types.DeactivateCouponMutationVariables>(DeactivateCouponDocument, options);\n }\nexport type DeactivateCouponMutationHookResult = ReturnType<typeof useDeactivateCouponMutation>;\nexport type DeactivateCouponMutationResult = Apollo.MutationResult<Types.DeactivateCouponMutation>;\nexport type DeactivateCouponMutationOptions = Apollo.BaseMutationOptions<Types.DeactivateCouponMutation, Types.DeactivateCouponMutationVariables>;\nexport const UpdateCouponDocument = gql`\n mutation UpdateCoupon($id: ID!, $input: UpdateCouponInput!) {\n updateCoupon(id: $id, input: $input) {\n ...CouponFields\n }\n}\n ${CouponFieldsFragmentDoc}`;\nexport type UpdateCouponMutationFn = Apollo.MutationFunction<Types.UpdateCouponMutation, Types.UpdateCouponMutationVariables>;\n\n/**\n * __useUpdateCouponMutation__\n *\n * To run a mutation, you first call `useUpdateCouponMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateCouponMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateCouponMutation, { data, loading, error }] = useUpdateCouponMutation({\n * variables: {\n * id: // value for 'id'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateCouponMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateCouponMutation, Types.UpdateCouponMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateCouponMutation, Types.UpdateCouponMutationVariables>(UpdateCouponDocument, options);\n }\nexport type UpdateCouponMutationHookResult = ReturnType<typeof useUpdateCouponMutation>;\nexport type UpdateCouponMutationResult = Apollo.MutationResult<Types.UpdateCouponMutation>;\nexport type UpdateCouponMutationOptions = Apollo.BaseMutationOptions<Types.UpdateCouponMutation, Types.UpdateCouponMutationVariables>;\nexport const GetCouponDocument = gql`\n query GetCoupon($id: ID!) {\n getCoupon(id: $id) {\n ...CouponFields\n }\n}\n ${CouponFieldsFragmentDoc}`;\n\n/**\n * __useGetCouponQuery__\n *\n * To run a query within a React component, call `useGetCouponQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCouponQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCouponQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetCouponQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCouponQuery, Types.GetCouponQueryVariables> & ({ variables: Types.GetCouponQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCouponQuery, Types.GetCouponQueryVariables>(GetCouponDocument, options);\n }\nexport function useGetCouponLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCouponQuery, Types.GetCouponQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCouponQuery, Types.GetCouponQueryVariables>(GetCouponDocument, options);\n }\n// @ts-ignore\nexport function useGetCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponQuery, Types.GetCouponQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCouponQuery, Types.GetCouponQueryVariables>;\nexport function useGetCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponQuery, Types.GetCouponQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCouponQuery | undefined, Types.GetCouponQueryVariables>;\nexport function useGetCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponQuery, Types.GetCouponQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCouponQuery, Types.GetCouponQueryVariables>(GetCouponDocument, options);\n }\nexport type GetCouponQueryHookResult = ReturnType<typeof useGetCouponQuery>;\nexport type GetCouponLazyQueryHookResult = ReturnType<typeof useGetCouponLazyQuery>;\nexport type GetCouponSuspenseQueryHookResult = ReturnType<typeof useGetCouponSuspenseQuery>;\nexport type GetCouponQueryResult = Apollo.QueryResult<Types.GetCouponQuery, Types.GetCouponQueryVariables>;\nexport const GetCouponUsageHistoryDocument = gql`\n query GetCouponUsageHistory($couponId: ID, $userId: String, $limit: Int, $offset: Int) {\n getCouponUsageHistory(\n couponId: $couponId\n userId: $userId\n limit: $limit\n offset: $offset\n ) {\n usages {\n id\n userId\n orderId\n transactionId\n discountType\n discountValue\n originalAmount\n finalAmount\n currency\n usedAt\n }\n total\n hasMore\n }\n}\n `;\n\n/**\n * __useGetCouponUsageHistoryQuery__\n *\n * To run a query within a React component, call `useGetCouponUsageHistoryQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCouponUsageHistoryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCouponUsageHistoryQuery({\n * variables: {\n * couponId: // value for 'couponId'\n * userId: // value for 'userId'\n * limit: // value for 'limit'\n * offset: // value for 'offset'\n * },\n * });\n */\nexport function useGetCouponUsageHistoryQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>(GetCouponUsageHistoryDocument, options);\n }\nexport function useGetCouponUsageHistoryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>(GetCouponUsageHistoryDocument, options);\n }\n// @ts-ignore\nexport function useGetCouponUsageHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>;\nexport function useGetCouponUsageHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCouponUsageHistoryQuery | undefined, Types.GetCouponUsageHistoryQueryVariables>;\nexport function useGetCouponUsageHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>(GetCouponUsageHistoryDocument, options);\n }\nexport type GetCouponUsageHistoryQueryHookResult = ReturnType<typeof useGetCouponUsageHistoryQuery>;\nexport type GetCouponUsageHistoryLazyQueryHookResult = ReturnType<typeof useGetCouponUsageHistoryLazyQuery>;\nexport type GetCouponUsageHistorySuspenseQueryHookResult = ReturnType<typeof useGetCouponUsageHistorySuspenseQuery>;\nexport type GetCouponUsageHistoryQueryResult = Apollo.QueryResult<Types.GetCouponUsageHistoryQuery, Types.GetCouponUsageHistoryQueryVariables>;\nexport const ListCouponsDocument = gql`\n query ListCoupons($filter: CouponFilterInput, $limit: Int, $offset: Int) {\n listCoupons(filter: $filter, limit: $limit, offset: $offset) {\n coupons {\n id\n code\n name\n description\n scope\n status\n type\n value\n currency\n minPurchaseAmount\n maxDiscountAmount\n maxTotalUses\n maxUsesPerUser\n currentUses\n validFrom\n validUntil\n campaignName\n createdAt\n updatedAt\n }\n hasMore\n total\n }\n}\n `;\n\n/**\n * __useListCouponsQuery__\n *\n * To run a query within a React component, call `useListCouponsQuery` and pass it any options that fit your needs.\n * When your component renders, `useListCouponsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useListCouponsQuery({\n * variables: {\n * filter: // value for 'filter'\n * limit: // value for 'limit'\n * offset: // value for 'offset'\n * },\n * });\n */\nexport function useListCouponsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>(ListCouponsDocument, options);\n }\nexport function useListCouponsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>(ListCouponsDocument, options);\n }\n// @ts-ignore\nexport function useListCouponsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>;\nexport function useListCouponsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ListCouponsQuery | undefined, Types.ListCouponsQueryVariables>;\nexport function useListCouponsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>(ListCouponsDocument, options);\n }\nexport type ListCouponsQueryHookResult = ReturnType<typeof useListCouponsQuery>;\nexport type ListCouponsLazyQueryHookResult = ReturnType<typeof useListCouponsLazyQuery>;\nexport type ListCouponsSuspenseQueryHookResult = ReturnType<typeof useListCouponsSuspenseQuery>;\nexport type ListCouponsQueryResult = Apollo.QueryResult<Types.ListCouponsQuery, Types.ListCouponsQueryVariables>;\nexport const ValidateCouponDocument = gql`\n query ValidateCoupon($input: ValidateCouponInput!) {\n validateCoupon(input: $input) {\n valid\n coupon {\n id\n code\n name\n description\n type\n value\n minPurchaseAmount\n maxDiscountAmount\n }\n discountAmount\n error\n }\n}\n `;\n\n/**\n * __useValidateCouponQuery__\n *\n * To run a query within a React component, call `useValidateCouponQuery` and pass it any options that fit your needs.\n * When your component renders, `useValidateCouponQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useValidateCouponQuery({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useValidateCouponQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables> & ({ variables: Types.ValidateCouponQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>(ValidateCouponDocument, options);\n }\nexport function useValidateCouponLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>(ValidateCouponDocument, options);\n }\n// @ts-ignore\nexport function useValidateCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>;\nexport function useValidateCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.ValidateCouponQuery | undefined, Types.ValidateCouponQueryVariables>;\nexport function useValidateCouponSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>(ValidateCouponDocument, options);\n }\nexport type ValidateCouponQueryHookResult = ReturnType<typeof useValidateCouponQuery>;\nexport type ValidateCouponLazyQueryHookResult = ReturnType<typeof useValidateCouponLazyQuery>;\nexport type ValidateCouponSuspenseQueryHookResult = ReturnType<typeof useValidateCouponSuspenseQuery>;\nexport type ValidateCouponQueryResult = Apollo.QueryResult<Types.ValidateCouponQuery, Types.ValidateCouponQueryVariables>;\nexport const CreateCreditNoteDocument = gql`\n mutation CreateCreditNote($billingAccountId: ID!, $amount: Float!, $reason: String, $invoiceId: String, $currency: String, $metadata: JSON) {\n createCreditNote(\n billingAccountId: $billingAccountId\n amount: $amount\n reason: $reason\n invoiceId: $invoiceId\n currency: $currency\n metadata: $metadata\n ) {\n ...CreditNoteFields\n }\n}\n ${CreditNoteFieldsFragmentDoc}`;\nexport type CreateCreditNoteMutationFn = Apollo.MutationFunction<Types.CreateCreditNoteMutation, Types.CreateCreditNoteMutationVariables>;\n\n/**\n * __useCreateCreditNoteMutation__\n *\n * To run a mutation, you first call `useCreateCreditNoteMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateCreditNoteMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createCreditNoteMutation, { data, loading, error }] = useCreateCreditNoteMutation({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * amount: // value for 'amount'\n * reason: // value for 'reason'\n * invoiceId: // value for 'invoiceId'\n * currency: // value for 'currency'\n * metadata: // value for 'metadata'\n * },\n * });\n */\nexport function useCreateCreditNoteMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateCreditNoteMutation, Types.CreateCreditNoteMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateCreditNoteMutation, Types.CreateCreditNoteMutationVariables>(CreateCreditNoteDocument, options);\n }\nexport type CreateCreditNoteMutationHookResult = ReturnType<typeof useCreateCreditNoteMutation>;\nexport type CreateCreditNoteMutationResult = Apollo.MutationResult<Types.CreateCreditNoteMutation>;\nexport type CreateCreditNoteMutationOptions = Apollo.BaseMutationOptions<Types.CreateCreditNoteMutation, Types.CreateCreditNoteMutationVariables>;\nexport const GrantCreditsDocument = gql`\n mutation GrantCredits($input: GrantCreditsInput!) {\n grantCredits(input: $input) {\n id\n amount\n status\n type\n billingAccountId\n productId\n entityType\n context\n createdAt\n updatedAt\n }\n}\n `;\nexport type GrantCreditsMutationFn = Apollo.MutationFunction<Types.GrantCreditsMutation, Types.GrantCreditsMutationVariables>;\n\n/**\n * __useGrantCreditsMutation__\n *\n * To run a mutation, you first call `useGrantCreditsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useGrantCreditsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [grantCreditsMutation, { data, loading, error }] = useGrantCreditsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useGrantCreditsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.GrantCreditsMutation, Types.GrantCreditsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.GrantCreditsMutation, Types.GrantCreditsMutationVariables>(GrantCreditsDocument, options);\n }\nexport type GrantCreditsMutationHookResult = ReturnType<typeof useGrantCreditsMutation>;\nexport type GrantCreditsMutationResult = Apollo.MutationResult<Types.GrantCreditsMutation>;\nexport type GrantCreditsMutationOptions = Apollo.BaseMutationOptions<Types.GrantCreditsMutation, Types.GrantCreditsMutationVariables>;\nexport const RequestCreditWithdrawalDocument = gql`\n mutation RequestCreditWithdrawal($input: RequestCreditWithdrawalInput!) {\n requestCreditWithdrawal(input: $input) {\n id\n status\n requestedAmount\n currency\n }\n}\n `;\nexport type RequestCreditWithdrawalMutationFn = Apollo.MutationFunction<Types.RequestCreditWithdrawalMutation, Types.RequestCreditWithdrawalMutationVariables>;\n\n/**\n * __useRequestCreditWithdrawalMutation__\n *\n * To run a mutation, you first call `useRequestCreditWithdrawalMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useRequestCreditWithdrawalMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [requestCreditWithdrawalMutation, { data, loading, error }] = useRequestCreditWithdrawalMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useRequestCreditWithdrawalMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RequestCreditWithdrawalMutation, Types.RequestCreditWithdrawalMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.RequestCreditWithdrawalMutation, Types.RequestCreditWithdrawalMutationVariables>(RequestCreditWithdrawalDocument, options);\n }\nexport type RequestCreditWithdrawalMutationHookResult = ReturnType<typeof useRequestCreditWithdrawalMutation>;\nexport type RequestCreditWithdrawalMutationResult = Apollo.MutationResult<Types.RequestCreditWithdrawalMutation>;\nexport type RequestCreditWithdrawalMutationOptions = Apollo.BaseMutationOptions<Types.RequestCreditWithdrawalMutation, Types.RequestCreditWithdrawalMutationVariables>;\nexport const CreditWithdrawalHistoryDocument = gql`\n query CreditWithdrawalHistory($billingAccountId: ID!) {\n myPayoutRequests(billingAccountId: $billingAccountId, limit: 20, offset: 0) {\n items {\n id\n requestedAmount\n approvedAmount\n currency\n provider\n status\n externalReference\n failureReason\n userNotes\n createdAt\n processedAt\n paidAt\n payoutAccount {\n id\n label\n type\n displayName\n accountLast4\n currency\n }\n }\n }\n}\n `;\n\n/**\n * __useCreditWithdrawalHistoryQuery__\n *\n * To run a query within a React component, call `useCreditWithdrawalHistoryQuery` and pass it any options that fit your needs.\n * When your component renders, `useCreditWithdrawalHistoryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCreditWithdrawalHistoryQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useCreditWithdrawalHistoryQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables> & ({ variables: Types.CreditWithdrawalHistoryQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>(CreditWithdrawalHistoryDocument, options);\n }\nexport function useCreditWithdrawalHistoryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>(CreditWithdrawalHistoryDocument, options);\n }\n// @ts-ignore\nexport function useCreditWithdrawalHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>;\nexport function useCreditWithdrawalHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CreditWithdrawalHistoryQuery | undefined, Types.CreditWithdrawalHistoryQueryVariables>;\nexport function useCreditWithdrawalHistorySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>(CreditWithdrawalHistoryDocument, options);\n }\nexport type CreditWithdrawalHistoryQueryHookResult = ReturnType<typeof useCreditWithdrawalHistoryQuery>;\nexport type CreditWithdrawalHistoryLazyQueryHookResult = ReturnType<typeof useCreditWithdrawalHistoryLazyQuery>;\nexport type CreditWithdrawalHistorySuspenseQueryHookResult = ReturnType<typeof useCreditWithdrawalHistorySuspenseQuery>;\nexport type CreditWithdrawalHistoryQueryResult = Apollo.QueryResult<Types.CreditWithdrawalHistoryQuery, Types.CreditWithdrawalHistoryQueryVariables>;\nexport const GetBillingAccountCreditTransactionsDocument = gql`\n query GetBillingAccountCreditTransactions($billingAccountID: ID!, $days: Int!, $page: Int, $pageSize: Int) {\n getBillingAccountCreditTransactions(\n billingAccountID: $billingAccountID\n days: $days\n page: $page\n pageSize: $pageSize\n ) {\n creditTransactions {\n ...CreditTransactionFields\n billingAccount {\n id\n name\n email\n }\n transaction {\n id\n amount\n currency\n type\n status\n }\n }\n page\n pageSize\n totalCount\n hasMore\n }\n}\n ${CreditTransactionFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAccountCreditTransactionsQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountCreditTransactionsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountCreditTransactionsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountCreditTransactionsQuery({\n * variables: {\n * billingAccountID: // value for 'billingAccountID'\n * days: // value for 'days'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetBillingAccountCreditTransactionsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables> & ({ variables: Types.GetBillingAccountCreditTransactionsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>(GetBillingAccountCreditTransactionsDocument, options);\n }\nexport function useGetBillingAccountCreditTransactionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>(GetBillingAccountCreditTransactionsDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountCreditTransactionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>;\nexport function useGetBillingAccountCreditTransactionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountCreditTransactionsQuery | undefined, Types.GetBillingAccountCreditTransactionsQueryVariables>;\nexport function useGetBillingAccountCreditTransactionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>(GetBillingAccountCreditTransactionsDocument, options);\n }\nexport type GetBillingAccountCreditTransactionsQueryHookResult = ReturnType<typeof useGetBillingAccountCreditTransactionsQuery>;\nexport type GetBillingAccountCreditTransactionsLazyQueryHookResult = ReturnType<typeof useGetBillingAccountCreditTransactionsLazyQuery>;\nexport type GetBillingAccountCreditTransactionsSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountCreditTransactionsSuspenseQuery>;\nexport type GetBillingAccountCreditTransactionsQueryResult = Apollo.QueryResult<Types.GetBillingAccountCreditTransactionsQuery, Types.GetBillingAccountCreditTransactionsQueryVariables>;\nexport const GetCostOfCreditsDocument = gql`\n query GetCostOfCredits($creditAmount: Float!, $currency: String!) {\n getCostOfCredits(creditAmount: $creditAmount, currency: $currency) {\n amount\n }\n}\n `;\n\n/**\n * __useGetCostOfCreditsQuery__\n *\n * To run a query within a React component, call `useGetCostOfCreditsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCostOfCreditsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCostOfCreditsQuery({\n * variables: {\n * creditAmount: // value for 'creditAmount'\n * currency: // value for 'currency'\n * },\n * });\n */\nexport function useGetCostOfCreditsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables> & ({ variables: Types.GetCostOfCreditsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>(GetCostOfCreditsDocument, options);\n }\nexport function useGetCostOfCreditsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>(GetCostOfCreditsDocument, options);\n }\n// @ts-ignore\nexport function useGetCostOfCreditsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>;\nexport function useGetCostOfCreditsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCostOfCreditsQuery | undefined, Types.GetCostOfCreditsQueryVariables>;\nexport function useGetCostOfCreditsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>(GetCostOfCreditsDocument, options);\n }\nexport type GetCostOfCreditsQueryHookResult = ReturnType<typeof useGetCostOfCreditsQuery>;\nexport type GetCostOfCreditsLazyQueryHookResult = ReturnType<typeof useGetCostOfCreditsLazyQuery>;\nexport type GetCostOfCreditsSuspenseQueryHookResult = ReturnType<typeof useGetCostOfCreditsSuspenseQuery>;\nexport type GetCostOfCreditsQueryResult = Apollo.QueryResult<Types.GetCostOfCreditsQuery, Types.GetCostOfCreditsQueryVariables>;\nexport const GetCreditBalanceByTypeDocument = gql`\n query GetCreditBalanceByType($billingAccountId: ID!) {\n getCreditBalanceByType(billingAccountId: $billingAccountId) {\n purchased\n earned\n granted\n withdrawable\n total\n }\n}\n `;\n\n/**\n * __useGetCreditBalanceByTypeQuery__\n *\n * To run a query within a React component, call `useGetCreditBalanceByTypeQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCreditBalanceByTypeQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCreditBalanceByTypeQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetCreditBalanceByTypeQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables> & ({ variables: Types.GetCreditBalanceByTypeQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>(GetCreditBalanceByTypeDocument, options);\n }\nexport function useGetCreditBalanceByTypeLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>(GetCreditBalanceByTypeDocument, options);\n }\n// @ts-ignore\nexport function useGetCreditBalanceByTypeSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>;\nexport function useGetCreditBalanceByTypeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditBalanceByTypeQuery | undefined, Types.GetCreditBalanceByTypeQueryVariables>;\nexport function useGetCreditBalanceByTypeSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>(GetCreditBalanceByTypeDocument, options);\n }\nexport type GetCreditBalanceByTypeQueryHookResult = ReturnType<typeof useGetCreditBalanceByTypeQuery>;\nexport type GetCreditBalanceByTypeLazyQueryHookResult = ReturnType<typeof useGetCreditBalanceByTypeLazyQuery>;\nexport type GetCreditBalanceByTypeSuspenseQueryHookResult = ReturnType<typeof useGetCreditBalanceByTypeSuspenseQuery>;\nexport type GetCreditBalanceByTypeQueryResult = Apollo.QueryResult<Types.GetCreditBalanceByTypeQuery, Types.GetCreditBalanceByTypeQueryVariables>;\nexport const GetCreditNotesDocument = gql`\n query GetCreditNotes {\n getCreditNotes {\n ...CreditNoteFields\n }\n}\n ${CreditNoteFieldsFragmentDoc}`;\n\n/**\n * __useGetCreditNotesQuery__\n *\n * To run a query within a React component, call `useGetCreditNotesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCreditNotesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCreditNotesQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetCreditNotesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>(GetCreditNotesDocument, options);\n }\nexport function useGetCreditNotesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>(GetCreditNotesDocument, options);\n }\n// @ts-ignore\nexport function useGetCreditNotesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>;\nexport function useGetCreditNotesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditNotesQuery | undefined, Types.GetCreditNotesQueryVariables>;\nexport function useGetCreditNotesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>(GetCreditNotesDocument, options);\n }\nexport type GetCreditNotesQueryHookResult = ReturnType<typeof useGetCreditNotesQuery>;\nexport type GetCreditNotesLazyQueryHookResult = ReturnType<typeof useGetCreditNotesLazyQuery>;\nexport type GetCreditNotesSuspenseQueryHookResult = ReturnType<typeof useGetCreditNotesSuspenseQuery>;\nexport type GetCreditNotesQueryResult = Apollo.QueryResult<Types.GetCreditNotesQuery, Types.GetCreditNotesQueryVariables>;\nexport const GetCreditTransactionDetailsDocument = gql`\n query GetCreditTransactionDetails($creditTransactionID: ID!, $billingAccountId: ID!) {\n getCreditTransactionDetails(\n creditTransactionID: $creditTransactionID\n billingAccountId: $billingAccountId\n ) {\n ...CreditTransactionFields\n billingAccount {\n id\n name\n email\n creditAmount\n currency\n }\n transaction {\n id\n amount\n currency\n type\n status\n description\n createdAt\n }\n }\n}\n ${CreditTransactionFieldsFragmentDoc}`;\n\n/**\n * __useGetCreditTransactionDetailsQuery__\n *\n * To run a query within a React component, call `useGetCreditTransactionDetailsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCreditTransactionDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCreditTransactionDetailsQuery({\n * variables: {\n * creditTransactionID: // value for 'creditTransactionID'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetCreditTransactionDetailsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables> & ({ variables: Types.GetCreditTransactionDetailsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>(GetCreditTransactionDetailsDocument, options);\n }\nexport function useGetCreditTransactionDetailsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>(GetCreditTransactionDetailsDocument, options);\n }\n// @ts-ignore\nexport function useGetCreditTransactionDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>;\nexport function useGetCreditTransactionDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionDetailsQuery | undefined, Types.GetCreditTransactionDetailsQueryVariables>;\nexport function useGetCreditTransactionDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>(GetCreditTransactionDetailsDocument, options);\n }\nexport type GetCreditTransactionDetailsQueryHookResult = ReturnType<typeof useGetCreditTransactionDetailsQuery>;\nexport type GetCreditTransactionDetailsLazyQueryHookResult = ReturnType<typeof useGetCreditTransactionDetailsLazyQuery>;\nexport type GetCreditTransactionDetailsSuspenseQueryHookResult = ReturnType<typeof useGetCreditTransactionDetailsSuspenseQuery>;\nexport type GetCreditTransactionDetailsQueryResult = Apollo.QueryResult<Types.GetCreditTransactionDetailsQuery, Types.GetCreditTransactionDetailsQueryVariables>;\nexport const AddPaymentMethodDashboardDocument = gql`\n mutation AddPaymentMethodDashboard($input: CreatePaymentMethodInput!) {\n addPaymentMethod(input: $input) {\n ...DashboardPaymentMethodFields\n }\n}\n ${DashboardPaymentMethodFieldsFragmentDoc}`;\nexport type AddPaymentMethodDashboardMutationFn = Apollo.MutationFunction<Types.AddPaymentMethodDashboardMutation, Types.AddPaymentMethodDashboardMutationVariables>;\n\n/**\n * __useAddPaymentMethodDashboardMutation__\n *\n * To run a mutation, you first call `useAddPaymentMethodDashboardMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddPaymentMethodDashboardMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addPaymentMethodDashboardMutation, { data, loading, error }] = useAddPaymentMethodDashboardMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useAddPaymentMethodDashboardMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddPaymentMethodDashboardMutation, Types.AddPaymentMethodDashboardMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.AddPaymentMethodDashboardMutation, Types.AddPaymentMethodDashboardMutationVariables>(AddPaymentMethodDashboardDocument, options);\n }\nexport type AddPaymentMethodDashboardMutationHookResult = ReturnType<typeof useAddPaymentMethodDashboardMutation>;\nexport type AddPaymentMethodDashboardMutationResult = Apollo.MutationResult<Types.AddPaymentMethodDashboardMutation>;\nexport type AddPaymentMethodDashboardMutationOptions = Apollo.BaseMutationOptions<Types.AddPaymentMethodDashboardMutation, Types.AddPaymentMethodDashboardMutationVariables>;\nexport const CreateBillingAccountDocument = gql`\n mutation CreateBillingAccount($input: CreateBillingAccountInput!) {\n createBillingAccount(input: $input) {\n ...BillingAccountFields\n }\n}\n ${BillingAccountFieldsFragmentDoc}`;\nexport type CreateBillingAccountMutationFn = Apollo.MutationFunction<Types.CreateBillingAccountMutation, Types.CreateBillingAccountMutationVariables>;\n\n/**\n * __useCreateBillingAccountMutation__\n *\n * To run a mutation, you first call `useCreateBillingAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateBillingAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createBillingAccountMutation, { data, loading, error }] = useCreateBillingAccountMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateBillingAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateBillingAccountMutation, Types.CreateBillingAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateBillingAccountMutation, Types.CreateBillingAccountMutationVariables>(CreateBillingAccountDocument, options);\n }\nexport type CreateBillingAccountMutationHookResult = ReturnType<typeof useCreateBillingAccountMutation>;\nexport type CreateBillingAccountMutationResult = Apollo.MutationResult<Types.CreateBillingAccountMutation>;\nexport type CreateBillingAccountMutationOptions = Apollo.BaseMutationOptions<Types.CreateBillingAccountMutation, Types.CreateBillingAccountMutationVariables>;\nexport const DeletePaymentMethodDashboardDocument = gql`\n mutation DeletePaymentMethodDashboard($id: ID!, $billingAccountId: ID!) {\n deletePaymentMethod(id: $id, billingAccountId: $billingAccountId)\n}\n `;\nexport type DeletePaymentMethodDashboardMutationFn = Apollo.MutationFunction<Types.DeletePaymentMethodDashboardMutation, Types.DeletePaymentMethodDashboardMutationVariables>;\n\n/**\n * __useDeletePaymentMethodDashboardMutation__\n *\n * To run a mutation, you first call `useDeletePaymentMethodDashboardMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeletePaymentMethodDashboardMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deletePaymentMethodDashboardMutation, { data, loading, error }] = useDeletePaymentMethodDashboardMutation({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useDeletePaymentMethodDashboardMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeletePaymentMethodDashboardMutation, Types.DeletePaymentMethodDashboardMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeletePaymentMethodDashboardMutation, Types.DeletePaymentMethodDashboardMutationVariables>(DeletePaymentMethodDashboardDocument, options);\n }\nexport type DeletePaymentMethodDashboardMutationHookResult = ReturnType<typeof useDeletePaymentMethodDashboardMutation>;\nexport type DeletePaymentMethodDashboardMutationResult = Apollo.MutationResult<Types.DeletePaymentMethodDashboardMutation>;\nexport type DeletePaymentMethodDashboardMutationOptions = Apollo.BaseMutationOptions<Types.DeletePaymentMethodDashboardMutation, Types.DeletePaymentMethodDashboardMutationVariables>;\nexport const InitiatePaymentDocument = gql`\n mutation InitiatePayment($input: InitiatePaymentInput!) {\n initiatePayment(input: $input) {\n success\n provider\n clientSecret\n orderId\n razorpayKeyId\n subtotal\n taxAmount\n taxRate\n taxType\n taxBreakdown\n jurisdiction\n total\n currency\n error\n }\n}\n `;\nexport type InitiatePaymentMutationFn = Apollo.MutationFunction<Types.InitiatePaymentMutation, Types.InitiatePaymentMutationVariables>;\n\n/**\n * __useInitiatePaymentMutation__\n *\n * To run a mutation, you first call `useInitiatePaymentMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useInitiatePaymentMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [initiatePaymentMutation, { data, loading, error }] = useInitiatePaymentMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useInitiatePaymentMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.InitiatePaymentMutation, Types.InitiatePaymentMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.InitiatePaymentMutation, Types.InitiatePaymentMutationVariables>(InitiatePaymentDocument, options);\n }\nexport type InitiatePaymentMutationHookResult = ReturnType<typeof useInitiatePaymentMutation>;\nexport type InitiatePaymentMutationResult = Apollo.MutationResult<Types.InitiatePaymentMutation>;\nexport type InitiatePaymentMutationOptions = Apollo.BaseMutationOptions<Types.InitiatePaymentMutation, Types.InitiatePaymentMutationVariables>;\nexport const SetBillingAddressDocument = gql`\n mutation SetBillingAddress($input: SetBillingAddressInput!) {\n setBillingAddress(input: $input) {\n ...BillingAddressFields\n }\n}\n ${BillingAddressFieldsFragmentDoc}`;\nexport type SetBillingAddressMutationFn = Apollo.MutationFunction<Types.SetBillingAddressMutation, Types.SetBillingAddressMutationVariables>;\n\n/**\n * __useSetBillingAddressMutation__\n *\n * To run a mutation, you first call `useSetBillingAddressMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSetBillingAddressMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [setBillingAddressMutation, { data, loading, error }] = useSetBillingAddressMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useSetBillingAddressMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SetBillingAddressMutation, Types.SetBillingAddressMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SetBillingAddressMutation, Types.SetBillingAddressMutationVariables>(SetBillingAddressDocument, options);\n }\nexport type SetBillingAddressMutationHookResult = ReturnType<typeof useSetBillingAddressMutation>;\nexport type SetBillingAddressMutationResult = Apollo.MutationResult<Types.SetBillingAddressMutation>;\nexport type SetBillingAddressMutationOptions = Apollo.BaseMutationOptions<Types.SetBillingAddressMutation, Types.SetBillingAddressMutationVariables>;\nexport const SetDefaultBillingAccountDocument = gql`\n mutation SetDefaultBillingAccount($id: ID!) {\n setDefaultBillingAccount(id: $id) {\n ...BillingAccountFields\n }\n}\n ${BillingAccountFieldsFragmentDoc}`;\nexport type SetDefaultBillingAccountMutationFn = Apollo.MutationFunction<Types.SetDefaultBillingAccountMutation, Types.SetDefaultBillingAccountMutationVariables>;\n\n/**\n * __useSetDefaultBillingAccountMutation__\n *\n * To run a mutation, you first call `useSetDefaultBillingAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSetDefaultBillingAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [setDefaultBillingAccountMutation, { data, loading, error }] = useSetDefaultBillingAccountMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useSetDefaultBillingAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SetDefaultBillingAccountMutation, Types.SetDefaultBillingAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SetDefaultBillingAccountMutation, Types.SetDefaultBillingAccountMutationVariables>(SetDefaultBillingAccountDocument, options);\n }\nexport type SetDefaultBillingAccountMutationHookResult = ReturnType<typeof useSetDefaultBillingAccountMutation>;\nexport type SetDefaultBillingAccountMutationResult = Apollo.MutationResult<Types.SetDefaultBillingAccountMutation>;\nexport type SetDefaultBillingAccountMutationOptions = Apollo.BaseMutationOptions<Types.SetDefaultBillingAccountMutation, Types.SetDefaultBillingAccountMutationVariables>;\nexport const SpendCreditsDocument = gql`\n mutation SpendCredits($input: SpendCreditsInput!) {\n spendCredits(input: $input) {\n creditTransactionID\n }\n}\n `;\nexport type SpendCreditsMutationFn = Apollo.MutationFunction<Types.SpendCreditsMutation, Types.SpendCreditsMutationVariables>;\n\n/**\n * __useSpendCreditsMutation__\n *\n * To run a mutation, you first call `useSpendCreditsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSpendCreditsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [spendCreditsMutation, { data, loading, error }] = useSpendCreditsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useSpendCreditsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SpendCreditsMutation, Types.SpendCreditsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SpendCreditsMutation, Types.SpendCreditsMutationVariables>(SpendCreditsDocument, options);\n }\nexport type SpendCreditsMutationHookResult = ReturnType<typeof useSpendCreditsMutation>;\nexport type SpendCreditsMutationResult = Apollo.MutationResult<Types.SpendCreditsMutation>;\nexport type SpendCreditsMutationOptions = Apollo.BaseMutationOptions<Types.SpendCreditsMutation, Types.SpendCreditsMutationVariables>;\nexport const UpdateBillingAccountDocument = gql`\n mutation UpdateBillingAccount($input: UpdateBillingAccountInput!) {\n updateBillingAccount(input: $input) {\n ...BillingAccountFields\n }\n}\n ${BillingAccountFieldsFragmentDoc}`;\nexport type UpdateBillingAccountMutationFn = Apollo.MutationFunction<Types.UpdateBillingAccountMutation, Types.UpdateBillingAccountMutationVariables>;\n\n/**\n * __useUpdateBillingAccountMutation__\n *\n * To run a mutation, you first call `useUpdateBillingAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateBillingAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateBillingAccountMutation, { data, loading, error }] = useUpdateBillingAccountMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateBillingAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateBillingAccountMutation, Types.UpdateBillingAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateBillingAccountMutation, Types.UpdateBillingAccountMutationVariables>(UpdateBillingAccountDocument, options);\n }\nexport type UpdateBillingAccountMutationHookResult = ReturnType<typeof useUpdateBillingAccountMutation>;\nexport type UpdateBillingAccountMutationResult = Apollo.MutationResult<Types.UpdateBillingAccountMutation>;\nexport type UpdateBillingAccountMutationOptions = Apollo.BaseMutationOptions<Types.UpdateBillingAccountMutation, Types.UpdateBillingAccountMutationVariables>;\nexport const UpdatePaymentMethodDashboardDocument = gql`\n mutation UpdatePaymentMethodDashboard($id: ID!, $isDefault: Boolean!, $billingAccountId: ID!) {\n updatePaymentMethod(\n id: $id\n isDefault: $isDefault\n billingAccountId: $billingAccountId\n ) {\n ...DashboardPaymentMethodFields\n }\n}\n ${DashboardPaymentMethodFieldsFragmentDoc}`;\nexport type UpdatePaymentMethodDashboardMutationFn = Apollo.MutationFunction<Types.UpdatePaymentMethodDashboardMutation, Types.UpdatePaymentMethodDashboardMutationVariables>;\n\n/**\n * __useUpdatePaymentMethodDashboardMutation__\n *\n * To run a mutation, you first call `useUpdatePaymentMethodDashboardMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdatePaymentMethodDashboardMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updatePaymentMethodDashboardMutation, { data, loading, error }] = useUpdatePaymentMethodDashboardMutation({\n * variables: {\n * id: // value for 'id'\n * isDefault: // value for 'isDefault'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useUpdatePaymentMethodDashboardMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdatePaymentMethodDashboardMutation, Types.UpdatePaymentMethodDashboardMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdatePaymentMethodDashboardMutation, Types.UpdatePaymentMethodDashboardMutationVariables>(UpdatePaymentMethodDashboardDocument, options);\n }\nexport type UpdatePaymentMethodDashboardMutationHookResult = ReturnType<typeof useUpdatePaymentMethodDashboardMutation>;\nexport type UpdatePaymentMethodDashboardMutationResult = Apollo.MutationResult<Types.UpdatePaymentMethodDashboardMutation>;\nexport type UpdatePaymentMethodDashboardMutationOptions = Apollo.BaseMutationOptions<Types.UpdatePaymentMethodDashboardMutation, Types.UpdatePaymentMethodDashboardMutationVariables>;\nexport const VerifyPaymentMethodDocument = gql`\n mutation VerifyPaymentMethod($input: VerifyPaymentMethodInput!) {\n verifyBillingPaymentMethod(input: $input) {\n success\n provider\n orderId\n razorpayKeyId\n razorpayCustomerId\n clientSecret\n amount\n currency\n prefillName\n prefillEmail\n prefillContact\n error\n }\n}\n `;\nexport type VerifyPaymentMethodMutationFn = Apollo.MutationFunction<Types.VerifyPaymentMethodMutation, Types.VerifyPaymentMethodMutationVariables>;\n\n/**\n * __useVerifyPaymentMethodMutation__\n *\n * To run a mutation, you first call `useVerifyPaymentMethodMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useVerifyPaymentMethodMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [verifyPaymentMethodMutation, { data, loading, error }] = useVerifyPaymentMethodMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useVerifyPaymentMethodMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.VerifyPaymentMethodMutation, Types.VerifyPaymentMethodMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.VerifyPaymentMethodMutation, Types.VerifyPaymentMethodMutationVariables>(VerifyPaymentMethodDocument, options);\n }\nexport type VerifyPaymentMethodMutationHookResult = ReturnType<typeof useVerifyPaymentMethodMutation>;\nexport type VerifyPaymentMethodMutationResult = Apollo.MutationResult<Types.VerifyPaymentMethodMutation>;\nexport type VerifyPaymentMethodMutationOptions = Apollo.BaseMutationOptions<Types.VerifyPaymentMethodMutation, Types.VerifyPaymentMethodMutationVariables>;\nexport const GetActiveSubscriptionsDocument = gql`\n query GetActiveSubscriptions($billingAccountId: ID!) {\n getActiveSubscriptions(billingAccountId: $billingAccountId) {\n ...ActiveSubscriptionFields\n }\n}\n ${ActiveSubscriptionFieldsFragmentDoc}`;\n\n/**\n * __useGetActiveSubscriptionsQuery__\n *\n * To run a query within a React component, call `useGetActiveSubscriptionsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetActiveSubscriptionsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetActiveSubscriptionsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetActiveSubscriptionsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables> & ({ variables: Types.GetActiveSubscriptionsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>(GetActiveSubscriptionsDocument, options);\n }\nexport function useGetActiveSubscriptionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>(GetActiveSubscriptionsDocument, options);\n }\n// @ts-ignore\nexport function useGetActiveSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>;\nexport function useGetActiveSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetActiveSubscriptionsQuery | undefined, Types.GetActiveSubscriptionsQueryVariables>;\nexport function useGetActiveSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>(GetActiveSubscriptionsDocument, options);\n }\nexport type GetActiveSubscriptionsQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsQuery>;\nexport type GetActiveSubscriptionsLazyQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsLazyQuery>;\nexport type GetActiveSubscriptionsSuspenseQueryHookResult = ReturnType<typeof useGetActiveSubscriptionsSuspenseQuery>;\nexport type GetActiveSubscriptionsQueryResult = Apollo.QueryResult<Types.GetActiveSubscriptionsQuery, Types.GetActiveSubscriptionsQueryVariables>;\nexport const GetAvailablePlansDocument = gql`\n query GetAvailablePlans {\n getAllPlans {\n id\n productID\n name\n price\n currency\n duration\n isActive\n features {\n id\n quota {\n id\n name\n limits\n }\n }\n }\n}\n `;\n\n/**\n * __useGetAvailablePlansQuery__\n *\n * To run a query within a React component, call `useGetAvailablePlansQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAvailablePlansQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAvailablePlansQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAvailablePlansQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>(GetAvailablePlansDocument, options);\n }\nexport function useGetAvailablePlansLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>(GetAvailablePlansDocument, options);\n }\n// @ts-ignore\nexport function useGetAvailablePlansSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>;\nexport function useGetAvailablePlansSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAvailablePlansQuery | undefined, Types.GetAvailablePlansQueryVariables>;\nexport function useGetAvailablePlansSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>(GetAvailablePlansDocument, options);\n }\nexport type GetAvailablePlansQueryHookResult = ReturnType<typeof useGetAvailablePlansQuery>;\nexport type GetAvailablePlansLazyQueryHookResult = ReturnType<typeof useGetAvailablePlansLazyQuery>;\nexport type GetAvailablePlansSuspenseQueryHookResult = ReturnType<typeof useGetAvailablePlansSuspenseQuery>;\nexport type GetAvailablePlansQueryResult = Apollo.QueryResult<Types.GetAvailablePlansQuery, Types.GetAvailablePlansQueryVariables>;\nexport const GetBillingAccountDashboardDocument = gql`\n query GetBillingAccountDashboard($id: ID!) {\n getBillingAccount(id: $id) {\n ...BillingAccountFields\n paymentMethods {\n ...DashboardPaymentMethodFields\n }\n billingAddresses {\n ...BillingAddressFields\n }\n }\n}\n ${BillingAccountFieldsFragmentDoc}\n${DashboardPaymentMethodFieldsFragmentDoc}\n${BillingAddressFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAccountDashboardQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountDashboardQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountDashboardQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountDashboardQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetBillingAccountDashboardQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables> & ({ variables: Types.GetBillingAccountDashboardQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>(GetBillingAccountDashboardDocument, options);\n }\nexport function useGetBillingAccountDashboardLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>(GetBillingAccountDashboardDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>;\nexport function useGetBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountDashboardQuery | undefined, Types.GetBillingAccountDashboardQueryVariables>;\nexport function useGetBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>(GetBillingAccountDashboardDocument, options);\n }\nexport type GetBillingAccountDashboardQueryHookResult = ReturnType<typeof useGetBillingAccountDashboardQuery>;\nexport type GetBillingAccountDashboardLazyQueryHookResult = ReturnType<typeof useGetBillingAccountDashboardLazyQuery>;\nexport type GetBillingAccountDashboardSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountDashboardSuspenseQuery>;\nexport type GetBillingAccountDashboardQueryResult = Apollo.QueryResult<Types.GetBillingAccountDashboardQuery, Types.GetBillingAccountDashboardQueryVariables>;\nexport const GetBillingAccountsByOrgDocument = gql`\n query GetBillingAccountsByOrg {\n getBillingAccountsByOrg {\n ...BillingAccountFields\n }\n}\n ${BillingAccountFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAccountsByOrgQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountsByOrgQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountsByOrgQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountsByOrgQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAccountsByOrgQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>(GetBillingAccountsByOrgDocument, options);\n }\nexport function useGetBillingAccountsByOrgLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>(GetBillingAccountsByOrgDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountsByOrgSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>;\nexport function useGetBillingAccountsByOrgSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsByOrgQuery | undefined, Types.GetBillingAccountsByOrgQueryVariables>;\nexport function useGetBillingAccountsByOrgSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>(GetBillingAccountsByOrgDocument, options);\n }\nexport type GetBillingAccountsByOrgQueryHookResult = ReturnType<typeof useGetBillingAccountsByOrgQuery>;\nexport type GetBillingAccountsByOrgLazyQueryHookResult = ReturnType<typeof useGetBillingAccountsByOrgLazyQuery>;\nexport type GetBillingAccountsByOrgSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountsByOrgSuspenseQuery>;\nexport type GetBillingAccountsByOrgQueryResult = Apollo.QueryResult<Types.GetBillingAccountsByOrgQuery, Types.GetBillingAccountsByOrgQueryVariables>;\nexport const GetBillingAddressDocument = gql`\n query GetBillingAddress($billingAccountId: ID!) {\n getBillingAddress(billingAccountId: $billingAccountId) {\n ...BillingAddressFields\n }\n}\n ${BillingAddressFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAddressQuery__\n *\n * To run a query within a React component, call `useGetBillingAddressQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAddressQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAddressQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetBillingAddressQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables> & ({ variables: Types.GetBillingAddressQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>(GetBillingAddressDocument, options);\n }\nexport function useGetBillingAddressLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>(GetBillingAddressDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAddressSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>;\nexport function useGetBillingAddressSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAddressQuery | undefined, Types.GetBillingAddressQueryVariables>;\nexport function useGetBillingAddressSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>(GetBillingAddressDocument, options);\n }\nexport type GetBillingAddressQueryHookResult = ReturnType<typeof useGetBillingAddressQuery>;\nexport type GetBillingAddressLazyQueryHookResult = ReturnType<typeof useGetBillingAddressLazyQuery>;\nexport type GetBillingAddressSuspenseQueryHookResult = ReturnType<typeof useGetBillingAddressSuspenseQuery>;\nexport type GetBillingAddressQueryResult = Apollo.QueryResult<Types.GetBillingAddressQuery, Types.GetBillingAddressQueryVariables>;\nexport const GetBillingOverviewDocument = gql`\n query GetBillingOverview($addonsFilter: AddonsFilter) {\n getBillingAccountsByOrg {\n ...BillingAccountFields\n }\n getDefaultBillingAccount {\n ...BillingAccountFields\n paymentMethods {\n ...DashboardPaymentMethodFields\n }\n billingAddresses {\n ...BillingAddressFields\n }\n subscriptions {\n ...ActiveSubscriptionFields\n }\n }\n getAllAddOns(filter: $addonsFilter, limit: 3) {\n id\n productID\n name\n price\n currency\n duration\n isActive\n features {\n id\n quota {\n id\n name\n limits\n }\n }\n }\n}\n ${BillingAccountFieldsFragmentDoc}\n${DashboardPaymentMethodFieldsFragmentDoc}\n${BillingAddressFieldsFragmentDoc}\n${ActiveSubscriptionFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingOverviewQuery__\n *\n * To run a query within a React component, call `useGetBillingOverviewQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingOverviewQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingOverviewQuery({\n * variables: {\n * addonsFilter: // value for 'addonsFilter'\n * },\n * });\n */\nexport function useGetBillingOverviewQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>(GetBillingOverviewDocument, options);\n }\nexport function useGetBillingOverviewLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>(GetBillingOverviewDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>;\nexport function useGetBillingOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingOverviewQuery | undefined, Types.GetBillingOverviewQueryVariables>;\nexport function useGetBillingOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>(GetBillingOverviewDocument, options);\n }\nexport type GetBillingOverviewQueryHookResult = ReturnType<typeof useGetBillingOverviewQuery>;\nexport type GetBillingOverviewLazyQueryHookResult = ReturnType<typeof useGetBillingOverviewLazyQuery>;\nexport type GetBillingOverviewSuspenseQueryHookResult = ReturnType<typeof useGetBillingOverviewSuspenseQuery>;\nexport type GetBillingOverviewQueryResult = Apollo.QueryResult<Types.GetBillingOverviewQuery, Types.GetBillingOverviewQueryVariables>;\nexport const GetBillingOverviewAccountDocument = gql`\n query GetBillingOverviewAccount($id: ID!) {\n getBillingAccount(id: $id) {\n ...BillingAccountFields\n paymentMethods {\n ...DashboardPaymentMethodFields\n }\n billingAddresses {\n ...BillingAddressFields\n }\n subscriptions {\n ...ActiveSubscriptionFields\n }\n }\n}\n ${BillingAccountFieldsFragmentDoc}\n${DashboardPaymentMethodFieldsFragmentDoc}\n${BillingAddressFieldsFragmentDoc}\n${ActiveSubscriptionFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingOverviewAccountQuery__\n *\n * To run a query within a React component, call `useGetBillingOverviewAccountQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingOverviewAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingOverviewAccountQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetBillingOverviewAccountQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables> & ({ variables: Types.GetBillingOverviewAccountQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>(GetBillingOverviewAccountDocument, options);\n }\nexport function useGetBillingOverviewAccountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>(GetBillingOverviewAccountDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingOverviewAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>;\nexport function useGetBillingOverviewAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingOverviewAccountQuery | undefined, Types.GetBillingOverviewAccountQueryVariables>;\nexport function useGetBillingOverviewAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>(GetBillingOverviewAccountDocument, options);\n }\nexport type GetBillingOverviewAccountQueryHookResult = ReturnType<typeof useGetBillingOverviewAccountQuery>;\nexport type GetBillingOverviewAccountLazyQueryHookResult = ReturnType<typeof useGetBillingOverviewAccountLazyQuery>;\nexport type GetBillingOverviewAccountSuspenseQueryHookResult = ReturnType<typeof useGetBillingOverviewAccountSuspenseQuery>;\nexport type GetBillingOverviewAccountQueryResult = Apollo.QueryResult<Types.GetBillingOverviewAccountQuery, Types.GetBillingOverviewAccountQueryVariables>;\nexport const GetCreditTransactionsSummaryDocument = gql`\n query GetCreditTransactionsSummary($billingAccountID: ID!, $days: Int!, $page: Int, $pageSize: Int) {\n getBillingAccountCreditTransactions(\n billingAccountID: $billingAccountID\n days: $days\n page: $page\n pageSize: $pageSize\n ) {\n creditTransactions {\n ...CreditTransactionSummaryFields\n }\n totalCount\n hasMore\n page\n pageSize\n }\n}\n ${CreditTransactionSummaryFieldsFragmentDoc}`;\n\n/**\n * __useGetCreditTransactionsSummaryQuery__\n *\n * To run a query within a React component, call `useGetCreditTransactionsSummaryQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetCreditTransactionsSummaryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetCreditTransactionsSummaryQuery({\n * variables: {\n * billingAccountID: // value for 'billingAccountID'\n * days: // value for 'days'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetCreditTransactionsSummaryQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables> & ({ variables: Types.GetCreditTransactionsSummaryQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>(GetCreditTransactionsSummaryDocument, options);\n }\nexport function useGetCreditTransactionsSummaryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>(GetCreditTransactionsSummaryDocument, options);\n }\n// @ts-ignore\nexport function useGetCreditTransactionsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>;\nexport function useGetCreditTransactionsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetCreditTransactionsSummaryQuery | undefined, Types.GetCreditTransactionsSummaryQueryVariables>;\nexport function useGetCreditTransactionsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>(GetCreditTransactionsSummaryDocument, options);\n }\nexport type GetCreditTransactionsSummaryQueryHookResult = ReturnType<typeof useGetCreditTransactionsSummaryQuery>;\nexport type GetCreditTransactionsSummaryLazyQueryHookResult = ReturnType<typeof useGetCreditTransactionsSummaryLazyQuery>;\nexport type GetCreditTransactionsSummarySuspenseQueryHookResult = ReturnType<typeof useGetCreditTransactionsSummarySuspenseQuery>;\nexport type GetCreditTransactionsSummaryQueryResult = Apollo.QueryResult<Types.GetCreditTransactionsSummaryQuery, Types.GetCreditTransactionsSummaryQueryVariables>;\nexport const GetDefaultBillingAccountDashboardDocument = gql`\n query GetDefaultBillingAccountDashboard {\n getDefaultBillingAccount {\n ...BillingAccountFields\n paymentMethods {\n ...DashboardPaymentMethodFields\n }\n billingAddresses {\n ...BillingAddressFields\n }\n }\n}\n ${BillingAccountFieldsFragmentDoc}\n${DashboardPaymentMethodFieldsFragmentDoc}\n${BillingAddressFieldsFragmentDoc}`;\n\n/**\n * __useGetDefaultBillingAccountDashboardQuery__\n *\n * To run a query within a React component, call `useGetDefaultBillingAccountDashboardQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDefaultBillingAccountDashboardQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDefaultBillingAccountDashboardQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetDefaultBillingAccountDashboardQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>(GetDefaultBillingAccountDashboardDocument, options);\n }\nexport function useGetDefaultBillingAccountDashboardLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>(GetDefaultBillingAccountDashboardDocument, options);\n }\n// @ts-ignore\nexport function useGetDefaultBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>;\nexport function useGetDefaultBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountDashboardQuery | undefined, Types.GetDefaultBillingAccountDashboardQueryVariables>;\nexport function useGetDefaultBillingAccountDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>(GetDefaultBillingAccountDashboardDocument, options);\n }\nexport type GetDefaultBillingAccountDashboardQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountDashboardQuery>;\nexport type GetDefaultBillingAccountDashboardLazyQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountDashboardLazyQuery>;\nexport type GetDefaultBillingAccountDashboardSuspenseQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountDashboardSuspenseQuery>;\nexport type GetDefaultBillingAccountDashboardQueryResult = Apollo.QueryResult<Types.GetDefaultBillingAccountDashboardQuery, Types.GetDefaultBillingAccountDashboardQueryVariables>;\nexport const GetPaymentMethodsDashboardDocument = gql`\n query GetPaymentMethodsDashboard($billingAccountId: ID!) {\n getPaymentMethods(billingAccountId: $billingAccountId) {\n ...DashboardPaymentMethodFields\n }\n}\n ${DashboardPaymentMethodFieldsFragmentDoc}`;\n\n/**\n * __useGetPaymentMethodsDashboardQuery__\n *\n * To run a query within a React component, call `useGetPaymentMethodsDashboardQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentMethodsDashboardQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentMethodsDashboardQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetPaymentMethodsDashboardQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables> & ({ variables: Types.GetPaymentMethodsDashboardQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>(GetPaymentMethodsDashboardDocument, options);\n }\nexport function useGetPaymentMethodsDashboardLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>(GetPaymentMethodsDashboardDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentMethodsDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>;\nexport function useGetPaymentMethodsDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentMethodsDashboardQuery | undefined, Types.GetPaymentMethodsDashboardQueryVariables>;\nexport function useGetPaymentMethodsDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>(GetPaymentMethodsDashboardDocument, options);\n }\nexport type GetPaymentMethodsDashboardQueryHookResult = ReturnType<typeof useGetPaymentMethodsDashboardQuery>;\nexport type GetPaymentMethodsDashboardLazyQueryHookResult = ReturnType<typeof useGetPaymentMethodsDashboardLazyQuery>;\nexport type GetPaymentMethodsDashboardSuspenseQueryHookResult = ReturnType<typeof useGetPaymentMethodsDashboardSuspenseQuery>;\nexport type GetPaymentMethodsDashboardQueryResult = Apollo.QueryResult<Types.GetPaymentMethodsDashboardQuery, Types.GetPaymentMethodsDashboardQueryVariables>;\nexport const GetPaymentProviderConfigDocument = gql`\n query GetPaymentProviderConfig {\n getPaymentProviderConfig {\n stripeEnabled\n stripePublishableKey\n razorpayEnabled\n razorpayKeyId\n }\n}\n `;\n\n/**\n * __useGetPaymentProviderConfigQuery__\n *\n * To run a query within a React component, call `useGetPaymentProviderConfigQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaymentProviderConfigQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaymentProviderConfigQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetPaymentProviderConfigQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>(GetPaymentProviderConfigDocument, options);\n }\nexport function useGetPaymentProviderConfigLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>(GetPaymentProviderConfigDocument, options);\n }\n// @ts-ignore\nexport function useGetPaymentProviderConfigSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>;\nexport function useGetPaymentProviderConfigSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaymentProviderConfigQuery | undefined, Types.GetPaymentProviderConfigQueryVariables>;\nexport function useGetPaymentProviderConfigSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>(GetPaymentProviderConfigDocument, options);\n }\nexport type GetPaymentProviderConfigQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigQuery>;\nexport type GetPaymentProviderConfigLazyQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigLazyQuery>;\nexport type GetPaymentProviderConfigSuspenseQueryHookResult = ReturnType<typeof useGetPaymentProviderConfigSuspenseQuery>;\nexport type GetPaymentProviderConfigQueryResult = Apollo.QueryResult<Types.GetPaymentProviderConfigQuery, Types.GetPaymentProviderConfigQueryVariables>;\nexport const GetRecommendedAddonsDocument = gql`\n query GetRecommendedAddons($limit: Int) {\n getAllAddOns(limit: $limit) {\n id\n productID\n name\n price\n currency\n duration\n isActive\n features {\n id\n quota {\n id\n name\n limits\n }\n }\n }\n}\n `;\n\n/**\n * __useGetRecommendedAddonsQuery__\n *\n * To run a query within a React component, call `useGetRecommendedAddonsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetRecommendedAddonsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetRecommendedAddonsQuery({\n * variables: {\n * limit: // value for 'limit'\n * },\n * });\n */\nexport function useGetRecommendedAddonsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>(GetRecommendedAddonsDocument, options);\n }\nexport function useGetRecommendedAddonsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>(GetRecommendedAddonsDocument, options);\n }\n// @ts-ignore\nexport function useGetRecommendedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>;\nexport function useGetRecommendedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetRecommendedAddonsQuery | undefined, Types.GetRecommendedAddonsQueryVariables>;\nexport function useGetRecommendedAddonsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>(GetRecommendedAddonsDocument, options);\n }\nexport type GetRecommendedAddonsQueryHookResult = ReturnType<typeof useGetRecommendedAddonsQuery>;\nexport type GetRecommendedAddonsLazyQueryHookResult = ReturnType<typeof useGetRecommendedAddonsLazyQuery>;\nexport type GetRecommendedAddonsSuspenseQueryHookResult = ReturnType<typeof useGetRecommendedAddonsSuspenseQuery>;\nexport type GetRecommendedAddonsQueryResult = Apollo.QueryResult<Types.GetRecommendedAddonsQuery, Types.GetRecommendedAddonsQueryVariables>;\nexport const CreateDiscountDocument = gql`\n mutation CreateDiscount($code: String!, $type: String!, $value: Float!, $currency: String, $maxUses: Int, $validFrom: DateTime!, $validUntil: DateTime, $metadata: JSON) {\n createDiscount(\n code: $code\n type: $type\n value: $value\n currency: $currency\n maxUses: $maxUses\n validFrom: $validFrom\n validUntil: $validUntil\n metadata: $metadata\n ) {\n id\n code\n type\n value\n currency\n maxUses\n usedCount\n validFrom\n validUntil\n metadata\n context\n createdAt\n updatedAt\n }\n}\n `;\nexport type CreateDiscountMutationFn = Apollo.MutationFunction<Types.CreateDiscountMutation, Types.CreateDiscountMutationVariables>;\n\n/**\n * __useCreateDiscountMutation__\n *\n * To run a mutation, you first call `useCreateDiscountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateDiscountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createDiscountMutation, { data, loading, error }] = useCreateDiscountMutation({\n * variables: {\n * code: // value for 'code'\n * type: // value for 'type'\n * value: // value for 'value'\n * currency: // value for 'currency'\n * maxUses: // value for 'maxUses'\n * validFrom: // value for 'validFrom'\n * validUntil: // value for 'validUntil'\n * metadata: // value for 'metadata'\n * },\n * });\n */\nexport function useCreateDiscountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateDiscountMutation, Types.CreateDiscountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateDiscountMutation, Types.CreateDiscountMutationVariables>(CreateDiscountDocument, options);\n }\nexport type CreateDiscountMutationHookResult = ReturnType<typeof useCreateDiscountMutation>;\nexport type CreateDiscountMutationResult = Apollo.MutationResult<Types.CreateDiscountMutation>;\nexport type CreateDiscountMutationOptions = Apollo.BaseMutationOptions<Types.CreateDiscountMutation, Types.CreateDiscountMutationVariables>;\nexport const DeleteDiscountDocument = gql`\n mutation DeleteDiscount($id: ID!) {\n deleteDiscount(id: $id)\n}\n `;\nexport type DeleteDiscountMutationFn = Apollo.MutationFunction<Types.DeleteDiscountMutation, Types.DeleteDiscountMutationVariables>;\n\n/**\n * __useDeleteDiscountMutation__\n *\n * To run a mutation, you first call `useDeleteDiscountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeleteDiscountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deleteDiscountMutation, { data, loading, error }] = useDeleteDiscountMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useDeleteDiscountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteDiscountMutation, Types.DeleteDiscountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeleteDiscountMutation, Types.DeleteDiscountMutationVariables>(DeleteDiscountDocument, options);\n }\nexport type DeleteDiscountMutationHookResult = ReturnType<typeof useDeleteDiscountMutation>;\nexport type DeleteDiscountMutationResult = Apollo.MutationResult<Types.DeleteDiscountMutation>;\nexport type DeleteDiscountMutationOptions = Apollo.BaseMutationOptions<Types.DeleteDiscountMutation, Types.DeleteDiscountMutationVariables>;\nexport const UpdateDiscountDocument = gql`\n mutation UpdateDiscount($id: ID!, $maxUses: Int, $validUntil: DateTime) {\n updateDiscount(id: $id, maxUses: $maxUses, validUntil: $validUntil) {\n id\n code\n type\n value\n currency\n maxUses\n usedCount\n validFrom\n validUntil\n metadata\n context\n createdAt\n updatedAt\n }\n}\n `;\nexport type UpdateDiscountMutationFn = Apollo.MutationFunction<Types.UpdateDiscountMutation, Types.UpdateDiscountMutationVariables>;\n\n/**\n * __useUpdateDiscountMutation__\n *\n * To run a mutation, you first call `useUpdateDiscountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateDiscountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateDiscountMutation, { data, loading, error }] = useUpdateDiscountMutation({\n * variables: {\n * id: // value for 'id'\n * maxUses: // value for 'maxUses'\n * validUntil: // value for 'validUntil'\n * },\n * });\n */\nexport function useUpdateDiscountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateDiscountMutation, Types.UpdateDiscountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateDiscountMutation, Types.UpdateDiscountMutationVariables>(UpdateDiscountDocument, options);\n }\nexport type UpdateDiscountMutationHookResult = ReturnType<typeof useUpdateDiscountMutation>;\nexport type UpdateDiscountMutationResult = Apollo.MutationResult<Types.UpdateDiscountMutation>;\nexport type UpdateDiscountMutationOptions = Apollo.BaseMutationOptions<Types.UpdateDiscountMutation, Types.UpdateDiscountMutationVariables>;\nexport const GetDiscountsDocument = gql`\n query GetDiscounts {\n getDiscounts {\n id\n code\n type\n value\n currency\n maxUses\n usedCount\n validFrom\n validUntil\n metadata\n context\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetDiscountsQuery__\n *\n * To run a query within a React component, call `useGetDiscountsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDiscountsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDiscountsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetDiscountsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>(GetDiscountsDocument, options);\n }\nexport function useGetDiscountsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>(GetDiscountsDocument, options);\n }\n// @ts-ignore\nexport function useGetDiscountsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>;\nexport function useGetDiscountsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDiscountsQuery | undefined, Types.GetDiscountsQueryVariables>;\nexport function useGetDiscountsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>(GetDiscountsDocument, options);\n }\nexport type GetDiscountsQueryHookResult = ReturnType<typeof useGetDiscountsQuery>;\nexport type GetDiscountsLazyQueryHookResult = ReturnType<typeof useGetDiscountsLazyQuery>;\nexport type GetDiscountsSuspenseQueryHookResult = ReturnType<typeof useGetDiscountsSuspenseQuery>;\nexport type GetDiscountsQueryResult = Apollo.QueryResult<Types.GetDiscountsQuery, Types.GetDiscountsQueryVariables>;\nexport const AddPayoutAccountDocument = gql`\n mutation AddPayoutAccount($input: AddPayoutAccountInput!) {\n addPayoutAccount(input: $input) {\n id\n }\n}\n `;\nexport type AddPayoutAccountMutationFn = Apollo.MutationFunction<Types.AddPayoutAccountMutation, Types.AddPayoutAccountMutationVariables>;\n\n/**\n * __useAddPayoutAccountMutation__\n *\n * To run a mutation, you first call `useAddPayoutAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddPayoutAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addPayoutAccountMutation, { data, loading, error }] = useAddPayoutAccountMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useAddPayoutAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddPayoutAccountMutation, Types.AddPayoutAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.AddPayoutAccountMutation, Types.AddPayoutAccountMutationVariables>(AddPayoutAccountDocument, options);\n }\nexport type AddPayoutAccountMutationHookResult = ReturnType<typeof useAddPayoutAccountMutation>;\nexport type AddPayoutAccountMutationResult = Apollo.MutationResult<Types.AddPayoutAccountMutation>;\nexport type AddPayoutAccountMutationOptions = Apollo.BaseMutationOptions<Types.AddPayoutAccountMutation, Types.AddPayoutAccountMutationVariables>;\nexport const ApprovePayoutRequestDocument = gql`\n mutation ApprovePayoutRequest($id: ID!, $notes: String) {\n approvePayoutRequest(id: $id, notes: $notes) {\n id\n }\n}\n `;\nexport type ApprovePayoutRequestMutationFn = Apollo.MutationFunction<Types.ApprovePayoutRequestMutation, Types.ApprovePayoutRequestMutationVariables>;\n\n/**\n * __useApprovePayoutRequestMutation__\n *\n * To run a mutation, you first call `useApprovePayoutRequestMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useApprovePayoutRequestMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [approvePayoutRequestMutation, { data, loading, error }] = useApprovePayoutRequestMutation({\n * variables: {\n * id: // value for 'id'\n * notes: // value for 'notes'\n * },\n * });\n */\nexport function useApprovePayoutRequestMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ApprovePayoutRequestMutation, Types.ApprovePayoutRequestMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ApprovePayoutRequestMutation, Types.ApprovePayoutRequestMutationVariables>(ApprovePayoutRequestDocument, options);\n }\nexport type ApprovePayoutRequestMutationHookResult = ReturnType<typeof useApprovePayoutRequestMutation>;\nexport type ApprovePayoutRequestMutationResult = Apollo.MutationResult<Types.ApprovePayoutRequestMutation>;\nexport type ApprovePayoutRequestMutationOptions = Apollo.BaseMutationOptions<Types.ApprovePayoutRequestMutation, Types.ApprovePayoutRequestMutationVariables>;\nexport const ArchivePayoutAccountDocument = gql`\n mutation ArchivePayoutAccount($id: ID!, $billingAccountId: ID!) {\n archivePayoutAccount(id: $id, billingAccountId: $billingAccountId)\n}\n `;\nexport type ArchivePayoutAccountMutationFn = Apollo.MutationFunction<Types.ArchivePayoutAccountMutation, Types.ArchivePayoutAccountMutationVariables>;\n\n/**\n * __useArchivePayoutAccountMutation__\n *\n * To run a mutation, you first call `useArchivePayoutAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useArchivePayoutAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [archivePayoutAccountMutation, { data, loading, error }] = useArchivePayoutAccountMutation({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useArchivePayoutAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ArchivePayoutAccountMutation, Types.ArchivePayoutAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ArchivePayoutAccountMutation, Types.ArchivePayoutAccountMutationVariables>(ArchivePayoutAccountDocument, options);\n }\nexport type ArchivePayoutAccountMutationHookResult = ReturnType<typeof useArchivePayoutAccountMutation>;\nexport type ArchivePayoutAccountMutationResult = Apollo.MutationResult<Types.ArchivePayoutAccountMutation>;\nexport type ArchivePayoutAccountMutationOptions = Apollo.BaseMutationOptions<Types.ArchivePayoutAccountMutation, Types.ArchivePayoutAccountMutationVariables>;\nexport const ProcessPayoutRequestDocument = gql`\n mutation ProcessPayoutRequest($id: ID!) {\n processPayoutRequest(id: $id) {\n id\n }\n}\n `;\nexport type ProcessPayoutRequestMutationFn = Apollo.MutationFunction<Types.ProcessPayoutRequestMutation, Types.ProcessPayoutRequestMutationVariables>;\n\n/**\n * __useProcessPayoutRequestMutation__\n *\n * To run a mutation, you first call `useProcessPayoutRequestMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useProcessPayoutRequestMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [processPayoutRequestMutation, { data, loading, error }] = useProcessPayoutRequestMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useProcessPayoutRequestMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ProcessPayoutRequestMutation, Types.ProcessPayoutRequestMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ProcessPayoutRequestMutation, Types.ProcessPayoutRequestMutationVariables>(ProcessPayoutRequestDocument, options);\n }\nexport type ProcessPayoutRequestMutationHookResult = ReturnType<typeof useProcessPayoutRequestMutation>;\nexport type ProcessPayoutRequestMutationResult = Apollo.MutationResult<Types.ProcessPayoutRequestMutation>;\nexport type ProcessPayoutRequestMutationOptions = Apollo.BaseMutationOptions<Types.ProcessPayoutRequestMutation, Types.ProcessPayoutRequestMutationVariables>;\nexport const RejectPayoutRequestDocument = gql`\n mutation RejectPayoutRequest($id: ID!, $reason: String!) {\n rejectPayoutRequest(id: $id, reason: $reason) {\n id\n }\n}\n `;\nexport type RejectPayoutRequestMutationFn = Apollo.MutationFunction<Types.RejectPayoutRequestMutation, Types.RejectPayoutRequestMutationVariables>;\n\n/**\n * __useRejectPayoutRequestMutation__\n *\n * To run a mutation, you first call `useRejectPayoutRequestMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useRejectPayoutRequestMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [rejectPayoutRequestMutation, { data, loading, error }] = useRejectPayoutRequestMutation({\n * variables: {\n * id: // value for 'id'\n * reason: // value for 'reason'\n * },\n * });\n */\nexport function useRejectPayoutRequestMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.RejectPayoutRequestMutation, Types.RejectPayoutRequestMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.RejectPayoutRequestMutation, Types.RejectPayoutRequestMutationVariables>(RejectPayoutRequestDocument, options);\n }\nexport type RejectPayoutRequestMutationHookResult = ReturnType<typeof useRejectPayoutRequestMutation>;\nexport type RejectPayoutRequestMutationResult = Apollo.MutationResult<Types.RejectPayoutRequestMutation>;\nexport type RejectPayoutRequestMutationOptions = Apollo.BaseMutationOptions<Types.RejectPayoutRequestMutation, Types.RejectPayoutRequestMutationVariables>;\nexport const SetDefaultPayoutAccountDocument = gql`\n mutation SetDefaultPayoutAccount($id: ID!, $billingAccountId: ID!) {\n setDefaultPayoutAccount(id: $id, billingAccountId: $billingAccountId) {\n id\n }\n}\n `;\nexport type SetDefaultPayoutAccountMutationFn = Apollo.MutationFunction<Types.SetDefaultPayoutAccountMutation, Types.SetDefaultPayoutAccountMutationVariables>;\n\n/**\n * __useSetDefaultPayoutAccountMutation__\n *\n * To run a mutation, you first call `useSetDefaultPayoutAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSetDefaultPayoutAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [setDefaultPayoutAccountMutation, { data, loading, error }] = useSetDefaultPayoutAccountMutation({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useSetDefaultPayoutAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SetDefaultPayoutAccountMutation, Types.SetDefaultPayoutAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SetDefaultPayoutAccountMutation, Types.SetDefaultPayoutAccountMutationVariables>(SetDefaultPayoutAccountDocument, options);\n }\nexport type SetDefaultPayoutAccountMutationHookResult = ReturnType<typeof useSetDefaultPayoutAccountMutation>;\nexport type SetDefaultPayoutAccountMutationResult = Apollo.MutationResult<Types.SetDefaultPayoutAccountMutation>;\nexport type SetDefaultPayoutAccountMutationOptions = Apollo.BaseMutationOptions<Types.SetDefaultPayoutAccountMutation, Types.SetDefaultPayoutAccountMutationVariables>;\nexport const UpdatePayoutAccountDocument = gql`\n mutation UpdatePayoutAccount($id: ID!, $billingAccountId: ID!, $input: UpdatePayoutAccountInput!) {\n updatePayoutAccount(id: $id, billingAccountId: $billingAccountId, input: $input) {\n id\n }\n}\n `;\nexport type UpdatePayoutAccountMutationFn = Apollo.MutationFunction<Types.UpdatePayoutAccountMutation, Types.UpdatePayoutAccountMutationVariables>;\n\n/**\n * __useUpdatePayoutAccountMutation__\n *\n * To run a mutation, you first call `useUpdatePayoutAccountMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdatePayoutAccountMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updatePayoutAccountMutation, { data, loading, error }] = useUpdatePayoutAccountMutation({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdatePayoutAccountMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdatePayoutAccountMutation, Types.UpdatePayoutAccountMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdatePayoutAccountMutation, Types.UpdatePayoutAccountMutationVariables>(UpdatePayoutAccountDocument, options);\n }\nexport type UpdatePayoutAccountMutationHookResult = ReturnType<typeof useUpdatePayoutAccountMutation>;\nexport type UpdatePayoutAccountMutationResult = Apollo.MutationResult<Types.UpdatePayoutAccountMutation>;\nexport type UpdatePayoutAccountMutationOptions = Apollo.BaseMutationOptions<Types.UpdatePayoutAccountMutation, Types.UpdatePayoutAccountMutationVariables>;\nexport const AdminPayoutRequestsDocument = gql`\n query AdminPayoutRequests {\n adminPayoutRequests(limit: 50, offset: 0) {\n items {\n id\n requestedAmount\n approvedAmount\n currency\n provider\n status\n externalReference\n failureReason\n internalNotes\n userNotes\n createdAt\n processedAt\n paidAt\n payoutAccount {\n id\n label\n type\n providerPreference\n status\n displayName\n accountLast4\n country\n currency\n isDefault\n }\n }\n }\n}\n `;\n\n/**\n * __useAdminPayoutRequestsQuery__\n *\n * To run a query within a React component, call `useAdminPayoutRequestsQuery` and pass it any options that fit your needs.\n * When your component renders, `useAdminPayoutRequestsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useAdminPayoutRequestsQuery({\n * variables: {\n * },\n * });\n */\nexport function useAdminPayoutRequestsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>(AdminPayoutRequestsDocument, options);\n }\nexport function useAdminPayoutRequestsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>(AdminPayoutRequestsDocument, options);\n }\n// @ts-ignore\nexport function useAdminPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>;\nexport function useAdminPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.AdminPayoutRequestsQuery | undefined, Types.AdminPayoutRequestsQueryVariables>;\nexport function useAdminPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>(AdminPayoutRequestsDocument, options);\n }\nexport type AdminPayoutRequestsQueryHookResult = ReturnType<typeof useAdminPayoutRequestsQuery>;\nexport type AdminPayoutRequestsLazyQueryHookResult = ReturnType<typeof useAdminPayoutRequestsLazyQuery>;\nexport type AdminPayoutRequestsSuspenseQueryHookResult = ReturnType<typeof useAdminPayoutRequestsSuspenseQuery>;\nexport type AdminPayoutRequestsQueryResult = Apollo.QueryResult<Types.AdminPayoutRequestsQuery, Types.AdminPayoutRequestsQueryVariables>;\nexport const AdminPayoutSummaryDocument = gql`\n query AdminPayoutSummary {\n adminPayoutSummary {\n totalRequestedAmount\n totalProcessingAmount\n totalPaidAmount\n pendingCount\n failedCount\n statusBreakdown {\n status\n count\n totalAmount\n }\n providerBreakdown {\n provider\n count\n totalAmount\n }\n }\n}\n `;\n\n/**\n * __useAdminPayoutSummaryQuery__\n *\n * To run a query within a React component, call `useAdminPayoutSummaryQuery` and pass it any options that fit your needs.\n * When your component renders, `useAdminPayoutSummaryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useAdminPayoutSummaryQuery({\n * variables: {\n * },\n * });\n */\nexport function useAdminPayoutSummaryQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>(AdminPayoutSummaryDocument, options);\n }\nexport function useAdminPayoutSummaryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>(AdminPayoutSummaryDocument, options);\n }\n// @ts-ignore\nexport function useAdminPayoutSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>;\nexport function useAdminPayoutSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.AdminPayoutSummaryQuery | undefined, Types.AdminPayoutSummaryQueryVariables>;\nexport function useAdminPayoutSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>(AdminPayoutSummaryDocument, options);\n }\nexport type AdminPayoutSummaryQueryHookResult = ReturnType<typeof useAdminPayoutSummaryQuery>;\nexport type AdminPayoutSummaryLazyQueryHookResult = ReturnType<typeof useAdminPayoutSummaryLazyQuery>;\nexport type AdminPayoutSummarySuspenseQueryHookResult = ReturnType<typeof useAdminPayoutSummarySuspenseQuery>;\nexport type AdminPayoutSummaryQueryResult = Apollo.QueryResult<Types.AdminPayoutSummaryQuery, Types.AdminPayoutSummaryQueryVariables>;\nexport const BillingDeveloperPortalRevenueDocument = gql`\n query BillingDeveloperPortalRevenue($organizationId: ID!) {\n developerOrgRevenueSummary(organizationId: $organizationId, period: \"monthly\") {\n totalGrossRevenue\n totalNetRevenue\n totalPlatformFees\n totalRefunds\n totalRefundsCount\n totalSales\n pendingBalance\n nextPayoutDate\n nextPayoutAmount\n }\n developerOrgSales(organizationId: $organizationId, limit: 10, offset: 0) {\n edges {\n node {\n id\n grossAmount\n netAmount\n currency\n pricingModel\n status\n purchasedAt\n application {\n id\n name\n slug\n }\n }\n }\n }\n developerOrgPayouts(organizationId: $organizationId, limit: 10, offset: 0) {\n edges {\n node {\n id\n periodLabel\n netAmount\n currency\n status\n scheduledAt\n completedAt\n }\n }\n }\n}\n `;\n\n/**\n * __useBillingDeveloperPortalRevenueQuery__\n *\n * To run a query within a React component, call `useBillingDeveloperPortalRevenueQuery` and pass it any options that fit your needs.\n * When your component renders, `useBillingDeveloperPortalRevenueQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useBillingDeveloperPortalRevenueQuery({\n * variables: {\n * organizationId: // value for 'organizationId'\n * },\n * });\n */\nexport function useBillingDeveloperPortalRevenueQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables> & ({ variables: Types.BillingDeveloperPortalRevenueQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>(BillingDeveloperPortalRevenueDocument, options);\n }\nexport function useBillingDeveloperPortalRevenueLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>(BillingDeveloperPortalRevenueDocument, options);\n }\n// @ts-ignore\nexport function useBillingDeveloperPortalRevenueSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>;\nexport function useBillingDeveloperPortalRevenueSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.BillingDeveloperPortalRevenueQuery | undefined, Types.BillingDeveloperPortalRevenueQueryVariables>;\nexport function useBillingDeveloperPortalRevenueSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>(BillingDeveloperPortalRevenueDocument, options);\n }\nexport type BillingDeveloperPortalRevenueQueryHookResult = ReturnType<typeof useBillingDeveloperPortalRevenueQuery>;\nexport type BillingDeveloperPortalRevenueLazyQueryHookResult = ReturnType<typeof useBillingDeveloperPortalRevenueLazyQuery>;\nexport type BillingDeveloperPortalRevenueSuspenseQueryHookResult = ReturnType<typeof useBillingDeveloperPortalRevenueSuspenseQuery>;\nexport type BillingDeveloperPortalRevenueQueryResult = Apollo.QueryResult<Types.BillingDeveloperPortalRevenueQuery, Types.BillingDeveloperPortalRevenueQueryVariables>;\nexport const MyEarningsEntriesDocument = gql`\n query MyEarningsEntries($billingAccountId: ID!) {\n myEarningsEntries(billingAccountId: $billingAccountId, limit: 50, offset: 0) {\n items {\n id\n sourceCategory\n sourceSubcategory\n description\n unitType\n amount\n currency\n status\n createdAt\n }\n }\n}\n `;\n\n/**\n * __useMyEarningsEntriesQuery__\n *\n * To run a query within a React component, call `useMyEarningsEntriesQuery` and pass it any options that fit your needs.\n * When your component renders, `useMyEarningsEntriesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useMyEarningsEntriesQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useMyEarningsEntriesQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables> & ({ variables: Types.MyEarningsEntriesQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>(MyEarningsEntriesDocument, options);\n }\nexport function useMyEarningsEntriesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>(MyEarningsEntriesDocument, options);\n }\n// @ts-ignore\nexport function useMyEarningsEntriesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>;\nexport function useMyEarningsEntriesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEarningsEntriesQuery | undefined, Types.MyEarningsEntriesQueryVariables>;\nexport function useMyEarningsEntriesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>(MyEarningsEntriesDocument, options);\n }\nexport type MyEarningsEntriesQueryHookResult = ReturnType<typeof useMyEarningsEntriesQuery>;\nexport type MyEarningsEntriesLazyQueryHookResult = ReturnType<typeof useMyEarningsEntriesLazyQuery>;\nexport type MyEarningsEntriesSuspenseQueryHookResult = ReturnType<typeof useMyEarningsEntriesSuspenseQuery>;\nexport type MyEarningsEntriesQueryResult = Apollo.QueryResult<Types.MyEarningsEntriesQuery, Types.MyEarningsEntriesQueryVariables>;\nexport const MyEarningsSummaryDocument = gql`\n query MyEarningsSummary($billingAccountId: ID!) {\n myEarningsSummary(billingAccountId: $billingAccountId) {\n totalLifetimeAmount\n availableAmount\n reservedAmount\n paidAmount\n pendingAmount\n moneyAmount\n creditsAmount\n categoryBreakdown {\n category\n amount\n count\n }\n }\n}\n `;\n\n/**\n * __useMyEarningsSummaryQuery__\n *\n * To run a query within a React component, call `useMyEarningsSummaryQuery` and pass it any options that fit your needs.\n * When your component renders, `useMyEarningsSummaryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useMyEarningsSummaryQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useMyEarningsSummaryQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables> & ({ variables: Types.MyEarningsSummaryQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>(MyEarningsSummaryDocument, options);\n }\nexport function useMyEarningsSummaryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>(MyEarningsSummaryDocument, options);\n }\n// @ts-ignore\nexport function useMyEarningsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>;\nexport function useMyEarningsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyEarningsSummaryQuery | undefined, Types.MyEarningsSummaryQueryVariables>;\nexport function useMyEarningsSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>(MyEarningsSummaryDocument, options);\n }\nexport type MyEarningsSummaryQueryHookResult = ReturnType<typeof useMyEarningsSummaryQuery>;\nexport type MyEarningsSummaryLazyQueryHookResult = ReturnType<typeof useMyEarningsSummaryLazyQuery>;\nexport type MyEarningsSummarySuspenseQueryHookResult = ReturnType<typeof useMyEarningsSummarySuspenseQuery>;\nexport type MyEarningsSummaryQueryResult = Apollo.QueryResult<Types.MyEarningsSummaryQuery, Types.MyEarningsSummaryQueryVariables>;\nexport const MyPayoutAccountsDocument = gql`\n query MyPayoutAccounts($billingAccountId: ID!) {\n myPayoutAccounts(billingAccountId: $billingAccountId) {\n id\n label\n type\n providerPreference\n status\n displayName\n accountLast4\n country\n currency\n isDefault\n }\n}\n `;\n\n/**\n * __useMyPayoutAccountsQuery__\n *\n * To run a query within a React component, call `useMyPayoutAccountsQuery` and pass it any options that fit your needs.\n * When your component renders, `useMyPayoutAccountsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useMyPayoutAccountsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useMyPayoutAccountsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables> & ({ variables: Types.MyPayoutAccountsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>(MyPayoutAccountsDocument, options);\n }\nexport function useMyPayoutAccountsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>(MyPayoutAccountsDocument, options);\n }\n// @ts-ignore\nexport function useMyPayoutAccountsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>;\nexport function useMyPayoutAccountsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPayoutAccountsQuery | undefined, Types.MyPayoutAccountsQueryVariables>;\nexport function useMyPayoutAccountsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>(MyPayoutAccountsDocument, options);\n }\nexport type MyPayoutAccountsQueryHookResult = ReturnType<typeof useMyPayoutAccountsQuery>;\nexport type MyPayoutAccountsLazyQueryHookResult = ReturnType<typeof useMyPayoutAccountsLazyQuery>;\nexport type MyPayoutAccountsSuspenseQueryHookResult = ReturnType<typeof useMyPayoutAccountsSuspenseQuery>;\nexport type MyPayoutAccountsQueryResult = Apollo.QueryResult<Types.MyPayoutAccountsQuery, Types.MyPayoutAccountsQueryVariables>;\nexport const MyPayoutRequestsDocument = gql`\n query MyPayoutRequests($billingAccountId: ID!) {\n myPayoutRequests(billingAccountId: $billingAccountId, limit: 50, offset: 0) {\n items {\n id\n requestedAmount\n approvedAmount\n currency\n provider\n status\n externalReference\n failureReason\n internalNotes\n userNotes\n createdAt\n processedAt\n paidAt\n payoutAccount {\n id\n label\n type\n providerPreference\n status\n displayName\n accountLast4\n country\n currency\n isDefault\n }\n }\n }\n}\n `;\n\n/**\n * __useMyPayoutRequestsQuery__\n *\n * To run a query within a React component, call `useMyPayoutRequestsQuery` and pass it any options that fit your needs.\n * When your component renders, `useMyPayoutRequestsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useMyPayoutRequestsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useMyPayoutRequestsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables> & ({ variables: Types.MyPayoutRequestsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>(MyPayoutRequestsDocument, options);\n }\nexport function useMyPayoutRequestsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>(MyPayoutRequestsDocument, options);\n }\n// @ts-ignore\nexport function useMyPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>;\nexport function useMyPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.MyPayoutRequestsQuery | undefined, Types.MyPayoutRequestsQueryVariables>;\nexport function useMyPayoutRequestsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>(MyPayoutRequestsDocument, options);\n }\nexport type MyPayoutRequestsQueryHookResult = ReturnType<typeof useMyPayoutRequestsQuery>;\nexport type MyPayoutRequestsLazyQueryHookResult = ReturnType<typeof useMyPayoutRequestsLazyQuery>;\nexport type MyPayoutRequestsSuspenseQueryHookResult = ReturnType<typeof useMyPayoutRequestsSuspenseQuery>;\nexport type MyPayoutRequestsQueryResult = Apollo.QueryResult<Types.MyPayoutRequestsQuery, Types.MyPayoutRequestsQueryVariables>;\nexport const CreateEntitlementDocument = gql`\n mutation CreateEntitlement($input: CreateEntitlementInput!) {\n createEntitlement(input: $input) {\n id\n planId\n itemId\n accessType\n discountPercentage\n createdAt\n }\n}\n `;\nexport type CreateEntitlementMutationFn = Apollo.MutationFunction<Types.CreateEntitlementMutation, Types.CreateEntitlementMutationVariables>;\n\n/**\n * __useCreateEntitlementMutation__\n *\n * To run a mutation, you first call `useCreateEntitlementMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateEntitlementMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createEntitlementMutation, { data, loading, error }] = useCreateEntitlementMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateEntitlementMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateEntitlementMutation, Types.CreateEntitlementMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateEntitlementMutation, Types.CreateEntitlementMutationVariables>(CreateEntitlementDocument, options);\n }\nexport type CreateEntitlementMutationHookResult = ReturnType<typeof useCreateEntitlementMutation>;\nexport type CreateEntitlementMutationResult = Apollo.MutationResult<Types.CreateEntitlementMutation>;\nexport type CreateEntitlementMutationOptions = Apollo.BaseMutationOptions<Types.CreateEntitlementMutation, Types.CreateEntitlementMutationVariables>;\nexport const CreatePlanDocument = gql`\n mutation CreatePlan($input: createPlanInput!) {\n createPlan(input: $input)\n}\n `;\nexport type CreatePlanMutationFn = Apollo.MutationFunction<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>;\n\n/**\n * __useCreatePlanMutation__\n *\n * To run a mutation, you first call `useCreatePlanMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreatePlanMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createPlanMutation, { data, loading, error }] = useCreatePlanMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreatePlanMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>(CreatePlanDocument, options);\n }\nexport type CreatePlanMutationHookResult = ReturnType<typeof useCreatePlanMutation>;\nexport type CreatePlanMutationResult = Apollo.MutationResult<Types.CreatePlanMutation>;\nexport type CreatePlanMutationOptions = Apollo.BaseMutationOptions<Types.CreatePlanMutation, Types.CreatePlanMutationVariables>;\nexport const CreateQuotaDocument = gql`\n mutation CreateQuota($input: createQuotaInput!) {\n createQuota(input: $input)\n}\n `;\nexport type CreateQuotaMutationFn = Apollo.MutationFunction<Types.CreateQuotaMutation, Types.CreateQuotaMutationVariables>;\n\n/**\n * __useCreateQuotaMutation__\n *\n * To run a mutation, you first call `useCreateQuotaMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateQuotaMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createQuotaMutation, { data, loading, error }] = useCreateQuotaMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateQuotaMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateQuotaMutation, Types.CreateQuotaMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateQuotaMutation, Types.CreateQuotaMutationVariables>(CreateQuotaDocument, options);\n }\nexport type CreateQuotaMutationHookResult = ReturnType<typeof useCreateQuotaMutation>;\nexport type CreateQuotaMutationResult = Apollo.MutationResult<Types.CreateQuotaMutation>;\nexport type CreateQuotaMutationOptions = Apollo.BaseMutationOptions<Types.CreateQuotaMutation, Types.CreateQuotaMutationVariables>;\nexport const DeleteEntitlementDocument = gql`\n mutation DeleteEntitlement($id: ID!) {\n deleteEntitlement(id: $id)\n}\n `;\nexport type DeleteEntitlementMutationFn = Apollo.MutationFunction<Types.DeleteEntitlementMutation, Types.DeleteEntitlementMutationVariables>;\n\n/**\n * __useDeleteEntitlementMutation__\n *\n * To run a mutation, you first call `useDeleteEntitlementMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useDeleteEntitlementMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [deleteEntitlementMutation, { data, loading, error }] = useDeleteEntitlementMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useDeleteEntitlementMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.DeleteEntitlementMutation, Types.DeleteEntitlementMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.DeleteEntitlementMutation, Types.DeleteEntitlementMutationVariables>(DeleteEntitlementDocument, options);\n }\nexport type DeleteEntitlementMutationHookResult = ReturnType<typeof useDeleteEntitlementMutation>;\nexport type DeleteEntitlementMutationResult = Apollo.MutationResult<Types.DeleteEntitlementMutation>;\nexport type DeleteEntitlementMutationOptions = Apollo.BaseMutationOptions<Types.DeleteEntitlementMutation, Types.DeleteEntitlementMutationVariables>;\nexport const TogglePlanDocument = gql`\n mutation TogglePlan($planID: ID!, $status: Boolean!) {\n togglePlan(planID: $planID, status: $status)\n}\n `;\nexport type TogglePlanMutationFn = Apollo.MutationFunction<Types.TogglePlanMutation, Types.TogglePlanMutationVariables>;\n\n/**\n * __useTogglePlanMutation__\n *\n * To run a mutation, you first call `useTogglePlanMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useTogglePlanMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [togglePlanMutation, { data, loading, error }] = useTogglePlanMutation({\n * variables: {\n * planID: // value for 'planID'\n * status: // value for 'status'\n * },\n * });\n */\nexport function useTogglePlanMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.TogglePlanMutation, Types.TogglePlanMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.TogglePlanMutation, Types.TogglePlanMutationVariables>(TogglePlanDocument, options);\n }\nexport type TogglePlanMutationHookResult = ReturnType<typeof useTogglePlanMutation>;\nexport type TogglePlanMutationResult = Apollo.MutationResult<Types.TogglePlanMutation>;\nexport type TogglePlanMutationOptions = Apollo.BaseMutationOptions<Types.TogglePlanMutation, Types.TogglePlanMutationVariables>;\nexport const UpdateEntitlementDocument = gql`\n mutation UpdateEntitlement($input: UpdateEntitlementInput!) {\n updateEntitlement(input: $input) {\n id\n accessType\n discountPercentage\n updatedAt\n }\n}\n `;\nexport type UpdateEntitlementMutationFn = Apollo.MutationFunction<Types.UpdateEntitlementMutation, Types.UpdateEntitlementMutationVariables>;\n\n/**\n * __useUpdateEntitlementMutation__\n *\n * To run a mutation, you first call `useUpdateEntitlementMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateEntitlementMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateEntitlementMutation, { data, loading, error }] = useUpdateEntitlementMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateEntitlementMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateEntitlementMutation, Types.UpdateEntitlementMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateEntitlementMutation, Types.UpdateEntitlementMutationVariables>(UpdateEntitlementDocument, options);\n }\nexport type UpdateEntitlementMutationHookResult = ReturnType<typeof useUpdateEntitlementMutation>;\nexport type UpdateEntitlementMutationResult = Apollo.MutationResult<Types.UpdateEntitlementMutation>;\nexport type UpdateEntitlementMutationOptions = Apollo.BaseMutationOptions<Types.UpdateEntitlementMutation, Types.UpdateEntitlementMutationVariables>;\nexport const UpdatePlanDocument = gql`\n mutation UpdatePlan($input: updatePlanInput!) {\n updatePlan(input: $input)\n}\n `;\nexport type UpdatePlanMutationFn = Apollo.MutationFunction<Types.UpdatePlanMutation, Types.UpdatePlanMutationVariables>;\n\n/**\n * __useUpdatePlanMutation__\n *\n * To run a mutation, you first call `useUpdatePlanMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdatePlanMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updatePlanMutation, { data, loading, error }] = useUpdatePlanMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdatePlanMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdatePlanMutation, Types.UpdatePlanMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdatePlanMutation, Types.UpdatePlanMutationVariables>(UpdatePlanDocument, options);\n }\nexport type UpdatePlanMutationHookResult = ReturnType<typeof useUpdatePlanMutation>;\nexport type UpdatePlanMutationResult = Apollo.MutationResult<Types.UpdatePlanMutation>;\nexport type UpdatePlanMutationOptions = Apollo.BaseMutationOptions<Types.UpdatePlanMutation, Types.UpdatePlanMutationVariables>;\nexport const UpdateQuotaDocument = gql`\n mutation UpdateQuota($input: updateQuotaInput!) {\n updateQuota(input: $input)\n}\n `;\nexport type UpdateQuotaMutationFn = Apollo.MutationFunction<Types.UpdateQuotaMutation, Types.UpdateQuotaMutationVariables>;\n\n/**\n * __useUpdateQuotaMutation__\n *\n * To run a mutation, you first call `useUpdateQuotaMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateQuotaMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateQuotaMutation, { data, loading, error }] = useUpdateQuotaMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateQuotaMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateQuotaMutation, Types.UpdateQuotaMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateQuotaMutation, Types.UpdateQuotaMutationVariables>(UpdateQuotaDocument, options);\n }\nexport type UpdateQuotaMutationHookResult = ReturnType<typeof useUpdateQuotaMutation>;\nexport type UpdateQuotaMutationResult = Apollo.MutationResult<Types.UpdateQuotaMutation>;\nexport type UpdateQuotaMutationOptions = Apollo.BaseMutationOptions<Types.UpdateQuotaMutation, Types.UpdateQuotaMutationVariables>;\nexport const CheckPlanEntitlementDocument = gql`\n query CheckPlanEntitlement($planId: ID!, $itemId: ID!) {\n checkPlanEntitlement(planId: $planId, itemId: $itemId) {\n id\n accessType\n discountPercentage\n }\n}\n `;\n\n/**\n * __useCheckPlanEntitlementQuery__\n *\n * To run a query within a React component, call `useCheckPlanEntitlementQuery` and pass it any options that fit your needs.\n * When your component renders, `useCheckPlanEntitlementQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCheckPlanEntitlementQuery({\n * variables: {\n * planId: // value for 'planId'\n * itemId: // value for 'itemId'\n * },\n * });\n */\nexport function useCheckPlanEntitlementQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables> & ({ variables: Types.CheckPlanEntitlementQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>(CheckPlanEntitlementDocument, options);\n }\nexport function useCheckPlanEntitlementLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>(CheckPlanEntitlementDocument, options);\n }\n// @ts-ignore\nexport function useCheckPlanEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>;\nexport function useCheckPlanEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckPlanEntitlementQuery | undefined, Types.CheckPlanEntitlementQueryVariables>;\nexport function useCheckPlanEntitlementSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>(CheckPlanEntitlementDocument, options);\n }\nexport type CheckPlanEntitlementQueryHookResult = ReturnType<typeof useCheckPlanEntitlementQuery>;\nexport type CheckPlanEntitlementLazyQueryHookResult = ReturnType<typeof useCheckPlanEntitlementLazyQuery>;\nexport type CheckPlanEntitlementSuspenseQueryHookResult = ReturnType<typeof useCheckPlanEntitlementSuspenseQuery>;\nexport type CheckPlanEntitlementQueryResult = Apollo.QueryResult<Types.CheckPlanEntitlementQuery, Types.CheckPlanEntitlementQueryVariables>;\nexport const GetAllPlansDocument = gql`\n query GetAllPlans($filter: PlansFilter) {\n getAllPlans(filter: $filter) {\n ...PlanWithFeaturesFields\n }\n}\n ${PlanWithFeaturesFieldsFragmentDoc}`;\n\n/**\n * __useGetAllPlansQuery__\n *\n * To run a query within a React component, call `useGetAllPlansQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAllPlansQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAllPlansQuery({\n * variables: {\n * filter: // value for 'filter'\n * },\n * });\n */\nexport function useGetAllPlansQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>(GetAllPlansDocument, options);\n }\nexport function useGetAllPlansLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>(GetAllPlansDocument, options);\n }\n// @ts-ignore\nexport function useGetAllPlansSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>;\nexport function useGetAllPlansSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllPlansQuery | undefined, Types.GetAllPlansQueryVariables>;\nexport function useGetAllPlansSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>(GetAllPlansDocument, options);\n }\nexport type GetAllPlansQueryHookResult = ReturnType<typeof useGetAllPlansQuery>;\nexport type GetAllPlansLazyQueryHookResult = ReturnType<typeof useGetAllPlansLazyQuery>;\nexport type GetAllPlansSuspenseQueryHookResult = ReturnType<typeof useGetAllPlansSuspenseQuery>;\nexport type GetAllPlansQueryResult = Apollo.QueryResult<Types.GetAllPlansQuery, Types.GetAllPlansQueryVariables>;\nexport const GetAllQuotasDocument = gql`\n query GetAllQuotas {\n getAllQuotas {\n ...QuotaFields\n }\n}\n ${QuotaFieldsFragmentDoc}`;\n\n/**\n * __useGetAllQuotasQuery__\n *\n * To run a query within a React component, call `useGetAllQuotasQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAllQuotasQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAllQuotasQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAllQuotasQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>(GetAllQuotasDocument, options);\n }\nexport function useGetAllQuotasLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>(GetAllQuotasDocument, options);\n }\n// @ts-ignore\nexport function useGetAllQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>;\nexport function useGetAllQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotasQuery | undefined, Types.GetAllQuotasQueryVariables>;\nexport function useGetAllQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>(GetAllQuotasDocument, options);\n }\nexport type GetAllQuotasQueryHookResult = ReturnType<typeof useGetAllQuotasQuery>;\nexport type GetAllQuotasLazyQueryHookResult = ReturnType<typeof useGetAllQuotasLazyQuery>;\nexport type GetAllQuotasSuspenseQueryHookResult = ReturnType<typeof useGetAllQuotasSuspenseQuery>;\nexport type GetAllQuotasQueryResult = Apollo.QueryResult<Types.GetAllQuotasQuery, Types.GetAllQuotasQueryVariables>;\nexport const GetPlanDocument = gql`\n query GetPlan($id: ID!) {\n getPlan(id: $id) {\n ...PlanWithFeaturesFields\n }\n}\n ${PlanWithFeaturesFieldsFragmentDoc}`;\n\n/**\n * __useGetPlanQuery__\n *\n * To run a query within a React component, call `useGetPlanQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPlanQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPlanQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetPlanQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPlanQuery, Types.GetPlanQueryVariables> & ({ variables: Types.GetPlanQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPlanQuery, Types.GetPlanQueryVariables>(GetPlanDocument, options);\n }\nexport function useGetPlanLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlanQuery, Types.GetPlanQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPlanQuery, Types.GetPlanQueryVariables>(GetPlanDocument, options);\n }\n// @ts-ignore\nexport function useGetPlanSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanQuery, Types.GetPlanQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanQuery, Types.GetPlanQueryVariables>;\nexport function useGetPlanSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanQuery, Types.GetPlanQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanQuery | undefined, Types.GetPlanQueryVariables>;\nexport function useGetPlanSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanQuery, Types.GetPlanQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPlanQuery, Types.GetPlanQueryVariables>(GetPlanDocument, options);\n }\nexport type GetPlanQueryHookResult = ReturnType<typeof useGetPlanQuery>;\nexport type GetPlanLazyQueryHookResult = ReturnType<typeof useGetPlanLazyQuery>;\nexport type GetPlanSuspenseQueryHookResult = ReturnType<typeof useGetPlanSuspenseQuery>;\nexport type GetPlanQueryResult = Apollo.QueryResult<Types.GetPlanQuery, Types.GetPlanQueryVariables>;\nexport const GetPlanEntitlementsDocument = gql`\n query GetPlanEntitlements($planId: ID!) {\n getPlanEntitlements(planId: $planId) {\n id\n planId\n itemId\n accessType\n discountPercentage\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetPlanEntitlementsQuery__\n *\n * To run a query within a React component, call `useGetPlanEntitlementsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPlanEntitlementsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPlanEntitlementsQuery({\n * variables: {\n * planId: // value for 'planId'\n * },\n * });\n */\nexport function useGetPlanEntitlementsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables> & ({ variables: Types.GetPlanEntitlementsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>(GetPlanEntitlementsDocument, options);\n }\nexport function useGetPlanEntitlementsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>(GetPlanEntitlementsDocument, options);\n }\n// @ts-ignore\nexport function useGetPlanEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>;\nexport function useGetPlanEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPlanEntitlementsQuery | undefined, Types.GetPlanEntitlementsQueryVariables>;\nexport function useGetPlanEntitlementsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>(GetPlanEntitlementsDocument, options);\n }\nexport type GetPlanEntitlementsQueryHookResult = ReturnType<typeof useGetPlanEntitlementsQuery>;\nexport type GetPlanEntitlementsLazyQueryHookResult = ReturnType<typeof useGetPlanEntitlementsLazyQuery>;\nexport type GetPlanEntitlementsSuspenseQueryHookResult = ReturnType<typeof useGetPlanEntitlementsSuspenseQuery>;\nexport type GetPlanEntitlementsQueryResult = Apollo.QueryResult<Types.GetPlanEntitlementsQuery, Types.GetPlanEntitlementsQueryVariables>;\nexport const AddUsageDocument = gql`\n mutation AddUsage($billingAccountId: ID!, $quotaName: String!, $value: Int!, $description: String!, $userId: ID, $productId: String, $hash: String, $tags: JSON) {\n addUsage(\n billingAccountId: $billingAccountId\n quotaName: $quotaName\n value: $value\n description: $description\n userId: $userId\n productId: $productId\n hash: $hash\n tags: $tags\n )\n}\n `;\nexport type AddUsageMutationFn = Apollo.MutationFunction<Types.AddUsageMutation, Types.AddUsageMutationVariables>;\n\n/**\n * __useAddUsageMutation__\n *\n * To run a mutation, you first call `useAddUsageMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddUsageMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addUsageMutation, { data, loading, error }] = useAddUsageMutation({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * quotaName: // value for 'quotaName'\n * value: // value for 'value'\n * description: // value for 'description'\n * userId: // value for 'userId'\n * productId: // value for 'productId'\n * hash: // value for 'hash'\n * tags: // value for 'tags'\n * },\n * });\n */\nexport function useAddUsageMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.AddUsageMutation, Types.AddUsageMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.AddUsageMutation, Types.AddUsageMutationVariables>(AddUsageDocument, options);\n }\nexport type AddUsageMutationHookResult = ReturnType<typeof useAddUsageMutation>;\nexport type AddUsageMutationResult = Apollo.MutationResult<Types.AddUsageMutation>;\nexport type AddUsageMutationOptions = Apollo.BaseMutationOptions<Types.AddUsageMutation, Types.AddUsageMutationVariables>;\nexport const CreateQuotaTemplateDocument = gql`\n mutation CreateQuotaTemplate($input: createQuotaInput!) {\n createQuota(input: $input)\n}\n `;\nexport type CreateQuotaTemplateMutationFn = Apollo.MutationFunction<Types.CreateQuotaTemplateMutation, Types.CreateQuotaTemplateMutationVariables>;\n\n/**\n * __useCreateQuotaTemplateMutation__\n *\n * To run a mutation, you first call `useCreateQuotaTemplateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateQuotaTemplateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createQuotaTemplateMutation, { data, loading, error }] = useCreateQuotaTemplateMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateQuotaTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateQuotaTemplateMutation, Types.CreateQuotaTemplateMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateQuotaTemplateMutation, Types.CreateQuotaTemplateMutationVariables>(CreateQuotaTemplateDocument, options);\n }\nexport type CreateQuotaTemplateMutationHookResult = ReturnType<typeof useCreateQuotaTemplateMutation>;\nexport type CreateQuotaTemplateMutationResult = Apollo.MutationResult<Types.CreateQuotaTemplateMutation>;\nexport type CreateQuotaTemplateMutationOptions = Apollo.BaseMutationOptions<Types.CreateQuotaTemplateMutation, Types.CreateQuotaTemplateMutationVariables>;\nexport const FreeUpUsageDocument = gql`\n mutation FreeUpUsage($billingAccountId: ID!, $quotaName: String!, $value: Int!, $description: String, $userId: ID, $productId: String, $hash: String, $tags: JSON) {\n freeUpUsage(\n billingAccountId: $billingAccountId\n quotaName: $quotaName\n value: $value\n description: $description\n userId: $userId\n productId: $productId\n hash: $hash\n tags: $tags\n )\n}\n `;\nexport type FreeUpUsageMutationFn = Apollo.MutationFunction<Types.FreeUpUsageMutation, Types.FreeUpUsageMutationVariables>;\n\n/**\n * __useFreeUpUsageMutation__\n *\n * To run a mutation, you first call `useFreeUpUsageMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useFreeUpUsageMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [freeUpUsageMutation, { data, loading, error }] = useFreeUpUsageMutation({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * quotaName: // value for 'quotaName'\n * value: // value for 'value'\n * description: // value for 'description'\n * userId: // value for 'userId'\n * productId: // value for 'productId'\n * hash: // value for 'hash'\n * tags: // value for 'tags'\n * },\n * });\n */\nexport function useFreeUpUsageMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.FreeUpUsageMutation, Types.FreeUpUsageMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.FreeUpUsageMutation, Types.FreeUpUsageMutationVariables>(FreeUpUsageDocument, options);\n }\nexport type FreeUpUsageMutationHookResult = ReturnType<typeof useFreeUpUsageMutation>;\nexport type FreeUpUsageMutationResult = Apollo.MutationResult<Types.FreeUpUsageMutation>;\nexport type FreeUpUsageMutationOptions = Apollo.BaseMutationOptions<Types.FreeUpUsageMutation, Types.FreeUpUsageMutationVariables>;\nexport const UpdateQuotaTemplateDocument = gql`\n mutation UpdateQuotaTemplate($input: updateQuotaInput!) {\n updateQuota(input: $input)\n}\n `;\nexport type UpdateQuotaTemplateMutationFn = Apollo.MutationFunction<Types.UpdateQuotaTemplateMutation, Types.UpdateQuotaTemplateMutationVariables>;\n\n/**\n * __useUpdateQuotaTemplateMutation__\n *\n * To run a mutation, you first call `useUpdateQuotaTemplateMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateQuotaTemplateMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateQuotaTemplateMutation, { data, loading, error }] = useUpdateQuotaTemplateMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateQuotaTemplateMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateQuotaTemplateMutation, Types.UpdateQuotaTemplateMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateQuotaTemplateMutation, Types.UpdateQuotaTemplateMutationVariables>(UpdateQuotaTemplateDocument, options);\n }\nexport type UpdateQuotaTemplateMutationHookResult = ReturnType<typeof useUpdateQuotaTemplateMutation>;\nexport type UpdateQuotaTemplateMutationResult = Apollo.MutationResult<Types.UpdateQuotaTemplateMutation>;\nexport type UpdateQuotaTemplateMutationOptions = Apollo.BaseMutationOptions<Types.UpdateQuotaTemplateMutation, Types.UpdateQuotaTemplateMutationVariables>;\nexport const CheckQuotaExhaustedDocument = gql`\n query CheckQuotaExhausted($billingAccountId: ID!, $quotaName: String!, $productId: String) {\n checkQuotaExhausted(\n billingAccountId: $billingAccountId\n quotaName: $quotaName\n productId: $productId\n ) {\n limitLeft\n noLimit\n }\n}\n `;\n\n/**\n * __useCheckQuotaExhaustedQuery__\n *\n * To run a query within a React component, call `useCheckQuotaExhaustedQuery` and pass it any options that fit your needs.\n * When your component renders, `useCheckQuotaExhaustedQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useCheckQuotaExhaustedQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * quotaName: // value for 'quotaName'\n * productId: // value for 'productId'\n * },\n * });\n */\nexport function useCheckQuotaExhaustedQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables> & ({ variables: Types.CheckQuotaExhaustedQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>(CheckQuotaExhaustedDocument, options);\n }\nexport function useCheckQuotaExhaustedLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>(CheckQuotaExhaustedDocument, options);\n }\n// @ts-ignore\nexport function useCheckQuotaExhaustedSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>;\nexport function useCheckQuotaExhaustedSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.CheckQuotaExhaustedQuery | undefined, Types.CheckQuotaExhaustedQueryVariables>;\nexport function useCheckQuotaExhaustedSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>(CheckQuotaExhaustedDocument, options);\n }\nexport type CheckQuotaExhaustedQueryHookResult = ReturnType<typeof useCheckQuotaExhaustedQuery>;\nexport type CheckQuotaExhaustedLazyQueryHookResult = ReturnType<typeof useCheckQuotaExhaustedLazyQuery>;\nexport type CheckQuotaExhaustedSuspenseQueryHookResult = ReturnType<typeof useCheckQuotaExhaustedSuspenseQuery>;\nexport type CheckQuotaExhaustedQueryResult = Apollo.QueryResult<Types.CheckQuotaExhaustedQuery, Types.CheckQuotaExhaustedQueryVariables>;\nexport const GetAllQuotaTemplatesDocument = gql`\n query GetAllQuotaTemplates {\n getAllQuotas {\n ...QuotaTemplateFields\n }\n}\n ${QuotaTemplateFieldsFragmentDoc}`;\n\n/**\n * __useGetAllQuotaTemplatesQuery__\n *\n * To run a query within a React component, call `useGetAllQuotaTemplatesQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAllQuotaTemplatesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAllQuotaTemplatesQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetAllQuotaTemplatesQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>(GetAllQuotaTemplatesDocument, options);\n }\nexport function useGetAllQuotaTemplatesLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>(GetAllQuotaTemplatesDocument, options);\n }\n// @ts-ignore\nexport function useGetAllQuotaTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>;\nexport function useGetAllQuotaTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotaTemplatesQuery | undefined, Types.GetAllQuotaTemplatesQueryVariables>;\nexport function useGetAllQuotaTemplatesSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>(GetAllQuotaTemplatesDocument, options);\n }\nexport type GetAllQuotaTemplatesQueryHookResult = ReturnType<typeof useGetAllQuotaTemplatesQuery>;\nexport type GetAllQuotaTemplatesLazyQueryHookResult = ReturnType<typeof useGetAllQuotaTemplatesLazyQuery>;\nexport type GetAllQuotaTemplatesSuspenseQueryHookResult = ReturnType<typeof useGetAllQuotaTemplatesSuspenseQuery>;\nexport type GetAllQuotaTemplatesQueryResult = Apollo.QueryResult<Types.GetAllQuotaTemplatesQuery, Types.GetAllQuotaTemplatesQueryVariables>;\nexport const GetAllQuotasAssignmentDocument = gql`\n query GetAllQuotasAssignment($billingAccountId: ID!, $page: Int, $pageSize: Int, $searchQuery: String, $status: [QuotaStatus!], $fromDate: DateTime, $toDate: DateTime, $sortBy: String, $sortOrder: String) {\n getAllQuotasAssignment(\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n searchQuery: $searchQuery\n status: $status\n fromDate: $fromDate\n toDate: $toDate\n sortBy: $sortBy\n sortOrder: $sortOrder\n ) {\n quotaAssignments {\n ...QuotaAssignmentFields\n }\n page\n pageSize\n totalCount\n totalPages\n }\n}\n ${QuotaAssignmentFieldsFragmentDoc}`;\n\n/**\n * __useGetAllQuotasAssignmentQuery__\n *\n * To run a query within a React component, call `useGetAllQuotasAssignmentQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetAllQuotasAssignmentQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetAllQuotasAssignmentQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * searchQuery: // value for 'searchQuery'\n * status: // value for 'status'\n * fromDate: // value for 'fromDate'\n * toDate: // value for 'toDate'\n * sortBy: // value for 'sortBy'\n * sortOrder: // value for 'sortOrder'\n * },\n * });\n */\nexport function useGetAllQuotasAssignmentQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables> & ({ variables: Types.GetAllQuotasAssignmentQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>(GetAllQuotasAssignmentDocument, options);\n }\nexport function useGetAllQuotasAssignmentLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>(GetAllQuotasAssignmentDocument, options);\n }\n// @ts-ignore\nexport function useGetAllQuotasAssignmentSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>;\nexport function useGetAllQuotasAssignmentSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetAllQuotasAssignmentQuery | undefined, Types.GetAllQuotasAssignmentQueryVariables>;\nexport function useGetAllQuotasAssignmentSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>(GetAllQuotasAssignmentDocument, options);\n }\nexport type GetAllQuotasAssignmentQueryHookResult = ReturnType<typeof useGetAllQuotasAssignmentQuery>;\nexport type GetAllQuotasAssignmentLazyQueryHookResult = ReturnType<typeof useGetAllQuotasAssignmentLazyQuery>;\nexport type GetAllQuotasAssignmentSuspenseQueryHookResult = ReturnType<typeof useGetAllQuotasAssignmentSuspenseQuery>;\nexport type GetAllQuotasAssignmentQueryResult = Apollo.QueryResult<Types.GetAllQuotasAssignmentQuery, Types.GetAllQuotasAssignmentQueryVariables>;\nexport const GetBillingAccountQuotasSummaryDocument = gql`\n query GetBillingAccountQuotasSummary($billingAccountId: ID!, $productId: String) {\n getBillingAccountQuotasSummary(\n billingAccountId: $billingAccountId\n productId: $productId\n ) {\n billingAccountId\n totalUsage\n totalLimit\n pooledQuotas {\n id\n name\n quotaType\n reusable\n limit\n limitLeft\n used\n usagePercentage\n noLimit\n createdAt\n endtime\n }\n subscriptionQuotas {\n id\n name\n quotaType\n reusable\n limit\n limitLeft\n used\n usagePercentage\n noLimit\n subscriptionId\n createdAt\n endtime\n }\n }\n}\n `;\n\n/**\n * __useGetBillingAccountQuotasSummaryQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountQuotasSummaryQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountQuotasSummaryQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountQuotasSummaryQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * productId: // value for 'productId'\n * },\n * });\n */\nexport function useGetBillingAccountQuotasSummaryQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables> & ({ variables: Types.GetBillingAccountQuotasSummaryQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>(GetBillingAccountQuotasSummaryDocument, options);\n }\nexport function useGetBillingAccountQuotasSummaryLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>(GetBillingAccountQuotasSummaryDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountQuotasSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>;\nexport function useGetBillingAccountQuotasSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuotasSummaryQuery | undefined, Types.GetBillingAccountQuotasSummaryQueryVariables>;\nexport function useGetBillingAccountQuotasSummarySuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>(GetBillingAccountQuotasSummaryDocument, options);\n }\nexport type GetBillingAccountQuotasSummaryQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummaryQuery>;\nexport type GetBillingAccountQuotasSummaryLazyQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummaryLazyQuery>;\nexport type GetBillingAccountQuotasSummarySuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummarySuspenseQuery>;\nexport type GetBillingAccountQuotasSummaryQueryResult = Apollo.QueryResult<Types.GetBillingAccountQuotasSummaryQuery, Types.GetBillingAccountQuotasSummaryQueryVariables>;\nexport const GetQuotaAnalyticsDocument = gql`\n query GetQuotaAnalytics($quotaAssignmentId: ID!, $billingAccountId: ID!, $period: AnalyticsPeriod) {\n getQuotaAnalytics(\n quotaAssignmentId: $quotaAssignmentId\n billingAccountId: $billingAccountId\n period: $period\n ) {\n ...QuotaUsageAnalyticsFields\n }\n}\n ${QuotaUsageAnalyticsFieldsFragmentDoc}`;\n\n/**\n * __useGetQuotaAnalyticsQuery__\n *\n * To run a query within a React component, call `useGetQuotaAnalyticsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetQuotaAnalyticsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetQuotaAnalyticsQuery({\n * variables: {\n * quotaAssignmentId: // value for 'quotaAssignmentId'\n * billingAccountId: // value for 'billingAccountId'\n * period: // value for 'period'\n * },\n * });\n */\nexport function useGetQuotaAnalyticsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables> & ({ variables: Types.GetQuotaAnalyticsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>(GetQuotaAnalyticsDocument, options);\n }\nexport function useGetQuotaAnalyticsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>(GetQuotaAnalyticsDocument, options);\n }\n// @ts-ignore\nexport function useGetQuotaAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>;\nexport function useGetQuotaAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAnalyticsQuery | undefined, Types.GetQuotaAnalyticsQueryVariables>;\nexport function useGetQuotaAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>(GetQuotaAnalyticsDocument, options);\n }\nexport type GetQuotaAnalyticsQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsQuery>;\nexport type GetQuotaAnalyticsLazyQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsLazyQuery>;\nexport type GetQuotaAnalyticsSuspenseQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsSuspenseQuery>;\nexport type GetQuotaAnalyticsQueryResult = Apollo.QueryResult<Types.GetQuotaAnalyticsQuery, Types.GetQuotaAnalyticsQueryVariables>;\nexport const GetQuotaAssignmentsWithAnalyticsDocument = gql`\n query GetQuotaAssignmentsWithAnalytics($billingAccountId: ID!, $page: Int, $pageSize: Int, $searchQuery: String, $status: [QuotaStatus!], $fromDate: DateTime, $toDate: DateTime, $sortBy: String, $sortOrder: String) {\n getQuotaAssignmentsWithAnalytics(\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n searchQuery: $searchQuery\n status: $status\n fromDate: $fromDate\n toDate: $toDate\n sortBy: $sortBy\n sortOrder: $sortOrder\n ) {\n quotaAssignments {\n ...QuotaAssignmentWithAnalyticsFields\n }\n page\n pageSize\n totalCount\n totalPages\n }\n}\n ${QuotaAssignmentWithAnalyticsFieldsFragmentDoc}`;\n\n/**\n * __useGetQuotaAssignmentsWithAnalyticsQuery__\n *\n * To run a query within a React component, call `useGetQuotaAssignmentsWithAnalyticsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetQuotaAssignmentsWithAnalyticsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetQuotaAssignmentsWithAnalyticsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * searchQuery: // value for 'searchQuery'\n * status: // value for 'status'\n * fromDate: // value for 'fromDate'\n * toDate: // value for 'toDate'\n * sortBy: // value for 'sortBy'\n * sortOrder: // value for 'sortOrder'\n * },\n * });\n */\nexport function useGetQuotaAssignmentsWithAnalyticsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables> & ({ variables: Types.GetQuotaAssignmentsWithAnalyticsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>(GetQuotaAssignmentsWithAnalyticsDocument, options);\n }\nexport function useGetQuotaAssignmentsWithAnalyticsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>(GetQuotaAssignmentsWithAnalyticsDocument, options);\n }\n// @ts-ignore\nexport function useGetQuotaAssignmentsWithAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>;\nexport function useGetQuotaAssignmentsWithAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAssignmentsWithAnalyticsQuery | undefined, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>;\nexport function useGetQuotaAssignmentsWithAnalyticsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>(GetQuotaAssignmentsWithAnalyticsDocument, options);\n }\nexport type GetQuotaAssignmentsWithAnalyticsQueryHookResult = ReturnType<typeof useGetQuotaAssignmentsWithAnalyticsQuery>;\nexport type GetQuotaAssignmentsWithAnalyticsLazyQueryHookResult = ReturnType<typeof useGetQuotaAssignmentsWithAnalyticsLazyQuery>;\nexport type GetQuotaAssignmentsWithAnalyticsSuspenseQueryHookResult = ReturnType<typeof useGetQuotaAssignmentsWithAnalyticsSuspenseQuery>;\nexport type GetQuotaAssignmentsWithAnalyticsQueryResult = Apollo.QueryResult<Types.GetQuotaAssignmentsWithAnalyticsQuery, Types.GetQuotaAssignmentsWithAnalyticsQueryVariables>;\nexport const GetQuotaUsageAndLimitDocument = gql`\n query GetQuotaUsageAndLimit($billingAccountId: ID!, $quotaName: String!, $productId: String) {\n getQuotaUsageAndLimit(\n billingAccountId: $billingAccountId\n quotaName: $quotaName\n productId: $productId\n ) {\n limit\n limitLeft\n noLimit\n }\n}\n `;\n\n/**\n * __useGetQuotaUsageAndLimitQuery__\n *\n * To run a query within a React component, call `useGetQuotaUsageAndLimitQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetQuotaUsageAndLimitQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetQuotaUsageAndLimitQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * quotaName: // value for 'quotaName'\n * productId: // value for 'productId'\n * },\n * });\n */\nexport function useGetQuotaUsageAndLimitQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables> & ({ variables: Types.GetQuotaUsageAndLimitQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>(GetQuotaUsageAndLimitDocument, options);\n }\nexport function useGetQuotaUsageAndLimitLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>(GetQuotaUsageAndLimitDocument, options);\n }\n// @ts-ignore\nexport function useGetQuotaUsageAndLimitSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>;\nexport function useGetQuotaUsageAndLimitSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaUsageAndLimitQuery | undefined, Types.GetQuotaUsageAndLimitQueryVariables>;\nexport function useGetQuotaUsageAndLimitSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>(GetQuotaUsageAndLimitDocument, options);\n }\nexport type GetQuotaUsageAndLimitQueryHookResult = ReturnType<typeof useGetQuotaUsageAndLimitQuery>;\nexport type GetQuotaUsageAndLimitLazyQueryHookResult = ReturnType<typeof useGetQuotaUsageAndLimitLazyQuery>;\nexport type GetQuotaUsageAndLimitSuspenseQueryHookResult = ReturnType<typeof useGetQuotaUsageAndLimitSuspenseQuery>;\nexport type GetQuotaUsageAndLimitQueryResult = Apollo.QueryResult<Types.GetQuotaUsageAndLimitQuery, Types.GetQuotaUsageAndLimitQueryVariables>;\nexport const ArchiveBillingAccountSettingsDocument = gql`\n mutation ArchiveBillingAccountSettings($id: ID!, $reason: String, $replacementDefaultBillingAccountId: ID) {\n archiveBillingAccount(\n id: $id\n reason: $reason\n replacementDefaultBillingAccountId: $replacementDefaultBillingAccountId\n ) {\n id\n isActive\n isDefault\n }\n}\n `;\nexport type ArchiveBillingAccountSettingsMutationFn = Apollo.MutationFunction<Types.ArchiveBillingAccountSettingsMutation, Types.ArchiveBillingAccountSettingsMutationVariables>;\n\n/**\n * __useArchiveBillingAccountSettingsMutation__\n *\n * To run a mutation, you first call `useArchiveBillingAccountSettingsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useArchiveBillingAccountSettingsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [archiveBillingAccountSettingsMutation, { data, loading, error }] = useArchiveBillingAccountSettingsMutation({\n * variables: {\n * id: // value for 'id'\n * reason: // value for 'reason'\n * replacementDefaultBillingAccountId: // value for 'replacementDefaultBillingAccountId'\n * },\n * });\n */\nexport function useArchiveBillingAccountSettingsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.ArchiveBillingAccountSettingsMutation, Types.ArchiveBillingAccountSettingsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.ArchiveBillingAccountSettingsMutation, Types.ArchiveBillingAccountSettingsMutationVariables>(ArchiveBillingAccountSettingsDocument, options);\n }\nexport type ArchiveBillingAccountSettingsMutationHookResult = ReturnType<typeof useArchiveBillingAccountSettingsMutation>;\nexport type ArchiveBillingAccountSettingsMutationResult = Apollo.MutationResult<Types.ArchiveBillingAccountSettingsMutation>;\nexport type ArchiveBillingAccountSettingsMutationOptions = Apollo.BaseMutationOptions<Types.ArchiveBillingAccountSettingsMutation, Types.ArchiveBillingAccountSettingsMutationVariables>;\nexport const SetDefaultBillingAccountSettingsDocument = gql`\n mutation SetDefaultBillingAccountSettings($id: ID!) {\n setDefaultBillingAccount(id: $id) {\n id\n name\n email\n isActive\n isDefault\n updatedAt\n }\n}\n `;\nexport type SetDefaultBillingAccountSettingsMutationFn = Apollo.MutationFunction<Types.SetDefaultBillingAccountSettingsMutation, Types.SetDefaultBillingAccountSettingsMutationVariables>;\n\n/**\n * __useSetDefaultBillingAccountSettingsMutation__\n *\n * To run a mutation, you first call `useSetDefaultBillingAccountSettingsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSetDefaultBillingAccountSettingsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [setDefaultBillingAccountSettingsMutation, { data, loading, error }] = useSetDefaultBillingAccountSettingsMutation({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useSetDefaultBillingAccountSettingsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SetDefaultBillingAccountSettingsMutation, Types.SetDefaultBillingAccountSettingsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SetDefaultBillingAccountSettingsMutation, Types.SetDefaultBillingAccountSettingsMutationVariables>(SetDefaultBillingAccountSettingsDocument, options);\n }\nexport type SetDefaultBillingAccountSettingsMutationHookResult = ReturnType<typeof useSetDefaultBillingAccountSettingsMutation>;\nexport type SetDefaultBillingAccountSettingsMutationResult = Apollo.MutationResult<Types.SetDefaultBillingAccountSettingsMutation>;\nexport type SetDefaultBillingAccountSettingsMutationOptions = Apollo.BaseMutationOptions<Types.SetDefaultBillingAccountSettingsMutation, Types.SetDefaultBillingAccountSettingsMutationVariables>;\nexport const UpdateBillingAccountSettingsDocument = gql`\n mutation UpdateBillingAccountSettings($input: UpdateBillingAccountInput!) {\n updateBillingAccount(input: $input) {\n id\n name\n email\n billingEmail\n taxId\n currency\n isActive\n isDefault\n updatedAt\n }\n}\n `;\nexport type UpdateBillingAccountSettingsMutationFn = Apollo.MutationFunction<Types.UpdateBillingAccountSettingsMutation, Types.UpdateBillingAccountSettingsMutationVariables>;\n\n/**\n * __useUpdateBillingAccountSettingsMutation__\n *\n * To run a mutation, you first call `useUpdateBillingAccountSettingsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateBillingAccountSettingsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateBillingAccountSettingsMutation, { data, loading, error }] = useUpdateBillingAccountSettingsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateBillingAccountSettingsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateBillingAccountSettingsMutation, Types.UpdateBillingAccountSettingsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateBillingAccountSettingsMutation, Types.UpdateBillingAccountSettingsMutationVariables>(UpdateBillingAccountSettingsDocument, options);\n }\nexport type UpdateBillingAccountSettingsMutationHookResult = ReturnType<typeof useUpdateBillingAccountSettingsMutation>;\nexport type UpdateBillingAccountSettingsMutationResult = Apollo.MutationResult<Types.UpdateBillingAccountSettingsMutation>;\nexport type UpdateBillingAccountSettingsMutationOptions = Apollo.BaseMutationOptions<Types.UpdateBillingAccountSettingsMutation, Types.UpdateBillingAccountSettingsMutationVariables>;\nexport const GetBillingAccountSettingsDocument = gql`\n query GetBillingAccountSettings($id: ID!) {\n getBillingAccount(id: $id) {\n id\n orgId\n name\n email\n billingEmail\n currency\n creditAmount\n isActive\n isDefault\n taxId\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetBillingAccountSettingsQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountSettingsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountSettingsQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetBillingAccountSettingsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables> & ({ variables: Types.GetBillingAccountSettingsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>(GetBillingAccountSettingsDocument, options);\n }\nexport function useGetBillingAccountSettingsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>(GetBillingAccountSettingsDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>;\nexport function useGetBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountSettingsQuery | undefined, Types.GetBillingAccountSettingsQueryVariables>;\nexport function useGetBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>(GetBillingAccountSettingsDocument, options);\n }\nexport type GetBillingAccountSettingsQueryHookResult = ReturnType<typeof useGetBillingAccountSettingsQuery>;\nexport type GetBillingAccountSettingsLazyQueryHookResult = ReturnType<typeof useGetBillingAccountSettingsLazyQuery>;\nexport type GetBillingAccountSettingsSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountSettingsSuspenseQuery>;\nexport type GetBillingAccountSettingsQueryResult = Apollo.QueryResult<Types.GetBillingAccountSettingsQuery, Types.GetBillingAccountSettingsQueryVariables>;\nexport const GetBillingAccountsSettingsDocument = gql`\n query GetBillingAccountsSettings {\n getBillingAccountsByOrg {\n id\n orgId\n name\n email\n isActive\n isDefault\n }\n}\n `;\n\n/**\n * __useGetBillingAccountsSettingsQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountsSettingsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountsSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountsSettingsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAccountsSettingsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>(GetBillingAccountsSettingsDocument, options);\n }\nexport function useGetBillingAccountsSettingsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>(GetBillingAccountsSettingsDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountsSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>;\nexport function useGetBillingAccountsSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsSettingsQuery | undefined, Types.GetBillingAccountsSettingsQueryVariables>;\nexport function useGetBillingAccountsSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>(GetBillingAccountsSettingsDocument, options);\n }\nexport type GetBillingAccountsSettingsQueryHookResult = ReturnType<typeof useGetBillingAccountsSettingsQuery>;\nexport type GetBillingAccountsSettingsLazyQueryHookResult = ReturnType<typeof useGetBillingAccountsSettingsLazyQuery>;\nexport type GetBillingAccountsSettingsSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountsSettingsSuspenseQuery>;\nexport type GetBillingAccountsSettingsQueryResult = Apollo.QueryResult<Types.GetBillingAccountsSettingsQuery, Types.GetBillingAccountsSettingsQueryVariables>;\nexport const GetDefaultBillingAccountSettingsDocument = gql`\n query GetDefaultBillingAccountSettings {\n getDefaultBillingAccount {\n id\n orgId\n name\n email\n billingEmail\n currency\n creditAmount\n isActive\n isDefault\n taxId\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetDefaultBillingAccountSettingsQuery__\n *\n * To run a query within a React component, call `useGetDefaultBillingAccountSettingsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDefaultBillingAccountSettingsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDefaultBillingAccountSettingsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetDefaultBillingAccountSettingsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>(GetDefaultBillingAccountSettingsDocument, options);\n }\nexport function useGetDefaultBillingAccountSettingsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>(GetDefaultBillingAccountSettingsDocument, options);\n }\n// @ts-ignore\nexport function useGetDefaultBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>;\nexport function useGetDefaultBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountSettingsQuery | undefined, Types.GetDefaultBillingAccountSettingsQueryVariables>;\nexport function useGetDefaultBillingAccountSettingsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>(GetDefaultBillingAccountSettingsDocument, options);\n }\nexport type GetDefaultBillingAccountSettingsQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountSettingsQuery>;\nexport type GetDefaultBillingAccountSettingsLazyQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountSettingsLazyQuery>;\nexport type GetDefaultBillingAccountSettingsSuspenseQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountSettingsSuspenseQuery>;\nexport type GetDefaultBillingAccountSettingsQueryResult = Apollo.QueryResult<Types.GetDefaultBillingAccountSettingsQuery, Types.GetDefaultBillingAccountSettingsQueryVariables>;\nexport const UpdateSubscriptionSeatsDocument = gql`\n mutation UpdateSubscriptionSeats($input: UpdateSubscriptionSeatsInput!) {\n updateSubscriptionSeats(input: $input) {\n ...SubscriptionFields\n }\n}\n ${SubscriptionFieldsFragmentDoc}`;\nexport type UpdateSubscriptionSeatsMutationFn = Apollo.MutationFunction<Types.UpdateSubscriptionSeatsMutation, Types.UpdateSubscriptionSeatsMutationVariables>;\n\n/**\n * __useUpdateSubscriptionSeatsMutation__\n *\n * To run a mutation, you first call `useUpdateSubscriptionSeatsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateSubscriptionSeatsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateSubscriptionSeatsMutation, { data, loading, error }] = useUpdateSubscriptionSeatsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateSubscriptionSeatsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateSubscriptionSeatsMutation, Types.UpdateSubscriptionSeatsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateSubscriptionSeatsMutation, Types.UpdateSubscriptionSeatsMutationVariables>(UpdateSubscriptionSeatsDocument, options);\n }\nexport type UpdateSubscriptionSeatsMutationHookResult = ReturnType<typeof useUpdateSubscriptionSeatsMutation>;\nexport type UpdateSubscriptionSeatsMutationResult = Apollo.MutationResult<Types.UpdateSubscriptionSeatsMutation>;\nexport type UpdateSubscriptionSeatsMutationOptions = Apollo.BaseMutationOptions<Types.UpdateSubscriptionSeatsMutation, Types.UpdateSubscriptionSeatsMutationVariables>;\nexport const CancelSubscriptionDocument = gql`\n mutation CancelSubscription($input: CancelSubscriptionInput!) {\n cancelSubscription(input: $input) {\n ...SubscriptionFields\n }\n}\n ${SubscriptionFieldsFragmentDoc}`;\nexport type CancelSubscriptionMutationFn = Apollo.MutationFunction<Types.CancelSubscriptionMutation, Types.CancelSubscriptionMutationVariables>;\n\n/**\n * __useCancelSubscriptionMutation__\n *\n * To run a mutation, you first call `useCancelSubscriptionMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCancelSubscriptionMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [cancelSubscriptionMutation, { data, loading, error }] = useCancelSubscriptionMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCancelSubscriptionMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CancelSubscriptionMutation, Types.CancelSubscriptionMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CancelSubscriptionMutation, Types.CancelSubscriptionMutationVariables>(CancelSubscriptionDocument, options);\n }\nexport type CancelSubscriptionMutationHookResult = ReturnType<typeof useCancelSubscriptionMutation>;\nexport type CancelSubscriptionMutationResult = Apollo.MutationResult<Types.CancelSubscriptionMutation>;\nexport type CancelSubscriptionMutationOptions = Apollo.BaseMutationOptions<Types.CancelSubscriptionMutation, Types.CancelSubscriptionMutationVariables>;\nexport const CreateBillingAccountSubscriptionsDocument = gql`\n mutation CreateBillingAccountSubscriptions($input: CreateBillingAccountInput!) {\n createBillingAccount(input: $input) {\n id\n orgId\n name\n email\n currency\n isActive\n createdAt\n }\n}\n `;\nexport type CreateBillingAccountSubscriptionsMutationFn = Apollo.MutationFunction<Types.CreateBillingAccountSubscriptionsMutation, Types.CreateBillingAccountSubscriptionsMutationVariables>;\n\n/**\n * __useCreateBillingAccountSubscriptionsMutation__\n *\n * To run a mutation, you first call `useCreateBillingAccountSubscriptionsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useCreateBillingAccountSubscriptionsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [createBillingAccountSubscriptionsMutation, { data, loading, error }] = useCreateBillingAccountSubscriptionsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useCreateBillingAccountSubscriptionsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.CreateBillingAccountSubscriptionsMutation, Types.CreateBillingAccountSubscriptionsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.CreateBillingAccountSubscriptionsMutation, Types.CreateBillingAccountSubscriptionsMutationVariables>(CreateBillingAccountSubscriptionsDocument, options);\n }\nexport type CreateBillingAccountSubscriptionsMutationHookResult = ReturnType<typeof useCreateBillingAccountSubscriptionsMutation>;\nexport type CreateBillingAccountSubscriptionsMutationResult = Apollo.MutationResult<Types.CreateBillingAccountSubscriptionsMutation>;\nexport type CreateBillingAccountSubscriptionsMutationOptions = Apollo.BaseMutationOptions<Types.CreateBillingAccountSubscriptionsMutation, Types.CreateBillingAccountSubscriptionsMutationVariables>;\nexport const InitiatePaymentSubscriptionsDocument = gql`\n mutation InitiatePaymentSubscriptions($input: InitiatePaymentInput!) {\n initiatePayment(input: $input) {\n success\n provider\n clientSecret\n orderId\n razorpayKeyId\n subtotal\n taxAmount\n taxRate\n taxType\n taxBreakdown\n jurisdiction\n total\n currency\n error\n }\n}\n `;\nexport type InitiatePaymentSubscriptionsMutationFn = Apollo.MutationFunction<Types.InitiatePaymentSubscriptionsMutation, Types.InitiatePaymentSubscriptionsMutationVariables>;\n\n/**\n * __useInitiatePaymentSubscriptionsMutation__\n *\n * To run a mutation, you first call `useInitiatePaymentSubscriptionsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useInitiatePaymentSubscriptionsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [initiatePaymentSubscriptionsMutation, { data, loading, error }] = useInitiatePaymentSubscriptionsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useInitiatePaymentSubscriptionsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.InitiatePaymentSubscriptionsMutation, Types.InitiatePaymentSubscriptionsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.InitiatePaymentSubscriptionsMutation, Types.InitiatePaymentSubscriptionsMutationVariables>(InitiatePaymentSubscriptionsDocument, options);\n }\nexport type InitiatePaymentSubscriptionsMutationHookResult = ReturnType<typeof useInitiatePaymentSubscriptionsMutation>;\nexport type InitiatePaymentSubscriptionsMutationResult = Apollo.MutationResult<Types.InitiatePaymentSubscriptionsMutation>;\nexport type InitiatePaymentSubscriptionsMutationOptions = Apollo.BaseMutationOptions<Types.InitiatePaymentSubscriptionsMutation, Types.InitiatePaymentSubscriptionsMutationVariables>;\nexport const SpendCreditsSubscriptionsDocument = gql`\n mutation SpendCreditsSubscriptions($input: SpendCreditsInput!) {\n spendCredits(input: $input) {\n creditTransactionID\n }\n}\n `;\nexport type SpendCreditsSubscriptionsMutationFn = Apollo.MutationFunction<Types.SpendCreditsSubscriptionsMutation, Types.SpendCreditsSubscriptionsMutationVariables>;\n\n/**\n * __useSpendCreditsSubscriptionsMutation__\n *\n * To run a mutation, you first call `useSpendCreditsSubscriptionsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useSpendCreditsSubscriptionsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [spendCreditsSubscriptionsMutation, { data, loading, error }] = useSpendCreditsSubscriptionsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useSpendCreditsSubscriptionsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.SpendCreditsSubscriptionsMutation, Types.SpendCreditsSubscriptionsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.SpendCreditsSubscriptionsMutation, Types.SpendCreditsSubscriptionsMutationVariables>(SpendCreditsSubscriptionsDocument, options);\n }\nexport type SpendCreditsSubscriptionsMutationHookResult = ReturnType<typeof useSpendCreditsSubscriptionsMutation>;\nexport type SpendCreditsSubscriptionsMutationResult = Apollo.MutationResult<Types.SpendCreditsSubscriptionsMutation>;\nexport type SpendCreditsSubscriptionsMutationOptions = Apollo.BaseMutationOptions<Types.SpendCreditsSubscriptionsMutation, Types.SpendCreditsSubscriptionsMutationVariables>;\nexport const UpdateBillingAccountSubscriptionsDocument = gql`\n mutation UpdateBillingAccountSubscriptions($input: UpdateBillingAccountInput!) {\n updateBillingAccount(input: $input) {\n id\n name\n email\n billingEmail\n currency\n taxId\n isActive\n updatedAt\n }\n}\n `;\nexport type UpdateBillingAccountSubscriptionsMutationFn = Apollo.MutationFunction<Types.UpdateBillingAccountSubscriptionsMutation, Types.UpdateBillingAccountSubscriptionsMutationVariables>;\n\n/**\n * __useUpdateBillingAccountSubscriptionsMutation__\n *\n * To run a mutation, you first call `useUpdateBillingAccountSubscriptionsMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useUpdateBillingAccountSubscriptionsMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [updateBillingAccountSubscriptionsMutation, { data, loading, error }] = useUpdateBillingAccountSubscriptionsMutation({\n * variables: {\n * input: // value for 'input'\n * },\n * });\n */\nexport function useUpdateBillingAccountSubscriptionsMutation(baseOptions?: ApolloReactHooks.MutationHookOptions<Types.UpdateBillingAccountSubscriptionsMutation, Types.UpdateBillingAccountSubscriptionsMutationVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useMutation<Types.UpdateBillingAccountSubscriptionsMutation, Types.UpdateBillingAccountSubscriptionsMutationVariables>(UpdateBillingAccountSubscriptionsDocument, options);\n }\nexport type UpdateBillingAccountSubscriptionsMutationHookResult = ReturnType<typeof useUpdateBillingAccountSubscriptionsMutation>;\nexport type UpdateBillingAccountSubscriptionsMutationResult = Apollo.MutationResult<Types.UpdateBillingAccountSubscriptionsMutation>;\nexport type UpdateBillingAccountSubscriptionsMutationOptions = Apollo.BaseMutationOptions<Types.UpdateBillingAccountSubscriptionsMutation, Types.UpdateBillingAccountSubscriptionsMutationVariables>;\nexport const GetBillingAccountDocument = gql`\n query GetBillingAccount($id: ID!) {\n getBillingAccount(id: $id) {\n id\n orgId\n name\n email\n billingEmail\n currency\n creditAmount\n isActive\n stripeCustomerId\n razorpayCustomerId\n taxId\n createdAt\n updatedAt\n subscriptions {\n ...SubscriptionWithPlanFields\n }\n }\n}\n ${SubscriptionWithPlanFieldsFragmentDoc}`;\n\n/**\n * __useGetBillingAccountQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetBillingAccountQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables> & ({ variables: Types.GetBillingAccountQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>(GetBillingAccountDocument, options);\n }\nexport function useGetBillingAccountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>(GetBillingAccountDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>;\nexport function useGetBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuery | undefined, Types.GetBillingAccountQueryVariables>;\nexport function useGetBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>(GetBillingAccountDocument, options);\n }\nexport type GetBillingAccountQueryHookResult = ReturnType<typeof useGetBillingAccountQuery>;\nexport type GetBillingAccountLazyQueryHookResult = ReturnType<typeof useGetBillingAccountLazyQuery>;\nexport type GetBillingAccountSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountSuspenseQuery>;\nexport type GetBillingAccountQueryResult = Apollo.QueryResult<Types.GetBillingAccountQuery, Types.GetBillingAccountQueryVariables>;\nexport const GetBillingAccountsForSubscriptionsDocument = gql`\n query GetBillingAccountsForSubscriptions {\n getBillingAccountsByOrg {\n id\n name\n email\n currency\n creditAmount\n isActive\n }\n}\n `;\n\n/**\n * __useGetBillingAccountsForSubscriptionsQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountsForSubscriptionsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountsForSubscriptionsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountsForSubscriptionsQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAccountsForSubscriptionsQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>(GetBillingAccountsForSubscriptionsDocument, options);\n }\nexport function useGetBillingAccountsForSubscriptionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>(GetBillingAccountsForSubscriptionsDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountsForSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>;\nexport function useGetBillingAccountsForSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsForSubscriptionsQuery | undefined, Types.GetBillingAccountsForSubscriptionsQueryVariables>;\nexport function useGetBillingAccountsForSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>(GetBillingAccountsForSubscriptionsDocument, options);\n }\nexport type GetBillingAccountsForSubscriptionsQueryHookResult = ReturnType<typeof useGetBillingAccountsForSubscriptionsQuery>;\nexport type GetBillingAccountsForSubscriptionsLazyQueryHookResult = ReturnType<typeof useGetBillingAccountsForSubscriptionsLazyQuery>;\nexport type GetBillingAccountsForSubscriptionsSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountsForSubscriptionsSuspenseQuery>;\nexport type GetBillingAccountsForSubscriptionsQueryResult = Apollo.QueryResult<Types.GetBillingAccountsForSubscriptionsQuery, Types.GetBillingAccountsForSubscriptionsQueryVariables>;\nexport const GetDefaultBillingAccountDocument = gql`\n query GetDefaultBillingAccount {\n getDefaultBillingAccount {\n id\n orgId\n name\n email\n billingEmail\n currency\n creditAmount\n isActive\n createdAt\n subscriptions {\n ...SubscriptionWithPlanFields\n }\n }\n}\n ${SubscriptionWithPlanFieldsFragmentDoc}`;\n\n/**\n * __useGetDefaultBillingAccountQuery__\n *\n * To run a query within a React component, call `useGetDefaultBillingAccountQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetDefaultBillingAccountQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetDefaultBillingAccountQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetDefaultBillingAccountQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>(GetDefaultBillingAccountDocument, options);\n }\nexport function useGetDefaultBillingAccountLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>(GetDefaultBillingAccountDocument, options);\n }\n// @ts-ignore\nexport function useGetDefaultBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>;\nexport function useGetDefaultBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetDefaultBillingAccountQuery | undefined, Types.GetDefaultBillingAccountQueryVariables>;\nexport function useGetDefaultBillingAccountSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>(GetDefaultBillingAccountDocument, options);\n }\nexport type GetDefaultBillingAccountQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountQuery>;\nexport type GetDefaultBillingAccountLazyQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountLazyQuery>;\nexport type GetDefaultBillingAccountSuspenseQueryHookResult = ReturnType<typeof useGetDefaultBillingAccountSuspenseQuery>;\nexport type GetDefaultBillingAccountQueryResult = Apollo.QueryResult<Types.GetDefaultBillingAccountQuery, Types.GetDefaultBillingAccountQueryVariables>;\nexport const GetPaginatedSubscriptionsDocument = gql`\n query GetPaginatedSubscriptions($billingAccountId: ID!, $page: Int, $pageSize: Int) {\n getPaginatedSubscriptions(\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n ) {\n subscriptions {\n ...SubscriptionWithPlanFields\n addonSubscriptions {\n id\n addonId\n quantity\n }\n }\n totalCount\n page\n pageSize\n totalPages\n }\n}\n ${SubscriptionWithPlanFieldsFragmentDoc}`;\n\n/**\n * __useGetPaginatedSubscriptionsQuery__\n *\n * To run a query within a React component, call `useGetPaginatedSubscriptionsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPaginatedSubscriptionsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPaginatedSubscriptionsQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetPaginatedSubscriptionsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables> & ({ variables: Types.GetPaginatedSubscriptionsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>(GetPaginatedSubscriptionsDocument, options);\n }\nexport function useGetPaginatedSubscriptionsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>(GetPaginatedSubscriptionsDocument, options);\n }\n// @ts-ignore\nexport function useGetPaginatedSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>;\nexport function useGetPaginatedSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPaginatedSubscriptionsQuery | undefined, Types.GetPaginatedSubscriptionsQueryVariables>;\nexport function useGetPaginatedSubscriptionsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>(GetPaginatedSubscriptionsDocument, options);\n }\nexport type GetPaginatedSubscriptionsQueryHookResult = ReturnType<typeof useGetPaginatedSubscriptionsQuery>;\nexport type GetPaginatedSubscriptionsLazyQueryHookResult = ReturnType<typeof useGetPaginatedSubscriptionsLazyQuery>;\nexport type GetPaginatedSubscriptionsSuspenseQueryHookResult = ReturnType<typeof useGetPaginatedSubscriptionsSuspenseQuery>;\nexport type GetPaginatedSubscriptionsQueryResult = Apollo.QueryResult<Types.GetPaginatedSubscriptionsQuery, Types.GetPaginatedSubscriptionsQueryVariables>;\nexport const GetSubscriptionDocument = gql`\n query GetSubscription($id: ID!, $billingAccountId: ID!) {\n getSubscription(id: $id, billingAccountId: $billingAccountId) {\n ...SubscriptionFullFields\n }\n}\n ${SubscriptionFullFieldsFragmentDoc}`;\n\n/**\n * __useGetSubscriptionQuery__\n *\n * To run a query within a React component, call `useGetSubscriptionQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetSubscriptionQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetSubscriptionQuery({\n * variables: {\n * id: // value for 'id'\n * billingAccountId: // value for 'billingAccountId'\n * },\n * });\n */\nexport function useGetSubscriptionQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables> & ({ variables: Types.GetSubscriptionQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>(GetSubscriptionDocument, options);\n }\nexport function useGetSubscriptionLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>(GetSubscriptionDocument, options);\n }\n// @ts-ignore\nexport function useGetSubscriptionSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>;\nexport function useGetSubscriptionSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionQuery | undefined, Types.GetSubscriptionQueryVariables>;\nexport function useGetSubscriptionSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>(GetSubscriptionDocument, options);\n }\nexport type GetSubscriptionQueryHookResult = ReturnType<typeof useGetSubscriptionQuery>;\nexport type GetSubscriptionLazyQueryHookResult = ReturnType<typeof useGetSubscriptionLazyQuery>;\nexport type GetSubscriptionSuspenseQueryHookResult = ReturnType<typeof useGetSubscriptionSuspenseQuery>;\nexport type GetSubscriptionQueryResult = Apollo.QueryResult<Types.GetSubscriptionQuery, Types.GetSubscriptionQueryVariables>;\nexport const GetSubscriptionUsageOverviewDocument = gql`\n query GetSubscriptionUsageOverview($billingAccountId: ID!, $page: Int, $pageSize: Int) {\n getSubscriptionUsageOverview(\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n ) {\n id\n status\n createdAt\n quotas {\n id\n name\n limits\n currentUsageSum\n usageCount\n endtime\n }\n }\n}\n `;\n\n/**\n * __useGetSubscriptionUsageOverviewQuery__\n *\n * To run a query within a React component, call `useGetSubscriptionUsageOverviewQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetSubscriptionUsageOverviewQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetSubscriptionUsageOverviewQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetSubscriptionUsageOverviewQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables> & ({ variables: Types.GetSubscriptionUsageOverviewQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>(GetSubscriptionUsageOverviewDocument, options);\n }\nexport function useGetSubscriptionUsageOverviewLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>(GetSubscriptionUsageOverviewDocument, options);\n }\n// @ts-ignore\nexport function useGetSubscriptionUsageOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>;\nexport function useGetSubscriptionUsageOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionUsageOverviewQuery | undefined, Types.GetSubscriptionUsageOverviewQueryVariables>;\nexport function useGetSubscriptionUsageOverviewSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>(GetSubscriptionUsageOverviewDocument, options);\n }\nexport type GetSubscriptionUsageOverviewQueryHookResult = ReturnType<typeof useGetSubscriptionUsageOverviewQuery>;\nexport type GetSubscriptionUsageOverviewLazyQueryHookResult = ReturnType<typeof useGetSubscriptionUsageOverviewLazyQuery>;\nexport type GetSubscriptionUsageOverviewSuspenseQueryHookResult = ReturnType<typeof useGetSubscriptionUsageOverviewSuspenseQuery>;\nexport type GetSubscriptionUsageOverviewQueryResult = Apollo.QueryResult<Types.GetSubscriptionUsageOverviewQuery, Types.GetSubscriptionUsageOverviewQueryVariables>;\nexport const GetBillingAccountQuotasSummaryForUsageDocument = gql`\n query GetBillingAccountQuotasSummaryForUsage($billingAccountId: ID!, $productId: String) {\n getBillingAccountQuotasSummary(\n billingAccountId: $billingAccountId\n productId: $productId\n ) {\n billingAccountId\n totalLimit\n totalUsage\n pooledQuotas {\n id\n name\n quotaType\n reusable\n limit\n limitLeft\n used\n usagePercentage\n noLimit\n createdAt\n endtime\n }\n }\n}\n `;\n\n/**\n * __useGetBillingAccountQuotasSummaryForUsageQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountQuotasSummaryForUsageQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountQuotasSummaryForUsageQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountQuotasSummaryForUsageQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * productId: // value for 'productId'\n * },\n * });\n */\nexport function useGetBillingAccountQuotasSummaryForUsageQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables> & ({ variables: Types.GetBillingAccountQuotasSummaryForUsageQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>(GetBillingAccountQuotasSummaryForUsageDocument, options);\n }\nexport function useGetBillingAccountQuotasSummaryForUsageLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>(GetBillingAccountQuotasSummaryForUsageDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountQuotasSummaryForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>;\nexport function useGetBillingAccountQuotasSummaryForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountQuotasSummaryForUsageQuery | undefined, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>;\nexport function useGetBillingAccountQuotasSummaryForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>(GetBillingAccountQuotasSummaryForUsageDocument, options);\n }\nexport type GetBillingAccountQuotasSummaryForUsageQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummaryForUsageQuery>;\nexport type GetBillingAccountQuotasSummaryForUsageLazyQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummaryForUsageLazyQuery>;\nexport type GetBillingAccountQuotasSummaryForUsageSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountQuotasSummaryForUsageSuspenseQuery>;\nexport type GetBillingAccountQuotasSummaryForUsageQueryResult = Apollo.QueryResult<Types.GetBillingAccountQuotasSummaryForUsageQuery, Types.GetBillingAccountQuotasSummaryForUsageQueryVariables>;\nexport const GetBillingAccountsForUsageDocument = gql`\n query GetBillingAccountsForUsage {\n getBillingAccountsByOrg {\n id\n name\n email\n currency\n creditAmount\n isActive\n isDefault\n }\n}\n `;\n\n/**\n * __useGetBillingAccountsForUsageQuery__\n *\n * To run a query within a React component, call `useGetBillingAccountsForUsageQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetBillingAccountsForUsageQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetBillingAccountsForUsageQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetBillingAccountsForUsageQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>(GetBillingAccountsForUsageDocument, options);\n }\nexport function useGetBillingAccountsForUsageLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>(GetBillingAccountsForUsageDocument, options);\n }\n// @ts-ignore\nexport function useGetBillingAccountsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>;\nexport function useGetBillingAccountsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetBillingAccountsForUsageQuery | undefined, Types.GetBillingAccountsForUsageQueryVariables>;\nexport function useGetBillingAccountsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>(GetBillingAccountsForUsageDocument, options);\n }\nexport type GetBillingAccountsForUsageQueryHookResult = ReturnType<typeof useGetBillingAccountsForUsageQuery>;\nexport type GetBillingAccountsForUsageLazyQueryHookResult = ReturnType<typeof useGetBillingAccountsForUsageLazyQuery>;\nexport type GetBillingAccountsForUsageSuspenseQueryHookResult = ReturnType<typeof useGetBillingAccountsForUsageSuspenseQuery>;\nexport type GetBillingAccountsForUsageQueryResult = Apollo.QueryResult<Types.GetBillingAccountsForUsageQuery, Types.GetBillingAccountsForUsageQueryVariables>;\nexport const GetPastSubscriptionsWithQuotasDocument = gql`\n query GetPastSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String, $page: Int, $pageSize: Int) {\n getSubscriptionUsageOverview(\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n onlyExpired: true\n searchQuery: $searchQuery\n ) {\n id\n status\n createdAt\n quotas {\n id\n name\n limits\n currentUsageSum\n usageCount\n createdAt\n endtime\n }\n }\n}\n `;\n\n/**\n * __useGetPastSubscriptionsWithQuotasQuery__\n *\n * To run a query within a React component, call `useGetPastSubscriptionsWithQuotasQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetPastSubscriptionsWithQuotasQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetPastSubscriptionsWithQuotasQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * searchQuery: // value for 'searchQuery'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * },\n * });\n */\nexport function useGetPastSubscriptionsWithQuotasQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables> & ({ variables: Types.GetPastSubscriptionsWithQuotasQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>(GetPastSubscriptionsWithQuotasDocument, options);\n }\nexport function useGetPastSubscriptionsWithQuotasLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>(GetPastSubscriptionsWithQuotasDocument, options);\n }\n// @ts-ignore\nexport function useGetPastSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>;\nexport function useGetPastSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetPastSubscriptionsWithQuotasQuery | undefined, Types.GetPastSubscriptionsWithQuotasQueryVariables>;\nexport function useGetPastSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>(GetPastSubscriptionsWithQuotasDocument, options);\n }\nexport type GetPastSubscriptionsWithQuotasQueryHookResult = ReturnType<typeof useGetPastSubscriptionsWithQuotasQuery>;\nexport type GetPastSubscriptionsWithQuotasLazyQueryHookResult = ReturnType<typeof useGetPastSubscriptionsWithQuotasLazyQuery>;\nexport type GetPastSubscriptionsWithQuotasSuspenseQueryHookResult = ReturnType<typeof useGetPastSubscriptionsWithQuotasSuspenseQuery>;\nexport type GetPastSubscriptionsWithQuotasQueryResult = Apollo.QueryResult<Types.GetPastSubscriptionsWithQuotasQuery, Types.GetPastSubscriptionsWithQuotasQueryVariables>;\nexport const GetQuotaAnalyticsForUsageDocument = gql`\n query GetQuotaAnalyticsForUsage($quotaAssignmentId: ID!, $billingAccountId: ID!, $period: AnalyticsPeriod) {\n getQuotaAnalytics(\n quotaAssignmentId: $quotaAssignmentId\n billingAccountId: $billingAccountId\n period: $period\n ) {\n dailyUsage {\n date\n usage\n count\n }\n usageByType {\n resourceType\n usage\n count\n percentage\n }\n trends {\n growthRate\n predictedUsage\n averageDailyUsage\n }\n peakUsage {\n maxDailyUsage\n peakDate\n peakHour\n }\n }\n}\n `;\n\n/**\n * __useGetQuotaAnalyticsForUsageQuery__\n *\n * To run a query within a React component, call `useGetQuotaAnalyticsForUsageQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetQuotaAnalyticsForUsageQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetQuotaAnalyticsForUsageQuery({\n * variables: {\n * quotaAssignmentId: // value for 'quotaAssignmentId'\n * billingAccountId: // value for 'billingAccountId'\n * period: // value for 'period'\n * },\n * });\n */\nexport function useGetQuotaAnalyticsForUsageQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables> & ({ variables: Types.GetQuotaAnalyticsForUsageQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>(GetQuotaAnalyticsForUsageDocument, options);\n }\nexport function useGetQuotaAnalyticsForUsageLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>(GetQuotaAnalyticsForUsageDocument, options);\n }\n// @ts-ignore\nexport function useGetQuotaAnalyticsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>;\nexport function useGetQuotaAnalyticsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaAnalyticsForUsageQuery | undefined, Types.GetQuotaAnalyticsForUsageQueryVariables>;\nexport function useGetQuotaAnalyticsForUsageSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>(GetQuotaAnalyticsForUsageDocument, options);\n }\nexport type GetQuotaAnalyticsForUsageQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsForUsageQuery>;\nexport type GetQuotaAnalyticsForUsageLazyQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsForUsageLazyQuery>;\nexport type GetQuotaAnalyticsForUsageSuspenseQueryHookResult = ReturnType<typeof useGetQuotaAnalyticsForUsageSuspenseQuery>;\nexport type GetQuotaAnalyticsForUsageQueryResult = Apollo.QueryResult<Types.GetQuotaAnalyticsForUsageQuery, Types.GetQuotaAnalyticsForUsageQueryVariables>;\nexport const GetQuotaUsageDetailsDocument = gql`\n query GetQuotaUsageDetails($quotaAssignmentId: ID!, $billingAccountId: ID!, $page: Int, $pageSize: Int, $fromDate: DateTime, $toDate: DateTime, $sortBy: String, $sortOrder: String) {\n getQuotaUsageDetails(\n quotaAssignmentId: $quotaAssignmentId\n billingAccountId: $billingAccountId\n page: $page\n pageSize: $pageSize\n fromDate: $fromDate\n toDate: $toDate\n sortBy: $sortBy\n sortOrder: $sortOrder\n ) {\n usages {\n id\n amount\n description\n tags\n productId\n userId\n timestamp\n lastUpdated\n }\n totalCount\n page\n pageSize\n totalPages\n }\n}\n `;\n\n/**\n * __useGetQuotaUsageDetailsQuery__\n *\n * To run a query within a React component, call `useGetQuotaUsageDetailsQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetQuotaUsageDetailsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetQuotaUsageDetailsQuery({\n * variables: {\n * quotaAssignmentId: // value for 'quotaAssignmentId'\n * billingAccountId: // value for 'billingAccountId'\n * page: // value for 'page'\n * pageSize: // value for 'pageSize'\n * fromDate: // value for 'fromDate'\n * toDate: // value for 'toDate'\n * sortBy: // value for 'sortBy'\n * sortOrder: // value for 'sortOrder'\n * },\n * });\n */\nexport function useGetQuotaUsageDetailsQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables> & ({ variables: Types.GetQuotaUsageDetailsQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>(GetQuotaUsageDetailsDocument, options);\n }\nexport function useGetQuotaUsageDetailsLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>(GetQuotaUsageDetailsDocument, options);\n }\n// @ts-ignore\nexport function useGetQuotaUsageDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>;\nexport function useGetQuotaUsageDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetQuotaUsageDetailsQuery | undefined, Types.GetQuotaUsageDetailsQueryVariables>;\nexport function useGetQuotaUsageDetailsSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>(GetQuotaUsageDetailsDocument, options);\n }\nexport type GetQuotaUsageDetailsQueryHookResult = ReturnType<typeof useGetQuotaUsageDetailsQuery>;\nexport type GetQuotaUsageDetailsLazyQueryHookResult = ReturnType<typeof useGetQuotaUsageDetailsLazyQuery>;\nexport type GetQuotaUsageDetailsSuspenseQueryHookResult = ReturnType<typeof useGetQuotaUsageDetailsSuspenseQuery>;\nexport type GetQuotaUsageDetailsQueryResult = Apollo.QueryResult<Types.GetQuotaUsageDetailsQuery, Types.GetQuotaUsageDetailsQueryVariables>;\nexport const GetSubscriptionsWithQuotasDocument = gql`\n query GetSubscriptionsWithQuotas($billingAccountId: ID!, $searchQuery: String) {\n getSubscriptionUsageOverview(\n billingAccountId: $billingAccountId\n page: 1\n pageSize: 100\n searchQuery: $searchQuery\n ) {\n id\n status\n createdAt\n quotas {\n id\n name\n limits\n currentUsageSum\n usageCount\n createdAt\n endtime\n }\n }\n}\n `;\n\n/**\n * __useGetSubscriptionsWithQuotasQuery__\n *\n * To run a query within a React component, call `useGetSubscriptionsWithQuotasQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetSubscriptionsWithQuotasQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetSubscriptionsWithQuotasQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * searchQuery: // value for 'searchQuery'\n * },\n * });\n */\nexport function useGetSubscriptionsWithQuotasQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables> & ({ variables: Types.GetSubscriptionsWithQuotasQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>(GetSubscriptionsWithQuotasDocument, options);\n }\nexport function useGetSubscriptionsWithQuotasLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>(GetSubscriptionsWithQuotasDocument, options);\n }\n// @ts-ignore\nexport function useGetSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>;\nexport function useGetSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetSubscriptionsWithQuotasQuery | undefined, Types.GetSubscriptionsWithQuotasQueryVariables>;\nexport function useGetSubscriptionsWithQuotasSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>(GetSubscriptionsWithQuotasDocument, options);\n }\nexport type GetSubscriptionsWithQuotasQueryHookResult = ReturnType<typeof useGetSubscriptionsWithQuotasQuery>;\nexport type GetSubscriptionsWithQuotasLazyQueryHookResult = ReturnType<typeof useGetSubscriptionsWithQuotasLazyQuery>;\nexport type GetSubscriptionsWithQuotasSuspenseQueryHookResult = ReturnType<typeof useGetSubscriptionsWithQuotasSuspenseQuery>;\nexport type GetSubscriptionsWithQuotasQueryResult = Apollo.QueryResult<Types.GetSubscriptionsWithQuotasQuery, Types.GetSubscriptionsWithQuotasQueryVariables>;\nexport const GetUsageDashboardDocument = gql`\n query GetUsageDashboard($billingAccountId: ID!, $period: AnalyticsPeriod) {\n getUsageDashboard(billingAccountId: $billingAccountId, period: $period) {\n ...UsageDashboardFields\n }\n}\n ${UsageDashboardFieldsFragmentDoc}`;\n\n/**\n * __useGetUsageDashboardQuery__\n *\n * To run a query within a React component, call `useGetUsageDashboardQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetUsageDashboardQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetUsageDashboardQuery({\n * variables: {\n * billingAccountId: // value for 'billingAccountId'\n * period: // value for 'period'\n * },\n * });\n */\nexport function useGetUsageDashboardQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables> & ({ variables: Types.GetUsageDashboardQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>(GetUsageDashboardDocument, options);\n }\nexport function useGetUsageDashboardLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>(GetUsageDashboardDocument, options);\n }\n// @ts-ignore\nexport function useGetUsageDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>;\nexport function useGetUsageDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetUsageDashboardQuery | undefined, Types.GetUsageDashboardQueryVariables>;\nexport function useGetUsageDashboardSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>(GetUsageDashboardDocument, options);\n }\nexport type GetUsageDashboardQueryHookResult = ReturnType<typeof useGetUsageDashboardQuery>;\nexport type GetUsageDashboardLazyQueryHookResult = ReturnType<typeof useGetUsageDashboardLazyQuery>;\nexport type GetUsageDashboardSuspenseQueryHookResult = ReturnType<typeof useGetUsageDashboardSuspenseQuery>;\nexport type GetUsageDashboardQueryResult = Apollo.QueryResult<Types.GetUsageDashboardQuery, Types.GetUsageDashboardQueryVariables>;\nexport const GetMyOrdersDocument = gql`\n query GetMyOrders {\n myOrders {\n id\n billingAccountId\n status\n transactionId\n total\n lineItems\n appliedEntitlementId\n purchasedAt\n processedAt\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetMyOrdersQuery__\n *\n * To run a query within a React component, call `useGetMyOrdersQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetMyOrdersQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetMyOrdersQuery({\n * variables: {\n * },\n * });\n */\nexport function useGetMyOrdersQuery(baseOptions?: ApolloReactHooks.QueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>(GetMyOrdersDocument, options);\n }\nexport function useGetMyOrdersLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>(GetMyOrdersDocument, options);\n }\n// @ts-ignore\nexport function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;\nexport function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetMyOrdersQuery | undefined, Types.GetMyOrdersQueryVariables>;\nexport function useGetMyOrdersSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>(GetMyOrdersDocument, options);\n }\nexport type GetMyOrdersQueryHookResult = ReturnType<typeof useGetMyOrdersQuery>;\nexport type GetMyOrdersLazyQueryHookResult = ReturnType<typeof useGetMyOrdersLazyQuery>;\nexport type GetMyOrdersSuspenseQueryHookResult = ReturnType<typeof useGetMyOrdersSuspenseQuery>;\nexport type GetMyOrdersQueryResult = Apollo.QueryResult<Types.GetMyOrdersQuery, Types.GetMyOrdersQueryVariables>;\nexport const GetStoreOrderDocument = gql`\n query GetStoreOrder($id: ID!) {\n getStoreOrder(id: $id) {\n id\n billingAccountId\n status\n transactionId\n total\n lineItems\n appliedEntitlementId\n purchasedAt\n processedAt\n createdAt\n updatedAt\n }\n}\n `;\n\n/**\n * __useGetStoreOrderQuery__\n *\n * To run a query within a React component, call `useGetStoreOrderQuery` and pass it any options that fit your needs.\n * When your component renders, `useGetStoreOrderQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useGetStoreOrderQuery({\n * variables: {\n * id: // value for 'id'\n * },\n * });\n */\nexport function useGetStoreOrderQuery(baseOptions: ApolloReactHooks.QueryHookOptions<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables> & ({ variables: Types.GetStoreOrderQueryVariables; skip?: boolean; } | { skip: boolean; }) ) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useQuery<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>(GetStoreOrderDocument, options);\n }\nexport function useGetStoreOrderLazyQuery(baseOptions?: ApolloReactHooks.LazyQueryHookOptions<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>) {\n const options = {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useLazyQuery<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>(GetStoreOrderDocument, options);\n }\n// @ts-ignore\nexport function useGetStoreOrderSuspenseQuery(baseOptions?: ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>;\nexport function useGetStoreOrderSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>): ApolloReactHooks.UseSuspenseQueryResult<Types.GetStoreOrderQuery | undefined, Types.GetStoreOrderQueryVariables>;\nexport function useGetStoreOrderSuspenseQuery(baseOptions?: ApolloReactHooks.SkipToken | ApolloReactHooks.SuspenseQueryHookOptions<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>) {\n const options = baseOptions === ApolloReactHooks.skipToken ? baseOptions : {...defaultOptions, ...baseOptions}\n return ApolloReactHooks.useSuspenseQuery<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>(GetStoreOrderDocument, options);\n }\nexport type GetStoreOrderQueryHookResult = ReturnType<typeof useGetStoreOrderQuery>;\nexport type GetStoreOrderLazyQueryHookResult = ReturnType<typeof useGetStoreOrderLazyQuery>;\nexport type GetStoreOrderSuspenseQueryHookResult = ReturnType<typeof useGetStoreOrderSuspenseQuery>;\nexport type GetStoreOrderQueryResult = Apollo.QueryResult<Types.GetStoreOrderQuery, Types.GetStoreOrderQueryVariables>;"],"mappings":";;;AAMA,IAAM,IAAiB,EAAE,EA2wCZ,IAAyB,CAAG;;;;;;;;;;;;;;;AAeS,CAAG;;;;;;;;;;;;;;;MAe/C;AACN,IAAa,IAAqC,CAAG;;;;;;;;;;;;;;;MAe/C,KACO,IAA0B,CAAG;;;;;;;;;;;;;;;;OAiB7B,IAA0B,CAAG;;;;;;;;;;;;;;;;;;;MAmBpC,KACO,IAA2B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;OA0B9B,IAA+B,CAAG;;;;;;;;;;;OAYlC,IAAoC,CAAG;;;;;;;;;;;;;;;;;;;;;;;MAuB9C,EAAyB;EAC7B,KACW,IAA2B,CAAG;;;;;;;;;;;;;;;;;;;OAoB9B,IAAiC,CAAG;;;;;;;;;;;;;;;;;;;;;;OAuBpC,IAAgC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;OA4BnC,KAA6C,CAAG;;;;;;;;;;;;;;;;;;;;;;MAsBvD,KACO,IAA8B,CAAG;;;;;;;;;;;;;;OAejC,IAAqC,CAAG;;;;;;;;;;;;;;;OAgBxC,IAAsC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;OAyBzC,IAAkC,CAAG;;;;;;;;;;;;;;;;;;OAmBrC,IAAkC,CAAG;;;;;;;;;;;;;;OAerC,KAA4C,CAAG;;;;;;;;;;;;OAa/C,IAA0C,CAAG;;;;;;;;;;;;;;;;;;;AAmBP,CAAG;;;;;;;;;;;;AAYtD,IAAa,IAA0B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmD7B,IAAoC,CAAG;;;;;;;;;;;;;;;;;;;;;MAnBf,CAAG;;;;;;;;;;;;;;;;;;SAyC3B,KAAyB,CAAG;;;;;;;;;;;;;OAc5B,IAAmC,CAAG;;;;;;;;;;;;;;;OAgBtC,IAAuC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;OAyB1C,KAAgD,CAAG;;;;;;;;;;;;;;;;;;;;;MAqB1D,KACO,KAAiC,CAAG;;;;;;;;;;;;;OAcpC,IAAgC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;OA0BnC,IAAwC,CAAG;;;;;;;;;;;;;MAalD,KACO,KAAoC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA+C9C;AAC4C,CAAG;;;;;;;;;OAUP,CAAG;;;;;;;;;;AAUjD,IAAa,KAAkC,CAAG;;;;;;;;;AASZ,CAAG;;;;;;;;;;;;;OAcG,CAAG;;;;;;;;;;;;;;OAeH,CAAG;;;;;;;AAO/C,IAAa,KAAuB,CAAG;;;;;AAwBvC,SAAgB,GAAwB,GAAqH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6E,IAAsB,EAAQ;;AAK3I,IAAa,KAAsB,CAAG;;;;;AAyBtC,SAAgB,GAAuB,GAAmH;CAClJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2E,IAAqB,EAAQ;;AAKxI,IAAa,KAA6B,CAAG;;;;;AAwB7C,SAAgB,GAA8B,GAAiI;CACvK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyF,IAA4B,EAAQ;;AAK7J,IAAa,IAAuB,CAAG;;;;;;MAMjC;AAkBN,SAAgB,EAAqB,GAA4G;CACzI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAoE,GAAsB,EAAQ;;AAiBlI,IAAa,IAA4B,CAAG;;;;;;MAMtC;AAkBN,SAAgB,EAA0B,GAAqN;CACvP,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8E,GAA2B,EAAQ;;AAiBjJ,IAAa,IAAsC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiChD;AAiBN,SAAgB,EAAoC,GAA0I;CACtL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAkG,GAAqC,EAAQ;;AAiBvI,CAAG;;;;;;MAMrC,KA2B8B,CAAG;;;;;;;;;;;;;MAajC;AAgCN,IAAa,IAA6B,CAAG;;;;;;;;;;;;;;;;;;;MAmBvC;AA+BN,SAAgB,EAA8B,GAAiI;CACvK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyF,GAA4B,EAAQ;;AAK7J,IAAa,IAAwC,CAAG;;;;;;MAMlD;AAoBN,SAAgB,EAAyC,GAAuJ;CACxM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA+G,GAAuC,EAAQ;;AAK9L,IAAa,IAAgD,CAAG;;;;;;MAM1D;AAmBN,SAAgB,EAAiD,GAAuK;CAChO,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA+H,GAA+C,EAAQ;;AAK3K,CAAG;;;;;AAgC9C,IAAa,IAA0B,CAAG;;;;;;;;;MASpC;AAqBN,SAAgB,EAA2B,GAA2H;CAC9J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAmF,GAAyB,EAAQ;;AAKpJ,IAAa,IAAqB,CAAG;;;;;;;;;;MAU/B;AAsBN,SAAgB,EAAsB,GAAiH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyE,GAAoB,EAAQ;;AAKrI,IAAa,IAAwB,CAAG;;;;;;;;;;;MAWlC;AAqBN,SAAgB,GAAyB,GAAuH;CACxJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA+E,GAAuB,EAAQ;;AAK9I,IAAa,KAAsB,CAAG;;;;;;;;;;;MAWhC;AAoBN,SAAgB,GAAuB,GAAmH;CAClJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2E,IAAqB,EAAQ;;AAKxI,IAAa,KAAqB,CAAG;;;;;;MAM/B;AAqBN,SAAgB,GAAsB,GAAiH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyE,IAAoB,EAAQ;;AAK1F,CAAG;;;;;;;;;;MAUxC;AA6BN,IAAa,KAAsB,CAAG;;;;;;MAMhC;AAqBN,SAAgB,GAAuB,GAAmH;CAClJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2E,IAAqB,EAAQ;;AAKvG,CAAG;;;;;;MAM9B,KAsC4B,CAAG;;;;;;MAM/B,KAqCyC,CAAG;;;;;;MAM5C;AAqCN,IAAa,KAAqB,CAAG;;;;;;MAM/B;AAmBN,SAAgB,GAAmB,GAAgM;CAC3N,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgE,IAAoB,EAAQ;;AAiBlF,CAAG;;;;;;;;;MASvC;AAsCN,IAAa,IAAsB,CAAG;;;;;;MAMhC;AAmBN,SAAgB,GAAoB,GAA0G;CACtI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAkE,GAAqB,EAAQ;;AAiBnF,CAAG;;;;;;;;;;;;;;;;;;MAkBzC,KAwC4B,CAAG;;;;;;;;;;;;;;MAc/B,EAAyB;EAC7B,KAsCuC,CAAG;;;;;;MAMtC,KAqC6B,CAAG;;;;;;;;;;;MAWhC;AAqCN,IAAa,KAA4B,CAAG;;;;;;;;;;;;MAYtC;AAsCiC,CAAG;;;;;;MAMpC;AAqCN,IAAa,IAA2B,CAAG;;;;;;;;;;;;;;;;;;;;;;MAsBrC;AA0BN,SAAgB,GAAyB,GAAoH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4E,GAA0B,EAAQ;;AAiB9I,IAAa,IAAyB,CAAG;;;;;;;;;;;;;AA6BzC,SAAgB,GAAuB,GAAgH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAwE,GAAwB,EAAQ;;AAiBxI,IAAa,KAAyB,CAAG;;;;;;;;;;;;;;;;OAsD5B,KAA0C,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwD1D,SAAgB,GAAwC,GAA+P;CAC/S,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA0G,IAAyC,EAAQ;;AAiB3L,IAAa,IAAuC,CAAG;;;;;;;;;;;;;AA6BvD,SAAgB,GAAqC,GAA4I;CACzL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAoG,GAAsC,EAAQ;;AAiBlL,IAAa,KAAkC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;AA8ClD,SAAgB,GAAmC,GAA2I;CACtL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAmG,IAAiC,EAAQ;;AAK5K,IAAa,KAA+B,CAAG;;;;;;;AA0B/C,SAAgB,GAAgC,GAAqI;CAC7K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6F,IAA8B,EAAQ;;AAK/H,CAAG;;;;;;;;;;;;;AAiDvC,IAAa,KAA0B,CAAG;;;;;;;;;;;;;;AAqC1C,SAAgB,GAA4B,GAAsH;CACxJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,aAA8E,IAAyB,EAAQ;;AAajJ,IAAa,KAAyC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;AA2CzD,SAAgB,GAAuC,GAA4P;CAC3S,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAwG,IAAwC,EAAQ;;AAiBxL,IAAa,KAAmC,CAAG;;;;;;;;;;;;;;;;;;;;;;;AAwCnD,SAAgB,GAAiC,GAA0O;CACnR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4F,IAAkC,EAAQ;;AAiBtK,IAAa,KAAqC,CAAG;;;;;;;;;;;;;;;;;;AAkCrD,SAAgB,GAAmC,GAAwI;CACnL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgG,IAAoC,EAAQ;;AAiB5K,IAAa,KAAmC,CAAG;;;;;;;AAyBnD,SAAgB,GAAiC,GAA0O;CACnR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4F,IAAkC,EAAQ;;AAiBtK,IAAa,KAAqC,CAAG;;;;;;;;;;;;;;;;;;;AAyCrD,SAAgB,GAAuC,GAA4I;CACzL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,aAAoG,IAAoC,EAAQ;;AAalL,IAAa,KAA2C,CAAG;;;;;;;;;;;;AA4B3D,SAAgB,GAAyC,GAAoJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4G,IAA0C,EAAQ;;AAiBrJ,CAAG;;;;;;;;;;;;;;;AAmD5C,IAAa,KAAoC,CAAG;;;;;;;;;;;;;;;;;AAkCpD,SAAgB,GAAkC,GAA6O;CACvR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8F,IAAmC,EAAQ;;AAiBzK,IAAa,KAA2C,CAAG;;;;;;;;;;AA0B3D,SAAgB,GAAyC,GAAoJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4G,IAA0C,EAAQ;;AAiB9L,IAAa,KAA2B,CAAG;;;;;;;;;;;;;;AAoC3C,SAAgB,GAA6B,GAAwH;CAC3J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,aAAgF,IAA0B,EAAQ;;AAapJ,IAAa,KAA0B,CAAG;;;;;;;;;;;;;;;;;;;;;;;AAwC1C,SAAgB,GAAwB,GAA+M;CAC/O,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA0E,IAAyB,EAAQ;;AAiB3I,IAAa,KAAgC,CAAG;;;;;;;;;;;;;;;;;;;AAoChD,SAAgB,GAA8B,GAAiO;CACvQ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAsF,IAA+B,EAAQ;;AAiB7J,IAAa,KAAuB,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAiDvC,SAAgB,GAAwB,GAAqH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6E,IAAsB,EAAQ;;AAK3I,IAAa,KAA2B,CAAG;;;;;;MAMrC;AAoBN,SAAgB,GAA4B,GAA6H;CACjK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAqF,IAA0B,EAAQ;;AAKvJ,IAAa,KAAuB,CAAG;;;;;;MAMjC;AAqBN,SAAgB,GAAwB,GAAqH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6E,IAAsB,EAAQ;;AAK3I,IAAa,KAAoB,CAAG;;;;;;MAM9B;AAsBN,SAAgB,GAAsB,GAA0G;CACtI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,aAAkE,IAAmB,EAAQ;;AAa/H,IAAa,KAAgC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;AA6ChD,SAAgB,GAA8B,GAA8H;CACpK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAsF,IAA+B,EAAQ;;AAiB7J,IAAa,KAAsB,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAgDtC,SAAgB,GAAoB,GAA0G;CACtI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAkE,IAAqB,EAAQ;;AAiB/H,IAAa,KAAyB,CAAG;;;;;;;;;;;;;;;;;;;AAwCzC,SAAgB,GAA2B,GAAoH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,aAA4E,IAAwB,EAAQ;;AAa9I,IAAa,KAA2B,CAAG;;;;;;;;;;;;;MAarC;AAyBN,SAAgB,GAA4B,GAA6H;CACjK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAqF,IAA0B,EAAQ;;AAKvJ,IAAa,KAAuB,CAAG;;;;;;;;;;;;;;;OA0C1B,KAAkC,CAAG;;;;;;;;;OAoCrC,KAAkC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;OAgErC,KAA8C,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA6BxD;AAqBN,SAAgB,GAA4C,GAA2Q;CAC/T,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAkH,IAA6C,EAAQ;;AAiB/J,CAAG;;;;;;;AA4C3C,IAAa,KAAiC,CAAG;;;;;;;;;;OA+CpC,KAAyB,CAAG;;;;;;MAMnC;AAoC6C,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;MAyBhD;AAsCN,IAAa,KAAoC,CAAG;;;;;;MAM9C;AAoBN,SAAgB,GAAqC,GAA+I;CAC5L,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAuG,IAAmC,EAAQ;;AAKlL,IAAa,KAA+B,CAAG;;;;;;MAMzC;AAoBN,SAAgB,GAAgC,GAAqI;CAC7K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6F,IAA8B,EAAQ;;AAKnK,IAAa,KAAuC,CAAG;;;;;AAyBvD,SAAgB,GAAwC,GAAqJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6G,IAAsC,EAAQ;;AAK3L,IAAa,KAA0B,CAAG;;;;;;;;;;;;;;;;;;;;AAuC1C,SAAgB,GAA2B,GAA2H;CAC9J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAmF,IAAyB,EAAQ;;AAKpJ,IAAa,KAA4B,CAAG;;;;;;MAMtC;AAoBN,SAAgB,GAA6B,GAA+H;CACpK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAuF,IAA2B,EAAQ;;AAK1J,IAAa,KAAmC,CAAG;;;;;;MAM7C;AAoBN,SAAgB,GAAoC,GAA6I;CACzL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAqG,IAAkC,EAAQ;;AAK/K,IAAa,KAAuB,CAAG;;;;;;;AA0BvC,SAAgB,GAAwB,GAAqH;CACrJ,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6E,IAAsB,EAAQ;;AAK3I,IAAa,KAA+B,CAAG;;;;;;MAMzC;AAoBN,SAAgB,GAAgC,GAAqI;CAC7K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6F,IAA8B,EAAQ;;AAKnK,IAAa,KAAuC,CAAG;;;;;;;;;;MAUjD;AAsBN,SAAgB,GAAwC,GAAqJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6G,IAAsC,EAAQ;;AAK3L,IAAa,KAA8B,CAAG;;;;;;;;;;;;;;;;;;AAqC9C,SAAgB,GAA+B,GAAmI;CAC1K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2F,IAA6B,EAAQ;;AAKlH,CAAG;;;;;;MAM3C,KAqCmC,CAAG;;;;;;;;;;;;;;;;;;;;OAwDM,CAAG;;;;;;;;;;;;MAY/C,EAAgC;EACpC,EAAwC;EACxC;AAqCF,IAAa,IAAkC,CAAG;;;;;;MAM5C;AAiBN,SAAgB,GAAgC,GAAkI;CAC1K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA0F,GAAiC,EAAQ;;AAiBnK,IAAa,KAA4B,CAAG;;;;;;MAMtC,KAqCO,KAA6B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAmCvC,EAAgC;EACpC,EAAwC;EACxC,EAAgC;EAChC;AAkBF,SAAgB,GAA2B,GAAwH;CAC3J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgF,IAA4B,EAAQ;;AAiBpJ,IAAa,KAAoC,CAAG;;;;;;;;;;;;;;;MAe9C,EAAgC;EACpC,EAAwC;EACxC,EAAgC;EAChC;AAkBF,SAAgB,GAAkC,GAA6O;CACvR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8F,IAAmC,EAAQ;;AAiBzK,IAAa,KAAuC,CAAG;;;;;;;;;;;;;;;;;MAiBjD,MAwCO,IAA4C,CAAG;;;;;;;;;;;;MAYtD,EAAgC;EACpC,EAAwC;EACxC;AAiBF,SAAgB,GAA0C,GAAsJ;CACxM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8G,GAA2C,EAAQ;;AAiB/I,CAAG;;;;;;MAM/C;AAqCN,IAAa,KAAmC,CAAG;;;;;;;;;;AA0BnD,SAAgB,GAAiC,GAAoI;CAC7K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4F,IAAkC,EAAQ;;AAiB1H,CAAG;;;;;;;;;;;;;;;;;;;;;AAyD/C,IAAa,KAAyB,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsDzC,SAAgB,GAA0B,GAAyH;CAC3J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAiF,IAAwB,EAAQ;;AAKjJ,IAAa,KAAyB,CAAG;;;;;AAwBzC,SAAgB,GAA0B,GAAyH;CAC3J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAiF,IAAwB,EAAQ;;AAKjJ,IAAa,KAAyB,CAAG;;;;;;;;;;;;;;;;;;;AAwCzC,SAAgB,GAA0B,GAAyH;CAC3J,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAiF,IAAwB,EAAQ;;AAKjJ,IAAa,KAAuB,CAAG;;;;;;;;;;;;;;;;;;;AAmCvC,SAAgB,GAAqB,GAA4G;CACzI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAoE,IAAsB,EAAQ;;AAiBlI,IAAa,KAA2B,CAAG;;;;;;OAiC9B,KAA+B,CAAG;;;;;;OAkClC,KAA+B,CAAG;;;;OAgClC,KAA+B,CAAG;;;;;;OAiClC,KAA8B,CAAG;;;;;;OAkCjC,KAAkC,CAAG;;;;;;OAkCrC,KAA8B,CAAG;;;;;;OAmCjC,KAA8B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoEjC,KAA6B,CAAG;;;;;;;;;;;;;;;;;;;;OAwDhC,KAAwC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAkF3C,KAA4B,CAAG;;;;;;;;;;;;;;;;OAqD/B,KAA4B,CAAG;;;;;;;;;;;;;;;;;OAsD/B,KAA2B,CAAG;;;;;;;;;;;;;;;OAoD9B,KAA2B,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqEF,CAAG;;;;;;;;;;;;AAsC5C,IAAa,KAAqB,CAAG;;;;;AAwBrC,SAAgB,GAAsB,GAAiH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyE,IAAoB,EAAQ;;AAKlG,CAAG;;;;OA+BG,CAAG;;;;;AA+B5C,IAAa,KAAqB,CAAG;;;;;AAyBrC,SAAgB,GAAsB,GAAiH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyE,IAAoB,EAAQ;;AAK5F,CAAG;;;;;;;;;;AAoC5C,IAAa,KAAqB,CAAG;;;;;AAwBrC,SAAgB,GAAsB,GAAiH;CAC/I,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyE,IAAoB,EAAQ;;AAKlG,CAAG;;;;OA+BM,CAAG;;;;;;;;;AA8C/C,IAAa,IAAsB,CAAG;;;;;;MAMhC;AAkBN,SAAgB,GAAoB,GAA0G;CACtI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAkE,GAAqB,EAAQ;;AAiB/H,IAAa,KAAuB,CAAG;;;;;;MAMjC;AAiBN,SAAgB,GAAqB,GAA4G;CACzI,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAoE,IAAsB,EAAQ;;AAiBlI,IAAa,KAAkB,CAAG;;;;;;MAM5B;AAkBN,SAAgB,GAAgB,GAAuL;CAC/M,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA0D,IAAiB,EAAQ;;AAiBxE,CAAG;;;;;;;;;;;;OAiDd,CAAG;;;;;;;;;;;;;;AA+CnC,IAAa,KAA8B,CAAG;;;;;AAwB9C,SAAgB,GAA+B,GAAmI;CAC1K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2F,IAA6B,EAAQ;;AAK7H,CAAG;;;;;;;;;;;;;;AA+CtC,IAAa,KAA8B,CAAG;;;;;AAwB9C,SAAgB,GAA+B,GAAmI;CAC1K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA2F,IAA6B,EAAQ;;AAKrH,CAAG;;;;;;;;;;;;AAkD9C,IAAa,IAA+B,CAAG;;;;;;MAMzC;AAiBN,SAAgB,GAA6B,GAA4H;CACjK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAoF,GAA8B,EAAQ;;AAiB5G,CAAG;;;;;;;;;;;;;;;;;;;;;;MAsB3C;AA6CN,IAAa,KAAyC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyDzD,SAAgB,GAAuC,GAA4P;CAC3S,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAwG,IAAwC,EAAQ;;AAiB/I,CAAG;;;;;;;;;;MAUtC;AAuCN,IAAa,KAA2C,CAAG;;;;;;;;;;;;;;;;;;;;;;MAsBrD;AA0BN,SAAgB,GAAyC,GAAkQ;CACnT,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4G,IAA0C,EAAQ;;AAiBjJ,CAAG;;;;;;;;;;;;;AAmDhD,IAAa,KAAwC,CAAG;;;;;;;;;;;;OAyC3C,KAA2C,CAAG;;;;;;;;;;;;AA+B3D,SAAgB,GAA4C,GAA6J;CACjN,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAqH,IAA0C,EAAQ;;AAKvM,IAAa,KAAuC,CAAG;;;;;;;;;;;;;;;AAkCvD,SAAgB,GAAwC,GAAqJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6G,IAAsC,EAAQ;;AAK3L,IAAa,KAAoC,CAAG;;;;;;;;;;;;;;;;;;AAmCpD,SAAgB,GAAkC,GAA6O;CACvR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8F,IAAmC,EAAQ;;AAiBzK,IAAa,KAAqC,CAAG;;;;;;;;;;;;AA4BrD,SAAgB,GAAmC,GAAwI;CACnL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgG,IAAoC,EAAQ;;AAiB5K,IAAa,KAA2C,CAAG;;;;;;;;;;;;;;;;;;AAkC3D,SAAgB,GAAyC,GAAoJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4G,IAA0C,EAAQ;;AAiB9L,IAAa,KAAkC,CAAG;;;;;;MAM5C;AAoBN,SAAgB,GAAmC,GAA2I;CACtL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAmG,IAAiC,EAAQ;;AAK5K,IAAa,KAA6B,CAAG;;;;;;MAMvC;AAoBN,SAAgB,GAA8B,GAAiI;CACvK,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAyF,IAA4B,EAAQ;;AAK7J,IAAa,KAA4C,CAAG;;;;;;;;;;;;;AAgC5D,SAAgB,GAA6C,GAA+J;CACpN,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAuH,IAA2C,EAAQ;;AAK1M,IAAa,KAAuC,CAAG;;;;;;;;;;;;;;;;;;;;AAuCvD,SAAgB,GAAwC,GAAqJ;CACrM,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAA6G,IAAsC,EAAQ;;AAK3L,IAAa,IAAoC,CAAG;;;;;;;AA0BpD,SAAgB,GAAqC,GAA+I;CAC5L,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAuG,GAAmC,EAAQ;;AAKlL,IAAa,KAA4C,CAAG;;;;;;;;;;;;;;AAiC5D,SAAgB,GAA6C,GAA+J;CACpN,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,YAAuH,IAA2C,EAAQ;;AAK1M,IAAa,IAA4B,CAAG;;;;;;;;;;;;;;;;;;;;;MAqBtC;AAkBN,SAAgB,GAA0B,GAAqN;CACvP,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8E,GAA2B,EAAQ;;AAiBjJ,IAAa,KAA6C,CAAG;;;;;;;;;;;;AA4B7D,SAAgB,GAA2C,GAAwJ;CAC3M,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgH,IAA4C,EAAQ;;AAiBpM,IAAa,IAAmC,CAAG;;;;;;;;;;;;;;;;;MAiB7C;AAiBN,SAAgB,GAAiC,GAAoI;CAC7K,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA4F,GAAkC,EAAQ;;AAiBtK,IAAa,KAAoC,CAAG;;;;;;;;;;;;;;;;;;;;;MAqB9C;AAoBN,SAAgB,GAAkC,GAA6O;CACvR,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8F,IAAmC,EAAQ;;AAiBzK,IAAa,IAA0B,CAAG;;;;;;MAMpC;AAmBN,SAAgB,GAAwB,GAA+M;CAC/O,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA0E,GAAyB,EAAQ;;AAiBvF,CAAG;;;;;;;;;;;;;;;;;;;;;AA2DvD,IAAa,KAAiD,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;AA2CjE,SAAgB,GAA+C,GAAoR;CAC3U,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAwH,IAAgD,EAAQ;;AAiBhN,IAAa,KAAqC,CAAG;;;;;;;;;;;;;AA6BrD,SAAgB,GAAmC,GAAwI;CACnL,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgG,IAAoC,EAAQ;;AAiB5K,IAAa,KAAyC,CAAG;;;;;;;;;;;;;;;;;;;;;;;;AA4CzD,SAAgB,GAAuC,GAA4P;CAC3S,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAwG,IAAwC,EAAQ;;AAiBvI,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqER,CAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwE/C,IAAa,KAAqC,CAAG;;;;;;;;;;;;;;;;;;;;;;;AAyCrD,SAAgB,GAAmC,GAAgP;CAC3R,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAAgG,IAAoC,EAAQ;;AAiB5K,IAAa,KAA4B,CAAG;;;;;;MAMtC;AAmBN,SAAgB,GAA0B,GAAqN;CACvP,IAAM,IAAU;EAAC,GAAG;EAAgB,GAAG;EAAY;AACnD,QAAO,EAAiB,SAA8E,IAA2B,EAAQ;;AAiB9G,CAAG;;;;;;;;;;;;;;;;OAoDD,CAAG"}