bibot 1.0.34 → 1.0.36

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,6 +12,11 @@ interface RemoteChatBubbleConfigProps {
12
12
  title: string;
13
13
  userImage: string;
14
14
  }
15
+ interface recordPredefinedQProps {
16
+ question: string;
17
+ client_id: string;
18
+ }
19
+ declare function recordPredefinedQ(data: recordPredefinedQProps): Promise<string>;
15
20
  declare function askBiBot(data: Q_DATA_TYPE): Promise<string>;
16
21
  declare function getRemoteClientChatBubbleConfig(params: {
17
22
  client_id: string;
@@ -23,4 +28,4 @@ export interface predefinedQuestionsType {
23
28
  declare function getRemoteClientChatPredefinedQuestions(params: {
24
29
  client_id: string;
25
30
  }): Promise<predefinedQuestionsType[]>;
26
- export { askBiBot, getRemoteClientChatBubbleConfig, getRemoteClientChatPredefinedQuestions, };
31
+ export { askBiBot, getRemoteClientChatBubbleConfig, getRemoteClientChatPredefinedQuestions, recordPredefinedQ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bibot",
3
- "version": "1.0.34",
3
+ "version": "1.0.36",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "chrisdjin",
6
6
  "license": "ISC",