@integry/sdk 4.8.0 → 4.8.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.
@@ -272,6 +272,8 @@ type RenderAppAuthrozationsOptions = {
272
272
  onAuthCreated?: (auth: Authorization) => void;
273
273
  onAuthDeleted?: (authId: number) => void;
274
274
  isReadOnly?: boolean;
275
+ customTitle?: string;
276
+ showAppIcon?: boolean;
275
277
  };
276
278
  type TemplateType = Template;
277
279
  type FlowCardProps = {
@@ -749,7 +751,14 @@ declare class IntegryJS {
749
751
  renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
750
752
  renderAppFlows: (appFlowConfig: InitConfig) => void;
751
753
  showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
752
- showApps: (renderMode?: RenderModes, containerId?: string, layout?: Layouts, fetchAll?: boolean, useLoadMoreButton?: boolean) => void;
754
+ showApps: ({ renderMode, containerId, layout, fetchAll, useLoadMoreButton, authOnly }?: {
755
+ renderMode?: RenderModes | undefined;
756
+ containerId?: string | undefined;
757
+ layout?: Layouts | undefined;
758
+ fetchAll?: boolean | undefined;
759
+ useLoadMoreButton?: boolean | undefined;
760
+ authOnly?: boolean | undefined;
761
+ }) => void;
753
762
  showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
754
763
  renderMultipurposeField: ({ containerId, multipurposeFieldProps }: {
755
764
  containerId: string;