@integry/sdk 4.3.45 → 4.3.46

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.
@@ -559,10 +559,11 @@ declare class IntegryJS {
559
559
  }) => void;
560
560
  renderFunctionUI: (functionName: string, functionArguments: any, connectedAccountId: string) => Promise<Record<any, any>>;
561
561
  invokeFunction: (functionDetails: any) => Promise<Record<any, any>>;
562
- connect: (appName: string) => Promise<any>;
563
- disconnect: (appName: string, authorizationId?: number | undefined) => Promise<any>;
564
- isConnected: (appName: string) => Promise<any>;
562
+ connectApp: (appName: string) => Promise<string>;
563
+ disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
564
+ isAppConnected: (appName: string) => Promise<any>;
565
565
  getFunctionSignature: (functionName: string) => Promise<any>;
566
+ getConnectedAccounts: (appName: string) => Promise<string[] | null>;
566
567
  /**
567
568
  * Render the template form we ship
568
569
  * @param data
@@ -594,7 +595,7 @@ declare class IntegryJS {
594
595
  *
595
596
  * @param marketplaceConfig
596
597
  */
597
- renderMarketplaceV1: (marketplaceConfig: MarketplaceConfig) => void;
598
+ renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
598
599
  renderAppFlows: (appFlowConfig: InitConfig) => void;
599
600
  showApps: (apps?: string[], renderMode?: MarketplaceRenderModes, containerId?: string) => void;
600
601
  renderMultipurposeField: ({ containerId, multipurposeFieldProps, }: {