@tap-payments/os-micro-frontend-shared 0.1.328 → 0.1.330-test.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 (61) hide show
  1. package/build/components/AnimatedSpinnerIcon/style.d.ts +1 -2
  2. package/build/components/Chip/style.d.ts +0 -1
  3. package/build/components/CountBadge/style.d.ts +0 -1
  4. package/build/components/Dialog/style.d.ts +0 -1
  5. package/build/components/FlippingCard/style.d.ts +0 -1
  6. package/build/components/ImageWrapper/ImageWrapper.d.ts +0 -1
  7. package/build/components/JSONViewer/style.d.ts +0 -1
  8. package/build/components/LeftPeekRightExpandingChip/style.d.ts +0 -1
  9. package/build/components/PaymentSourceFilter/PaymentIcon.d.ts +5 -0
  10. package/build/components/PaymentSourceFilter/PaymentIcon.js +9 -0
  11. package/build/components/PaymentSourceFilter/PaymentMethod.js +2 -1
  12. package/build/components/PaymentSourceFilter/PaymentSchemes.js +2 -1
  13. package/build/components/PaymentSourceFilter/style.d.ts +4 -0
  14. package/build/components/PaymentSourceFilter/style.js +10 -0
  15. package/build/components/RightLeftExpandingCenterChip/style.d.ts +0 -1
  16. package/build/components/SearchButton/styles.d.ts +1 -2
  17. package/build/components/StatusIcons/AuthIcons/style.d.ts +0 -1
  18. package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +0 -1
  19. package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +0 -1
  20. package/build/components/StatusIcons/SourceIcons/style.d.ts +0 -1
  21. package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +1 -2
  22. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +0 -1
  23. package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +0 -1
  24. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +0 -1
  25. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +0 -1
  26. package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +0 -1
  27. package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +0 -1
  28. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +0 -1
  29. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +0 -1
  30. package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +0 -1
  31. package/build/components/TableCells/CustomCells/IDButton/style.d.ts +0 -1
  32. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +0 -1
  33. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +0 -1
  34. package/build/components/TableCells/CustomCells/PayoutReportCell/style.d.ts +1 -2
  35. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +0 -1
  36. package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +0 -1
  37. package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +0 -1
  38. package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +0 -1
  39. package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +0 -1
  40. package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +0 -1
  41. package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +0 -1
  42. package/build/components/TableCells/CustomCells/SourceCell/style.d.ts +0 -1
  43. package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +1 -2
  44. package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +0 -1
  45. package/build/components/TableCells/CustomCells/style.d.ts +0 -1
  46. package/build/components/TableReports/components/DownloadButton/style.d.ts +0 -1
  47. package/build/components/TableReports/style.d.ts +0 -1
  48. package/build/components/VirtualTables/components/style.d.ts +1 -2
  49. package/build/constants/apps.js +1 -0
  50. package/build/types/appEvents.d.ts +5 -0
  51. package/build/types/appEvents.js +1 -0
  52. package/build/types/apps.d.ts +2 -9
  53. package/build/types/segment.d.ts +7 -1
  54. package/build/types/segment.js +6 -0
  55. package/build/utils/localStorage.d.ts +3 -3
  56. package/build/utils/localStorage.js +4 -15
  57. package/build/utils/merchantSource.d.ts +0 -2
  58. package/build/utils/merchantSource.js +4 -6
  59. package/build/utils/segment.d.ts +64 -0
  60. package/build/utils/segment.js +52 -1
  61. package/package.json +3 -3
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  type AnimatedSpinnerIconProps = {
4
3
  width?: string;
5
4
  height?: string;
@@ -12,6 +11,7 @@ export declare const StyledAnimatedSpinner: import("@emotion/styled").StyledComp
12
11
  content?: string | undefined;
13
12
  translate?: "yes" | "no" | undefined;
14
13
  id?: string | undefined;
14
+ loading?: "eager" | "lazy" | undefined;
15
15
  defaultChecked?: boolean | undefined;
16
16
  defaultValue?: string | number | readonly string[] | undefined;
17
17
  suppressContentEditableWarning?: boolean | undefined;
@@ -274,7 +274,6 @@ export declare const StyledAnimatedSpinner: import("@emotion/styled").StyledComp
274
274
  src?: string | undefined;
275
275
  alt?: string | undefined;
276
276
  decoding?: "auto" | "async" | "sync" | undefined;
277
- loading?: "eager" | "lazy" | undefined;
278
277
  fetchPriority?: "auto" | "high" | "low" | undefined;
279
278
  srcSet?: string | undefined;
280
279
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & AnimatedSpinnerIconProps, {}, {}>;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  import { GetSourceAnimationFunction } from './type';
4
3
  export declare const ChipStyled: import("@emotion/styled").StyledComponent<import("react").RefAttributes<unknown> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
5
4
  variant?: import("./type").ChipVariant | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const AgreementImageWrapper: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const DialogWrapper: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const Wrapper: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  declare const ImageWrapper: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const FOOTER_HEIGHT = 37;
4
3
  export declare const TITLE_BAR_HEIGHT = "32px";
5
4
  export declare const VIEWER_HEIGHT = 545;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  import type { SxProps, Theme } from '@mui/material/styles';
4
3
  export declare const CHIP_GAP = 3;
5
4
  export declare const DEFAULT_CHIP_MIN_WIDTH = 24;
@@ -0,0 +1,5 @@
1
+ interface PaymentIconProps {
2
+ type: string;
3
+ }
4
+ export declare function PaymentIcon({ type }: PaymentIconProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -0,0 +1,9 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import Box from '@mui/material/Box';
3
+ import { getPaymentMethodsIcon } from '../../constants/index.js';
4
+ import { PaymentChip } from './style';
5
+ export function PaymentIcon({ type }) {
6
+ return (_jsx(PaymentChip, { children: _jsx(Box, { component: "img", src: getPaymentMethodsIcon(type), sx: { width: 18, height: 12, objectFit: 'contain' }, onError: (e) => {
7
+ e.currentTarget.src = getPaymentMethodsIcon('card');
8
+ } }) }));
9
+ }
@@ -14,6 +14,7 @@ import { useState, useCallback, useMemo } from 'react';
14
14
  import { Menu } from '../index.js';
15
15
  import { rightArrow } from '../../constants/index.js';
16
16
  import { MenuItemStyled } from './style';
17
+ import { PaymentIcon } from './PaymentIcon';
17
18
  export default function PaymentMethod({ icon, name, options = [], filters, setFilters }) {
18
19
  var _a;
19
20
  const [anchorEl, setAnchorEl] = useState(null);
@@ -50,5 +51,5 @@ export default function PaymentMethod({ icon, name, options = [], filters, setFi
50
51
  setFilters(Object.assign(Object.assign({}, filters), { payment_methods: [...(paymentMethods !== null && paymentMethods !== void 0 ? paymentMethods : []), selectedPaymentMethod] }));
51
52
  }
52
53
  };
53
- return (_jsxs(MenuItemStyled, Object.assign({ isSelected: isSelected, isIndeterminate: isIndeterminate, onMouseEnter: onOpen, onMouseLeave: onClose, onClick: onClick }, { children: [_jsx("img", { src: icon, alt: name }), _jsx("span", Object.assign({ className: "label" }, { children: name })), _jsx("img", { src: rightArrow, alt: "arrow", style: { height: 12 } }), _jsx(Menu, Object.assign({ open: Boolean(anchorEl), anchorEl: anchorEl, placement: "right-end" }, { children: options === null || options === void 0 ? void 0 : options.map((option) => (_jsx(MenuItemStyled, Object.assign({ isSelected: isSelectedPaymentMethod(option.type), onClick: (e) => onClickPaymentMethod(e, option.type) }, { children: _jsx("img", { src: option.icon, alt: option === null || option === void 0 ? void 0 : option.name, style: { height: 24, width: 36, objectFit: 'contain' } }) }), option.type))) }))] })));
54
+ return (_jsxs(MenuItemStyled, Object.assign({ isSelected: isSelected, isIndeterminate: isIndeterminate, onMouseEnter: onOpen, onMouseLeave: onClose, onClick: onClick }, { children: [_jsx("img", { src: icon, alt: name }), _jsx("span", Object.assign({ className: "label" }, { children: name })), _jsx("img", { src: rightArrow, alt: "arrow", style: { height: 12 } }), _jsx(Menu, Object.assign({ open: Boolean(anchorEl), anchorEl: anchorEl, placement: "right-end" }, { children: options === null || options === void 0 ? void 0 : options.map((option) => (_jsx(MenuItemStyled, Object.assign({ isSelected: isSelectedPaymentMethod(option.type), onClick: (e) => onClickPaymentMethod(e, option.type) }, { children: _jsx(PaymentIcon, { type: option.type }) }), option.type))) }))] })));
54
55
  }
@@ -14,6 +14,7 @@ import { useCallback, useMemo, useState } from 'react';
14
14
  import { Menu } from '../index.js';
15
15
  import { rightArrow } from '../../constants/index.js';
16
16
  import { MenuItemStyled } from './style';
17
+ import { PaymentIcon } from './PaymentIcon';
17
18
  export default function PaymentSchemes({ paymentSchemesSource, filters, setFilters }) {
18
19
  var _a, _b, _c, _d;
19
20
  const [anchorEl, setAnchorEl] = useState(null);
@@ -49,5 +50,5 @@ export default function PaymentSchemes({ paymentSchemesSource, filters, setFilte
49
50
  setFilters(Object.assign(Object.assign({}, filters), { payment_scheme: [...((_b = filters === null || filters === void 0 ? void 0 : filters.payment_scheme) !== null && _b !== void 0 ? _b : []), selectedPaymentScheme] }));
50
51
  }
51
52
  };
52
- return (_jsxs(MenuItemStyled, Object.assign({ isSelected: isSelected, isIndeterminate: isIndeterminate, onMouseEnter: onOpen, onMouseLeave: onClose, onClick: onClick, sx: Object.assign({}, (isDisabled && { opacity: 0.5, pointerEvents: 'none' })) }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: paymentSchemesSource === null || paymentSchemesSource === void 0 ? void 0 : paymentSchemesSource.name })), _jsx("img", { src: rightArrow, alt: "arrow", style: { height: 12 } }), _jsx(Menu, Object.assign({ open: Boolean(anchorEl), anchorEl: anchorEl, placement: "right-start" }, { children: (_d = paymentSchemesSource === null || paymentSchemesSource === void 0 ? void 0 : paymentSchemesSource.options) === null || _d === void 0 ? void 0 : _d.map((scheme) => (_jsx(MenuItemStyled, Object.assign({ isSelected: isSelectedPaymentScheme(scheme.type), onClick: (e) => onClickPaymentScheme(e, scheme.type) }, { children: _jsx("img", { src: scheme.icon, alt: scheme === null || scheme === void 0 ? void 0 : scheme.name, style: { height: 24 } }) }), scheme.type))) }))] })));
53
+ return (_jsxs(MenuItemStyled, Object.assign({ isSelected: isSelected, isIndeterminate: isIndeterminate, onMouseEnter: onOpen, onMouseLeave: onClose, onClick: onClick, sx: Object.assign({}, (isDisabled && { opacity: 0.5, pointerEvents: 'none' })) }, { children: [_jsx("span", Object.assign({ className: "label" }, { children: paymentSchemesSource === null || paymentSchemesSource === void 0 ? void 0 : paymentSchemesSource.name })), _jsx("img", { src: rightArrow, alt: "arrow", style: { height: 12 } }), _jsx(Menu, Object.assign({ open: Boolean(anchorEl), anchorEl: anchorEl, placement: "right-start" }, { children: (_d = paymentSchemesSource === null || paymentSchemesSource === void 0 ? void 0 : paymentSchemesSource.options) === null || _d === void 0 ? void 0 : _d.map((scheme) => (_jsx(MenuItemStyled, Object.assign({ isSelected: isSelectedPaymentScheme(scheme.type), onClick: (e) => onClickPaymentScheme(e, scheme.type) }, { children: _jsx(PaymentIcon, { type: scheme.type }) }), scheme.type))) }))] })));
53
54
  }
@@ -1 +1,5 @@
1
+ /// <reference types="react" />
1
2
  export declare const MenuItemStyled: import("@emotion/styled").StyledComponent<import("../MenuItem/MenuItem").MenuItemProps & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
3
+ export declare const PaymentChip: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
+ }, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
@@ -1,4 +1,5 @@
1
1
  import { styled } from '@mui/material/styles';
2
+ import Box from '@mui/material/Box';
2
3
  import { MenuItem } from '../index.js';
3
4
  export const MenuItemStyled = styled(MenuItem)(({ theme }) => ({
4
5
  height: 40,
@@ -10,3 +11,12 @@ export const MenuItemStyled = styled(MenuItem)(({ theme }) => ({
10
11
  flexGrow: 1,
11
12
  },
12
13
  }));
14
+ export const PaymentChip = styled(Box)(({ theme }) => ({
15
+ width: 36,
16
+ height: 24,
17
+ border: `1px solid ${theme.palette.divider}`,
18
+ display: 'flex',
19
+ alignItems: 'center',
20
+ justifyContent: 'center',
21
+ borderRadius: '12px',
22
+ }));
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  import type { SxProps, Theme } from '@mui/material/styles';
4
3
  export declare const CHIP_GAP = 3;
5
4
  export declare const CenterIconWrapper: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledInput: import("@emotion/styled").StyledComponent<{
4
3
  width?: string | number | undefined;
5
4
  height?: string | number | undefined;
@@ -300,6 +299,7 @@ export declare const Icon: import("@emotion/styled").StyledComponent<{
300
299
  content?: string | undefined;
301
300
  translate?: "yes" | "no" | undefined;
302
301
  id?: string | undefined;
302
+ loading?: "eager" | "lazy" | undefined;
303
303
  defaultChecked?: boolean | undefined;
304
304
  defaultValue?: string | number | readonly string[] | undefined;
305
305
  suppressContentEditableWarning?: boolean | undefined;
@@ -562,7 +562,6 @@ export declare const Icon: import("@emotion/styled").StyledComponent<{
562
562
  src?: string | undefined;
563
563
  alt?: string | undefined;
564
564
  decoding?: "auto" | "async" | "sync" | undefined;
565
- loading?: "eager" | "lazy" | undefined;
566
565
  fetchPriority?: "auto" | "high" | "low" | undefined;
567
566
  srcSet?: string | undefined;
568
567
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const BalanceCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const ErrorCodeLabel: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  import { TableMode } from '../../../../types/index.js';
4
3
  export declare const ActionCellContainer: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
5
4
  tableMode?: TableMode | undefined;
@@ -18,6 +17,7 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
18
17
  content?: string | undefined;
19
18
  translate?: "yes" | "no" | undefined;
20
19
  id?: string | undefined;
20
+ loading?: "eager" | "lazy" | undefined;
21
21
  defaultChecked?: boolean | undefined;
22
22
  defaultValue?: string | number | readonly string[] | undefined;
23
23
  suppressContentEditableWarning?: boolean | undefined;
@@ -280,7 +280,6 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
280
280
  src?: string | undefined;
281
281
  alt?: string | undefined;
282
282
  decoding?: "auto" | "async" | "sync" | undefined;
283
- loading?: "eager" | "lazy" | undefined;
284
283
  fetchPriority?: "auto" | "high" | "low" | undefined;
285
284
  srcSet?: string | undefined;
286
285
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledAppsCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const AppsStatusContainer: import("@emotion/styled").StyledComponent<{
5
4
  hidden?: boolean | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const AuthIcon: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
4
3
  export declare const AuthCellContainer: import("@emotion/styled").StyledComponent<{
5
4
  hidden?: boolean | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const UnCapturedContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const UnCapturedContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const BalanceCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const DueDateCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const UnCapturedContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const DueDateCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const Button: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const DueDateCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const DueDateCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledDownloadFileImageWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
4
3
  isTextShown?: boolean | undefined;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
@@ -11,6 +10,7 @@ export declare const StyledDownloadFileImage: import("@emotion/styled").StyledCo
11
10
  content?: string | undefined;
12
11
  translate?: "yes" | "no" | undefined;
13
12
  id?: string | undefined;
13
+ loading?: "eager" | "lazy" | undefined;
14
14
  defaultChecked?: boolean | undefined;
15
15
  defaultValue?: string | number | readonly string[] | undefined;
16
16
  suppressContentEditableWarning?: boolean | undefined;
@@ -273,7 +273,6 @@ export declare const StyledDownloadFileImage: import("@emotion/styled").StyledCo
273
273
  src?: string | undefined;
274
274
  alt?: string | undefined;
275
275
  decoding?: "auto" | "async" | "sync" | undefined;
276
- loading?: "eager" | "lazy" | undefined;
277
276
  fetchPriority?: "auto" | "high" | "low" | undefined;
278
277
  srcSet?: string | undefined;
279
278
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const UnCapturedContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const ProductCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const RefundChargeCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const RefundCellContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const SalesChannelsContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const ReferenceSourcesContainer: import("@emotion/styled").StyledComponent<{
5
4
  hidden?: boolean | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const StyledSourceCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
4
3
  export declare const StyledSourceImage: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, {}>;
5
4
  export declare const PaymentSourcesContainer: import("@emotion/styled").StyledComponent<{
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const MultiRefundIcon: import("@emotion/styled").StyledComponent<{
4
3
  width?: string | number | undefined;
5
4
  height?: string | number | undefined;
@@ -8,6 +7,7 @@ export declare const MultiRefundIcon: import("@emotion/styled").StyledComponent<
8
7
  content?: string | undefined;
9
8
  translate?: "yes" | "no" | undefined;
10
9
  id?: string | undefined;
10
+ loading?: "eager" | "lazy" | undefined;
11
11
  defaultChecked?: boolean | undefined;
12
12
  defaultValue?: string | number | readonly string[] | undefined;
13
13
  suppressContentEditableWarning?: boolean | undefined;
@@ -270,7 +270,6 @@ export declare const MultiRefundIcon: import("@emotion/styled").StyledComponent<
270
270
  src?: string | undefined;
271
271
  alt?: string | undefined;
272
272
  decoding?: "auto" | "async" | "sync" | undefined;
273
- loading?: "eager" | "lazy" | undefined;
274
273
  fetchPriority?: "auto" | "high" | "low" | undefined;
275
274
  srcSet?: string | undefined;
276
275
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const UnCapturedContainer: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const GeographyBox: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
4
3
  variant?: "Global" | "Regional" | "Local" | undefined;
5
4
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  export declare const Button: import("@emotion/styled").StyledComponent<{
4
3
  hidden?: boolean | undefined;
5
4
  color?: string | undefined;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  type ExportButtonProps = {
4
3
  notificationState?: {
5
4
  success: boolean;
@@ -1,5 +1,4 @@
1
1
  /// <reference types="react" />
2
- /// <reference types="react" />
3
2
  interface TableWrapperProps {
4
3
  showNoDataView?: boolean;
5
4
  }
@@ -55,6 +54,7 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
55
54
  content?: string | undefined;
56
55
  translate?: "yes" | "no" | undefined;
57
56
  id?: string | undefined;
57
+ loading?: "eager" | "lazy" | undefined;
58
58
  defaultChecked?: boolean | undefined;
59
59
  defaultValue?: string | number | readonly string[] | undefined;
60
60
  suppressContentEditableWarning?: boolean | undefined;
@@ -317,7 +317,6 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
317
317
  src?: string | undefined;
318
318
  alt?: string | undefined;
319
319
  decoding?: "auto" | "async" | "sync" | undefined;
320
- loading?: "eager" | "lazy" | undefined;
321
320
  fetchPriority?: "auto" | "high" | "low" | undefined;
322
321
  srcSet?: string | undefined;
323
322
  } & import("framer-motion").MotionProps & import("react").RefAttributes<HTMLImageElement> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
@@ -487,4 +487,5 @@ export const MF_APPS_MAPPER = new Set([
487
487
  APP_CODES.account.code,
488
488
  APP_CODES.business.code,
489
489
  APP_CODES.payouts.code,
490
+ APP_CODES.reports.code,
490
491
  ]);
@@ -9,6 +9,7 @@ export declare enum AppEvent {
9
9
  OnChangeTimezone = "on-change-timezone",
10
10
  OnNavigate = "on-navigate",
11
11
  OnStartDrag = "on-start-drag",
12
+ OnChangeAppToolbar = "on-change-app-toolbar",
12
13
  OnModifyRemotePayload = "on-modify-remote-payload"
13
14
  }
14
15
  /**
@@ -37,6 +38,10 @@ export type AppEventMap = {
37
38
  [AppEvent.OnChangeTimezone]: (timezone: Timezone) => void;
38
39
  [AppEvent.OnNavigate]: NavigateFunction;
39
40
  [AppEvent.OnStartDrag]: (...args: Parameters<DragControls['start']>) => void;
41
+ [AppEvent.OnChangeAppToolbar]: (params: {
42
+ windowId: string;
43
+ toolbarIconUrl: string;
44
+ }) => void;
40
45
  [AppEvent.OnModifyRemotePayload]: (params: {
41
46
  windowId: string;
42
47
  payload: object;
@@ -9,6 +9,7 @@ export var AppEvent;
9
9
  AppEvent["OnChangeTimezone"] = "on-change-timezone";
10
10
  AppEvent["OnNavigate"] = "on-navigate";
11
11
  AppEvent["OnStartDrag"] = "on-start-drag";
12
+ AppEvent["OnChangeAppToolbar"] = "on-change-app-toolbar";
12
13
  // Remote Events
13
14
  AppEvent["OnModifyRemotePayload"] = "on-modify-remote-payload";
14
15
  })(AppEvent || (AppEvent = {}));
@@ -76,18 +76,11 @@ export type NavigateFunction = (params: {
76
76
  sandboxMode?: boolean;
77
77
  state?: any;
78
78
  }) => void;
79
- export interface PreviewStorageData {
79
+ export interface WindowPreview {
80
80
  id: string;
81
81
  img: string;
82
- timestamp: number;
83
- }
84
- export interface PreviewData {
85
- id: string;
86
- img: string;
87
- isGenerating: boolean;
88
- serviceCode?: string;
82
+ status: 'idle' | 'completed' | 'error' | 'loading';
89
83
  appCode: string;
90
- isMinimized: boolean;
91
84
  }
92
85
  export type MFWidgetBaseProps = {
93
86
  windowId: string;
@@ -8,8 +8,14 @@ export declare enum SEGMENT_CODE {
8
8
  BUSINESS = "BUSINESS",
9
9
  PLATFORM = "PLATFORM",
10
10
  DEVELOPMENT = "DEVELOPMENT",
11
+ PSP = "PSP",
11
12
  PAYMENT_TECHNOLOGY = "PAYMENT_TECHNOLOGY",
12
13
  PAYMENT_FACILITATOR = "PAYMENT_FACILITATOR",
13
14
  PAYMENT_ACQUIRER = "PAYMENT_ACQUIRER",
14
- PAYMENT_GATEWAY = "PAYMENT_GATEWAY"
15
+ PAYMENT_GATEWAY = "PAYMENT_GATEWAY",
16
+ BILLING_PLATFORM = "BILLING_PLATFORM",
17
+ COMMERCE_PLATFORM = "COMMERCE_PLATFORM",
18
+ DEVELOPMENT_HOUSE = "DEVELOPMENT_HOUSE",
19
+ PAYMENT_GATEWAY_PROVIDER = "PAYMENT_GATEWAY_PROVIDER",
20
+ RETAIL_PLATFORM = "RETAIL_PLATFORM"
15
21
  }
@@ -3,8 +3,14 @@ export var SEGMENT_CODE;
3
3
  SEGMENT_CODE["BUSINESS"] = "BUSINESS";
4
4
  SEGMENT_CODE["PLATFORM"] = "PLATFORM";
5
5
  SEGMENT_CODE["DEVELOPMENT"] = "DEVELOPMENT";
6
+ SEGMENT_CODE["PSP"] = "PSP";
6
7
  SEGMENT_CODE["PAYMENT_TECHNOLOGY"] = "PAYMENT_TECHNOLOGY";
7
8
  SEGMENT_CODE["PAYMENT_FACILITATOR"] = "PAYMENT_FACILITATOR";
8
9
  SEGMENT_CODE["PAYMENT_ACQUIRER"] = "PAYMENT_ACQUIRER";
9
10
  SEGMENT_CODE["PAYMENT_GATEWAY"] = "PAYMENT_GATEWAY";
11
+ SEGMENT_CODE["BILLING_PLATFORM"] = "BILLING_PLATFORM";
12
+ SEGMENT_CODE["COMMERCE_PLATFORM"] = "COMMERCE_PLATFORM";
13
+ SEGMENT_CODE["DEVELOPMENT_HOUSE"] = "DEVELOPMENT_HOUSE";
14
+ SEGMENT_CODE["PAYMENT_GATEWAY_PROVIDER"] = "PAYMENT_GATEWAY_PROVIDER";
15
+ SEGMENT_CODE["RETAIL_PLATFORM"] = "RETAIL_PLATFORM";
10
16
  })(SEGMENT_CODE || (SEGMENT_CODE = {}));
@@ -1,4 +1,4 @@
1
- import { AppDetails, PreviewData, Segment, TableMode, Timezone } from '../types/index.js';
1
+ import { AppDetails, WindowPreview, Segment, TableMode, Timezone } from '../types/index.js';
2
2
  import { SheetViewColumnsData } from './columnResizeStorage';
3
3
  export declare function setSecretKey(): void;
4
4
  export declare function getSecretKey(): string | null;
@@ -32,7 +32,7 @@ export declare const getGlobalTableModeStorage: () => TableMode;
32
32
  export declare const removeGlobalTableModeStorage: () => void;
33
33
  export declare const setSheetViewColumnsStorage: (data: SheetViewColumnsData) => void;
34
34
  export declare const getSheetViewColumnsStorage: () => SheetViewColumnsData;
35
- export declare const setPreviewStorage: (previews: PreviewData[]) => void;
36
- export declare const getPreviewStorage: () => Map<string, string>;
35
+ export declare const setPreviewStorage: (previews: WindowPreview[]) => void;
36
+ export declare const getPreviewStorage: () => WindowPreview[];
37
37
  export declare const removePreviewStorage: () => void;
38
38
  export declare const clearTapOsLocalStorage: () => void;
@@ -172,14 +172,7 @@ export const setSheetViewColumnsStorage = (data) => localStorage.setItem(SHEETVI
172
172
  export const getSheetViewColumnsStorage = () => JSON.parse(localStorage.getItem(SHEETVIEW_COLUMNS_KEY) || '{}');
173
173
  export const setPreviewStorage = (previews) => {
174
174
  try {
175
- const data = previews
176
- .filter((p) => p.img)
177
- .map((p) => ({
178
- id: p.id,
179
- img: p.img,
180
- timestamp: Date.now(),
181
- }));
182
- localStorage.setItem(PREVIEW_STORAGE_KEY, JSON.stringify(data));
175
+ localStorage.setItem(PREVIEW_STORAGE_KEY, JSON.stringify(previews));
183
176
  }
184
177
  catch (error) {
185
178
  console.warn('Failed to save preview cache:', error);
@@ -189,16 +182,12 @@ export const getPreviewStorage = () => {
189
182
  try {
190
183
  const cached = localStorage.getItem(PREVIEW_STORAGE_KEY);
191
184
  if (!cached)
192
- return new Map();
185
+ return [];
193
186
  const data = JSON.parse(cached);
194
- const previewMap = new Map();
195
- data.forEach((item) => {
196
- previewMap.set(item.id, item.img);
197
- });
198
- return previewMap;
187
+ return data;
199
188
  }
200
189
  catch (error) {
201
- return new Map();
190
+ return [];
202
191
  }
203
192
  };
204
193
  export const removePreviewStorage = () => {
@@ -16,7 +16,6 @@ export declare function transformPaymentMethodsData(data?: PaymentMethod[]): {
16
16
  options: {
17
17
  name: string | undefined;
18
18
  type: string;
19
- icon: string;
20
19
  }[];
21
20
  }[] | undefined;
22
21
  };
@@ -26,7 +25,6 @@ export declare function transformPaymentSchemesData(data?: Source[]): {
26
25
  options: {
27
26
  name: string | undefined;
28
27
  type: string;
29
- icon: string;
30
28
  }[];
31
29
  };
32
30
  export {};
@@ -1,20 +1,19 @@
1
1
  import capitalize from 'lodash/capitalize';
2
- import { lightUrl, PAYMENT_TYPES_ICONS } from '../constants/index.js';
2
+ import { PAYMENT_TYPES_ICONS } from '../constants/index.js';
3
3
  import { getNameText } from './language';
4
4
  export function transformPaymentMethodsData(data) {
5
5
  return {
6
6
  name: 'Payment Methods',
7
7
  type: 'payment_methods',
8
8
  options: data === null || data === void 0 ? void 0 : data.map((category) => {
9
- var _a;
9
+ var _a, _b;
10
10
  return {
11
11
  name: capitalize(getNameText(category === null || category === void 0 ? void 0 : category.name)),
12
12
  type: category === null || category === void 0 ? void 0 : category.code,
13
- icon: PAYMENT_TYPES_ICONS[category.code],
14
- options: (_a = category.payment_methods) === null || _a === void 0 ? void 0 : _a.map((method) => ({
13
+ icon: (_a = PAYMENT_TYPES_ICONS[category.code]) !== null && _a !== void 0 ? _a : PAYMENT_TYPES_ICONS.CARD,
14
+ options: (_b = category.payment_methods) === null || _b === void 0 ? void 0 : _b.map((method) => ({
15
15
  name: getNameText(method.name),
16
16
  type: method.code,
17
- icon: `${lightUrl}/payment-method/${method.code}.svg`,
18
17
  })),
19
18
  };
20
19
  }),
@@ -30,7 +29,6 @@ export function transformPaymentSchemesData(data = []) {
30
29
  return {
31
30
  name: getNameText(scheme === null || scheme === void 0 ? void 0 : scheme.name),
32
31
  type: scheme === null || scheme === void 0 ? void 0 : scheme.code,
33
- icon: `${lightUrl}/payment-method/${scheme.code}.svg`,
34
32
  };
35
33
  }),
36
34
  };
@@ -1,2 +1,66 @@
1
1
  import { Segment, SegmentData } from '../types/index.js';
2
2
  export declare const getSegmentData: (segments: Segment[], activeSegmentId: string, activeSegments: Segment[]) => SegmentData;
3
+ export declare const getBusinessSegmentConfig: (merchantsIds: string[]) => {
4
+ business?: undefined;
5
+ } | {
6
+ business: {
7
+ merchant: string[];
8
+ };
9
+ };
10
+ export declare const getNonBusinessSegmentConfig: ({ segmentCode, segmentId, segmentTypeCode, }: {
11
+ segmentCode: string;
12
+ segmentTypeCode: string;
13
+ segmentId: string;
14
+ }) => {
15
+ payment_provider: {
16
+ technology: {
17
+ orchestrator: string[];
18
+ gateway?: undefined;
19
+ };
20
+ institution?: undefined;
21
+ };
22
+ platform?: undefined;
23
+ development_agency?: undefined;
24
+ } | {
25
+ payment_provider: {
26
+ technology: {
27
+ gateway: string[];
28
+ orchestrator?: undefined;
29
+ };
30
+ institution?: undefined;
31
+ };
32
+ platform?: undefined;
33
+ development_agency?: undefined;
34
+ } | {
35
+ payment_provider: {
36
+ institution: {
37
+ facilitator: string[];
38
+ acquirer?: undefined;
39
+ };
40
+ technology?: undefined;
41
+ };
42
+ platform?: undefined;
43
+ development_agency?: undefined;
44
+ } | {
45
+ payment_provider: {
46
+ institution: {
47
+ acquirer: string[];
48
+ facilitator?: undefined;
49
+ };
50
+ technology?: undefined;
51
+ };
52
+ platform?: undefined;
53
+ development_agency?: undefined;
54
+ } | {
55
+ platform: string[];
56
+ payment_provider?: undefined;
57
+ development_agency?: undefined;
58
+ } | {
59
+ development_agency: string[];
60
+ payment_provider?: undefined;
61
+ platform?: undefined;
62
+ } | {
63
+ payment_provider?: undefined;
64
+ platform?: undefined;
65
+ development_agency?: undefined;
66
+ };
@@ -1,7 +1,7 @@
1
+ import { SEGMENT_CODE } from '../types/index.js';
1
2
  import { getDefaultEntityCountry } from './entity';
2
3
  export const getSegmentData = (segments, activeSegmentId, activeSegments) => {
3
4
  var _a, _b, _c;
4
- // debugger
5
5
  const newSegment = (_a = segments.find((segment) => segment.id === activeSegmentId)) !== null && _a !== void 0 ? _a : {};
6
6
  const activeSegment = (_b = activeSegments.find((segment) => segment.id === activeSegmentId)) !== null && _b !== void 0 ? _b : {};
7
7
  const defaultCountry = activeSegment.countries.length === 1
@@ -11,3 +11,54 @@ export const getSegmentData = (segments, activeSegmentId, activeSegments) => {
11
11
  return Object.assign(Object.assign({}, newSegment), { defaultCountry,
12
12
  defaultEntity });
13
13
  };
14
+ export const getBusinessSegmentConfig = (merchantsIds) => {
15
+ if (!merchantsIds || !(merchantsIds === null || merchantsIds === void 0 ? void 0 : merchantsIds.length))
16
+ return {};
17
+ return { business: { merchant: merchantsIds } };
18
+ };
19
+ export const getNonBusinessSegmentConfig = ({ segmentCode, segmentId, segmentTypeCode, }) => {
20
+ const code = SEGMENT_CODE.PSP === segmentTypeCode ? segmentCode : segmentTypeCode;
21
+ if (code === SEGMENT_CODE.PAYMENT_TECHNOLOGY) {
22
+ return {
23
+ payment_provider: {
24
+ technology: {
25
+ orchestrator: [segmentId],
26
+ },
27
+ },
28
+ };
29
+ }
30
+ if (code === SEGMENT_CODE.PAYMENT_GATEWAY || code === SEGMENT_CODE.PAYMENT_GATEWAY_PROVIDER) {
31
+ return {
32
+ payment_provider: {
33
+ technology: {
34
+ gateway: [segmentId],
35
+ },
36
+ },
37
+ };
38
+ }
39
+ if (code === SEGMENT_CODE.PAYMENT_FACILITATOR) {
40
+ return {
41
+ payment_provider: {
42
+ institution: {
43
+ facilitator: [segmentId],
44
+ },
45
+ },
46
+ };
47
+ }
48
+ if (code === SEGMENT_CODE.PAYMENT_ACQUIRER) {
49
+ return {
50
+ payment_provider: {
51
+ institution: {
52
+ acquirer: [segmentId],
53
+ },
54
+ },
55
+ };
56
+ }
57
+ if (code === SEGMENT_CODE.PLATFORM) {
58
+ return { platform: [segmentId] };
59
+ }
60
+ if (code === SEGMENT_CODE.DEVELOPMENT) {
61
+ return { development_agency: [segmentId] };
62
+ }
63
+ return {};
64
+ };
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.328",
5
- "testVersion": 0,
4
+ "version": "0.1.330-test.1",
5
+ "testVersion": 1,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",
@@ -164,4 +164,4 @@
164
164
  "publishConfig": {
165
165
  "registry": "https://registry.npmjs.org/"
166
166
  }
167
- }
167
+ }