@uptiqai/widgets-sdk 1.277.0 → 1.278.0

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/index.d.ts CHANGED
@@ -283,7 +283,6 @@ declare type FullChatWidgetContainerProps = {
283
283
  children: React.ReactNode;
284
284
  defaultOpen?: boolean;
285
285
  hideTrigger?: boolean;
286
- isUpWrk?: boolean;
287
286
  onClose?: () => void;
288
287
  widgetRef?: React.Ref<FullScreenChatWidgetRef>;
289
288
  };
@@ -305,7 +304,7 @@ export declare type FullScreenAnnotationChatWidgetRef = {
305
304
  close: () => void;
306
305
  };
307
306
 
308
- export declare const FullScreenChatWidget: ({ defaultOpen, widgetRef, onClose, hideTrigger, isUpWrk, ...props }: FullScreenChatWidgetProps) => JSX_2.Element;
307
+ export declare const FullScreenChatWidget: ({ defaultOpen, widgetRef, onClose, hideTrigger, ...props }: FullScreenChatWidgetProps) => JSX_2.Element;
309
308
 
310
309
  export declare type FullScreenChatWidgetProps = CommonWidgetProps & Omit<FullChatWidgetContainerProps, 'children'>;
311
310