@magemetrics/ai 0.3.1 → 0.3.2
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/dist/react/ai.js +22771 -22755
- package/dist/react/index.d.ts +2 -0
- package/dist/styles.css +1 -1
- package/dist/web-component/index.d.ts +2 -0
- package/dist/web-component/web-component.es.js +44587 -44570
- package/package.json +2 -2
package/dist/react/index.d.ts
CHANGED
|
@@ -777,6 +777,7 @@ declare interface ManagedModalProps extends ModalProps {
|
|
|
777
777
|
apiKey: string;
|
|
778
778
|
externalJwt: string;
|
|
779
779
|
apiUrl: string;
|
|
780
|
+
disableCanvas?: boolean;
|
|
780
781
|
persist?: PersistenceOptions;
|
|
781
782
|
components?: Components;
|
|
782
783
|
}
|
|
@@ -816,6 +817,7 @@ export declare const StandaloneConversationModal: React.FC<StandaloneConversatio
|
|
|
816
817
|
declare type StandaloneConversationModalProps = {
|
|
817
818
|
opened: boolean;
|
|
818
819
|
flowId: string;
|
|
820
|
+
disableCanvas?: boolean;
|
|
819
821
|
onOpenChange?: (open: boolean) => void;
|
|
820
822
|
};
|
|
821
823
|
|