@opencx/widget 3.0.24 → 3.0.25

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opencx/widget",
3
3
  "private": false,
4
- "version": "3.0.24",
4
+ "version": "3.0.25",
5
5
  "type": "module",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -1,7 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare function BotOrAgentMessageWrapper({ children, className, messageId, }: {
3
- children: React.ReactNode;
4
- className?: string;
5
- messageId?: string;
6
- sessionId?: string;
7
- }): React.JSX.Element;
@@ -1,3 +0,0 @@
1
- import { default as React } from 'react';
2
- import { WidgetComponentProps } from '../../../headless/react/types/components';
3
- export declare function BotOrAgentTextResponse({ data, id, type, attachments, }: WidgetComponentProps): React.JSX.Element;
@@ -1,8 +0,0 @@
1
- import { default as React } from 'react';
2
- import { WidgetComponentProps } from '../../../headless/react/types/components';
3
- type Props = WidgetComponentProps<unknown>;
4
- /**
5
- * The Basic Fallback component (Rendered when Debug is True and the component key is not found)
6
- */
7
- export declare function FallbackComponent(props: Props): React.JSX.Element;
8
- export {};