@getsupervisor/agents-studio-sdk 1.41.1 → 1.41.2-patch.1

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