impact-chatbot 2.3.43 → 2.3.48

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.
@@ -5,6 +5,8 @@ export declare const stepFormStreamControl: {
5
5
  chatId: string;
6
6
  agentId: string;
7
7
  baseUrl: string;
8
+ initValue: boolean;
9
+ uniqueChatId: string;
8
10
  };
9
11
  declare const ButtonContent: ({ bodyText, isFormDisabled, isStepFormSubmit, isFormValid }: {
10
12
  bodyText: any;
@@ -1,4 +1,4 @@
1
- declare const TabularContent: ({ steps: initialSteps, currentTabValue, children, questions: initialQuestions, questionsStepsMap: initialQuestionsStepsMap, stepFormDataMap: initialStepFormDataMap, isFormDisabled }: {
1
+ declare const TabularContent: ({ steps: initialSteps, currentTabValue, children, questions: initialQuestions, questionsStepsMap: initialQuestionsStepsMap, stepFormDataMap: initialStepFormDataMap, isFormDisabled, sessionId: propSessionId }: {
2
2
  steps: any;
3
3
  currentTabValue: any;
4
4
  children: any;
@@ -6,5 +6,8 @@ declare const TabularContent: ({ steps: initialSteps, currentTabValue, children,
6
6
  questionsStepsMap?: {};
7
7
  stepFormDataMap?: {};
8
8
  isFormDisabled?: boolean;
9
+ sessionId?: string;
9
10
  }) => import("react/jsx-runtime").JSX.Element;
11
+ /** Reset the active instance tracker (call when a new conversation starts from the input field) */
12
+ export declare const resetActiveTabularInstance: () => void;
10
13
  export default TabularContent;