@yuno-payments/dashboard-api-mfe 1.10.6 → 1.10.8

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 (464) hide show
  1. package/build/__mocks__/@yuno/dashboard-authentication-mfe/index.d.ts +10 -0
  2. package/build/api/api.d.ts +675 -0
  3. package/build/api/api.singleton.d.ts +9 -0
  4. package/build/api/api.types.d.ts +229 -0
  5. package/build/api/index.d.ts +3 -0
  6. package/build/api-provider.d.ts +4 -0
  7. package/build/cjs/index.js +6 -6
  8. package/build/cjs/index.js.map +1 -1
  9. package/build/cjs/types/api/api.d.ts +2 -26
  10. package/build/cjs/types/api/api.singleton.d.ts +0 -1
  11. package/build/cjs/types/api/api.types.d.ts +0 -1
  12. package/build/cjs/types/mutations/index.d.ts +0 -2
  13. package/build/cjs/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
  14. package/build/cjs/types/mutations/settings/index.d.ts +0 -1
  15. package/build/cjs/types/queries/audit/audit.query.d.ts +1 -5
  16. package/build/cjs/types/queries/audit/index.d.ts +0 -1
  17. package/build/cjs/types/queries/index.d.ts +0 -1
  18. package/build/cjs/types/types/audit/audit.d.ts +0 -80
  19. package/build/cjs/types/types/checkout/styling/styling.d.ts +0 -31
  20. package/build/cjs/types/types/index.d.ts +0 -1
  21. package/build/cjs/types/types/organization/organization.d.ts +0 -1
  22. package/build/cjs/types/types/recipients/index.d.ts +0 -1
  23. package/build/cjs/types/types/recipients/recipients.d.ts +0 -7
  24. package/build/cjs/types/types/team/team.d.ts +0 -1
  25. package/build/cjs/types/types/webhook/webhook.d.ts +0 -2
  26. package/build/common/config.d.ts +13 -0
  27. package/build/common/config.test.d.ts +0 -0
  28. package/build/constants/errors-code.constant.d.ts +5 -0
  29. package/build/constants/index.d.ts +1 -0
  30. package/build/esm/index.js +6 -6
  31. package/build/esm/index.js.map +1 -1
  32. package/build/esm/types/api/api.d.ts +2 -26
  33. package/build/esm/types/api/api.singleton.d.ts +0 -1
  34. package/build/esm/types/api/api.types.d.ts +0 -1
  35. package/build/esm/types/mutations/index.d.ts +0 -2
  36. package/build/esm/types/mutations/payment-links/payment-links.mutation.d.ts +0 -9
  37. package/build/esm/types/mutations/settings/index.d.ts +0 -1
  38. package/build/esm/types/queries/audit/audit.query.d.ts +1 -5
  39. package/build/esm/types/queries/audit/index.d.ts +0 -1
  40. package/build/esm/types/queries/index.d.ts +0 -1
  41. package/build/esm/types/types/audit/audit.d.ts +0 -80
  42. package/build/esm/types/types/checkout/styling/styling.d.ts +0 -31
  43. package/build/esm/types/types/index.d.ts +0 -1
  44. package/build/esm/types/types/organization/organization.d.ts +0 -1
  45. package/build/esm/types/types/recipients/index.d.ts +0 -1
  46. package/build/esm/types/types/recipients/recipients.d.ts +0 -7
  47. package/build/esm/types/types/team/team.d.ts +0 -1
  48. package/build/esm/types/types/webhook/webhook.d.ts +0 -2
  49. package/build/index.d.ts +4 -378
  50. package/build/lib/http-client/__tests__/http-client.test.d.ts +1 -0
  51. package/build/lib/http-client/api.config.d.ts +2 -0
  52. package/build/lib/http-client/axios.d.ts +19 -0
  53. package/build/lib/http-client/http-client.d.ts +175 -0
  54. package/build/lib/http-client/index.d.ts +2 -0
  55. package/build/msw/browser.d.ts +1 -0
  56. package/build/msw/handlers/api-logs.d.ts +1 -0
  57. package/build/msw/handlers/index.d.ts +1 -0
  58. package/build/msw/handlers/insights.d.ts +1 -0
  59. package/build/msw/handlers/installments.d.ts +1 -0
  60. package/build/msw/handlers/organizations.d.ts +1 -0
  61. package/build/msw/handlers/payments.d.ts +1 -0
  62. package/build/msw/handlers/reconciliation-insights.d.ts +1 -0
  63. package/build/msw/handlers/webhooks.d.ts +1 -0
  64. package/build/msw/index.d.ts +1 -0
  65. package/build/msw/mocks/api-logs/api-logs-v3.mock.d.ts +2 -0
  66. package/build/msw/mocks/insights/conversion-rate/overview-fraud-3ds.mock.d.ts +14 -0
  67. package/build/msw/mocks/insights/conversion-rate/overview.mock.d.ts +34 -0
  68. package/build/msw/mocks/insights/overview/overview-metrics.mock.d.ts +9 -0
  69. package/build/msw/mocks/insights/overview/overview.mock.d.ts +139 -0
  70. package/build/msw/mocks/installments/installments.mock.d.ts +8 -0
  71. package/build/msw/mocks/payments/payments.mock.d.ts +92 -0
  72. package/build/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
  73. package/build/msw/mocks/reconciliation-insights/index.d.ts +22 -0
  74. package/build/msw/mocks/webhooks/webhook-timeline.mock.d.ts +2 -0
  75. package/build/mutations/S3Client/S3Client.mutation.d.ts +6 -0
  76. package/build/mutations/S3Client/index.d.ts +1 -0
  77. package/build/mutations/accounts/accounts.mutation.d.ts +57 -0
  78. package/build/mutations/accounts/accounts.mutation.test.d.ts +1 -0
  79. package/build/mutations/accounts/delete-mutation.d.ts +20 -0
  80. package/build/mutations/accounts/index.d.ts +2 -0
  81. package/build/mutations/accounts/types.d.ts +25 -0
  82. package/build/mutations/ai/ai.mutation.d.ts +28 -0
  83. package/build/mutations/ai/ai.mutation.test.d.ts +1 -0
  84. package/build/mutations/ai/index.d.ts +1 -0
  85. package/build/mutations/audit/audit-api.mutation.d.ts +13 -0
  86. package/build/mutations/audit/audit-api.mutation.test.d.ts +1 -0
  87. package/build/mutations/audit/audit.mutation.d.ts +6 -0
  88. package/build/mutations/audit/index.d.ts +2 -0
  89. package/build/mutations/audit/settings.mutation.test.d.ts +1 -0
  90. package/build/mutations/batch-refunds/batch-refunds.mutation.d.ts +32 -0
  91. package/build/mutations/batch-refunds/batch-refunds.mutation.test.d.ts +1 -0
  92. package/build/mutations/batch-refunds/index.d.ts +1 -0
  93. package/build/mutations/chartgpt/chartgpt.mutation.d.ts +70 -0
  94. package/build/mutations/chartgpt/chartgpt.mutation.test.d.ts +1 -0
  95. package/build/mutations/chartgpt/index.d.ts +1 -0
  96. package/build/mutations/checkouts/checkouts.mutation.d.ts +5 -0
  97. package/build/mutations/checkouts/checkouts.mutation.test.d.ts +1 -0
  98. package/build/mutations/checkouts/index.d.ts +1 -0
  99. package/build/mutations/connections/conections.mutation.test.d.ts +1 -0
  100. package/build/mutations/connections/connections.mutation.d.ts +40 -0
  101. package/build/mutations/connections/index.d.ts +1 -0
  102. package/build/mutations/developers/developers.mutation.d.ts +31 -0
  103. package/build/mutations/developers/developers.mutation.test.d.ts +1 -0
  104. package/build/mutations/developers/index.d.ts +2 -0
  105. package/build/mutations/developers/types.d.ts +5 -0
  106. package/build/mutations/fraud-screening/fraud-screening.mutation.d.ts +52 -0
  107. package/build/mutations/fraud-screening/index.d.ts +1 -0
  108. package/build/mutations/index.d.ts +34 -0
  109. package/build/mutations/insights/index.d.ts +1 -0
  110. package/build/mutations/insights/insights.mutation.d.ts +2 -0
  111. package/build/mutations/installments/index.d.ts +1 -0
  112. package/build/mutations/installments/installments.mutation.d.ts +17 -0
  113. package/build/mutations/installments/installments.mutation.test.d.ts +1 -0
  114. package/build/mutations/multi-factor-authentication/index.d.ts +1 -0
  115. package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.d.ts +12 -0
  116. package/build/mutations/multi-factor-authentication/multi-factor-authentication.mutation.test.d.ts +1 -0
  117. package/build/mutations/notifications/index.d.ts +1 -0
  118. package/build/mutations/notifications/notifications.mutation.d.ts +6 -0
  119. package/build/mutations/organization-config/index.d.ts +1 -0
  120. package/build/mutations/organization-config/organization-config.mutation.d.ts +6 -0
  121. package/build/mutations/organization-settings/index.d.ts +1 -0
  122. package/build/mutations/organization-settings/organization-settings.mutations.d.ts +9 -0
  123. package/build/mutations/organizations/index.d.ts +1 -0
  124. package/build/mutations/organizations/organizations.mutation.d.ts +2 -0
  125. package/build/mutations/organizations/organizations.mutation.test.d.ts +1 -0
  126. package/build/mutations/payment-links/index.d.ts +1 -0
  127. package/build/mutations/payment-links/payment-links.mutation.d.ts +21 -0
  128. package/build/mutations/payment-links/payment-links.mutation.test.d.ts +1 -0
  129. package/build/mutations/payments/index.d.ts +1 -0
  130. package/build/mutations/payments/payments.mutation.d.ts +21 -0
  131. package/build/mutations/payments/payments.mutation.test.d.ts +1 -0
  132. package/build/mutations/reconciliations/index.d.ts +2 -0
  133. package/build/mutations/reconciliations/reconciliations-alerts.mutation.d.ts +5 -0
  134. package/build/mutations/reconciliations/reconciliations-alerts.mutation.test.d.ts +1 -0
  135. package/build/mutations/reconciliations/reconciliations.mutation.d.ts +4 -0
  136. package/build/mutations/reports/index.d.ts +1 -0
  137. package/build/mutations/reports/reports.mutation.d.ts +10 -0
  138. package/build/mutations/reports/reports.mutation.test.d.ts +1 -0
  139. package/build/mutations/routing-monitors/index.d.ts +1 -0
  140. package/build/mutations/routing-monitors/routing-monitors.mutation.d.ts +4 -0
  141. package/build/mutations/saml-config/index.d.ts +1 -0
  142. package/build/mutations/saml-config/saml-config.query.d.ts +4 -0
  143. package/build/mutations/saml-config/saml-config.query.test.d.ts +1 -0
  144. package/build/mutations/scheduled-reports/index.d.ts +1 -0
  145. package/build/mutations/scheduled-reports/scheduled-reports.mutation.d.ts +8 -0
  146. package/build/mutations/security/index.d.ts +1 -0
  147. package/build/mutations/security/security.mutation.d.ts +7 -0
  148. package/build/mutations/security/security.mutation.test.d.ts +1 -0
  149. package/build/mutations/settings/index.d.ts +1 -0
  150. package/build/mutations/settings/settings.mutation.d.ts +17 -0
  151. package/build/mutations/settings/settings.mutation.test.d.ts +1 -0
  152. package/build/mutations/smart-routing/index.d.ts +1 -0
  153. package/build/mutations/smart-routing/smart-routing.mutation.d.ts +90 -0
  154. package/build/mutations/smart-routing/smart-routing.mutation.test.d.ts +1 -0
  155. package/build/mutations/subscriptions/index.d.ts +1 -0
  156. package/build/mutations/subscriptions/subscriptions.mutation.d.ts +19 -0
  157. package/build/mutations/subscriptions/subscriptions.mutation.test.d.ts +1 -0
  158. package/build/mutations/team/index.d.ts +1 -0
  159. package/build/mutations/team/team.mutaion.test.d.ts +1 -0
  160. package/build/mutations/team/team.mutation.d.ts +12 -0
  161. package/build/mutations/template-reporting/index.d.ts +1 -0
  162. package/build/mutations/template-reporting/template-reporting.mutation.d.ts +29 -0
  163. package/build/mutations/template-reporting/template-reporting.mutation.test.d.ts +1 -0
  164. package/build/mutations/users/index.d.ts +1 -0
  165. package/build/mutations/users/users.mutation.d.ts +17 -0
  166. package/build/mutations/users/users.mutation.test.d.ts +1 -0
  167. package/build/mutations/velocity-rules/index.d.ts +1 -0
  168. package/build/mutations/velocity-rules/velocity-rules.mutation.d.ts +5 -0
  169. package/build/queries/accounts/accounts.query.d.ts +30 -0
  170. package/build/queries/accounts/accounts.query.test.d.ts +1 -0
  171. package/build/queries/accounts/index.d.ts +2 -0
  172. package/build/queries/accounts/types.d.ts +21 -0
  173. package/build/queries/api-logs/api-logs-v3.query.d.ts +9 -0
  174. package/build/queries/api-logs/api-logs-v3.query.test.d.ts +1 -0
  175. package/build/queries/api-logs/index.d.ts +1 -0
  176. package/build/queries/audit/audit.query.d.ts +28 -0
  177. package/build/queries/audit/audit.query.test.d.ts +1 -0
  178. package/build/queries/audit/index.d.ts +1 -0
  179. package/build/queries/batch-refunds/batch-refunds.query.d.ts +3 -0
  180. package/build/queries/batch-refunds/index.d.ts +1 -0
  181. package/build/queries/chartgpt/chartgpt.query.d.ts +65 -0
  182. package/build/queries/chartgpt/chartgpt.query.test.d.ts +1 -0
  183. package/build/queries/chartgpt/index.d.ts +1 -0
  184. package/build/queries/checkouts/checkouts.query.d.ts +12 -0
  185. package/build/queries/checkouts/checkouts.query.test.d.ts +1 -0
  186. package/build/queries/checkouts/index.d.ts +2 -0
  187. package/build/queries/checkouts/styling/styling.query.d.ts +11 -0
  188. package/build/queries/checkouts/styling/styling.query.test.d.ts +1 -0
  189. package/build/queries/cms/cms.query.d.ts +14 -0
  190. package/build/queries/cms/cms.query.test.d.ts +1 -0
  191. package/build/queries/cms/index.d.ts +1 -0
  192. package/build/queries/connections/connections.query.d.ts +3 -0
  193. package/build/queries/connections/connections.query.test.d.ts +1 -0
  194. package/build/queries/connections/index.d.ts +1 -0
  195. package/build/queries/data-report/data-report.query.d.ts +20 -0
  196. package/build/queries/data-report/data-report.query.test.d.ts +1 -0
  197. package/build/queries/data-report/fraud/fraud.query.d.ts +17 -0
  198. package/build/queries/data-report/fraud/fraud.query.test.d.ts +1 -0
  199. package/build/queries/data-report/index.d.ts +2 -0
  200. package/build/queries/developers/developers.query.d.ts +16 -0
  201. package/build/queries/developers/developers.query.test.d.ts +1 -0
  202. package/build/queries/developers/index.d.ts +1 -0
  203. package/build/queries/dialogs/dialogs.query.d.ts +2 -0
  204. package/build/queries/dialogs/dialogs.query.test.d.ts +1 -0
  205. package/build/queries/dialogs/index.d.ts +1 -0
  206. package/build/queries/feature-flags/feature-flags.test.d.ts +1 -0
  207. package/build/queries/feature-flags/index.d.ts +8 -0
  208. package/build/queries/firebase/firebase.query.d.ts +8 -0
  209. package/build/queries/firebase/firebase.query.test.d.ts +1 -0
  210. package/build/queries/firebase/index.d.ts +1 -0
  211. package/build/queries/fraud-screening/fraud-screening.query.d.ts +11 -0
  212. package/build/queries/fraud-screening/fraud-screening.query.test.d.ts +1 -0
  213. package/build/queries/fraud-screening/index.d.ts +1 -0
  214. package/build/queries/index.d.ts +39 -0
  215. package/build/queries/installments/index.d.ts +1 -0
  216. package/build/queries/installments/installments.query.d.ts +4 -0
  217. package/build/queries/installments/installments.query.test.d.ts +1 -0
  218. package/build/queries/mfa/index.d.ts +1 -0
  219. package/build/queries/mfa/organization-settings.query.d.ts +11 -0
  220. package/build/queries/network-tokens/index.d.ts +1 -0
  221. package/build/queries/network-tokens/network-tokens.query.d.ts +4 -0
  222. package/build/queries/notifications/index.d.ts +1 -0
  223. package/build/queries/notifications/notifications.query.d.ts +12 -0
  224. package/build/queries/notifications/notifications.query.test.d.ts +1 -0
  225. package/build/queries/onboarding/index.d.ts +1 -0
  226. package/build/queries/onboarding/onboarding.query.d.ts +7 -0
  227. package/build/queries/onboarding/onboarding.query.test.d.ts +1 -0
  228. package/build/queries/organization-config/index.d.ts +1 -0
  229. package/build/queries/organization-config/organization-config.query.d.ts +4 -0
  230. package/build/queries/organizations/index.d.ts +1 -0
  231. package/build/queries/organizations/organizations.query.d.ts +30 -0
  232. package/build/queries/organizations/organizations.query.test.d.ts +1 -0
  233. package/build/queries/payment-links/index.d.ts +1 -0
  234. package/build/queries/payment-links/payment-links.query.d.ts +7 -0
  235. package/build/queries/payment-links/payment-links.query.test.d.ts +1 -0
  236. package/build/queries/payments/index.d.ts +2 -0
  237. package/build/queries/payments/payments.query.d.ts +36 -0
  238. package/build/queries/payments/payments.query.test.d.ts +1 -0
  239. package/build/queries/payments/payouts-timeline.query.test.d.ts +1 -0
  240. package/build/queries/payments/payouts.query.d.ts +7 -0
  241. package/build/queries/payments/payouts.query.test.d.ts +1 -0
  242. package/build/queries/recipients/index.d.ts +1 -0
  243. package/build/queries/recipients/recipients.query.d.ts +8 -0
  244. package/build/queries/reconciliations/index.d.ts +7 -0
  245. package/build/queries/reconciliations/reconciliation-insights.query.d.ts +26 -0
  246. package/build/queries/reconciliations/reconciliation-insights.query.test.d.ts +1 -0
  247. package/build/queries/reconciliations/reconciliations-advancements.query.d.ts +9 -0
  248. package/build/queries/reconciliations/reconciliations-advancements.query.test.d.ts +1 -0
  249. package/build/queries/reconciliations/reconciliations-agenda.query.d.ts +9 -0
  250. package/build/queries/reconciliations/reconciliations-agenda.query.test.d.ts +1 -0
  251. package/build/queries/reconciliations/reconciliations-alerts.query.d.ts +8 -0
  252. package/build/queries/reconciliations/reconciliations-alerts.query.test.d.ts +1 -0
  253. package/build/queries/reconciliations/reconciliations-fees.query.d.ts +9 -0
  254. package/build/queries/reconciliations/reconciliations-fees.query.test.d.ts +1 -0
  255. package/build/queries/reconciliations/reconciliations-sales.query.d.ts +9 -0
  256. package/build/queries/reconciliations/reconciliations-sales.query.test.d.ts +1 -0
  257. package/build/queries/reconciliations/reconciliations.query.d.ts +11 -0
  258. package/build/queries/reconciliations/reconciliations.query.test.d.ts +1 -0
  259. package/build/queries/reports/index.d.ts +1 -0
  260. package/build/queries/reports/reports.query.d.ts +13 -0
  261. package/build/queries/reports/reports.query.test.d.ts +1 -0
  262. package/build/queries/routing-monitors/index.d.ts +1 -0
  263. package/build/queries/routing-monitors/routing-monitors.query.d.ts +4 -0
  264. package/build/queries/saml-config/index.d.ts +1 -0
  265. package/build/queries/saml-config/saml-config.query.d.ts +4 -0
  266. package/build/queries/saml-config/saml-config.query.test.d.ts +1 -0
  267. package/build/queries/security/index.d.ts +1 -0
  268. package/build/queries/security/security.query.d.ts +8 -0
  269. package/build/queries/security/security.query.test.d.ts +1 -0
  270. package/build/queries/smart-recovery/index.d.ts +1 -0
  271. package/build/queries/smart-recovery/smart-recovery-overview.query.d.ts +9 -0
  272. package/build/queries/smart-recovery/smart-recovery-overview.query.test.d.ts +1 -0
  273. package/build/queries/smart-routing/index.d.ts +1 -0
  274. package/build/queries/smart-routing/smart-routing.query.d.ts +28 -0
  275. package/build/queries/smart-routing/smart-routing.query.test.d.ts +1 -0
  276. package/build/queries/subscriptions/index.d.ts +1 -0
  277. package/build/queries/subscriptions/subscriptions.query.d.ts +3 -0
  278. package/build/queries/subscriptions/subscriptions.query.test.d.ts +1 -0
  279. package/build/queries/team/index.d.ts +1 -0
  280. package/build/queries/team/team.query.d.ts +28 -0
  281. package/build/queries/team/team.query.test.d.ts +1 -0
  282. package/build/queries/template-reporting/index.d.ts +1 -0
  283. package/build/queries/template-reporting/template-reporting.query.d.ts +7 -0
  284. package/build/queries/template-reporting/template-reporting.query.test.d.ts +1 -0
  285. package/build/queries/translation/index.d.ts +1 -0
  286. package/build/queries/translation/translation.query.d.ts +5 -0
  287. package/build/queries/users/index.d.ts +1 -0
  288. package/build/queries/users/users.query.d.ts +25 -0
  289. package/build/queries/users/users.query.test.d.ts +1 -0
  290. package/build/queries/velocity-rules/index.d.ts +1 -0
  291. package/build/queries/velocity-rules/velocity-rules.query.d.ts +6 -0
  292. package/build/queries/webhooks/index.d.ts +1 -0
  293. package/build/queries/webhooks/webhook-timeline.query.d.ts +9 -0
  294. package/build/queries/webhooks/webhook-timeline.query.test.d.ts +1 -0
  295. package/build/set-public-path.d.ts +1 -0
  296. package/build/store/index.d.ts +3 -0
  297. package/build/types/accounts/accounts.d.ts +11 -0
  298. package/build/types/accounts/index.d.ts +1 -0
  299. package/build/types/ai/ai.d.ts +78 -0
  300. package/build/types/ai/index.d.ts +1 -0
  301. package/build/types/allowed-list/allowed-list.d.ts +9 -0
  302. package/build/types/allowed-list/index.d.ts +1 -0
  303. package/build/types/audit/audit.d.ts +387 -0
  304. package/build/types/audit/index.d.ts +1 -0
  305. package/build/types/batch-refunds/batch-refunds.d.ts +38 -0
  306. package/build/types/batch-refunds/index.d.ts +1 -0
  307. package/build/types/chartgpt/feedback.types.d.ts +34 -0
  308. package/build/types/chartgpt/index.d.ts +1 -0
  309. package/build/types/checkout/checkout.d.ts +289 -0
  310. package/build/types/checkout/index.d.ts +1 -0
  311. package/build/types/checkout/styling/styling.d.ts +176 -0
  312. package/build/types/cms/cms.d.ts +47 -0
  313. package/build/types/cms/index.d.ts +1 -0
  314. package/build/types/connection/connection.d.ts +81 -0
  315. package/build/types/connection/costs.d.ts +26 -0
  316. package/build/types/connection/index.d.ts +2 -0
  317. package/build/types/country/country.d.ts +12 -0
  318. package/build/types/country/index.d.ts +1 -0
  319. package/build/types/customized-api-keys/customized-api-keys.d.ts +30 -0
  320. package/build/types/customized-api-keys/index.d.ts +1 -0
  321. package/build/types/data-report/conversion-rate.types.d.ts +48 -0
  322. package/build/types/data-report/data-report.d.ts +66 -0
  323. package/build/types/data-report/fraud.types.d.ts +166 -0
  324. package/build/types/data-report/index.d.ts +3 -0
  325. package/build/types/developer/developer.d.ts +13 -0
  326. package/build/types/developer/index.d.ts +1 -0
  327. package/build/types/feature-flags/intex.d.ts +13 -0
  328. package/build/types/fraud-screening/fraud-screening.d.ts +109 -0
  329. package/build/types/fraud-screening/index.d.ts +1 -0
  330. package/build/types/index.d.ts +37 -0
  331. package/build/types/installments/index.d.ts +1 -0
  332. package/build/types/installments/installments.d.ts +125 -0
  333. package/build/types/mfa/index.d.ts +1 -0
  334. package/build/types/mfa/mfa.d.ts +6 -0
  335. package/build/types/notifications/index.d.ts +1 -0
  336. package/build/types/notifications/notifications.d.ts +39 -0
  337. package/build/types/onboarding/index.d.ts +1 -0
  338. package/build/types/onboarding/onboarding.d.ts +7 -0
  339. package/build/types/operation-transaction/index.d.ts +1 -0
  340. package/build/types/operation-transaction/operation-transaction.d.ts +28 -0
  341. package/build/types/organization/index.d.ts +1 -0
  342. package/build/types/organization/organization.d.ts +137 -0
  343. package/build/types/organization-config/index.d.ts +1 -0
  344. package/build/types/organization-config/organization-config.d.ts +34 -0
  345. package/build/types/organization-settings/index.d.ts +1 -0
  346. package/build/types/organization-settings/organization-settings.d.ts +27 -0
  347. package/build/types/payment/index.d.ts +1 -0
  348. package/build/types/payment/payment.d.ts +581 -0
  349. package/build/types/payment-links/index.d.ts +1 -0
  350. package/build/types/payment-links/payment-links.d.ts +16 -0
  351. package/build/types/payouts/index.d.ts +1 -0
  352. package/build/types/payouts/payouts.d.ts +125 -0
  353. package/build/types/recipients/index.d.ts +2 -0
  354. package/build/types/recipients/recipients.d.ts +223 -0
  355. package/build/types/reconciliation/index.d.ts +7 -0
  356. package/build/types/reconciliation/reconciliation-advancements.d.ts +40 -0
  357. package/build/types/reconciliation/reconciliation-agenda.d.ts +84 -0
  358. package/build/types/reconciliation/reconciliation-alerts.d.ts +38 -0
  359. package/build/types/reconciliation/reconciliation-fees.d.ts +45 -0
  360. package/build/types/reconciliation/reconciliation-insights.d.ts +188 -0
  361. package/build/types/reconciliation/reconciliation-sales.d.ts +56 -0
  362. package/build/types/reconciliation/reconciliation.d.ts +349 -0
  363. package/build/types/reports/index.d.ts +1 -0
  364. package/build/types/reports/reports.d.ts +154 -0
  365. package/build/types/routing-monitors/index.d.ts +1 -0
  366. package/build/types/routing-monitors/routing-monitors.d.ts +35 -0
  367. package/build/types/s3-client/index.d.ts +1 -0
  368. package/build/types/s3-client/s3-client.d.ts +19 -0
  369. package/build/types/saml-config/index.d.ts +1 -0
  370. package/build/types/saml-config/saml-config.d.ts +28 -0
  371. package/build/types/smart-recovery/index.d.ts +1 -0
  372. package/build/types/smart-recovery/smart-recovery-overview.types.d.ts +94 -0
  373. package/build/types/smart-routing/index.d.ts +1 -0
  374. package/build/types/smart-routing/smart-routing.d.ts +362 -0
  375. package/build/types/subscriptions/index.d.ts +1 -0
  376. package/build/types/subscriptions/subscriptions.d.ts +68 -0
  377. package/build/types/team/index.d.ts +1 -0
  378. package/build/types/team/team.d.ts +122 -0
  379. package/build/types/template-reporting/common.types.d.ts +65 -0
  380. package/build/types/template-reporting/index.d.ts +55 -0
  381. package/build/types/template-reporting/schedule.types.d.ts +72 -0
  382. package/build/types/template-reporting/template.types.d.ts +98 -0
  383. package/build/types/translation/index.d.ts +1 -0
  384. package/build/types/translation/translation.d.ts +8 -0
  385. package/build/types/user/index.d.ts +1 -0
  386. package/build/types/user/user.d.ts +208 -0
  387. package/build/types/velocity-rules/index.d.ts +1 -0
  388. package/build/types/velocity-rules/velocity-rules.d.ts +15 -0
  389. package/build/types/webhook/index.d.ts +1 -0
  390. package/build/types/webhook/webhook.d.ts +73 -0
  391. package/build/utils/enums.d.ts +162 -0
  392. package/build/utils/handler-error.d.ts +6 -0
  393. package/build/utils/index.d.ts +3 -0
  394. package/build/utils/test-utils.d.ts +4 -0
  395. package/build/utils/use-account-code.d.ts +1 -0
  396. package/build/utils/use-account-code.test.d.ts +1 -0
  397. package/build/utils/use-is-testing.d.ts +3 -0
  398. package/build/utils/use-is-testing.test.d.ts +1 -0
  399. package/build/utils/use-localstorage.d.ts +2 -0
  400. package/build/websockets/index.d.ts +1 -0
  401. package/build/websockets/use-chart-assistant-socket.d.ts +17 -0
  402. package/build/websockets/use-chart-assistant-socket.test.d.ts +1 -0
  403. package/build/yuno-dashboard-api-mfe.d.ts +9 -0
  404. package/package.json +1 -1
  405. package/build/cjs/types/mutations/concierge/concierge.mutation.d.ts +0 -8
  406. package/build/cjs/types/mutations/concierge/index.d.ts +0 -1
  407. package/build/cjs/types/mutations/settings/use-table-onboarding.d.ts +0 -6
  408. package/build/cjs/types/queries/audit/audit-v3.query.d.ts +0 -9
  409. package/build/cjs/types/queries/concierge/concierge.query.d.ts +0 -6
  410. package/build/cjs/types/queries/concierge/index.d.ts +0 -1
  411. package/build/cjs/types/types/concierge/concierge-alerts.d.ts +0 -42
  412. package/build/cjs/types/types/concierge/index.d.ts +0 -1
  413. package/build/esm/types/msw/handlers/recipients.d.ts +0 -1
  414. package/build/esm/types/msw/mocks/recipients/recipients.mock.d.ts +0 -775
  415. package/build/esm/types/mutations/concierge/concierge.mutation.d.ts +0 -8
  416. package/build/esm/types/mutations/concierge/index.d.ts +0 -1
  417. package/build/esm/types/mutations/recipients/index.d.ts +0 -1
  418. package/build/esm/types/mutations/recipients/recipients.mutation.d.ts +0 -11
  419. package/build/esm/types/mutations/settings/use-table-onboarding.d.ts +0 -6
  420. package/build/esm/types/queries/audit/audit-v3.query.d.ts +0 -9
  421. package/build/esm/types/queries/concierge/concierge.query.d.ts +0 -6
  422. package/build/esm/types/queries/concierge/index.d.ts +0 -1
  423. package/build/esm/types/types/concierge/concierge-alerts.d.ts +0 -42
  424. package/build/esm/types/types/concierge/index.d.ts +0 -1
  425. package/build/esm/types/types/recipients/recipients-mutations.d.ts +0 -136
  426. package/build/main.31b800bdfc7bcf66.hot-update.js +0 -23
  427. package/build/main.31b800bdfc7bcf66.hot-update.js.map +0 -1
  428. package/build/main.31b800bdfc7bcf66.hot-update.json +0 -1
  429. package/build/main.31ef41183a0357fd.hot-update.js +0 -23
  430. package/build/main.31ef41183a0357fd.hot-update.js.map +0 -1
  431. package/build/main.31ef41183a0357fd.hot-update.json +0 -1
  432. package/build/main.5231ec959bfdd54a.hot-update.js +0 -823
  433. package/build/main.5231ec959bfdd54a.hot-update.js.map +0 -1
  434. package/build/main.5231ec959bfdd54a.hot-update.json +0 -1
  435. package/build/main.60642e2056d40cbc.hot-update.js +0 -23
  436. package/build/main.60642e2056d40cbc.hot-update.js.map +0 -1
  437. package/build/main.60642e2056d40cbc.hot-update.json +0 -1
  438. package/build/main.7734f96d14c3c07a.hot-update.js +0 -10
  439. package/build/main.7734f96d14c3c07a.hot-update.js.map +0 -1
  440. package/build/main.7734f96d14c3c07a.hot-update.json +0 -1
  441. package/build/main.9a70cae7efc29065.hot-update.js +0 -39
  442. package/build/main.9a70cae7efc29065.hot-update.js.map +0 -1
  443. package/build/main.9a70cae7efc29065.hot-update.json +0 -1
  444. package/build/main.9c87c39ff7873bca.hot-update.js +0 -10
  445. package/build/main.9c87c39ff7873bca.hot-update.js.map +0 -1
  446. package/build/main.9c87c39ff7873bca.hot-update.json +0 -1
  447. package/build/main.a0a0faaf03061b21.hot-update.js +0 -23
  448. package/build/main.a0a0faaf03061b21.hot-update.js.map +0 -1
  449. package/build/main.a0a0faaf03061b21.hot-update.json +0 -1
  450. package/build/main.d62d5a57d5bc6614.hot-update.js +0 -4236
  451. package/build/main.d62d5a57d5bc6614.hot-update.js.map +0 -1
  452. package/build/main.d62d5a57d5bc6614.hot-update.json +0 -1
  453. package/build/main.ecc2159bd4dc7d54.hot-update.js +0 -23
  454. package/build/main.ecc2159bd4dc7d54.hot-update.js.map +0 -1
  455. package/build/main.ecc2159bd4dc7d54.hot-update.json +0 -1
  456. package/build/yuno-dashboard-api-mfe.js +0 -57105
  457. package/build/yuno-dashboard-api-mfe.js.map +0 -1
  458. /package/build/{esm/types/set-public-path.d.ts → api/api.test.d.ts} +0 -0
  459. /package/build/{cjs/types/set-public-path.d.ts → api-provider.test.d.ts} +0 -0
  460. /package/build/{cjs/types/msw → msw}/handlers/recipients.d.ts +0 -0
  461. /package/build/{cjs/types/msw → msw}/mocks/recipients/recipients.mock.d.ts +0 -0
  462. /package/build/{cjs/types/mutations → mutations}/recipients/index.d.ts +0 -0
  463. /package/build/{cjs/types/mutations → mutations}/recipients/recipients.mutation.d.ts +0 -0
  464. /package/build/{cjs/types/types → types}/recipients/recipients-mutations.d.ts +0 -0
@@ -0,0 +1,675 @@
1
+ import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
2
+ import { HttpClient } from '../lib/http-client';
3
+ import { GetPaymentsParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, ThemeSettings, ListSubscriptionsParams } from './api.types';
4
+ import { Audit, OperationTransaction, Organization, OrganizationConfig, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, ReconciliationInsights, Payment, AddToRiskListRequest, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, Installments, Connection, TemplateReporting, GetUserFullResponse, Team } from '../types';
5
+ import { ConversionRateParams, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds } from '../types/data-report/conversion-rate.types';
6
+ import { RoutingMonitors } from '../types/routing-monitors';
7
+ import { ChangePaymentsWebhook } from '../mutations';
8
+ import { S3Client } from '../types/s3-client';
9
+ import { CreateRecipientPayload, UpdateRecipientPayload, CreateOnboardingPayload, UpdateOnboardingPayload } from '../types/recipients/recipients-mutations';
10
+ import { AllowedList } from '../types/allowed-list';
11
+ import { Cost } from '../types/connection/costs';
12
+ import { Styling, StylingSettings } from '../types/checkout/styling/styling';
13
+ import { FeatureFlags } from '../types/feature-flags/intex';
14
+ import { DuplicateAccountBody, DuplicateAccountResponse, RetryDuplicateAccountResponse } from '../mutations/accounts/types';
15
+ import { PendingDuplicateAccountsResponse } from '../queries/accounts/types';
16
+ import { FeatureFlagsResult, PatchChartGPTPayload } from '../queries';
17
+ interface S3Payload {
18
+ payload: S3Client.PayloadV2;
19
+ handleSetProgress?: (progress: number) => void;
20
+ }
21
+ export declare class Api extends HttpClient {
22
+ constructor(config?: AxiosRequestConfig);
23
+ simulateAxiosError(): Promise<AxiosResponse<any, any, {}>>;
24
+ updateReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
25
+ createReconciliationReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
26
+ getReconciliationTransactions<T>(params: any): Promise<AxiosResponse<T, any>>;
27
+ getReconciliationSettlements<T>(params: any): Promise<AxiosResponse<T, any>>;
28
+ getReconciliationMetrics<T>(params: GetReconciliationMetricParams): Promise<AxiosResponse<T, unknown>>;
29
+ getReconciliationFilters<T>(): Promise<AxiosResponse<T, unknown>>;
30
+ getReconciliationsReportColumns<T>(templateType: TemplateType, reportType: ReconciliationReportType): Promise<AxiosResponse<T, any>>;
31
+ getReconciliationReportTemplates<T>(): Promise<AxiosResponse<T>>;
32
+ getAllTableColumns<T>(tableType: Reconciliation.TableType): Promise<AxiosResponse<T>>;
33
+ getReconciliationActive<T>(): Promise<AxiosResponse<T, unknown>>;
34
+ getReconciliationAlerts<T>(body: ReconciliationAlerts.ReconciliationAlertFiltersBody, params: ReconciliationAlerts.ReconciliationAlertFiltersParams): Promise<AxiosResponse<T>>;
35
+ postReconciliationAlert<T>(payload: ReconciliationAlerts.ReconciliationAlertToSave): Promise<AxiosResponse<T>>;
36
+ updateReconciliationAlert<T>(payload: ReconciliationAlerts.ReconciliationAlertToUpdate): Promise<AxiosResponse<T>>;
37
+ deleteReconciliationAlert<T>(params: ReconciliationAlerts.DeleteReconciliationAlertResponse): Promise<AxiosResponse<T>>;
38
+ getReconciliationAgenda<T>(body: ReconciliationAgenda.FiltersRequestBody, params: ReconciliationAgenda.FiltersRequestParams): Promise<AxiosResponse<T>>;
39
+ getReconciliationAgendaInsightByKey<T>(body: ReconciliationAgenda.FiltersRequestBody, params: ReconciliationAgenda.InsightRequestParams): Promise<AxiosResponse<T>>;
40
+ getReconciliationSales<T>(body: ReconciliationSales.FiltersRequestBody, params: ReconciliationSales.FiltersRequestParams): Promise<AxiosResponse<T>>;
41
+ getReconciliationAdvancements<T>(body: ReconciliationAdvancements.FiltersRequestBody, params: ReconciliationAdvancements.FiltersRequestParams): Promise<AxiosResponse<T>>;
42
+ getReconciliationFees<T>(body: ReconciliationFees.FiltersRequestBody, params: ReconciliationFees.FiltersRequestParams): Promise<AxiosResponse<T>>;
43
+ getReconciliationInsightsConflictsSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
44
+ getReconciliationInsightsNotReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
45
+ getReconciliationInsightsNotReconciledList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
46
+ getReconciliationInsightsStatusConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
47
+ getReconciliationInsightsStatusConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
48
+ getReconciliationInsightsAmountConflictAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
49
+ getReconciliationInsightsAmountConflictList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
50
+ getReconciliationInsightsConflictDateSummary<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
51
+ getReconciliationInsightsConflictDateAggregators<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
52
+ getReconciliationInsightsConflictDateList<T>(body: ReconciliationInsights.ListFiltersWithProvider): Promise<AxiosResponse<T>>;
53
+ getReconciliationInsightsIncorrectFeesSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
54
+ getReconciliationInsightsIncorrectFeesAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
55
+ getReconciliationInsightsIncorrectFeesList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
56
+ getReconciliationInsightsFeesChargedSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
57
+ getReconciliationInsightsReconciledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType): Promise<AxiosResponse<T>>;
58
+ getReconciliationInsightsReconciledAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType, transactionType?: string): Promise<AxiosResponse<T>>;
59
+ getReconciliationInsightsReconciledList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer, dateFilter?: ReconciliationInsights.DateFilterType, transactionType?: string): Promise<AxiosResponse<T>>;
60
+ getReconciliationInsightsNotConfirmSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
61
+ getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
62
+ getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
63
+ getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
64
+ getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
65
+ getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
66
+ getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
67
+ postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
68
+ postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
69
+ getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
70
+ postPaymentsEvaluated<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
71
+ getPaymentV2<T>(paymentCode: string): Promise<AxiosResponse<T, any>>;
72
+ postTransactions<T>(params: GetTransactionsParams): Promise<AxiosResponse<T, any>>;
73
+ postFraudTransactions<T>(params: GetTransactionsParams): Promise<AxiosResponse<T, any>>;
74
+ getPayoutDetails<T>(params: GetPayoutDetail): Promise<AxiosResponse<T, any>>;
75
+ getPayoutTransactionDetails<T>(params: GetPayoutTransactionDetail): Promise<AxiosResponse<T, any>>;
76
+ getPayoutHistoryDetails<T>(params: GetPayoutDetail, organizationCode: string): Promise<AxiosResponse<T, any>>;
77
+ getPayoutTimeline<T>(payoutCode: string, organizationCode: string): Promise<AxiosResponse<T, any>>;
78
+ getPaymentMethodsByCountry<T>({ provider_id, country }: Organization.PaymentMethods, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
79
+ getOrgByName<T>(name: any): Promise<AxiosResponse<T, any>>;
80
+ createOperationTransaction<T>(payload: OperationTransaction.Request, transactionId: string, paymentId: string, action: OperationTransaction.Actions): Promise<AxiosResponse<T, any>>;
81
+ getPaymentMethodsAndProviders<T>(): Promise<AxiosResponse<T, any>>;
82
+ getTransactionDetailsV2<T>(params: GetTransactionDetailsV2Params): Promise<AxiosResponse<T, any>>;
83
+ getTransactionRawResponse<T>(params: GetTransactionDetailsV2Params): Promise<AxiosResponse<T, any>>;
84
+ postProviderRawResponse<T>(transactionCode: string, payload: Payment.ProviderRawResponse.Request): Promise<AxiosResponse<T, any>>;
85
+ uploadChargebacks<T>(payload: Payment.UploadRequest, paymentId: string, transactionId: string, handleSetProgress: (progress: number) => void): Promise<AxiosResponse<T, any>>;
86
+ getPaymentTransactionsDetails<T>({ transaction_code, }: {
87
+ transaction_code: any;
88
+ }): Promise<AxiosResponse<T, any>>;
89
+ getTransactionHistoryByPaymentCode<T>({ payment_code, }: {
90
+ payment_code: any;
91
+ }): Promise<AxiosResponse<T, any>>;
92
+ getDeveloperCredentials<T>(password: any, accountCode: any, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
93
+ getDeveloperCredentialsValidatePassword<T>(password: any): Promise<AxiosResponse<T, any>>;
94
+ getDeveloperCredentialsValidatePasswordRegularUser<T>(password: any): Promise<AxiosResponse<T, any>>;
95
+ getAllowedIps<T>(): Promise<AxiosResponse<T, any>>;
96
+ patchAllowedIps<T>(request: AllowedList.Request): Promise<AxiosResponse<T, any>>;
97
+ getOrganization<T>(): Promise<AxiosResponse<T, any>>;
98
+ getAllOrganization<T>(): Promise<AxiosResponse<T, any>>;
99
+ getProviderParams<T>(param: any, organizationCodeFromAccount: any): Promise<AxiosResponse<T, any>>;
100
+ getIntegrationByAccountV2<T>({ accountCode, organizationCode, }: {
101
+ accountCode: string;
102
+ organizationCode: string;
103
+ }): Promise<AxiosResponse<T, any>>;
104
+ putCosts<T>(payload: {
105
+ integration_code: string;
106
+ costs: Cost[];
107
+ }): Promise<AxiosResponse<T>>;
108
+ updateOrganizationStatus<T>(): Promise<AxiosResponse<T>>;
109
+ addToRiskList<T>(paymentId: string, payload: AddToRiskListRequest): Promise<AxiosResponse<T, any>>;
110
+ getOrganizationConfigs<T>(): Promise<AxiosResponse<T, any>>;
111
+ postOrganizationConfigs<T>(payload: OrganizationConfig.PostConfigsRequest): Promise<AxiosResponse<T, any>>;
112
+ putOrganizationConfigsByAccount<T>(payload: OrganizationConfig.PutConfigsByAccountRequest): Promise<AxiosResponse<T, any>>;
113
+ getIntegrationParams<T>({ accountCode, integration_code, }: {
114
+ accountCode: any;
115
+ integration_code: any;
116
+ }): Promise<AxiosResponse<T, any>>;
117
+ getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string, basePath?: SmartRouting.RoutingType): Promise<AxiosResponse<T>>;
118
+ getHashPylon<T>(): Promise<AxiosResponse<T>>;
119
+ getConnections<T>(): Promise<AxiosResponse<T, any>>;
120
+ getOnboardingStatus<T>(accountCode: string): Promise<AxiosResponse<T, any>>;
121
+ postValidateStatusConnection<T>({ payload, accountCode, }: {
122
+ payload: any;
123
+ accountCode: any;
124
+ }): Promise<AxiosResponse<T, any>>;
125
+ postChangeStatusConnection<T>({ payload, accountCode, }: {
126
+ payload: any;
127
+ accountCode: any;
128
+ }): Promise<AxiosResponse<T, any>>;
129
+ postMultiConnection<T>({ payload }: {
130
+ payload: any;
131
+ }): Promise<AxiosResponse<T, any>>;
132
+ postMultiConnectionValidate<T>(): Promise<AxiosResponse<T, any>>;
133
+ patchConnection<T>({ payload, connectionCode, }: {
134
+ payload: any;
135
+ connectionCode: any;
136
+ }): Promise<AxiosResponse<T, any>>;
137
+ postDefaultRoutes<T>({ payload, }: {
138
+ payload: {
139
+ provider_id: string;
140
+ connections: [integration_code: string, account_code: string];
141
+ };
142
+ }): Promise<AxiosResponse<T, any>>;
143
+ getDialogs<T>(): Promise<AxiosResponse<T, any>>;
144
+ getWebhookParamsV2<T>(): Promise<AxiosResponse<T, Webhook.ParamV2[]>>;
145
+ getWebhooksV3<T>({ accountCode, name, }: {
146
+ accountCode: string;
147
+ name?: string;
148
+ }): Promise<AxiosResponse<Webhook.WebHookV2[]>>;
149
+ getWebhooksV2Detail<T>({ accountCode, }: {
150
+ accountCode: any;
151
+ }): Promise<AxiosResponse<T, Webhook.WebHookV2[]>>;
152
+ postWebhookV2MultiAccount<T>({ payload, }: {
153
+ payload: Webhook.WebHookV2MultiAccount;
154
+ }): Promise<AxiosResponse<T>>;
155
+ deleteWebhookV2<T>(code: string, accountCode: string): Promise<AxiosResponse<T>>;
156
+ updateWebhookV2<T>(code: string, payload: any, accountCode: string): Promise<AxiosResponse<T>>;
157
+ getMenu<T>(): Promise<AxiosResponse<T>>;
158
+ postWebhookLogs<T>({ payload: { account_code, ...rest }, }: {
159
+ payload: Audit.AuditWebhooksParams;
160
+ }): Promise<AxiosResponse<T>>;
161
+ postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
162
+ postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
163
+ postExportWebhooksLogs<T>(payload: Audit.ExportWebhooksLogsRequest): Promise<AxiosResponse<T>>;
164
+ getApiLogsV3<T>(paymentCode: string): Promise<AxiosResponse<T>>;
165
+ getWebhookTimeline<T>(paymentCode: string): Promise<AxiosResponse<T>>;
166
+ postExportDashboardLogs<T>(payload: Audit.ExportDashboardLogsRequest): Promise<AxiosResponse<T>>;
167
+ postExportMonitorsLogs<T>(payload: Audit.ExportMonitorsLogsRequest): Promise<AxiosResponse<T>>;
168
+ getAuditExportsList<T>(reportType: Audit.AuditExportReportType): Promise<AxiosResponse<T>>;
169
+ getAuditExportDownload<T>(reportId: string): Promise<AxiosResponse<T>>;
170
+ private getUnifiedExportsPath;
171
+ postUnifiedExport<T>(tab: Audit.UnifiedExportTabType, payload: Audit.UnifiedExportRequest): Promise<AxiosResponse<T>>;
172
+ getUnifiedExportStatus<T>(tab: Audit.UnifiedExportTabType, exportId: string): Promise<AxiosResponse<T>>;
173
+ getUnifiedExportsList<T>(tab: Audit.UnifiedExportTabType, page?: number, size?: number): Promise<AxiosResponse<T>>;
174
+ postApiLogs<T>({ payload: { account_code, ...rest }, }: {
175
+ payload: Audit.AuditApiLogsParams;
176
+ }): Promise<AxiosResponse<T>>;
177
+ getApiLogsDetailByPaymentCode<T>(paymentCode: string): Promise<AxiosResponse<T>>;
178
+ getApiLogsByTransactionCode<T>(transactionCode: string, accountCode: string): Promise<AxiosResponse<T>>;
179
+ useGetPaymentStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
180
+ useGetTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
181
+ useGetReconciliationTransactionStatusesStyles<T>(): Promise<AxiosResponse<T, any>>;
182
+ useGetCountriesConfig<T>(): Promise<AxiosResponse<T, any>>;
183
+ useGetCountriesConfigV2<T>(acceptLanguage?: string): Promise<AxiosResponse<T, any>>;
184
+ useGetTimeZoneCatalog<T>(): Promise<AxiosResponse<T, any>>;
185
+ useGetAuditLogsFilters<T>(): Promise<AxiosResponse<T, any>>;
186
+ getDashboardStaticContents<T>(): Promise<AxiosResponse<T, any>>;
187
+ getLocales<T>(): Promise<AxiosResponse<T, any>>;
188
+ getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
189
+ putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
190
+ getSmartRoutingConditionTypes<T>(accountCode: string, paymentMethod: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
191
+ getSmartRoutingConditionPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T, any>>;
192
+ getSmartRoutingConditionTypesValues<T>(accountCode: string, index: number): Promise<AxiosResponse<T, any>>;
193
+ getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, {
194
+ actions: string[];
195
+ } | string[]>>;
196
+ getSmartRoutingWorkflowVersion<T>(accountCode: string, workflowVersionId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
197
+ getSmartRoutingWorkflow<T>(accountCode: string, paymentName: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
198
+ putSmartRoutingUpdateWorkflow<T>(accountCode: string, data: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
199
+ putSmartRoutingUpdateWorkflowName<T>(accountCode: string, data: {
200
+ name: string;
201
+ code: string;
202
+ }, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
203
+ postSmartRoutingCreateWorkflow<T>(accountCode: string, data: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
204
+ postSmartRoutingPublishVersion<T>(accountCode: string, versionCode: string, organizationCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
205
+ deleteSmartRoutingVersion<T>(accountCode: string, versionCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
206
+ postSmartRoutingDuplicateVersion<T>(accountCode: string, versionCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
207
+ getSmartRoutingDeclinedGroup<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
208
+ updateSmartRoutingDeclinedGroup<T>(accountCode: string, declineId: string, payload: any): Promise<AxiosResponse<T, any>>;
209
+ createSmartRoutingDeclinedGroup<T>(accountCode: string, payload: any): Promise<AxiosResponse<T, any>>;
210
+ getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
211
+ updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
212
+ getSmartRoutingSimulateConditionTypeValues<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
213
+ simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
214
+ getSmartRoutingSearchConditionValues<T>(conditionType: string, text: string): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
215
+ getProviderConversionRatesData<T>(): Promise<AxiosResponse<T, SmartRouting.SRConversionRates[]>>;
216
+ updateMonitorRedistribution<T>(organizationCode: string, values: SmartRouting.MonitorRedistribution): Promise<AxiosResponse<T, any>>;
217
+ removeDeclinedGroup<T>(organizationCode: string, declinedGroupCode: number | string): Promise<AxiosResponse<T, any>>;
218
+ multiAccountDeclinedGroupCreate<T>(organizationCode: string, payload: SmartRouting.PayloadDeclinedGroupCreate): Promise<AxiosResponse<T, any>>;
219
+ generateAIWorkflowRoutes<T>(organizationCode: string, payload: SmartRouting.PayloadAIWorkflowCreate): Promise<AxiosResponse<T, any>>;
220
+ postAIGenerationFeedback<T>(payload: AI.AIGenerate): Promise<AxiosResponse<T, any>>;
221
+ getRoutingMonitorsTemplates<T>(organizationCode: any): Promise<AxiosResponse<T, RoutingMonitors.TemplateSelector[]>>;
222
+ getRoutingMonitorsTemplate<T>(code: string, organizationCode: string): Promise<AxiosResponse<T, RoutingMonitors.Template>>;
223
+ createMonitorThreshold<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
224
+ createMonitorTemplate<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
225
+ getSmartRoutingDataReport<T>(params: {
226
+ [key: string]: number;
227
+ }): Promise<AxiosResponse<T, any>>;
228
+ getInsightsMetricsConversionRateV2<T>(params: DataReport.InsightMetricParams, path: string): Promise<AxiosResponse<T, any>>;
229
+ getInsightsMetricsConversionRateViewMore<T>(params: DataReport.InsightMetricParams, type: string): Promise<AxiosResponse<T, any>>;
230
+ getInsightFallbackMetrics<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
231
+ getInsightsMetricsVolume<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
232
+ getInsightsMetricsVolumeV2<T>(account_codes: string, path: DataReport.InsightsVolumeMetricsV2Path, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
233
+ getInsightsFraudScreeningVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
234
+ getInsightsFraudScreeningConversionRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
235
+ getInsights3dsVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
236
+ getInsights3dsConversionRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
237
+ getInsights3dsDeclineReasons(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
238
+ getInsights3dsFrictionlessVsChallenge(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
239
+ getInsightsChargebacksVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
240
+ getInsightsChargebacksTotalRateAndEvolution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
241
+ getInsightsChargebacksWinRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
242
+ getInsightsChargebacksDisputed(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
243
+ getInsightsChargebacksByProviderAndCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
244
+ getInsightsChargebacksReasonsDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
245
+ getInsightsChargebacksStatusDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
246
+ getInsightsChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
247
+ getInsightOverview<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
248
+ getInsightOverviewV3<T>(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): Promise<AxiosResponse<T, any>>;
249
+ getInsighstHomeMetrics<T>(params: DataReport.InsightsHomeMetrics): Promise<AxiosResponse<T, any>>;
250
+ getInsightsMetricsTotalPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
251
+ getInsightsMetricsCustomerPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
252
+ getCheckouts({ accountCode, }: {
253
+ accountCode: any;
254
+ }): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
255
+ getNameAndIcon({ paymentMethodType, type, }: Checkout.GetNameAndIconArgs): Promise<AxiosResponse<Checkout.GetNameAndIconResponse>>;
256
+ getRequiredFields({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs): Promise<AxiosResponse<Checkout.GetRequiredFieldsResponse>>;
257
+ getPaymentMethodAccounts({ paymentMethod, organizationCode, }: Checkout.GetPaymentMethodAccountsArgs): Promise<AxiosResponse<Checkout.GetPaymentMethodAccountsResponse>>;
258
+ /**
259
+ * @deprecated since v0.28.6. Use changeStylingSettings instead
260
+ */
261
+ updateCheckoutTemplate<T>({ accountCode, template, }: {
262
+ accountCode: string;
263
+ template: Checkout.CheckoutTemplateResponse['template'];
264
+ }): Promise<AxiosResponse<T>>;
265
+ updateIsActiveCheckout(args: Checkout.UpdateIsActiveCheckoutParams): Promise<AxiosResponse>;
266
+ getCountryData({ accountCode, }: {
267
+ accountCode: string;
268
+ }): Promise<AxiosResponse<Checkout.GetCountryDataResponse>>;
269
+ publishCheckout(args: Checkout.PublishCheckoutParams): Promise<AxiosResponse>;
270
+ getStylingSdkDynamic({ accountCode }: {
271
+ accountCode: any;
272
+ }): Promise<AxiosResponse<Styling.Settings, any, {}>>;
273
+ getStylingSettingsV2({ accountCode }: {
274
+ accountCode: string;
275
+ }): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
276
+ changeStylingSettings({ accountCode, payload, }: {
277
+ accountCode: string;
278
+ payload: StylingSettings.UpdateSettings;
279
+ }): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any, {}>>;
280
+ emailVerification<T>(email: any): Promise<AxiosResponse<T, any>>;
281
+ createReconciliationsReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
282
+ createReconciliationsReportV3<T>(payload: any): Promise<AxiosResponse<T>>;
283
+ createReportV2<T>(payload: any): Promise<AxiosResponse<T>>;
284
+ getTotalRowsForExport<T>(payload: any): Promise<AxiosResponse<T>>;
285
+ reportsList<T>(): Promise<AxiosResponse<T>>;
286
+ reportsListMultiEnv<T>(): Promise<AxiosResponse<T>>;
287
+ downloadReports<T>(reportId: any): Promise<AxiosResponse<T>>;
288
+ cancelReport<T>(reportId: any): Promise<AxiosResponse<T>>;
289
+ getReportTemplates<T>(): Promise<AxiosResponse<T>>;
290
+ createReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
291
+ updateReportTemplate<T>(payload: Reports.ICreateTemplate): Promise<AxiosResponse<T>>;
292
+ deletePaymentsReportTemplate<T>(payload: Reports.IDeletePaymentsReportTemplate): Promise<AxiosResponse<T>>;
293
+ getReportColumns<T>(templateType: TemplateType, reportType: ReportType): Promise<any>;
294
+ searchReportTemplates<T>(payload: TemplateReporting.SearchTemplatesRequest): Promise<AxiosResponse<T>>;
295
+ searchReportTemplateById<T>(templateId: number, payload: TemplateReporting.SearchTemplateByIdRequest): Promise<AxiosResponse<T>>;
296
+ createTemplateReporting<T>(payload: TemplateReporting.CreateTemplateRequest): Promise<AxiosResponse<T>>;
297
+ cloneReportTemplate<T>(templateId: number, payload: TemplateReporting.CloneTemplateRequest): Promise<AxiosResponse<T>>;
298
+ updateTemplateSelection<T>(templateId: number, payload: TemplateReporting.UpdateTemplateSelectionRequest): Promise<AxiosResponse<T>>;
299
+ changeTemplateStatus<T>(templateId: number, payload: TemplateReporting.ChangeTemplateStatusRequest): Promise<AxiosResponse<T>>;
300
+ deleteReportTemplate<T>(templateId: number, payload: TemplateReporting.DeleteTemplateRequest): Promise<AxiosResponse<T>>;
301
+ searchReportSchedules<T>(payload: TemplateReporting.SearchSchedulesRequest): Promise<AxiosResponse<T>>;
302
+ searchReportScheduleById<T>(scheduleId: number, payload: TemplateReporting.SearchScheduleByIdRequest): Promise<AxiosResponse<T>>;
303
+ createReportSchedule<T>(payload: TemplateReporting.CreateScheduleRequest): Promise<AxiosResponse<T>>;
304
+ disableReportSchedule<T>(scheduleId: number, payload: TemplateReporting.DisableScheduleRequest): Promise<AxiosResponse<T>>;
305
+ deleteReportSchedule<T>(scheduleId: number, payload: TemplateReporting.DeleteScheduleRequest): Promise<AxiosResponse<T>>;
306
+ getRefundPdf<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
307
+ getProofOfCancel<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
308
+ getProofOfPayment<T>(transactionCode: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
309
+ getScheduledReport<T>(reportType: any): Promise<AxiosResponse<T>>;
310
+ postScheduledReport<T>(payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
311
+ updateScheduledReport<T>(reportCode: string, payload: IListScheduledReportsResponse): Promise<AxiosResponse<T>>;
312
+ deleteScheduledReport<T>(reportCode: string): Promise<AxiosResponse<T>>;
313
+ getProfile<T>(): Promise<AxiosResponse<T, any>>;
314
+ getUserFull(): Promise<AxiosResponse<GetUserFullResponse, any>>;
315
+ getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
316
+ getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
317
+ getUsersToImpersonate(organizationCode: string, accountCodes?: string[], page?: number, pageSize?: number, searchValue?: string, roleIds?: string[]): Promise<AxiosResponse<User.UsersToImpersonateResponse>>;
318
+ getAccountsForImpersonation(organizationCode: string): Promise<AxiosResponse<{
319
+ response: Array<{
320
+ name: string;
321
+ code_live: string;
322
+ code_testing: string;
323
+ }>;
324
+ }>>;
325
+ getRolesForImpersonation(organizationCode: string): Promise<AxiosResponse<{
326
+ roles: Array<{
327
+ id: string;
328
+ name: string;
329
+ }>;
330
+ }>>;
331
+ updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
332
+ inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
333
+ inviteUsersMassiveV2<T>(data: UserInviteMultiaccountPayload): Promise<AxiosResponse<T>>;
334
+ unInviteUsersV2<T>({ userCode, organizationCode, }: {
335
+ userCode: any;
336
+ organizationCode: any;
337
+ }): Promise<AxiosResponse<T>>;
338
+ getAccounts<T>(organizationCode: any): Promise<AxiosResponse<T, any>>;
339
+ getAccountsV2<T>(): Promise<AxiosResponse<T, any>>;
340
+ getAccountsByUser<T>(userCode: string): Promise<AxiosResponse<T, any>>;
341
+ putAccountsUserMassive<T>(organizationCode: any, userCode: any, payload: any): Promise<AxiosResponse<T, any>>;
342
+ deleteAccountsUserMassive<T, K>(organizationCode: string, userCode: string, payload: any): Promise<AxiosResponse<T, K>>;
343
+ postAccount<T>(name: string, principal: boolean): Promise<AxiosResponse<T>>;
344
+ duplicateAccount(body: DuplicateAccountBody): Promise<AxiosResponse<DuplicateAccountResponse>>;
345
+ retryDuplicateAccount(account_code: string): Promise<AxiosResponse<RetryDuplicateAccountResponse>>;
346
+ getPendingDuplicateAccounts(): Promise<AxiosResponse<PendingDuplicateAccountsResponse>>;
347
+ patchAccount<T>({ name, code, principal, }: {
348
+ name: string;
349
+ code: string;
350
+ principal: boolean;
351
+ }): Promise<AxiosResponse<T>>;
352
+ patchAccountV2<T>({ name, code, principal, }: {
353
+ name: string;
354
+ code: string;
355
+ principal: boolean;
356
+ }): Promise<AxiosResponse<T>>;
357
+ putAccountPrincipal<T>({ account_code }: {
358
+ account_code: any;
359
+ }): Promise<AxiosResponse<T>>;
360
+ getMergedNotifications<T>(): Promise<AxiosResponse<T>>;
361
+ getNotificationsCustomer<T>(customer: any): Promise<AxiosResponse<T>>;
362
+ getValidateOpsgenieKey<T>(key: any): Promise<AxiosResponse<T>>;
363
+ postSlackMessageChannel<T>(payload: {
364
+ channel: string;
365
+ text: string;
366
+ }): Promise<AxiosResponse<T>>;
367
+ pathNotification<T>(payload: PathNotification): Promise<AxiosResponse<T>>;
368
+ getNotificationsNumber<T>(customer: any): Promise<AxiosResponse<T>>;
369
+ teamsFiltersMembers<T>({ organizationCode, }: {
370
+ organizationCode: any;
371
+ }): Promise<AxiosResponse<T, any>>;
372
+ postMembersPaginatedV2<T>({ organizationCode, accountCodes, search, status, roleId, statuses, roleIds, page, pageSize, }: {
373
+ organizationCode: any;
374
+ accountCodes: any;
375
+ search: any;
376
+ status: any;
377
+ roleId: any;
378
+ statuses: any;
379
+ roleIds: any;
380
+ page: any;
381
+ pageSize: any;
382
+ }): Promise<AxiosResponse<T, any>>;
383
+ getRoles<T>(): Promise<AxiosResponse<T, any>>;
384
+ setCustodian<T>(): Promise<AxiosResponse<T>>;
385
+ deleteUserTeamV2<T>({ userCode, organizationCode, }: {
386
+ userCode: any;
387
+ organizationCode: any;
388
+ }): Promise<AxiosResponse<T>>;
389
+ createRoles<T>(payload: any, accountCode: any): Promise<AxiosResponse<T>>;
390
+ editRoles<T>({ payload, id }: {
391
+ payload: any;
392
+ id: any;
393
+ }, accountCode: any): Promise<AxiosResponse<T>>;
394
+ deleteRoles<T>(id: any): Promise<AxiosResponse<T>>;
395
+ getRolesPermissions<T>(): Promise<AxiosResponse<T>>;
396
+ getFeatureFlagId<T>({ name, ...rest }: FeatureFlags.Request): Promise<AxiosResponse<T>>;
397
+ getFeatureFlagIdAll({ accountCode, }: {
398
+ accountCode?: string;
399
+ }): Promise<AxiosResponse<FeatureFlagsResult, any>>;
400
+ getPermissionsCatalog<T>(): Promise<AxiosResponse<T>>;
401
+ getOrgRolesPermissions<T>(): Promise<AxiosResponse<T>>;
402
+ getOrgPermissionsCatalog<T>(): Promise<AxiosResponse<T>>;
403
+ createOrgRole<T>(payload: any): Promise<AxiosResponse<T>>;
404
+ editOrgRole<T>({ payload, id }: {
405
+ payload: any;
406
+ id: any;
407
+ }): Promise<AxiosResponse<T>>;
408
+ deleteOrgRole<T>(id: any): Promise<AxiosResponse<T>>;
409
+ getOrgRoleAssignments<T>(): Promise<AxiosResponse<T>>;
410
+ assignOrgRole<T>(payload: any): Promise<AxiosResponse<T>>;
411
+ unassignOrgRole<T>(userCode: string): Promise<AxiosResponse<T>>;
412
+ startUserExport<T>(params: Team.StartUserExportParams): Promise<AxiosResponse<T>>;
413
+ getUserExportStatus<T>({ exportCode, }: {
414
+ exportCode: string;
415
+ }): Promise<AxiosResponse<T>>;
416
+ listUserExports<T>({ page, pageSize, }: {
417
+ page?: number;
418
+ pageSize?: number;
419
+ }): Promise<AxiosResponse<T>>;
420
+ changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
421
+ workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
422
+ workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
423
+ workosDomainVerificationPortal<T>(): Promise<AxiosResponse<T>>;
424
+ workosDomainStatus<T>(): Promise<AxiosResponse<T>>;
425
+ workosVerifyMfa<T>(body: any): Promise<AxiosResponse<T>>;
426
+ getCardBrands<T>(): Promise<AxiosResponse<T>>;
427
+ getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
428
+ getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
429
+ sendPaymentNotification(params: SendPaymentNotification.Params, body: SendPaymentNotification.Body): Promise<AxiosResponse<SendPaymentNotification.Response>>;
430
+ postAuditMonitors<T>(payload: Audit.AuditMonitorsParams): Promise<AxiosResponse<T, any>>;
431
+ getAuditMonitorDetail<T>(id: number | null): Promise<AxiosResponse<T, any>>;
432
+ getAuditEvents<T>(params: Audit.AuditEventsParams): Promise<AxiosResponse<T, any>>;
433
+ getPaymentLinks<T>(params: any, account: any): Promise<AxiosResponse<T, any>>;
434
+ getPaymentLinksByCode<T>(paymentLinkCode: any): Promise<AxiosResponse<T, any>>;
435
+ postPaymentLinks<T>({ payload, accountCode, }: {
436
+ payload: any;
437
+ accountCode: any;
438
+ }): Promise<AxiosResponse<T, any>>;
439
+ patchPaymentLinks<T>({ payload, accountCode, paymentLinkCode, }: {
440
+ payload: any;
441
+ accountCode: any;
442
+ paymentLinkCode: any;
443
+ }): Promise<AxiosResponse<T, any>>;
444
+ postDeletePaymentLink<T>({ code }: {
445
+ code: any;
446
+ }): Promise<AxiosResponse<T, any>>;
447
+ uploadPaymentLinkLogo<T>({ payload, }: {
448
+ payload: {
449
+ base64_data: string;
450
+ file_name: string;
451
+ };
452
+ }): Promise<AxiosResponse<T, any>>;
453
+ postSubscription<T>(payload: any): Promise<AxiosResponse<T, any>>;
454
+ getSubscriptionByCode<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
455
+ postPauseSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
456
+ postResumeSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
457
+ postCancelSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
458
+ patchSubscription<T>(subscriptionCode: string, payload: any): Promise<AxiosResponse<T, any>>;
459
+ postRescheduleSubscription<T>(subscriptionCode: string): Promise<AxiosResponse<T, any>>;
460
+ getSubscriptionPayments<T>(subscriptionCode: string, page?: number, size?: number): Promise<AxiosResponse<T, any>>;
461
+ postListSubscriptions<T>(payload: ListSubscriptionsParams): Promise<AxiosResponse<T, any>>;
462
+ getTimezone<T>(organizationCode: string): Promise<AxiosResponse<T, any>>;
463
+ getInstallmentPlans(params?: Installments.GetInstallmentsPlansParams): Promise<AxiosResponse<Installments.GetInstallmentsPlansResponse>>;
464
+ createInstallmentsPlan<T, P = unknown>(payload: P): Promise<AxiosResponse<T>>;
465
+ updateInstallmentsPlan<T, P = unknown>(code: string, payload: P): Promise<AxiosResponse<T>>;
466
+ deleteInstallmentsPlan<T>(code: string): Promise<AxiosResponse<T>>;
467
+ searchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest): Promise<AxiosResponse<Installments.SearchInstallmentsPlansResponse>>;
468
+ bulkCreateInstallmentsPlans(payload: Installments.BulkCreateInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkCreateInstallmentsPlansResponse>>;
469
+ bulkDeleteInstallmentsPlans(payload: Installments.BulkDeleteInstallmentsPlansRequest): Promise<AxiosResponse<Installments.BulkDeleteInstallmentsPlansResponse>>;
470
+ firebaseUserSubscribe<T>(payload: FirebaseUserSubscribe): Promise<AxiosResponse<T>>;
471
+ postUserSettings<T>(payload: TimeZoneCatalog | PaymentsSettings): Promise<AxiosResponse<T>>;
472
+ postUserSettingsTables<T>(payload: PaymentsSettings, section: string): Promise<AxiosResponse<T>>;
473
+ postUserSettingsPinned<T>(payload: PinnedSections): Promise<AxiosResponse<T>>;
474
+ postUserThemeSettings<T>(payload: ThemeSettings): Promise<AxiosResponse<T>>;
475
+ getMfaTokenValidation<T>(password: string, otp: string): Promise<AxiosResponse<T, any>>;
476
+ getEmailOtp<T>(): Promise<AxiosResponse<T, any>>;
477
+ confirmMfaOtp<T>(payload: MfaUserSubscribe): Promise<AxiosResponse<T>>;
478
+ unrollMfa<T>(password: any): Promise<AxiosResponse<T, any>>;
479
+ sendOTPForMFA(): Promise<AxiosResponse<void>>;
480
+ getConfigAllowlist<T>(accountCode: any): Promise<AxiosResponse<T, any>>;
481
+ getBlackListType<T>(accountCode: any): Promise<AxiosResponse<T, any>>;
482
+ postBlockList<T>(accountCodes: string[], listName: string, page: number, size: number): Promise<AxiosResponse<T, any>>;
483
+ getBlackListSummary<T>(black_list_code: string, account?: string | null): Promise<AxiosResponse<T, any>>;
484
+ getBlacklistDetail<T>(black_list_code: string, offset: number, limit?: number, account?: string | null, search?: string | null): Promise<AxiosResponse<T, any>>;
485
+ getAllowlistDetail<T>(code: string, account?: string | null): Promise<AxiosResponse<T, any>>;
486
+ postAllowlistItems<T>({ payload }: {
487
+ payload: any;
488
+ }): Promise<AxiosResponse<T, any>>;
489
+ postGetAllowlist<T>({ payload }: {
490
+ payload: any;
491
+ }): Promise<AxiosResponse<T, any>>;
492
+ postCreateAllowlistMultiAccount<T>({ payload, }: {
493
+ payload: any;
494
+ }): Promise<AxiosResponse<T, any>>;
495
+ patchChangeStatusAllowlist<T>({ payload, }: {
496
+ payload: any;
497
+ }): Promise<AxiosResponse<T, any>>;
498
+ patchChangeStatusAllowlistItem<T>({ payload, }: {
499
+ payload: any;
500
+ }): Promise<AxiosResponse<T, any>>;
501
+ patchAddAllowlistItems<T>({ payload, }: {
502
+ payload: any;
503
+ }): Promise<AxiosResponse<T, any>>;
504
+ deleteAllowlistItem<T>({ payload }: {
505
+ payload: any;
506
+ }): Promise<AxiosResponse<T>>;
507
+ validateAllowlistItems<T>({ payload, }: {
508
+ payload: any;
509
+ }): Promise<AxiosResponse<T, unknown>>;
510
+ patchAllowlist<T>({ payload }: {
511
+ payload: any;
512
+ }): Promise<AxiosResponse<T, any>>;
513
+ postBlackListMultiAccount<T>({ payload, }: {
514
+ payload: any;
515
+ }): Promise<AxiosResponse<T, any>>;
516
+ putBlackListType<T>(payload: any): Promise<AxiosResponse<T, any>>;
517
+ changeBlackListStatus<T>(payload: any): Promise<AxiosResponse<T, any>>;
518
+ changeBlackListStatusItem<T>(payload: any): Promise<AxiosResponse<T, any>>;
519
+ postBlackListItems<T>({ payload }: {
520
+ payload: any;
521
+ }): Promise<AxiosResponse<T, any>>;
522
+ postBlackListBatch<T>({ blacklist_code, expiration_days, file, handleSetProgress, }: {
523
+ blacklist_code: any;
524
+ expiration_days: any;
525
+ file: any;
526
+ handleSetProgress: any;
527
+ }): Promise<AxiosResponse<T, any>>;
528
+ deleteBlackListType<T>({ black_list_code, }: {
529
+ black_list_code: any;
530
+ }): Promise<AxiosResponse<T, any>>;
531
+ deleteBlockListItem<T>({ blocklist_code, blocklist_item_id, account_code, }: {
532
+ blocklist_code: any;
533
+ blocklist_item_id: any;
534
+ account_code: any;
535
+ }): Promise<AxiosResponse<T>>;
536
+ valiateBlockListItems<T>({ payload, }: {
537
+ payload: any;
538
+ }): Promise<AxiosResponse<T, unknown>>;
539
+ getVelocityRules<T>(params: any): Promise<AxiosResponse<T, any>>;
540
+ postChangePaymentsWebhook<T>({ status, paymentCode, }: ChangePaymentsWebhook): Promise<AxiosResponse<T, any>>;
541
+ uploadFileS3ClientBatchRefunds<T>({ payload, handleSetProgress, }: S3Payload): {
542
+ promise: Promise<AxiosResponse<T, any, {}>>;
543
+ cancel: () => void;
544
+ };
545
+ uploadFileS3ClientChargeBacks<T>({ payload, handleSetProgress, }: S3Payload): {
546
+ promise: Promise<AxiosResponse<T, any, {}>>;
547
+ cancel: () => void;
548
+ };
549
+ batchRefundByFile<T>({ payload, }: {
550
+ payload: any;
551
+ }): Promise<AxiosResponse<T, AxiosError>>;
552
+ uploadBatchRefundsV2<T>({ payload }: {
553
+ payload: any;
554
+ }): Promise<AxiosResponse<T, any>>;
555
+ getBatchRefunds<T>(limit: any, offset: any): Promise<AxiosResponse<T, any>>;
556
+ getBatchRefundProcessedFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
557
+ getBatchRefundUserFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
558
+ getMFAConfig<T>({ organizationCode }: {
559
+ organizationCode: any;
560
+ }): Promise<AxiosResponse<T, any>>;
561
+ getMFAExcludedUsers<T>({ organizationCode, }: {
562
+ organizationCode: any;
563
+ }): Promise<AxiosResponse<T, any>>;
564
+ getMFAEnforcementStatus<T>(): Promise<AxiosResponse<T, any>>;
565
+ updateMFAConfig<T>(payload: OrganizationSettings.MfaConfigRequest, organizationCode: string): Promise<AxiosResponse<T, any>>;
566
+ mfaExcludeUsers<T>(users: OrganizationSettings.MfaUserExcluded[], organizationCode: string): Promise<AxiosResponse<T, any>>;
567
+ getAllConfigRules<T>(): Promise<AxiosResponse<T, any>>;
568
+ getConditionalConfigRules<T>(conditional: any): Promise<AxiosResponse<T, any>>;
569
+ getRule<T>(payload: any): Promise<AxiosResponse<T, any>>;
570
+ postCreateRuleMultiAccount<T>(payload: any, accountCode: any): Promise<AxiosResponse<T, any>>;
571
+ postEditRule<T>(payload: any, ruleId: any, accountCode: any): Promise<AxiosResponse<T, any>>;
572
+ postApiKeysRoll<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
573
+ patchApiKeysEditNote<T>(payload: any, keyCode: any, password: any): Promise<AxiosResponse<T, any>>;
574
+ getCustomizedApiKeysMembers<T>(): Promise<AxiosResponse<T, any>>;
575
+ getCustomizedApiKeysAccounts<T>(): Promise<AxiosResponse<T, any>>;
576
+ postCreateCustomizedApiKeys<T>(payload: any): Promise<AxiosResponse<T, any>>;
577
+ pathCreateCustomizedApiKeys<T>(payload: any, code: any): Promise<AxiosResponse<T, any>>;
578
+ postCustomizedApiKeys<T>(accountCodes: string[]): Promise<AxiosResponse<T, any>>;
579
+ getCustomizedApiKeysProducts<T>(): Promise<AxiosResponse<T, any>>;
580
+ getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
581
+ validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
582
+ deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
583
+ private buildAuthHeaders;
584
+ getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
585
+ patchOrganizationKeysNote<T>(payload: {
586
+ note: string;
587
+ }, password: string): Promise<AxiosResponse<T, any>>;
588
+ postOrganizationKeysRoll<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
589
+ postOrganizationKeysTamRequest<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
590
+ postOrganizationKeysMarkRevealed<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
591
+ postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
592
+ getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
593
+ getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
594
+ createUserAuth0<T>(payload: any): Promise<AxiosResponse<T, any>>;
595
+ getSamlConfig<T>(): Promise<AxiosResponse<T, any>>;
596
+ createSamlConfig<T>(payload: any): Promise<AxiosResponse<T, any>>;
597
+ updateSamlConfig<T>(payload: any): Promise<AxiosResponse<T, any>>;
598
+ deleteSamlConfig<T>(): Promise<AxiosResponse<T, any>>;
599
+ postCall<T>(payload: any): Promise<AxiosResponse<T, any>>;
600
+ getLoginMethods<T>(): Promise<AxiosResponse<T, any>>;
601
+ changeLoginMethods<T>(payload: {
602
+ methodCode: string;
603
+ enabled: boolean;
604
+ }): Promise<AxiosResponse<T, any>>;
605
+ postValidateCredentials<T>({ payload, }: {
606
+ payload: {
607
+ account_code: string;
608
+ provider_id: string;
609
+ provider_type: string;
610
+ integration_code: string;
611
+ };
612
+ }): Promise<AxiosResponse<T>>;
613
+ getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
614
+ getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
615
+ getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
616
+ get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
617
+ getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
618
+ getNetworkTokensOnboardingByOrganization(organizationCode: string): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
619
+ postNetworkTokensOnboarding(payload: Connection.NetworkTokensOnboardingMerchantRequest): Promise<AxiosResponse<Connection.NetworkTokensOnboardingMerchantData>>;
620
+ createChartGPTChart<T>(payload: {
621
+ user_prompt: string;
622
+ timezone?: string;
623
+ }): Promise<AxiosResponse<T, any>>;
624
+ deleteChartGPTChart<T>(chart_id: string): Promise<AxiosResponse<T, any>>;
625
+ getChartById<T>(chart_id: string): Promise<AxiosResponse<T, any>>;
626
+ patchChartGPTChart<T>(chart_id: string, payload: PatchChartGPTPayload): Promise<AxiosResponse<T, any>>;
627
+ executeChartGPTChart<T>(chart_id?: string): Promise<AxiosResponse<T, any>>;
628
+ getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
629
+ submitChartFeedback<T>(chartCode: string, payload: {
630
+ rating: string;
631
+ issues?: string[];
632
+ comment?: string;
633
+ }): Promise<AxiosResponse<T, any>>;
634
+ getChartFeedback<T>(chartCode: string): Promise<AxiosResponse<T, any>>;
635
+ getLanguages<T>(): Promise<AxiosResponse<T, any>>;
636
+ getTranslations<T>(lang: string): Promise<AxiosResponse<T, any>>;
637
+ getCommunications<T>(payload: {
638
+ start_date: string;
639
+ end_date: string;
640
+ account_codes: string[];
641
+ country: string[];
642
+ status: string[];
643
+ focus: string[];
644
+ skip: number;
645
+ limit: number;
646
+ search_value: string;
647
+ }): Promise<AxiosResponse<T, any>>;
648
+ getCommunicationsFilters<T>(): Promise<AxiosResponse<T, any>>;
649
+ getCommunicationDetails<T>(communicationId: string, accountCode: string): Promise<AxiosResponse<T, any>>;
650
+ getRecipients<T>(organizationCode: string, params: {
651
+ account_ids?: string;
652
+ countries?: string;
653
+ national_entities?: string;
654
+ entity_types?: string;
655
+ start_date?: string;
656
+ end_date?: string;
657
+ search_type?: string;
658
+ search_value?: string;
659
+ page?: number;
660
+ page_size?: number;
661
+ sort_by?: string;
662
+ sort_order?: string;
663
+ }): Promise<AxiosResponse<T, any>>;
664
+ getRecipientById<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
665
+ getOnboardingDetail<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
666
+ getOnboardingTimeline<T>(organizationCode: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
667
+ createRecipient<T>(organizationCode: string, payload: CreateRecipientPayload): Promise<AxiosResponse<T, any>>;
668
+ updateRecipient<T>(organizationCode: string, recipientId: string, payload: UpdateRecipientPayload): Promise<AxiosResponse<T, any>>;
669
+ deleteRecipient<T>(organizationCode: string, recipientId: string): Promise<AxiosResponse<T, any>>;
670
+ createOnboarding<T>(organizationCode: string, recipientId: string, payload: CreateOnboardingPayload): Promise<AxiosResponse<T, any>>;
671
+ updateOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string, payload: UpdateOnboardingPayload): Promise<AxiosResponse<T, any>>;
672
+ blockOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
673
+ unblockOnboarding<T>(organizationCode: string, recipientId: string, onboardingId: string): Promise<AxiosResponse<T, any>>;
674
+ }
675
+ export {};