robin-component 1.0.41 → 1.0.42

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.
package/dist/index.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  import React from 'react';
2
- import * as axios from 'axios';
3
- import PropTypes from 'prop-types';
4
2
 
5
3
  declare function VerticalButton({ token, screen, bjid, isOpen, handleResponse }: {
6
4
  token: any;
@@ -16,49 +14,4 @@ declare function FlexiTable({ isTreeView, tableInfo, treeTableInfo }: {
16
14
  treeTableInfo: any;
17
15
  }): React.JSX.Element;
18
16
 
19
- declare function Endpoints(): {
20
- getCallWithoutAuthToken: (data: any) => Promise<axios.AxiosResponse<any, any>>;
21
- getCallFileDownload: (data: any) => Promise<unknown>;
22
- postCallWithoutAuthToken: (data: any) => Promise<axios.AxiosResponse<any, any>>;
23
- getCallWithToken: (data: any, isIndex: any) => Promise<axios.AxiosResponse<any, any>>;
24
- getCallWithSignal: (data: any, isIndex: any) => Promise<axios.AxiosResponse<any, any>>;
25
- postCallWithToken: (data: any) => Promise<unknown>;
26
- postCallWithTokenMultipartForm: (data: any) => Promise<unknown>;
27
- putCallWithToken: (data: any) => Promise<unknown>;
28
- deleteCallWithToken: (data: any) => Promise<unknown>;
29
- getCallForWorkspaces: (data: any, isIndex: any) => Promise<axios.AxiosResponse<any, any>>;
30
- };
31
-
32
- declare function BlueJayIntel({ blueJayId, token, screen }: {
33
- blueJayId: any;
34
- token: any;
35
- screen: any;
36
- }): React.JSX.Element;
37
-
38
- declare function ViewOrc({ processId, token }: {
39
- processId: any;
40
- token: any;
41
- }): React.JSX.Element;
42
-
43
- declare function Chatbot({ handleClose, token, screen, blueJayId, handleResponse }: {
44
- handleClose: any;
45
- token: any;
46
- screen: any;
47
- blueJayId: any;
48
- handleResponse: any;
49
- }): React.JSX.Element;
50
-
51
- declare function Card({ children, headerText, headerButton }: {
52
- children: any;
53
- headerText: any;
54
- headerButton: any;
55
- }): React.JSX.Element;
56
- declare namespace Card {
57
- namespace propTypes {
58
- let children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
59
- let headerText: PropTypes.Requireable<string>;
60
- let headerButton: PropTypes.Requireable<PropTypes.ReactNodeLike>;
61
- }
62
- }
63
-
64
- export { BlueJayIntel, Card, Chatbot, Endpoints, FlexiTable, ViewOrc, VerticalButton as default };
17
+ export { FlexiTable, VerticalButton as default };