@hiver/connector-agent 0.0.3-beta.0 → 1.0.0

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 (51) hide show
  1. package/app/index.d.ts +2 -0
  2. package/app/index.d.ts.map +1 -1
  3. package/app/provider.d.ts +6 -1
  4. package/app/provider.d.ts.map +1 -1
  5. package/app/style.d.ts +5 -0
  6. package/app/style.d.ts.map +1 -0
  7. package/constants/card.d.ts +3 -0
  8. package/constants/card.d.ts.map +1 -1
  9. package/constants/global-constants.d.ts +6 -0
  10. package/constants/global-constants.d.ts.map +1 -0
  11. package/constants/noConnector.d.ts +5 -0
  12. package/constants/noConnector.d.ts.map +1 -1
  13. package/constants/tracking-events.d.ts +6 -0
  14. package/constants/tracking-events.d.ts.map +1 -0
  15. package/context/index.d.ts +8 -8
  16. package/context/index.d.ts.map +1 -1
  17. package/context/main-app-provider/index.d.ts +5 -1
  18. package/context/main-app-provider/index.d.ts.map +1 -1
  19. package/features/connector-cards/components/card-list/Card.d.ts +1 -3
  20. package/features/connector-cards/components/card-list/Card.d.ts.map +1 -1
  21. package/features/connector-cards/components/card-list/CardContent.d.ts.map +1 -1
  22. package/features/connector-cards/components/card-list/index.d.ts +1 -3
  23. package/features/connector-cards/components/card-list/index.d.ts.map +1 -1
  24. package/features/connector-cards/components/card-list/loading-skeleton.d.ts +3 -0
  25. package/features/connector-cards/components/card-list/loading-skeleton.d.ts.map +1 -0
  26. package/features/connector-cards/components/card-list/style.d.ts +3 -1
  27. package/features/connector-cards/components/card-list/style.d.ts.map +1 -1
  28. package/features/connector-cards/components/no-connectors/index.d.ts +4 -1
  29. package/features/connector-cards/components/no-connectors/index.d.ts.map +1 -1
  30. package/features/connector-cards/components/no-connectors/style.d.ts +5 -2
  31. package/features/connector-cards/components/no-connectors/style.d.ts.map +1 -1
  32. package/features/connector-cards/constants/api.d.ts.map +1 -1
  33. package/features/connector-cards/store/initial-state.d.ts +1 -0
  34. package/features/connector-cards/store/initial-state.d.ts.map +1 -1
  35. package/features/connector-cards/store/selectors.d.ts +1 -0
  36. package/features/connector-cards/store/selectors.d.ts.map +1 -1
  37. package/features/connector-cards/store/slice.d.ts +22 -4
  38. package/features/connector-cards/store/slice.d.ts.map +1 -1
  39. package/features/toast-message/constants/toast.d.ts +2 -0
  40. package/features/toast-message/constants/toast.d.ts.map +1 -1
  41. package/features/toast-message/showMessage.d.ts.map +1 -1
  42. package/index.es.js +13243 -10268
  43. package/index.umd.js +1046 -123
  44. package/main.d.ts +1 -0
  45. package/main.d.ts.map +1 -1
  46. package/package.json +1 -1
  47. package/testing/mocks/handlers/fetch-cards.d.ts.map +1 -1
  48. package/types/cards.d.ts +2 -0
  49. package/types/cards.d.ts.map +1 -1
  50. package/features/connector-cards/utils/type-guards.d.ts +0 -6
  51. package/features/connector-cards/utils/type-guards.d.ts.map +0 -1
package/app/index.d.ts CHANGED
@@ -1,8 +1,10 @@
1
1
  import { FC } from 'react';
2
+ import { IExtraParams } from '../constants/global-constants';
2
3
  import { IBaseUrls } from '../context';
3
4
  interface IApp {
4
5
  senderEmail?: string;
5
6
  baseUrls?: IBaseUrls;
7
+ extraParams?: IExtraParams;
6
8
  }
7
9
  export declare const App: FC<IApp>;
8
10
  export {};
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/app/index.tsx"],"names":[],"mappings":"AAGA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,UAAU,IAAI;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,eAAO,MAAM,GAAG,EAAE,EAAE,CAAC,IAAI,CAgBxB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/app/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAM3B,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAE5D,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAItC,UAAU,IAAI;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAC;IACrB,WAAW,CAAC,EAAE,YAAY,CAAC;CAC5B;AAED,eAAO,MAAM,GAAG,EAAE,EAAE,CAAC,IAAI,CAuBxB,CAAC"}
package/app/provider.d.ts CHANGED
@@ -1,6 +1,11 @@
1
+ import { IExtraParams } from '../constants/global-constants';
2
+ import { IBaseUrls } from '../context';
1
3
  type AppProviderProps = {
2
4
  children: React.ReactNode;
5
+ extraParams?: IExtraParams;
6
+ senderEmail?: string;
7
+ baseUrls?: IBaseUrls;
3
8
  };
4
- export declare const AppProvider: ({ children }: AppProviderProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const AppProvider: ({ children, extraParams, senderEmail, baseUrls }: AppProviderProps) => import("react/jsx-runtime").JSX.Element;
5
10
  export {};
6
11
  //# sourceMappingURL=provider.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/app/provider.tsx"],"names":[],"mappings":"AAOA,KAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,eAAO,MAAM,WAAW,iBAAkB,gBAAgB,4CAUzD,CAAC"}
1
+ {"version":3,"file":"provider.d.ts","sourceRoot":"","sources":["../../src/app/provider.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAC5D,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,KAAK,gBAAgB,GAAG;IACtB,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,WAAW,CAAC,EAAE,YAAY,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAEF,eAAO,MAAM,WAAW,qDAAsD,gBAAgB,4CAa7F,CAAC"}
package/app/style.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import { StyledComponent } from '@emotion/styled';
2
+ import { BoxProps } from '@hiver/hiver-ui-kit';
3
+ export declare const AppNormaliseWrapper: StyledComponent<BoxProps>;
4
+ export declare const ToastifyWrapper: StyledComponent<BoxProps>;
5
+ //# sourceMappingURL=style.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../src/app/style.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,qBAAqB,CAAC;AAEpD,eAAO,MAAM,mBAAmB,EAAE,eAAe,CAAC,QAAQ,CA2FzD,CAAC;AA+tBF,eAAO,MAAM,eAAe,EAAE,eAAe,CAAC,QAAQ,CAiDrD,CAAC"}
@@ -2,4 +2,7 @@ export declare const OPEN = "open";
2
2
  export declare const CLOSED = "closed";
3
3
  export declare const TRY_AGAIN = "Please refresh and try again";
4
4
  export declare const NONE = "-";
5
+ export declare const REFRESH = "Refresh";
6
+ export declare const MINIMIZE = "Minimize";
7
+ export declare const EXPAND = "Expand";
5
8
  //# sourceMappingURL=card.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../src/constants/card.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,SAAS,CAAC;AAC3B,eAAO,MAAM,MAAM,WAAW,CAAC;AAC/B,eAAO,MAAM,SAAS,iCAAiC,CAAC;AACxD,eAAO,MAAM,IAAI,MAAM,CAAC"}
1
+ {"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../src/constants/card.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,SAAS,CAAC;AAC3B,eAAO,MAAM,MAAM,WAAW,CAAC;AAC/B,eAAO,MAAM,SAAS,iCAAiC,CAAC;AACxD,eAAO,MAAM,IAAI,MAAM,CAAC;AACxB,eAAO,MAAM,OAAO,YAAY,CAAC;AACjC,eAAO,MAAM,QAAQ,aAAa,CAAC;AACnC,eAAO,MAAM,MAAM,WAAW,CAAC"}
@@ -0,0 +1,6 @@
1
+ import { ITrackingData } from '../context';
2
+ export interface IExtraParams {
3
+ isAdmin?: boolean;
4
+ sendTrackingEvent?: (event: string, data?: ITrackingData) => void;
5
+ }
6
+ //# sourceMappingURL=global-constants.d.ts.map
@@ -0,0 +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,iBAAiB,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CACnE"}
@@ -2,4 +2,9 @@ export declare const STREAMLINE_TEXT = "Streamline your workflow with Custom Con
2
2
  export declare const PLUGIN_TEXT = "Plugin image";
3
3
  export declare const AUTHENTICATION_TEXT = "Authenticate and enable powerful integrations directly from the Admin panel to enhance your team's productivity.";
4
4
  export declare const ENABLE_CONNECTORS = "Enable connectors";
5
+ export declare const IFRAME_URL = "app/custom-connectors";
6
+ export declare const NO_ADMIN_ENHANCE_TEXT = "Enhance your team\u2019s productivity by leveraging connectors to authenticate and enable powerful integrations";
7
+ export declare const LEARN_MORE = "Learn more";
8
+ export declare const LEARN_MORE_URL = "https://help.hiverhq.com/";
9
+ export declare const ASK_ADMIN = "Ask admin to enable Connectors";
5
10
  //# sourceMappingURL=noConnector.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"noConnector.d.ts","sourceRoot":"","sources":["../../src/constants/noConnector.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,oDAAoD,CAAC;AACjF,eAAO,MAAM,WAAW,iBAAiB,CAAC;AAC1C,eAAO,MAAM,mBAAmB,qHAAqH,CAAC;AACtJ,eAAO,MAAM,iBAAiB,sBAAsB,CAAC"}
1
+ {"version":3,"file":"noConnector.d.ts","sourceRoot":"","sources":["../../src/constants/noConnector.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,oDAAoD,CAAC;AACjF,eAAO,MAAM,WAAW,iBAAiB,CAAC;AAC1C,eAAO,MAAM,mBAAmB,qHAAqH,CAAC;AACtJ,eAAO,MAAM,iBAAiB,sBAAsB,CAAC;AACrD,eAAO,MAAM,UAAU,0BAA0B,CAAC;AAClD,eAAO,MAAM,qBAAqB,oHAC4E,CAAC;AAC/G,eAAO,MAAM,UAAU,eAAe,CAAC;AACvC,eAAO,MAAM,cAAc,8BAA8B,CAAC;AAC1D,eAAO,MAAM,SAAS,mCAAmC,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare const ENABLE_CONNECTORS_CLICKED = "enable_connectors_clicked";
2
+ export declare const LEARN_MORE_CLICKED = "learn_more_clicked";
3
+ export declare const CONNECTOR_CARD_EXPAND_CLICKED = "connector_card_expand_clicked";
4
+ export declare const CONNECTOR_CARD_COLLAPSED_CLICKED = "connector_card_collapsed_clicked";
5
+ export declare const CONNECTOR_CARD_REFRESH_CLICKED = "connector_card_refresh_clicked";
6
+ //# sourceMappingURL=tracking-events.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tracking-events.d.ts","sourceRoot":"","sources":["../../src/constants/tracking-events.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,yBAAyB,8BAA8B,CAAC;AACrE,eAAO,MAAM,kBAAkB,uBAAuB,CAAC;AACvD,eAAO,MAAM,6BAA6B,kCAAkC,CAAC;AAC7E,eAAO,MAAM,gCAAgC,qCAAqC,CAAC;AACnF,eAAO,MAAM,8BAA8B,mCAAmC,CAAC"}
@@ -6,24 +6,24 @@ export interface IConnectorType {
6
6
  export interface IBaseUrls {
7
7
  [key: string]: string;
8
8
  }
9
+ export interface IAvailableFtr {
10
+ [key: string]: boolean;
11
+ }
9
12
  export interface ICurrentOption {
10
13
  [key: string]: 'open' | 'closed';
11
14
  }
15
+ export interface ITrackingData {
16
+ [key: string]: any;
17
+ }
12
18
  export interface IMainAppContext {
13
- currentOpenState: ICurrentOption | null;
14
- setCurrentOpenState: (value: ICurrentOption | null) => void;
15
19
  email: string | null;
16
- setEmail: (value: string | null) => void;
17
20
  baseUrls: IBaseUrls;
18
- setBaseUrls: (value: IBaseUrls) => void;
21
+ sendTrackingEvent: (event: string, data?: ITrackingData) => void;
19
22
  }
20
23
  export declare const defaultMainAppvalues: {
21
- currentOpenState: null;
22
- setCurrentOpenState: () => void;
23
24
  email: string;
24
- setEmail: () => void;
25
25
  baseUrls: {};
26
- setBaseUrls: () => void;
26
+ sendTrackingEvent: () => void;
27
27
  };
28
28
  export declare const MainAppContext: import('react').Context<IMainAppContext>;
29
29
  //# sourceMappingURL=index.d.ts.map
@@ -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,cAAc;IAC7B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;CAClC;AAED,MAAM,WAAW,eAAe;IAC9B,gBAAgB,EAAE,cAAc,GAAG,IAAI,CAAC;IACxC,mBAAmB,EAAE,CAAC,KAAK,EAAE,cAAc,GAAG,IAAI,KAAK,IAAI,CAAC;IAC5D,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,KAAK,IAAI,CAAC;IACzC,QAAQ,EAAE,SAAS,CAAC;IACpB,WAAW,EAAE,CAAC,KAAK,EAAE,SAAS,KAAK,IAAI,CAAC;CACzC;AAED,eAAO,MAAM,oBAAoB;;;;;;;CAOhC,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,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,aAAa,KAAK,IAAI,CAAC;CAClE;AAED,eAAO,MAAM,oBAAoB;;;;CAIhC,CAAC;AAEF,eAAO,MAAM,cAAc,0CAAuD,CAAC"}
@@ -1,7 +1,11 @@
1
1
  import { ReactNode } from 'react';
2
+ import { IBaseUrls, ITrackingData } from '../index.ts';
2
3
  interface IProps {
3
4
  children: ReactNode;
5
+ sendTrackingEvent?: (event: string, data?: ITrackingData | undefined) => void;
6
+ senderEmail?: string | null;
7
+ baseUrls?: IBaseUrls;
4
8
  }
5
- declare const MainAppProvider: ({ children }: IProps) => import("react/jsx-runtime").JSX.Element;
9
+ declare const MainAppProvider: ({ children, sendTrackingEvent, senderEmail, baseUrls }: IProps) => import("react/jsx-runtime").JSX.Element;
6
10
  export default MainAppProvider;
7
11
  //# 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,EAAY,SAAS,EAAE,MAAM,OAAO,CAAC;AAG5C,UAAU,MAAM;IACd,QAAQ,EAAE,SAAS,CAAC;CACrB;AAED,QAAA,MAAM,eAAe,iBAAkB,MAAM,4CAkB5C,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;CACtB;AAED,QAAA,MAAM,eAAe,2DAAsE,MAAM,4CAWhG,CAAC;AAEF,eAAe,eAAe,CAAC"}
@@ -1,10 +1,8 @@
1
- import { ICurrentOption } from '../../../../context';
2
1
  import { ICard, ISpecificCard } from '../../../../types/cards';
3
2
  import { ApiStatus } from '../../../../types/api';
4
3
  interface Iprops {
5
4
  card: ICard;
6
- currentOpenState: ICurrentOption | null;
7
- setCurrentOpenState: (str: ICurrentOption) => void;
5
+ defaultOpenState?: boolean;
8
6
  specificCardData: {
9
7
  [key: string]: ISpecificCard;
10
8
  } | null;
@@ -1 +1 @@
1
- {"version":3,"file":"Card.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/Card.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAG3C,OAAO,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAerD,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,UAAU,MAAM;IACd,IAAI,EAAE,KAAK,CAAC;IACZ,gBAAgB,EAAE,cAAc,GAAG,IAAI,CAAC;IACxC,mBAAmB,EAAE,CAAC,GAAG,EAAE,cAAc,KAAK,IAAI,CAAC;IACnD,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,4CA0DjC,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,4CA4FjC,CAAC"}
@@ -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,4CAsExC,CAAC"}
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,4CAwExC,CAAC"}
@@ -1,8 +1,6 @@
1
1
  import { FC } from 'react';
2
- import { IBaseUrls } from '../../../../context';
3
2
  interface IcardList {
4
- senderEmail?: string | null;
5
- baseUrls?: IBaseUrls;
3
+ isAdmin?: boolean;
6
4
  }
7
5
  export declare const CardList: FC<IcardList>;
8
6
  export {};
@@ -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,EAAiC,MAAM,OAAO,CAAC;AAG1D,OAAO,EAAE,SAAS,EAAkC,MAAM,WAAW,CAAC;AActE,UAAU,SAAS;IACjB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,QAAQ,CAAC,EAAE,SAAS,CAAC;CACtB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,SAAS,CAyElC,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,CAiDlC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ export declare const LoadingSkeleton: React.FC;
3
+ //# sourceMappingURL=loading-skeleton.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"loading-skeleton.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/card-list/loading-skeleton.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,eAAe,EAAE,KAAK,CAAC,EAcnC,CAAC"}
@@ -1,5 +1,7 @@
1
- import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, TypographyProps } from '@hiver/hiver-ui-kit';
1
+ import { BoxProps, GridProps, IconButtonProps, SkeletonProps, StackProps, SvgIconProps, TypographyProps } from '@hiver/hiver-ui-kit';
2
2
  import { StyledComponent } from '@emotion/styled';
3
+ export declare const ConnectorsIcon: StyledComponent<SvgIconProps>;
4
+ export declare const ConnectorsTitle: StyledComponent<TypographyProps>;
3
5
  export declare const ParentCardWrapper: StyledComponent<GridProps>;
4
6
  export declare const CardWrapper: StyledComponent<BoxProps>;
5
7
  export declare const CardHeading: StyledComponent<StackProps>;
@@ -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,eAAe,EAChB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,SAAS,CAIxD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,eAAe,CAAC,QAAQ,CAMjD,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,CAGxD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,QAAQ,CA+BxD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAItD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,eAAe,CAIzD,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"}
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,CASxD,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,CAOxD,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAAC,QAAQ,CA+BxD,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,eAAe,CAAC,eAAe,CAGtD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,eAAe,CAAC,eAAe,CAIzD,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,3 +1,6 @@
1
- declare const NoConnectors: () => import("react/jsx-runtime").JSX.Element;
1
+ interface INoConnectors {
2
+ isAdmin?: boolean;
3
+ }
4
+ declare const NoConnectors: ({ isAdmin }: INoConnectors) => import("react/jsx-runtime").JSX.Element;
2
5
  export default NoConnectors;
3
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/no-connectors/index.tsx"],"names":[],"mappings":"AAUA,QAAA,MAAM,YAAY,+CAqBjB,CAAC;AAEF,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/no-connectors/index.tsx"],"names":[],"mappings":"AA6BA,UAAU,aAAa;IACrB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,QAAA,MAAM,YAAY,gBAAwB,aAAa,4CAoCtD,CAAC;AAEF,eAAe,YAAY,CAAC"}
@@ -1,7 +1,10 @@
1
- import { StackProps, TypographyProps, ButtonProps } from '@hiver/hiver-ui-kit';
1
+ import { StackProps, TypographyProps, ButtonProps, IconOwnProps } from '@hiver/hiver-ui-kit';
2
2
  import { StyledComponent } from '@emotion/styled';
3
3
  export declare const StreamLineContent: StyledComponent<StackProps>;
4
4
  export declare const StreamText: StyledComponent<TypographyProps>;
5
5
  export declare const AuthText: StyledComponent<TypographyProps>;
6
- export declare const EnableConnectorsBtn: StyledComponent<ButtonProps>;
6
+ export declare const AgentBottomHoverButton: StyledComponent<ButtonProps>;
7
+ export declare const InfoIconContainer: StyledComponent<StackProps>;
8
+ export declare const InfoIcon: StyledComponent<IconOwnProps>;
9
+ export declare const InfoText: StyledComponent<TypographyProps>;
7
10
  //# sourceMappingURL=style.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/no-connectors/style.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACpF,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,UAAU,CAWzD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,eAAe,CAAC,eAAe,CAMvD,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,eAAe,CAKrD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,eAAe,CAAC,WAAW,CAU5D,CAAC"}
1
+ {"version":3,"file":"style.d.ts","sourceRoot":"","sources":["../../../../../src/features/connector-cards/components/no-connectors/style.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,eAAe,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClG,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAElD,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,UAAU,CAWzD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,eAAe,CAAC,eAAe,CAMvD,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,eAAe,CAKrD,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,eAAe,CAAC,WAAW,CAU/D,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,eAAe,CAAC,UAAU,CAKzD,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,YAAY,CAGlD,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,eAAe,CAAC,eAAe,CAErD,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/constants/api.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,YAAY,CAAC;AAClC,eAAO,MAAM,mBAAmB,EAAE,MAAwC,CAAC;AAC3E,eAAO,MAAM,uBAAuB,EAAE,MAAqD,CAAC"}
1
+ {"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/constants/api.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,YAAY,CAAC;AAClC,eAAO,MAAM,mBAAmB,EAAE,MAAuC,CAAC;AAC1E,eAAO,MAAM,uBAAuB,EAAE,MAAsE,CAAC"}
@@ -9,6 +9,7 @@ export interface IConnectorState {
9
9
  specificConnectorApiStatus: {
10
10
  [key: string]: ApiStatus;
11
11
  } | null;
12
+ threadId: string | null;
12
13
  }
13
14
  export declare const initialState: IConnectorState;
14
15
  //# sourceMappingURL=initial-state.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"initial-state.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/initial-state.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE1D,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;IACpC,gBAAgB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,GAAG,IAAI,CAAC;IAC1D,kBAAkB,EAAE,SAAS,CAAC;IAC9B,0BAA0B,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;KAAE,GAAG,IAAI,CAAC;CACjE;AAGD,eAAO,MAAM,YAAY,EAAE,eAK1B,CAAC"}
1
+ {"version":3,"file":"initial-state.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/initial-state.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,aAAa,EAAE,MAAM,eAAe,CAAC;AAE1D,MAAM,WAAW,eAAe;IAC9B,cAAc,EAAE,KAAK,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC;IACpC,gBAAgB,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,aAAa,CAAA;KAAE,GAAG,IAAI,CAAC;IAC1D,kBAAkB,EAAE,SAAS,CAAC;IAC9B,0BAA0B,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;KAAE,GAAG,IAAI,CAAC;IAChE,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CACzB;AAGD,eAAO,MAAM,YAAY,EAAE,eAM1B,CAAC"}
@@ -7,4 +7,5 @@ export declare const selectSpecificConnector: (state: RootState) => {
7
7
  export declare const selectSpecificConnectorApiStatus: (state: RootState) => {
8
8
  [key: string]: import('../../../types/api').ApiStatus;
9
9
  } | null;
10
+ export declare const selectCurrentThreadId: (state: RootState) => string | null;
10
11
  //# sourceMappingURL=selectors.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/selectors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,eAAO,MAAM,eAAe,UAAW,SAAS,kDAAkC,CAAC;AACnF,eAAO,MAAM,wBAAwB,UAAW,SAAS,2CAAsC,CAAC;AAChG,eAAO,MAAM,uBAAuB,UAAW,SAAS;;QAAoC,CAAC;AAC7F,eAAO,MAAM,gCAAgC,UAAW,SAAS;;QAA8C,CAAC"}
1
+ {"version":3,"file":"selectors.d.ts","sourceRoot":"","sources":["../../../../src/features/connector-cards/store/selectors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kCAAkC,CAAC;AAGlE,eAAO,MAAM,eAAe,UAAW,SAAS,kDAAkC,CAAC;AACnF,eAAO,MAAM,wBAAwB,UAAW,SAAS,2CAAsC,CAAC;AAChG,eAAO,MAAM,uBAAuB,UAAW,SAAS;;QAAoC,CAAC;AAC7F,eAAO,MAAM,gCAAgC,UAAW,SAAS;;QAA8C,CAAC;AAChH,eAAO,MAAM,qBAAqB,UAAW,SAAS,kBAA4B,CAAC"}
@@ -1,6 +1,15 @@
1
1
  import { selectConnector } from './selectors';
2
- export declare const connectorCardLibrary: import('@reduxjs/toolkit').Slice<import('./initial-state').IConnectorState, {}, "connectorCardLibrary", "connectorCardLibrary", import('@reduxjs/toolkit').SliceSelectors<import('./initial-state').IConnectorState>>;
3
- declare const fetchAllCardsData: import('@reduxjs/toolkit').AsyncThunk<any, void, {
2
+ import { ICard, ISpecificCard } from '../../../types/cards';
3
+ export declare const connectorCardLibrary: import('@reduxjs/toolkit').Slice<import('./initial-state').IConnectorState, {
4
+ updateThreadId(state: import('immer').WritableDraft<import('./initial-state').IConnectorState>, action: {
5
+ payload: any;
6
+ type: string;
7
+ }): void;
8
+ clearConnectorList(state: import('immer').WritableDraft<import('./initial-state').IConnectorState>): void;
9
+ }, "connectorCardLibrary", "connectorCardLibrary", import('@reduxjs/toolkit').SliceSelectors<import('./initial-state').IConnectorState>>;
10
+ declare const fetchAllCardsData: import('@reduxjs/toolkit').AsyncThunk<{
11
+ cards: ICard[];
12
+ }, void, {
4
13
  state?: unknown;
5
14
  dispatch?: import('redux-thunk').ThunkDispatch<unknown, unknown, import('redux').UnknownAction>;
6
15
  extra?: unknown;
@@ -10,11 +19,14 @@ declare const fetchAllCardsData: import('@reduxjs/toolkit').AsyncThunk<any, void
10
19
  fulfilledMeta?: unknown;
11
20
  rejectedMeta?: unknown;
12
21
  }>;
13
- declare const fetchSpecificCardData: import('@reduxjs/toolkit').AsyncThunk<import('axios').AxiosResponse<any, any> | {
22
+ declare const fetchSpecificCardData: import('@reduxjs/toolkit').AsyncThunk<{
14
23
  data: {};
24
+ } | {
25
+ data: ISpecificCard;
15
26
  }, {
16
27
  id: string;
17
28
  email: string;
29
+ isRefresh?: boolean;
18
30
  }, {
19
31
  state?: unknown;
20
32
  dispatch?: import('redux-thunk').ThunkDispatch<unknown, unknown, import('redux').UnknownAction>;
@@ -27,6 +39,12 @@ declare const fetchSpecificCardData: import('@reduxjs/toolkit').AsyncThunk<impor
27
39
  }>;
28
40
  declare const _default: import('redux').Reducer<import('./initial-state').IConnectorState>;
29
41
  export default _default;
30
- export declare const actions: import('@reduxjs/toolkit').CaseReducerActions<{}, "connectorCardLibrary">;
42
+ export declare const actions: import('@reduxjs/toolkit').CaseReducerActions<{
43
+ updateThreadId(state: import('immer').WritableDraft<import('./initial-state').IConnectorState>, action: {
44
+ payload: any;
45
+ type: string;
46
+ }): void;
47
+ clearConnectorList(state: import('immer').WritableDraft<import('./initial-state').IConnectorState>): void;
48
+ }, "connectorCardLibrary">;
31
49
  export { selectConnector, fetchAllCardsData, fetchSpecificCardData };
32
50
  //# sourceMappingURL=slice.d.ts.map
@@ -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;AAM7E,eAAO,MAAM,oBAAoB,qRAwC/B,CAAC;AAIH,QAAA,MAAM,iBAAiB;;;;;;;;;EASrB,CAAC;AAEH,QAAA,MAAM,qBAAqB;;;QAEG,MAAM;WAAS,MAAM;;;;;;;;;;EAUlD,CAAC;;AAEF,wBAA4C;AAC5C,eAAO,MAAM,OAAO,2EAA+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;;;;;;;;;;;EASrB,CAAC;AAEH,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,4 +1,6 @@
1
1
  export declare const SUCCESS_TOAST: "success";
2
2
  export declare const ERROR_TOAST: "error";
3
3
  export declare const INFO_DARK: "info-dark";
4
+ export declare const REFRESH_FAILED = "Some error occured. Please contact support@hiverhq.com";
5
+ export declare const REFRESH_SUCCESS = "Card refreshed successfully";
4
6
  //# sourceMappingURL=toast.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../../src/features/toast-message/constants/toast.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,WAAqB,CAAC;AAChD,eAAO,MAAM,WAAW,SAAmB,CAAC;AAC5C,eAAO,MAAM,SAAS,aAAuB,CAAC"}
1
+ {"version":3,"file":"toast.d.ts","sourceRoot":"","sources":["../../../../src/features/toast-message/constants/toast.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,WAAqB,CAAC;AAChD,eAAO,MAAM,WAAW,SAAmB,CAAC;AAC5C,eAAO,MAAM,SAAS,aAAuB,CAAC;AAE9C,eAAO,MAAM,cAAc,2DAA2D,CAAC;AACvF,eAAO,MAAM,eAAe,gCAAgC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"showMessage.d.ts","sourceRoot":"","sources":["../../../src/features/toast-message/showMessage.tsx"],"names":[],"mappings":"AAAA,OAAO,uCAAuC,CAAC;AAC/C,OAAO,gBAAgB,CAAC;AAMxB;;;GAGG;AAEH,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;IACrD,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS,CAAC;CACxC;AAED,iBAAS,WAAW,CAAC,aAAa,EAAE,YAAY,+BAoC/C;AAED,iBAAS,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,QAE5C;AAED,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,CAAC"}
1
+ {"version":3,"file":"showMessage.d.ts","sourceRoot":"","sources":["../../../src/features/toast-message/showMessage.tsx"],"names":[],"mappings":"AAMA;;;GAGG;AAEH,MAAM,WAAW,YAAY;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,SAAS,CAAC;IACrD,SAAS,CAAC,EAAE,MAAM,GAAG,KAAK,GAAG,SAAS,CAAC;CACxC;AAED,iBAAS,WAAW,CAAC,aAAa,EAAE,YAAY,+BA0C/C;AAED,iBAAS,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM,QAE5C;AAED,OAAO,EAAE,WAAW,EAAE,WAAW,EAAE,CAAC"}