@integry/sdk 4.8.0 → 4.8.1
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/umd/index.umd.d.ts
CHANGED
|
@@ -749,7 +749,14 @@ declare class IntegryJS {
|
|
|
749
749
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
750
750
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
751
751
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
752
|
-
showApps: (renderMode
|
|
752
|
+
showApps: ({ renderMode, containerId, layout, fetchAll, useLoadMoreButton, authOnly }?: {
|
|
753
|
+
renderMode?: RenderModes | undefined;
|
|
754
|
+
containerId?: string | undefined;
|
|
755
|
+
layout?: Layouts | undefined;
|
|
756
|
+
fetchAll?: boolean | undefined;
|
|
757
|
+
useLoadMoreButton?: boolean | undefined;
|
|
758
|
+
authOnly?: boolean | undefined;
|
|
759
|
+
}) => void;
|
|
753
760
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
754
761
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps }: {
|
|
755
762
|
containerId: string;
|