@greatapps/greatagents-ui 0.3.13 → 0.3.14
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 +1 -3
- package/dist/index.js +71 -433
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/capabilities/capabilities-tab.tsx +2 -2
- package/src/components/capabilities/integration-card.tsx +3 -21
- package/src/components/capabilities/integrations-tab.tsx +8 -19
- package/src/components/tools/tool-credentials-form.tsx +1 -374
- package/src/pages/credentials-page.tsx +0 -10
- package/src/pages/integrations-management-page.tsx +2 -13
package/dist/index.d.ts
CHANGED
|
@@ -563,10 +563,8 @@ interface ToolCredentialsFormProps {
|
|
|
563
563
|
isLoading: boolean;
|
|
564
564
|
config: GagentsHookConfig;
|
|
565
565
|
gagentsApiUrl: string;
|
|
566
|
-
createOpen?: boolean;
|
|
567
|
-
onCreateOpenChange?: (open: boolean) => void;
|
|
568
566
|
}
|
|
569
|
-
declare function ToolCredentialsForm({ credentials, isLoading, config, gagentsApiUrl,
|
|
567
|
+
declare function ToolCredentialsForm({ credentials, isLoading, config, gagentsApiUrl, }: ToolCredentialsFormProps): react_jsx_runtime.JSX.Element;
|
|
570
568
|
|
|
571
569
|
interface GetItemValue<T> {
|
|
572
570
|
/**
|