@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/esm/index.csm.d.ts
CHANGED
|
@@ -758,7 +758,14 @@ declare class IntegryJS {
|
|
|
758
758
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
759
759
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
760
760
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
761
|
-
showApps: (renderMode
|
|
761
|
+
showApps: ({ renderMode, containerId, layout, fetchAll, useLoadMoreButton, authOnly, }?: {
|
|
762
|
+
renderMode?: RenderModes | undefined;
|
|
763
|
+
containerId?: string | undefined;
|
|
764
|
+
layout?: Layouts | undefined;
|
|
765
|
+
fetchAll?: boolean | undefined;
|
|
766
|
+
useLoadMoreButton?: boolean | undefined;
|
|
767
|
+
authOnly?: boolean | undefined;
|
|
768
|
+
}) => void;
|
|
762
769
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
763
770
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {
|
|
764
771
|
containerId: string;
|