@getsupervisor/agents-studio-sdk 1.41.1 → 1.41.2-patch.2
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.cts +45 -0
- package/dist/index.d.ts +45 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -405,10 +405,12 @@ type components = {
|
|
|
405
405
|
identifier: string;
|
|
406
406
|
description?: string | null;
|
|
407
407
|
enabled: boolean;
|
|
408
|
+
visible: boolean;
|
|
408
409
|
category?: string | null;
|
|
409
410
|
auth: 'none' | 'oauth2' | 'api_key' | 'custom';
|
|
410
411
|
requiresUserAuth: boolean;
|
|
411
412
|
configSchema?: components['schemas']['ToolConfigSchema'] | null;
|
|
413
|
+
catalogMetadata: components['schemas']['ToolCatalogMetadata'];
|
|
412
414
|
};
|
|
413
415
|
ToolListResponse: {
|
|
414
416
|
data: components['schemas']['ToolSummary'][];
|
|
@@ -727,6 +729,49 @@ type components = {
|
|
|
727
729
|
[key: string]: components['schemas']['ToolConfigSchemaAction'];
|
|
728
730
|
};
|
|
729
731
|
};
|
|
732
|
+
ToolCatalogAuthor: {
|
|
733
|
+
name: string;
|
|
734
|
+
url?: string | null;
|
|
735
|
+
};
|
|
736
|
+
ToolCatalogMedia: {
|
|
737
|
+
iconUrl: string | null;
|
|
738
|
+
coverImageUrl: string | null;
|
|
739
|
+
};
|
|
740
|
+
ToolCatalogDescription: {
|
|
741
|
+
short: string | null;
|
|
742
|
+
markdown: string | null;
|
|
743
|
+
};
|
|
744
|
+
ToolCatalogInstallation: {
|
|
745
|
+
requirements: string[];
|
|
746
|
+
permissions: string[];
|
|
747
|
+
steps: string[];
|
|
748
|
+
notes: string[];
|
|
749
|
+
};
|
|
750
|
+
ToolCatalogAppliesTo: {
|
|
751
|
+
chat: boolean | null;
|
|
752
|
+
voice: boolean | null;
|
|
753
|
+
};
|
|
754
|
+
ToolCatalogLinks: {
|
|
755
|
+
docsUrl: string | null;
|
|
756
|
+
privacyUrl: string | null;
|
|
757
|
+
termsUrl: string | null;
|
|
758
|
+
};
|
|
759
|
+
ToolCatalogCard: {
|
|
760
|
+
author: components['schemas']['ToolCatalogAuthor'];
|
|
761
|
+
media: components['schemas']['ToolCatalogMedia'];
|
|
762
|
+
description: components['schemas']['ToolCatalogDescription'];
|
|
763
|
+
features: string[];
|
|
764
|
+
useCases: string[];
|
|
765
|
+
installation: components['schemas']['ToolCatalogInstallation'];
|
|
766
|
+
appliesTo: components['schemas']['ToolCatalogAppliesTo'];
|
|
767
|
+
links: components['schemas']['ToolCatalogLinks'];
|
|
768
|
+
};
|
|
769
|
+
ToolCatalogMetadata: {
|
|
770
|
+
version: 1;
|
|
771
|
+
i18n: {
|
|
772
|
+
[key: string]: components['schemas']['ToolCatalogCard'];
|
|
773
|
+
};
|
|
774
|
+
};
|
|
730
775
|
ToolConnectionListItem: {
|
|
731
776
|
toolAgentConnectionId: string;
|
|
732
777
|
toolId: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -405,10 +405,12 @@ type components = {
|
|
|
405
405
|
identifier: string;
|
|
406
406
|
description?: string | null;
|
|
407
407
|
enabled: boolean;
|
|
408
|
+
visible: boolean;
|
|
408
409
|
category?: string | null;
|
|
409
410
|
auth: 'none' | 'oauth2' | 'api_key' | 'custom';
|
|
410
411
|
requiresUserAuth: boolean;
|
|
411
412
|
configSchema?: components['schemas']['ToolConfigSchema'] | null;
|
|
413
|
+
catalogMetadata: components['schemas']['ToolCatalogMetadata'];
|
|
412
414
|
};
|
|
413
415
|
ToolListResponse: {
|
|
414
416
|
data: components['schemas']['ToolSummary'][];
|
|
@@ -727,6 +729,49 @@ type components = {
|
|
|
727
729
|
[key: string]: components['schemas']['ToolConfigSchemaAction'];
|
|
728
730
|
};
|
|
729
731
|
};
|
|
732
|
+
ToolCatalogAuthor: {
|
|
733
|
+
name: string;
|
|
734
|
+
url?: string | null;
|
|
735
|
+
};
|
|
736
|
+
ToolCatalogMedia: {
|
|
737
|
+
iconUrl: string | null;
|
|
738
|
+
coverImageUrl: string | null;
|
|
739
|
+
};
|
|
740
|
+
ToolCatalogDescription: {
|
|
741
|
+
short: string | null;
|
|
742
|
+
markdown: string | null;
|
|
743
|
+
};
|
|
744
|
+
ToolCatalogInstallation: {
|
|
745
|
+
requirements: string[];
|
|
746
|
+
permissions: string[];
|
|
747
|
+
steps: string[];
|
|
748
|
+
notes: string[];
|
|
749
|
+
};
|
|
750
|
+
ToolCatalogAppliesTo: {
|
|
751
|
+
chat: boolean | null;
|
|
752
|
+
voice: boolean | null;
|
|
753
|
+
};
|
|
754
|
+
ToolCatalogLinks: {
|
|
755
|
+
docsUrl: string | null;
|
|
756
|
+
privacyUrl: string | null;
|
|
757
|
+
termsUrl: string | null;
|
|
758
|
+
};
|
|
759
|
+
ToolCatalogCard: {
|
|
760
|
+
author: components['schemas']['ToolCatalogAuthor'];
|
|
761
|
+
media: components['schemas']['ToolCatalogMedia'];
|
|
762
|
+
description: components['schemas']['ToolCatalogDescription'];
|
|
763
|
+
features: string[];
|
|
764
|
+
useCases: string[];
|
|
765
|
+
installation: components['schemas']['ToolCatalogInstallation'];
|
|
766
|
+
appliesTo: components['schemas']['ToolCatalogAppliesTo'];
|
|
767
|
+
links: components['schemas']['ToolCatalogLinks'];
|
|
768
|
+
};
|
|
769
|
+
ToolCatalogMetadata: {
|
|
770
|
+
version: 1;
|
|
771
|
+
i18n: {
|
|
772
|
+
[key: string]: components['schemas']['ToolCatalogCard'];
|
|
773
|
+
};
|
|
774
|
+
};
|
|
730
775
|
ToolConnectionListItem: {
|
|
731
776
|
toolAgentConnectionId: string;
|
|
732
777
|
toolId: string;
|