@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.
- package/dist/esm/index.csm.d.ts +10 -1
- package/dist/esm/index.csm.js +1 -1
- package/dist/umd/index.umd.d.ts +10 -1
- package/dist/umd/index.umd.js +1 -1
- package/package.json +1 -1
package/dist/esm/index.csm.d.ts
CHANGED
|
@@ -273,6 +273,8 @@ type RenderAppAuthrozationsOptions = {
|
|
|
273
273
|
onAuthCreated?: (auth: Authorization) => void;
|
|
274
274
|
onAuthDeleted?: (authId: number) => void;
|
|
275
275
|
isReadOnly?: boolean;
|
|
276
|
+
customTitle?: string;
|
|
277
|
+
showAppIcon?: boolean;
|
|
276
278
|
};
|
|
277
279
|
type TemplateType = Template;
|
|
278
280
|
type FlowCardProps = {
|
|
@@ -758,7 +760,14 @@ declare class IntegryJS {
|
|
|
758
760
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
759
761
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
760
762
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
761
|
-
showApps: (renderMode
|
|
763
|
+
showApps: ({ renderMode, containerId, layout, fetchAll, useLoadMoreButton, authOnly, }?: {
|
|
764
|
+
renderMode?: RenderModes | undefined;
|
|
765
|
+
containerId?: string | undefined;
|
|
766
|
+
layout?: Layouts | undefined;
|
|
767
|
+
fetchAll?: boolean | undefined;
|
|
768
|
+
useLoadMoreButton?: boolean | undefined;
|
|
769
|
+
authOnly?: boolean | undefined;
|
|
770
|
+
}) => void;
|
|
762
771
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
763
772
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {
|
|
764
773
|
containerId: string;
|