bibot 1.0.23 → 1.0.25

Sign up to get free protection for your applications and to get access to all the features.
@@ -16,7 +16,11 @@ declare function askBiBot(data: Q_DATA_TYPE): Promise<string>;
16
16
  declare function getRemoteClientChatBubbleConfig(params: {
17
17
  client_id: string;
18
18
  }): Promise<RemoteChatBubbleConfigProps>;
19
+ export interface predefinedQuestionsType {
20
+ question: string;
21
+ answer: string;
22
+ }
19
23
  declare function getRemoteClientChatPredefinedQuestions(params: {
20
24
  client_id: string;
21
- }): Promise<string[]>;
25
+ }): Promise<predefinedQuestionsType[]>;
22
26
  export { askBiBot, getRemoteClientChatBubbleConfig, getRemoteClientChatPredefinedQuestions, };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bibot",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "chrisdjin",
6
6
  "license": "ISC",
@@ -72,6 +72,7 @@
72
72
  "postcss": "^8.4.38",
73
73
  "postcss-loader": "^8.1.1",
74
74
  "react-is": "^18.3.1",
75
- "react-scripts": "^5.0.1"
75
+ "react-scripts": "^5.0.1",
76
+ "styled-components": "^6.1.11"
76
77
  }
77
78
  }