@hiver/connector-agent 1.2.0 → 1.2.1-beta.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 (27) hide show
  1. package/components/ui/modal/index.d.ts +10 -0
  2. package/components/ui/modal/index.d.ts.map +1 -0
  3. package/constants/global-constants.d.ts +4 -1
  4. package/constants/global-constants.d.ts.map +1 -1
  5. package/context/index.d.ts +2 -2
  6. package/context/index.d.ts.map +1 -1
  7. package/context/main-app-provider/index.d.ts +2 -2
  8. package/context/main-app-provider/index.d.ts.map +1 -1
  9. package/features/connector-cards/api/index.d.ts +2 -2
  10. package/features/connector-cards/api/index.d.ts.map +1 -1
  11. package/features/connector-cards/components/card-list/Card.d.ts.map +1 -1
  12. package/features/connector-cards/components/card-list/CardContent.d.ts +3 -2
  13. package/features/connector-cards/components/card-list/CardContent.d.ts.map +1 -1
  14. package/features/connector-cards/components/card-list/index.d.ts.map +1 -1
  15. package/features/connector-cards/components/card-list/list-item-modal.d.ts +8 -0
  16. package/features/connector-cards/components/card-list/list-item-modal.d.ts.map +1 -0
  17. package/features/connector-cards/components/card-list/style.d.ts +12 -2
  18. package/features/connector-cards/components/card-list/style.d.ts.map +1 -1
  19. package/features/connector-cards/constants/card-content.d.ts +3 -0
  20. package/features/connector-cards/constants/card-content.d.ts.map +1 -0
  21. package/features/connector-cards/store/slice.d.ts +1 -1
  22. package/features/connector-cards/store/slice.d.ts.map +1 -1
  23. package/index.es.js +8111 -7333
  24. package/index.umd.js +173 -161
  25. package/package.json +1 -1
  26. package/types/cards.d.ts +1 -0
  27. package/types/cards.d.ts.map +1 -1
@@ -0,0 +1,10 @@
1
+ import { default as React, ReactNode } from 'react';
2
+ interface IModalProps {
3
+ shown: boolean;
4
+ setShown: (value: boolean) => void;
5
+ children: ReactNode;
6
+ showCloseButton?: boolean;
7
+ }
8
+ export declare const Modal: React.FC<IModalProps>;
9
+ export {};
10
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ui/modal/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIzC,UAAU,WAAW;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAC;IACnC,QAAQ,EAAE,SAAS,CAAC;IACpB,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED,eAAO,MAAM,KAAK,EAAE,KAAK,CAAC,EAAE,CAAC,WAAW,CA4BvC,CAAC"}
@@ -1,7 +1,10 @@
1
1
  import { ITrackingData } from '../context';
2
2
  export interface IExtraParams {
3
3
  isAdmin?: boolean;
4
- currentSmId?: string;
4
+ currentSmIds?: string[];
5
5
  sendTrackingEvent?: (event: string, data?: ITrackingData) => void;
6
6
  }
7
+ export declare const HTTP_STATUS_CODES: {
8
+ NOT_FOUND: number;
9
+ };
7
10
  //# sourceMappingURL=global-constants.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../src/constants/global-constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CACnE"}
1
+ {"version":3,"file":"global-constants.d.ts","sourceRoot":"","sources":["../../src/constants/global-constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,MAAM,WAAW,YAAY;IAC3B,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CACnE;AAED,eAAO,MAAM,iBAAiB;;CAE7B,CAAC"}
@@ -18,13 +18,13 @@ export interface ITrackingData {
18
18
  export interface IMainAppContext {
19
19
  email: string | null;
20
20
  baseUrls: IBaseUrls;
21
- currentSmId: string;
21
+ currentSmIds: string[];
22
22
  sendTrackingEvent: (event: string, data?: ITrackingData) => void;
23
23
  }
24
24
  export declare const defaultMainAppvalues: {
25
25
  email: string;
26
26
  baseUrls: {};
27
- currentSmId: string;
27
+ currentSmIds: never[];
28
28
  sendTrackingEvent: () => void;
29
29
  };
30
30
  export declare const MainAppContext: import('react').Context<IMainAppContext>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/context/index.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,SAAS;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,aAAa;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;CAClC;AAED,MAAM,WAAW,aAAa;IAE5B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,EAAE,SAAS,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CAClE;AAED,eAAO,MAAM,oBAAoB;;;;;CAKhC,CAAC;AAEF,eAAO,MAAM,cAAc,0CAAuD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/context/index.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,SAAS;IACxB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,aAAa;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;CAClC;AAED,MAAM,WAAW,aAAa;IAE5B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,EAAE,SAAS,CAAC;IACpB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CAClE;AAED,eAAO,MAAM,oBAAoB;;;;;CAKhC,CAAC;AAEF,eAAO,MAAM,cAAc,0CAAuD,CAAC"}
@@ -5,8 +5,8 @@ interface IProps {
5
5
  sendTrackingEvent?: (event: string, data?: ITrackingData | undefined) => void;
6
6
  senderEmail?: string | null;
7
7
  baseUrls?: IBaseUrls;
8
- currentSmId?: string;
8
+ currentSmIds?: string[];
9
9
  }
10
- declare const MainAppProvider: ({ children, sendTrackingEvent, senderEmail, baseUrls, currentSmId }: IProps) => import("react/jsx-runtime").JSX.Element;
10
+ declare const MainAppProvider: ({ children, sendTrackingEvent, senderEmail, baseUrls, currentSmIds }: IProps) => import("react/jsx-runtime").JSX.Element;
11
11
  export default MainAppProvider;
12
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/context/main-app-provider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAW,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAkB,MAAM,aAAa,CAAC;AAEvE,UAAU,MAAM;IACd,QAAQ,EAAE,SAAS,CAAC;IACpB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,GAAG,SAAS,KAAK,IAAI,CAAC;IAC9E,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,QAAA,MAAM,eAAe,wEAMlB,MAAM,4CAYR,CAAC;AAEF,eAAe,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/context/main-app-provider/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAW,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,SAAS,EAAE,aAAa,EAAkB,MAAM,aAAa,CAAC;AAEvE,UAAU,MAAM;IACd,QAAQ,EAAE,SAAS,CAAC;IACpB,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,GAAG,SAAS,KAAK,IAAI,CAAC;IAC9E,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED,QAAA,MAAM,eAAe,yEAMlB,MAAM,4CAYR,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -1,5 +1,5 @@
1
- export declare const getConnectorData: ({ inboxId, channelType }: {
2
- inboxId: string;
1
+ export declare const getConnectorData: ({ inboxIds, channelType }: {
2
+ inboxIds: string[];
3
3
  channelType?: string;
4
4
  }) => Promise<import('axios').AxiosResponse<any, any> | undefined>;
5
5
  export declare const getSpecificConnectorData: (id: string, email: string) => Promise<import('axios').AxiosResponse<any, any> | undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/api/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,gBAAgB,6BAAwC;IAAE,OAAO,EAAE,MAAM,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,iEAS7G,CAAC;AAEF,eAAO,MAAM,wBAAwB,OAAQ,MAAM,SAAS,MAAM,iEAKjE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/api/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,gBAAgB,8BAAyC;IAAE,QAAQ,EAAE,MAAM,EAAE,CAAC;IAAC,WAAW,CAAC,EAAE,MAAM,CAAA;CAAE,iEASjH,CAAC;AAEF,eAAO,MAAM,wBAAwB,OAAQ,MAAM,SAAS,MAAM,iEAKjE,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/Card.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAerD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,UAAU,MAAM;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;CACV;AAED,eAAO,MAAM,IAAI,UAAW,MAAM,4CA4FjC,CAAC"}
1
+ {"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/Card.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAerD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAQxC,UAAU,MAAM;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,KAAK,EAAE,MAAM,CAAC;IACd,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;CACV;AAED,eAAO,MAAM,IAAI,UAAW,MAAM,4CA6FjC,CAAC"}
@@ -1,7 +1,8 @@
1
1
  import { ISpecificCard } from '../../../../types/cards';
2
2
  import { ApiStatus } from '../../../../types/api';
3
- interface Iprops {
3
+ interface IProps {
4
4
  id: string;
5
+ cardTitle: string;
5
6
  specificCardData: {
6
7
  [key: string]: ISpecificCard;
7
8
  } | null;
@@ -10,6 +11,6 @@ interface Iprops {
10
11
  } | null;
11
12
  isOpen: boolean;
12
13
  }
13
- export declare const CardContent: (props: Iprops) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const CardContent: (props: IProps) => import("react/jsx-runtime").JSX.Element;
14
15
  export {};
15
16
  //# sourceMappingURL=CardContent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"CardContent.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/CardContent.tsx"],"names":[],"mappings":"AASA,OAAO,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAKxC,UAAU,MAAM;IACd,EAAE,EAAE,MAAM,CAAC;IACX,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;IACT,MAAM,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,WAAW,UAAW,MAAM,4CAkFxC,CAAC"}
1
+ {"version":3,"file":"CardContent.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/CardContent.tsx"],"names":[],"mappings":"AAYA,OAAO,EAA6B,aAAa,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAUxC,UAAU,MAAM;IACd,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAC;KAC9B,GAAG,IAAI,CAAC;IACT,0BAA0B,EAAE;QAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAC;KAC1B,GAAG,IAAI,CAAC;IACT,MAAM,EAAE,OAAO,CAAC;CACjB;AAID,eAAO,MAAM,WAAW,UAAW,MAAM,4CAgJxC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAyB,MAAM,OAAO,CAAC;AAyBlD,UAAU,SAAS;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAiDlC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAyB,MAAM,OAAO,CAAC;AAyBlD,UAAU,SAAS;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAmDlC,CAAC"}
@@ -0,0 +1,8 @@
1
+ import { IListItemArr } from '../../../../types/cards';
2
+ interface IProps {
3
+ data: IListItemArr[][];
4
+ title: string;
5
+ }
6
+ export declare const ListItemModal: ({ data, title }: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
8
+ //# sourceMappingURL=list-item-modal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-item-modal.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/list-item-modal.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAC;AAG7C,UAAU,MAAM;IACd,IAAI,EAAE,YAAY,EAAE,EAAE,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACf;AAUD,eAAO,MAAM,aAAa,oBAAqB,MAAM,4CAgFpD,CAAC"}
@@ -1,4 +1,4 @@
1
- import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, SvgIconProps, TypographyProps } from '@hiver/hiver-ui-kit';
1
+ import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, SvgIconProps, TableCellProps, TableContainerProps, TableHeadProps, TypographyProps } from '@hiver/hiver-ui-kit';
2
2
  import { StyledComponent } from '@emotion/styled';
3
3
  export declare const ConnectorsIcon: StyledComponent<SvgIconProps>;
4
4
  export declare const ConnectorsTitle: StyledComponent<TypographyProps>;
@@ -7,7 +7,9 @@ export declare const CardWrapper: StyledComponent<BoxProps>;
7
7
  export declare const CardHeading: StyledComponent<StackProps>;
8
8
  export declare const FlexBox: StyledComponent<StackProps>;
9
9
  export declare const HeadingText: StyledComponent<TypographyProps>;
10
- export declare const CardContentWrapper: StyledComponent<BoxProps>;
10
+ export declare const CardContentWrapper: StyledComponent<BoxProps & {
11
+ height?: number;
12
+ }>;
11
13
  export declare const LabelText: StyledComponent<TypographyProps>;
12
14
  export declare const TryAgaintext: StyledComponent<TypographyProps>;
13
15
  export declare const ValueText: StyledComponent<TypographyProps>;
@@ -16,4 +18,12 @@ export declare const CustomSkeleton: StyledComponent<SkeletonProps & {
16
18
  margin?: string;
17
19
  }>;
18
20
  export declare const IconWrapper: StyledComponent<IconButtonProps>;
21
+ export declare const ModalTableContainer: StyledComponent<TableContainerProps>;
22
+ export declare const ModalHeader: StyledComponent<TableHeadProps>;
23
+ export declare const TableHeaderRowCell: StyledComponent<TableCellProps>;
24
+ export declare const TableBodyRowCell: StyledComponent<TableCellProps>;
25
+ export declare const RotatingChevron: StyledComponent<React.ImgHTMLAttributes<HTMLImageElement> & {
26
+ transformAngle?: number;
27
+ }>;
28
+ export declare const ShowExpandMore: StyledComponent<TypographyProps>;
19
29
  //# sourceMappingURL=style.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/style.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,QAAQ,EACR,SAAS,EACT,eAAe,EACf,aAAa,EACb,UAAU,EACV,YAAY,EACZ,eAAe,EAChB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,YAAY,CAIxD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,eAAe,CAO5D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,SAAS,CAUxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAKjD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,UAAU,CAYnD,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,eAAe,CAAC,UAAU,CAG/C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAMxD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,QAAQ,CAgCxD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,eAAe,CAGzD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,eAAe,CAAC,QAAQ,CAuC3C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,aAAa,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAG/E,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAyBxD,CAAC"}
1
+ {"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/style.ts"],"names":[],"mappings":"AAcA,OAAO,KAAK,EACV,QAAQ,EACR,SAAS,EACT,eAAe,EACf,aAAa,EACb,UAAU,EACV,YAAY,EACZ,cAAc,EACd,mBAAmB,EACnB,cAAc,EACd,eAAe,EAChB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,YAAY,CAIxD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,eAAe,CAO5D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,SAAS,CAUxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAKjD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,UAAU,CAYnD,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,eAAe,CAAC,UAAU,CAG/C,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAMxD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,QAAQ,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAW9E,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,eAAe,CAGzD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAEtD,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,eAAe,CAAC,QAAQ,CAuC3C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,aAAa,GAAG;IAAE,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,CAG/E,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,eAAe,CAyBxD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,eAAe,CAAC,mBAAmB,CAGpE,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,cAAc,CAKvD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,cAAc,CAQ9D,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,eAAe,CAAC,cAAc,CAQ5D,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,GAAG;IAAE,cAAc,CAAC,EAAE,MAAM,CAAA;CAAE,CAIlH,CAAC;AAEJ,eAAO,MAAM,cAAc,EAAE,eAAe,CAAC,eAAe,CAQ3D,CAAC"}
@@ -0,0 +1,3 @@
1
+ export declare const SHOW_MORE = "Show more";
2
+ export declare const SHOW_LESS = "Show less";
3
+ //# sourceMappingURL=card-content.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-content.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/constants/card-content.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,SAAS,cAAc,CAAC;AACrC,eAAO,MAAM,SAAS,cAAc,CAAC"}
@@ -10,7 +10,7 @@ export declare const connectorCardLibrary: import('@reduxjs/toolkit').Slice<impo
10
10
  declare const fetchAllCardsData: import('@reduxjs/toolkit').AsyncThunk<{
11
11
  cards: ICard[];
12
12
  }, {
13
- inboxId: string;
13
+ inboxIds: string[];
14
14
  channelType?: string;
15
15
  }, {
16
16
  state?: unknown;
@@ -1 +1 @@
1
- {"version":3,"file":"slice.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/slice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAIrD,eAAO,MAAM,oBAAoB;;;;;;uKAsD/B,CAAC;AAIH,QAAA,MAAM,iBAAiB;;;aAEuB,MAAM;kBAAgB,MAAM;;;;;;;;;;EAUzE,CAAC;AAEF,QAAA,MAAM,qBAAqB;;;;;QAEc,MAAM;WAAS,MAAM;gBAAc,OAAO;;;;;;;;;;EAuBlF,CAAC;;AAEF,wBAA4C;AAC5C,eAAO,MAAM,OAAO;;;;;;0BAA+B,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,CAAC"}
1
+ {"version":3,"file":"slice.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/slice.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,4CAA4C,CAAC;AAC7E,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAIrD,eAAO,MAAM,oBAAoB;;;;;;uKAsD/B,CAAC;AAIH,QAAA,MAAM,iBAAiB;;;cAEyB,MAAM,EAAE;kBAAgB,MAAM;;;;;;;;;;EAU7E,CAAC;AAEF,QAAA,MAAM,qBAAqB;;;;;QAEc,MAAM;WAAS,MAAM;gBAAc,OAAO;;;;;;;;;;EAuBlF,CAAC;;AAEF,wBAA4C;AAC5C,eAAO,MAAM,OAAO;;;;;;0BAA+B,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,CAAC"}