@databrainhq/plugin 0.15.52 → 0.15.53

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.
@@ -11,6 +11,7 @@ type Props = {
11
11
  onComplete?: () => void;
12
12
  clientDropDown?: React.ReactNode;
13
13
  clientState?: ClientStateParams;
14
+ isEmbed?: boolean;
14
15
  };
15
- export declare const ScheduleEmailForm: ({ onCancel, getInternalToken, scheduleReportConfig: internalScheduleReportConfig, chartOptions, externalDashboardId, sharingSettingsId, onComplete, clientDropDown, clientState, }: Props) => React.JSX.Element;
16
+ export declare const ScheduleEmailForm: ({ onCancel, getInternalToken, scheduleReportConfig: internalScheduleReportConfig, chartOptions, externalDashboardId, sharingSettingsId, onComplete, clientDropDown, clientState, isEmbed, }: Props) => React.JSX.Element;
16
17
  export default ScheduleEmailForm;
@@ -10,8 +10,9 @@ type ScheduleEmailProps = {
10
10
  isShowSettings: boolean;
11
11
  setShowSettings: React.Dispatch<React.SetStateAction<boolean>>;
12
12
  onServerEvent?: any;
13
+ isEmbed?: boolean;
13
14
  };
14
- export declare const ScheduleEmail: ({ props: { chartOptions, getInternalToken, scheduleReportConfig, externalDashboardId, sharingSettingsId, onComplete, isShowSettings, setShowSettings, onServerEvent, }, }: {
15
+ export declare const ScheduleEmail: ({ props: { chartOptions, getInternalToken, scheduleReportConfig, externalDashboardId, sharingSettingsId, onComplete, isShowSettings, setShowSettings, onServerEvent, isEmbed, }, }: {
15
16
  props: ScheduleEmailProps;
16
17
  }) => React.JSX.Element;
17
18
  export default ScheduleEmail;