@integry/sdk 4.3.45 → 4.3.47

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.
@@ -549,10 +549,11 @@ declare class IntegryJS {
549
549
  }) => void;
550
550
  renderFunctionUI: (functionName: string, functionArguments: any, connectedAccountId: string) => Promise<Record<any, any>>;
551
551
  invokeFunction: (functionDetails: any) => Promise<Record<any, any>>;
552
- connect: (appName: string) => Promise<any>;
553
- disconnect: (appName: string, authorizationId?: number | undefined) => Promise<any>;
554
- isConnected: (appName: string) => Promise<any>;
552
+ connectApp: (appName: string) => Promise<string>;
553
+ disconnectApp: (appName: string, connectedAccountId?: string | undefined) => Promise<any>;
554
+ isAppConnected: (appName: string) => Promise<any>;
555
555
  getFunctionSignature: (functionName: string) => Promise<any>;
556
+ getConnectedAccounts: (appName: string) => Promise<string[] | null>;
556
557
  /**
557
558
  * Render the template form we ship
558
559
  * @param data
@@ -585,7 +586,7 @@ declare class IntegryJS {
585
586
  *
586
587
  * @param marketplaceConfig
587
588
  */
588
- renderMarketplaceV1: (marketplaceConfig: MarketplaceConfig) => void;
589
+ renderMarketplace: (marketplaceConfig: MarketplaceConfig) => void;
589
590
  renderAppFlows: (appFlowConfig: InitConfig) => void;
590
591
  showApps: (apps?: string[], renderMode?: MarketplaceRenderModes, containerId?: string) => void;
591
592
  renderMultipurposeField: ({ containerId, multipurposeFieldProps }: {