@integry/sdk 4.7.77 → 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
|
@@ -322,6 +322,7 @@ interface SDKConfig {
|
|
|
322
322
|
baseUrl?: string;
|
|
323
323
|
debug?: boolean;
|
|
324
324
|
integrationId?: number;
|
|
325
|
+
lang?: string;
|
|
325
326
|
xIntegryConfig?: {
|
|
326
327
|
isAnonymous?: boolean;
|
|
327
328
|
appAuth?: {
|
|
@@ -748,7 +749,14 @@ declare class IntegryJS {
|
|
|
748
749
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
749
750
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
750
751
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
751
|
-
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;
|
|
752
760
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
753
761
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps }: {
|
|
754
762
|
containerId: string;
|