@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/esm/index.csm.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ interface SDKConfig {
|
|
|
323
323
|
baseUrl?: string;
|
|
324
324
|
debug?: boolean;
|
|
325
325
|
integrationId?: number;
|
|
326
|
+
lang?: string;
|
|
326
327
|
xIntegryConfig?: {
|
|
327
328
|
isAnonymous?: boolean;
|
|
328
329
|
appAuth?: {
|
|
@@ -757,7 +758,14 @@ declare class IntegryJS {
|
|
|
757
758
|
renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
|
|
758
759
|
renderAppFlows: (appFlowConfig: InitConfig) => void;
|
|
759
760
|
showApp: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
760
|
-
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;
|
|
761
769
|
showConnectedAccounts: (appName: string, renderMode?: RenderModes, containerId?: string, layout?: Layouts) => void;
|
|
762
770
|
renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {
|
|
763
771
|
containerId: string;
|