bibot 1.0.23 → 1.0.24

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.24",
4
4
  "description": "Made with create-react-library",
5
5
  "author": "chrisdjin",
6
6
  "license": "ISC",