@adyen/adyen-platform-experience-web 1.0.0-beta.3 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (932) hide show
  1. package/dist/cjs/index.js +11 -1
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/es/components/external/BaseElement.js +24 -37
  4. package/dist/es/components/external/PayoutDetails/PayoutDetails.js +19 -0
  5. package/dist/es/components/external/PayoutDetails/components/PayoutData.js +90 -0
  6. package/dist/es/components/external/PayoutDetails/components/constants.js +13 -0
  7. package/dist/es/components/external/PayoutsOverview/PayoutsOverviewElement.js +29 -0
  8. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.js +127 -0
  9. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverview/constants.js +6 -0
  10. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.js +22 -0
  11. package/dist/es/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.js +4 -0
  12. package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.js +80 -0
  13. package/dist/es/components/external/PayoutsOverview/components/PayoutsTable/constants.js +5 -0
  14. package/dist/es/components/external/TransactionDetails/TransactionDetails.js +3 -3
  15. package/dist/es/components/external/TransactionDetails/components/TransactionData.js +13 -21
  16. package/dist/es/components/external/TransactionDetails/components/TransactionDataSkeleton.js +6 -6
  17. package/dist/es/components/external/TransactionsOverview/TransactionsOverviewElement.js +4 -4
  18. package/dist/es/components/external/TransactionsOverview/components/AmountSkeleton/AmountSkeleton.js +4 -4
  19. package/dist/es/components/external/TransactionsOverview/components/Balances/Balances.js +40 -32
  20. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/MultiSelectionFilter.js +4 -4
  21. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.js +7 -11
  22. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.js +12 -11
  23. package/dist/es/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.js +2 -7
  24. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItem.js +19 -19
  25. package/dist/es/components/external/TransactionsOverview/components/SummaryItem/SummaryItemLabel.js +8 -8
  26. package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.js +30 -30
  27. package/dist/es/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.js +38 -38
  28. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.js +155 -116
  29. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverview/constants.js +4 -2
  30. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.js +16 -38
  31. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.js +2 -3
  32. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.js +29 -0
  33. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.js +76 -71
  34. package/dist/es/components/external/TransactionsOverview/components/TransactionsTable/constants.js +3 -2
  35. package/dist/es/components/external/TransactionsOverview/components/utils.js +4 -23
  36. package/dist/es/components/external/TransactionsOverview/hooks/{useMediaQuery.js → useResponsiveViewport.js} +5 -13
  37. package/dist/es/components/external/TransactionsOverview/hooks/useTransactionsOverviewMultiSelectionFilters.js +7 -7
  38. package/dist/es/components/external/UIElement/UIElement.js +68 -0
  39. package/dist/es/{core/Localization/translations/de-DE.json.js → components/external/UIElement/UIElement.scss.js} +1 -1
  40. package/dist/es/components/hooks/useBalanceAccountSelection.js +18 -0
  41. package/dist/es/components/hooks/useBalanceAccounts.js +25 -0
  42. package/dist/es/components/hooks/useDefaultOverviewFilterParams.js +24 -0
  43. package/dist/es/components/internal/BaseButton/BaseButton.js +13 -13
  44. package/dist/es/components/internal/Button/Button.js +13 -13
  45. package/dist/es/components/internal/Button/hooks/useButton.js +5 -5
  46. package/dist/es/components/internal/Calendar/calendar/facade/Calendar.js +180 -180
  47. package/dist/es/components/internal/Calendar/calendar/facade/index.js +28 -25
  48. package/dist/es/components/internal/Calendar/calendar/timeframe/common/flags.js +14 -16
  49. package/dist/es/components/internal/Calendar/calendar/timeframe/common/utils.js +1 -1
  50. package/dist/es/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.js +34 -31
  51. package/dist/es/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.js +170 -168
  52. package/dist/es/components/internal/Calendar/calendar/timerange/factory.js +16 -15
  53. package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.js +7 -7
  54. package/dist/es/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.js +9 -9
  55. package/dist/es/components/internal/Calendar/calendar/timerange/utils.js +31 -34
  56. package/dist/es/components/internal/Calendar/calendar/timeslice/index.js +1 -1
  57. package/dist/es/components/internal/Calendar/calendar/utils.js +9 -8
  58. package/dist/es/components/internal/Calendar/components/CalendarControls/CalendarControls.js +4 -4
  59. package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.js +33 -30
  60. package/dist/es/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.js +6 -6
  61. package/dist/es/components/internal/Calendar/components/CalendarGrid/utils.js +37 -38
  62. package/dist/es/components/internal/Calendar/hooks/useCalendar.js +2 -2
  63. package/dist/es/components/internal/Calendar/hooks/useCalendarControlsRendering.js +12 -12
  64. package/dist/es/components/internal/Calendar/hooks/useTimezone.js +19 -17
  65. package/dist/es/components/internal/Card/Card.js +37 -0
  66. package/dist/es/{core/Localization/translations/ar.json.js → components/internal/Card/Card.scss.js} +1 -1
  67. package/dist/es/components/internal/Card/constants.js +13 -0
  68. package/dist/es/components/internal/DataGrid/DataGrid.js +61 -56
  69. package/dist/es/components/internal/DataGrid/DataGridCell.js +36 -4
  70. package/dist/es/components/internal/DataGrid/components/InteractiveBody.js +26 -24
  71. package/dist/es/components/internal/DataGrid/components/SkeletonBody.js +7 -7
  72. package/dist/es/components/internal/DataGrid/components/TableBody.js +17 -15
  73. package/dist/es/components/internal/DataGrid/components/TableCells.js +10 -10
  74. package/dist/es/components/internal/DataGrid/components/TableHeaderCell.js +29 -0
  75. package/dist/es/components/internal/DataGrid/hooks/useDataGridContext.js +8 -0
  76. package/dist/es/components/internal/DataGrid/hooks/useInteractiveDataGrid.js +1 -1
  77. package/dist/es/components/internal/DataGrid/utils/DataGridProvider.js +23 -0
  78. package/dist/es/components/internal/DataOverviewContainer/DataOverviewContainer.js +45 -0
  79. package/dist/es/components/internal/DataOverviewContainer/constants.js +4 -0
  80. package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.js +47 -0
  81. package/dist/es/components/internal/DataOverviewDetails/DataOverviewDetails.scss.js +4 -0
  82. package/dist/es/components/internal/DataOverviewDisplay/DataDetailsModal.js +35 -0
  83. package/dist/es/components/internal/DataOverviewDisplay/constants.js +11 -0
  84. package/dist/es/components/internal/DataOverviewError/DataOverviewError.js +31 -0
  85. package/dist/es/components/internal/DatePicker/DatePicker.js +16 -15
  86. package/dist/es/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.js +31 -30
  87. package/dist/es/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.js +25 -26
  88. package/dist/es/components/internal/ExpandableCard/ExpandableCard.js +10 -10
  89. package/dist/es/components/internal/FilterBar/FilterBar.js +17 -17
  90. package/dist/es/components/internal/FilterBar/components/FilterButton/FilterButton.js +9 -9
  91. package/dist/es/components/internal/FilterBar/filters/AmountFilter/AmountFilter.js +33 -32
  92. package/dist/es/components/internal/FilterBar/filters/AmountFilter/RangeSelection.js +44 -43
  93. package/dist/es/components/internal/FilterBar/filters/BaseFilter/BaseFilter.js +70 -69
  94. package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilter.js +56 -112
  95. package/dist/es/components/internal/FilterBar/filters/DateFilter/DateFilterCore.js +126 -0
  96. package/dist/es/{core/Localization/translations/el-GR.json.js → components/internal/FilterBar/filters/DateFilter/DateFilterCore.scss.js} +1 -1
  97. package/dist/es/components/internal/FormFields/InputBase.js +35 -35
  98. package/dist/es/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.js +43 -0
  99. package/dist/es/components/internal/FormFields/Select/Select.js +34 -33
  100. package/dist/es/components/internal/FormFields/Select/components/SelectButton.js +20 -19
  101. package/dist/es/components/internal/FormFields/Select/components/SelectList.js +33 -32
  102. package/dist/es/components/internal/FormFields/Select/components/SelectListItem.js +38 -34
  103. package/dist/es/components/internal/FormFields/Select/constants.js +1 -1
  104. package/dist/es/components/internal/FormFields/Select/hooks/useSelect.js +1 -1
  105. package/dist/es/components/internal/Image/Image.js +4 -4
  106. package/dist/es/components/internal/Img/Img.js +3 -3
  107. package/dist/es/components/internal/Modal/Modal.js +30 -28
  108. package/dist/es/components/internal/Modal/ModalContent/ModalContent.js +16 -0
  109. package/dist/es/components/internal/Pagination/Pagination.js +24 -23
  110. package/dist/es/components/internal/Pagination/hooks/useCursorPagination.js +11 -11
  111. package/dist/es/components/internal/Pagination/hooks/usePageLimit.js +12 -11
  112. package/dist/es/components/internal/Pagination/hooks/usePaginatedRecords.js +47 -46
  113. package/dist/es/components/internal/Pagination/hooks/usePaginatedRecordsFilters.js +1 -1
  114. package/dist/es/components/internal/Pagination/hooks/usePagination.js +6 -6
  115. package/dist/es/components/internal/Popover/Popover.js +47 -46
  116. package/dist/es/components/internal/Popover/utils/utils.js +8 -6
  117. package/dist/es/components/internal/SVGIcons/CheckedBox.js +1 -1
  118. package/dist/es/components/internal/SVGIcons/Checkmark.js +1 -1
  119. package/dist/es/components/internal/SVGIcons/ChevronDown.js +1 -1
  120. package/dist/es/components/internal/SVGIcons/ChevronLeft.js +1 -1
  121. package/dist/es/components/internal/SVGIcons/ChevronRight.js +1 -1
  122. package/dist/es/components/internal/SVGIcons/ChevronUp.js +1 -1
  123. package/dist/es/components/internal/SVGIcons/Close.js +5 -5
  124. package/dist/es/components/internal/SVGIcons/UncheckedBox.js +1 -1
  125. package/dist/es/components/internal/StructuredList/StructuredList.js +44 -0
  126. package/dist/es/{core/Localization/translations/fi-FI.json.js → components/internal/StructuredList/StructuredList.scss.js} +1 -1
  127. package/dist/es/components/internal/StructuredList/constants.js +9 -0
  128. package/dist/es/components/internal/StructuredList/useStructuredListItem.js +18 -0
  129. package/dist/es/components/internal/Tag/Tag.js +7 -7
  130. package/dist/es/components/internal/Tooltip/Tooltip.js +22 -22
  131. package/dist/es/components/internal/Typography/Typography.js +8 -8
  132. package/dist/es/components/types.js +2 -1
  133. package/dist/es/components/utils/getCommonErrorCode.js +26 -0
  134. package/dist/es/components/utils/getErrorMessage.js +34 -0
  135. package/dist/es/components/utils/getLabel.js +20 -0
  136. package/dist/es/core/Auth/context.js +24 -0
  137. package/dist/es/core/Auth/session/AuthSession.js +99 -0
  138. package/dist/es/core/Auth/session/AuthSessionSpecification.js +63 -0
  139. package/dist/es/core/Auth/session/AuthSetupContext.js +64 -0
  140. package/dist/es/core/Auth/session/constants.js +14 -0
  141. package/dist/es/core/Context/CoreContext.js +5 -3
  142. package/dist/es/core/Context/CoreProvider.js +16 -15
  143. package/dist/es/core/Http/http.js +42 -0
  144. package/dist/es/core/{Services/requests → Http}/utils.js +26 -25
  145. package/dist/es/core/Localization/Localization.js +80 -76
  146. package/dist/es/core/Localization/constants/locale.js +1 -1
  147. package/dist/es/core/Localization/constants/localization.js +3 -30
  148. package/dist/es/core/Localization/datetime/restamper/restamper.js +15 -14
  149. package/dist/es/core/Localization/datetime/restamper/utils.js +5 -5
  150. package/dist/es/core/Localization/localization-utils.js +11 -10
  151. package/dist/es/core/Localization/utils.js +43 -41
  152. package/dist/es/core/core.js +31 -59
  153. package/dist/es/core/utils.js +12 -9
  154. package/dist/es/external/preact/compat/dist/compat.module.js +52 -68
  155. package/dist/es/external/preact/dist/preact.module.js +62 -59
  156. package/dist/es/hooks/element/useClickOutside.js +2 -2
  157. package/dist/es/hooks/element/useDetachedRender.js +1 -1
  158. package/dist/es/hooks/element/useFocusCursor.js +14 -13
  159. package/dist/es/hooks/element/useFocusTrap.js +7 -6
  160. package/dist/es/hooks/element/usePopoverPositioner.js +1 -1
  161. package/dist/es/hooks/element/useUniqueIdentifier.js +6 -6
  162. package/dist/es/hooks/useCommitAction/useCommitAction.js +16 -15
  163. package/dist/es/hooks/useFetch/useFetch.js +24 -23
  164. package/dist/es/hooks/useImageUrl/useImageUrl.js +1 -1
  165. package/dist/es/hooks/useMediaQuery/useMediaQuery.js +14 -0
  166. package/dist/es/hooks/useReactiveState/useReactiveState.js +1 -1
  167. package/dist/es/hooks/useReflex/{hooks/useReflex.js → useReflex.js} +2 -2
  168. package/dist/es/index.js +24 -38
  169. package/dist/es/primitives/async/abortable/main.js +26 -0
  170. package/dist/es/primitives/async/deferred/main.js +22 -0
  171. package/dist/es/primitives/async/promisor/main.js +31 -0
  172. package/dist/es/primitives/auxiliary/abortSink/main.js +42 -0
  173. package/dist/es/primitives/auxiliary/errorContainer/main.js +26 -0
  174. package/dist/es/primitives/auxiliary/indexed/helpers.js +17 -0
  175. package/dist/es/primitives/auxiliary/indexed/main.js +35 -0
  176. package/dist/es/primitives/context/session/SessionContext.js +141 -0
  177. package/dist/es/primitives/context/session/constants.js +10 -0
  178. package/dist/es/primitives/dom/tabbableRoot/tabbable.js +102 -0
  179. package/dist/es/primitives/reactive/effectStack/main.js +22 -0
  180. package/dist/es/primitives/reactive/eventEmitter/main.js +42 -0
  181. package/dist/es/primitives/reactive/reflex/helpers.js +25 -0
  182. package/dist/es/primitives/reactive/reflex/main.js +68 -0
  183. package/dist/es/primitives/reactive/reflex/register.js +69 -0
  184. package/dist/es/primitives/reactive/watchlist/constants.js +4 -0
  185. package/dist/es/primitives/reactive/watchlist/helpers.js +31 -0
  186. package/dist/es/primitives/reactive/watchlist/main.js +59 -0
  187. package/dist/es/primitives/time/clock/main.js +24 -0
  188. package/dist/es/primitives/time/interval/constants.js +5 -0
  189. package/dist/es/primitives/time/interval/main.js +31 -0
  190. package/dist/es/primitives/time/today/main.js +53 -0
  191. package/dist/es/translations/da-DK.json.js +214 -0
  192. package/dist/es/translations/de-DE.json.js +214 -0
  193. package/dist/es/translations/en-US.json.js +220 -0
  194. package/dist/es/translations/es-ES.json.js +214 -0
  195. package/dist/es/translations/fr-FR.json.js +214 -0
  196. package/dist/es/translations/index.js +34 -0
  197. package/dist/es/translations/it-IT.json.js +214 -0
  198. package/dist/es/translations/nl-NL.json.js +214 -0
  199. package/dist/es/translations/no-NO.json.js +214 -0
  200. package/dist/es/translations/pt-BR.json.js +214 -0
  201. package/dist/es/translations/sv-SE.json.js +214 -0
  202. package/dist/es/utils/async/constants.js +6 -0
  203. package/dist/es/utils/async/main.js +6 -0
  204. package/dist/es/utils/collection/main.js +22 -0
  205. package/dist/es/utils/common.js +11 -0
  206. package/dist/es/utils/datetime/main.js +8 -0
  207. package/dist/es/utils/preact/className.js +7 -0
  208. package/dist/es/utils/preact/fixedForwardRef.js +6 -0
  209. package/dist/es/utils/preact/memoComparator/main.js +26 -0
  210. package/dist/es/utils/preact/props.js +5 -0
  211. package/dist/es/utils/random/uniqueId.js +8 -0
  212. package/dist/es/utils/random/uuid.js +11 -0
  213. package/dist/es/utils/struct/main.js +11 -0
  214. package/dist/es/utils/struct/property.js +15 -0
  215. package/dist/es/utils/value/bool.js +9 -0
  216. package/dist/es/utils/value/compare.js +4 -0
  217. package/dist/es/utils/value/constants.js +5 -0
  218. package/dist/es/utils/value/is.js +13 -0
  219. package/dist/es/utils/value/number.js +13 -0
  220. package/dist/es/utils/value/string.js +6 -0
  221. package/dist/style.css +1 -1
  222. package/dist/types/components/external/BaseElement.d.ts +3 -14
  223. package/dist/types/components/external/BaseElement.d.ts.map +1 -1
  224. package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts +10 -0
  225. package/dist/types/components/external/PayoutDetails/PayoutDetails.d.ts.map +1 -0
  226. package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts +8 -0
  227. package/dist/types/components/external/PayoutDetails/components/PayoutData.d.ts.map +1 -0
  228. package/dist/types/components/external/PayoutDetails/components/constants.d.ts +11 -0
  229. package/dist/types/components/external/PayoutDetails/components/constants.d.ts.map +1 -0
  230. package/dist/types/components/external/PayoutDetails/index.d.ts +2 -0
  231. package/dist/types/components/external/PayoutDetails/index.d.ts.map +1 -0
  232. package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts +9 -0
  233. package/dist/types/components/external/PayoutsOverview/PayoutsOverviewElement.d.ts.map +1 -0
  234. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts +8 -0
  235. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.d.ts.map +1 -0
  236. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/constants.d.ts +4 -0
  237. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverview/constants.d.ts.map +1 -0
  238. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.d.ts +4 -0
  239. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/PayoutsOverviewContainer.d.ts.map +1 -0
  240. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.d.ts +2 -0
  241. package/dist/types/components/external/PayoutsOverview/components/PayoutsOverviewContainer/constants.d.ts.map +1 -0
  242. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts +17 -0
  243. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/PayoutsTable.d.ts.map +1 -0
  244. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/constants.d.ts +3 -0
  245. package/dist/types/components/external/PayoutsOverview/components/PayoutsTable/constants.d.ts.map +1 -0
  246. package/dist/types/components/external/PayoutsOverview/index.d.ts +2 -0
  247. package/dist/types/components/external/PayoutsOverview/index.d.ts.map +1 -0
  248. package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts +4 -4
  249. package/dist/types/components/external/TransactionDetails/TransactionDetails.d.ts.map +1 -1
  250. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts +2 -1
  251. package/dist/types/components/external/TransactionDetails/components/TransactionData.d.ts.map +1 -1
  252. package/dist/types/components/external/TransactionDetails/types.d.ts +8 -6
  253. package/dist/types/components/external/TransactionDetails/types.d.ts.map +1 -1
  254. package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts +4 -5
  255. package/dist/types/components/external/TransactionsOverview/TransactionsOverviewElement.d.ts.map +1 -1
  256. package/dist/types/components/external/TransactionsOverview/components/BalanceItem/types.d.ts +2 -2
  257. package/dist/types/components/external/TransactionsOverview/components/BalanceItem/types.d.ts.map +1 -1
  258. package/dist/types/components/external/TransactionsOverview/components/Balances/Balances.d.ts +2 -10
  259. package/dist/types/components/external/TransactionsOverview/components/Balances/Balances.d.ts.map +1 -1
  260. package/dist/types/components/external/TransactionsOverview/components/Balances/types.d.ts +14 -0
  261. package/dist/types/components/external/TransactionsOverview/components/Balances/types.d.ts.map +1 -0
  262. package/dist/types/components/external/TransactionsOverview/components/Category/types.d.ts +2 -3
  263. package/dist/types/components/external/TransactionsOverview/components/Category/types.d.ts.map +1 -1
  264. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.d.ts +3 -3
  265. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/constants.d.ts.map +1 -1
  266. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/useMultiSelectionFilter.d.ts.map +1 -1
  267. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts +0 -1
  268. package/dist/types/components/external/TransactionsOverview/components/MultiSelectionFilter/useMultiSelectionFilter/utils.d.ts.map +1 -1
  269. package/dist/types/components/external/TransactionsOverview/components/TransactionTotalItem/types.d.ts +2 -2
  270. package/dist/types/components/external/TransactionsOverview/components/TransactionTotalItem/types.d.ts.map +1 -1
  271. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.d.ts +1 -8
  272. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TotalsCard.d.ts.map +1 -1
  273. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.d.ts +3 -3
  274. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/TransactionTotals.d.ts.map +1 -1
  275. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/types.d.ts +11 -0
  276. package/dist/types/components/external/TransactionsOverview/components/TransactionTotals/types.d.ts.map +1 -0
  277. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts +2 -3
  278. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/TransactionsOverview.d.ts.map +1 -1
  279. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/constants.d.ts +4 -2
  280. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverview/constants.d.ts.map +1 -1
  281. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.d.ts +2 -4
  282. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.d.ts.map +1 -1
  283. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.d.ts +0 -1
  284. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewContainer/constants.d.ts.map +1 -1
  285. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts +7 -0
  286. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/PaymentMethodCell.d.ts.map +1 -0
  287. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/TransactionsTable.d.ts.map +1 -1
  288. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts +1 -0
  289. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/constants.d.ts.map +1 -1
  290. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts +2 -4
  291. package/dist/types/components/external/TransactionsOverview/components/TransactionsTable/types.d.ts.map +1 -1
  292. package/dist/types/components/external/TransactionsOverview/components/utils.d.ts +0 -21
  293. package/dist/types/components/external/TransactionsOverview/components/utils.d.ts.map +1 -1
  294. package/dist/types/components/external/TransactionsOverview/hooks/{useMediaQuery.d.ts → useResponsiveViewport.d.ts} +8 -6
  295. package/dist/types/components/external/TransactionsOverview/hooks/useResponsiveViewport.d.ts.map +1 -0
  296. package/dist/types/components/external/TransactionsOverview/hooks/useTransactionsOverviewMultiSelectionFilters.d.ts.map +1 -1
  297. package/dist/types/components/external/TransactionsOverview/index.d.ts +0 -1
  298. package/dist/types/components/external/TransactionsOverview/index.d.ts.map +1 -1
  299. package/dist/types/components/external/{UIElement.d.ts → UIElement/UIElement.d.ts} +5 -10
  300. package/dist/types/components/external/UIElement/UIElement.d.ts.map +1 -0
  301. package/dist/types/components/external/index.d.ts +2 -0
  302. package/dist/types/components/external/index.d.ts.map +1 -1
  303. package/dist/types/components/{external/TransactionsOverview/components/BalanceAccountSelector → hooks}/useBalanceAccountSelection.d.ts +2 -2
  304. package/dist/types/components/hooks/useBalanceAccountSelection.d.ts.map +1 -0
  305. package/dist/types/components/hooks/useBalanceAccounts.d.ts +13 -0
  306. package/dist/types/components/hooks/useBalanceAccounts.d.ts.map +1 -0
  307. package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts +38 -0
  308. package/dist/types/components/hooks/useDefaultOverviewFilterParams.d.ts.map +1 -0
  309. package/dist/types/components/internal/BaseButton/BaseButton.d.ts +2 -2
  310. package/dist/types/components/internal/BaseButton/BaseButton.d.ts.map +1 -1
  311. package/dist/types/components/internal/Button/Button.d.ts +2 -2
  312. package/dist/types/components/internal/Button/Button.d.ts.map +1 -1
  313. package/dist/types/components/internal/Calendar/calendar/facade/Calendar.d.ts.map +1 -1
  314. package/dist/types/components/internal/Calendar/calendar/timeframe/common/flags.d.ts.map +1 -1
  315. package/dist/types/components/internal/Calendar/calendar/timeframe/common/utils.d.ts +1 -1
  316. package/dist/types/components/internal/Calendar/calendar/timeframe/frames/MonthFrame.d.ts.map +1 -1
  317. package/dist/types/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.d.ts +4 -5
  318. package/dist/types/components/internal/Calendar/calendar/timeframe/frames/TimeFrame.d.ts.map +1 -1
  319. package/dist/types/components/internal/Calendar/calendar/timeframe/frames/YearFrame.d.ts.map +1 -1
  320. package/dist/types/components/internal/Calendar/calendar/timerange/factory.d.ts +1 -1
  321. package/dist/types/components/internal/Calendar/calendar/timerange/factory.d.ts.map +1 -1
  322. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastMonth.d.ts +1 -1
  323. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastMonth.d.ts.map +1 -1
  324. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastNDays.d.ts +2 -2
  325. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastNDays.d.ts.map +1 -1
  326. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastWeek.d.ts +2 -2
  327. package/dist/types/components/internal/Calendar/calendar/timerange/presets/lastWeek.d.ts.map +1 -1
  328. package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.d.ts +1 -1
  329. package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetMonth.d.ts.map +1 -1
  330. package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.d.ts +2 -2
  331. package/dist/types/components/internal/Calendar/calendar/timerange/presets/shared/offsetWeek.d.ts.map +1 -1
  332. package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisMonth.d.ts +1 -1
  333. package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisMonth.d.ts.map +1 -1
  334. package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisWeek.d.ts +2 -2
  335. package/dist/types/components/internal/Calendar/calendar/timerange/presets/thisWeek.d.ts.map +1 -1
  336. package/dist/types/components/internal/Calendar/calendar/timerange/presets/yearToDate.d.ts +1 -1
  337. package/dist/types/components/internal/Calendar/calendar/timerange/presets/yearToDate.d.ts.map +1 -1
  338. package/dist/types/components/internal/Calendar/calendar/timerange/types.d.ts +4 -5
  339. package/dist/types/components/internal/Calendar/calendar/timerange/types.d.ts.map +1 -1
  340. package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts +9 -4
  341. package/dist/types/components/internal/Calendar/calendar/timerange/utils.d.ts.map +1 -1
  342. package/dist/types/components/internal/Calendar/calendar/types.d.ts +4 -4
  343. package/dist/types/components/internal/Calendar/calendar/types.d.ts.map +1 -1
  344. package/dist/types/components/internal/Calendar/calendar/utils.d.ts.map +1 -1
  345. package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.d.ts +29 -3
  346. package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDate.d.ts.map +1 -1
  347. package/dist/types/components/internal/Calendar/components/CalendarGrid/CalendarGridDayOfWeek.d.ts.map +1 -1
  348. package/dist/types/components/internal/Calendar/components/CalendarGrid/utils.d.ts.map +1 -1
  349. package/dist/types/components/internal/Calendar/hooks/useCalendar.d.ts +1 -1
  350. package/dist/types/components/internal/Calendar/hooks/useCalendarControlsRendering.d.ts +1 -1
  351. package/dist/types/components/internal/Calendar/hooks/useCalendarControlsRendering.d.ts.map +1 -1
  352. package/dist/types/components/internal/Calendar/hooks/useTimezone.d.ts.map +1 -1
  353. package/dist/types/components/internal/Card/Card.d.ts +6 -0
  354. package/dist/types/components/internal/Card/Card.d.ts.map +1 -0
  355. package/dist/types/components/internal/Card/constants.d.ts +11 -0
  356. package/dist/types/components/internal/Card/constants.d.ts.map +1 -0
  357. package/dist/types/components/internal/Card/types.d.ts +15 -0
  358. package/dist/types/components/internal/Card/types.d.ts.map +1 -0
  359. package/dist/types/components/internal/DataGrid/DataGrid.d.ts.map +1 -1
  360. package/dist/types/components/internal/DataGrid/DataGridCell.d.ts +4 -1
  361. package/dist/types/components/internal/DataGrid/DataGridCell.d.ts.map +1 -1
  362. package/dist/types/components/internal/DataGrid/components/InteractiveBody.d.ts.map +1 -1
  363. package/dist/types/components/internal/DataGrid/components/TableBody.d.ts.map +1 -1
  364. package/dist/types/components/internal/DataGrid/components/TableCells.d.ts.map +1 -1
  365. package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts +5 -0
  366. package/dist/types/components/internal/DataGrid/components/TableHeaderCell.d.ts.map +1 -0
  367. package/dist/types/components/internal/DataGrid/hooks/useDataGridContext.d.ts +4 -0
  368. package/dist/types/components/internal/DataGrid/hooks/useDataGridContext.d.ts.map +1 -0
  369. package/dist/types/components/internal/DataGrid/hooks/useInteractiveDataGrid.d.ts +1 -1
  370. package/dist/types/components/internal/DataGrid/types.d.ts +13 -3
  371. package/dist/types/components/internal/DataGrid/types.d.ts.map +1 -1
  372. package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts +5 -0
  373. package/dist/types/components/internal/DataGrid/utils/DataGridProvider.d.ts.map +1 -0
  374. package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts +12 -0
  375. package/dist/types/components/internal/DataOverviewContainer/DataOverviewContainer.d.ts.map +1 -0
  376. package/dist/types/components/internal/DataOverviewContainer/constants.d.ts +2 -0
  377. package/dist/types/components/internal/DataOverviewContainer/constants.d.ts.map +1 -0
  378. package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts +5 -0
  379. package/dist/types/components/internal/DataOverviewDetails/DataOverviewDetails.d.ts.map +1 -0
  380. package/dist/types/components/internal/DataOverviewDetails/types.d.ts +32 -0
  381. package/dist/types/components/internal/DataOverviewDetails/types.d.ts.map +1 -0
  382. package/dist/types/components/internal/DataOverviewDisplay/DataDetailsModal.d.ts +11 -0
  383. package/dist/types/components/internal/DataOverviewDisplay/DataDetailsModal.d.ts.map +1 -0
  384. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts +2 -0
  385. package/dist/types/components/internal/DataOverviewDisplay/constants.d.ts.map +1 -0
  386. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts +9 -0
  387. package/dist/types/components/internal/DataOverviewError/DataOverviewError.d.ts.map +1 -0
  388. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts +12 -9
  389. package/dist/types/components/internal/DatePicker/components/TimeRangeSelector/useTimeRangeSelection.d.ts.map +1 -1
  390. package/dist/types/components/internal/ErrorMessageDisplay/ErrorMessageDisplay.d.ts.map +1 -1
  391. package/dist/types/components/internal/FilterBar/components/FilterButton/FilterButton.d.ts +4 -3
  392. package/dist/types/components/internal/FilterBar/components/FilterButton/FilterButton.d.ts.map +1 -1
  393. package/dist/types/components/internal/FilterBar/filters/AmountFilter/AmountFilter.d.ts.map +1 -1
  394. package/dist/types/components/internal/FilterBar/filters/AmountFilter/RangeSelection.d.ts.map +1 -1
  395. package/dist/types/components/internal/FilterBar/filters/AmountFilter/types.d.ts +2 -2
  396. package/dist/types/components/internal/FilterBar/filters/AmountFilter/types.d.ts.map +1 -1
  397. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts +9 -3
  398. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilter.d.ts.map +1 -1
  399. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilterCore.d.ts +5 -0
  400. package/dist/types/components/internal/FilterBar/filters/DateFilter/DateFilterCore.d.ts.map +1 -0
  401. package/dist/types/components/{external/TransactionsOverview/components → internal/FormFields/Select}/BalanceAccountSelector/BalanceAccountSelector.d.ts +1 -1
  402. package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/BalanceAccountSelector.d.ts.map +1 -0
  403. package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/index.d.ts +2 -0
  404. package/dist/types/components/internal/FormFields/Select/BalanceAccountSelector/index.d.ts.map +1 -0
  405. package/dist/types/components/internal/FormFields/Select/Select.d.ts.map +1 -1
  406. package/dist/types/components/internal/FormFields/Select/components/SelectButton.d.ts.map +1 -1
  407. package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts +3 -1
  408. package/dist/types/components/internal/FormFields/Select/components/SelectListItem.d.ts.map +1 -1
  409. package/dist/types/components/internal/FormFields/Select/types.d.ts +1 -0
  410. package/dist/types/components/internal/FormFields/Select/types.d.ts.map +1 -1
  411. package/dist/types/components/internal/Modal/Modal.d.ts.map +1 -1
  412. package/dist/types/components/internal/Modal/ModalContent/ModalContent.d.ts +5 -0
  413. package/dist/types/components/internal/Modal/ModalContent/ModalContent.d.ts.map +1 -0
  414. package/dist/types/components/internal/Pagination/hooks/types.d.ts +3 -3
  415. package/dist/types/components/internal/Pagination/hooks/types.d.ts.map +1 -1
  416. package/dist/types/components/internal/StructuredList/StructuredList.d.ts +5 -0
  417. package/dist/types/components/internal/StructuredList/StructuredList.d.ts.map +1 -0
  418. package/dist/types/components/internal/StructuredList/constants.d.ts +7 -0
  419. package/dist/types/components/internal/StructuredList/constants.d.ts.map +1 -0
  420. package/dist/types/components/internal/StructuredList/index.d.ts +2 -0
  421. package/dist/types/components/internal/StructuredList/index.d.ts.map +1 -0
  422. package/dist/types/components/internal/StructuredList/types.d.ts +21 -0
  423. package/dist/types/components/internal/StructuredList/types.d.ts.map +1 -0
  424. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts +136 -0
  425. package/dist/types/components/internal/StructuredList/useStructuredListItem.d.ts.map +1 -0
  426. package/dist/types/components/internal/Tooltip/types.d.ts +2 -2
  427. package/dist/types/components/internal/Tooltip/types.d.ts.map +1 -1
  428. package/dist/types/components/types.d.ts +52 -16
  429. package/dist/types/components/types.d.ts.map +1 -1
  430. package/dist/types/components/utils/{transactionResourceErrorCodes.d.ts → getCommonErrorCode.d.ts} +7 -4
  431. package/dist/types/components/utils/getCommonErrorCode.d.ts.map +1 -0
  432. package/dist/types/components/utils/getErrorMessage.d.ts +5 -0
  433. package/dist/types/components/utils/getErrorMessage.d.ts.map +1 -0
  434. package/dist/types/components/utils/getLabel.d.ts +20 -0
  435. package/dist/types/components/utils/getLabel.d.ts.map +1 -0
  436. package/dist/types/core/Auth/context.d.ts +296 -0
  437. package/dist/types/core/Auth/context.d.ts.map +1 -0
  438. package/dist/types/core/Auth/index.d.ts +3 -0
  439. package/dist/types/core/Auth/index.d.ts.map +1 -0
  440. package/dist/types/core/Auth/session/AuthSession.d.ts +318 -0
  441. package/dist/types/core/Auth/session/AuthSession.d.ts.map +1 -0
  442. package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts +15 -0
  443. package/dist/types/core/Auth/session/AuthSessionSpecification.d.ts.map +1 -0
  444. package/dist/types/core/Auth/session/AuthSetupContext.d.ts +303 -0
  445. package/dist/types/core/Auth/session/AuthSetupContext.d.ts.map +1 -0
  446. package/dist/types/core/Auth/session/constants.d.ts +7 -0
  447. package/dist/types/core/Auth/session/constants.d.ts.map +1 -0
  448. package/dist/types/core/Auth/types.d.ts +26 -11
  449. package/dist/types/core/Auth/types.d.ts.map +1 -1
  450. package/dist/types/core/Context/CoreContext.d.ts.map +1 -1
  451. package/dist/types/core/Context/CoreProvider.d.ts +1 -1
  452. package/dist/types/core/Context/CoreProvider.d.ts.map +1 -1
  453. package/dist/types/core/Context/types.d.ts +1 -0
  454. package/dist/types/core/Context/types.d.ts.map +1 -1
  455. package/dist/types/core/Errors/AdyenPlatformExperienceError.d.ts +1 -1
  456. package/dist/types/core/Errors/AdyenPlatformExperienceError.d.ts.map +1 -1
  457. package/dist/types/core/Http/constants.d.ts.map +1 -0
  458. package/dist/types/core/Http/http.d.ts.map +1 -0
  459. package/dist/types/core/{Services/requests → Http}/types.d.ts +2 -4
  460. package/dist/types/core/Http/types.d.ts.map +1 -0
  461. package/dist/types/core/Http/utils.d.ts.map +1 -0
  462. package/dist/types/core/Localization/Localization.d.ts +3 -3
  463. package/dist/types/core/Localization/Localization.d.ts.map +1 -1
  464. package/dist/types/core/Localization/constants/locale.d.ts +107 -203
  465. package/dist/types/core/Localization/constants/locale.d.ts.map +1 -1
  466. package/dist/types/core/Localization/constants/localization.d.ts +2 -2
  467. package/dist/types/core/Localization/constants/localization.d.ts.map +1 -1
  468. package/dist/types/core/Localization/index.d.ts +1 -1
  469. package/dist/types/core/Localization/index.d.ts.map +1 -1
  470. package/dist/types/core/Localization/localization-utils.d.ts +5 -5
  471. package/dist/types/core/Localization/types.d.ts +6 -10
  472. package/dist/types/core/Localization/types.d.ts.map +1 -1
  473. package/dist/types/core/Localization/utils.d.ts +206 -652
  474. package/dist/types/core/Localization/utils.d.ts.map +1 -1
  475. package/dist/types/core/core.d.ts +10 -21
  476. package/dist/types/core/core.d.ts.map +1 -1
  477. package/dist/types/core/types.d.ts +21 -29
  478. package/dist/types/core/types.d.ts.map +1 -1
  479. package/dist/types/core/utils.d.ts +2 -6
  480. package/dist/types/core/utils.d.ts.map +1 -1
  481. package/dist/types/hooks/element/useClickOutside.d.ts +3 -2
  482. package/dist/types/hooks/element/useClickOutside.d.ts.map +1 -1
  483. package/dist/types/hooks/element/useDetachedRender.d.ts +3 -2
  484. package/dist/types/hooks/element/useDetachedRender.d.ts.map +1 -1
  485. package/dist/types/hooks/element/useFocusCursor.d.ts +2 -2
  486. package/dist/types/hooks/element/useFocusCursor.d.ts.map +1 -1
  487. package/dist/types/hooks/element/useFocusTrap.d.ts +3 -2
  488. package/dist/types/hooks/element/useFocusTrap.d.ts.map +1 -1
  489. package/dist/types/hooks/element/usePopoverPositioner.d.ts +3 -2
  490. package/dist/types/hooks/element/usePopoverPositioner.d.ts.map +1 -1
  491. package/dist/types/hooks/element/useUniqueIdentifier.d.ts +3 -2
  492. package/dist/types/hooks/element/useUniqueIdentifier.d.ts.map +1 -1
  493. package/dist/types/hooks/useFetch/useFetch.d.ts +1 -1
  494. package/dist/types/hooks/useFetch/useFetch.d.ts.map +1 -1
  495. package/dist/types/hooks/useMediaQuery/index.d.ts +2 -0
  496. package/dist/types/hooks/useMediaQuery/index.d.ts.map +1 -0
  497. package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts +3 -0
  498. package/dist/types/hooks/useMediaQuery/useMediaQuery.d.ts.map +1 -0
  499. package/dist/types/hooks/useModalDetails/types.d.ts +4 -4
  500. package/dist/types/hooks/useModalDetails/types.d.ts.map +1 -1
  501. package/dist/types/hooks/useModalDetails/useModalDetails.d.ts +2 -2
  502. package/dist/types/hooks/useModalDetails/useModalDetails.d.ts.map +1 -1
  503. package/dist/types/hooks/useReflex/index.d.ts +1 -3
  504. package/dist/types/hooks/useReflex/index.d.ts.map +1 -1
  505. package/dist/types/hooks/useReflex/useReflex.d.ts +5 -0
  506. package/dist/types/hooks/useReflex/useReflex.d.ts.map +1 -0
  507. package/dist/types/index.d.ts +2 -1
  508. package/dist/types/index.d.ts.map +1 -1
  509. package/dist/types/primitives/async/abortable/index.d.ts +3 -0
  510. package/dist/types/primitives/async/abortable/index.d.ts.map +1 -0
  511. package/dist/types/primitives/async/abortable/main.d.ts +4 -0
  512. package/dist/types/primitives/async/abortable/main.d.ts.map +1 -0
  513. package/dist/types/primitives/async/abortable/types.d.ts +8 -0
  514. package/dist/types/primitives/async/abortable/types.d.ts.map +1 -0
  515. package/dist/types/primitives/async/deferred/index.d.ts +3 -0
  516. package/dist/types/primitives/async/deferred/index.d.ts.map +1 -0
  517. package/dist/types/primitives/async/deferred/main.d.ts +4 -0
  518. package/dist/types/primitives/async/deferred/main.d.ts.map +1 -0
  519. package/dist/types/primitives/async/deferred/types.d.ts +8 -0
  520. package/dist/types/primitives/async/deferred/types.d.ts.map +1 -0
  521. package/dist/types/primitives/async/promisor/index.d.ts +3 -0
  522. package/dist/types/primitives/async/promisor/index.d.ts.map +1 -0
  523. package/dist/types/primitives/async/promisor/main.d.ts +5 -0
  524. package/dist/types/primitives/async/promisor/main.d.ts.map +1 -0
  525. package/dist/types/primitives/async/promisor/types.d.ts +7 -0
  526. package/dist/types/primitives/async/promisor/types.d.ts.map +1 -0
  527. package/dist/types/primitives/auxiliary/abortSink/index.d.ts +3 -0
  528. package/dist/types/primitives/auxiliary/abortSink/index.d.ts.map +1 -0
  529. package/dist/types/primitives/auxiliary/abortSink/main.d.ts +5 -0
  530. package/dist/types/primitives/auxiliary/abortSink/main.d.ts.map +1 -0
  531. package/dist/types/primitives/auxiliary/abortSink/types.d.ts +7 -0
  532. package/dist/types/primitives/auxiliary/abortSink/types.d.ts.map +1 -0
  533. package/dist/types/primitives/auxiliary/errorContainer/index.d.ts +3 -0
  534. package/dist/types/primitives/auxiliary/errorContainer/index.d.ts.map +1 -0
  535. package/dist/types/primitives/auxiliary/errorContainer/main.d.ts +4 -0
  536. package/dist/types/primitives/auxiliary/errorContainer/main.d.ts.map +1 -0
  537. package/dist/types/primitives/auxiliary/errorContainer/types.d.ts +7 -0
  538. package/dist/types/primitives/auxiliary/errorContainer/types.d.ts.map +1 -0
  539. package/dist/types/primitives/auxiliary/indexed/helpers.d.ts +4 -0
  540. package/dist/types/primitives/auxiliary/indexed/helpers.d.ts.map +1 -0
  541. package/dist/types/primitives/auxiliary/indexed/index.d.ts +3 -0
  542. package/dist/types/primitives/auxiliary/indexed/index.d.ts.map +1 -0
  543. package/dist/types/primitives/auxiliary/indexed/main.d.ts +4 -0
  544. package/dist/types/primitives/auxiliary/indexed/main.d.ts.map +1 -0
  545. package/dist/types/primitives/auxiliary/indexed/types.d.ts.map +1 -0
  546. package/dist/types/primitives/context/session/SessionContext.d.ts +40 -0
  547. package/dist/types/primitives/context/session/SessionContext.d.ts.map +1 -0
  548. package/dist/types/primitives/context/session/constants.d.ts +8 -0
  549. package/dist/types/primitives/context/session/constants.d.ts.map +1 -0
  550. package/dist/types/primitives/context/session/index.d.ts +4 -0
  551. package/dist/types/primitives/context/session/index.d.ts.map +1 -0
  552. package/dist/types/primitives/context/session/types.d.ts +11 -0
  553. package/dist/types/primitives/context/session/types.d.ts.map +1 -0
  554. package/dist/types/primitives/dom/tabbableRoot/tabbable.d.ts.map +1 -0
  555. package/dist/types/primitives/reactive/effectStack/index.d.ts +3 -0
  556. package/dist/types/primitives/reactive/effectStack/index.d.ts.map +1 -0
  557. package/dist/types/primitives/reactive/effectStack/main.d.ts +4 -0
  558. package/dist/types/primitives/reactive/effectStack/main.d.ts.map +1 -0
  559. package/dist/types/primitives/reactive/effectStack/types.d.ts +5 -0
  560. package/dist/types/primitives/reactive/effectStack/types.d.ts.map +1 -0
  561. package/dist/types/primitives/reactive/eventEmitter/index.d.ts +3 -0
  562. package/dist/types/primitives/reactive/eventEmitter/index.d.ts.map +1 -0
  563. package/dist/types/primitives/reactive/eventEmitter/main.d.ts +4 -0
  564. package/dist/types/primitives/reactive/eventEmitter/main.d.ts.map +1 -0
  565. package/dist/types/primitives/reactive/eventEmitter/types.d.ts +20 -0
  566. package/dist/types/primitives/reactive/eventEmitter/types.d.ts.map +1 -0
  567. package/dist/types/primitives/reactive/reflex/constants.d.ts.map +1 -0
  568. package/dist/types/primitives/reactive/reflex/errors.d.ts.map +1 -0
  569. package/dist/types/{hooks/useReflex/core/utils.d.ts → primitives/reactive/reflex/helpers.d.ts} +2 -2
  570. package/dist/types/primitives/reactive/reflex/helpers.d.ts.map +1 -0
  571. package/dist/types/primitives/reactive/reflex/index.d.ts +6 -0
  572. package/dist/types/primitives/reactive/reflex/index.d.ts.map +1 -0
  573. package/dist/types/primitives/reactive/reflex/main.d.ts +5 -0
  574. package/dist/types/primitives/reactive/reflex/main.d.ts.map +1 -0
  575. package/dist/types/primitives/reactive/reflex/register.d.ts +5 -0
  576. package/dist/types/primitives/reactive/reflex/register.d.ts.map +1 -0
  577. package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/types.d.ts +7 -9
  578. package/dist/types/primitives/reactive/reflex/types.d.ts.map +1 -0
  579. package/dist/types/primitives/reactive/watchlist/constants.d.ts +2 -0
  580. package/dist/types/primitives/reactive/watchlist/constants.d.ts.map +1 -0
  581. package/dist/types/primitives/reactive/watchlist/helpers.d.ts +4 -0
  582. package/dist/types/primitives/reactive/watchlist/helpers.d.ts.map +1 -0
  583. package/dist/types/primitives/reactive/watchlist/index.d.ts +4 -0
  584. package/dist/types/primitives/reactive/watchlist/index.d.ts.map +1 -0
  585. package/dist/types/primitives/reactive/watchlist/main.d.ts +6 -0
  586. package/dist/types/primitives/reactive/watchlist/main.d.ts.map +1 -0
  587. package/dist/types/primitives/reactive/watchlist/types.d.ts +23 -0
  588. package/dist/types/primitives/reactive/watchlist/types.d.ts.map +1 -0
  589. package/dist/types/primitives/time/clock/index.d.ts +3 -0
  590. package/dist/types/primitives/time/clock/index.d.ts.map +1 -0
  591. package/dist/types/primitives/time/clock/main.d.ts +4 -0
  592. package/dist/types/primitives/time/clock/main.d.ts.map +1 -0
  593. package/dist/types/primitives/time/clock/types.d.ts +7 -0
  594. package/dist/types/primitives/time/clock/types.d.ts.map +1 -0
  595. package/dist/types/primitives/time/interval/constants.d.ts +3 -0
  596. package/dist/types/primitives/time/interval/constants.d.ts.map +1 -0
  597. package/dist/types/primitives/time/interval/index.d.ts +4 -0
  598. package/dist/types/primitives/time/interval/index.d.ts.map +1 -0
  599. package/dist/types/primitives/time/interval/main.d.ts +25 -0
  600. package/dist/types/primitives/time/interval/main.d.ts.map +1 -0
  601. package/dist/types/primitives/time/interval/types.d.ts +6 -0
  602. package/dist/types/primitives/time/interval/types.d.ts.map +1 -0
  603. package/dist/types/primitives/time/today/index.d.ts +3 -0
  604. package/dist/types/primitives/time/today/index.d.ts.map +1 -0
  605. package/dist/types/primitives/time/today/main.d.ts +5 -0
  606. package/dist/types/primitives/time/today/main.d.ts.map +1 -0
  607. package/dist/types/primitives/time/today/types.d.ts +9 -0
  608. package/dist/types/primitives/time/today/types.d.ts.map +1 -0
  609. package/dist/types/translations/index.d.ts +2442 -0
  610. package/dist/types/translations/index.d.ts.map +1 -0
  611. package/dist/types/types/api/endpoints.d.ts +13 -0
  612. package/dist/types/types/api/endpoints.d.ts.map +1 -0
  613. package/dist/types/types/api/index.d.ts +2 -0
  614. package/dist/types/types/api/index.d.ts.map +1 -0
  615. package/dist/types/types/api/models/balanceAccounts.d.ts +5 -0
  616. package/dist/types/types/api/models/balanceAccounts.d.ts.map +1 -0
  617. package/dist/types/types/api/models/index.d.ts +4 -0
  618. package/dist/types/types/api/models/index.d.ts.map +1 -0
  619. package/dist/types/types/api/models/payouts.d.ts +5 -0
  620. package/dist/types/types/api/models/payouts.d.ts.map +1 -0
  621. package/dist/types/types/api/models/transactions.d.ts +6 -0
  622. package/dist/types/types/api/models/transactions.d.ts.map +1 -0
  623. package/dist/types/types/api/resources/BalanceAccountsResource.d.ts.map +1 -0
  624. package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts +70 -0
  625. package/dist/types/types/api/resources/PaymentInstrumentsResource.d.ts.map +1 -0
  626. package/dist/types/types/api/resources/PayoutsResource.d.ts +127 -0
  627. package/dist/types/types/api/resources/PayoutsResource.d.ts.map +1 -0
  628. package/dist/types/types/api/resources/SetupResource.d.ts.map +1 -0
  629. package/dist/types/types/api/resources/TransactionsResource.d.ts.map +1 -0
  630. package/dist/types/types/api/utils.d.ts +2 -0
  631. package/dist/types/types/api/utils.d.ts.map +1 -0
  632. package/dist/types/types/index.d.ts +1 -2
  633. package/dist/types/types/index.d.ts.map +1 -1
  634. package/dist/types/utils/async/constants.d.ts +3 -0
  635. package/dist/types/utils/async/constants.d.ts.map +1 -0
  636. package/dist/types/utils/async/main.d.ts +4 -0
  637. package/dist/types/utils/async/main.d.ts.map +1 -0
  638. package/dist/types/utils/collection/main.d.ts +11 -0
  639. package/dist/types/utils/collection/main.d.ts.map +1 -0
  640. package/dist/types/utils/collection/types.d.ts +3 -0
  641. package/dist/types/utils/collection/types.d.ts.map +1 -0
  642. package/dist/types/utils/common.d.ts +11 -0
  643. package/dist/types/utils/common.d.ts.map +1 -0
  644. package/dist/types/utils/datetime/main.d.ts +3 -0
  645. package/dist/types/utils/datetime/main.d.ts.map +1 -0
  646. package/dist/types/utils/datetime/types.d.ts +15 -0
  647. package/dist/types/utils/datetime/types.d.ts.map +1 -0
  648. package/dist/types/utils/index.d.ts +16 -0
  649. package/dist/types/utils/index.d.ts.map +1 -0
  650. package/dist/types/utils/{class-name-utils.d.ts → preact/className.d.ts} +1 -1
  651. package/dist/types/utils/preact/className.d.ts.map +1 -0
  652. package/dist/types/utils/{fixedForwardRef.d.ts → preact/fixedForwardRef.d.ts} +1 -1
  653. package/dist/types/utils/preact/fixedForwardRef.d.ts.map +1 -0
  654. package/dist/types/utils/preact/index.d.ts +5 -0
  655. package/dist/types/utils/preact/index.d.ts.map +1 -0
  656. package/dist/types/utils/preact/memoComparator/main.d.ts +4 -0
  657. package/dist/types/utils/preact/memoComparator/main.d.ts.map +1 -0
  658. package/dist/types/utils/preact/memoComparator/types.d.ts.map +1 -0
  659. package/dist/types/utils/preact/props.d.ts +3 -0
  660. package/dist/types/utils/preact/props.d.ts.map +1 -0
  661. package/dist/types/utils/random/uniqueId.d.ts +3 -0
  662. package/dist/types/utils/random/uniqueId.d.ts.map +1 -0
  663. package/dist/types/utils/random/uuid.d.ts +4 -0
  664. package/dist/types/utils/random/uuid.d.ts.map +1 -0
  665. package/dist/types/utils/struct/main.d.ts +23 -0
  666. package/dist/types/utils/struct/main.d.ts.map +1 -0
  667. package/dist/types/utils/struct/property.d.ts +5 -0
  668. package/dist/types/utils/struct/property.d.ts.map +1 -0
  669. package/dist/types/utils/struct/types.d.ts +9 -0
  670. package/dist/types/utils/struct/types.d.ts.map +1 -0
  671. package/dist/types/utils/types.d.ts +26 -6
  672. package/dist/types/utils/types.d.ts.map +1 -1
  673. package/dist/types/utils/value/bool.d.ts +6 -0
  674. package/dist/types/utils/value/bool.d.ts.map +1 -0
  675. package/dist/types/utils/value/compare.d.ts +6 -0
  676. package/dist/types/utils/value/compare.d.ts.map +1 -0
  677. package/dist/types/utils/value/constants.d.ts +3 -0
  678. package/dist/types/utils/value/constants.d.ts.map +1 -0
  679. package/dist/types/utils/value/is.d.ts +11 -0
  680. package/dist/types/utils/value/is.d.ts.map +1 -0
  681. package/dist/types/utils/value/number.d.ts +6 -0
  682. package/dist/types/utils/value/number.d.ts.map +1 -0
  683. package/dist/types/utils/value/string.d.ts +3 -0
  684. package/dist/types/utils/value/string.d.ts.map +1 -0
  685. package/package.json +3 -1
  686. package/LICENSE +0 -21
  687. package/dist/ModalContent-387502da.js +0 -2
  688. package/dist/ModalContent-387502da.js.map +0 -1
  689. package/dist/es/components/external/EventEmitter.js +0 -25
  690. package/dist/es/components/external/TransactionDetails/components/TransactionDetails.js +0 -33
  691. package/dist/es/components/external/TransactionsOverview/components/BalanceAccountSelector/BalanceAccountSelector.js +0 -30
  692. package/dist/es/components/external/TransactionsOverview/components/BalanceAccountSelector/useBalanceAccountSelection.js +0 -17
  693. package/dist/es/components/external/TransactionsOverview/components/ModalContent.js +0 -12
  694. package/dist/es/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.js +0 -21
  695. package/dist/es/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.js +0 -80
  696. package/dist/es/components/external/TransactionsOverview/components/TransactionsDisplay/constants.js +0 -5
  697. package/dist/es/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.js +0 -67
  698. package/dist/es/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.js +0 -23
  699. package/dist/es/components/external/TransactionsOverview/types.js +0 -4
  700. package/dist/es/components/external/UIElement.js +0 -85
  701. package/dist/es/components/internal/Calendar/calendar/shared/indexed/index.js +0 -46
  702. package/dist/es/components/internal/Calendar/clock/clock.js +0 -27
  703. package/dist/es/components/internal/Calendar/clock/today.js +0 -46
  704. package/dist/es/components/internal/Spinner/Spinner.js +0 -6
  705. package/dist/es/components/utils/transactionResourceErrorCodes.js +0 -39
  706. package/dist/es/core/Auth/AuthContext.js +0 -11
  707. package/dist/es/core/Auth/AuthProvider.js +0 -18
  708. package/dist/es/core/Auth/useAuthContext.js +0 -6
  709. package/dist/es/core/Localization/translations/cs-CZ.json.js +0 -4
  710. package/dist/es/core/Localization/translations/da-DK.json.js +0 -4
  711. package/dist/es/core/Localization/translations/en-US.json.js +0 -371
  712. package/dist/es/core/Localization/translations/es-ES.json.js +0 -255
  713. package/dist/es/core/Localization/translations/fr-FR.json.js +0 -4
  714. package/dist/es/core/Localization/translations/hr-HR.json.js +0 -4
  715. package/dist/es/core/Localization/translations/hu-HU.json.js +0 -4
  716. package/dist/es/core/Localization/translations/index.js +0 -82
  717. package/dist/es/core/Localization/translations/it-IT.json.js +0 -4
  718. package/dist/es/core/Localization/translations/ja-JP.json.js +0 -4
  719. package/dist/es/core/Localization/translations/ko-KR.json.js +0 -4
  720. package/dist/es/core/Localization/translations/nl-NL.json.js +0 -4
  721. package/dist/es/core/Localization/translations/no-NO.json.js +0 -4
  722. package/dist/es/core/Localization/translations/pl-PL.json.js +0 -4
  723. package/dist/es/core/Localization/translations/pt-BR.json.js +0 -4
  724. package/dist/es/core/Localization/translations/pt-PT.json.js +0 -4
  725. package/dist/es/core/Localization/translations/ro-RO.json.js +0 -4
  726. package/dist/es/core/Localization/translations/ru-RU.json.js +0 -4
  727. package/dist/es/core/Localization/translations/sk-SK.json.js +0 -4
  728. package/dist/es/core/Localization/translations/sl-SI.json.js +0 -4
  729. package/dist/es/core/Localization/translations/sv-SE.json.js +0 -4
  730. package/dist/es/core/Localization/translations/zh-CN.json.js +0 -4
  731. package/dist/es/core/Localization/translations/zh-TW.json.js +0 -4
  732. package/dist/es/core/Services/requests/http.js +0 -41
  733. package/dist/es/core/Services/sessions/setup-session.js +0 -20
  734. package/dist/es/core/Session/Session.js +0 -59
  735. package/dist/es/core/Session/utils.js +0 -11
  736. package/dist/es/core/config.js +0 -4
  737. package/dist/es/hooks/useReflex/core/reflex.js +0 -66
  738. package/dist/es/hooks/useReflex/core/registry.js +0 -65
  739. package/dist/es/hooks/useReflex/core/utils.js +0 -23
  740. package/dist/es/hooks/useSessionAwareRequest/useSessionAwareRequest.js +0 -30
  741. package/dist/es/hooks/useSetupEndpoint/useSetupEndpoint.js +0 -27
  742. package/dist/es/utils/SessionStorage.js +0 -31
  743. package/dist/es/utils/class-name-utils.js +0 -7
  744. package/dist/es/utils/common/constants.js +0 -8
  745. package/dist/es/utils/common/index.js +0 -34
  746. package/dist/es/utils/fixedForwardRef.js +0 -5
  747. package/dist/es/utils/get-image.js +0 -16
  748. package/dist/es/utils/idGenerator.js +0 -5
  749. package/dist/es/utils/memoComparator/memoComparator.js +0 -23
  750. package/dist/es/utils/tabbable.js +0 -100
  751. package/dist/es/utils/uuid.js +0 -9
  752. package/dist/es/utils/validator-utils.js +0 -5
  753. package/dist/es/utils/watchable/constants.js +0 -4
  754. package/dist/es/utils/watchable/core/Watchable.js +0 -62
  755. package/dist/es/utils/watchable/core/helpers.js +0 -26
  756. package/dist/es/utils/watchable/core/syncEffect.js +0 -22
  757. package/dist/es/utils/watchable/index.js +0 -20
  758. package/dist/index-8daceaea.js +0 -12
  759. package/dist/index-8daceaea.js.map +0 -1
  760. package/dist/types/components/external/EventEmitter.d.ts +0 -10
  761. package/dist/types/components/external/EventEmitter.d.ts.map +0 -1
  762. package/dist/types/components/external/TransactionDetails/components/TransactionDetails.d.ts +0 -5
  763. package/dist/types/components/external/TransactionDetails/components/TransactionDetails.d.ts.map +0 -1
  764. package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/BalanceAccountSelector.d.ts.map +0 -1
  765. package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/index.d.ts +0 -3
  766. package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/index.d.ts.map +0 -1
  767. package/dist/types/components/external/TransactionsOverview/components/BalanceAccountSelector/useBalanceAccountSelection.d.ts.map +0 -1
  768. package/dist/types/components/external/TransactionsOverview/components/ModalContent.d.ts +0 -4
  769. package/dist/types/components/external/TransactionsOverview/components/ModalContent.d.ts.map +0 -1
  770. package/dist/types/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.d.ts +0 -7
  771. package/dist/types/components/external/TransactionsOverview/components/TransactionListError/TransactionListError.d.ts.map +0 -1
  772. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.d.ts +0 -5
  773. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.d.ts.map +0 -1
  774. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/constants.d.ts +0 -3
  775. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/constants.d.ts.map +0 -1
  776. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/types.d.ts +0 -5
  777. package/dist/types/components/external/TransactionsOverview/components/TransactionsDisplay/types.d.ts.map +0 -1
  778. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.d.ts +0 -10
  779. package/dist/types/components/external/TransactionsOverview/components/TransactionsOverviewDateFilter.d.ts.map +0 -1
  780. package/dist/types/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.d.ts +0 -34
  781. package/dist/types/components/external/TransactionsOverview/hooks/useDefaultTransactionsOverviewFilterParams.d.ts.map +0 -1
  782. package/dist/types/components/external/TransactionsOverview/hooks/useMediaQuery.d.ts.map +0 -1
  783. package/dist/types/components/external/TransactionsOverview/types.d.ts +0 -41
  784. package/dist/types/components/external/TransactionsOverview/types.d.ts.map +0 -1
  785. package/dist/types/components/external/UIElement.d.ts.map +0 -1
  786. package/dist/types/components/internal/Calendar/calendar/shared/indexed/index.d.ts +0 -4
  787. package/dist/types/components/internal/Calendar/calendar/shared/indexed/index.d.ts.map +0 -1
  788. package/dist/types/components/internal/Calendar/calendar/shared/indexed/types.d.ts.map +0 -1
  789. package/dist/types/components/internal/Calendar/clock/clock.d.ts +0 -8
  790. package/dist/types/components/internal/Calendar/clock/clock.d.ts.map +0 -1
  791. package/dist/types/components/internal/Calendar/clock/index.d.ts +0 -4
  792. package/dist/types/components/internal/Calendar/clock/index.d.ts.map +0 -1
  793. package/dist/types/components/internal/Calendar/clock/today.d.ts +0 -5
  794. package/dist/types/components/internal/Calendar/clock/today.d.ts.map +0 -1
  795. package/dist/types/components/internal/Calendar/clock/types.d.ts +0 -12
  796. package/dist/types/components/internal/Calendar/clock/types.d.ts.map +0 -1
  797. package/dist/types/components/internal/FilterBar/filters/DateFilter/index.d.ts +0 -2
  798. package/dist/types/components/internal/FilterBar/filters/DateFilter/index.d.ts.map +0 -1
  799. package/dist/types/components/internal/Spinner/Spinner.d.ts +0 -18
  800. package/dist/types/components/internal/Spinner/Spinner.d.ts.map +0 -1
  801. package/dist/types/components/internal/Spinner/index.d.ts +0 -2
  802. package/dist/types/components/internal/Spinner/index.d.ts.map +0 -1
  803. package/dist/types/components/utils/transactionResourceErrorCodes.d.ts.map +0 -1
  804. package/dist/types/core/Analytics/Analytics.d.ts +0 -22
  805. package/dist/types/core/Analytics/Analytics.d.ts.map +0 -1
  806. package/dist/types/core/Analytics/EventsQueue.d.ts +0 -8
  807. package/dist/types/core/Analytics/EventsQueue.d.ts.map +0 -1
  808. package/dist/types/core/Analytics/index.d.ts +0 -2
  809. package/dist/types/core/Analytics/index.d.ts.map +0 -1
  810. package/dist/types/core/Auth/AuthContext.d.ts +0 -3
  811. package/dist/types/core/Auth/AuthContext.d.ts.map +0 -1
  812. package/dist/types/core/Auth/AuthProvider.d.ts +0 -4
  813. package/dist/types/core/Auth/AuthProvider.d.ts.map +0 -1
  814. package/dist/types/core/Auth/useAuthContext.d.ts +0 -3
  815. package/dist/types/core/Auth/useAuthContext.d.ts.map +0 -1
  816. package/dist/types/core/Localization/translations/index.d.ts +0 -632
  817. package/dist/types/core/Localization/translations/index.d.ts.map +0 -1
  818. package/dist/types/core/Services/analytics/collect-id.d.ts +0 -9
  819. package/dist/types/core/Services/analytics/collect-id.d.ts.map +0 -1
  820. package/dist/types/core/Services/analytics/log-event.d.ts +0 -9
  821. package/dist/types/core/Services/analytics/log-event.d.ts.map +0 -1
  822. package/dist/types/core/Services/analytics/post-telemetry.d.ts +0 -8
  823. package/dist/types/core/Services/analytics/post-telemetry.d.ts.map +0 -1
  824. package/dist/types/core/Services/analytics/types.d.ts +0 -15
  825. package/dist/types/core/Services/analytics/types.d.ts.map +0 -1
  826. package/dist/types/core/Services/requests/endpoints.d.ts +0 -7
  827. package/dist/types/core/Services/requests/endpoints.d.ts.map +0 -1
  828. package/dist/types/core/Services/requests/http.d.ts.map +0 -1
  829. package/dist/types/core/Services/requests/types.d.ts.map +0 -1
  830. package/dist/types/core/Services/requests/utils.d.ts.map +0 -1
  831. package/dist/types/core/Services/sessions/constants.d.ts.map +0 -1
  832. package/dist/types/core/Services/sessions/setup-session.d.ts +0 -5
  833. package/dist/types/core/Services/sessions/setup-session.d.ts.map +0 -1
  834. package/dist/types/core/Session/Session.d.ts +0 -32
  835. package/dist/types/core/Session/Session.d.ts.map +0 -1
  836. package/dist/types/core/Session/index.d.ts +0 -2
  837. package/dist/types/core/Session/index.d.ts.map +0 -1
  838. package/dist/types/core/Session/types.d.ts +0 -9
  839. package/dist/types/core/Session/types.d.ts.map +0 -1
  840. package/dist/types/core/Session/utils.d.ts +0 -3
  841. package/dist/types/core/Session/utils.d.ts.map +0 -1
  842. package/dist/types/core/config.d.ts +0 -9
  843. package/dist/types/core/config.d.ts.map +0 -1
  844. package/dist/types/hooks/useReflex/constants.d.ts.map +0 -1
  845. package/dist/types/hooks/useReflex/core/reflex.d.ts +0 -5
  846. package/dist/types/hooks/useReflex/core/reflex.d.ts.map +0 -1
  847. package/dist/types/hooks/useReflex/core/registry.d.ts +0 -5
  848. package/dist/types/hooks/useReflex/core/registry.d.ts.map +0 -1
  849. package/dist/types/hooks/useReflex/core/utils.d.ts.map +0 -1
  850. package/dist/types/hooks/useReflex/errors.d.ts.map +0 -1
  851. package/dist/types/hooks/useReflex/hooks/useReflex.d.ts +0 -4
  852. package/dist/types/hooks/useReflex/hooks/useReflex.d.ts.map +0 -1
  853. package/dist/types/hooks/useReflex/types.d.ts.map +0 -1
  854. package/dist/types/hooks/useSessionAwareRequest/useSessionAwareRequest.d.ts +0 -6
  855. package/dist/types/hooks/useSessionAwareRequest/useSessionAwareRequest.d.ts.map +0 -1
  856. package/dist/types/hooks/useSetupEndpoint/useSetupEndpoint.d.ts +0 -12
  857. package/dist/types/hooks/useSetupEndpoint/useSetupEndpoint.d.ts.map +0 -1
  858. package/dist/types/types/models/api/index.d.ts +0 -3
  859. package/dist/types/types/models/api/index.d.ts.map +0 -1
  860. package/dist/types/types/models/api/utils.d.ts +0 -15
  861. package/dist/types/types/models/api/utils.d.ts.map +0 -1
  862. package/dist/types/types/models/balanceAccount.d.ts +0 -5
  863. package/dist/types/types/models/balanceAccount.d.ts.map +0 -1
  864. package/dist/types/types/models/openapi/BalanceAccountsResource.d.ts.map +0 -1
  865. package/dist/types/types/models/openapi/SetupResource.d.ts.map +0 -1
  866. package/dist/types/types/models/openapi/TransactionsResource.d.ts.map +0 -1
  867. package/dist/types/types/models/openapi/endpoints.d.ts +0 -11
  868. package/dist/types/types/models/openapi/endpoints.d.ts.map +0 -1
  869. package/dist/types/types/models/transactions.d.ts +0 -5
  870. package/dist/types/types/models/transactions.d.ts.map +0 -1
  871. package/dist/types/types/shared.d.ts +0 -33
  872. package/dist/types/types/shared.d.ts.map +0 -1
  873. package/dist/types/utils/SessionStorage.d.ts +0 -11
  874. package/dist/types/utils/SessionStorage.d.ts.map +0 -1
  875. package/dist/types/utils/Validator/ValidationRuleResult.d.ts +0 -19
  876. package/dist/types/utils/Validator/ValidationRuleResult.d.ts.map +0 -1
  877. package/dist/types/utils/Validator/types.d.ts +0 -58
  878. package/dist/types/utils/Validator/types.d.ts.map +0 -1
  879. package/dist/types/utils/class-name-utils.d.ts.map +0 -1
  880. package/dist/types/utils/common/constants.d.ts +0 -12
  881. package/dist/types/utils/common/constants.d.ts.map +0 -1
  882. package/dist/types/utils/common/index.d.ts +0 -27
  883. package/dist/types/utils/common/index.d.ts.map +0 -1
  884. package/dist/types/utils/fixedForwardRef.d.ts.map +0 -1
  885. package/dist/types/utils/get-image.d.ts +0 -14
  886. package/dist/types/utils/get-image.d.ts.map +0 -1
  887. package/dist/types/utils/idGenerator.d.ts +0 -2
  888. package/dist/types/utils/idGenerator.d.ts.map +0 -1
  889. package/dist/types/utils/memoComparator/index.d.ts +0 -2
  890. package/dist/types/utils/memoComparator/index.d.ts.map +0 -1
  891. package/dist/types/utils/memoComparator/memoComparator.d.ts +0 -4
  892. package/dist/types/utils/memoComparator/memoComparator.d.ts.map +0 -1
  893. package/dist/types/utils/memoComparator/types.d.ts.map +0 -1
  894. package/dist/types/utils/tabbable.d.ts.map +0 -1
  895. package/dist/types/utils/useForm/types.d.ts +0 -81
  896. package/dist/types/utils/useForm/types.d.ts.map +0 -1
  897. package/dist/types/utils/uuid.d.ts +0 -2
  898. package/dist/types/utils/uuid.d.ts.map +0 -1
  899. package/dist/types/utils/validator-utils.d.ts +0 -15
  900. package/dist/types/utils/validator-utils.d.ts.map +0 -1
  901. package/dist/types/utils/watchable/constants.d.ts +0 -2
  902. package/dist/types/utils/watchable/constants.d.ts.map +0 -1
  903. package/dist/types/utils/watchable/core/Watchable.d.ts +0 -17
  904. package/dist/types/utils/watchable/core/Watchable.d.ts.map +0 -1
  905. package/dist/types/utils/watchable/core/helpers.d.ts +0 -9
  906. package/dist/types/utils/watchable/core/helpers.d.ts.map +0 -1
  907. package/dist/types/utils/watchable/core/syncEffect.d.ts +0 -4
  908. package/dist/types/utils/watchable/core/syncEffect.d.ts.map +0 -1
  909. package/dist/types/utils/watchable/index.d.ts +0 -4
  910. package/dist/types/utils/watchable/index.d.ts.map +0 -1
  911. package/dist/types/utils/watchable/types.d.ts +0 -27
  912. package/dist/types/utils/watchable/types.d.ts.map +0 -1
  913. /package/dist/es/components/external/{TransactionDetails/components/TransactionDetails.scss.js → PayoutDetails/components/PayoutData.scss.js} +0 -0
  914. /package/dist/es/components/{internal/Spinner/Spinner.scss.js → external/PayoutsOverview/components/PayoutsOverview/PayoutsOverview.scss.js} +0 -0
  915. /package/dist/es/components/external/{TransactionsOverview/components/TransactionsDisplay/TransactionsDisplay.scss.js → PayoutsOverview/components/PayoutsTable/PayoutsTable.scss.js} +0 -0
  916. /package/dist/es/components/external/{TransactionsOverview/components/TransactionsOverviewContainer/TransactionsOverviewContainer.scss.js → TransactionDetails/components/TransactionData.scss.js} +0 -0
  917. /package/dist/es/components/{external/TransactionsOverview/components → internal/FormFields/Select}/BalanceAccountSelector/BalanceAccountSelector.scss.js +0 -0
  918. /package/dist/es/components/internal/{FilterBar/filters/DateFilter/DateFilter.scss.js → Modal/ModalContent/ModalContent.scss.js} +0 -0
  919. /package/dist/es/core/{Services/sessions → Http}/constants.js +0 -0
  920. /package/dist/es/{hooks/useReflex → primitives/reactive/reflex}/constants.js +0 -0
  921. /package/dist/es/{hooks/useReflex → primitives/reactive/reflex}/errors.js +0 -0
  922. /package/dist/types/core/{Services/sessions → Http}/constants.d.ts +0 -0
  923. /package/dist/types/core/{Services/requests → Http}/http.d.ts +0 -0
  924. /package/dist/types/core/{Services/requests → Http}/utils.d.ts +0 -0
  925. /package/dist/types/{components/internal/Calendar/calendar/shared → primitives/auxiliary}/indexed/types.d.ts +0 -0
  926. /package/dist/types/{utils → primitives/dom/tabbableRoot}/tabbable.d.ts +0 -0
  927. /package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/constants.d.ts +0 -0
  928. /package/dist/types/{hooks/useReflex → primitives/reactive/reflex}/errors.d.ts +0 -0
  929. /package/dist/types/types/{models/openapi → api/resources}/BalanceAccountsResource.d.ts +0 -0
  930. /package/dist/types/types/{models/openapi → api/resources}/SetupResource.d.ts +0 -0
  931. /package/dist/types/types/{models/openapi → api/resources}/TransactionsResource.d.ts +0 -0
  932. /package/dist/types/utils/{memoComparator → preact/memoComparator}/types.d.ts +0 -0
@@ -0,0 +1,2442 @@
1
+ export declare const da_DK: {
2
+ da_DK: {
3
+ account: string;
4
+ accountBalance: string;
5
+ additions: string;
6
+ adjustments: string;
7
+ amount: string;
8
+ apply: string;
9
+ balanceAccount: string;
10
+ balanceAccountId: string;
11
+ Booked: string;
12
+ "button.clearAll": string;
13
+ "calendar.controls": string;
14
+ "calendar.nextMonth": string;
15
+ "calendar.previousMonth": string;
16
+ "calendar.timezone": string;
17
+ capture: string;
18
+ category: string;
19
+ chargeback: string;
20
+ closeIconLabel: string;
21
+ contactSupportForHelpAndShareErrorCode: string;
22
+ correction: string;
23
+ currency: string;
24
+ date: string;
25
+ dateRange: string;
26
+ default: string;
27
+ description: string;
28
+ dismiss: string;
29
+ email: string;
30
+ entityWasNotFound: string;
31
+ entityWasNotFoundDetail: string;
32
+ "expandableCard.collapse": string;
33
+ "expandableCard.expand": string;
34
+ export: string;
35
+ fee: string;
36
+ "filter.date.since": string;
37
+ "filter.date.until": string;
38
+ filterBar: string;
39
+ "filterPlaceholder.category": string;
40
+ "filterPlaceholder.currency": string;
41
+ "filterPlaceholder.status": string;
42
+ from: string;
43
+ fundsCaptured: string;
44
+ grantIssued: string;
45
+ grantRepayment: string;
46
+ hideContent: string;
47
+ id: string;
48
+ incompleteField: string;
49
+ mobile: string;
50
+ netPayout: string;
51
+ nextPayouts: string;
52
+ noData: string;
53
+ noNegativeNumbersAllowed: string;
54
+ noPayoutsFound: string;
55
+ noTransactionsFound: string;
56
+ other: string;
57
+ paginatedNavigation: string;
58
+ "pagination.nextPage": string;
59
+ "pagination.previousPage": string;
60
+ "pagination.showing": string;
61
+ paymentId: string;
62
+ paymentMethod: string;
63
+ payoutDetails: string;
64
+ payoutsTitle: string;
65
+ Pending: string;
66
+ pleaseReachOutToSupportForAssistance: string;
67
+ "rangePreset.custom": string;
68
+ "rangePreset.last30Days": string;
69
+ "rangePreset.last7Days": string;
70
+ "rangePreset.lastMonth": string;
71
+ "rangePreset.lastWeek": string;
72
+ "rangePreset.thisMonth": string;
73
+ "rangePreset.thisWeek": string;
74
+ "rangePreset.yearToDate": string;
75
+ reachOutToSupport: string;
76
+ referenceID: string;
77
+ refresh: string;
78
+ refund: string;
79
+ remainingAmount: string;
80
+ reset: string;
81
+ Reversed: string;
82
+ "select.filter.placeholder": string;
83
+ "select.noOptionsFound": string;
84
+ somethingWentWrong: string;
85
+ status: string;
86
+ structuredList: string;
87
+ subtractions: string;
88
+ tabs: string;
89
+ theErrorCodeIs: string;
90
+ thereAreNoResults: string;
91
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
92
+ thereWasAnUnexpectedError: string;
93
+ theSelectedBalanceAccountIsIncorrect: string;
94
+ timezone: string;
95
+ to: string;
96
+ "tooltip.Chargeback": string;
97
+ "tooltip.Fee": string;
98
+ "tooltip.Refund": string;
99
+ "tooltip.totalIncoming": string;
100
+ "tooltip.totalOutgoing": string;
101
+ totalIncoming: string;
102
+ totalOutgoing: string;
103
+ toValueShouldBeGreaterThanTheFromValue: string;
104
+ transactionDetails: string;
105
+ transactions: string;
106
+ transactionsOverviewTitle: string;
107
+ transactionType: string;
108
+ transfer: string;
109
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
110
+ tryRefreshingThePageOrComeBackLater: string;
111
+ txAmount: string;
112
+ "txType.ATM": string;
113
+ "txType.Capital": string;
114
+ "txType.Chargeback": string;
115
+ "txType.Correction": string;
116
+ "txType.Fee": string;
117
+ "txType.Other": string;
118
+ "txType.Payment": string;
119
+ "txType.Refund": string;
120
+ "txType.Transfer": string;
121
+ type: string;
122
+ value: string;
123
+ weCouldNotLoadThePayoutsOverview: string;
124
+ weCouldNotLoadTheTransactionsOverview: string;
125
+ weCouldNotLoadYourBalanceAccounts: string;
126
+ weCouldNotLoadYourPayouts: string;
127
+ weCouldNotLoadYourTransactions: string;
128
+ };
129
+ };
130
+ export declare const de_DE: {
131
+ de_DE: {
132
+ account: string;
133
+ accountBalance: string;
134
+ additions: string;
135
+ adjustments: string;
136
+ amount: string;
137
+ apply: string;
138
+ balanceAccount: string;
139
+ balanceAccountId: string;
140
+ Booked: string;
141
+ "button.clearAll": string;
142
+ "calendar.controls": string;
143
+ "calendar.nextMonth": string;
144
+ "calendar.previousMonth": string;
145
+ "calendar.timezone": string;
146
+ capture: string;
147
+ category: string;
148
+ chargeback: string;
149
+ closeIconLabel: string;
150
+ contactSupportForHelpAndShareErrorCode: string;
151
+ correction: string;
152
+ currency: string;
153
+ date: string;
154
+ dateRange: string;
155
+ default: string;
156
+ description: string;
157
+ dismiss: string;
158
+ email: string;
159
+ entityWasNotFound: string;
160
+ entityWasNotFoundDetail: string;
161
+ "expandableCard.collapse": string;
162
+ "expandableCard.expand": string;
163
+ export: string;
164
+ fee: string;
165
+ "filter.date.since": string;
166
+ "filter.date.until": string;
167
+ filterBar: string;
168
+ "filterPlaceholder.category": string;
169
+ "filterPlaceholder.currency": string;
170
+ "filterPlaceholder.status": string;
171
+ from: string;
172
+ fundsCaptured: string;
173
+ grantIssued: string;
174
+ grantRepayment: string;
175
+ hideContent: string;
176
+ id: string;
177
+ incompleteField: string;
178
+ mobile: string;
179
+ netPayout: string;
180
+ nextPayouts: string;
181
+ noData: string;
182
+ noNegativeNumbersAllowed: string;
183
+ noPayoutsFound: string;
184
+ noTransactionsFound: string;
185
+ other: string;
186
+ paginatedNavigation: string;
187
+ "pagination.nextPage": string;
188
+ "pagination.previousPage": string;
189
+ "pagination.showing": string;
190
+ paymentId: string;
191
+ paymentMethod: string;
192
+ payoutDetails: string;
193
+ payoutsTitle: string;
194
+ Pending: string;
195
+ pleaseReachOutToSupportForAssistance: string;
196
+ "rangePreset.custom": string;
197
+ "rangePreset.last30Days": string;
198
+ "rangePreset.last7Days": string;
199
+ "rangePreset.lastMonth": string;
200
+ "rangePreset.lastWeek": string;
201
+ "rangePreset.thisMonth": string;
202
+ "rangePreset.thisWeek": string;
203
+ "rangePreset.yearToDate": string;
204
+ reachOutToSupport: string;
205
+ referenceID: string;
206
+ refresh: string;
207
+ refund: string;
208
+ remainingAmount: string;
209
+ reset: string;
210
+ Reversed: string;
211
+ "select.filter.placeholder": string;
212
+ "select.noOptionsFound": string;
213
+ somethingWentWrong: string;
214
+ status: string;
215
+ structuredList: string;
216
+ subtractions: string;
217
+ tabs: string;
218
+ theErrorCodeIs: string;
219
+ thereAreNoResults: string;
220
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
221
+ thereWasAnUnexpectedError: string;
222
+ theSelectedBalanceAccountIsIncorrect: string;
223
+ timezone: string;
224
+ to: string;
225
+ "tooltip.Chargeback": string;
226
+ "tooltip.Fee": string;
227
+ "tooltip.Refund": string;
228
+ "tooltip.totalIncoming": string;
229
+ "tooltip.totalOutgoing": string;
230
+ totalIncoming: string;
231
+ totalOutgoing: string;
232
+ toValueShouldBeGreaterThanTheFromValue: string;
233
+ transactionDetails: string;
234
+ transactions: string;
235
+ transactionsOverviewTitle: string;
236
+ transactionType: string;
237
+ transfer: string;
238
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
239
+ tryRefreshingThePageOrComeBackLater: string;
240
+ txAmount: string;
241
+ "txType.ATM": string;
242
+ "txType.Capital": string;
243
+ "txType.Chargeback": string;
244
+ "txType.Correction": string;
245
+ "txType.Fee": string;
246
+ "txType.Other": string;
247
+ "txType.Payment": string;
248
+ "txType.Refund": string;
249
+ "txType.Transfer": string;
250
+ type: string;
251
+ value: string;
252
+ weCouldNotLoadThePayoutsOverview: string;
253
+ weCouldNotLoadTheTransactionsOverview: string;
254
+ weCouldNotLoadYourBalanceAccounts: string;
255
+ weCouldNotLoadYourPayouts: string;
256
+ weCouldNotLoadYourTransactions: string;
257
+ };
258
+ };
259
+ export declare const en_US: {
260
+ en_US: {
261
+ account: string;
262
+ accountBalance: string;
263
+ additions: string;
264
+ adjustments: string;
265
+ amount: string;
266
+ apply: string;
267
+ balanceAccount: string;
268
+ balanceAccountId: string;
269
+ Booked: string;
270
+ "button.clearAll": string;
271
+ "calendar.controls": string;
272
+ "calendar.nextMonth": string;
273
+ "calendar.previousMonth": string;
274
+ "calendar.timezone": string;
275
+ capture: string;
276
+ category: string;
277
+ chargeback: string;
278
+ closeIconLabel: string;
279
+ contactSupportForHelpAndShareErrorCode: string;
280
+ correction: string;
281
+ currency: string;
282
+ date: string;
283
+ dateRange: string;
284
+ default: string;
285
+ description: string;
286
+ dismiss: string;
287
+ email: string;
288
+ entityWasNotFound: string;
289
+ entityWasNotFoundDetail: string;
290
+ "expandableCard.collapse": string;
291
+ "expandableCard.expand": string;
292
+ export: string;
293
+ fee: string;
294
+ "filter.date.since": string;
295
+ "filter.date.until": string;
296
+ filterBar: string;
297
+ "filterPlaceholder.category": string;
298
+ "filterPlaceholder.currency": string;
299
+ "filterPlaceholder.status": string;
300
+ from: string;
301
+ fundsCaptured: string;
302
+ grantIssued: string;
303
+ grantRepayment: string;
304
+ hideContent: string;
305
+ id: string;
306
+ incompleteField: string;
307
+ mobile: string;
308
+ netPayout: string;
309
+ nextPayouts: string;
310
+ noData: string;
311
+ noNegativeNumbersAllowed: string;
312
+ noPayoutsFound: string;
313
+ noTransactionsFound: string;
314
+ other: string;
315
+ paginatedNavigation: string;
316
+ "pagination.nextPage": string;
317
+ "pagination.previousPage": string;
318
+ "pagination.showing": string;
319
+ paymentId: string;
320
+ paymentMethod: string;
321
+ payoutDetails: string;
322
+ payoutsTitle: string;
323
+ Pending: string;
324
+ pleaseReachOutToSupportForAssistance: string;
325
+ "rangePreset.custom": string;
326
+ "rangePreset.last30Days": string;
327
+ "rangePreset.last7Days": string;
328
+ "rangePreset.lastMonth": string;
329
+ "rangePreset.lastWeek": string;
330
+ "rangePreset.thisMonth": string;
331
+ "rangePreset.thisWeek": string;
332
+ "rangePreset.yearToDate": string;
333
+ reachOutToSupport: string;
334
+ referenceID: string;
335
+ refresh: string;
336
+ refund: string;
337
+ remainingAmount: string;
338
+ reset: string;
339
+ Reversed: string;
340
+ "select.filter.placeholder": string;
341
+ "select.noOptionsFound": string;
342
+ somethingWentWrong: string;
343
+ status: string;
344
+ structuredList: string;
345
+ subtractions: string;
346
+ tabs: string;
347
+ theErrorCodeIs: string;
348
+ thereAreNoResults: string;
349
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
350
+ thereWasAnUnexpectedError: string;
351
+ theSelectedBalanceAccountIsIncorrect: string;
352
+ timezone: string;
353
+ to: string;
354
+ "tooltip.ATM": string;
355
+ "tooltip.Capital": string;
356
+ "tooltip.Chargeback": string;
357
+ "tooltip.Correction": string;
358
+ "tooltip.Fee": string;
359
+ "tooltip.Other": string;
360
+ "tooltip.Payment": string;
361
+ "tooltip.Refund": string;
362
+ "tooltip.totalIncoming": string;
363
+ "tooltip.totalOutgoing": string;
364
+ "tooltip.Transfer": string;
365
+ totalIncoming: string;
366
+ totalOutgoing: string;
367
+ toValueShouldBeGreaterThanTheFromValue: string;
368
+ transactionDetails: string;
369
+ transactions: string;
370
+ transactionsOverviewTitle: string;
371
+ transactionType: string;
372
+ transfer: string;
373
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
374
+ tryRefreshingThePageOrComeBackLater: string;
375
+ txAmount: string;
376
+ "txType.ATM": string;
377
+ "txType.Capital": string;
378
+ "txType.Chargeback": string;
379
+ "txType.Correction": string;
380
+ "txType.Fee": string;
381
+ "txType.Other": string;
382
+ "txType.Payment": string;
383
+ "txType.Refund": string;
384
+ "txType.Transfer": string;
385
+ type: string;
386
+ value: string;
387
+ weCouldNotLoadThePayoutsOverview: string;
388
+ weCouldNotLoadTheTransactionsOverview: string;
389
+ weCouldNotLoadYourBalanceAccounts: string;
390
+ weCouldNotLoadYourPayouts: string;
391
+ weCouldNotLoadYourTransactions: string;
392
+ };
393
+ };
394
+ export declare const es_ES: {
395
+ es_ES: {
396
+ account: string;
397
+ accountBalance: string;
398
+ additions: string;
399
+ adjustments: string;
400
+ amount: string;
401
+ apply: string;
402
+ balanceAccount: string;
403
+ balanceAccountId: string;
404
+ Booked: string;
405
+ "button.clearAll": string;
406
+ "calendar.controls": string;
407
+ "calendar.nextMonth": string;
408
+ "calendar.previousMonth": string;
409
+ "calendar.timezone": string;
410
+ capture: string;
411
+ category: string;
412
+ chargeback: string;
413
+ closeIconLabel: string;
414
+ contactSupportForHelpAndShareErrorCode: string;
415
+ correction: string;
416
+ currency: string;
417
+ date: string;
418
+ dateRange: string;
419
+ default: string;
420
+ description: string;
421
+ dismiss: string;
422
+ email: string;
423
+ entityWasNotFound: string;
424
+ entityWasNotFoundDetail: string;
425
+ "expandableCard.collapse": string;
426
+ "expandableCard.expand": string;
427
+ export: string;
428
+ fee: string;
429
+ "filter.date.since": string;
430
+ "filter.date.until": string;
431
+ filterBar: string;
432
+ "filterPlaceholder.category": string;
433
+ "filterPlaceholder.currency": string;
434
+ "filterPlaceholder.status": string;
435
+ from: string;
436
+ fundsCaptured: string;
437
+ grantIssued: string;
438
+ grantRepayment: string;
439
+ hideContent: string;
440
+ id: string;
441
+ incompleteField: string;
442
+ mobile: string;
443
+ netPayout: string;
444
+ nextPayouts: string;
445
+ noData: string;
446
+ noNegativeNumbersAllowed: string;
447
+ noPayoutsFound: string;
448
+ noTransactionsFound: string;
449
+ other: string;
450
+ paginatedNavigation: string;
451
+ "pagination.nextPage": string;
452
+ "pagination.previousPage": string;
453
+ "pagination.showing": string;
454
+ paymentId: string;
455
+ paymentMethod: string;
456
+ payoutDetails: string;
457
+ payoutsTitle: string;
458
+ Pending: string;
459
+ pleaseReachOutToSupportForAssistance: string;
460
+ "rangePreset.custom": string;
461
+ "rangePreset.last30Days": string;
462
+ "rangePreset.last7Days": string;
463
+ "rangePreset.lastMonth": string;
464
+ "rangePreset.lastWeek": string;
465
+ "rangePreset.thisMonth": string;
466
+ "rangePreset.thisWeek": string;
467
+ "rangePreset.yearToDate": string;
468
+ reachOutToSupport: string;
469
+ referenceID: string;
470
+ refresh: string;
471
+ refund: string;
472
+ remainingAmount: string;
473
+ reset: string;
474
+ Reversed: string;
475
+ "select.filter.placeholder": string;
476
+ "select.noOptionsFound": string;
477
+ somethingWentWrong: string;
478
+ status: string;
479
+ structuredList: string;
480
+ subtractions: string;
481
+ tabs: string;
482
+ theErrorCodeIs: string;
483
+ thereAreNoResults: string;
484
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
485
+ thereWasAnUnexpectedError: string;
486
+ theSelectedBalanceAccountIsIncorrect: string;
487
+ timezone: string;
488
+ to: string;
489
+ "tooltip.Chargeback": string;
490
+ "tooltip.Fee": string;
491
+ "tooltip.Refund": string;
492
+ "tooltip.totalIncoming": string;
493
+ "tooltip.totalOutgoing": string;
494
+ totalIncoming: string;
495
+ totalOutgoing: string;
496
+ toValueShouldBeGreaterThanTheFromValue: string;
497
+ transactionDetails: string;
498
+ transactions: string;
499
+ transactionsOverviewTitle: string;
500
+ transactionType: string;
501
+ transfer: string;
502
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
503
+ tryRefreshingThePageOrComeBackLater: string;
504
+ txAmount: string;
505
+ "txType.ATM": string;
506
+ "txType.Capital": string;
507
+ "txType.Chargeback": string;
508
+ "txType.Correction": string;
509
+ "txType.Fee": string;
510
+ "txType.Other": string;
511
+ "txType.Payment": string;
512
+ "txType.Refund": string;
513
+ "txType.Transfer": string;
514
+ type: string;
515
+ value: string;
516
+ weCouldNotLoadThePayoutsOverview: string;
517
+ weCouldNotLoadTheTransactionsOverview: string;
518
+ weCouldNotLoadYourBalanceAccounts: string;
519
+ weCouldNotLoadYourPayouts: string;
520
+ weCouldNotLoadYourTransactions: string;
521
+ };
522
+ };
523
+ export declare const fr_FR: {
524
+ fr_FR: {
525
+ account: string;
526
+ accountBalance: string;
527
+ additions: string;
528
+ adjustments: string;
529
+ amount: string;
530
+ apply: string;
531
+ balanceAccount: string;
532
+ balanceAccountId: string;
533
+ Booked: string;
534
+ "button.clearAll": string;
535
+ "calendar.controls": string;
536
+ "calendar.nextMonth": string;
537
+ "calendar.previousMonth": string;
538
+ "calendar.timezone": string;
539
+ capture: string;
540
+ category: string;
541
+ chargeback: string;
542
+ closeIconLabel: string;
543
+ contactSupportForHelpAndShareErrorCode: string;
544
+ correction: string;
545
+ currency: string;
546
+ date: string;
547
+ dateRange: string;
548
+ default: string;
549
+ description: string;
550
+ dismiss: string;
551
+ email: string;
552
+ entityWasNotFound: string;
553
+ entityWasNotFoundDetail: string;
554
+ "expandableCard.collapse": string;
555
+ "expandableCard.expand": string;
556
+ export: string;
557
+ fee: string;
558
+ "filter.date.since": string;
559
+ "filter.date.until": string;
560
+ filterBar: string;
561
+ "filterPlaceholder.category": string;
562
+ "filterPlaceholder.currency": string;
563
+ "filterPlaceholder.status": string;
564
+ from: string;
565
+ fundsCaptured: string;
566
+ grantIssued: string;
567
+ grantRepayment: string;
568
+ hideContent: string;
569
+ id: string;
570
+ incompleteField: string;
571
+ mobile: string;
572
+ netPayout: string;
573
+ nextPayouts: string;
574
+ noData: string;
575
+ noNegativeNumbersAllowed: string;
576
+ noPayoutsFound: string;
577
+ noTransactionsFound: string;
578
+ other: string;
579
+ paginatedNavigation: string;
580
+ "pagination.nextPage": string;
581
+ "pagination.previousPage": string;
582
+ "pagination.showing": string;
583
+ paymentId: string;
584
+ paymentMethod: string;
585
+ payoutDetails: string;
586
+ payoutsTitle: string;
587
+ Pending: string;
588
+ pleaseReachOutToSupportForAssistance: string;
589
+ "rangePreset.custom": string;
590
+ "rangePreset.last30Days": string;
591
+ "rangePreset.last7Days": string;
592
+ "rangePreset.lastMonth": string;
593
+ "rangePreset.lastWeek": string;
594
+ "rangePreset.thisMonth": string;
595
+ "rangePreset.thisWeek": string;
596
+ "rangePreset.yearToDate": string;
597
+ reachOutToSupport: string;
598
+ referenceID: string;
599
+ refresh: string;
600
+ refund: string;
601
+ remainingAmount: string;
602
+ reset: string;
603
+ Reversed: string;
604
+ "select.filter.placeholder": string;
605
+ "select.noOptionsFound": string;
606
+ somethingWentWrong: string;
607
+ status: string;
608
+ structuredList: string;
609
+ subtractions: string;
610
+ tabs: string;
611
+ theErrorCodeIs: string;
612
+ thereAreNoResults: string;
613
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
614
+ thereWasAnUnexpectedError: string;
615
+ theSelectedBalanceAccountIsIncorrect: string;
616
+ timezone: string;
617
+ to: string;
618
+ "tooltip.Chargeback": string;
619
+ "tooltip.Fee": string;
620
+ "tooltip.Refund": string;
621
+ "tooltip.totalIncoming": string;
622
+ "tooltip.totalOutgoing": string;
623
+ totalIncoming: string;
624
+ totalOutgoing: string;
625
+ toValueShouldBeGreaterThanTheFromValue: string;
626
+ transactionDetails: string;
627
+ transactions: string;
628
+ transactionsOverviewTitle: string;
629
+ transactionType: string;
630
+ transfer: string;
631
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
632
+ tryRefreshingThePageOrComeBackLater: string;
633
+ txAmount: string;
634
+ "txType.ATM": string;
635
+ "txType.Capital": string;
636
+ "txType.Chargeback": string;
637
+ "txType.Correction": string;
638
+ "txType.Fee": string;
639
+ "txType.Other": string;
640
+ "txType.Payment": string;
641
+ "txType.Refund": string;
642
+ "txType.Transfer": string;
643
+ type: string;
644
+ value: string;
645
+ weCouldNotLoadThePayoutsOverview: string;
646
+ weCouldNotLoadTheTransactionsOverview: string;
647
+ weCouldNotLoadYourBalanceAccounts: string;
648
+ weCouldNotLoadYourPayouts: string;
649
+ weCouldNotLoadYourTransactions: string;
650
+ };
651
+ };
652
+ export declare const it_IT: {
653
+ it_IT: {
654
+ account: string;
655
+ accountBalance: string;
656
+ additions: string;
657
+ adjustments: string;
658
+ amount: string;
659
+ apply: string;
660
+ balanceAccount: string;
661
+ balanceAccountId: string;
662
+ Booked: string;
663
+ "button.clearAll": string;
664
+ "calendar.controls": string;
665
+ "calendar.nextMonth": string;
666
+ "calendar.previousMonth": string;
667
+ "calendar.timezone": string;
668
+ capture: string;
669
+ category: string;
670
+ chargeback: string;
671
+ closeIconLabel: string;
672
+ contactSupportForHelpAndShareErrorCode: string;
673
+ correction: string;
674
+ currency: string;
675
+ date: string;
676
+ dateRange: string;
677
+ default: string;
678
+ description: string;
679
+ dismiss: string;
680
+ email: string;
681
+ entityWasNotFound: string;
682
+ entityWasNotFoundDetail: string;
683
+ "expandableCard.collapse": string;
684
+ "expandableCard.expand": string;
685
+ export: string;
686
+ fee: string;
687
+ "filter.date.since": string;
688
+ "filter.date.until": string;
689
+ filterBar: string;
690
+ "filterPlaceholder.category": string;
691
+ "filterPlaceholder.currency": string;
692
+ "filterPlaceholder.status": string;
693
+ from: string;
694
+ fundsCaptured: string;
695
+ grantIssued: string;
696
+ grantRepayment: string;
697
+ hideContent: string;
698
+ id: string;
699
+ incompleteField: string;
700
+ mobile: string;
701
+ netPayout: string;
702
+ nextPayouts: string;
703
+ noData: string;
704
+ noNegativeNumbersAllowed: string;
705
+ noPayoutsFound: string;
706
+ noTransactionsFound: string;
707
+ other: string;
708
+ paginatedNavigation: string;
709
+ "pagination.nextPage": string;
710
+ "pagination.previousPage": string;
711
+ "pagination.showing": string;
712
+ paymentId: string;
713
+ paymentMethod: string;
714
+ payoutDetails: string;
715
+ payoutsTitle: string;
716
+ Pending: string;
717
+ pleaseReachOutToSupportForAssistance: string;
718
+ "rangePreset.custom": string;
719
+ "rangePreset.last30Days": string;
720
+ "rangePreset.last7Days": string;
721
+ "rangePreset.lastMonth": string;
722
+ "rangePreset.lastWeek": string;
723
+ "rangePreset.thisMonth": string;
724
+ "rangePreset.thisWeek": string;
725
+ "rangePreset.yearToDate": string;
726
+ reachOutToSupport: string;
727
+ referenceID: string;
728
+ refresh: string;
729
+ refund: string;
730
+ remainingAmount: string;
731
+ reset: string;
732
+ Reversed: string;
733
+ "select.filter.placeholder": string;
734
+ "select.noOptionsFound": string;
735
+ somethingWentWrong: string;
736
+ status: string;
737
+ structuredList: string;
738
+ subtractions: string;
739
+ tabs: string;
740
+ theErrorCodeIs: string;
741
+ thereAreNoResults: string;
742
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
743
+ thereWasAnUnexpectedError: string;
744
+ theSelectedBalanceAccountIsIncorrect: string;
745
+ timezone: string;
746
+ to: string;
747
+ "tooltip.Chargeback": string;
748
+ "tooltip.Fee": string;
749
+ "tooltip.Refund": string;
750
+ "tooltip.totalIncoming": string;
751
+ "tooltip.totalOutgoing": string;
752
+ totalIncoming: string;
753
+ totalOutgoing: string;
754
+ toValueShouldBeGreaterThanTheFromValue: string;
755
+ transactionDetails: string;
756
+ transactions: string;
757
+ transactionsOverviewTitle: string;
758
+ transactionType: string;
759
+ transfer: string;
760
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
761
+ tryRefreshingThePageOrComeBackLater: string;
762
+ txAmount: string;
763
+ "txType.ATM": string;
764
+ "txType.Capital": string;
765
+ "txType.Chargeback": string;
766
+ "txType.Correction": string;
767
+ "txType.Fee": string;
768
+ "txType.Other": string;
769
+ "txType.Payment": string;
770
+ "txType.Refund": string;
771
+ "txType.Transfer": string;
772
+ type: string;
773
+ value: string;
774
+ weCouldNotLoadThePayoutsOverview: string;
775
+ weCouldNotLoadTheTransactionsOverview: string;
776
+ weCouldNotLoadYourBalanceAccounts: string;
777
+ weCouldNotLoadYourPayouts: string;
778
+ weCouldNotLoadYourTransactions: string;
779
+ };
780
+ };
781
+ export declare const nl_NL: {
782
+ nl_NL: {
783
+ account: string;
784
+ accountBalance: string;
785
+ additions: string;
786
+ adjustments: string;
787
+ amount: string;
788
+ apply: string;
789
+ balanceAccount: string;
790
+ balanceAccountId: string;
791
+ Booked: string;
792
+ "button.clearAll": string;
793
+ "calendar.controls": string;
794
+ "calendar.nextMonth": string;
795
+ "calendar.previousMonth": string;
796
+ "calendar.timezone": string;
797
+ capture: string;
798
+ category: string;
799
+ chargeback: string;
800
+ closeIconLabel: string;
801
+ contactSupportForHelpAndShareErrorCode: string;
802
+ correction: string;
803
+ currency: string;
804
+ date: string;
805
+ dateRange: string;
806
+ default: string;
807
+ description: string;
808
+ dismiss: string;
809
+ email: string;
810
+ entityWasNotFound: string;
811
+ entityWasNotFoundDetail: string;
812
+ "expandableCard.collapse": string;
813
+ "expandableCard.expand": string;
814
+ export: string;
815
+ fee: string;
816
+ "filter.date.since": string;
817
+ "filter.date.until": string;
818
+ filterBar: string;
819
+ "filterPlaceholder.category": string;
820
+ "filterPlaceholder.currency": string;
821
+ "filterPlaceholder.status": string;
822
+ from: string;
823
+ fundsCaptured: string;
824
+ grantIssued: string;
825
+ grantRepayment: string;
826
+ hideContent: string;
827
+ id: string;
828
+ incompleteField: string;
829
+ mobile: string;
830
+ netPayout: string;
831
+ nextPayouts: string;
832
+ noData: string;
833
+ noNegativeNumbersAllowed: string;
834
+ noPayoutsFound: string;
835
+ noTransactionsFound: string;
836
+ other: string;
837
+ paginatedNavigation: string;
838
+ "pagination.nextPage": string;
839
+ "pagination.previousPage": string;
840
+ "pagination.showing": string;
841
+ paymentId: string;
842
+ paymentMethod: string;
843
+ payoutDetails: string;
844
+ payoutsTitle: string;
845
+ Pending: string;
846
+ pleaseReachOutToSupportForAssistance: string;
847
+ "rangePreset.custom": string;
848
+ "rangePreset.last30Days": string;
849
+ "rangePreset.last7Days": string;
850
+ "rangePreset.lastMonth": string;
851
+ "rangePreset.lastWeek": string;
852
+ "rangePreset.thisMonth": string;
853
+ "rangePreset.thisWeek": string;
854
+ "rangePreset.yearToDate": string;
855
+ reachOutToSupport: string;
856
+ referenceID: string;
857
+ refresh: string;
858
+ refund: string;
859
+ remainingAmount: string;
860
+ reset: string;
861
+ Reversed: string;
862
+ "select.filter.placeholder": string;
863
+ "select.noOptionsFound": string;
864
+ somethingWentWrong: string;
865
+ status: string;
866
+ structuredList: string;
867
+ subtractions: string;
868
+ tabs: string;
869
+ theErrorCodeIs: string;
870
+ thereAreNoResults: string;
871
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
872
+ thereWasAnUnexpectedError: string;
873
+ theSelectedBalanceAccountIsIncorrect: string;
874
+ timezone: string;
875
+ to: string;
876
+ "tooltip.Chargeback": string;
877
+ "tooltip.Fee": string;
878
+ "tooltip.Refund": string;
879
+ "tooltip.totalIncoming": string;
880
+ "tooltip.totalOutgoing": string;
881
+ totalIncoming: string;
882
+ totalOutgoing: string;
883
+ toValueShouldBeGreaterThanTheFromValue: string;
884
+ transactionDetails: string;
885
+ transactions: string;
886
+ transactionsOverviewTitle: string;
887
+ transactionType: string;
888
+ transfer: string;
889
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
890
+ tryRefreshingThePageOrComeBackLater: string;
891
+ txAmount: string;
892
+ "txType.ATM": string;
893
+ "txType.Capital": string;
894
+ "txType.Chargeback": string;
895
+ "txType.Correction": string;
896
+ "txType.Fee": string;
897
+ "txType.Other": string;
898
+ "txType.Payment": string;
899
+ "txType.Refund": string;
900
+ "txType.Transfer": string;
901
+ type: string;
902
+ value: string;
903
+ weCouldNotLoadThePayoutsOverview: string;
904
+ weCouldNotLoadTheTransactionsOverview: string;
905
+ weCouldNotLoadYourBalanceAccounts: string;
906
+ weCouldNotLoadYourPayouts: string;
907
+ weCouldNotLoadYourTransactions: string;
908
+ };
909
+ };
910
+ export declare const no_NO: {
911
+ no_NO: {
912
+ account: string;
913
+ accountBalance: string;
914
+ additions: string;
915
+ adjustments: string;
916
+ amount: string;
917
+ apply: string;
918
+ balanceAccount: string;
919
+ balanceAccountId: string;
920
+ Booked: string;
921
+ "button.clearAll": string;
922
+ "calendar.controls": string;
923
+ "calendar.nextMonth": string;
924
+ "calendar.previousMonth": string;
925
+ "calendar.timezone": string;
926
+ capture: string;
927
+ category: string;
928
+ chargeback: string;
929
+ closeIconLabel: string;
930
+ contactSupportForHelpAndShareErrorCode: string;
931
+ correction: string;
932
+ currency: string;
933
+ date: string;
934
+ dateRange: string;
935
+ default: string;
936
+ description: string;
937
+ dismiss: string;
938
+ email: string;
939
+ entityWasNotFound: string;
940
+ entityWasNotFoundDetail: string;
941
+ "expandableCard.collapse": string;
942
+ "expandableCard.expand": string;
943
+ export: string;
944
+ fee: string;
945
+ "filter.date.since": string;
946
+ "filter.date.until": string;
947
+ filterBar: string;
948
+ "filterPlaceholder.category": string;
949
+ "filterPlaceholder.currency": string;
950
+ "filterPlaceholder.status": string;
951
+ from: string;
952
+ fundsCaptured: string;
953
+ grantIssued: string;
954
+ grantRepayment: string;
955
+ hideContent: string;
956
+ id: string;
957
+ incompleteField: string;
958
+ mobile: string;
959
+ netPayout: string;
960
+ nextPayouts: string;
961
+ noData: string;
962
+ noNegativeNumbersAllowed: string;
963
+ noPayoutsFound: string;
964
+ noTransactionsFound: string;
965
+ other: string;
966
+ paginatedNavigation: string;
967
+ "pagination.nextPage": string;
968
+ "pagination.previousPage": string;
969
+ "pagination.showing": string;
970
+ paymentId: string;
971
+ paymentMethod: string;
972
+ payoutDetails: string;
973
+ payoutsTitle: string;
974
+ Pending: string;
975
+ pleaseReachOutToSupportForAssistance: string;
976
+ "rangePreset.custom": string;
977
+ "rangePreset.last30Days": string;
978
+ "rangePreset.last7Days": string;
979
+ "rangePreset.lastMonth": string;
980
+ "rangePreset.lastWeek": string;
981
+ "rangePreset.thisMonth": string;
982
+ "rangePreset.thisWeek": string;
983
+ "rangePreset.yearToDate": string;
984
+ reachOutToSupport: string;
985
+ referenceID: string;
986
+ refresh: string;
987
+ refund: string;
988
+ remainingAmount: string;
989
+ reset: string;
990
+ Reversed: string;
991
+ "select.filter.placeholder": string;
992
+ "select.noOptionsFound": string;
993
+ somethingWentWrong: string;
994
+ status: string;
995
+ structuredList: string;
996
+ subtractions: string;
997
+ tabs: string;
998
+ theErrorCodeIs: string;
999
+ thereAreNoResults: string;
1000
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1001
+ thereWasAnUnexpectedError: string;
1002
+ theSelectedBalanceAccountIsIncorrect: string;
1003
+ timezone: string;
1004
+ to: string;
1005
+ "tooltip.Chargeback": string;
1006
+ "tooltip.Fee": string;
1007
+ "tooltip.Refund": string;
1008
+ "tooltip.totalIncoming": string;
1009
+ "tooltip.totalOutgoing": string;
1010
+ totalIncoming: string;
1011
+ totalOutgoing: string;
1012
+ toValueShouldBeGreaterThanTheFromValue: string;
1013
+ transactionDetails: string;
1014
+ transactions: string;
1015
+ transactionsOverviewTitle: string;
1016
+ transactionType: string;
1017
+ transfer: string;
1018
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1019
+ tryRefreshingThePageOrComeBackLater: string;
1020
+ txAmount: string;
1021
+ "txType.ATM": string;
1022
+ "txType.Capital": string;
1023
+ "txType.Chargeback": string;
1024
+ "txType.Correction": string;
1025
+ "txType.Fee": string;
1026
+ "txType.Other": string;
1027
+ "txType.Payment": string;
1028
+ "txType.Refund": string;
1029
+ "txType.Transfer": string;
1030
+ type: string;
1031
+ value: string;
1032
+ weCouldNotLoadThePayoutsOverview: string;
1033
+ weCouldNotLoadTheTransactionsOverview: string;
1034
+ weCouldNotLoadYourBalanceAccounts: string;
1035
+ weCouldNotLoadYourPayouts: string;
1036
+ weCouldNotLoadYourTransactions: string;
1037
+ };
1038
+ };
1039
+ export declare const pt_BR: {
1040
+ pt_BR: {
1041
+ account: string;
1042
+ accountBalance: string;
1043
+ additions: string;
1044
+ adjustments: string;
1045
+ amount: string;
1046
+ apply: string;
1047
+ balanceAccount: string;
1048
+ balanceAccountId: string;
1049
+ Booked: string;
1050
+ "button.clearAll": string;
1051
+ "calendar.controls": string;
1052
+ "calendar.nextMonth": string;
1053
+ "calendar.previousMonth": string;
1054
+ "calendar.timezone": string;
1055
+ capture: string;
1056
+ category: string;
1057
+ chargeback: string;
1058
+ closeIconLabel: string;
1059
+ contactSupportForHelpAndShareErrorCode: string;
1060
+ correction: string;
1061
+ currency: string;
1062
+ date: string;
1063
+ dateRange: string;
1064
+ default: string;
1065
+ description: string;
1066
+ dismiss: string;
1067
+ email: string;
1068
+ entityWasNotFound: string;
1069
+ entityWasNotFoundDetail: string;
1070
+ "expandableCard.collapse": string;
1071
+ "expandableCard.expand": string;
1072
+ export: string;
1073
+ fee: string;
1074
+ "filter.date.since": string;
1075
+ "filter.date.until": string;
1076
+ filterBar: string;
1077
+ "filterPlaceholder.category": string;
1078
+ "filterPlaceholder.currency": string;
1079
+ "filterPlaceholder.status": string;
1080
+ from: string;
1081
+ fundsCaptured: string;
1082
+ grantIssued: string;
1083
+ grantRepayment: string;
1084
+ hideContent: string;
1085
+ id: string;
1086
+ incompleteField: string;
1087
+ mobile: string;
1088
+ netPayout: string;
1089
+ nextPayouts: string;
1090
+ noData: string;
1091
+ noNegativeNumbersAllowed: string;
1092
+ noPayoutsFound: string;
1093
+ noTransactionsFound: string;
1094
+ other: string;
1095
+ paginatedNavigation: string;
1096
+ "pagination.nextPage": string;
1097
+ "pagination.previousPage": string;
1098
+ "pagination.showing": string;
1099
+ paymentId: string;
1100
+ paymentMethod: string;
1101
+ payoutDetails: string;
1102
+ payoutsTitle: string;
1103
+ Pending: string;
1104
+ pleaseReachOutToSupportForAssistance: string;
1105
+ "rangePreset.custom": string;
1106
+ "rangePreset.last30Days": string;
1107
+ "rangePreset.last7Days": string;
1108
+ "rangePreset.lastMonth": string;
1109
+ "rangePreset.lastWeek": string;
1110
+ "rangePreset.thisMonth": string;
1111
+ "rangePreset.thisWeek": string;
1112
+ "rangePreset.yearToDate": string;
1113
+ reachOutToSupport: string;
1114
+ referenceID: string;
1115
+ refresh: string;
1116
+ refund: string;
1117
+ remainingAmount: string;
1118
+ reset: string;
1119
+ Reversed: string;
1120
+ "select.filter.placeholder": string;
1121
+ "select.noOptionsFound": string;
1122
+ somethingWentWrong: string;
1123
+ status: string;
1124
+ structuredList: string;
1125
+ subtractions: string;
1126
+ tabs: string;
1127
+ theErrorCodeIs: string;
1128
+ thereAreNoResults: string;
1129
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1130
+ thereWasAnUnexpectedError: string;
1131
+ theSelectedBalanceAccountIsIncorrect: string;
1132
+ timezone: string;
1133
+ to: string;
1134
+ "tooltip.Chargeback": string;
1135
+ "tooltip.Fee": string;
1136
+ "tooltip.Refund": string;
1137
+ "tooltip.totalIncoming": string;
1138
+ "tooltip.totalOutgoing": string;
1139
+ totalIncoming: string;
1140
+ totalOutgoing: string;
1141
+ toValueShouldBeGreaterThanTheFromValue: string;
1142
+ transactionDetails: string;
1143
+ transactions: string;
1144
+ transactionsOverviewTitle: string;
1145
+ transactionType: string;
1146
+ transfer: string;
1147
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1148
+ tryRefreshingThePageOrComeBackLater: string;
1149
+ txAmount: string;
1150
+ "txType.ATM": string;
1151
+ "txType.Capital": string;
1152
+ "txType.Chargeback": string;
1153
+ "txType.Correction": string;
1154
+ "txType.Fee": string;
1155
+ "txType.Other": string;
1156
+ "txType.Payment": string;
1157
+ "txType.Refund": string;
1158
+ "txType.Transfer": string;
1159
+ type: string;
1160
+ value: string;
1161
+ weCouldNotLoadThePayoutsOverview: string;
1162
+ weCouldNotLoadTheTransactionsOverview: string;
1163
+ weCouldNotLoadYourBalanceAccounts: string;
1164
+ weCouldNotLoadYourPayouts: string;
1165
+ weCouldNotLoadYourTransactions: string;
1166
+ };
1167
+ };
1168
+ export declare const sv_SE: {
1169
+ sv_SE: {
1170
+ account: string;
1171
+ accountBalance: string;
1172
+ additions: string;
1173
+ adjustments: string;
1174
+ amount: string;
1175
+ apply: string;
1176
+ balanceAccount: string;
1177
+ balanceAccountId: string;
1178
+ Booked: string;
1179
+ "button.clearAll": string;
1180
+ "calendar.controls": string;
1181
+ "calendar.nextMonth": string;
1182
+ "calendar.previousMonth": string;
1183
+ "calendar.timezone": string;
1184
+ capture: string;
1185
+ category: string;
1186
+ chargeback: string;
1187
+ closeIconLabel: string;
1188
+ contactSupportForHelpAndShareErrorCode: string;
1189
+ correction: string;
1190
+ currency: string;
1191
+ date: string;
1192
+ dateRange: string;
1193
+ default: string;
1194
+ description: string;
1195
+ dismiss: string;
1196
+ email: string;
1197
+ entityWasNotFound: string;
1198
+ entityWasNotFoundDetail: string;
1199
+ "expandableCard.collapse": string;
1200
+ "expandableCard.expand": string;
1201
+ export: string;
1202
+ fee: string;
1203
+ "filter.date.since": string;
1204
+ "filter.date.until": string;
1205
+ filterBar: string;
1206
+ "filterPlaceholder.category": string;
1207
+ "filterPlaceholder.currency": string;
1208
+ "filterPlaceholder.status": string;
1209
+ from: string;
1210
+ fundsCaptured: string;
1211
+ grantIssued: string;
1212
+ grantRepayment: string;
1213
+ hideContent: string;
1214
+ id: string;
1215
+ incompleteField: string;
1216
+ mobile: string;
1217
+ netPayout: string;
1218
+ nextPayouts: string;
1219
+ noData: string;
1220
+ noNegativeNumbersAllowed: string;
1221
+ noPayoutsFound: string;
1222
+ noTransactionsFound: string;
1223
+ other: string;
1224
+ paginatedNavigation: string;
1225
+ "pagination.nextPage": string;
1226
+ "pagination.previousPage": string;
1227
+ "pagination.showing": string;
1228
+ paymentId: string;
1229
+ paymentMethod: string;
1230
+ payoutDetails: string;
1231
+ payoutsTitle: string;
1232
+ Pending: string;
1233
+ pleaseReachOutToSupportForAssistance: string;
1234
+ "rangePreset.custom": string;
1235
+ "rangePreset.last30Days": string;
1236
+ "rangePreset.last7Days": string;
1237
+ "rangePreset.lastMonth": string;
1238
+ "rangePreset.lastWeek": string;
1239
+ "rangePreset.thisMonth": string;
1240
+ "rangePreset.thisWeek": string;
1241
+ "rangePreset.yearToDate": string;
1242
+ reachOutToSupport: string;
1243
+ referenceID: string;
1244
+ refresh: string;
1245
+ refund: string;
1246
+ remainingAmount: string;
1247
+ reset: string;
1248
+ Reversed: string;
1249
+ "select.filter.placeholder": string;
1250
+ "select.noOptionsFound": string;
1251
+ somethingWentWrong: string;
1252
+ status: string;
1253
+ structuredList: string;
1254
+ subtractions: string;
1255
+ tabs: string;
1256
+ theErrorCodeIs: string;
1257
+ thereAreNoResults: string;
1258
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1259
+ thereWasAnUnexpectedError: string;
1260
+ theSelectedBalanceAccountIsIncorrect: string;
1261
+ timezone: string;
1262
+ to: string;
1263
+ "tooltip.Chargeback": string;
1264
+ "tooltip.Fee": string;
1265
+ "tooltip.Refund": string;
1266
+ "tooltip.totalIncoming": string;
1267
+ "tooltip.totalOutgoing": string;
1268
+ totalIncoming: string;
1269
+ totalOutgoing: string;
1270
+ toValueShouldBeGreaterThanTheFromValue: string;
1271
+ transactionDetails: string;
1272
+ transactions: string;
1273
+ transactionsOverviewTitle: string;
1274
+ transactionType: string;
1275
+ transfer: string;
1276
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1277
+ tryRefreshingThePageOrComeBackLater: string;
1278
+ txAmount: string;
1279
+ "txType.ATM": string;
1280
+ "txType.Capital": string;
1281
+ "txType.Chargeback": string;
1282
+ "txType.Correction": string;
1283
+ "txType.Fee": string;
1284
+ "txType.Other": string;
1285
+ "txType.Payment": string;
1286
+ "txType.Refund": string;
1287
+ "txType.Transfer": string;
1288
+ type: string;
1289
+ value: string;
1290
+ weCouldNotLoadThePayoutsOverview: string;
1291
+ weCouldNotLoadTheTransactionsOverview: string;
1292
+ weCouldNotLoadYourBalanceAccounts: string;
1293
+ weCouldNotLoadYourPayouts: string;
1294
+ weCouldNotLoadYourTransactions: string;
1295
+ };
1296
+ };
1297
+ export declare const all_locales: {
1298
+ sv_SE: {
1299
+ account: string;
1300
+ accountBalance: string;
1301
+ additions: string;
1302
+ adjustments: string;
1303
+ amount: string;
1304
+ apply: string;
1305
+ balanceAccount: string;
1306
+ balanceAccountId: string;
1307
+ Booked: string;
1308
+ "button.clearAll": string;
1309
+ "calendar.controls": string;
1310
+ "calendar.nextMonth": string;
1311
+ "calendar.previousMonth": string;
1312
+ "calendar.timezone": string;
1313
+ capture: string;
1314
+ category: string;
1315
+ chargeback: string;
1316
+ closeIconLabel: string;
1317
+ contactSupportForHelpAndShareErrorCode: string;
1318
+ correction: string;
1319
+ currency: string;
1320
+ date: string;
1321
+ dateRange: string;
1322
+ default: string;
1323
+ description: string;
1324
+ dismiss: string;
1325
+ email: string;
1326
+ entityWasNotFound: string;
1327
+ entityWasNotFoundDetail: string;
1328
+ "expandableCard.collapse": string;
1329
+ "expandableCard.expand": string;
1330
+ export: string;
1331
+ fee: string;
1332
+ "filter.date.since": string;
1333
+ "filter.date.until": string;
1334
+ filterBar: string;
1335
+ "filterPlaceholder.category": string;
1336
+ "filterPlaceholder.currency": string;
1337
+ "filterPlaceholder.status": string;
1338
+ from: string;
1339
+ fundsCaptured: string;
1340
+ grantIssued: string;
1341
+ grantRepayment: string;
1342
+ hideContent: string;
1343
+ id: string;
1344
+ incompleteField: string;
1345
+ mobile: string;
1346
+ netPayout: string;
1347
+ nextPayouts: string;
1348
+ noData: string;
1349
+ noNegativeNumbersAllowed: string;
1350
+ noPayoutsFound: string;
1351
+ noTransactionsFound: string;
1352
+ other: string;
1353
+ paginatedNavigation: string;
1354
+ "pagination.nextPage": string;
1355
+ "pagination.previousPage": string;
1356
+ "pagination.showing": string;
1357
+ paymentId: string;
1358
+ paymentMethod: string;
1359
+ payoutDetails: string;
1360
+ payoutsTitle: string;
1361
+ Pending: string;
1362
+ pleaseReachOutToSupportForAssistance: string;
1363
+ "rangePreset.custom": string;
1364
+ "rangePreset.last30Days": string;
1365
+ "rangePreset.last7Days": string;
1366
+ "rangePreset.lastMonth": string;
1367
+ "rangePreset.lastWeek": string;
1368
+ "rangePreset.thisMonth": string;
1369
+ "rangePreset.thisWeek": string;
1370
+ "rangePreset.yearToDate": string;
1371
+ reachOutToSupport: string;
1372
+ referenceID: string;
1373
+ refresh: string;
1374
+ refund: string;
1375
+ remainingAmount: string;
1376
+ reset: string;
1377
+ Reversed: string;
1378
+ "select.filter.placeholder": string;
1379
+ "select.noOptionsFound": string;
1380
+ somethingWentWrong: string;
1381
+ status: string;
1382
+ structuredList: string;
1383
+ subtractions: string;
1384
+ tabs: string;
1385
+ theErrorCodeIs: string;
1386
+ thereAreNoResults: string;
1387
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1388
+ thereWasAnUnexpectedError: string;
1389
+ theSelectedBalanceAccountIsIncorrect: string;
1390
+ timezone: string;
1391
+ to: string;
1392
+ "tooltip.Chargeback": string;
1393
+ "tooltip.Fee": string;
1394
+ "tooltip.Refund": string;
1395
+ "tooltip.totalIncoming": string;
1396
+ "tooltip.totalOutgoing": string;
1397
+ totalIncoming: string;
1398
+ totalOutgoing: string;
1399
+ toValueShouldBeGreaterThanTheFromValue: string;
1400
+ transactionDetails: string;
1401
+ transactions: string;
1402
+ transactionsOverviewTitle: string;
1403
+ transactionType: string;
1404
+ transfer: string;
1405
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1406
+ tryRefreshingThePageOrComeBackLater: string;
1407
+ txAmount: string;
1408
+ "txType.ATM": string;
1409
+ "txType.Capital": string;
1410
+ "txType.Chargeback": string;
1411
+ "txType.Correction": string;
1412
+ "txType.Fee": string;
1413
+ "txType.Other": string;
1414
+ "txType.Payment": string;
1415
+ "txType.Refund": string;
1416
+ "txType.Transfer": string;
1417
+ type: string;
1418
+ value: string;
1419
+ weCouldNotLoadThePayoutsOverview: string;
1420
+ weCouldNotLoadTheTransactionsOverview: string;
1421
+ weCouldNotLoadYourBalanceAccounts: string;
1422
+ weCouldNotLoadYourPayouts: string;
1423
+ weCouldNotLoadYourTransactions: string;
1424
+ };
1425
+ pt_BR: {
1426
+ account: string;
1427
+ accountBalance: string;
1428
+ additions: string;
1429
+ adjustments: string;
1430
+ amount: string;
1431
+ apply: string;
1432
+ balanceAccount: string;
1433
+ balanceAccountId: string;
1434
+ Booked: string;
1435
+ "button.clearAll": string;
1436
+ "calendar.controls": string;
1437
+ "calendar.nextMonth": string;
1438
+ "calendar.previousMonth": string;
1439
+ "calendar.timezone": string;
1440
+ capture: string;
1441
+ category: string;
1442
+ chargeback: string;
1443
+ closeIconLabel: string;
1444
+ contactSupportForHelpAndShareErrorCode: string;
1445
+ correction: string;
1446
+ currency: string;
1447
+ date: string;
1448
+ dateRange: string;
1449
+ default: string;
1450
+ description: string;
1451
+ dismiss: string;
1452
+ email: string;
1453
+ entityWasNotFound: string;
1454
+ entityWasNotFoundDetail: string;
1455
+ "expandableCard.collapse": string;
1456
+ "expandableCard.expand": string;
1457
+ export: string;
1458
+ fee: string;
1459
+ "filter.date.since": string;
1460
+ "filter.date.until": string;
1461
+ filterBar: string;
1462
+ "filterPlaceholder.category": string;
1463
+ "filterPlaceholder.currency": string;
1464
+ "filterPlaceholder.status": string;
1465
+ from: string;
1466
+ fundsCaptured: string;
1467
+ grantIssued: string;
1468
+ grantRepayment: string;
1469
+ hideContent: string;
1470
+ id: string;
1471
+ incompleteField: string;
1472
+ mobile: string;
1473
+ netPayout: string;
1474
+ nextPayouts: string;
1475
+ noData: string;
1476
+ noNegativeNumbersAllowed: string;
1477
+ noPayoutsFound: string;
1478
+ noTransactionsFound: string;
1479
+ other: string;
1480
+ paginatedNavigation: string;
1481
+ "pagination.nextPage": string;
1482
+ "pagination.previousPage": string;
1483
+ "pagination.showing": string;
1484
+ paymentId: string;
1485
+ paymentMethod: string;
1486
+ payoutDetails: string;
1487
+ payoutsTitle: string;
1488
+ Pending: string;
1489
+ pleaseReachOutToSupportForAssistance: string;
1490
+ "rangePreset.custom": string;
1491
+ "rangePreset.last30Days": string;
1492
+ "rangePreset.last7Days": string;
1493
+ "rangePreset.lastMonth": string;
1494
+ "rangePreset.lastWeek": string;
1495
+ "rangePreset.thisMonth": string;
1496
+ "rangePreset.thisWeek": string;
1497
+ "rangePreset.yearToDate": string;
1498
+ reachOutToSupport: string;
1499
+ referenceID: string;
1500
+ refresh: string;
1501
+ refund: string;
1502
+ remainingAmount: string;
1503
+ reset: string;
1504
+ Reversed: string;
1505
+ "select.filter.placeholder": string;
1506
+ "select.noOptionsFound": string;
1507
+ somethingWentWrong: string;
1508
+ status: string;
1509
+ structuredList: string;
1510
+ subtractions: string;
1511
+ tabs: string;
1512
+ theErrorCodeIs: string;
1513
+ thereAreNoResults: string;
1514
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1515
+ thereWasAnUnexpectedError: string;
1516
+ theSelectedBalanceAccountIsIncorrect: string;
1517
+ timezone: string;
1518
+ to: string;
1519
+ "tooltip.Chargeback": string;
1520
+ "tooltip.Fee": string;
1521
+ "tooltip.Refund": string;
1522
+ "tooltip.totalIncoming": string;
1523
+ "tooltip.totalOutgoing": string;
1524
+ totalIncoming: string;
1525
+ totalOutgoing: string;
1526
+ toValueShouldBeGreaterThanTheFromValue: string;
1527
+ transactionDetails: string;
1528
+ transactions: string;
1529
+ transactionsOverviewTitle: string;
1530
+ transactionType: string;
1531
+ transfer: string;
1532
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1533
+ tryRefreshingThePageOrComeBackLater: string;
1534
+ txAmount: string;
1535
+ "txType.ATM": string;
1536
+ "txType.Capital": string;
1537
+ "txType.Chargeback": string;
1538
+ "txType.Correction": string;
1539
+ "txType.Fee": string;
1540
+ "txType.Other": string;
1541
+ "txType.Payment": string;
1542
+ "txType.Refund": string;
1543
+ "txType.Transfer": string;
1544
+ type: string;
1545
+ value: string;
1546
+ weCouldNotLoadThePayoutsOverview: string;
1547
+ weCouldNotLoadTheTransactionsOverview: string;
1548
+ weCouldNotLoadYourBalanceAccounts: string;
1549
+ weCouldNotLoadYourPayouts: string;
1550
+ weCouldNotLoadYourTransactions: string;
1551
+ };
1552
+ no_NO: {
1553
+ account: string;
1554
+ accountBalance: string;
1555
+ additions: string;
1556
+ adjustments: string;
1557
+ amount: string;
1558
+ apply: string;
1559
+ balanceAccount: string;
1560
+ balanceAccountId: string;
1561
+ Booked: string;
1562
+ "button.clearAll": string;
1563
+ "calendar.controls": string;
1564
+ "calendar.nextMonth": string;
1565
+ "calendar.previousMonth": string;
1566
+ "calendar.timezone": string;
1567
+ capture: string;
1568
+ category: string;
1569
+ chargeback: string;
1570
+ closeIconLabel: string;
1571
+ contactSupportForHelpAndShareErrorCode: string;
1572
+ correction: string;
1573
+ currency: string;
1574
+ date: string;
1575
+ dateRange: string;
1576
+ default: string;
1577
+ description: string;
1578
+ dismiss: string;
1579
+ email: string;
1580
+ entityWasNotFound: string;
1581
+ entityWasNotFoundDetail: string;
1582
+ "expandableCard.collapse": string;
1583
+ "expandableCard.expand": string;
1584
+ export: string;
1585
+ fee: string;
1586
+ "filter.date.since": string;
1587
+ "filter.date.until": string;
1588
+ filterBar: string;
1589
+ "filterPlaceholder.category": string;
1590
+ "filterPlaceholder.currency": string;
1591
+ "filterPlaceholder.status": string;
1592
+ from: string;
1593
+ fundsCaptured: string;
1594
+ grantIssued: string;
1595
+ grantRepayment: string;
1596
+ hideContent: string;
1597
+ id: string;
1598
+ incompleteField: string;
1599
+ mobile: string;
1600
+ netPayout: string;
1601
+ nextPayouts: string;
1602
+ noData: string;
1603
+ noNegativeNumbersAllowed: string;
1604
+ noPayoutsFound: string;
1605
+ noTransactionsFound: string;
1606
+ other: string;
1607
+ paginatedNavigation: string;
1608
+ "pagination.nextPage": string;
1609
+ "pagination.previousPage": string;
1610
+ "pagination.showing": string;
1611
+ paymentId: string;
1612
+ paymentMethod: string;
1613
+ payoutDetails: string;
1614
+ payoutsTitle: string;
1615
+ Pending: string;
1616
+ pleaseReachOutToSupportForAssistance: string;
1617
+ "rangePreset.custom": string;
1618
+ "rangePreset.last30Days": string;
1619
+ "rangePreset.last7Days": string;
1620
+ "rangePreset.lastMonth": string;
1621
+ "rangePreset.lastWeek": string;
1622
+ "rangePreset.thisMonth": string;
1623
+ "rangePreset.thisWeek": string;
1624
+ "rangePreset.yearToDate": string;
1625
+ reachOutToSupport: string;
1626
+ referenceID: string;
1627
+ refresh: string;
1628
+ refund: string;
1629
+ remainingAmount: string;
1630
+ reset: string;
1631
+ Reversed: string;
1632
+ "select.filter.placeholder": string;
1633
+ "select.noOptionsFound": string;
1634
+ somethingWentWrong: string;
1635
+ status: string;
1636
+ structuredList: string;
1637
+ subtractions: string;
1638
+ tabs: string;
1639
+ theErrorCodeIs: string;
1640
+ thereAreNoResults: string;
1641
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1642
+ thereWasAnUnexpectedError: string;
1643
+ theSelectedBalanceAccountIsIncorrect: string;
1644
+ timezone: string;
1645
+ to: string;
1646
+ "tooltip.Chargeback": string;
1647
+ "tooltip.Fee": string;
1648
+ "tooltip.Refund": string;
1649
+ "tooltip.totalIncoming": string;
1650
+ "tooltip.totalOutgoing": string;
1651
+ totalIncoming: string;
1652
+ totalOutgoing: string;
1653
+ toValueShouldBeGreaterThanTheFromValue: string;
1654
+ transactionDetails: string;
1655
+ transactions: string;
1656
+ transactionsOverviewTitle: string;
1657
+ transactionType: string;
1658
+ transfer: string;
1659
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1660
+ tryRefreshingThePageOrComeBackLater: string;
1661
+ txAmount: string;
1662
+ "txType.ATM": string;
1663
+ "txType.Capital": string;
1664
+ "txType.Chargeback": string;
1665
+ "txType.Correction": string;
1666
+ "txType.Fee": string;
1667
+ "txType.Other": string;
1668
+ "txType.Payment": string;
1669
+ "txType.Refund": string;
1670
+ "txType.Transfer": string;
1671
+ type: string;
1672
+ value: string;
1673
+ weCouldNotLoadThePayoutsOverview: string;
1674
+ weCouldNotLoadTheTransactionsOverview: string;
1675
+ weCouldNotLoadYourBalanceAccounts: string;
1676
+ weCouldNotLoadYourPayouts: string;
1677
+ weCouldNotLoadYourTransactions: string;
1678
+ };
1679
+ nl_NL: {
1680
+ account: string;
1681
+ accountBalance: string;
1682
+ additions: string;
1683
+ adjustments: string;
1684
+ amount: string;
1685
+ apply: string;
1686
+ balanceAccount: string;
1687
+ balanceAccountId: string;
1688
+ Booked: string;
1689
+ "button.clearAll": string;
1690
+ "calendar.controls": string;
1691
+ "calendar.nextMonth": string;
1692
+ "calendar.previousMonth": string;
1693
+ "calendar.timezone": string;
1694
+ capture: string;
1695
+ category: string;
1696
+ chargeback: string;
1697
+ closeIconLabel: string;
1698
+ contactSupportForHelpAndShareErrorCode: string;
1699
+ correction: string;
1700
+ currency: string;
1701
+ date: string;
1702
+ dateRange: string;
1703
+ default: string;
1704
+ description: string;
1705
+ dismiss: string;
1706
+ email: string;
1707
+ entityWasNotFound: string;
1708
+ entityWasNotFoundDetail: string;
1709
+ "expandableCard.collapse": string;
1710
+ "expandableCard.expand": string;
1711
+ export: string;
1712
+ fee: string;
1713
+ "filter.date.since": string;
1714
+ "filter.date.until": string;
1715
+ filterBar: string;
1716
+ "filterPlaceholder.category": string;
1717
+ "filterPlaceholder.currency": string;
1718
+ "filterPlaceholder.status": string;
1719
+ from: string;
1720
+ fundsCaptured: string;
1721
+ grantIssued: string;
1722
+ grantRepayment: string;
1723
+ hideContent: string;
1724
+ id: string;
1725
+ incompleteField: string;
1726
+ mobile: string;
1727
+ netPayout: string;
1728
+ nextPayouts: string;
1729
+ noData: string;
1730
+ noNegativeNumbersAllowed: string;
1731
+ noPayoutsFound: string;
1732
+ noTransactionsFound: string;
1733
+ other: string;
1734
+ paginatedNavigation: string;
1735
+ "pagination.nextPage": string;
1736
+ "pagination.previousPage": string;
1737
+ "pagination.showing": string;
1738
+ paymentId: string;
1739
+ paymentMethod: string;
1740
+ payoutDetails: string;
1741
+ payoutsTitle: string;
1742
+ Pending: string;
1743
+ pleaseReachOutToSupportForAssistance: string;
1744
+ "rangePreset.custom": string;
1745
+ "rangePreset.last30Days": string;
1746
+ "rangePreset.last7Days": string;
1747
+ "rangePreset.lastMonth": string;
1748
+ "rangePreset.lastWeek": string;
1749
+ "rangePreset.thisMonth": string;
1750
+ "rangePreset.thisWeek": string;
1751
+ "rangePreset.yearToDate": string;
1752
+ reachOutToSupport: string;
1753
+ referenceID: string;
1754
+ refresh: string;
1755
+ refund: string;
1756
+ remainingAmount: string;
1757
+ reset: string;
1758
+ Reversed: string;
1759
+ "select.filter.placeholder": string;
1760
+ "select.noOptionsFound": string;
1761
+ somethingWentWrong: string;
1762
+ status: string;
1763
+ structuredList: string;
1764
+ subtractions: string;
1765
+ tabs: string;
1766
+ theErrorCodeIs: string;
1767
+ thereAreNoResults: string;
1768
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1769
+ thereWasAnUnexpectedError: string;
1770
+ theSelectedBalanceAccountIsIncorrect: string;
1771
+ timezone: string;
1772
+ to: string;
1773
+ "tooltip.Chargeback": string;
1774
+ "tooltip.Fee": string;
1775
+ "tooltip.Refund": string;
1776
+ "tooltip.totalIncoming": string;
1777
+ "tooltip.totalOutgoing": string;
1778
+ totalIncoming: string;
1779
+ totalOutgoing: string;
1780
+ toValueShouldBeGreaterThanTheFromValue: string;
1781
+ transactionDetails: string;
1782
+ transactions: string;
1783
+ transactionsOverviewTitle: string;
1784
+ transactionType: string;
1785
+ transfer: string;
1786
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1787
+ tryRefreshingThePageOrComeBackLater: string;
1788
+ txAmount: string;
1789
+ "txType.ATM": string;
1790
+ "txType.Capital": string;
1791
+ "txType.Chargeback": string;
1792
+ "txType.Correction": string;
1793
+ "txType.Fee": string;
1794
+ "txType.Other": string;
1795
+ "txType.Payment": string;
1796
+ "txType.Refund": string;
1797
+ "txType.Transfer": string;
1798
+ type: string;
1799
+ value: string;
1800
+ weCouldNotLoadThePayoutsOverview: string;
1801
+ weCouldNotLoadTheTransactionsOverview: string;
1802
+ weCouldNotLoadYourBalanceAccounts: string;
1803
+ weCouldNotLoadYourPayouts: string;
1804
+ weCouldNotLoadYourTransactions: string;
1805
+ };
1806
+ it_IT: {
1807
+ account: string;
1808
+ accountBalance: string;
1809
+ additions: string;
1810
+ adjustments: string;
1811
+ amount: string;
1812
+ apply: string;
1813
+ balanceAccount: string;
1814
+ balanceAccountId: string;
1815
+ Booked: string;
1816
+ "button.clearAll": string;
1817
+ "calendar.controls": string;
1818
+ "calendar.nextMonth": string;
1819
+ "calendar.previousMonth": string;
1820
+ "calendar.timezone": string;
1821
+ capture: string;
1822
+ category: string;
1823
+ chargeback: string;
1824
+ closeIconLabel: string;
1825
+ contactSupportForHelpAndShareErrorCode: string;
1826
+ correction: string;
1827
+ currency: string;
1828
+ date: string;
1829
+ dateRange: string;
1830
+ default: string;
1831
+ description: string;
1832
+ dismiss: string;
1833
+ email: string;
1834
+ entityWasNotFound: string;
1835
+ entityWasNotFoundDetail: string;
1836
+ "expandableCard.collapse": string;
1837
+ "expandableCard.expand": string;
1838
+ export: string;
1839
+ fee: string;
1840
+ "filter.date.since": string;
1841
+ "filter.date.until": string;
1842
+ filterBar: string;
1843
+ "filterPlaceholder.category": string;
1844
+ "filterPlaceholder.currency": string;
1845
+ "filterPlaceholder.status": string;
1846
+ from: string;
1847
+ fundsCaptured: string;
1848
+ grantIssued: string;
1849
+ grantRepayment: string;
1850
+ hideContent: string;
1851
+ id: string;
1852
+ incompleteField: string;
1853
+ mobile: string;
1854
+ netPayout: string;
1855
+ nextPayouts: string;
1856
+ noData: string;
1857
+ noNegativeNumbersAllowed: string;
1858
+ noPayoutsFound: string;
1859
+ noTransactionsFound: string;
1860
+ other: string;
1861
+ paginatedNavigation: string;
1862
+ "pagination.nextPage": string;
1863
+ "pagination.previousPage": string;
1864
+ "pagination.showing": string;
1865
+ paymentId: string;
1866
+ paymentMethod: string;
1867
+ payoutDetails: string;
1868
+ payoutsTitle: string;
1869
+ Pending: string;
1870
+ pleaseReachOutToSupportForAssistance: string;
1871
+ "rangePreset.custom": string;
1872
+ "rangePreset.last30Days": string;
1873
+ "rangePreset.last7Days": string;
1874
+ "rangePreset.lastMonth": string;
1875
+ "rangePreset.lastWeek": string;
1876
+ "rangePreset.thisMonth": string;
1877
+ "rangePreset.thisWeek": string;
1878
+ "rangePreset.yearToDate": string;
1879
+ reachOutToSupport: string;
1880
+ referenceID: string;
1881
+ refresh: string;
1882
+ refund: string;
1883
+ remainingAmount: string;
1884
+ reset: string;
1885
+ Reversed: string;
1886
+ "select.filter.placeholder": string;
1887
+ "select.noOptionsFound": string;
1888
+ somethingWentWrong: string;
1889
+ status: string;
1890
+ structuredList: string;
1891
+ subtractions: string;
1892
+ tabs: string;
1893
+ theErrorCodeIs: string;
1894
+ thereAreNoResults: string;
1895
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
1896
+ thereWasAnUnexpectedError: string;
1897
+ theSelectedBalanceAccountIsIncorrect: string;
1898
+ timezone: string;
1899
+ to: string;
1900
+ "tooltip.Chargeback": string;
1901
+ "tooltip.Fee": string;
1902
+ "tooltip.Refund": string;
1903
+ "tooltip.totalIncoming": string;
1904
+ "tooltip.totalOutgoing": string;
1905
+ totalIncoming: string;
1906
+ totalOutgoing: string;
1907
+ toValueShouldBeGreaterThanTheFromValue: string;
1908
+ transactionDetails: string;
1909
+ transactions: string;
1910
+ transactionsOverviewTitle: string;
1911
+ transactionType: string;
1912
+ transfer: string;
1913
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
1914
+ tryRefreshingThePageOrComeBackLater: string;
1915
+ txAmount: string;
1916
+ "txType.ATM": string;
1917
+ "txType.Capital": string;
1918
+ "txType.Chargeback": string;
1919
+ "txType.Correction": string;
1920
+ "txType.Fee": string;
1921
+ "txType.Other": string;
1922
+ "txType.Payment": string;
1923
+ "txType.Refund": string;
1924
+ "txType.Transfer": string;
1925
+ type: string;
1926
+ value: string;
1927
+ weCouldNotLoadThePayoutsOverview: string;
1928
+ weCouldNotLoadTheTransactionsOverview: string;
1929
+ weCouldNotLoadYourBalanceAccounts: string;
1930
+ weCouldNotLoadYourPayouts: string;
1931
+ weCouldNotLoadYourTransactions: string;
1932
+ };
1933
+ fr_FR: {
1934
+ account: string;
1935
+ accountBalance: string;
1936
+ additions: string;
1937
+ adjustments: string;
1938
+ amount: string;
1939
+ apply: string;
1940
+ balanceAccount: string;
1941
+ balanceAccountId: string;
1942
+ Booked: string;
1943
+ "button.clearAll": string;
1944
+ "calendar.controls": string;
1945
+ "calendar.nextMonth": string;
1946
+ "calendar.previousMonth": string;
1947
+ "calendar.timezone": string;
1948
+ capture: string;
1949
+ category: string;
1950
+ chargeback: string;
1951
+ closeIconLabel: string;
1952
+ contactSupportForHelpAndShareErrorCode: string;
1953
+ correction: string;
1954
+ currency: string;
1955
+ date: string;
1956
+ dateRange: string;
1957
+ default: string;
1958
+ description: string;
1959
+ dismiss: string;
1960
+ email: string;
1961
+ entityWasNotFound: string;
1962
+ entityWasNotFoundDetail: string;
1963
+ "expandableCard.collapse": string;
1964
+ "expandableCard.expand": string;
1965
+ export: string;
1966
+ fee: string;
1967
+ "filter.date.since": string;
1968
+ "filter.date.until": string;
1969
+ filterBar: string;
1970
+ "filterPlaceholder.category": string;
1971
+ "filterPlaceholder.currency": string;
1972
+ "filterPlaceholder.status": string;
1973
+ from: string;
1974
+ fundsCaptured: string;
1975
+ grantIssued: string;
1976
+ grantRepayment: string;
1977
+ hideContent: string;
1978
+ id: string;
1979
+ incompleteField: string;
1980
+ mobile: string;
1981
+ netPayout: string;
1982
+ nextPayouts: string;
1983
+ noData: string;
1984
+ noNegativeNumbersAllowed: string;
1985
+ noPayoutsFound: string;
1986
+ noTransactionsFound: string;
1987
+ other: string;
1988
+ paginatedNavigation: string;
1989
+ "pagination.nextPage": string;
1990
+ "pagination.previousPage": string;
1991
+ "pagination.showing": string;
1992
+ paymentId: string;
1993
+ paymentMethod: string;
1994
+ payoutDetails: string;
1995
+ payoutsTitle: string;
1996
+ Pending: string;
1997
+ pleaseReachOutToSupportForAssistance: string;
1998
+ "rangePreset.custom": string;
1999
+ "rangePreset.last30Days": string;
2000
+ "rangePreset.last7Days": string;
2001
+ "rangePreset.lastMonth": string;
2002
+ "rangePreset.lastWeek": string;
2003
+ "rangePreset.thisMonth": string;
2004
+ "rangePreset.thisWeek": string;
2005
+ "rangePreset.yearToDate": string;
2006
+ reachOutToSupport: string;
2007
+ referenceID: string;
2008
+ refresh: string;
2009
+ refund: string;
2010
+ remainingAmount: string;
2011
+ reset: string;
2012
+ Reversed: string;
2013
+ "select.filter.placeholder": string;
2014
+ "select.noOptionsFound": string;
2015
+ somethingWentWrong: string;
2016
+ status: string;
2017
+ structuredList: string;
2018
+ subtractions: string;
2019
+ tabs: string;
2020
+ theErrorCodeIs: string;
2021
+ thereAreNoResults: string;
2022
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2023
+ thereWasAnUnexpectedError: string;
2024
+ theSelectedBalanceAccountIsIncorrect: string;
2025
+ timezone: string;
2026
+ to: string;
2027
+ "tooltip.Chargeback": string;
2028
+ "tooltip.Fee": string;
2029
+ "tooltip.Refund": string;
2030
+ "tooltip.totalIncoming": string;
2031
+ "tooltip.totalOutgoing": string;
2032
+ totalIncoming: string;
2033
+ totalOutgoing: string;
2034
+ toValueShouldBeGreaterThanTheFromValue: string;
2035
+ transactionDetails: string;
2036
+ transactions: string;
2037
+ transactionsOverviewTitle: string;
2038
+ transactionType: string;
2039
+ transfer: string;
2040
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2041
+ tryRefreshingThePageOrComeBackLater: string;
2042
+ txAmount: string;
2043
+ "txType.ATM": string;
2044
+ "txType.Capital": string;
2045
+ "txType.Chargeback": string;
2046
+ "txType.Correction": string;
2047
+ "txType.Fee": string;
2048
+ "txType.Other": string;
2049
+ "txType.Payment": string;
2050
+ "txType.Refund": string;
2051
+ "txType.Transfer": string;
2052
+ type: string;
2053
+ value: string;
2054
+ weCouldNotLoadThePayoutsOverview: string;
2055
+ weCouldNotLoadTheTransactionsOverview: string;
2056
+ weCouldNotLoadYourBalanceAccounts: string;
2057
+ weCouldNotLoadYourPayouts: string;
2058
+ weCouldNotLoadYourTransactions: string;
2059
+ };
2060
+ es_ES: {
2061
+ account: string;
2062
+ accountBalance: string;
2063
+ additions: string;
2064
+ adjustments: string;
2065
+ amount: string;
2066
+ apply: string;
2067
+ balanceAccount: string;
2068
+ balanceAccountId: string;
2069
+ Booked: string;
2070
+ "button.clearAll": string;
2071
+ "calendar.controls": string;
2072
+ "calendar.nextMonth": string;
2073
+ "calendar.previousMonth": string;
2074
+ "calendar.timezone": string;
2075
+ capture: string;
2076
+ category: string;
2077
+ chargeback: string;
2078
+ closeIconLabel: string;
2079
+ contactSupportForHelpAndShareErrorCode: string;
2080
+ correction: string;
2081
+ currency: string;
2082
+ date: string;
2083
+ dateRange: string;
2084
+ default: string;
2085
+ description: string;
2086
+ dismiss: string;
2087
+ email: string;
2088
+ entityWasNotFound: string;
2089
+ entityWasNotFoundDetail: string;
2090
+ "expandableCard.collapse": string;
2091
+ "expandableCard.expand": string;
2092
+ export: string;
2093
+ fee: string;
2094
+ "filter.date.since": string;
2095
+ "filter.date.until": string;
2096
+ filterBar: string;
2097
+ "filterPlaceholder.category": string;
2098
+ "filterPlaceholder.currency": string;
2099
+ "filterPlaceholder.status": string;
2100
+ from: string;
2101
+ fundsCaptured: string;
2102
+ grantIssued: string;
2103
+ grantRepayment: string;
2104
+ hideContent: string;
2105
+ id: string;
2106
+ incompleteField: string;
2107
+ mobile: string;
2108
+ netPayout: string;
2109
+ nextPayouts: string;
2110
+ noData: string;
2111
+ noNegativeNumbersAllowed: string;
2112
+ noPayoutsFound: string;
2113
+ noTransactionsFound: string;
2114
+ other: string;
2115
+ paginatedNavigation: string;
2116
+ "pagination.nextPage": string;
2117
+ "pagination.previousPage": string;
2118
+ "pagination.showing": string;
2119
+ paymentId: string;
2120
+ paymentMethod: string;
2121
+ payoutDetails: string;
2122
+ payoutsTitle: string;
2123
+ Pending: string;
2124
+ pleaseReachOutToSupportForAssistance: string;
2125
+ "rangePreset.custom": string;
2126
+ "rangePreset.last30Days": string;
2127
+ "rangePreset.last7Days": string;
2128
+ "rangePreset.lastMonth": string;
2129
+ "rangePreset.lastWeek": string;
2130
+ "rangePreset.thisMonth": string;
2131
+ "rangePreset.thisWeek": string;
2132
+ "rangePreset.yearToDate": string;
2133
+ reachOutToSupport: string;
2134
+ referenceID: string;
2135
+ refresh: string;
2136
+ refund: string;
2137
+ remainingAmount: string;
2138
+ reset: string;
2139
+ Reversed: string;
2140
+ "select.filter.placeholder": string;
2141
+ "select.noOptionsFound": string;
2142
+ somethingWentWrong: string;
2143
+ status: string;
2144
+ structuredList: string;
2145
+ subtractions: string;
2146
+ tabs: string;
2147
+ theErrorCodeIs: string;
2148
+ thereAreNoResults: string;
2149
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2150
+ thereWasAnUnexpectedError: string;
2151
+ theSelectedBalanceAccountIsIncorrect: string;
2152
+ timezone: string;
2153
+ to: string;
2154
+ "tooltip.Chargeback": string;
2155
+ "tooltip.Fee": string;
2156
+ "tooltip.Refund": string;
2157
+ "tooltip.totalIncoming": string;
2158
+ "tooltip.totalOutgoing": string;
2159
+ totalIncoming: string;
2160
+ totalOutgoing: string;
2161
+ toValueShouldBeGreaterThanTheFromValue: string;
2162
+ transactionDetails: string;
2163
+ transactions: string;
2164
+ transactionsOverviewTitle: string;
2165
+ transactionType: string;
2166
+ transfer: string;
2167
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2168
+ tryRefreshingThePageOrComeBackLater: string;
2169
+ txAmount: string;
2170
+ "txType.ATM": string;
2171
+ "txType.Capital": string;
2172
+ "txType.Chargeback": string;
2173
+ "txType.Correction": string;
2174
+ "txType.Fee": string;
2175
+ "txType.Other": string;
2176
+ "txType.Payment": string;
2177
+ "txType.Refund": string;
2178
+ "txType.Transfer": string;
2179
+ type: string;
2180
+ value: string;
2181
+ weCouldNotLoadThePayoutsOverview: string;
2182
+ weCouldNotLoadTheTransactionsOverview: string;
2183
+ weCouldNotLoadYourBalanceAccounts: string;
2184
+ weCouldNotLoadYourPayouts: string;
2185
+ weCouldNotLoadYourTransactions: string;
2186
+ };
2187
+ de_DE: {
2188
+ account: string;
2189
+ accountBalance: string;
2190
+ additions: string;
2191
+ adjustments: string;
2192
+ amount: string;
2193
+ apply: string;
2194
+ balanceAccount: string;
2195
+ balanceAccountId: string;
2196
+ Booked: string;
2197
+ "button.clearAll": string;
2198
+ "calendar.controls": string;
2199
+ "calendar.nextMonth": string;
2200
+ "calendar.previousMonth": string;
2201
+ "calendar.timezone": string;
2202
+ capture: string;
2203
+ category: string;
2204
+ chargeback: string;
2205
+ closeIconLabel: string;
2206
+ contactSupportForHelpAndShareErrorCode: string;
2207
+ correction: string;
2208
+ currency: string;
2209
+ date: string;
2210
+ dateRange: string;
2211
+ default: string;
2212
+ description: string;
2213
+ dismiss: string;
2214
+ email: string;
2215
+ entityWasNotFound: string;
2216
+ entityWasNotFoundDetail: string;
2217
+ "expandableCard.collapse": string;
2218
+ "expandableCard.expand": string;
2219
+ export: string;
2220
+ fee: string;
2221
+ "filter.date.since": string;
2222
+ "filter.date.until": string;
2223
+ filterBar: string;
2224
+ "filterPlaceholder.category": string;
2225
+ "filterPlaceholder.currency": string;
2226
+ "filterPlaceholder.status": string;
2227
+ from: string;
2228
+ fundsCaptured: string;
2229
+ grantIssued: string;
2230
+ grantRepayment: string;
2231
+ hideContent: string;
2232
+ id: string;
2233
+ incompleteField: string;
2234
+ mobile: string;
2235
+ netPayout: string;
2236
+ nextPayouts: string;
2237
+ noData: string;
2238
+ noNegativeNumbersAllowed: string;
2239
+ noPayoutsFound: string;
2240
+ noTransactionsFound: string;
2241
+ other: string;
2242
+ paginatedNavigation: string;
2243
+ "pagination.nextPage": string;
2244
+ "pagination.previousPage": string;
2245
+ "pagination.showing": string;
2246
+ paymentId: string;
2247
+ paymentMethod: string;
2248
+ payoutDetails: string;
2249
+ payoutsTitle: string;
2250
+ Pending: string;
2251
+ pleaseReachOutToSupportForAssistance: string;
2252
+ "rangePreset.custom": string;
2253
+ "rangePreset.last30Days": string;
2254
+ "rangePreset.last7Days": string;
2255
+ "rangePreset.lastMonth": string;
2256
+ "rangePreset.lastWeek": string;
2257
+ "rangePreset.thisMonth": string;
2258
+ "rangePreset.thisWeek": string;
2259
+ "rangePreset.yearToDate": string;
2260
+ reachOutToSupport: string;
2261
+ referenceID: string;
2262
+ refresh: string;
2263
+ refund: string;
2264
+ remainingAmount: string;
2265
+ reset: string;
2266
+ Reversed: string;
2267
+ "select.filter.placeholder": string;
2268
+ "select.noOptionsFound": string;
2269
+ somethingWentWrong: string;
2270
+ status: string;
2271
+ structuredList: string;
2272
+ subtractions: string;
2273
+ tabs: string;
2274
+ theErrorCodeIs: string;
2275
+ thereAreNoResults: string;
2276
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2277
+ thereWasAnUnexpectedError: string;
2278
+ theSelectedBalanceAccountIsIncorrect: string;
2279
+ timezone: string;
2280
+ to: string;
2281
+ "tooltip.Chargeback": string;
2282
+ "tooltip.Fee": string;
2283
+ "tooltip.Refund": string;
2284
+ "tooltip.totalIncoming": string;
2285
+ "tooltip.totalOutgoing": string;
2286
+ totalIncoming: string;
2287
+ totalOutgoing: string;
2288
+ toValueShouldBeGreaterThanTheFromValue: string;
2289
+ transactionDetails: string;
2290
+ transactions: string;
2291
+ transactionsOverviewTitle: string;
2292
+ transactionType: string;
2293
+ transfer: string;
2294
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2295
+ tryRefreshingThePageOrComeBackLater: string;
2296
+ txAmount: string;
2297
+ "txType.ATM": string;
2298
+ "txType.Capital": string;
2299
+ "txType.Chargeback": string;
2300
+ "txType.Correction": string;
2301
+ "txType.Fee": string;
2302
+ "txType.Other": string;
2303
+ "txType.Payment": string;
2304
+ "txType.Refund": string;
2305
+ "txType.Transfer": string;
2306
+ type: string;
2307
+ value: string;
2308
+ weCouldNotLoadThePayoutsOverview: string;
2309
+ weCouldNotLoadTheTransactionsOverview: string;
2310
+ weCouldNotLoadYourBalanceAccounts: string;
2311
+ weCouldNotLoadYourPayouts: string;
2312
+ weCouldNotLoadYourTransactions: string;
2313
+ };
2314
+ da_DK: {
2315
+ account: string;
2316
+ accountBalance: string;
2317
+ additions: string;
2318
+ adjustments: string;
2319
+ amount: string;
2320
+ apply: string;
2321
+ balanceAccount: string;
2322
+ balanceAccountId: string;
2323
+ Booked: string;
2324
+ "button.clearAll": string;
2325
+ "calendar.controls": string;
2326
+ "calendar.nextMonth": string;
2327
+ "calendar.previousMonth": string;
2328
+ "calendar.timezone": string;
2329
+ capture: string;
2330
+ category: string;
2331
+ chargeback: string;
2332
+ closeIconLabel: string;
2333
+ contactSupportForHelpAndShareErrorCode: string;
2334
+ correction: string;
2335
+ currency: string;
2336
+ date: string;
2337
+ dateRange: string;
2338
+ default: string;
2339
+ description: string;
2340
+ dismiss: string;
2341
+ email: string;
2342
+ entityWasNotFound: string;
2343
+ entityWasNotFoundDetail: string;
2344
+ "expandableCard.collapse": string;
2345
+ "expandableCard.expand": string;
2346
+ export: string;
2347
+ fee: string;
2348
+ "filter.date.since": string;
2349
+ "filter.date.until": string;
2350
+ filterBar: string;
2351
+ "filterPlaceholder.category": string;
2352
+ "filterPlaceholder.currency": string;
2353
+ "filterPlaceholder.status": string;
2354
+ from: string;
2355
+ fundsCaptured: string;
2356
+ grantIssued: string;
2357
+ grantRepayment: string;
2358
+ hideContent: string;
2359
+ id: string;
2360
+ incompleteField: string;
2361
+ mobile: string;
2362
+ netPayout: string;
2363
+ nextPayouts: string;
2364
+ noData: string;
2365
+ noNegativeNumbersAllowed: string;
2366
+ noPayoutsFound: string;
2367
+ noTransactionsFound: string;
2368
+ other: string;
2369
+ paginatedNavigation: string;
2370
+ "pagination.nextPage": string;
2371
+ "pagination.previousPage": string;
2372
+ "pagination.showing": string;
2373
+ paymentId: string;
2374
+ paymentMethod: string;
2375
+ payoutDetails: string;
2376
+ payoutsTitle: string;
2377
+ Pending: string;
2378
+ pleaseReachOutToSupportForAssistance: string;
2379
+ "rangePreset.custom": string;
2380
+ "rangePreset.last30Days": string;
2381
+ "rangePreset.last7Days": string;
2382
+ "rangePreset.lastMonth": string;
2383
+ "rangePreset.lastWeek": string;
2384
+ "rangePreset.thisMonth": string;
2385
+ "rangePreset.thisWeek": string;
2386
+ "rangePreset.yearToDate": string;
2387
+ reachOutToSupport: string;
2388
+ referenceID: string;
2389
+ refresh: string;
2390
+ refund: string;
2391
+ remainingAmount: string;
2392
+ reset: string;
2393
+ Reversed: string;
2394
+ "select.filter.placeholder": string;
2395
+ "select.noOptionsFound": string;
2396
+ somethingWentWrong: string;
2397
+ status: string;
2398
+ structuredList: string;
2399
+ subtractions: string;
2400
+ tabs: string;
2401
+ theErrorCodeIs: string;
2402
+ thereAreNoResults: string;
2403
+ theRequestIsMissingRequiredFieldsOrContainsInvalidData: string;
2404
+ thereWasAnUnexpectedError: string;
2405
+ theSelectedBalanceAccountIsIncorrect: string;
2406
+ timezone: string;
2407
+ to: string;
2408
+ "tooltip.Chargeback": string;
2409
+ "tooltip.Fee": string;
2410
+ "tooltip.Refund": string;
2411
+ "tooltip.totalIncoming": string;
2412
+ "tooltip.totalOutgoing": string;
2413
+ totalIncoming: string;
2414
+ totalOutgoing: string;
2415
+ toValueShouldBeGreaterThanTheFromValue: string;
2416
+ transactionDetails: string;
2417
+ transactions: string;
2418
+ transactionsOverviewTitle: string;
2419
+ transactionType: string;
2420
+ transfer: string;
2421
+ tryDifferentSearchOrResetYourFiltersAndWeWillTryAgain: string;
2422
+ tryRefreshingThePageOrComeBackLater: string;
2423
+ txAmount: string;
2424
+ "txType.ATM": string;
2425
+ "txType.Capital": string;
2426
+ "txType.Chargeback": string;
2427
+ "txType.Correction": string;
2428
+ "txType.Fee": string;
2429
+ "txType.Other": string;
2430
+ "txType.Payment": string;
2431
+ "txType.Refund": string;
2432
+ "txType.Transfer": string;
2433
+ type: string;
2434
+ value: string;
2435
+ weCouldNotLoadThePayoutsOverview: string;
2436
+ weCouldNotLoadTheTransactionsOverview: string;
2437
+ weCouldNotLoadYourBalanceAccounts: string;
2438
+ weCouldNotLoadYourPayouts: string;
2439
+ weCouldNotLoadYourTransactions: string;
2440
+ };
2441
+ };
2442
+ //# sourceMappingURL=index.d.ts.map