@greatapps/greatagents-ui 0.3.10 → 0.3.12

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/index.d.ts CHANGED
@@ -561,13 +561,9 @@ interface AgentTabsProps {
561
561
  agent: Agent;
562
562
  config: GagentsHookConfig;
563
563
  renderChatLink?: (inboxId: number) => React.ReactNode;
564
- /** Required for the Capacidades tab — gagents API URL for OAuth flows and advanced features. Falls back to config.baseUrl. */
565
564
  gagentsApiUrl?: string;
566
- /** Resolve wizard metadata for a given integration card. */
567
565
  resolveWizardMeta?: (card: IntegrationCardData) => WizardIntegrationMeta;
568
- /** Callback to load config options after OAuth completes. */
569
566
  loadConfigOptions?: (credentialId: number) => Promise<ConfigOption[]>;
570
- /** Called after wizard completes successfully. */
571
567
  onWizardComplete?: () => void;
572
568
  }
573
569
  declare function AgentTabs({ agent, config, renderChatLink, gagentsApiUrl, resolveWizardMeta, loadConfigOptions, onWizardComplete, }: AgentTabsProps): react_jsx_runtime.JSX.Element;