@aakash58/chatbot 1.0.71 → 1.0.73
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/fesm2022/aakash58-chatbot.mjs +5 -5
- package/fesm2022/aakash58-chatbot.mjs.map +1 -1
- package/index.d.ts +15 -15
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -41,21 +41,21 @@ declare class DoohbotInput {
|
|
|
41
41
|
DOOHBOT_API_URL?: string;
|
|
42
42
|
skipAuthentication?: boolean;
|
|
43
43
|
userAvatarUrl: string;
|
|
44
|
-
readonly appTitle
|
|
45
|
-
readonly appSubtitle
|
|
46
|
-
readonly welcomeDesc
|
|
47
|
-
readonly chatIcon
|
|
48
|
-
readonly sendIcon
|
|
49
|
-
readonly closeIcon
|
|
50
|
-
readonly clear
|
|
51
|
-
readonly minimizeIcon
|
|
52
|
-
readonly moreIcon
|
|
53
|
-
readonly fullscreenIcon
|
|
54
|
-
readonly fullscreenExitIcon
|
|
55
|
-
readonly hintText
|
|
56
|
-
readonly errorMessage
|
|
57
|
-
readonly appLogoUrl
|
|
58
|
-
readonly botAvatarUrl
|
|
44
|
+
readonly appTitle?: "DoohBot" | undefined;
|
|
45
|
+
readonly appSubtitle?: "Welcome to DoohBot" | undefined;
|
|
46
|
+
readonly welcomeDesc?: "We provide a powerful live chat platform to help businesses connect with their customers, offer support, and increase sales through real-time conversations." | undefined;
|
|
47
|
+
readonly chatIcon?: "chat" | undefined;
|
|
48
|
+
readonly sendIcon?: "send" | undefined;
|
|
49
|
+
readonly closeIcon?: "close" | undefined;
|
|
50
|
+
readonly clear?: "clear_all" | undefined;
|
|
51
|
+
readonly minimizeIcon?: "remove" | undefined;
|
|
52
|
+
readonly moreIcon?: "more_vert" | undefined;
|
|
53
|
+
readonly fullscreenIcon?: "fullscreen" | undefined;
|
|
54
|
+
readonly fullscreenExitIcon?: "fullscreen_exit" | undefined;
|
|
55
|
+
readonly hintText?: "Please Enter Here" | undefined;
|
|
56
|
+
readonly errorMessage?: "The message you submitted was too long." | undefined;
|
|
57
|
+
readonly appLogoUrl?: string | undefined;
|
|
58
|
+
readonly botAvatarUrl?: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
/**
|